diff --git a/backend/composer/admin.py b/backend/composer/admin.py index 056fd5fe..c3b76394 100644 --- a/backend/composer/admin.py +++ b/backend/composer/admin.py @@ -19,7 +19,7 @@ Tag, Via, FunctionalCircuitRole, - ProjectionPhenotype, Destination + ProjectionPhenotype, Destination, Synonym ) @@ -89,10 +89,16 @@ class SentenceAdmin( ) +class SynonymInline(admin.TabularInline): + model = Synonym + extra = 1 + + class AnatomicalEntityAdmin(admin.ModelAdmin): list_display = ("name", "ontology_uri") list_display_links = ("name", "ontology_uri") search_fields = ("name",) # or ("^name",) for search to start with + inlines = [SynonymInline] class ViaInline(SortableStackedInline): diff --git a/backend/composer/management/commands/ingest_anatomical_entities.py b/backend/composer/management/commands/ingest_anatomical_entities.py index 282ebc5f..3b275251 100644 --- a/backend/composer/management/commands/ingest_anatomical_entities.py +++ b/backend/composer/management/commands/ingest_anatomical_entities.py @@ -1,64 +1,91 @@ import csv - -from django.core.management.base import BaseCommand - -from composer.models import AnatomicalEntity +import time +from django.core.management.base import BaseCommand, CommandError +from django.db import transaction +from django.db.utils import IntegrityError +from composer.models import AnatomicalEntity, Synonym URI = "o" NAME = "o_label" SYNONYM = "o_synonym" +BULK_LIMIT = 100 class Command(BaseCommand): - help = "Ingests Anatomical Entities CSV file(s)" + help = "Ingests Anatomical Entities CSV file(s)." def add_arguments(self, parser): parser.add_argument("csv_files", nargs="+", type=str) + parser.add_argument("--show_complete_logs", action='store_true', + help="Show detailed logs during processing") + + def _process_anatomical_entity(self, name, ontology_uri, synonym, show_complete_logs, processed_uris, + unique_synonyms): + try: + is_first_occurrence = ontology_uri not in processed_uris - def _create_ae(self, name, ontology_uri): - found = AnatomicalEntity.objects.filter(name__iexact=name).exists() - if not found: - return AnatomicalEntity( - name=name, - ontology_uri=ontology_uri + anatomical_entity, created = AnatomicalEntity.objects.get_or_create( + ontology_uri=ontology_uri, + defaults={"name": name}, ) - return None - # anatomical_entity, created = AnatomicalEntity.objects.get_or_create( - # name__iexact=name, - # defaults={"ontology_uri": ontology_uri, "name": name}, - # ) - # if created: - # self.stdout.write(f"Anatomical Entity {name} created.") - # anatomical_entity.save() + if not created and is_first_occurrence: + if anatomical_entity.name != name: + anatomical_entity.name = name + anatomical_entity.save() + if show_complete_logs: + self.stdout.write( + self.style.SUCCESS(f"Updated {anatomical_entity.ontology_uri} name to {name}.") + ) + processed_uris.add(ontology_uri) + + synonym_key = (ontology_uri, synonym.lower()) if synonym else None + if synonym and synonym_key not in unique_synonyms: + if not Synonym.objects.filter(anatomical_entity=anatomical_entity, name__iexact=synonym).exists(): + unique_synonyms[synonym_key] = Synonym(anatomical_entity=anatomical_entity, name=synonym) + if show_complete_logs: + self.stdout.write( + self.style.SUCCESS(f"Synonym '{synonym}' added for {anatomical_entity.ontology_uri}.")) + except IntegrityError as e: + self.stdout.write(self.style.ERROR(f"Error processing {ontology_uri}: {e}")) + + @transaction.atomic def handle(self, *args, **options): + start_time = time.time() + show_complete_logs = options['show_complete_logs'] + unique_synonyms = {} + processed_uris = set() + for csv_file in options["csv_files"]: - with open( - csv_file, newline="", encoding="utf-8", errors="ignore" - ) as csvfile: - aereader = csv.DictReader( - csvfile, - delimiter=";", - quotechar='"', - ) - bulk = [] - self.stdout.write("Start ingestion of Anatomical Entities") - for row in aereader: - ontology_uri = row[URI] - name = row[NAME] - synonym = row[SYNONYM] or None - ae = self._create_ae(name, ontology_uri) - if ae: - bulk.append(ae) - if synonym: - ae = self._create_ae(synonym, ontology_uri) - if ae: - bulk.append(ae) - if len(bulk) > 100: - self.stdout.write(f"{len(bulk)} new Anatomical Entities created.") - AnatomicalEntity.objects.bulk_create(bulk, ignore_conflicts=True) - bulk = [] - if len(bulk) > 0: - # insert the remaining - self.stdout.write(f"{len(bulk)} new Anatomical Entities created.") - AnatomicalEntity.objects.bulk_create(bulk, ignore_conflicts=True) + try: + with open(csv_file, newline="", encoding="utf-8", errors="ignore") as csvfile: + reader = csv.DictReader(csvfile, delimiter=",", quotechar='"') + for current_line, row in enumerate(reader, start=1): + if current_line % 100 == 0: + self.stdout.write(self.style.NOTICE(f"Processing line {current_line}")) + + ontology_uri = row[URI].strip() + name = row[NAME].strip() + synonym = row[SYNONYM].strip() if row[SYNONYM] else None + + self._process_anatomical_entity(name, ontology_uri, synonym, show_complete_logs, processed_uris, + unique_synonyms) + + if len(unique_synonyms) >= BULK_LIMIT: + Synonym.objects.bulk_create(unique_synonyms.values(), ignore_conflicts=True) + unique_synonyms.clear() + + except FileNotFoundError: + self.stdout.write(self.style.ERROR(f"File {csv_file} does not exist.")) + except Exception as e: + self.stdout.write(self.style.ERROR(f"An error occurred while processing {csv_file}: {e}")) + + # Ensure any remaining synonyms are created + if unique_synonyms: + try: + Synonym.objects.bulk_create(unique_synonyms.values(), ignore_conflicts=True) + except Exception as e: + self.stdout.write(self.style.ERROR(f"An error occurred during bulk creation: {e}")) + + end_time = time.time() + self.stdout.write(self.style.SUCCESS(f"Operation completed in {end_time - start_time:.2f} seconds.")) diff --git a/backend/composer/migrations/0041_synonym.py b/backend/composer/migrations/0041_synonym.py new file mode 100644 index 00000000..c60fb6e9 --- /dev/null +++ b/backend/composer/migrations/0041_synonym.py @@ -0,0 +1,36 @@ +# Generated by Django 4.1.4 on 2024-03-13 17:15 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + dependencies = [ + ("composer", "0040_auto_20240213_1301"), + ] + + operations = [ + migrations.CreateModel( + name="Synonym", + fields=[ + ( + "id", + models.BigAutoField( + auto_created=True, + primary_key=True, + serialize=False, + verbose_name="ID", + ), + ), + ("name", models.CharField(db_index=True, max_length=200)), + ( + "anatomical_entity", + models.ForeignKey( + on_delete=django.db.models.deletion.CASCADE, + related_name="synonyms", + to="composer.anatomicalentity", + ), + ), + ], + ), + ] diff --git a/backend/composer/migrations/0042_auto_20240313_1718.py b/backend/composer/migrations/0042_auto_20240313_1718.py new file mode 100644 index 00000000..befe0847 --- /dev/null +++ b/backend/composer/migrations/0042_auto_20240313_1718.py @@ -0,0 +1,58 @@ +# Generated by Django 4.1.4 on 2024-03-13 17:18 + +from django.db import migrations + + +def deduplicate_anatomical_entities(apps, schema_editor): + AnatomicalEntity = apps.get_model('composer', 'AnatomicalEntity') + Synonym = apps.get_model('composer', 'Synonym') + ConnectivityStatement = apps.get_model('composer', 'ConnectivityStatement') + Destination = apps.get_model('composer', 'Destination') + Via = apps.get_model('composer', 'Via') + + primary_anatomical_entities = {} + + for entity in AnatomicalEntity.objects.all().order_by('id'): + if entity.ontology_uri in primary_anatomical_entities: + # If the ontology_uri is a duplicate, move this entity to Synonym + primary_entity = AnatomicalEntity.objects.get(id=primary_anatomical_entities[entity.ontology_uri]) + # Create a synonym for the duplicate entity + Synonym.objects.create(anatomical_entity=primary_entity, name=entity.name) + + # Update ConnectivityStatement origins to point to the primary entity + for cs in ConnectivityStatement.objects.filter(origins=entity): + cs.origins.remove(entity) + cs.origins.add(primary_entity) + + # Update Destination and Via for anatomical_entities and from_entities + for destination in Destination.objects.filter(anatomical_entities=entity): + destination.anatomical_entities.remove(entity) + destination.anatomical_entities.add(primary_entity) + + for destination in Destination.objects.filter(from_entities=entity): + destination.from_entities.remove(entity) + destination.from_entities.add(primary_entity) + + for via in Via.objects.filter(anatomical_entities=entity): + via.anatomical_entities.remove(entity) + via.anatomical_entities.add(primary_entity) + + for via in Via.objects.filter(from_entities=entity): + via.from_entities.remove(entity) + via.from_entities.add(primary_entity) + + # Finally, delete the duplicate entity + entity.delete() + + else: + primary_anatomical_entities[entity.ontology_uri] = entity.id + + +class Migration(migrations.Migration): + dependencies = [ + ("composer", "0041_synonym"), + ] + + operations = [ + migrations.RunPython(deduplicate_anatomical_entities), + ] diff --git a/backend/composer/migrations/0043_alter_anatomicalentity_ontology_uri.py b/backend/composer/migrations/0043_alter_anatomicalentity_ontology_uri.py new file mode 100644 index 00000000..9492d85a --- /dev/null +++ b/backend/composer/migrations/0043_alter_anatomicalentity_ontology_uri.py @@ -0,0 +1,17 @@ +# Generated by Django 4.1.4 on 2024-03-13 17:30 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ("composer", "0042_auto_20240313_1718"), + ] + + operations = [ + migrations.AlterField( + model_name="anatomicalentity", + name="ontology_uri", + field=models.URLField(unique=True), + ), + ] diff --git a/backend/composer/migrations/0044_remove_anatomicalentity_ae_unique_upper_name.py b/backend/composer/migrations/0044_remove_anatomicalentity_ae_unique_upper_name.py new file mode 100644 index 00000000..9ca8784a --- /dev/null +++ b/backend/composer/migrations/0044_remove_anatomicalentity_ae_unique_upper_name.py @@ -0,0 +1,16 @@ +# Generated by Django 4.1.4 on 2024-03-13 18:49 + +from django.db import migrations + + +class Migration(migrations.Migration): + dependencies = [ + ("composer", "0043_alter_anatomicalentity_ontology_uri"), + ] + + operations = [ + migrations.RemoveConstraint( + model_name="anatomicalentity", + name="ae_unique_upper_name", + ), + ] diff --git a/backend/composer/migrations/0045_alter_synonym_unique_together.py b/backend/composer/migrations/0045_alter_synonym_unique_together.py new file mode 100644 index 00000000..1bdfd10d --- /dev/null +++ b/backend/composer/migrations/0045_alter_synonym_unique_together.py @@ -0,0 +1,16 @@ +# Generated by Django 4.1.4 on 2024-03-18 17:57 + +from django.db import migrations + + +class Migration(migrations.Migration): + dependencies = [ + ("composer", "0044_remove_anatomicalentity_ae_unique_upper_name"), + ] + + operations = [ + migrations.AlterUniqueTogether( + name="synonym", + unique_together={("anatomical_entity", "name")}, + ), + ] diff --git a/backend/composer/models.py b/backend/composer/models.py index 585d8919..db0557e6 100644 --- a/backend/composer/models.py +++ b/backend/composer/models.py @@ -229,7 +229,7 @@ class AnatomicalEntity(models.Model): """Anatomical Entity""" name = models.CharField(max_length=200, db_index=True) - ontology_uri = models.URLField() + ontology_uri = models.URLField(unique=True) def __str__(self): return self.name @@ -237,9 +237,14 @@ def __str__(self): class Meta: ordering = ["name"] verbose_name_plural = "Anatomical Entities" - constraints = [ - models.UniqueConstraint(Upper("name"), name="ae_unique_upper_name") - ] + + +class Synonym(models.Model): + anatomical_entity = models.ForeignKey(AnatomicalEntity, on_delete=models.CASCADE, related_name="synonyms") + name = models.CharField(max_length=200, db_index=True) + + class Meta: + unique_together = ('anatomical_entity', 'name',) class Tag(models.Model): diff --git a/backend/composer/resources/anatomical_entities.csv b/backend/composer/resources/anatomical_entities.csv index 0a65d2e5..11a68700 100644 --- a/backend/composer/resources/anatomical_entities.csv +++ b/backend/composer/resources/anatomical_entities.csv @@ -1,33658 +1,33681 @@ -o;o_label;o_synonym -http://purl.obolibrary.org/obo/UBERON_0000002;uterine cervix;canalis cervicis uteri -http://purl.obolibrary.org/obo/UBERON_0000002;uterine cervix;caudal segment of uterus -http://purl.obolibrary.org/obo/UBERON_0000002;uterine cervix;cervical canal -http://purl.obolibrary.org/obo/UBERON_0000002;uterine cervix;cervical canal of uterus -http://purl.obolibrary.org/obo/UBERON_0000002;uterine cervix;cervix -http://purl.obolibrary.org/obo/UBERON_0000002;uterine cervix;cervix of uterus -http://purl.obolibrary.org/obo/UBERON_0000002;uterine cervix;cervix uteri -http://purl.obolibrary.org/obo/UBERON_0000002;uterine cervix;neck of uterus -http://purl.obolibrary.org/obo/UBERON_0000002;uterine cervix;uterine cervix -http://purl.obolibrary.org/obo/UBERON_0000003;naris; -http://purl.obolibrary.org/obo/UBERON_0000004;nose;nasal sac -http://purl.obolibrary.org/obo/UBERON_0000004;nose;nasus -http://purl.obolibrary.org/obo/UBERON_0000004;nose;nose -http://purl.obolibrary.org/obo/UBERON_0000004;nose;olfactory apparatus -http://purl.obolibrary.org/obo/UBERON_0000004;nose;peripheral olfactory organ -http://purl.obolibrary.org/obo/UBERON_0000004;nose;proboscis -http://purl.obolibrary.org/obo/UBERON_0000005;chemosensory organ;chemosensory sensory organ -http://purl.obolibrary.org/obo/UBERON_0000006;islet of Langerhans;island of Langerhans -http://purl.obolibrary.org/obo/UBERON_0000006;islet of Langerhans;island of pancreas -http://purl.obolibrary.org/obo/UBERON_0000006;islet of Langerhans;islets of Langerhans -http://purl.obolibrary.org/obo/UBERON_0000006;islet of Langerhans;pancreatic insula -http://purl.obolibrary.org/obo/UBERON_0000006;islet of Langerhans;pancreatic islet -http://purl.obolibrary.org/obo/UBERON_0000007;pituitary gland;Hp -http://purl.obolibrary.org/obo/UBERON_0000007;pituitary gland;glandula pituitaria -http://purl.obolibrary.org/obo/UBERON_0000007;pituitary gland;hypophysis -http://purl.obolibrary.org/obo/UBERON_0000007;pituitary gland;hypophysis cerebri -http://purl.obolibrary.org/obo/UBERON_0000007;pituitary gland;pituitary -http://purl.obolibrary.org/obo/UBERON_0000007;pituitary gland;pituitary body -http://purl.obolibrary.org/obo/UBERON_0000009;submucosa;organ submucosa -http://purl.obolibrary.org/obo/UBERON_0000009;submucosa;region of submucosa -http://purl.obolibrary.org/obo/UBERON_0000009;submucosa;submucosa of organ -http://purl.obolibrary.org/obo/UBERON_0000009;submucosa;submucosa of region of organ -http://purl.obolibrary.org/obo/UBERON_0000009;submucosa;submucous layer -http://purl.obolibrary.org/obo/UBERON_0000009;submucosa;tela submucosa -http://purl.obolibrary.org/obo/UBERON_0000009;submucosa;tunica submucosa -http://purl.obolibrary.org/obo/UBERON_0000010;peripheral nervous system;PNS -http://purl.obolibrary.org/obo/UBERON_0000010;peripheral nervous system;pars peripherica -http://purl.obolibrary.org/obo/UBERON_0000010;peripheral nervous system;systema nervosum periphericum -http://purl.obolibrary.org/obo/UBERON_0000011;parasympathetic nervous system;PNS - parasympathetic -http://purl.obolibrary.org/obo/UBERON_0000011;parasympathetic nervous system;parasympathetic part of autonomic division of nervous system -http://purl.obolibrary.org/obo/UBERON_0000011;parasympathetic nervous system;pars parasympathica divisionis autonomici systematis nervosi -http://purl.obolibrary.org/obo/UBERON_0000012;somatic nervous system;PNS - somatic -http://purl.obolibrary.org/obo/UBERON_0000012;somatic nervous system;somatic nervous system, somatic division -http://purl.obolibrary.org/obo/UBERON_0000012;somatic nervous system;somatic part of peripheral nervous system -http://purl.obolibrary.org/obo/UBERON_0000012;somatic nervous system;somatic peripheral nervous system -http://purl.obolibrary.org/obo/UBERON_0000013;sympathetic nervous system;pars sympathica divisionis autonomici systematis nervosi -http://purl.obolibrary.org/obo/UBERON_0000013;sympathetic nervous system;sympathetic nervous system -http://purl.obolibrary.org/obo/UBERON_0000013;sympathetic nervous system;sympathetic part of autonomic division of nervous system -http://purl.obolibrary.org/obo/UBERON_0000014;zone of skin;portion of skin -http://purl.obolibrary.org/obo/UBERON_0000014;zone of skin;region of skin -http://purl.obolibrary.org/obo/UBERON_0000014;zone of skin;skin -http://purl.obolibrary.org/obo/UBERON_0000014;zone of skin;skin region -http://purl.obolibrary.org/obo/UBERON_0000014;zone of skin;skin zone -http://purl.obolibrary.org/obo/UBERON_0000015;non-material anatomical boundary;anatomical boundary -http://purl.obolibrary.org/obo/UBERON_0000016;endocrine pancreas;endocrine pancreas -http://purl.obolibrary.org/obo/UBERON_0000016;endocrine pancreas;endocrine part of pancreas -http://purl.obolibrary.org/obo/UBERON_0000016;endocrine pancreas;islets of Langerhans part of pancreas -http://purl.obolibrary.org/obo/UBERON_0000016;endocrine pancreas;pars endocrina pancreatis -http://purl.obolibrary.org/obo/UBERON_0000017;exocrine pancreas;exocrine component of pancreas -http://purl.obolibrary.org/obo/UBERON_0000017;exocrine pancreas;exocrine pancreas -http://purl.obolibrary.org/obo/UBERON_0000017;exocrine pancreas;exocrine part of pancreas -http://purl.obolibrary.org/obo/UBERON_0000017;exocrine pancreas;pars exocrina pancreatis -http://purl.obolibrary.org/obo/UBERON_0000018;compound eye; -http://purl.obolibrary.org/obo/UBERON_0000019;camera-type eye;camera-type eye plus associated structures -http://purl.obolibrary.org/obo/UBERON_0000019;camera-type eye;eye -http://purl.obolibrary.org/obo/UBERON_0000019;camera-type eye;eyes -http://purl.obolibrary.org/obo/UBERON_0000019;camera-type eye;orbital part of face -http://purl.obolibrary.org/obo/UBERON_0000019;camera-type eye;orbital region -http://purl.obolibrary.org/obo/UBERON_0000019;camera-type eye;regio orbitalis -http://purl.obolibrary.org/obo/UBERON_0000019;camera-type eye;vertebrate eye -http://purl.obolibrary.org/obo/UBERON_0000020;sense organ;Sinnesorgan -http://purl.obolibrary.org/obo/UBERON_0000020;sense organ;organ of sense organ system -http://purl.obolibrary.org/obo/UBERON_0000020;sense organ;organ of sensory organ system -http://purl.obolibrary.org/obo/UBERON_0000020;sense organ;organ of sensory system -http://purl.obolibrary.org/obo/UBERON_0000020;sense organ;sense organ system organ -http://purl.obolibrary.org/obo/UBERON_0000020;sense organ;sensillum -http://purl.obolibrary.org/obo/UBERON_0000020;sense organ;sensor -http://purl.obolibrary.org/obo/UBERON_0000020;sense organ;sensory organ -http://purl.obolibrary.org/obo/UBERON_0000020;sense organ;sensory organ system organ -http://purl.obolibrary.org/obo/UBERON_0000020;sense organ;sensory system organ -http://purl.obolibrary.org/obo/UBERON_0000021;cutaneous appendage;skin appendage -http://purl.obolibrary.org/obo/UBERON_0000022;feather; -http://purl.obolibrary.org/obo/UBERON_0000023;wing;aliform appendage -http://purl.obolibrary.org/obo/UBERON_0000024;forelimb wing; -http://purl.obolibrary.org/obo/UBERON_0000025;tube;anatomical tube -http://purl.obolibrary.org/obo/UBERON_0000025;tube;duct -http://purl.obolibrary.org/obo/UBERON_0000026;appendage;appendages -http://purl.obolibrary.org/obo/UBERON_0000026;appendage;extremitaet -http://purl.obolibrary.org/obo/UBERON_0000026;appendage;extremity -http://purl.obolibrary.org/obo/UBERON_0000026;appendage;limbs/digits/tail -http://purl.obolibrary.org/obo/UBERON_0000029;lymph node;lymph gland -http://purl.obolibrary.org/obo/UBERON_0000029;lymph node;nodus lymphaticus -http://purl.obolibrary.org/obo/UBERON_0000030;lamina propria;lamina propria mucosa -http://purl.obolibrary.org/obo/UBERON_0000030;lamina propria;lamina propria mucosae -http://purl.obolibrary.org/obo/UBERON_0000030;lamina propria;tunica propria -http://purl.obolibrary.org/obo/UBERON_0000031;lamina propria of trachea;lamina propria mucosa of trachea -http://purl.obolibrary.org/obo/UBERON_0000031;lamina propria of trachea;lamina propria mucosa of windpipe -http://purl.obolibrary.org/obo/UBERON_0000031;lamina propria of trachea;lamina propria mucosae of trachea -http://purl.obolibrary.org/obo/UBERON_0000031;lamina propria of trachea;lamina propria mucosae of windpipe -http://purl.obolibrary.org/obo/UBERON_0000031;lamina propria of trachea;lamina propria of windpipe -http://purl.obolibrary.org/obo/UBERON_0000031;lamina propria of trachea;trachea lamina propria -http://purl.obolibrary.org/obo/UBERON_0000031;lamina propria of trachea;trachea lamina propria mucosa -http://purl.obolibrary.org/obo/UBERON_0000031;lamina propria of trachea;trachea lamina propria mucosae -http://purl.obolibrary.org/obo/UBERON_0000031;lamina propria of trachea;tracheal lamina propria -http://purl.obolibrary.org/obo/UBERON_0000031;lamina propria of trachea;windpipe lamina propria -http://purl.obolibrary.org/obo/UBERON_0000031;lamina propria of trachea;windpipe lamina propria mucosa -http://purl.obolibrary.org/obo/UBERON_0000031;lamina propria of trachea;windpipe lamina propria mucosae -http://purl.obolibrary.org/obo/UBERON_0000033;head;adult head -http://purl.obolibrary.org/obo/UBERON_0000033;head;cephalic area -http://purl.obolibrary.org/obo/UBERON_0000033;head;head (volume) -http://purl.obolibrary.org/obo/UBERON_0000035;primary ovarian follicle;folliculus ovaricus primarius -http://purl.obolibrary.org/obo/UBERON_0000035;primary ovarian follicle;ovary primary follicle -http://purl.obolibrary.org/obo/UBERON_0000035;primary ovarian follicle;primary follicle of ovary -http://purl.obolibrary.org/obo/UBERON_0000035;primary ovarian follicle;primary ovarian follicle -http://purl.obolibrary.org/obo/UBERON_0000036;secondary ovarian follicle;folliculus ovaricus secondarius -http://purl.obolibrary.org/obo/UBERON_0000036;secondary ovarian follicle;ovary secondary follicle -http://purl.obolibrary.org/obo/UBERON_0000036;secondary ovarian follicle;pre-antral follicle -http://purl.obolibrary.org/obo/UBERON_0000036;secondary ovarian follicle;preantral follicle -http://purl.obolibrary.org/obo/UBERON_0000036;secondary ovarian follicle;secondary follicle of ovary -http://purl.obolibrary.org/obo/UBERON_0000037;tertiary ovarian follicle;Graafian follicle -http://purl.obolibrary.org/obo/UBERON_0000037;tertiary ovarian follicle;antral ovarian follicle -http://purl.obolibrary.org/obo/UBERON_0000037;tertiary ovarian follicle;folliculi ovarici vesiculosi -http://purl.obolibrary.org/obo/UBERON_0000037;tertiary ovarian follicle;folliculus ovaricus tertiarius -http://purl.obolibrary.org/obo/UBERON_0000037;tertiary ovarian follicle;folliculus ovaricus tertiarius (vesiculosus) -http://purl.obolibrary.org/obo/UBERON_0000037;tertiary ovarian follicle;folliculus ovaricus tertiarius (vesiculous) -http://purl.obolibrary.org/obo/UBERON_0000037;tertiary ovarian follicle;ovary antral follicle -http://purl.obolibrary.org/obo/UBERON_0000037;tertiary ovarian follicle;tertiary follicle of ovary -http://purl.obolibrary.org/obo/UBERON_0000037;tertiary ovarian follicle;vesicular follicle of ovary -http://purl.obolibrary.org/obo/UBERON_0000037;tertiary ovarian follicle;vesicular ovarian follicle -http://purl.obolibrary.org/obo/UBERON_0000038;follicular fluid;liquor follicularis -http://purl.obolibrary.org/obo/UBERON_0000038;follicular fluid;liquor folliculi -http://purl.obolibrary.org/obo/UBERON_0000038;follicular fluid;ovary follicle fluid -http://purl.obolibrary.org/obo/UBERON_0000039;follicular antrum;antral cavity -http://purl.obolibrary.org/obo/UBERON_0000039;follicular antrum;antrum folliculare -http://purl.obolibrary.org/obo/UBERON_0000039;follicular antrum;ovarian follicle antrum -http://purl.obolibrary.org/obo/UBERON_0000040;Leydig's organ; -http://purl.obolibrary.org/obo/UBERON_0000041;odontode scale;dermal denticle -http://purl.obolibrary.org/obo/UBERON_0000041;odontode scale;odontode scale -http://purl.obolibrary.org/obo/UBERON_0000041;odontode scale;placoid scale -http://purl.obolibrary.org/obo/UBERON_0000042;serous membrane;serosa -http://purl.obolibrary.org/obo/UBERON_0000042;serous membrane;tunica serosa -http://purl.obolibrary.org/obo/UBERON_0000042;serous membrane;wall of serous sac -http://purl.obolibrary.org/obo/UBERON_0000043;tendon; -http://purl.obolibrary.org/obo/UBERON_0000044;dorsal root ganglion;DRG -http://purl.obolibrary.org/obo/UBERON_0000044;dorsal root ganglion;dorsal root ganglia -http://purl.obolibrary.org/obo/UBERON_0000044;dorsal root ganglion;dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0000044;dorsal root ganglion;ganglion of dorsal root -http://purl.obolibrary.org/obo/UBERON_0000044;dorsal root ganglion;ganglion sensorium nervi spinalis -http://purl.obolibrary.org/obo/UBERON_0000044;dorsal root ganglion;ganglion spinale -http://purl.obolibrary.org/obo/UBERON_0000044;dorsal root ganglion;ganglion spinalis -http://purl.obolibrary.org/obo/UBERON_0000044;dorsal root ganglion;posterior root ganglion -http://purl.obolibrary.org/obo/UBERON_0000044;dorsal root ganglion;spinal ganglion -http://purl.obolibrary.org/obo/UBERON_0000044;dorsal root ganglion;spinal ganglion part of peripheral nervous system -http://purl.obolibrary.org/obo/UBERON_0000045;ganglion;ganglia -http://purl.obolibrary.org/obo/UBERON_0000045;ganglion;neural ganglion -http://purl.obolibrary.org/obo/UBERON_0000046;stemma;pit eye -http://purl.obolibrary.org/obo/UBERON_0000047;simple eye; -http://purl.obolibrary.org/obo/UBERON_0000048;pinhole eye; -http://purl.obolibrary.org/obo/UBERON_0000049;spherical lensed eye; -http://purl.obolibrary.org/obo/UBERON_0000050;simple eye with multiple lenses; -http://purl.obolibrary.org/obo/UBERON_0000051;fornix of vagina;fornix vaginae -http://purl.obolibrary.org/obo/UBERON_0000051;fornix of vagina;vaginal fornix -http://purl.obolibrary.org/obo/UBERON_0000052;fornix of brain;brain fornix -http://purl.obolibrary.org/obo/UBERON_0000052;fornix of brain;cerebral fornix -http://purl.obolibrary.org/obo/UBERON_0000052;fornix of brain;forebrain fornix -http://purl.obolibrary.org/obo/UBERON_0000052;fornix of brain;fornix of neuraxis -http://purl.obolibrary.org/obo/UBERON_0000052;fornix of brain;neuraxis fornix -http://purl.obolibrary.org/obo/UBERON_0000053;macula lutea; -http://purl.obolibrary.org/obo/UBERON_0000054;macula;macula -http://purl.obolibrary.org/obo/UBERON_0000054;macula;maculae -http://purl.obolibrary.org/obo/UBERON_0000054;macula;sensory macula -http://purl.obolibrary.org/obo/UBERON_0000054;macula;sensory patch -http://purl.obolibrary.org/obo/UBERON_0000055;vessel; -http://purl.obolibrary.org/obo/UBERON_0000056;ureter;metanephric duct -http://purl.obolibrary.org/obo/UBERON_0000057;urethra; -http://purl.obolibrary.org/obo/UBERON_0000058;duct;anatomical duct -http://purl.obolibrary.org/obo/UBERON_0000058;duct;ducts -http://purl.obolibrary.org/obo/UBERON_0000058;duct;exocrine duct -http://purl.obolibrary.org/obo/UBERON_0000058;duct;exocrine gland duct -http://purl.obolibrary.org/obo/UBERON_0000059;large intestine;intestinum crassum -http://purl.obolibrary.org/obo/UBERON_0000060;anatomical wall;organ wall -http://purl.obolibrary.org/obo/UBERON_0000060;anatomical wall;wall -http://purl.obolibrary.org/obo/UBERON_0000060;anatomical wall;wall of organ -http://purl.obolibrary.org/obo/UBERON_0000061;anatomical structure;biological structure -http://purl.obolibrary.org/obo/UBERON_0000061;anatomical structure;connected biological structure -http://purl.obolibrary.org/obo/UBERON_0000062;organ;anatomical unit -http://purl.obolibrary.org/obo/UBERON_0000062;organ;body organ -http://purl.obolibrary.org/obo/UBERON_0000062;organ;element -http://purl.obolibrary.org/obo/UBERON_0000063;organ subunit;organ region with fixed fiat boundary -http://purl.obolibrary.org/obo/UBERON_0000063;organ subunit;organ segment -http://purl.obolibrary.org/obo/UBERON_0000063;organ subunit;segment of organ -http://purl.obolibrary.org/obo/UBERON_0000064;organ part;cardinal organ part -http://purl.obolibrary.org/obo/UBERON_0000064;organ part;regional part of organ -http://purl.obolibrary.org/obo/UBERON_0000065;respiratory tract; -http://purl.obolibrary.org/obo/UBERON_0000072;proximo-distal subdivision of respiratory tract;respiratory tract -http://purl.obolibrary.org/obo/UBERON_0000072;proximo-distal subdivision of respiratory tract;subdivision of respiratory tract -http://purl.obolibrary.org/obo/UBERON_0000073;Regional part of nervous system;part of nervous system -http://purl.obolibrary.org/obo/UBERON_0000073;regional part of nervous system;part of nervous system -http://purl.obolibrary.org/obo/UBERON_0000074;renal glomerulus;renal glomeruli -http://purl.obolibrary.org/obo/UBERON_0000075;subdivision of skeletal system;skeletal system part -http://purl.obolibrary.org/obo/UBERON_0000075;subdivision of skeletal system;skeletal system subdivision -http://purl.obolibrary.org/obo/UBERON_0000076;external ectoderm;surface (external) ectoderm -http://purl.obolibrary.org/obo/UBERON_0000076;external ectoderm;surface ectoderm -http://purl.obolibrary.org/obo/UBERON_0000077;mixed endoderm/mesoderm-derived structure; -http://purl.obolibrary.org/obo/UBERON_0000078;mixed ectoderm/mesoderm/endoderm-derived structure; -http://purl.obolibrary.org/obo/UBERON_0000079;male reproductive system;genitalia of male organism -http://purl.obolibrary.org/obo/UBERON_0000079;male reproductive system;male genital organ -http://purl.obolibrary.org/obo/UBERON_0000079;male reproductive system;male genital system -http://purl.obolibrary.org/obo/UBERON_0000079;male reproductive system;male genital tract -http://purl.obolibrary.org/obo/UBERON_0000079;male reproductive system;male genitalia -http://purl.obolibrary.org/obo/UBERON_0000079;male reproductive system;male genitals -http://purl.obolibrary.org/obo/UBERON_0000079;male reproductive system;male organism genitalia -http://purl.obolibrary.org/obo/UBERON_0000079;male reproductive system;male organism reproductive system -http://purl.obolibrary.org/obo/UBERON_0000079;male reproductive system;male reproductive tract -http://purl.obolibrary.org/obo/UBERON_0000079;male reproductive system;reproductive system of male organism -http://purl.obolibrary.org/obo/UBERON_0000079;male reproductive system;systema genitale masculinum -http://purl.obolibrary.org/obo/UBERON_0000080;mesonephros;Wolffian body -http://purl.obolibrary.org/obo/UBERON_0000080;mesonephros;mesonephric kidney -http://purl.obolibrary.org/obo/UBERON_0000080;mesonephros;mesonephroi -http://purl.obolibrary.org/obo/UBERON_0000081;metanephros;metanephron -http://purl.obolibrary.org/obo/UBERON_0000082;adult mammalian kidney; -http://purl.obolibrary.org/obo/UBERON_0000083;mesonephric tubule; -http://purl.obolibrary.org/obo/UBERON_0000084;ureteric bud; -http://purl.obolibrary.org/obo/UBERON_0000085;morula; -http://purl.obolibrary.org/obo/UBERON_0000086;zona pellucida; -http://purl.obolibrary.org/obo/UBERON_0000087;inner cell mass; -http://purl.obolibrary.org/obo/UBERON_0000088;trophoblast;trophoblast layer -http://purl.obolibrary.org/obo/UBERON_0000089;hypoblast (generic);hypoblast -http://purl.obolibrary.org/obo/UBERON_0000090;blastocele;blastocoele -http://purl.obolibrary.org/obo/UBERON_0000090;blastocele;blastocoelic cavity -http://purl.obolibrary.org/obo/UBERON_0000090;blastocele;blastocyst cavity -http://purl.obolibrary.org/obo/UBERON_0000090;blastocele;cleavage cavity -http://purl.obolibrary.org/obo/UBERON_0000090;blastocele;segmentation cavity -http://purl.obolibrary.org/obo/UBERON_0000091;bilaminar disc;bilaminary embryonic disc -http://purl.obolibrary.org/obo/UBERON_0000091;bilaminar disc;bilaminary germ disc -http://purl.obolibrary.org/obo/UBERON_0000093;sulcus; -http://purl.obolibrary.org/obo/UBERON_0000094;membrane organ;membrane of organ -http://purl.obolibrary.org/obo/UBERON_0000095;cardiac neural crest; -http://purl.obolibrary.org/obo/UBERON_0000100;blastopore; -http://purl.obolibrary.org/obo/UBERON_0000101;lobe of lung;lung lobe -http://purl.obolibrary.org/obo/UBERON_0000101;lobe of lung;pulminory lobe -http://purl.obolibrary.org/obo/UBERON_0000101;lobe of lung;pulmonary lobe -http://purl.obolibrary.org/obo/UBERON_0000102;lung vasculature;lung vascular network -http://purl.obolibrary.org/obo/UBERON_0000102;lung vasculature;pulmonary vasculature -http://purl.obolibrary.org/obo/UBERON_0000102;lung vasculature;vascular network of lung -http://purl.obolibrary.org/obo/UBERON_0000102;lung vasculature;vasculature of lung -http://purl.obolibrary.org/obo/UBERON_0000114;lung connective tissue;connective tissue of lung -http://purl.obolibrary.org/obo/UBERON_0000114;lung connective tissue;pulmonary interstitium -http://purl.obolibrary.org/obo/UBERON_0000115;lung epithelium;epithelial tissue of lung -http://purl.obolibrary.org/obo/UBERON_0000115;lung epithelium;epithelium of lung -http://purl.obolibrary.org/obo/UBERON_0000115;lung epithelium;lung epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0000116;lung saccule; -http://purl.obolibrary.org/obo/UBERON_0000117;respiratory tube;airway -http://purl.obolibrary.org/obo/UBERON_0000117;respiratory tube;respiratory conducting tube -http://purl.obolibrary.org/obo/UBERON_0000117;respiratory tube;segment of tracheobronchial tree -http://purl.obolibrary.org/obo/UBERON_0000117;respiratory tube;tracheobronchial tree segment -http://purl.obolibrary.org/obo/UBERON_0000118;lung bud; -http://purl.obolibrary.org/obo/UBERON_0000119;cell layer;cell sheath -http://purl.obolibrary.org/obo/UBERON_0000119;cell layer;layer -http://purl.obolibrary.org/obo/UBERON_0000119;cell layer;layer of cells -http://purl.obolibrary.org/obo/UBERON_0000119;cell layer;sheath of cells -http://purl.obolibrary.org/obo/UBERON_0000120;blood brain barrier;blood-brain barrier -http://purl.obolibrary.org/obo/UBERON_0000121;perineurium; -http://purl.obolibrary.org/obo/UBERON_0000122;neuron projection bundle;funiculus -http://purl.obolibrary.org/obo/UBERON_0000122;neuron projection bundle;nerve fiber bundle -http://purl.obolibrary.org/obo/UBERON_0000122;neuron projection bundle;neural fiber bundle -http://purl.obolibrary.org/obo/UBERON_0000123;endoneurium; -http://purl.obolibrary.org/obo/UBERON_0000124;epineurium; -http://purl.obolibrary.org/obo/UBERON_0000125;neural nucleus;nervous system nucleus -http://purl.obolibrary.org/obo/UBERON_0000125;neural nucleus;neuraxis nucleus -http://purl.obolibrary.org/obo/UBERON_0000125;neural nucleus;neuronal nucleus -http://purl.obolibrary.org/obo/UBERON_0000125;neural nucleus;nucleus -http://purl.obolibrary.org/obo/UBERON_0000125;neural nucleus;nucleus of CNS -http://purl.obolibrary.org/obo/UBERON_0000125;neural nucleus;nucleus of neuraxis -http://purl.obolibrary.org/obo/UBERON_0000126;cranial nerve nucleus;cranial neural nucleus -http://purl.obolibrary.org/obo/UBERON_0000126;cranial nerve nucleus;nucleus nervi cranialis -http://purl.obolibrary.org/obo/UBERON_0000126;cranial nerve nucleus;nucleus of cranial nerve -http://purl.obolibrary.org/obo/UBERON_0000127;facial nucleus;facial VII motor nucleus -http://purl.obolibrary.org/obo/UBERON_0000127;facial nucleus;facial VII nucleus -http://purl.obolibrary.org/obo/UBERON_0000127;facial nucleus;facial nerve nucleus -http://purl.obolibrary.org/obo/UBERON_0000127;facial nucleus;nucleus of facial nerve -http://purl.obolibrary.org/obo/UBERON_0000128;olivary body;olive body -http://purl.obolibrary.org/obo/UBERON_0000130;transverse foramen;foramen transversarium -http://purl.obolibrary.org/obo/UBERON_0000130;transverse foramen;foramen transversarium of cervical vertebra -http://purl.obolibrary.org/obo/UBERON_0000130;transverse foramen;foramen transversarium vertebrae cervicales -http://purl.obolibrary.org/obo/UBERON_0000130;transverse foramen;transverse foramen of cervical vertebra -http://purl.obolibrary.org/obo/UBERON_0000144;trochlea of humerus;humeral trochlea -http://purl.obolibrary.org/obo/UBERON_0000144;trochlea of humerus;trochlea humeri -http://purl.obolibrary.org/obo/UBERON_0000151;pectoral fin;forefin -http://purl.obolibrary.org/obo/UBERON_0000152;pelvic fin; -http://purl.obolibrary.org/obo/UBERON_0000153;anterior region of body; -http://purl.obolibrary.org/obo/UBERON_0000154;posterior region of body; -http://purl.obolibrary.org/obo/UBERON_0000155;theca cell layer;layer of theca cells -http://purl.obolibrary.org/obo/UBERON_0000155;theca cell layer;ovary theca -http://purl.obolibrary.org/obo/UBERON_0000155;theca cell layer;theca cell layer of ovarian follicle -http://purl.obolibrary.org/obo/UBERON_0000155;theca cell layer;theca of follicle -http://purl.obolibrary.org/obo/UBERON_0000155;theca cell layer;thecal cell layer -http://purl.obolibrary.org/obo/UBERON_0000156;theca externa;ovary theca externa -http://purl.obolibrary.org/obo/UBERON_0000156;theca externa;theca externa (folliculus ovaricus tertiarius) -http://purl.obolibrary.org/obo/UBERON_0000156;theca externa;tunica externa of theca folliculi -http://purl.obolibrary.org/obo/UBERON_0000157;theca interna;ovary theca interna -http://purl.obolibrary.org/obo/UBERON_0000157;theca interna;theca interna (folliculus ovaricus tertiarius) -http://purl.obolibrary.org/obo/UBERON_0000157;theca interna;tunica interna of theca folliculi -http://purl.obolibrary.org/obo/UBERON_0000158;membranous layer;membrane -http://purl.obolibrary.org/obo/UBERON_0000158;membranous layer;membranous organ component -http://purl.obolibrary.org/obo/UBERON_0000159;anal canal;anal canal -http://purl.obolibrary.org/obo/UBERON_0000159;anal canal;anal canal viewed anatomically -http://purl.obolibrary.org/obo/UBERON_0000159;anal canal;anatomical anal canal -http://purl.obolibrary.org/obo/UBERON_0000160;intestine;bowel -http://purl.obolibrary.org/obo/UBERON_0000160;intestine;intestinal tract -http://purl.obolibrary.org/obo/UBERON_0000161;orifice;anatomical orifice -http://purl.obolibrary.org/obo/UBERON_0000162;cloaca; -http://purl.obolibrary.org/obo/UBERON_0000163;embryonic cloaca; -http://purl.obolibrary.org/obo/UBERON_0000164;primitive urogenital sinus;UGS -http://purl.obolibrary.org/obo/UBERON_0000164;primitive urogenital sinus;fetal UGS -http://purl.obolibrary.org/obo/UBERON_0000164;primitive urogenital sinus;sinus urogenitalis -http://purl.obolibrary.org/obo/UBERON_0000165;mouth;adult mouth -http://purl.obolibrary.org/obo/UBERON_0000165;mouth;cavital oralis -http://purl.obolibrary.org/obo/UBERON_0000165;mouth;cavitas oris -http://purl.obolibrary.org/obo/UBERON_0000165;mouth;cavum oris -http://purl.obolibrary.org/obo/UBERON_0000165;mouth;mouth cavity -http://purl.obolibrary.org/obo/UBERON_0000165;mouth;oral region -http://purl.obolibrary.org/obo/UBERON_0000165;mouth;oral vestibule -http://purl.obolibrary.org/obo/UBERON_0000165;mouth;regio oralis -http://purl.obolibrary.org/obo/UBERON_0000165;mouth;rima oris -http://purl.obolibrary.org/obo/UBERON_0000165;mouth;stoma -http://purl.obolibrary.org/obo/UBERON_0000165;mouth;stomatodaeum -http://purl.obolibrary.org/obo/UBERON_0000165;mouth;trophic apparatus -http://purl.obolibrary.org/obo/UBERON_0000165;mouth;vestibule of mouth -http://purl.obolibrary.org/obo/UBERON_0000165;mouth;vestibulum oris -http://purl.obolibrary.org/obo/UBERON_0000166;oral opening;oral fissure -http://purl.obolibrary.org/obo/UBERON_0000166;oral opening;oral orifice -http://purl.obolibrary.org/obo/UBERON_0000167;oral cavity;buccal cavity -http://purl.obolibrary.org/obo/UBERON_0000167;oral cavity;cavity of mouth -http://purl.obolibrary.org/obo/UBERON_0000168;proximal-distal subdivision of colon;segment of colon -http://purl.obolibrary.org/obo/UBERON_0000170;pair of lungs;lungs -http://purl.obolibrary.org/obo/UBERON_0000170;pair of lungs;lungs pair -http://purl.obolibrary.org/obo/UBERON_0000170;pair of lungs;pulmones -http://purl.obolibrary.org/obo/UBERON_0000170;pair of lungs;set of lungs -http://purl.obolibrary.org/obo/UBERON_0000171;respiration organ;apparatus respiratorius organ -http://purl.obolibrary.org/obo/UBERON_0000171;respiration organ;breathing organ -http://purl.obolibrary.org/obo/UBERON_0000171;respiration organ;gas exchange organ -http://purl.obolibrary.org/obo/UBERON_0000171;respiration organ;organ of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0000171;respiration organ;organ of respiratory system -http://purl.obolibrary.org/obo/UBERON_0000171;respiration organ;respiratory organ -http://purl.obolibrary.org/obo/UBERON_0000171;respiration organ;respiratory system organ -http://purl.obolibrary.org/obo/UBERON_0000172;vomit;vomitus -http://purl.obolibrary.org/obo/UBERON_0000173;amniotic fluid; -http://purl.obolibrary.org/obo/UBERON_0000174;excreta;excreted substance -http://purl.obolibrary.org/obo/UBERON_0000174;excreta;portion of excreted substance -http://purl.obolibrary.org/obo/UBERON_0000174;excreta;waste substance -http://purl.obolibrary.org/obo/UBERON_0000175;pleural effusion; -http://purl.obolibrary.org/obo/UBERON_0000176;oronasal secretion; -http://purl.obolibrary.org/obo/UBERON_0000177;pus; -http://purl.obolibrary.org/obo/UBERON_0000178;blood;portion of blood -http://purl.obolibrary.org/obo/UBERON_0000178;blood;vertebrate blood -http://purl.obolibrary.org/obo/UBERON_0000179;haemolymphatic fluid; -http://purl.obolibrary.org/obo/UBERON_0000180;lateral lumbar region of abdomen;flank -http://purl.obolibrary.org/obo/UBERON_0000180;lateral lumbar region of abdomen;lateral region -http://purl.obolibrary.org/obo/UBERON_0000180;lateral lumbar region of abdomen;lateral region of abdomen -http://purl.obolibrary.org/obo/UBERON_0000180;lateral lumbar region of abdomen;latus -http://purl.obolibrary.org/obo/UBERON_0000180;lateral lumbar region of abdomen;regio lateralis -http://purl.obolibrary.org/obo/UBERON_0000199;neck of radius;collum radii -http://purl.obolibrary.org/obo/UBERON_0000199;neck of radius;radial neck -http://purl.obolibrary.org/obo/UBERON_0000200;gyrus;cerebral gyrus -http://purl.obolibrary.org/obo/UBERON_0000200;gyrus;folia -http://purl.obolibrary.org/obo/UBERON_0000200;gyrus;folium -http://purl.obolibrary.org/obo/UBERON_0000200;gyrus;folium of brain -http://purl.obolibrary.org/obo/UBERON_0000200;gyrus;gyri -http://purl.obolibrary.org/obo/UBERON_0000200;gyrus;gyri of cerebrum -http://purl.obolibrary.org/obo/UBERON_0000200;gyrus;gyrus of cerebral hemisphere -http://purl.obolibrary.org/obo/UBERON_0000200;gyrus;gyrus of cerebrum -http://purl.obolibrary.org/obo/UBERON_0000200;gyrus;gyrus of neuraxis -http://purl.obolibrary.org/obo/UBERON_0000200;gyrus;neuraxis gyrus -http://purl.obolibrary.org/obo/UBERON_0000201;endothelial blood brain barrier; -http://purl.obolibrary.org/obo/UBERON_0000202;glial blood brain barrier; -http://purl.obolibrary.org/obo/UBERON_0000203;pallium;area dorsalis telencephali -http://purl.obolibrary.org/obo/UBERON_0000203;pallium;dorsal part of telencephalon -http://purl.obolibrary.org/obo/UBERON_0000203;pallium;dorsal telencephalic area -http://purl.obolibrary.org/obo/UBERON_0000203;pallium;dorsal telencephalon -http://purl.obolibrary.org/obo/UBERON_0000204;ventral part of telencephalon;area ventralis telencephali -http://purl.obolibrary.org/obo/UBERON_0000204;ventral part of telencephalon;subpallium -http://purl.obolibrary.org/obo/UBERON_0000204;ventral part of telencephalon;ventral telencephalon -http://purl.obolibrary.org/obo/UBERON_0000205;papula;papulae -http://purl.obolibrary.org/obo/UBERON_0000205;papula;papulli -http://purl.obolibrary.org/obo/UBERON_0000206;pharyngeal gill; -http://purl.obolibrary.org/obo/UBERON_0000207;compound eye corneal lens; -http://purl.obolibrary.org/obo/UBERON_0000209;tetrapod frontal bone; -http://purl.obolibrary.org/obo/UBERON_0000210;tetrapod parietal bone; -http://purl.obolibrary.org/obo/UBERON_0000211;ligament;ligament organ -http://purl.obolibrary.org/obo/UBERON_0000212;toilet claw; -http://purl.obolibrary.org/obo/UBERON_0000218;vertebral arch of axis;vertebral foramen of cervical vertebra 2 -http://purl.obolibrary.org/obo/UBERON_0000219;vertebral foramen of atlas;vertebral foramen of cervical vertebra 1 -http://purl.obolibrary.org/obo/UBERON_0000220;atlanto-occipital joint;articulatio atlanto-occipitalis -http://purl.obolibrary.org/obo/UBERON_0000220;atlanto-occipital joint;atlanto occipital joint -http://purl.obolibrary.org/obo/UBERON_0000220;atlanto-occipital joint;atlantooccipital joint -http://purl.obolibrary.org/obo/UBERON_0000220;atlanto-occipital joint;craniovertebral joint -http://purl.obolibrary.org/obo/UBERON_0000220;atlanto-occipital joint;occipito atlantal joint -http://purl.obolibrary.org/obo/UBERON_0000220;atlanto-occipital joint;occipito-atlantal joint -http://purl.obolibrary.org/obo/UBERON_0000221;supraauricular point;supra-auricular part of head -http://purl.obolibrary.org/obo/UBERON_0000301;amniotic cavity; -http://purl.obolibrary.org/obo/UBERON_0000303;adductor longus;adductor longus muscle -http://purl.obolibrary.org/obo/UBERON_0000304;tendon sheath;synovial tendon sheath -http://purl.obolibrary.org/obo/UBERON_0000305;amnion;amnios -http://purl.obolibrary.org/obo/UBERON_0000307;blastula;blastula embryo -http://purl.obolibrary.org/obo/UBERON_0000309;body wall;wall fo trunk -http://purl.obolibrary.org/obo/UBERON_0000310;breast;mammary part of chest -http://purl.obolibrary.org/obo/UBERON_0000310;breast;mammary region -http://purl.obolibrary.org/obo/UBERON_0000311;extensor muscle; -http://purl.obolibrary.org/obo/UBERON_0000312;inner cambium layer of periosteum;cambial layer -http://purl.obolibrary.org/obo/UBERON_0000312;inner cambium layer of periosteum;cambial layer of periosteum -http://purl.obolibrary.org/obo/UBERON_0000312;inner cambium layer of periosteum;cambium -http://purl.obolibrary.org/obo/UBERON_0000312;inner cambium layer of periosteum;cambium layer of periosteum -http://purl.obolibrary.org/obo/UBERON_0000312;inner cambium layer of periosteum;inner cambial layer of periosteum -http://purl.obolibrary.org/obo/UBERON_0000312;inner cambium layer of periosteum;internal layer of periosteum -http://purl.obolibrary.org/obo/UBERON_0000312;inner cambium layer of periosteum;internal periosteum -http://purl.obolibrary.org/obo/UBERON_0000312;inner cambium layer of periosteum;osteogenic layer of periosteum -http://purl.obolibrary.org/obo/UBERON_0000313;portion of cartilage tissue in tibia;tibial cartilage -http://purl.obolibrary.org/obo/UBERON_0000314;cecum mucosa;caecum mucosa -http://purl.obolibrary.org/obo/UBERON_0000314;cecum mucosa;caecum mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0000314;cecum mucosa;caecum mucous membrane -http://purl.obolibrary.org/obo/UBERON_0000314;cecum mucosa;caecum organ mucosa -http://purl.obolibrary.org/obo/UBERON_0000314;cecum mucosa;cecal mucosa -http://purl.obolibrary.org/obo/UBERON_0000314;cecum mucosa;cecum mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0000314;cecum mucosa;cecum mucous membrane -http://purl.obolibrary.org/obo/UBERON_0000314;cecum mucosa;cecum organ mucosa -http://purl.obolibrary.org/obo/UBERON_0000314;cecum mucosa;intestinum crassum caecum mucosa -http://purl.obolibrary.org/obo/UBERON_0000314;cecum mucosa;intestinum crassum caecum mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0000314;cecum mucosa;intestinum crassum caecum mucous membrane -http://purl.obolibrary.org/obo/UBERON_0000314;cecum mucosa;intestinum crassum caecum organ mucosa -http://purl.obolibrary.org/obo/UBERON_0000314;cecum mucosa;mucosa of caecum -http://purl.obolibrary.org/obo/UBERON_0000314;cecum mucosa;mucosa of cecum -http://purl.obolibrary.org/obo/UBERON_0000314;cecum mucosa;mucosa of intestinum crassum caecum -http://purl.obolibrary.org/obo/UBERON_0000314;cecum mucosa;mucosa of organ of caecum -http://purl.obolibrary.org/obo/UBERON_0000314;cecum mucosa;mucosa of organ of cecum -http://purl.obolibrary.org/obo/UBERON_0000314;cecum mucosa;mucosa of organ of intestinum crassum caecum -http://purl.obolibrary.org/obo/UBERON_0000314;cecum mucosa;mucous membrane of caecum -http://purl.obolibrary.org/obo/UBERON_0000314;cecum mucosa;mucous membrane of cecum -http://purl.obolibrary.org/obo/UBERON_0000314;cecum mucosa;mucous membrane of intestinum crassum caecum -http://purl.obolibrary.org/obo/UBERON_0000314;cecum mucosa;organ mucosa of caecum -http://purl.obolibrary.org/obo/UBERON_0000314;cecum mucosa;organ mucosa of cecum -http://purl.obolibrary.org/obo/UBERON_0000314;cecum mucosa;organ mucosa of intestinum crassum caecum -http://purl.obolibrary.org/obo/UBERON_0000315;subarachnoid space;subarachnoid space of CNS -http://purl.obolibrary.org/obo/UBERON_0000315;subarachnoid space;subarachnoid space of central nervous system -http://purl.obolibrary.org/obo/UBERON_0000315;subarachnoid space;subarachnoid space of neuraxis -http://purl.obolibrary.org/obo/UBERON_0000316;cervical mucus;cervix mucus -http://purl.obolibrary.org/obo/UBERON_0000317;colonic mucosa;colon mucosa -http://purl.obolibrary.org/obo/UBERON_0000317;colonic mucosa;colon mucous membrane -http://purl.obolibrary.org/obo/UBERON_0000317;colonic mucosa;colonic mucosa -http://purl.obolibrary.org/obo/UBERON_0000317;colonic mucosa;colonic mucous membrane -http://purl.obolibrary.org/obo/UBERON_0000317;colonic mucosa;large bowel mucosa -http://purl.obolibrary.org/obo/UBERON_0000317;colonic mucosa;mucosa of colon -http://purl.obolibrary.org/obo/UBERON_0000317;colonic mucosa;mucosa of large bowel -http://purl.obolibrary.org/obo/UBERON_0000319;cytotrophoblast;cellular trophoblast -http://purl.obolibrary.org/obo/UBERON_0000319;cytotrophoblast;cytotrophoblastic cell layer -http://purl.obolibrary.org/obo/UBERON_0000320;duodenal mucosa;doudenal mucosa -http://purl.obolibrary.org/obo/UBERON_0000320;duodenal mucosa;duodenal mucous membrane -http://purl.obolibrary.org/obo/UBERON_0000320;duodenal mucosa;mucosa of duodenum -http://purl.obolibrary.org/obo/UBERON_0000320;duodenal mucosa;mucous membrane of duodenum -http://purl.obolibrary.org/obo/UBERON_0000323;late embryo; -http://purl.obolibrary.org/obo/UBERON_0000325;gastric gland; -http://purl.obolibrary.org/obo/UBERON_0000326;pancreatic juice; -http://purl.obolibrary.org/obo/UBERON_0000328;gut wall;digestive tract wall -http://purl.obolibrary.org/obo/UBERON_0000328;gut wall;wall of alimentary tract -http://purl.obolibrary.org/obo/UBERON_0000328;gut wall;wall of digestive tract -http://purl.obolibrary.org/obo/UBERON_0000328;gut wall;wall of gut -http://purl.obolibrary.org/obo/UBERON_0000329;hair root;root of hair -http://purl.obolibrary.org/obo/UBERON_0000331;ileal mucosa;ileal mucous membrane -http://purl.obolibrary.org/obo/UBERON_0000331;ileal mucosa;ileum mucosa -http://purl.obolibrary.org/obo/UBERON_0000331;ileal mucosa;ileum mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0000331;ileal mucosa;ileum mucous membrane -http://purl.obolibrary.org/obo/UBERON_0000331;ileal mucosa;ileum organ mucosa -http://purl.obolibrary.org/obo/UBERON_0000331;ileal mucosa;mucosa of ileum -http://purl.obolibrary.org/obo/UBERON_0000331;ileal mucosa;mucosa of organ of ileum -http://purl.obolibrary.org/obo/UBERON_0000331;ileal mucosa;mucous membrane of ileum -http://purl.obolibrary.org/obo/UBERON_0000331;ileal mucosa;organ mucosa of ileum -http://purl.obolibrary.org/obo/UBERON_0000332;yellow bone marrow;medulla ossium flava -http://purl.obolibrary.org/obo/UBERON_0000332;yellow bone marrow;yellow marrow -http://purl.obolibrary.org/obo/UBERON_0000333;intestinal gland;bowel mucosa gland -http://purl.obolibrary.org/obo/UBERON_0000333;intestinal gland;bowel mucosa of organ gland -http://purl.obolibrary.org/obo/UBERON_0000333;intestinal gland;bowel mucous membrane gland -http://purl.obolibrary.org/obo/UBERON_0000333;intestinal gland;bowel organ mucosa gland -http://purl.obolibrary.org/obo/UBERON_0000333;intestinal gland;gland of bowel mucosa -http://purl.obolibrary.org/obo/UBERON_0000333;intestinal gland;gland of bowel mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0000333;intestinal gland;gland of bowel mucous membrane -http://purl.obolibrary.org/obo/UBERON_0000333;intestinal gland;gland of bowel organ mucosa -http://purl.obolibrary.org/obo/UBERON_0000333;intestinal gland;gland of intestinal mucosa -http://purl.obolibrary.org/obo/UBERON_0000333;intestinal gland;gland of intestine mucosa -http://purl.obolibrary.org/obo/UBERON_0000333;intestinal gland;gland of intestine mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0000333;intestinal gland;gland of intestine mucous membrane -http://purl.obolibrary.org/obo/UBERON_0000333;intestinal gland;gland of intestine organ mucosa -http://purl.obolibrary.org/obo/UBERON_0000333;intestinal gland;gland of mucosa of bowel -http://purl.obolibrary.org/obo/UBERON_0000333;intestinal gland;gland of mucosa of intestine -http://purl.obolibrary.org/obo/UBERON_0000333;intestinal gland;gland of mucosa of organ of bowel -http://purl.obolibrary.org/obo/UBERON_0000333;intestinal gland;gland of mucosa of organ of intestine -http://purl.obolibrary.org/obo/UBERON_0000333;intestinal gland;gland of mucous membrane of bowel -http://purl.obolibrary.org/obo/UBERON_0000333;intestinal gland;gland of mucous membrane of intestine -http://purl.obolibrary.org/obo/UBERON_0000333;intestinal gland;gland of organ mucosa of bowel -http://purl.obolibrary.org/obo/UBERON_0000333;intestinal gland;gland of organ mucosa of intestine -http://purl.obolibrary.org/obo/UBERON_0000333;intestinal gland;glandula intestinalis -http://purl.obolibrary.org/obo/UBERON_0000333;intestinal gland;intestinal mucosa gland -http://purl.obolibrary.org/obo/UBERON_0000333;intestinal gland;intestine mucosa gland -http://purl.obolibrary.org/obo/UBERON_0000333;intestinal gland;intestine mucosa of organ gland -http://purl.obolibrary.org/obo/UBERON_0000333;intestinal gland;intestine mucous membrane gland -http://purl.obolibrary.org/obo/UBERON_0000333;intestinal gland;intestine organ mucosa gland -http://purl.obolibrary.org/obo/UBERON_0000333;intestinal gland;mucosa of bowel gland -http://purl.obolibrary.org/obo/UBERON_0000333;intestinal gland;mucosa of intestine gland -http://purl.obolibrary.org/obo/UBERON_0000333;intestinal gland;mucosa of organ of bowel gland -http://purl.obolibrary.org/obo/UBERON_0000333;intestinal gland;mucosa of organ of intestine gland -http://purl.obolibrary.org/obo/UBERON_0000333;intestinal gland;mucous membrane of bowel gland -http://purl.obolibrary.org/obo/UBERON_0000333;intestinal gland;mucous membrane of intestine gland -http://purl.obolibrary.org/obo/UBERON_0000333;intestinal gland;organ mucosa of bowel gland -http://purl.obolibrary.org/obo/UBERON_0000333;intestinal gland;organ mucosa of intestine gland -http://purl.obolibrary.org/obo/UBERON_0000341;throat; -http://purl.obolibrary.org/obo/UBERON_0000344;mucosa;mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0000344;mucosa;mucosa of organ part -http://purl.obolibrary.org/obo/UBERON_0000344;mucosa;mucosal region -http://purl.obolibrary.org/obo/UBERON_0000344;mucosa;mucous membrane -http://purl.obolibrary.org/obo/UBERON_0000344;mucosa;organ mucosa -http://purl.obolibrary.org/obo/UBERON_0000344;mucosa;region of mucosa -http://purl.obolibrary.org/obo/UBERON_0000344;mucosa;tunica mucosa -http://purl.obolibrary.org/obo/UBERON_0000345;myelin; -http://purl.obolibrary.org/obo/UBERON_0000347;entire myelin sheath; -http://purl.obolibrary.org/obo/UBERON_0000348;ophthalmic nerve;ciliary nerve -http://purl.obolibrary.org/obo/UBERON_0000348;ophthalmic nerve;cranial nerve V, branch V1 -http://purl.obolibrary.org/obo/UBERON_0000348;ophthalmic nerve;ethmoidal nerve -http://purl.obolibrary.org/obo/UBERON_0000348;ophthalmic nerve;first branch of fifth cranial nerve -http://purl.obolibrary.org/obo/UBERON_0000348;ophthalmic nerve;first division of fifth cranial nerve -http://purl.obolibrary.org/obo/UBERON_0000348;ophthalmic nerve;first division of trigeminal nerve -http://purl.obolibrary.org/obo/UBERON_0000348;ophthalmic nerve;nervus ophthalmicus (V1) -http://purl.obolibrary.org/obo/UBERON_0000348;ophthalmic nerve;nervus ophthalmicus (Va) -http://purl.obolibrary.org/obo/UBERON_0000348;ophthalmic nerve;nervus ophthalmicus [v1] -http://purl.obolibrary.org/obo/UBERON_0000348;ophthalmic nerve;nervus ophthalmicus [va] -http://purl.obolibrary.org/obo/UBERON_0000348;ophthalmic nerve;ophthalmic division -http://purl.obolibrary.org/obo/UBERON_0000348;ophthalmic nerve;ophthalmic division [V1] -http://purl.obolibrary.org/obo/UBERON_0000348;ophthalmic nerve;ophthalmic division [Va] -http://purl.obolibrary.org/obo/UBERON_0000348;ophthalmic nerve;ophthalmic division of fifth cranial nerve -http://purl.obolibrary.org/obo/UBERON_0000348;ophthalmic nerve;ophthalmic division of trigeminal nerve (V1) -http://purl.obolibrary.org/obo/UBERON_0000348;ophthalmic nerve;ophthalmic division of trigeminal nerve (Va) -http://purl.obolibrary.org/obo/UBERON_0000348;ophthalmic nerve;ophthalmic nerve [V1] -http://purl.obolibrary.org/obo/UBERON_0000348;ophthalmic nerve;ophthalmic nerve [Va] -http://purl.obolibrary.org/obo/UBERON_0000348;ophthalmic nerve;opthalmic nerve -http://purl.obolibrary.org/obo/UBERON_0000348;ophthalmic nerve;profundal nerve -http://purl.obolibrary.org/obo/UBERON_0000348;ophthalmic nerve;profundus -http://purl.obolibrary.org/obo/UBERON_0000348;ophthalmic nerve;profundus nerve -http://purl.obolibrary.org/obo/UBERON_0000348;ophthalmic nerve;ramus opthalmicus profundus (ramus V1) -http://purl.obolibrary.org/obo/UBERON_0000348;ophthalmic nerve;rostral branch of trigeminal nerve -http://purl.obolibrary.org/obo/UBERON_0000348;ophthalmic nerve;trigeminal V nerve ophthalmic division -http://purl.obolibrary.org/obo/UBERON_0000348;ophthalmic nerve;trigeminal nerve ophthalmic division -http://purl.obolibrary.org/obo/UBERON_0000349;limbic system;visceral brain -http://purl.obolibrary.org/obo/UBERON_0000351;nuchal ligament;ligament of neck -http://purl.obolibrary.org/obo/UBERON_0000351;nuchal ligament;ligamentum nuchae -http://purl.obolibrary.org/obo/UBERON_0000353;parenchyma; -http://purl.obolibrary.org/obo/UBERON_0000355;pharyngeal mucosa;mucosa of organ of pharynx -http://purl.obolibrary.org/obo/UBERON_0000355;pharyngeal mucosa;mucosa of pharynx -http://purl.obolibrary.org/obo/UBERON_0000355;pharyngeal mucosa;mucous membrane of pharynx -http://purl.obolibrary.org/obo/UBERON_0000355;pharyngeal mucosa;organ mucosa of pharynx -http://purl.obolibrary.org/obo/UBERON_0000355;pharyngeal mucosa;pharynx mucosa -http://purl.obolibrary.org/obo/UBERON_0000355;pharyngeal mucosa;pharynx mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0000355;pharyngeal mucosa;pharynx mucous membrane -http://purl.obolibrary.org/obo/UBERON_0000355;pharyngeal mucosa;pharynx organ mucosa -http://purl.obolibrary.org/obo/UBERON_0000355;pharyngeal mucosa;tunica mucosa pharyngea -http://purl.obolibrary.org/obo/UBERON_0000355;pharyngeal mucosa;tunica mucosa pharyngis -http://purl.obolibrary.org/obo/UBERON_0000358;blastocyst; -http://purl.obolibrary.org/obo/UBERON_0000359;preputial gland;glandulae preputiales -http://purl.obolibrary.org/obo/UBERON_0000359;preputial gland;preputial glands -http://purl.obolibrary.org/obo/UBERON_0000359;preputial gland;preputial glands set -http://purl.obolibrary.org/obo/UBERON_0000361;red bone marrow;medulla ossium rubra -http://purl.obolibrary.org/obo/UBERON_0000361;red bone marrow;parenchymal red marrow -http://purl.obolibrary.org/obo/UBERON_0000361;red bone marrow;red marrow -http://purl.obolibrary.org/obo/UBERON_0000362;renal medulla;kidney medulla -http://purl.obolibrary.org/obo/UBERON_0000362;renal medulla;medulla of kidney -http://purl.obolibrary.org/obo/UBERON_0000362;renal medulla;medulla renalis -http://purl.obolibrary.org/obo/UBERON_0000362;renal medulla;pyramides renales -http://purl.obolibrary.org/obo/UBERON_0000362;renal medulla;renal medullae -http://purl.obolibrary.org/obo/UBERON_0000362;renal medulla;renal medullae set -http://purl.obolibrary.org/obo/UBERON_0000362;renal medulla;renal pyramids -http://purl.obolibrary.org/obo/UBERON_0000362;renal medulla;renal pyramids set -http://purl.obolibrary.org/obo/UBERON_0000363;reticuloendothelial system;RES -http://purl.obolibrary.org/obo/UBERON_0000363;reticuloendothelial system;lymphoreticular system -http://purl.obolibrary.org/obo/UBERON_0000363;reticuloendothelial system;mononuclear phagocyte system -http://purl.obolibrary.org/obo/UBERON_0000363;reticuloendothelial system;reticuloendothelial system -http://purl.obolibrary.org/obo/UBERON_0000365;urothelium;epithelium transitionale -http://purl.obolibrary.org/obo/UBERON_0000365;urothelium;transitional epithelium -http://purl.obolibrary.org/obo/UBERON_0000365;urothelium;uroepithelium -http://purl.obolibrary.org/obo/UBERON_0000366;flexor muscle; -http://purl.obolibrary.org/obo/UBERON_0000368;adductor brevis;adductor brevis muscle -http://purl.obolibrary.org/obo/UBERON_0000368;adductor brevis;musculus adductos brevis -http://purl.obolibrary.org/obo/UBERON_0000369;corpus striatum;striate body -http://purl.obolibrary.org/obo/UBERON_0000369;corpus striatum;striated body -http://purl.obolibrary.org/obo/UBERON_0000370;adductor magnus;adductor magnus muscle -http://purl.obolibrary.org/obo/UBERON_0000371;syncytiotrophoblast;syncytial trophoblast -http://purl.obolibrary.org/obo/UBERON_0000371;syncytiotrophoblast;syntrophoblast layer -http://purl.obolibrary.org/obo/UBERON_0000372;extensor digitorum brevis pes;extensor digitorum brevis -http://purl.obolibrary.org/obo/UBERON_0000372;extensor digitorum brevis pes;extensor digitorum brevis muscle -http://purl.obolibrary.org/obo/UBERON_0000373;tapetum of corpus callosum; -http://purl.obolibrary.org/obo/UBERON_0000375;mandibular nerve;inferior maxillary nerve -http://purl.obolibrary.org/obo/UBERON_0000375;mandibular nerve;mandibular division [V3] -http://purl.obolibrary.org/obo/UBERON_0000375;mandibular nerve;mandibular division [Vc] -http://purl.obolibrary.org/obo/UBERON_0000375;mandibular nerve;mandibular division of fifth cranial nerve -http://purl.obolibrary.org/obo/UBERON_0000375;mandibular nerve;"mandibular division of trigeminal nerve [Vc; V3]" -http://purl.obolibrary.org/obo/UBERON_0000375;mandibular nerve;mandibular nerve [V3] -http://purl.obolibrary.org/obo/UBERON_0000375;mandibular nerve;mandibular nerve [Vc] -http://purl.obolibrary.org/obo/UBERON_0000375;mandibular nerve;n. mandibularis -http://purl.obolibrary.org/obo/UBERON_0000375;mandibular nerve;nervus mandibularis -http://purl.obolibrary.org/obo/UBERON_0000375;mandibular nerve;"nervus mandibularis [Vc; V3]" -http://purl.obolibrary.org/obo/UBERON_0000375;mandibular nerve;nervus mandibularis [v3] -http://purl.obolibrary.org/obo/UBERON_0000375;mandibular nerve;nervus mandibularis [vc] -http://purl.obolibrary.org/obo/UBERON_0000375;mandibular nerve;ramus mandibularis (ramus V3) -http://purl.obolibrary.org/obo/UBERON_0000375;mandibular nerve;third division of fifth cranial nerve -http://purl.obolibrary.org/obo/UBERON_0000375;mandibular nerve;third division of trigeminal nerve -http://purl.obolibrary.org/obo/UBERON_0000375;mandibular nerve;trigeminal V nerve mandibular division -http://purl.obolibrary.org/obo/UBERON_0000375;mandibular nerve;trigeminal nerve mandibular division -http://purl.obolibrary.org/obo/UBERON_0000376;hindlimb stylopod;hind limb stylopod -http://purl.obolibrary.org/obo/UBERON_0000376;hindlimb stylopod;hind limb stylopodium -http://purl.obolibrary.org/obo/UBERON_0000376;hindlimb stylopod;hind propodium -http://purl.obolibrary.org/obo/UBERON_0000376;hindlimb stylopod;hindlimb propodium -http://purl.obolibrary.org/obo/UBERON_0000376;hindlimb stylopod;hindlimb stylopod -http://purl.obolibrary.org/obo/UBERON_0000376;hindlimb stylopod;hindlimb stylopodium -http://purl.obolibrary.org/obo/UBERON_0000376;hindlimb stylopod;proximal segment of free lower limb -http://purl.obolibrary.org/obo/UBERON_0000376;hindlimb stylopod;stylopod of hind limb -http://purl.obolibrary.org/obo/UBERON_0000376;hindlimb stylopod;stylopod of hindlimb -http://purl.obolibrary.org/obo/UBERON_0000376;hindlimb stylopod;stylopod of lower limb -http://purl.obolibrary.org/obo/UBERON_0000376;hindlimb stylopod;thigh -http://purl.obolibrary.org/obo/UBERON_0000376;hindlimb stylopod;upper leg -http://purl.obolibrary.org/obo/UBERON_0000377;maxillary nerve;maxillary division [V2] -http://purl.obolibrary.org/obo/UBERON_0000377;maxillary nerve;maxillary division [Vb] -http://purl.obolibrary.org/obo/UBERON_0000377;maxillary nerve;maxillary division of fifth cranial nerve -http://purl.obolibrary.org/obo/UBERON_0000377;maxillary nerve;"maxillary division of trigeminal nerve (Vb; V2)" -http://purl.obolibrary.org/obo/UBERON_0000377;maxillary nerve;maxillary nerve [V2] -http://purl.obolibrary.org/obo/UBERON_0000377;maxillary nerve;maxillary nerve [Vb] -http://purl.obolibrary.org/obo/UBERON_0000377;maxillary nerve;n. maxillaris -http://purl.obolibrary.org/obo/UBERON_0000377;maxillary nerve;nervus maxillaris -http://purl.obolibrary.org/obo/UBERON_0000377;maxillary nerve;"nervus maxillaris (Vb; V2)" -http://purl.obolibrary.org/obo/UBERON_0000377;maxillary nerve;nervus maxillaris [v2] -http://purl.obolibrary.org/obo/UBERON_0000377;maxillary nerve;nervus maxillaris [vb] -http://purl.obolibrary.org/obo/UBERON_0000377;maxillary nerve;ramus maxillaris (ramus V2) -http://purl.obolibrary.org/obo/UBERON_0000377;maxillary nerve;second division of fifth cranial nerve -http://purl.obolibrary.org/obo/UBERON_0000377;maxillary nerve;second division of trigeminal nerve -http://purl.obolibrary.org/obo/UBERON_0000377;maxillary nerve;trigeminal V nerve maxillary division -http://purl.obolibrary.org/obo/UBERON_0000377;maxillary nerve;trigeminal nerve maxillary division -http://purl.obolibrary.org/obo/UBERON_0000378;tongue muscle;muscle of tongue -http://purl.obolibrary.org/obo/UBERON_0000378;tongue muscle;muscle organ of tongue -http://purl.obolibrary.org/obo/UBERON_0000378;tongue muscle;skeletal muscle tissue of tongue -http://purl.obolibrary.org/obo/UBERON_0000378;tongue muscle;tongue skeletal muscle -http://purl.obolibrary.org/obo/UBERON_0000378;tongue muscle;tongue skeletal muscle tissue -http://purl.obolibrary.org/obo/UBERON_0000379;tracheal mucosa;mucosa of organ of trachea -http://purl.obolibrary.org/obo/UBERON_0000379;tracheal mucosa;mucosa of organ of windpipe -http://purl.obolibrary.org/obo/UBERON_0000379;tracheal mucosa;mucosa of trachea -http://purl.obolibrary.org/obo/UBERON_0000379;tracheal mucosa;mucosa of windpipe -http://purl.obolibrary.org/obo/UBERON_0000379;tracheal mucosa;mucous membrane of trachea -http://purl.obolibrary.org/obo/UBERON_0000379;tracheal mucosa;mucous membrane of windpipe -http://purl.obolibrary.org/obo/UBERON_0000379;tracheal mucosa;organ mucosa of trachea -http://purl.obolibrary.org/obo/UBERON_0000379;tracheal mucosa;organ mucosa of windpipe -http://purl.obolibrary.org/obo/UBERON_0000379;tracheal mucosa;trachea mucosa -http://purl.obolibrary.org/obo/UBERON_0000379;tracheal mucosa;trachea mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0000379;tracheal mucosa;trachea mucous membrane -http://purl.obolibrary.org/obo/UBERON_0000379;tracheal mucosa;trachea organ mucosa -http://purl.obolibrary.org/obo/UBERON_0000379;tracheal mucosa;tracheal mucous membrane -http://purl.obolibrary.org/obo/UBERON_0000379;tracheal mucosa;tunica mucosa (tracheae) -http://purl.obolibrary.org/obo/UBERON_0000379;tracheal mucosa;tunica mucosa tracheae -http://purl.obolibrary.org/obo/UBERON_0000379;tracheal mucosa;windpipe mucosa -http://purl.obolibrary.org/obo/UBERON_0000379;tracheal mucosa;windpipe mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0000379;tracheal mucosa;windpipe mucous membrane -http://purl.obolibrary.org/obo/UBERON_0000379;tracheal mucosa;windpipe organ mucosa -http://purl.obolibrary.org/obo/UBERON_0000381;urinary bladder detrusor smooth muscle;detrusor -http://purl.obolibrary.org/obo/UBERON_0000381;urinary bladder detrusor smooth muscle;detrusor muscle -http://purl.obolibrary.org/obo/UBERON_0000381;urinary bladder detrusor smooth muscle;detrusor muscle of bladder -http://purl.obolibrary.org/obo/UBERON_0000381;urinary bladder detrusor smooth muscle;detrusor smooth muscle -http://purl.obolibrary.org/obo/UBERON_0000381;urinary bladder detrusor smooth muscle;detrusor urinae muscle -http://purl.obolibrary.org/obo/UBERON_0000381;urinary bladder detrusor smooth muscle;muscularis propria of the urinary bladder -http://purl.obolibrary.org/obo/UBERON_0000381;urinary bladder detrusor smooth muscle;musculus detrusor vesicae -http://purl.obolibrary.org/obo/UBERON_0000381;urinary bladder detrusor smooth muscle;urinary bladder detrusor muscle -http://purl.obolibrary.org/obo/UBERON_0000381;urinary bladder detrusor smooth muscle;urinary bladder detrussor smooth muscle -http://purl.obolibrary.org/obo/UBERON_0000382;apocrine sweat gland;glandula sudorifera apocrina -http://purl.obolibrary.org/obo/UBERON_0000383;musculature of body;muscle system -http://purl.obolibrary.org/obo/UBERON_0000383;musculature of body;muscle system of body -http://purl.obolibrary.org/obo/UBERON_0000383;musculature of body;muscular system -http://purl.obolibrary.org/obo/UBERON_0000383;musculature of body;musculature system -http://purl.obolibrary.org/obo/UBERON_0000383;musculature of body;muskelsystem -http://purl.obolibrary.org/obo/UBERON_0000383;musculature of body;set of all muscles -http://purl.obolibrary.org/obo/UBERON_0000383;musculature of body;set of muscles of body -http://purl.obolibrary.org/obo/UBERON_0000383;musculature of body;vertebrate muscular system -http://purl.obolibrary.org/obo/UBERON_0000387;meniscus;articular disc -http://purl.obolibrary.org/obo/UBERON_0000388;epiglottis; -http://purl.obolibrary.org/obo/UBERON_0000389;lens cortex;cortex of lens -http://purl.obolibrary.org/obo/UBERON_0000390;lens nucleus;nucleus of lens -http://purl.obolibrary.org/obo/UBERON_0000391;leptomeninx;leptomeninges -http://purl.obolibrary.org/obo/UBERON_0000392;longissimus muscle;longissimus -http://purl.obolibrary.org/obo/UBERON_0000392;longissimus muscle;musculus longissimus -http://purl.obolibrary.org/obo/UBERON_0000395;cochlear ganglion;Corti's ganglion -http://purl.obolibrary.org/obo/UBERON_0000395;cochlear ganglion;cochlear part of vestibulocochlear ganglion -http://purl.obolibrary.org/obo/UBERON_0000395;cochlear ganglion;ganglion of Corti -http://purl.obolibrary.org/obo/UBERON_0000395;cochlear ganglion;spiral ganglion -http://purl.obolibrary.org/obo/UBERON_0000395;cochlear ganglion;vestibulocochlear VIII ganglion cochlear component -http://purl.obolibrary.org/obo/UBERON_0000396;vallate papilla;circumvallate papilla -http://purl.obolibrary.org/obo/UBERON_0000396;vallate papilla;circumvallate papilla of tongue -http://purl.obolibrary.org/obo/UBERON_0000396;vallate papilla;papilla vallatae -http://purl.obolibrary.org/obo/UBERON_0000396;vallate papilla;vallate papilla of tongue -http://purl.obolibrary.org/obo/UBERON_0000397;colonic epithelium;colon epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0000397;colonic epithelium;colon epithelium -http://purl.obolibrary.org/obo/UBERON_0000397;colonic epithelium;epithelial tissue of colon -http://purl.obolibrary.org/obo/UBERON_0000397;colonic epithelium;epithelial tissue of large bowel -http://purl.obolibrary.org/obo/UBERON_0000397;colonic epithelium;epithelium of colon -http://purl.obolibrary.org/obo/UBERON_0000397;colonic epithelium;epithelium of large bowel -http://purl.obolibrary.org/obo/UBERON_0000397;colonic epithelium;large bowel epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0000397;colonic epithelium;large bowel epithelium -http://purl.obolibrary.org/obo/UBERON_0000397;colonic epithelium;posterior intestine epithelium -http://purl.obolibrary.org/obo/UBERON_0000398;cartilage tissue of sternum;cartilage of sternum -http://purl.obolibrary.org/obo/UBERON_0000399;jejunal mucosa;jejunal mucous membrane -http://purl.obolibrary.org/obo/UBERON_0000399;jejunal mucosa;jejunum mucosa -http://purl.obolibrary.org/obo/UBERON_0000399;jejunal mucosa;jejunum mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0000399;jejunal mucosa;jejunum mucous membrane -http://purl.obolibrary.org/obo/UBERON_0000399;jejunal mucosa;jejunum organ mucosa -http://purl.obolibrary.org/obo/UBERON_0000399;jejunal mucosa;mucosa of jejunum -http://purl.obolibrary.org/obo/UBERON_0000399;jejunal mucosa;mucosa of organ of jejunum -http://purl.obolibrary.org/obo/UBERON_0000399;jejunal mucosa;mucous membrane of jejunum -http://purl.obolibrary.org/obo/UBERON_0000399;jejunal mucosa;organ mucosa of jejunum -http://purl.obolibrary.org/obo/UBERON_0000400;jejunal epithelium;epithelium of jejunum -http://purl.obolibrary.org/obo/UBERON_0000401;mandibular ramus;mandible ramus -http://purl.obolibrary.org/obo/UBERON_0000401;mandibular ramus;ramus of mandible -http://purl.obolibrary.org/obo/UBERON_0000402;nasal vestibule;vestibular part of nasal cavity -http://purl.obolibrary.org/obo/UBERON_0000403;scalp;scalpus -http://purl.obolibrary.org/obo/UBERON_0000407;sympathetic trunk;gangliated cord -http://purl.obolibrary.org/obo/UBERON_0000407;sympathetic trunk;sympathetic chain -http://purl.obolibrary.org/obo/UBERON_0000407;sympathetic trunk;sympathetic ganglionic chain -http://purl.obolibrary.org/obo/UBERON_0000407;sympathetic trunk;truncus sympathicus -http://purl.obolibrary.org/obo/UBERON_0000408;vertebral ganglion;intermediate ganglion -http://purl.obolibrary.org/obo/UBERON_0000409;serous gland; -http://purl.obolibrary.org/obo/UBERON_0000410;bronchial mucosa;bronchi mucosa -http://purl.obolibrary.org/obo/UBERON_0000410;bronchial mucosa;bronchi mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0000410;bronchial mucosa;bronchi mucous membrane -http://purl.obolibrary.org/obo/UBERON_0000410;bronchial mucosa;bronchi organ mucosa -http://purl.obolibrary.org/obo/UBERON_0000410;bronchial mucosa;bronchial trunk mucosa -http://purl.obolibrary.org/obo/UBERON_0000410;bronchial mucosa;bronchial trunk mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0000410;bronchial mucosa;bronchial trunk mucous membrane -http://purl.obolibrary.org/obo/UBERON_0000410;bronchial mucosa;bronchial trunk organ mucosa -http://purl.obolibrary.org/obo/UBERON_0000410;bronchial mucosa;bronchus mucosa -http://purl.obolibrary.org/obo/UBERON_0000410;bronchial mucosa;bronchus mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0000410;bronchial mucosa;bronchus mucous membrane -http://purl.obolibrary.org/obo/UBERON_0000410;bronchial mucosa;bronchus organ mucosa -http://purl.obolibrary.org/obo/UBERON_0000410;bronchial mucosa;mucosa of bronchi -http://purl.obolibrary.org/obo/UBERON_0000410;bronchial mucosa;mucosa of bronchial trunk -http://purl.obolibrary.org/obo/UBERON_0000410;bronchial mucosa;mucosa of bronchus -http://purl.obolibrary.org/obo/UBERON_0000410;bronchial mucosa;mucosa of organ of bronchi -http://purl.obolibrary.org/obo/UBERON_0000410;bronchial mucosa;mucosa of organ of bronchial trunk -http://purl.obolibrary.org/obo/UBERON_0000410;bronchial mucosa;mucosa of organ of bronchus -http://purl.obolibrary.org/obo/UBERON_0000410;bronchial mucosa;mucous membrane of bronchi -http://purl.obolibrary.org/obo/UBERON_0000410;bronchial mucosa;mucous membrane of bronchial trunk -http://purl.obolibrary.org/obo/UBERON_0000410;bronchial mucosa;mucous membrane of bronchus -http://purl.obolibrary.org/obo/UBERON_0000410;bronchial mucosa;organ mucosa of bronchi -http://purl.obolibrary.org/obo/UBERON_0000410;bronchial mucosa;organ mucosa of bronchial trunk -http://purl.obolibrary.org/obo/UBERON_0000410;bronchial mucosa;organ mucosa of bronchus -http://purl.obolibrary.org/obo/UBERON_0000410;bronchial mucosa;tunica mucosa bronchi -http://purl.obolibrary.org/obo/UBERON_0000411;visual cortex; -http://purl.obolibrary.org/obo/UBERON_0000412;dermal papilla;dermal papillae -http://purl.obolibrary.org/obo/UBERON_0000412;dermal papilla;follicular papilla -http://purl.obolibrary.org/obo/UBERON_0000414;mucous gland;glandula mucosa -http://purl.obolibrary.org/obo/UBERON_0000414;mucous gland;muciparous gland -http://purl.obolibrary.org/obo/UBERON_0000414;mucous gland;mucous secreting gland -http://purl.obolibrary.org/obo/UBERON_0000414;mucous gland;mucus gland -http://purl.obolibrary.org/obo/UBERON_0000414;mucous gland;mucus-secreting gland -http://purl.obolibrary.org/obo/UBERON_0000415;artery wall;arterial wall -http://purl.obolibrary.org/obo/UBERON_0000415;artery wall;wall of artery -http://purl.obolibrary.org/obo/UBERON_0000416;subdural space; -http://purl.obolibrary.org/obo/UBERON_0000420;myoepithelium;myo-epithelium -http://purl.obolibrary.org/obo/UBERON_0000423;eccrine sweat gland;glandula sudorifera eccrina -http://purl.obolibrary.org/obo/UBERON_0000423;eccrine sweat gland;glandula sudorifera merocrina -http://purl.obolibrary.org/obo/UBERON_0000424;gastric pit;foveolae gastricae -http://purl.obolibrary.org/obo/UBERON_0000424;gastric pit;gastric foveola -http://purl.obolibrary.org/obo/UBERON_0000426;extravillous trophoblast;intermediate trophoblast -http://purl.obolibrary.org/obo/UBERON_0000428;prostate epithelium;epithelial tissue of prostate -http://purl.obolibrary.org/obo/UBERON_0000428;prostate epithelium;epithelial tissue of prostate gland -http://purl.obolibrary.org/obo/UBERON_0000428;prostate epithelium;epithelium of prostate -http://purl.obolibrary.org/obo/UBERON_0000428;prostate epithelium;epithelium of prostate gland -http://purl.obolibrary.org/obo/UBERON_0000428;prostate epithelium;epithelium of prostatic gland -http://purl.obolibrary.org/obo/UBERON_0000428;prostate epithelium;prostate epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0000428;prostate epithelium;prostate gland epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0000428;prostate epithelium;prostate gland epithelium -http://purl.obolibrary.org/obo/UBERON_0000428;prostate epithelium;prostatic epithelium -http://purl.obolibrary.org/obo/UBERON_0000428;prostate epithelium;prostatic gland epithelium -http://purl.obolibrary.org/obo/UBERON_0000429;enteric plexus;enteric nerve plexus -http://purl.obolibrary.org/obo/UBERON_0000429;enteric plexus;intrinsic nerve plexus -http://purl.obolibrary.org/obo/UBERON_0000429;enteric plexus;plexus entericus -http://purl.obolibrary.org/obo/UBERON_0000429;enteric plexus;plexus nervosus entericus -http://purl.obolibrary.org/obo/UBERON_0000429;enteric plexus;sympathetic enteric nerve plexus -http://purl.obolibrary.org/obo/UBERON_0000430;ventral intermediate nucleus of thalamus; -http://purl.obolibrary.org/obo/UBERON_0000431;ventral medial complex of thalamus;ventral medial complex of thalamus -http://purl.obolibrary.org/obo/UBERON_0000431;ventral medial complex of thalamus;ventral medial nuclei of thalamus -http://purl.obolibrary.org/obo/UBERON_0000432;endopeduncular nucleus; -http://purl.obolibrary.org/obo/UBERON_0000433;posterior paraventricular nucleus of thalamus;dorsal paraventricular nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0000434;anterior paraventricular nucleus of thalamus;anterior paraventricular nucleus -http://purl.obolibrary.org/obo/UBERON_0000434;anterior paraventricular nucleus of thalamus;ventral paraventricular nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0000435;lateral tuberal nucleus;lateral tuberal hypothalamic nuclei -http://purl.obolibrary.org/obo/UBERON_0000435;lateral tuberal nucleus;lateral tuberal nuclear complex -http://purl.obolibrary.org/obo/UBERON_0000435;lateral tuberal nucleus;lateral tuberal nuclei -http://purl.obolibrary.org/obo/UBERON_0000437;arachnoid barrier layer; -http://purl.obolibrary.org/obo/UBERON_0000439;arachnoid trabecula; -http://purl.obolibrary.org/obo/UBERON_0000440;trabecula;trabeculae -http://purl.obolibrary.org/obo/UBERON_0000442;right testicular vein;right spermatic vein -http://purl.obolibrary.org/obo/UBERON_0000442;right testicular vein;vena testicularis (adrenalis) dextra -http://purl.obolibrary.org/obo/UBERON_0000443;left testicular vein;left spermatic vein -http://purl.obolibrary.org/obo/UBERON_0000444;lymphoid follicle;nodular lymphoid tissue -http://purl.obolibrary.org/obo/UBERON_0000445;habenular trigone; -http://purl.obolibrary.org/obo/UBERON_0000446;septum of telencephalon;Se -http://purl.obolibrary.org/obo/UBERON_0000446;septum of telencephalon;area septalis -http://purl.obolibrary.org/obo/UBERON_0000446;septum of telencephalon;massa praecommissuralis -http://purl.obolibrary.org/obo/UBERON_0000446;septum of telencephalon;septal area -http://purl.obolibrary.org/obo/UBERON_0000446;septum of telencephalon;septal region -http://purl.obolibrary.org/obo/UBERON_0000446;septum of telencephalon;septum -http://purl.obolibrary.org/obo/UBERON_0000446;septum of telencephalon;septum (NN) -http://purl.obolibrary.org/obo/UBERON_0000446;septum of telencephalon;septum pellucidum (BNA,PNA) -http://purl.obolibrary.org/obo/UBERON_0000446;septum of telencephalon;septum telencephali -http://purl.obolibrary.org/obo/UBERON_0000446;septum of telencephalon;telencephalon septum -http://purl.obolibrary.org/obo/UBERON_0000450;corpus albicans;corpus albicans of ovary -http://purl.obolibrary.org/obo/UBERON_0000451;prefrontal cortex;prefrontal association cortex -http://purl.obolibrary.org/obo/UBERON_0000453;decidua basalis; -http://purl.obolibrary.org/obo/UBERON_0000454;cerebral subcortex;cerebral medulla -http://purl.obolibrary.org/obo/UBERON_0000454;cerebral subcortex;subcortex -http://purl.obolibrary.org/obo/UBERON_0000456;secretion of exocrine gland;bodily secretion -http://purl.obolibrary.org/obo/UBERON_0000456;secretion of exocrine gland;exocrine gland fluid/secretion -http://purl.obolibrary.org/obo/UBERON_0000456;secretion of exocrine gland;secreted substance -http://purl.obolibrary.org/obo/UBERON_0000457;cavernous artery;cavernous branch of cavernous part of internal carotid artery -http://purl.obolibrary.org/obo/UBERON_0000457;cavernous artery;ramus sinus cavernosi (pars cavernosa) (arteria carotis interna) -http://purl.obolibrary.org/obo/UBERON_0000458;endocervix; -http://purl.obolibrary.org/obo/UBERON_0000459;uterine wall;anatomical wall of uterus -http://purl.obolibrary.org/obo/UBERON_0000459;uterine wall;uterus anatomical wall -http://purl.obolibrary.org/obo/UBERON_0000459;uterine wall;uterus wall -http://purl.obolibrary.org/obo/UBERON_0000459;uterine wall;wall of uterus -http://purl.obolibrary.org/obo/UBERON_0000460;major vestibular gland;Bartholin gland -http://purl.obolibrary.org/obo/UBERON_0000460;major vestibular gland;Bartholin's gland -http://purl.obolibrary.org/obo/UBERON_0000460;major vestibular gland;Tiedemann's gland -http://purl.obolibrary.org/obo/UBERON_0000460;major vestibular gland;vulvovaginal gland -http://purl.obolibrary.org/obo/UBERON_0000461;minor vestibular gland;glandula vestibular minor -http://purl.obolibrary.org/obo/UBERON_0000461;minor vestibular gland;lesser vestibular gland -http://purl.obolibrary.org/obo/UBERON_0000463;organism substance;body fluid or substance -http://purl.obolibrary.org/obo/UBERON_0000463;organism substance;body substance -http://purl.obolibrary.org/obo/UBERON_0000463;organism substance;organism substance -http://purl.obolibrary.org/obo/UBERON_0000463;organism substance;portion of body substance -http://purl.obolibrary.org/obo/UBERON_0000463;organism substance;portion of organism substance -http://purl.obolibrary.org/obo/UBERON_0000464;anatomical space;lumen space -http://purl.obolibrary.org/obo/UBERON_0000465;material anatomical entity; -http://purl.obolibrary.org/obo/UBERON_0000466;immaterial anatomical entity;immaterial physical anatomical entity -http://purl.obolibrary.org/obo/UBERON_0000467;anatomical system;anatomical systems -http://purl.obolibrary.org/obo/UBERON_0000467;anatomical system;body system -http://purl.obolibrary.org/obo/UBERON_0000467;anatomical system;connected anatomical system -http://purl.obolibrary.org/obo/UBERON_0000467;anatomical system;organ system -http://purl.obolibrary.org/obo/UBERON_0000467;anatomical system;system -http://purl.obolibrary.org/obo/UBERON_0000468;multicellular organism;Koerper -http://purl.obolibrary.org/obo/UBERON_0000468;multicellular organism;animal -http://purl.obolibrary.org/obo/UBERON_0000468;multicellular organism;body -http://purl.obolibrary.org/obo/UBERON_0000468;multicellular organism;multi-cellular organism -http://purl.obolibrary.org/obo/UBERON_0000468;multicellular organism;organism -http://purl.obolibrary.org/obo/UBERON_0000468;multicellular organism;whole body -http://purl.obolibrary.org/obo/UBERON_0000468;multicellular organism;whole organism -http://purl.obolibrary.org/obo/UBERON_0000471;compound organ component;compound organ components -http://purl.obolibrary.org/obo/UBERON_0000472;simple organ; -http://purl.obolibrary.org/obo/UBERON_0000473;testis;gonad of male genitalia -http://purl.obolibrary.org/obo/UBERON_0000473;testis;gonad of male reproductive system -http://purl.obolibrary.org/obo/UBERON_0000473;testis;male gonad -http://purl.obolibrary.org/obo/UBERON_0000473;testis;orchis -http://purl.obolibrary.org/obo/UBERON_0000473;testis;testes -http://purl.obolibrary.org/obo/UBERON_0000473;testis;testicle -http://purl.obolibrary.org/obo/UBERON_0000473;testis;testiculus -http://purl.obolibrary.org/obo/UBERON_0000474;female reproductive system;female genital system -http://purl.obolibrary.org/obo/UBERON_0000474;female reproductive system;female genital tract -http://purl.obolibrary.org/obo/UBERON_0000474;female reproductive system;female genitalia -http://purl.obolibrary.org/obo/UBERON_0000474;female reproductive system;female genitals -http://purl.obolibrary.org/obo/UBERON_0000474;female reproductive system;female organism genitalia -http://purl.obolibrary.org/obo/UBERON_0000474;female reproductive system;female organism reproductive system -http://purl.obolibrary.org/obo/UBERON_0000474;female reproductive system;female reproductive tract -http://purl.obolibrary.org/obo/UBERON_0000474;female reproductive system;genitalia of female organism -http://purl.obolibrary.org/obo/UBERON_0000474;female reproductive system;gynaecological tissue -http://purl.obolibrary.org/obo/UBERON_0000474;female reproductive system;reproductive system of female organism -http://purl.obolibrary.org/obo/UBERON_0000474;female reproductive system;systema genitale femininum -http://purl.obolibrary.org/obo/UBERON_0000475;organism subdivision;anatomic region -http://purl.obolibrary.org/obo/UBERON_0000475;organism subdivision;body part -http://purl.obolibrary.org/obo/UBERON_0000475;organism subdivision;body region -http://purl.obolibrary.org/obo/UBERON_0000475;organism subdivision;cardinal body part -http://purl.obolibrary.org/obo/UBERON_0000476;acellular anatomical structure;acellular anatomical structures -http://purl.obolibrary.org/obo/UBERON_0000477;anatomical cluster; -http://purl.obolibrary.org/obo/UBERON_0000478;extraembryonic structure;extra-embryonic structure -http://purl.obolibrary.org/obo/UBERON_0000479;tissue;portion of tissue -http://purl.obolibrary.org/obo/UBERON_0000479;tissue;simple tissue -http://purl.obolibrary.org/obo/UBERON_0000479;tissue;tissue portion -http://purl.obolibrary.org/obo/UBERON_0000480;anatomical group; -http://purl.obolibrary.org/obo/UBERON_0000481;multi-tissue structure;multi-tissue structures -http://purl.obolibrary.org/obo/UBERON_0000482;basal lamina of epithelium;basal lamina of connective tissue -http://purl.obolibrary.org/obo/UBERON_0000483;epithelium;epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0000483;epithelium;portion of epithelium -http://purl.obolibrary.org/obo/UBERON_0000484;simple cuboidal epithelium;epithelium simplex cuboideum -http://purl.obolibrary.org/obo/UBERON_0000485;simple columnar epithelium;columnar epithelium -http://purl.obolibrary.org/obo/UBERON_0000485;simple columnar epithelium;columnar epithlium -http://purl.obolibrary.org/obo/UBERON_0000485;simple columnar epithelium;epithelium simplex columnare -http://purl.obolibrary.org/obo/UBERON_0000485;simple columnar epithelium;simple columnar epithelia -http://purl.obolibrary.org/obo/UBERON_0000485;simple columnar epithelium;simple columnar epithelium -http://purl.obolibrary.org/obo/UBERON_0000486;multilaminar epithelium;stratified epithelium -http://purl.obolibrary.org/obo/UBERON_0000487;simple squamous epithelium;epithelium simplex squamosum -http://purl.obolibrary.org/obo/UBERON_0000488;atypical epithelium;atypical epithelia -http://purl.obolibrary.org/obo/UBERON_0000488;atypical epithelium;heterogenous epithelium -http://purl.obolibrary.org/obo/UBERON_0000489;cavitated compound organ;cavitated compound organs -http://purl.obolibrary.org/obo/UBERON_0000489;cavitated compound organ;cavitated organ -http://purl.obolibrary.org/obo/UBERON_0000490;unilaminar epithelium;simple epithelium -http://purl.obolibrary.org/obo/UBERON_0000490;unilaminar epithelium;unilaminar epithelia -http://purl.obolibrary.org/obo/UBERON_0000491;solid compound organ; -http://purl.obolibrary.org/obo/UBERON_0000569;ileocecal valve;valva ileocaecalis (valva ilealis) -http://purl.obolibrary.org/obo/UBERON_0000642;suspensory ligament of duodenum;ligament of Treitz -http://purl.obolibrary.org/obo/UBERON_0000642;suspensory ligament of duodenum;muscle of Treitz -http://purl.obolibrary.org/obo/UBERON_0000642;suspensory ligament of duodenum;musculus suspensorius duodeni -http://purl.obolibrary.org/obo/UBERON_0000642;suspensory ligament of duodenum;suspensory muscle of duodenum -http://purl.obolibrary.org/obo/UBERON_0000711;splenius capitis;splenius capitis muscle -http://purl.obolibrary.org/obo/UBERON_0000908;hippocampal commissure;commissura hippocampi -http://purl.obolibrary.org/obo/UBERON_0000908;hippocampal commissure;commissure of fornix of forebrain -http://purl.obolibrary.org/obo/UBERON_0000908;hippocampal commissure;delta fornicis -http://purl.obolibrary.org/obo/UBERON_0000908;hippocampal commissure;dorsal hippocampal commissure -http://purl.obolibrary.org/obo/UBERON_0000908;hippocampal commissure;fornical commissure -http://purl.obolibrary.org/obo/UBERON_0000908;hippocampal commissure;fornix commissure -http://purl.obolibrary.org/obo/UBERON_0000908;hippocampal commissure;hippocampus commissure -http://purl.obolibrary.org/obo/UBERON_0000910;chyme;chymus -http://purl.obolibrary.org/obo/UBERON_0000911;chyle; -http://purl.obolibrary.org/obo/UBERON_0000912;mucus; -http://purl.obolibrary.org/obo/UBERON_0000913;interstitial fluid;intercellular fluid -http://purl.obolibrary.org/obo/UBERON_0000913;interstitial fluid;tissue fluid -http://purl.obolibrary.org/obo/UBERON_0000914;organismal segment;segment -http://purl.obolibrary.org/obo/UBERON_0000914;organismal segment;serial element -http://purl.obolibrary.org/obo/UBERON_0000915;thoracic segment of trunk;anterior subdivision of trunk -http://purl.obolibrary.org/obo/UBERON_0000915;thoracic segment of trunk;thorax -http://purl.obolibrary.org/obo/UBERON_0000915;thoracic segment of trunk;upper body -http://purl.obolibrary.org/obo/UBERON_0000915;thoracic segment of trunk;upper trunk -http://purl.obolibrary.org/obo/UBERON_0000916;abdomen;abdominopelvic region -http://purl.obolibrary.org/obo/UBERON_0000916;abdomen;abdominopelvis -http://purl.obolibrary.org/obo/UBERON_0000916;abdomen;adult abdomen -http://purl.obolibrary.org/obo/UBERON_0000916;abdomen;belly -http://purl.obolibrary.org/obo/UBERON_0000916;abdomen;celiac region -http://purl.obolibrary.org/obo/UBERON_0000920;egg chorion;chorion (egg) -http://purl.obolibrary.org/obo/UBERON_0000922;embryo;developing organism -http://purl.obolibrary.org/obo/UBERON_0000922;embryo;developmental tissue -http://purl.obolibrary.org/obo/UBERON_0000922;embryo;embryonic organism -http://purl.obolibrary.org/obo/UBERON_0000923;germ layer;germinal layer -http://purl.obolibrary.org/obo/UBERON_0000924;ectoderm;embryonic ectoderm -http://purl.obolibrary.org/obo/UBERON_0000925;endoderm; -http://purl.obolibrary.org/obo/UBERON_0000926;mesoderm; -http://purl.obolibrary.org/obo/UBERON_0000927;mesectoderm; -http://purl.obolibrary.org/obo/UBERON_0000929;pharyngeal branch of vagus nerve;pharyngeal branch -http://purl.obolibrary.org/obo/UBERON_0000929;pharyngeal branch of vagus nerve;pharyngeal branch of inferior vagal ganglion -http://purl.obolibrary.org/obo/UBERON_0000929;pharyngeal branch of vagus nerve;pharyngeal branch of vagus -http://purl.obolibrary.org/obo/UBERON_0000929;pharyngeal branch of vagus nerve;ramus pharyngealis nervi vagalis -http://purl.obolibrary.org/obo/UBERON_0000929;pharyngeal branch of vagus nerve;ramus pharyngeus -http://purl.obolibrary.org/obo/UBERON_0000929;pharyngeal branch of vagus nerve;tenth cranial nerve pharyngeal branch -http://purl.obolibrary.org/obo/UBERON_0000929;pharyngeal branch of vagus nerve;vagal pharyngeal branch -http://purl.obolibrary.org/obo/UBERON_0000929;pharyngeal branch of vagus nerve;vagus nerve pharyngeal branch -http://purl.obolibrary.org/obo/UBERON_0000930;stomodeum;mouth primordium -http://purl.obolibrary.org/obo/UBERON_0000930;stomodeum;primitive oral cavity -http://purl.obolibrary.org/obo/UBERON_0000930;stomodeum;stomatodeum -http://purl.obolibrary.org/obo/UBERON_0000930;stomodeum;stomodaeum -http://purl.obolibrary.org/obo/UBERON_0000931;proctodeum;embryonic proctodaeum -http://purl.obolibrary.org/obo/UBERON_0000931;proctodeum;proctodaeum -http://purl.obolibrary.org/obo/UBERON_0000933;chordate pharyngeal muscle;branchial muscle -http://purl.obolibrary.org/obo/UBERON_0000933;chordate pharyngeal muscle;muscle of pharynx -http://purl.obolibrary.org/obo/UBERON_0000933;chordate pharyngeal muscle;muscle organ of pharynx -http://purl.obolibrary.org/obo/UBERON_0000933;chordate pharyngeal muscle;pharyngeal muscle -http://purl.obolibrary.org/obo/UBERON_0000933;chordate pharyngeal muscle;pharynx muscle -http://purl.obolibrary.org/obo/UBERON_0000933;chordate pharyngeal muscle;pharynx muscle organ -http://purl.obolibrary.org/obo/UBERON_0000934;ventral nerve cord;ventral cord -http://purl.obolibrary.org/obo/UBERON_0000935;anterior commissure;anterior cerebral commissure -http://purl.obolibrary.org/obo/UBERON_0000935;anterior commissure;commissura anterior cerebri -http://purl.obolibrary.org/obo/UBERON_0000935;anterior commissure;commissura rostralis -http://purl.obolibrary.org/obo/UBERON_0000936;posterior commissure;caudal commissure -http://purl.obolibrary.org/obo/UBERON_0000936;posterior commissure;epithalamic commissure -http://purl.obolibrary.org/obo/UBERON_0000939;imaginal disc; -http://purl.obolibrary.org/obo/UBERON_0000941;cranial nerve II;02 optic nerve -http://purl.obolibrary.org/obo/UBERON_0000941;cranial nerve II;cranial II -http://purl.obolibrary.org/obo/UBERON_0000941;cranial nerve II;nervus opticus -http://purl.obolibrary.org/obo/UBERON_0000941;cranial nerve II;nervus opticus [II] -http://purl.obolibrary.org/obo/UBERON_0000941;cranial nerve II;optic II -http://purl.obolibrary.org/obo/UBERON_0000941;cranial nerve II;optic II nerve -http://purl.obolibrary.org/obo/UBERON_0000941;cranial nerve II;optic nerve [II] -http://purl.obolibrary.org/obo/UBERON_0000941;cranial nerve II;second cranial nerve -http://purl.obolibrary.org/obo/UBERON_0000942;frontal nerve (branch of ophthalmic);frontal nerve -http://purl.obolibrary.org/obo/UBERON_0000942;frontal nerve (branch of ophthalmic);nervus frontalis -http://purl.obolibrary.org/obo/UBERON_0000945;stomach;anterior intestine -http://purl.obolibrary.org/obo/UBERON_0000945;stomach;gaster -http://purl.obolibrary.org/obo/UBERON_0000945;stomach;mesenteron -http://purl.obolibrary.org/obo/UBERON_0000945;stomach;stomach chamber -http://purl.obolibrary.org/obo/UBERON_0000945;stomach;ventriculus -http://purl.obolibrary.org/obo/UBERON_0000946;cardiac valve;heart valve -http://purl.obolibrary.org/obo/UBERON_0000946;cardiac valve;valve of heart -http://purl.obolibrary.org/obo/UBERON_0000947;aorta;arteria maxima -http://purl.obolibrary.org/obo/UBERON_0000947;aorta;dorsal aorta -http://purl.obolibrary.org/obo/UBERON_0000947;aorta;trunk of aortic tree -http://purl.obolibrary.org/obo/UBERON_0000947;aorta;trunk of systemic arterial tree -http://purl.obolibrary.org/obo/UBERON_0000948;heart;branchial heart -http://purl.obolibrary.org/obo/UBERON_0000948;heart;cardium -http://purl.obolibrary.org/obo/UBERON_0000948;heart;chambered heart -http://purl.obolibrary.org/obo/UBERON_0000948;heart;vertebrate heart -http://purl.obolibrary.org/obo/UBERON_0000949;endocrine system;endocrine glandular system -http://purl.obolibrary.org/obo/UBERON_0000949;endocrine system;endocrine system -http://purl.obolibrary.org/obo/UBERON_0000949;endocrine system;systema endocrinum -http://purl.obolibrary.org/obo/UBERON_0000950;gracilis;gracilis muscle -http://purl.obolibrary.org/obo/UBERON_0000950;gracilis;musculus gracilis -http://purl.obolibrary.org/obo/UBERON_0000951;rotator muscle of the vertebral column; -http://purl.obolibrary.org/obo/UBERON_0000955;brain;encephalon -http://purl.obolibrary.org/obo/UBERON_0000955;brain;suprasegmental levels of nervous system -http://purl.obolibrary.org/obo/UBERON_0000955;brain;suprasegmental structures -http://purl.obolibrary.org/obo/UBERON_0000955;brain;synganglion -http://purl.obolibrary.org/obo/UBERON_0000955;brain;the brain -http://purl.obolibrary.org/obo/UBERON_0000956;cerebral cortex;brain cortex -http://purl.obolibrary.org/obo/UBERON_0000956;cerebral cortex;cortex cerebralis -http://purl.obolibrary.org/obo/UBERON_0000956;cerebral cortex;cortex cerebri -http://purl.obolibrary.org/obo/UBERON_0000956;cerebral cortex;cortex of cerebral hemisphere -http://purl.obolibrary.org/obo/UBERON_0000956;cerebral cortex;cortical plate (CTXpl) -http://purl.obolibrary.org/obo/UBERON_0000956;cerebral cortex;cortical plate (areas) -http://purl.obolibrary.org/obo/UBERON_0000956;cerebral cortex;pallium of the brain -http://purl.obolibrary.org/obo/UBERON_0000957;lamina;laminar tissue -http://purl.obolibrary.org/obo/UBERON_0000958;medulla of organ;medulla -http://purl.obolibrary.org/obo/UBERON_0000959;optic chiasma;chiasma opticum -http://purl.obolibrary.org/obo/UBERON_0000959;optic chiasma;decussation of optic nerve fibers -http://purl.obolibrary.org/obo/UBERON_0000959;optic chiasma;optic chiasm -http://purl.obolibrary.org/obo/UBERON_0000961;thoracic ganglion;ganglion of thorax -http://purl.obolibrary.org/obo/UBERON_0000961;thoracic ganglion;ganglion thoracicum splanchnicum -http://purl.obolibrary.org/obo/UBERON_0000961;thoracic ganglion;thoracic paravertebral ganglion -http://purl.obolibrary.org/obo/UBERON_0000961;thoracic ganglion;thoracic splanchnic ganglion -http://purl.obolibrary.org/obo/UBERON_0000961;thoracic ganglion;thoracic sympathetic ganglion -http://purl.obolibrary.org/obo/UBERON_0000961;thoracic ganglion;thorax ganglion -http://purl.obolibrary.org/obo/UBERON_0000962;nerve of cervical vertebra;cervical nerve -http://purl.obolibrary.org/obo/UBERON_0000962;nerve of cervical vertebra;cervical nerve tree -http://purl.obolibrary.org/obo/UBERON_0000962;nerve of cervical vertebra;cervical spinal nerve -http://purl.obolibrary.org/obo/UBERON_0000962;nerve of cervical vertebra;nervus cervicalis -http://purl.obolibrary.org/obo/UBERON_0000963;head sensillum; -http://purl.obolibrary.org/obo/UBERON_0000964;cornea;cornea of camera-type eye -http://purl.obolibrary.org/obo/UBERON_0000965;lens of camera-type eye;camera-type eye lens -http://purl.obolibrary.org/obo/UBERON_0000965;lens of camera-type eye;eye lens -http://purl.obolibrary.org/obo/UBERON_0000965;lens of camera-type eye;lens -http://purl.obolibrary.org/obo/UBERON_0000965;lens of camera-type eye;lens crystallina -http://purl.obolibrary.org/obo/UBERON_0000966;retina;Netzhaut -http://purl.obolibrary.org/obo/UBERON_0000966;retina;inner layer of eyeball -http://purl.obolibrary.org/obo/UBERON_0000966;retina;retina of camera-type eye -http://purl.obolibrary.org/obo/UBERON_0000966;retina;retinas -http://purl.obolibrary.org/obo/UBERON_0000966;retina;tunica interna of eyeball -http://purl.obolibrary.org/obo/UBERON_0000970;eye;light-detecting organ -http://purl.obolibrary.org/obo/UBERON_0000970;eye;visual apparatus -http://purl.obolibrary.org/obo/UBERON_0000971;ommatidium;omatidium -http://purl.obolibrary.org/obo/UBERON_0000972;antenna; -http://purl.obolibrary.org/obo/UBERON_0000974;neck;collum -http://purl.obolibrary.org/obo/UBERON_0000974;neck;neck (volume) -http://purl.obolibrary.org/obo/UBERON_0000975;sternum;vertebrate sternum -http://purl.obolibrary.org/obo/UBERON_0000976;humerus;humeri -http://purl.obolibrary.org/obo/UBERON_0000976;humerus;humerus bone -http://purl.obolibrary.org/obo/UBERON_0000977;pleura;wall of pleural sac -http://purl.obolibrary.org/obo/UBERON_0000978;leg;tetrapod leg -http://purl.obolibrary.org/obo/UBERON_0000979;tibia;shankbone -http://purl.obolibrary.org/obo/UBERON_0000979;tibia;shinbone -http://purl.obolibrary.org/obo/UBERON_0000980;trochanter;femoral trochanter -http://purl.obolibrary.org/obo/UBERON_0000980;trochanter;trochanter of femur -http://purl.obolibrary.org/obo/UBERON_0000981;femur;thigh bone -http://purl.obolibrary.org/obo/UBERON_0000982;skeletal joint;articular joint -http://purl.obolibrary.org/obo/UBERON_0000982;skeletal joint;articulation -http://purl.obolibrary.org/obo/UBERON_0000982;skeletal joint;joint -http://purl.obolibrary.org/obo/UBERON_0000982;skeletal joint;joints -http://purl.obolibrary.org/obo/UBERON_0000983;metatarsus region;hind metapodium -http://purl.obolibrary.org/obo/UBERON_0000983;metatarsus region;metatarsal part of foot -http://purl.obolibrary.org/obo/UBERON_0000983;metatarsus region;metatarsal region -http://purl.obolibrary.org/obo/UBERON_0000983;metatarsus region;regio metatarsalis -http://purl.obolibrary.org/obo/UBERON_0000984;imaginal disc-derived wing; -http://purl.obolibrary.org/obo/UBERON_0000985;axillary vein;vena axillaris -http://purl.obolibrary.org/obo/UBERON_0000987;haltere; -http://purl.obolibrary.org/obo/UBERON_0000988;pons;pons Varolii -http://purl.obolibrary.org/obo/UBERON_0000988;pons;pons cerebri -http://purl.obolibrary.org/obo/UBERON_0000988;pons;pons of Varolius -http://purl.obolibrary.org/obo/UBERON_0000989;penis;penes -http://purl.obolibrary.org/obo/UBERON_0000989;penis;phallus -http://purl.obolibrary.org/obo/UBERON_0000990;reproductive system;Geschlechtsorgan -http://purl.obolibrary.org/obo/UBERON_0000990;reproductive system;animal reproductive system -http://purl.obolibrary.org/obo/UBERON_0000990;reproductive system;genital system -http://purl.obolibrary.org/obo/UBERON_0000990;reproductive system;genital tract -http://purl.obolibrary.org/obo/UBERON_0000990;reproductive system;genitalia -http://purl.obolibrary.org/obo/UBERON_0000990;reproductive system;organa genitalia -http://purl.obolibrary.org/obo/UBERON_0000990;reproductive system;reproductive tissue -http://purl.obolibrary.org/obo/UBERON_0000990;reproductive system;reproductive tract -http://purl.obolibrary.org/obo/UBERON_0000990;reproductive system;systemata genitalia -http://purl.obolibrary.org/obo/UBERON_0000991;gonad;gonada -http://purl.obolibrary.org/obo/UBERON_0000991;gonad;gonads -http://purl.obolibrary.org/obo/UBERON_0000992;ovary;animal ovary -http://purl.obolibrary.org/obo/UBERON_0000992;ovary;female gonad -http://purl.obolibrary.org/obo/UBERON_0000992;ovary;female organism genitalia gonad -http://purl.obolibrary.org/obo/UBERON_0000992;ovary;female organism genitalia gonada -http://purl.obolibrary.org/obo/UBERON_0000992;ovary;female organism reproductive system gonad -http://purl.obolibrary.org/obo/UBERON_0000992;ovary;female organism reproductive system gonada -http://purl.obolibrary.org/obo/UBERON_0000992;ovary;female reproductive system gonad -http://purl.obolibrary.org/obo/UBERON_0000992;ovary;female reproductive system gonada -http://purl.obolibrary.org/obo/UBERON_0000992;ovary;genitalia of female organism gonad -http://purl.obolibrary.org/obo/UBERON_0000992;ovary;genitalia of female organism gonada -http://purl.obolibrary.org/obo/UBERON_0000992;ovary;gonad of female organism genitalia -http://purl.obolibrary.org/obo/UBERON_0000992;ovary;gonad of female organism reproductive system -http://purl.obolibrary.org/obo/UBERON_0000992;ovary;gonad of female reproductive system -http://purl.obolibrary.org/obo/UBERON_0000992;ovary;gonad of genitalia of female organism -http://purl.obolibrary.org/obo/UBERON_0000992;ovary;gonad of reproductive system of female organism -http://purl.obolibrary.org/obo/UBERON_0000992;ovary;gonada of female organism genitalia -http://purl.obolibrary.org/obo/UBERON_0000992;ovary;gonada of female organism reproductive system -http://purl.obolibrary.org/obo/UBERON_0000992;ovary;gonada of female reproductive system -http://purl.obolibrary.org/obo/UBERON_0000992;ovary;gonada of genitalia of female organism -http://purl.obolibrary.org/obo/UBERON_0000992;ovary;gonada of reproductive system of female organism -http://purl.obolibrary.org/obo/UBERON_0000992;ovary;ovaries -http://purl.obolibrary.org/obo/UBERON_0000992;ovary;ovarium -http://purl.obolibrary.org/obo/UBERON_0000992;ovary;ovum-producing ovary -http://purl.obolibrary.org/obo/UBERON_0000992;ovary;reproductive system of female organism gonad -http://purl.obolibrary.org/obo/UBERON_0000992;ovary;reproductive system of female organism gonada -http://purl.obolibrary.org/obo/UBERON_0000993;oviduct;female reproductive tracts -http://purl.obolibrary.org/obo/UBERON_0000993;oviduct;ovarian duct -http://purl.obolibrary.org/obo/UBERON_0000993;oviduct;ovarian tube -http://purl.obolibrary.org/obo/UBERON_0000993;oviduct;oviducts -http://purl.obolibrary.org/obo/UBERON_0000993;oviduct;tuba uterina -http://purl.obolibrary.org/obo/UBERON_0000993;oviduct;tuba uterinae -http://purl.obolibrary.org/obo/UBERON_0000993;oviduct;tubular parts of female reproductive system -http://purl.obolibrary.org/obo/UBERON_0000993;oviduct;uterine tube -http://purl.obolibrary.org/obo/UBERON_0000994;spermathecum; -http://purl.obolibrary.org/obo/UBERON_0000995;uterus; -http://purl.obolibrary.org/obo/UBERON_0000996;vagina; -http://purl.obolibrary.org/obo/UBERON_0000997;mammalian vulva;female pudendum -http://purl.obolibrary.org/obo/UBERON_0000997;mammalian vulva;mammalian vulva -http://purl.obolibrary.org/obo/UBERON_0000997;mammalian vulva;puboperineal region -http://purl.obolibrary.org/obo/UBERON_0000997;mammalian vulva;pudendum -http://purl.obolibrary.org/obo/UBERON_0000997;mammalian vulva;pudendum femininum -http://purl.obolibrary.org/obo/UBERON_0000997;mammalian vulva;pudendum muliebre -http://purl.obolibrary.org/obo/UBERON_0000997;mammalian vulva;vulva -http://purl.obolibrary.org/obo/UBERON_0000998;seminal vesicle; -http://purl.obolibrary.org/obo/UBERON_0000999;ejaculatory duct;ductus ejaculatorii -http://purl.obolibrary.org/obo/UBERON_0000999;ejaculatory duct;ductus ejaculatorius -http://purl.obolibrary.org/obo/UBERON_0001000;vas deferens;deferent duct -http://purl.obolibrary.org/obo/UBERON_0001000;vas deferens;ductus deferens -http://purl.obolibrary.org/obo/UBERON_0001000;vas deferens;vas deferen -http://purl.obolibrary.org/obo/UBERON_0001001;chitin-based cuticle; -http://purl.obolibrary.org/obo/UBERON_0001002;cuticle; -http://purl.obolibrary.org/obo/UBERON_0001003;skin epidermis;vertebrate epidermis -http://purl.obolibrary.org/obo/UBERON_0001004;respiratory system;Atmungssystem -http://purl.obolibrary.org/obo/UBERON_0001004;respiratory system;apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0001004;respiratory system;respiratory system -http://purl.obolibrary.org/obo/UBERON_0001004;respiratory system;systema respiratorium -http://purl.obolibrary.org/obo/UBERON_0001005;respiratory airway;airway -http://purl.obolibrary.org/obo/UBERON_0001005;respiratory airway;airways -http://purl.obolibrary.org/obo/UBERON_0001007;digestive system;alimentary system -http://purl.obolibrary.org/obo/UBERON_0001007;digestive system;alimentary tract -http://purl.obolibrary.org/obo/UBERON_0001007;digestive system;gastrointestinal system -http://purl.obolibrary.org/obo/UBERON_0001007;digestive system;gut -http://purl.obolibrary.org/obo/UBERON_0001008;renal system;excretory system -http://purl.obolibrary.org/obo/UBERON_0001008;renal system;renal or urinary system -http://purl.obolibrary.org/obo/UBERON_0001008;renal system;renal/urinary system -http://purl.obolibrary.org/obo/UBERON_0001008;renal system;systema urinaria -http://purl.obolibrary.org/obo/UBERON_0001008;renal system;systema urinarium -http://purl.obolibrary.org/obo/UBERON_0001008;renal system;urinary system -http://purl.obolibrary.org/obo/UBERON_0001008;renal system;urinary tract -http://purl.obolibrary.org/obo/UBERON_0001009;circulatory system;systema cardiovasculare -http://purl.obolibrary.org/obo/UBERON_0001010;diaphysis of ulna;body of ulna -http://purl.obolibrary.org/obo/UBERON_0001010;diaphysis of ulna;corpus ulnae -http://purl.obolibrary.org/obo/UBERON_0001010;diaphysis of ulna;shaft of ulna -http://purl.obolibrary.org/obo/UBERON_0001010;diaphysis of ulna;ulnar diaphysis -http://purl.obolibrary.org/obo/UBERON_0001011;hemolymph; -http://purl.obolibrary.org/obo/UBERON_0001012;head of radius;radial head -http://purl.obolibrary.org/obo/UBERON_0001013;adipose tissue;adipose -http://purl.obolibrary.org/obo/UBERON_0001013;adipose tissue;bodyfat -http://purl.obolibrary.org/obo/UBERON_0001013;adipose tissue;fat -http://purl.obolibrary.org/obo/UBERON_0001013;adipose tissue;fat tissue -http://purl.obolibrary.org/obo/UBERON_0001013;adipose tissue;fatty depot -http://purl.obolibrary.org/obo/UBERON_0001013;adipose tissue;fatty tissue -http://purl.obolibrary.org/obo/UBERON_0001015;musculature;muscle group -http://purl.obolibrary.org/obo/UBERON_0001015;musculature;muscle system -http://purl.obolibrary.org/obo/UBERON_0001015;musculature;muscles -http://purl.obolibrary.org/obo/UBERON_0001015;musculature;muscles set -http://purl.obolibrary.org/obo/UBERON_0001015;musculature;musculature -http://purl.obolibrary.org/obo/UBERON_0001015;musculature;musculature system -http://purl.obolibrary.org/obo/UBERON_0001015;musculature;musculi -http://purl.obolibrary.org/obo/UBERON_0001015;musculature;set of muscles -http://purl.obolibrary.org/obo/UBERON_0001015;musculature;set of skeletal muscles -http://purl.obolibrary.org/obo/UBERON_0001016;nervous system;nerve net -http://purl.obolibrary.org/obo/UBERON_0001016;nervous system;neurological system -http://purl.obolibrary.org/obo/UBERON_0001016;nervous system;systema nervosum -http://purl.obolibrary.org/obo/UBERON_0001017;central nervous system;CNS -http://purl.obolibrary.org/obo/UBERON_0001017;central nervous system;cerebrospinal axis -http://purl.obolibrary.org/obo/UBERON_0001017;central nervous system;neuraxis -http://purl.obolibrary.org/obo/UBERON_0001017;central nervous system;systema nervosum centrale -http://purl.obolibrary.org/obo/UBERON_0001018;axon tract;axonal tract -http://purl.obolibrary.org/obo/UBERON_0001018;axon tract;nerve tract -http://purl.obolibrary.org/obo/UBERON_0001018;axon tract;neuraxis tract -http://purl.obolibrary.org/obo/UBERON_0001018;axon tract;tract -http://purl.obolibrary.org/obo/UBERON_0001018;axon tract;tract of neuraxis -http://purl.obolibrary.org/obo/UBERON_0001019;nerve fasciculus;fascicle -http://purl.obolibrary.org/obo/UBERON_0001019;nerve fasciculus;fasciculus -http://purl.obolibrary.org/obo/UBERON_0001019;nerve fasciculus;nerve bundle -http://purl.obolibrary.org/obo/UBERON_0001019;nerve fasciculus;nerve fasciculus -http://purl.obolibrary.org/obo/UBERON_0001019;nerve fasciculus;nerve fiber tract -http://purl.obolibrary.org/obo/UBERON_0001019;nerve fasciculus;neural fasciculus -http://purl.obolibrary.org/obo/UBERON_0001020;nervous system commissure;commissure of neuraxis -http://purl.obolibrary.org/obo/UBERON_0001020;nervous system commissure;neuraxis commissure -http://purl.obolibrary.org/obo/UBERON_0001021;nerve;nerves -http://purl.obolibrary.org/obo/UBERON_0001021;nerve;neural subtree -http://purl.obolibrary.org/obo/UBERON_0001021;nerve;peripheral nerve -http://purl.obolibrary.org/obo/UBERON_0001027;sensory nerve;nervus sensorius -http://purl.obolibrary.org/obo/UBERON_0001028;diaphysis of radius;body of radius -http://purl.obolibrary.org/obo/UBERON_0001028;diaphysis of radius;corpus radii -http://purl.obolibrary.org/obo/UBERON_0001028;diaphysis of radius;radial diaphysis -http://purl.obolibrary.org/obo/UBERON_0001028;diaphysis of radius;shaft of radius -http://purl.obolibrary.org/obo/UBERON_0001031;sheath of Schwann;neurilemma -http://purl.obolibrary.org/obo/UBERON_0001031;sheath of Schwann;neurolemma -http://purl.obolibrary.org/obo/UBERON_0001031;sheath of Schwann;sheath of Schwann -http://purl.obolibrary.org/obo/UBERON_0001032;sensory system;organa sensuum -http://purl.obolibrary.org/obo/UBERON_0001032;sensory system;sense organ subsystem -http://purl.obolibrary.org/obo/UBERON_0001032;sensory system;sense organs -http://purl.obolibrary.org/obo/UBERON_0001032;sensory system;sense organs set -http://purl.obolibrary.org/obo/UBERON_0001032;sensory system;sensory organ system -http://purl.obolibrary.org/obo/UBERON_0001032;sensory system;sensory subsystem -http://purl.obolibrary.org/obo/UBERON_0001032;sensory system;sensory systems -http://purl.obolibrary.org/obo/UBERON_0001032;sensory system;set of sense organs -http://purl.obolibrary.org/obo/UBERON_0001033;gustatory system;gustatory organ system -http://purl.obolibrary.org/obo/UBERON_0001033;gustatory system;taste system -http://purl.obolibrary.org/obo/UBERON_0001035;dento-alveolar joint;dento-alveolar syndesmosis -http://purl.obolibrary.org/obo/UBERON_0001035;dento-alveolar joint;gomphosis -http://purl.obolibrary.org/obo/UBERON_0001035;dento-alveolar joint;peg-and-socket joint -http://purl.obolibrary.org/obo/UBERON_0001035;dento-alveolar joint;syndesmosis dentoalveolaris -http://purl.obolibrary.org/obo/UBERON_0001037;strand of hair;hair -http://purl.obolibrary.org/obo/UBERON_0001038;chordotonal organ; -http://purl.obolibrary.org/obo/UBERON_0001040;yolk sac; -http://purl.obolibrary.org/obo/UBERON_0001041;foregut;praeenteron -http://purl.obolibrary.org/obo/UBERON_0001041;foregut;proenteron -http://purl.obolibrary.org/obo/UBERON_0001042;chordate pharynx;pharynx -http://purl.obolibrary.org/obo/UBERON_0001043;esophagus;gullet -http://purl.obolibrary.org/obo/UBERON_0001043;esophagus;oesophagus -http://purl.obolibrary.org/obo/UBERON_0001044;saliva-secreting gland;glandulae salivariae -http://purl.obolibrary.org/obo/UBERON_0001044;saliva-secreting gland;salivary gland -http://purl.obolibrary.org/obo/UBERON_0001045;midgut; -http://purl.obolibrary.org/obo/UBERON_0001046;hindgut; -http://purl.obolibrary.org/obo/UBERON_0001047;neural glomerulus; -http://purl.obolibrary.org/obo/UBERON_0001048;primordium; -http://purl.obolibrary.org/obo/UBERON_0001049;neural tube; -http://purl.obolibrary.org/obo/UBERON_0001051;hypopharynx;laryngeal pharynx -http://purl.obolibrary.org/obo/UBERON_0001051;hypopharynx;laryngopharynx -http://purl.obolibrary.org/obo/UBERON_0001051;hypopharynx;pars laryngea pharyngis -http://purl.obolibrary.org/obo/UBERON_0001052;rectum;terminal portion of intestine -http://purl.obolibrary.org/obo/UBERON_0001053;arthropod neurohemal organ; -http://purl.obolibrary.org/obo/UBERON_0001054;Malpighian tubule; -http://purl.obolibrary.org/obo/UBERON_0001056;corpus cardiacum; -http://purl.obolibrary.org/obo/UBERON_0001057;corpus allatum; -http://purl.obolibrary.org/obo/UBERON_0001058;mushroom body;mushroom bodies -http://purl.obolibrary.org/obo/UBERON_0001059;pars intercerebralis; -http://purl.obolibrary.org/obo/UBERON_0001063;flocculus;flocculus of cerebellum -http://purl.obolibrary.org/obo/UBERON_0001063;flocculus;neuraxis flocculus -http://purl.obolibrary.org/obo/UBERON_0001064;ventral pancreatic duct;chief pancreatic duct -http://purl.obolibrary.org/obo/UBERON_0001064;ventral pancreatic duct;duct of Wirsung -http://purl.obolibrary.org/obo/UBERON_0001064;ventral pancreatic duct;main pancreatic duct -http://purl.obolibrary.org/obo/UBERON_0001065;parotid main excretory duct;Stenon duct -http://purl.obolibrary.org/obo/UBERON_0001065;parotid main excretory duct;Stensen's duct -http://purl.obolibrary.org/obo/UBERON_0001065;parotid main excretory duct;Stensens's duct -http://purl.obolibrary.org/obo/UBERON_0001065;parotid main excretory duct;main duct of parotid gland -http://purl.obolibrary.org/obo/UBERON_0001065;parotid main excretory duct;main excretory duct of parotid gland -http://purl.obolibrary.org/obo/UBERON_0001066;intervertebral disk;discus intervertebralis -http://purl.obolibrary.org/obo/UBERON_0001066;intervertebral disk;intervertebral disc -http://purl.obolibrary.org/obo/UBERON_0001066;intervertebral disk;spinal disc -http://purl.obolibrary.org/obo/UBERON_0001067;vertebral arch joint;facet joint -http://purl.obolibrary.org/obo/UBERON_0001067;vertebral arch joint;joint of vertebral arch -http://purl.obolibrary.org/obo/UBERON_0001067;vertebral arch joint;joint of vertebral articular process -http://purl.obolibrary.org/obo/UBERON_0001067;vertebral arch joint;spinal facet joint -http://purl.obolibrary.org/obo/UBERON_0001067;vertebral arch joint;zygapophyseal joint -http://purl.obolibrary.org/obo/UBERON_0001067;vertebral arch joint;zygapophysial joint -http://purl.obolibrary.org/obo/UBERON_0001068;skin of back;back skin -http://purl.obolibrary.org/obo/UBERON_0001068;skin of back;back zone of skin -http://purl.obolibrary.org/obo/UBERON_0001068;skin of back;skin, dorsal region -http://purl.obolibrary.org/obo/UBERON_0001068;skin of back;zone of skin of back -http://purl.obolibrary.org/obo/UBERON_0001069;head of pancreas;pancreas head -http://purl.obolibrary.org/obo/UBERON_0001069;head of pancreas;pancreatic head -http://purl.obolibrary.org/obo/UBERON_0001069;head of pancreas;right extremity of pancreas -http://purl.obolibrary.org/obo/UBERON_0001070;external carotid artery;external carotid -http://purl.obolibrary.org/obo/UBERON_0001071;superficial cervical artery;superficial branch of transverse cervical artery -http://purl.obolibrary.org/obo/UBERON_0001072;posterior vena cava;inferior caval vein -http://purl.obolibrary.org/obo/UBERON_0001072;posterior vena cava;inferior vena cava -http://purl.obolibrary.org/obo/UBERON_0001072;posterior vena cava;posterior vena cava -http://purl.obolibrary.org/obo/UBERON_0001073;ileocecal junction;ileocaecal junction -http://purl.obolibrary.org/obo/UBERON_0001074;pericardial cavity;cavity of pericardial sac -http://purl.obolibrary.org/obo/UBERON_0001074;pericardial cavity;pericardial space -http://purl.obolibrary.org/obo/UBERON_0001075;bony vertebral centrum;body of vertebra -http://purl.obolibrary.org/obo/UBERON_0001075;bony vertebral centrum;corpus vertebra -http://purl.obolibrary.org/obo/UBERON_0001075;bony vertebral centrum;corpus vertebrae (vertebrale) -http://purl.obolibrary.org/obo/UBERON_0001075;bony vertebral centrum;vertebral body -http://purl.obolibrary.org/obo/UBERON_0001076;neural spine;processus spinosus -http://purl.obolibrary.org/obo/UBERON_0001076;neural spine;processus spinosus vertebrae -http://purl.obolibrary.org/obo/UBERON_0001076;neural spine;spinous process of vertebra -http://purl.obolibrary.org/obo/UBERON_0001076;neural spine;vertebra spinous process -http://purl.obolibrary.org/obo/UBERON_0001077;transverse process of vertebra;processus transversus -http://purl.obolibrary.org/obo/UBERON_0001077;transverse process of vertebra;processus transversus vertebrae -http://purl.obolibrary.org/obo/UBERON_0001077;transverse process of vertebra;transverse process -http://purl.obolibrary.org/obo/UBERON_0001077;transverse process of vertebra;vertebra transverse process -http://purl.obolibrary.org/obo/UBERON_0001078;pedicle of vertebra;pedicle of vertebral arch -http://purl.obolibrary.org/obo/UBERON_0001078;pedicle of vertebra;pediculus arcus vertebrae -http://purl.obolibrary.org/obo/UBERON_0001078;pedicle of vertebra;vertebra pedicle -http://purl.obolibrary.org/obo/UBERON_0001078;pedicle of vertebra;vertebral pedicle -http://purl.obolibrary.org/obo/UBERON_0001079;prezygapophysis;cranial articular process of vertebra -http://purl.obolibrary.org/obo/UBERON_0001079;prezygapophysis;prezygapophysis -http://purl.obolibrary.org/obo/UBERON_0001079;prezygapophysis;processus articularis superior -http://purl.obolibrary.org/obo/UBERON_0001079;prezygapophysis;processus articularis superior vertebrae -http://purl.obolibrary.org/obo/UBERON_0001079;prezygapophysis;superior articular process of vertebra -http://purl.obolibrary.org/obo/UBERON_0001079;prezygapophysis;vertebra cranial articular process -http://purl.obolibrary.org/obo/UBERON_0001079;prezygapophysis;zygapophysis superior -http://purl.obolibrary.org/obo/UBERON_0001080;postzygapophysis;caudal articular process of vertebra -http://purl.obolibrary.org/obo/UBERON_0001080;postzygapophysis;inferior articular process of vertebra -http://purl.obolibrary.org/obo/UBERON_0001080;postzygapophysis;neural postzygopophysis -http://purl.obolibrary.org/obo/UBERON_0001080;postzygapophysis;postzygapophysis -http://purl.obolibrary.org/obo/UBERON_0001080;postzygapophysis;processus articularis inferior -http://purl.obolibrary.org/obo/UBERON_0001080;postzygapophysis;processus articularis inferior vertebrae -http://purl.obolibrary.org/obo/UBERON_0001080;postzygapophysis;vertebra caudal articular process -http://purl.obolibrary.org/obo/UBERON_0001080;postzygapophysis;zygapophysis inferior -http://purl.obolibrary.org/obo/UBERON_0001081;endocardium of ventricle;cardiac ventricle endocardium -http://purl.obolibrary.org/obo/UBERON_0001081;endocardium of ventricle;endocardium of cardiac ventricle -http://purl.obolibrary.org/obo/UBERON_0001081;endocardium of ventricle;endocardium of heart ventricle -http://purl.obolibrary.org/obo/UBERON_0001081;endocardium of ventricle;endocardium of lower chamber of heart -http://purl.obolibrary.org/obo/UBERON_0001081;endocardium of ventricle;endocardium of ventricle of heart -http://purl.obolibrary.org/obo/UBERON_0001081;endocardium of ventricle;heart ventricle endocardium -http://purl.obolibrary.org/obo/UBERON_0001081;endocardium of ventricle;lower chamber of heart endocardium -http://purl.obolibrary.org/obo/UBERON_0001081;endocardium of ventricle;ventricle endocardium -http://purl.obolibrary.org/obo/UBERON_0001081;endocardium of ventricle;ventricle of heart endocardium -http://purl.obolibrary.org/obo/UBERON_0001081;endocardium of ventricle;ventricular endocardium -http://purl.obolibrary.org/obo/UBERON_0001082;epicardium of ventricle;cardiac ventricle epicardium -http://purl.obolibrary.org/obo/UBERON_0001082;epicardium of ventricle;ventricular epicardium -http://purl.obolibrary.org/obo/UBERON_0001083;myocardium of ventricle;ventricle myocardium -http://purl.obolibrary.org/obo/UBERON_0001083;myocardium of ventricle;ventricular myocardium -http://purl.obolibrary.org/obo/UBERON_0001084;skin of head;adult head zone of skin -http://purl.obolibrary.org/obo/UBERON_0001084;skin of head;head skin -http://purl.obolibrary.org/obo/UBERON_0001084;skin of head;head zone of skin -http://purl.obolibrary.org/obo/UBERON_0001084;skin of head;zone of skin of adult head -http://purl.obolibrary.org/obo/UBERON_0001084;skin of head;zone of skin of head -http://purl.obolibrary.org/obo/UBERON_0001085;skin of trunk;torso zone of skin -http://purl.obolibrary.org/obo/UBERON_0001085;skin of trunk;trunk skin -http://purl.obolibrary.org/obo/UBERON_0001085;skin of trunk;trunk zone of skin -http://purl.obolibrary.org/obo/UBERON_0001085;skin of trunk;zone of skin of torso -http://purl.obolibrary.org/obo/UBERON_0001085;skin of trunk;zone of skin of trunk -http://purl.obolibrary.org/obo/UBERON_0001087;pleural fluid; -http://purl.obolibrary.org/obo/UBERON_0001088;urine; -http://purl.obolibrary.org/obo/UBERON_0001089;sweat; -http://purl.obolibrary.org/obo/UBERON_0001090;synovial fluid;joint fluid -http://purl.obolibrary.org/obo/UBERON_0001091;calcareous tooth;dental element -http://purl.obolibrary.org/obo/UBERON_0001091;calcareous tooth;dentine containing tooth -http://purl.obolibrary.org/obo/UBERON_0001091;calcareous tooth;tooth -http://purl.obolibrary.org/obo/UBERON_0001091;calcareous tooth;vertebrate tooth -http://purl.obolibrary.org/obo/UBERON_0001092;vertebral bone 1;C1 vertebra -http://purl.obolibrary.org/obo/UBERON_0001092;vertebral bone 1;atlas -http://purl.obolibrary.org/obo/UBERON_0001092;vertebral bone 1;atlas (CI) -http://purl.obolibrary.org/obo/UBERON_0001092;vertebral bone 1;atlas [C I] -http://purl.obolibrary.org/obo/UBERON_0001092;vertebral bone 1;atlas vertebra -http://purl.obolibrary.org/obo/UBERON_0001092;vertebral bone 1;cervical atlas -http://purl.obolibrary.org/obo/UBERON_0001092;vertebral bone 1;cervical vertebra 1 -http://purl.obolibrary.org/obo/UBERON_0001092;vertebral bone 1;first cervical vertebra -http://purl.obolibrary.org/obo/UBERON_0001092;vertebral bone 1;vertebra 1 -http://purl.obolibrary.org/obo/UBERON_0001093;vertebral bone 2;axis (CII) -http://purl.obolibrary.org/obo/UBERON_0001093;vertebral bone 2;axis [C II] -http://purl.obolibrary.org/obo/UBERON_0001093;vertebral bone 2;axis vertebra -http://purl.obolibrary.org/obo/UBERON_0001093;vertebral bone 2;cervical axis -http://purl.obolibrary.org/obo/UBERON_0001093;vertebral bone 2;vertebra 2 -http://purl.obolibrary.org/obo/UBERON_0001094;sacral vertebra;sacral segment -http://purl.obolibrary.org/obo/UBERON_0001094;sacral vertebra;segment of sacrum -http://purl.obolibrary.org/obo/UBERON_0001095;caudal vertebra;caudal vertebrae -http://purl.obolibrary.org/obo/UBERON_0001095;caudal vertebra;caudal vertebral bone -http://purl.obolibrary.org/obo/UBERON_0001095;caudal vertebra;caudal vertebral bone element -http://purl.obolibrary.org/obo/UBERON_0001095;caudal vertebra;coccygeal segment -http://purl.obolibrary.org/obo/UBERON_0001095;caudal vertebra;coccygeal vertebra -http://purl.obolibrary.org/obo/UBERON_0001095;caudal vertebra;fused tail vertebra -http://purl.obolibrary.org/obo/UBERON_0001096;wall of esophagus;anatomical wall of esophagus -http://purl.obolibrary.org/obo/UBERON_0001096;wall of esophagus;anatomical wall of gullet -http://purl.obolibrary.org/obo/UBERON_0001096;wall of esophagus;anatomical wall of oesophagus -http://purl.obolibrary.org/obo/UBERON_0001096;wall of esophagus;esophageal wall -http://purl.obolibrary.org/obo/UBERON_0001096;wall of esophagus;esophagus anatomical wall -http://purl.obolibrary.org/obo/UBERON_0001096;wall of esophagus;esophagus wall -http://purl.obolibrary.org/obo/UBERON_0001096;wall of esophagus;gullet anatomical wall -http://purl.obolibrary.org/obo/UBERON_0001096;wall of esophagus;gullet wall -http://purl.obolibrary.org/obo/UBERON_0001096;wall of esophagus;oesophagus anatomical wall -http://purl.obolibrary.org/obo/UBERON_0001096;wall of esophagus;oesophagus wall -http://purl.obolibrary.org/obo/UBERON_0001096;wall of esophagus;wall of gullet -http://purl.obolibrary.org/obo/UBERON_0001096;wall of esophagus;wall of oesophagus -http://purl.obolibrary.org/obo/UBERON_0001097;axillary lymph node;axillary node -http://purl.obolibrary.org/obo/UBERON_0001098;incisor tooth;incisor -http://purl.obolibrary.org/obo/UBERON_0001099;subcostal vein; -http://purl.obolibrary.org/obo/UBERON_0001100;pectoralis minor;pectoralis minor muscle -http://purl.obolibrary.org/obo/UBERON_0001101;external jugular vein;external jugular venous tree -http://purl.obolibrary.org/obo/UBERON_0001102;cartilage of main bronchus;bronchus principalis cartilage -http://purl.obolibrary.org/obo/UBERON_0001102;cartilage of main bronchus;cartilage of bronchus principalis -http://purl.obolibrary.org/obo/UBERON_0001102;cartilage of main bronchus;cartilage of primary bronchus -http://purl.obolibrary.org/obo/UBERON_0001102;cartilage of main bronchus;cartilage of principal bronchus -http://purl.obolibrary.org/obo/UBERON_0001102;cartilage of main bronchus;cartilaginous ring of main bronchus -http://purl.obolibrary.org/obo/UBERON_0001102;cartilage of main bronchus;main bronchial cartilage -http://purl.obolibrary.org/obo/UBERON_0001102;cartilage of main bronchus;main bronchus cartilage -http://purl.obolibrary.org/obo/UBERON_0001102;cartilage of main bronchus;primary bronchus cartilage -http://purl.obolibrary.org/obo/UBERON_0001102;cartilage of main bronchus;principal bronchus cartilage -http://purl.obolibrary.org/obo/UBERON_0001103;diaphragm;diaphragm muscle -http://purl.obolibrary.org/obo/UBERON_0001103;diaphragm;diaphragm of thorax -http://purl.obolibrary.org/obo/UBERON_0001103;diaphragm;midriff -http://purl.obolibrary.org/obo/UBERON_0001103;diaphragm;phren -http://purl.obolibrary.org/obo/UBERON_0001103;diaphragm;thoracic diaphragm -http://purl.obolibrary.org/obo/UBERON_0001104;anterior jugular vein;anterior external jugular vein -http://purl.obolibrary.org/obo/UBERON_0001105;clavicle bone;clavicle -http://purl.obolibrary.org/obo/UBERON_0001105;clavicle bone;clavicula -http://purl.obolibrary.org/obo/UBERON_0001105;clavicle bone;collar bone -http://purl.obolibrary.org/obo/UBERON_0001105;clavicle bone;collarbone -http://purl.obolibrary.org/obo/UBERON_0001106;cephalic vein;cephalic vein of forearm -http://purl.obolibrary.org/obo/UBERON_0001106;cephalic vein;vena cephalica antebrachii -http://purl.obolibrary.org/obo/UBERON_0001107;sternohyoid muscle;m. sternohyoideus -http://purl.obolibrary.org/obo/UBERON_0001107;sternohyoid muscle;sternohyoid -http://purl.obolibrary.org/obo/UBERON_0001107;sternohyoid muscle;sternohyoideus -http://purl.obolibrary.org/obo/UBERON_0001107;sternohyoid muscle;sternohyoideus muscle -http://purl.obolibrary.org/obo/UBERON_0001108;omohyoid muscle;omohyoid -http://purl.obolibrary.org/obo/UBERON_0001108;omohyoid muscle;omohyoideus -http://purl.obolibrary.org/obo/UBERON_0001108;omohyoid muscle;omohyoideus muscle -http://purl.obolibrary.org/obo/UBERON_0001109;sternothyroid muscle;sternothyroid -http://purl.obolibrary.org/obo/UBERON_0001110;thyrohyoid muscle;thyrohyoid -http://purl.obolibrary.org/obo/UBERON_0001111;intercostal muscle;musculus intercostalis -http://purl.obolibrary.org/obo/UBERON_0001112;latissimus dorsi muscle;dorsal latissimus muscle -http://purl.obolibrary.org/obo/UBERON_0001112;latissimus dorsi muscle;latissimi dorsi -http://purl.obolibrary.org/obo/UBERON_0001112;latissimus dorsi muscle;latissimus dorsi -http://purl.obolibrary.org/obo/UBERON_0001112;latissimus dorsi muscle;musculus latissimus dorsi -http://purl.obolibrary.org/obo/UBERON_0001113;lobe of liver;hepatic lobe -http://purl.obolibrary.org/obo/UBERON_0001113;lobe of liver;liver lobe -http://purl.obolibrary.org/obo/UBERON_0001113;lobe of liver;lobus hepatis -http://purl.obolibrary.org/obo/UBERON_0001114;right lobe of liver;liver right lobe -http://purl.obolibrary.org/obo/UBERON_0001114;right lobe of liver;lobus hepaticus dexter -http://purl.obolibrary.org/obo/UBERON_0001114;right lobe of liver;right liver lobe -http://purl.obolibrary.org/obo/UBERON_0001115;left lobe of liver;left liver lobe -http://purl.obolibrary.org/obo/UBERON_0001115;left lobe of liver;liver left lobe -http://purl.obolibrary.org/obo/UBERON_0001115;left lobe of liver;lobus hepaticus sinister -http://purl.obolibrary.org/obo/UBERON_0001116;quadrate lobe of liver;liver quadrate lobe -http://purl.obolibrary.org/obo/UBERON_0001116;quadrate lobe of liver;lobus quadratus -http://purl.obolibrary.org/obo/UBERON_0001116;quadrate lobe of liver;lobus quadratus hepatis -http://purl.obolibrary.org/obo/UBERON_0001117;caudate lobe of liver;Spiegelian lobe -http://purl.obolibrary.org/obo/UBERON_0001117;caudate lobe of liver;Spigel lobe -http://purl.obolibrary.org/obo/UBERON_0001117;caudate lobe of liver;couinaud hepatic segment I -http://purl.obolibrary.org/obo/UBERON_0001117;caudate lobe of liver;hepatovenous segment I -http://purl.obolibrary.org/obo/UBERON_0001117;caudate lobe of liver;liver caudate lobe -http://purl.obolibrary.org/obo/UBERON_0001117;caudate lobe of liver;lobus caudatus -http://purl.obolibrary.org/obo/UBERON_0001117;caudate lobe of liver;lobus caudatus hepatis -http://purl.obolibrary.org/obo/UBERON_0001117;caudate lobe of liver;pars posterior hepatis -http://purl.obolibrary.org/obo/UBERON_0001117;caudate lobe of liver;posterior hepatic segment i -http://purl.obolibrary.org/obo/UBERON_0001117;caudate lobe of liver;posterior liver -http://purl.obolibrary.org/obo/UBERON_0001117;caudate lobe of liver;posterior part of liver -http://purl.obolibrary.org/obo/UBERON_0001117;caudate lobe of liver;segment I of liver -http://purl.obolibrary.org/obo/UBERON_0001117;caudate lobe of liver;segmentum hepatis I -http://purl.obolibrary.org/obo/UBERON_0001118;lobe of thyroid gland;lobus (glandula thyroidea) -http://purl.obolibrary.org/obo/UBERON_0001118;lobe of thyroid gland;lobus glandulae thyroideae -http://purl.obolibrary.org/obo/UBERON_0001118;lobe of thyroid gland;thyroid gland lobe -http://purl.obolibrary.org/obo/UBERON_0001118;lobe of thyroid gland;thyroid lobe -http://purl.obolibrary.org/obo/UBERON_0001119;right lobe of thyroid gland;lobus dexter (glandula thyroidea) -http://purl.obolibrary.org/obo/UBERON_0001119;right lobe of thyroid gland;right thyroid lobe -http://purl.obolibrary.org/obo/UBERON_0001119;right lobe of thyroid gland;thyroid gland right lobe -http://purl.obolibrary.org/obo/UBERON_0001120;left lobe of thyroid gland;left thyroid lobe -http://purl.obolibrary.org/obo/UBERON_0001120;left lobe of thyroid gland;lobus sinister (glandula thyroidea) -http://purl.obolibrary.org/obo/UBERON_0001120;left lobe of thyroid gland;thyroid gland left lobe -http://purl.obolibrary.org/obo/UBERON_0001121;longus colli muscle;longus colli -http://purl.obolibrary.org/obo/UBERON_0001121;longus colli muscle;longus colli muscle -http://purl.obolibrary.org/obo/UBERON_0001122;scalenus medius;medial scalene muscle -http://purl.obolibrary.org/obo/UBERON_0001122;scalenus medius;middle scalene -http://purl.obolibrary.org/obo/UBERON_0001122;scalenus medius;musculus scalenus medius -http://purl.obolibrary.org/obo/UBERON_0001122;scalenus medius;scalenus medius muscle -http://purl.obolibrary.org/obo/UBERON_0001123;scalenus posterior;musculus scalenus posterior -http://purl.obolibrary.org/obo/UBERON_0001123;scalenus posterior;posterior scalene -http://purl.obolibrary.org/obo/UBERON_0001123;scalenus posterior;posterior scalene muscle -http://purl.obolibrary.org/obo/UBERON_0001123;scalenus posterior;scalenus dorsalis -http://purl.obolibrary.org/obo/UBERON_0001123;scalenus posterior;scalenus dorsalis muscle -http://purl.obolibrary.org/obo/UBERON_0001125;serratus ventralis;Boxer's muscle -http://purl.obolibrary.org/obo/UBERON_0001125;serratus ventralis;serratus anterior -http://purl.obolibrary.org/obo/UBERON_0001125;serratus ventralis;serratus anterior muscle -http://purl.obolibrary.org/obo/UBERON_0001125;serratus ventralis;serratus ventralis muscle -http://purl.obolibrary.org/obo/UBERON_0001126;serratus dorsalis superior muscle;serratus dorsalis cranialis -http://purl.obolibrary.org/obo/UBERON_0001126;serratus dorsalis superior muscle;serratus dorsalis cranialis muscle -http://purl.obolibrary.org/obo/UBERON_0001126;serratus dorsalis superior muscle;serratus posterior superior -http://purl.obolibrary.org/obo/UBERON_0001126;serratus dorsalis superior muscle;superior serratus dorsalis -http://purl.obolibrary.org/obo/UBERON_0001126;serratus dorsalis superior muscle;superior serratus posterior -http://purl.obolibrary.org/obo/UBERON_0001127;serratus dorsalis inferior muscle;inferior serratus dorsalis -http://purl.obolibrary.org/obo/UBERON_0001127;serratus dorsalis inferior muscle;inferior serratus posterior -http://purl.obolibrary.org/obo/UBERON_0001127;serratus dorsalis inferior muscle;serratus dorsalis caudalis -http://purl.obolibrary.org/obo/UBERON_0001127;serratus dorsalis inferior muscle;serratus posterior inferior -http://purl.obolibrary.org/obo/UBERON_0001128;sternocleidomastoid;sterno-mastoid -http://purl.obolibrary.org/obo/UBERON_0001128;sternocleidomastoid;sternocleidomastoid muscle -http://purl.obolibrary.org/obo/UBERON_0001128;sternocleidomastoid;sternomastoid -http://purl.obolibrary.org/obo/UBERON_0001128;sternocleidomastoid;sternomastoid muscle -http://purl.obolibrary.org/obo/UBERON_0001129;subscapularis muscle;subscapularis -http://purl.obolibrary.org/obo/UBERON_0001130;vertebral column; -http://purl.obolibrary.org/obo/UBERON_0001131;vertebral foramen;vertebra neural canal -http://purl.obolibrary.org/obo/UBERON_0001132;parathyroid gland;parathyroid -http://purl.obolibrary.org/obo/UBERON_0001133;cardiac muscle tissue;cardiac muscle -http://purl.obolibrary.org/obo/UBERON_0001133;cardiac muscle tissue;cardiac muscle muscle tissue -http://purl.obolibrary.org/obo/UBERON_0001133;cardiac muscle tissue;cardiac muscle textus muscularis -http://purl.obolibrary.org/obo/UBERON_0001133;cardiac muscle tissue;heart muscle muscle tissue -http://purl.obolibrary.org/obo/UBERON_0001133;cardiac muscle tissue;heart muscle textus muscularis -http://purl.obolibrary.org/obo/UBERON_0001133;cardiac muscle tissue;heart myocardium muscle tissue -http://purl.obolibrary.org/obo/UBERON_0001133;cardiac muscle tissue;heart myocardium textus muscularis -http://purl.obolibrary.org/obo/UBERON_0001133;cardiac muscle tissue;muscle of heart muscle tissue -http://purl.obolibrary.org/obo/UBERON_0001133;cardiac muscle tissue;muscle of heart textus muscularis -http://purl.obolibrary.org/obo/UBERON_0001133;cardiac muscle tissue;muscle tissue of cardiac muscle -http://purl.obolibrary.org/obo/UBERON_0001133;cardiac muscle tissue;muscle tissue of heart muscle -http://purl.obolibrary.org/obo/UBERON_0001133;cardiac muscle tissue;muscle tissue of heart myocardium -http://purl.obolibrary.org/obo/UBERON_0001133;cardiac muscle tissue;muscle tissue of muscle of heart -http://purl.obolibrary.org/obo/UBERON_0001133;cardiac muscle tissue;muscle tissue of myocardium -http://purl.obolibrary.org/obo/UBERON_0001133;cardiac muscle tissue;myocardium muscle tissue -http://purl.obolibrary.org/obo/UBERON_0001133;cardiac muscle tissue;myocardium textus muscularis -http://purl.obolibrary.org/obo/UBERON_0001133;cardiac muscle tissue;textus muscularis of cardiac muscle -http://purl.obolibrary.org/obo/UBERON_0001133;cardiac muscle tissue;textus muscularis of heart muscle -http://purl.obolibrary.org/obo/UBERON_0001133;cardiac muscle tissue;textus muscularis of heart myocardium -http://purl.obolibrary.org/obo/UBERON_0001133;cardiac muscle tissue;textus muscularis of muscle of heart -http://purl.obolibrary.org/obo/UBERON_0001133;cardiac muscle tissue;textus muscularis of myocardium -http://purl.obolibrary.org/obo/UBERON_0001134;skeletal muscle tissue; -http://purl.obolibrary.org/obo/UBERON_0001135;smooth muscle tissue;involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0001135;smooth muscle tissue;non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0001135;smooth muscle tissue;smooth muscle -http://purl.obolibrary.org/obo/UBERON_0001135;smooth muscle tissue;"textus muscularis levis; textus muscularis nonstriatus" -http://purl.obolibrary.org/obo/UBERON_0001135;smooth muscle tissue;textus muscularis nonstriatus -http://purl.obolibrary.org/obo/UBERON_0001135;smooth muscle tissue;visceral muscle -http://purl.obolibrary.org/obo/UBERON_0001135;smooth muscle tissue;visceral muscle tissue -http://purl.obolibrary.org/obo/UBERON_0001136;mesothelium; -http://purl.obolibrary.org/obo/UBERON_0001137;dorsum;back -http://purl.obolibrary.org/obo/UBERON_0001137;dorsum;back of body proper -http://purl.obolibrary.org/obo/UBERON_0001137;dorsum;dorsal part of organism -http://purl.obolibrary.org/obo/UBERON_0001138;superior mesenteric vein; -http://purl.obolibrary.org/obo/UBERON_0001139;common iliac vein;common iliac venous tree -http://purl.obolibrary.org/obo/UBERON_0001140;renal vein;kidney vein -http://purl.obolibrary.org/obo/UBERON_0001140;renal vein;renal venous tree -http://purl.obolibrary.org/obo/UBERON_0001140;renal vein;vein of kidney -http://purl.obolibrary.org/obo/UBERON_0001141;right renal vein; -http://purl.obolibrary.org/obo/UBERON_0001142;left renal vein; -http://purl.obolibrary.org/obo/UBERON_0001143;hepatic vein;liver vein -http://purl.obolibrary.org/obo/UBERON_0001143;hepatic vein;vein of liver -http://purl.obolibrary.org/obo/UBERON_0001143;hepatic vein;vena hepatica -http://purl.obolibrary.org/obo/UBERON_0001144;testicular vein;male gonadal vein -http://purl.obolibrary.org/obo/UBERON_0001144;testicular vein;spermatic vein -http://purl.obolibrary.org/obo/UBERON_0001144;testicular vein;testicle vein -http://purl.obolibrary.org/obo/UBERON_0001144;testicular vein;testicular venous tree -http://purl.obolibrary.org/obo/UBERON_0001144;testicular vein;vein of testicle -http://purl.obolibrary.org/obo/UBERON_0001145;ovarian vein;female reproductive system gonad vein -http://purl.obolibrary.org/obo/UBERON_0001145;ovarian vein;female reproductive system gonada vein -http://purl.obolibrary.org/obo/UBERON_0001145;ovarian vein;gonad of female reproductive system vein -http://purl.obolibrary.org/obo/UBERON_0001145;ovarian vein;gonada of female reproductive system vein -http://purl.obolibrary.org/obo/UBERON_0001145;ovarian vein;ovary vein -http://purl.obolibrary.org/obo/UBERON_0001145;ovarian vein;vein of female reproductive system gonad -http://purl.obolibrary.org/obo/UBERON_0001145;ovarian vein;vein of female reproductive system gonada -http://purl.obolibrary.org/obo/UBERON_0001145;ovarian vein;vein of gonad of female reproductive system -http://purl.obolibrary.org/obo/UBERON_0001145;ovarian vein;vein of gonada of female reproductive system -http://purl.obolibrary.org/obo/UBERON_0001145;ovarian vein;vein of ovary -http://purl.obolibrary.org/obo/UBERON_0001146;suprarenal vein; -http://purl.obolibrary.org/obo/UBERON_0001148;median nerve; -http://purl.obolibrary.org/obo/UBERON_0001149;bare area of liver;area nuda (hepar) -http://purl.obolibrary.org/obo/UBERON_0001149;bare area of liver;area nuda hepatis -http://purl.obolibrary.org/obo/UBERON_0001149;bare area of liver;liver bare area -http://purl.obolibrary.org/obo/UBERON_0001150;body of pancreas;pancreas body -http://purl.obolibrary.org/obo/UBERON_0001150;body of pancreas;pancreatic body -http://purl.obolibrary.org/obo/UBERON_0001151;tail of pancreas;left extremity of pancreas -http://purl.obolibrary.org/obo/UBERON_0001151;tail of pancreas;pancreas tail -http://purl.obolibrary.org/obo/UBERON_0001151;tail of pancreas;pancreatic tail -http://purl.obolibrary.org/obo/UBERON_0001152;cystic duct; -http://purl.obolibrary.org/obo/UBERON_0001153;caecum;caecum -http://purl.obolibrary.org/obo/UBERON_0001153;caecum;cecum -http://purl.obolibrary.org/obo/UBERON_0001153;caecum;intestinum crassum caecum -http://purl.obolibrary.org/obo/UBERON_0001154;vermiform appendix;appendix -http://purl.obolibrary.org/obo/UBERON_0001154;vermiform appendix;appendix vermiformis -http://purl.obolibrary.org/obo/UBERON_0001154;vermiform appendix;caecal appendix -http://purl.obolibrary.org/obo/UBERON_0001154;vermiform appendix;cecal appendix -http://purl.obolibrary.org/obo/UBERON_0001155;colon;hindgut -http://purl.obolibrary.org/obo/UBERON_0001155;colon;large bowel -http://purl.obolibrary.org/obo/UBERON_0001155;colon;posterior intestine -http://purl.obolibrary.org/obo/UBERON_0001156;ascending colon;colon ascendens -http://purl.obolibrary.org/obo/UBERON_0001157;transverse colon;colon transversum -http://purl.obolibrary.org/obo/UBERON_0001158;descending colon;colon descendens -http://purl.obolibrary.org/obo/UBERON_0001159;sigmoid colon; -http://purl.obolibrary.org/obo/UBERON_0001160;fundus of stomach;fundus gastricus (ventricularis) -http://purl.obolibrary.org/obo/UBERON_0001160;fundus of stomach;gastric fundus -http://purl.obolibrary.org/obo/UBERON_0001160;fundus of stomach;stomach fundus -http://purl.obolibrary.org/obo/UBERON_0001161;body of stomach;corpus gastricum (ventriculare) -http://purl.obolibrary.org/obo/UBERON_0001161;body of stomach;gastric body -http://purl.obolibrary.org/obo/UBERON_0001161;body of stomach;stomach body -http://purl.obolibrary.org/obo/UBERON_0001162;cardia of stomach;cardial part of stomach -http://purl.obolibrary.org/obo/UBERON_0001162;cardia of stomach;gastric cardia -http://purl.obolibrary.org/obo/UBERON_0001162;cardia of stomach;pars cardiaca (gaster) -http://purl.obolibrary.org/obo/UBERON_0001162;cardia of stomach;pars cardiaca gastricae -http://purl.obolibrary.org/obo/UBERON_0001162;cardia of stomach;stomach cardiac region -http://purl.obolibrary.org/obo/UBERON_0001163;lesser curvature of stomach;stomach lesser curvature -http://purl.obolibrary.org/obo/UBERON_0001164;greater curvature of stomach;stomach greater curvature -http://purl.obolibrary.org/obo/UBERON_0001165;pyloric antrum;antrum -http://purl.obolibrary.org/obo/UBERON_0001165;pyloric antrum;antrum of Willis -http://purl.obolibrary.org/obo/UBERON_0001165;pyloric antrum;antrum of stomach -http://purl.obolibrary.org/obo/UBERON_0001165;pyloric antrum;antrum pylori -http://purl.obolibrary.org/obo/UBERON_0001165;pyloric antrum;antrum pyloricum -http://purl.obolibrary.org/obo/UBERON_0001165;pyloric antrum;gastric antrum -http://purl.obolibrary.org/obo/UBERON_0001165;pyloric antrum;stomach antrum -http://purl.obolibrary.org/obo/UBERON_0001165;pyloric antrum;stomach pyloric antrum -http://purl.obolibrary.org/obo/UBERON_0001166;pylorus;pars pylorica -http://purl.obolibrary.org/obo/UBERON_0001166;pylorus;pars pylorica gastricae -http://purl.obolibrary.org/obo/UBERON_0001166;pylorus;pyloric part of stomach -http://purl.obolibrary.org/obo/UBERON_0001166;pylorus;pyloric region -http://purl.obolibrary.org/obo/UBERON_0001166;pylorus;stomach pyloric region -http://purl.obolibrary.org/obo/UBERON_0001166;pylorus;valvula pylori -http://purl.obolibrary.org/obo/UBERON_0001167;wall of stomach;anatomical wall of stomach -http://purl.obolibrary.org/obo/UBERON_0001167;wall of stomach;anatomical wall of ventriculus -http://purl.obolibrary.org/obo/UBERON_0001167;wall of stomach;gastric wall -http://purl.obolibrary.org/obo/UBERON_0001167;wall of stomach;stomach anatomical wall -http://purl.obolibrary.org/obo/UBERON_0001167;wall of stomach;stomach wall -http://purl.obolibrary.org/obo/UBERON_0001167;wall of stomach;ventriculus anatomical wall -http://purl.obolibrary.org/obo/UBERON_0001167;wall of stomach;ventriculus wall -http://purl.obolibrary.org/obo/UBERON_0001167;wall of stomach;wall of ventriculus -http://purl.obolibrary.org/obo/UBERON_0001168;wall of small intestine;anatomical wall of small bowel -http://purl.obolibrary.org/obo/UBERON_0001168;wall of small intestine;anatomical wall of small intestine -http://purl.obolibrary.org/obo/UBERON_0001168;wall of small intestine;small bowel anatomical wall -http://purl.obolibrary.org/obo/UBERON_0001168;wall of small intestine;small bowel wall -http://purl.obolibrary.org/obo/UBERON_0001168;wall of small intestine;small intestinal wall -http://purl.obolibrary.org/obo/UBERON_0001168;wall of small intestine;small intestine anatomical wall -http://purl.obolibrary.org/obo/UBERON_0001168;wall of small intestine;small intestine wall -http://purl.obolibrary.org/obo/UBERON_0001168;wall of small intestine;wall of small bowel -http://purl.obolibrary.org/obo/UBERON_0001169;wall of large intestine;anatomical wall of large intestine -http://purl.obolibrary.org/obo/UBERON_0001169;wall of large intestine;large intestinal wall -http://purl.obolibrary.org/obo/UBERON_0001169;wall of large intestine;large intestine anatomical wall -http://purl.obolibrary.org/obo/UBERON_0001169;wall of large intestine;large intestine wall -http://purl.obolibrary.org/obo/UBERON_0001170;mesentery of small intestine;mesentery (proper) -http://purl.obolibrary.org/obo/UBERON_0001170;mesentery of small intestine;mesentery proper -http://purl.obolibrary.org/obo/UBERON_0001170;mesentery of small intestine;small intestinal mesentery -http://purl.obolibrary.org/obo/UBERON_0001170;mesentery of small intestine;small intestine mesentery -http://purl.obolibrary.org/obo/UBERON_0001171;portal lobule; -http://purl.obolibrary.org/obo/UBERON_0001172;hepatic acinus;liver acinus -http://purl.obolibrary.org/obo/UBERON_0001172;hepatic acinus;portal acinus -http://purl.obolibrary.org/obo/UBERON_0001173;biliary tree; -http://purl.obolibrary.org/obo/UBERON_0001174;common bile duct;ductus choledochus (biliaris) -http://purl.obolibrary.org/obo/UBERON_0001175;common hepatic duct; -http://purl.obolibrary.org/obo/UBERON_0001176;right hepatic duct; -http://purl.obolibrary.org/obo/UBERON_0001177;left hepatic duct; -http://purl.obolibrary.org/obo/UBERON_0001178;visceral peritoneum;visceral serous membrane of peritoneum -http://purl.obolibrary.org/obo/UBERON_0001179;peritoneal cavity; -http://purl.obolibrary.org/obo/UBERON_0001180;superior recess of lesser sac;omental bursa superior recess -http://purl.obolibrary.org/obo/UBERON_0001180;superior recess of lesser sac;recessus superior bursae omentalis -http://purl.obolibrary.org/obo/UBERON_0001180;superior recess of lesser sac;recessus superior omentalis -http://purl.obolibrary.org/obo/UBERON_0001180;superior recess of lesser sac;superior omental bursa -http://purl.obolibrary.org/obo/UBERON_0001180;superior recess of lesser sac;superior recess -http://purl.obolibrary.org/obo/UBERON_0001180;superior recess of lesser sac;superior recess of omental bursa -http://purl.obolibrary.org/obo/UBERON_0001181;inferior recess of lesser sac;inferior omental bursa -http://purl.obolibrary.org/obo/UBERON_0001181;inferior recess of lesser sac;inferior recess -http://purl.obolibrary.org/obo/UBERON_0001181;inferior recess of lesser sac;inferior recess of omental bursa -http://purl.obolibrary.org/obo/UBERON_0001181;inferior recess of lesser sac;omental bursa inferior recess -http://purl.obolibrary.org/obo/UBERON_0001181;inferior recess of lesser sac;recessus inferior bursae omentalis -http://purl.obolibrary.org/obo/UBERON_0001181;inferior recess of lesser sac;recessus inferior omentalis -http://purl.obolibrary.org/obo/UBERON_0001182;superior mesenteric artery;arteria mesenterica superior -http://purl.obolibrary.org/obo/UBERON_0001182;superior mesenteric artery;superior mesenteric arterial tree -http://purl.obolibrary.org/obo/UBERON_0001183;inferior mesenteric artery;inferior mesenteric arterial tree -http://purl.obolibrary.org/obo/UBERON_0001184;renal artery;renal arterial tree -http://purl.obolibrary.org/obo/UBERON_0001185;right renal artery;right renal arterial tree -http://purl.obolibrary.org/obo/UBERON_0001186;left renal artery;left renal arterial tree -http://purl.obolibrary.org/obo/UBERON_0001187;testicular artery;testicular arterial tree -http://purl.obolibrary.org/obo/UBERON_0001188;right testicular artery;right spermatic artery -http://purl.obolibrary.org/obo/UBERON_0001188;right testicular artery;trunk of right testicular arterial tree -http://purl.obolibrary.org/obo/UBERON_0001189;left testicular artery;left spermatic artery -http://purl.obolibrary.org/obo/UBERON_0001189;left testicular artery;trunk of left testicular arterial tree -http://purl.obolibrary.org/obo/UBERON_0001190;ovarian artery;ovarian arterial tree -http://purl.obolibrary.org/obo/UBERON_0001191;common iliac artery;common iliac arterial tree -http://purl.obolibrary.org/obo/UBERON_0001192;left gastric artery; -http://purl.obolibrary.org/obo/UBERON_0001193;hepatic artery;arteria hepatica -http://purl.obolibrary.org/obo/UBERON_0001193;hepatic artery;arteria hepatica propria -http://purl.obolibrary.org/obo/UBERON_0001194;splenic artery;arteria lienalis -http://purl.obolibrary.org/obo/UBERON_0001194;splenic artery;arteria splenica -http://purl.obolibrary.org/obo/UBERON_0001194;splenic artery;lienal artery -http://purl.obolibrary.org/obo/UBERON_0001195;inferior pancreaticoduodenal artery;arteriae pancreaticoduodenales inferiores -http://purl.obolibrary.org/obo/UBERON_0001195;inferior pancreaticoduodenal artery;inferior pancreatico-duodenal artery -http://purl.obolibrary.org/obo/UBERON_0001196;middle colic artery; -http://purl.obolibrary.org/obo/UBERON_0001197;ileocolic artery; -http://purl.obolibrary.org/obo/UBERON_0001198;superior suprarenal artery;arteriae suprarenales superiores -http://purl.obolibrary.org/obo/UBERON_0001198;superior suprarenal artery;superior adrenal branch of inferior phrenic artery -http://purl.obolibrary.org/obo/UBERON_0001198;superior suprarenal artery;superior suprarenal branch of inferior phrenic artery -http://purl.obolibrary.org/obo/UBERON_0001199;mucosa of stomach;Magenschleimhaut -http://purl.obolibrary.org/obo/UBERON_0001199;mucosa of stomach;gastric mucosa -http://purl.obolibrary.org/obo/UBERON_0001199;mucosa of stomach;gastric mucous membrane -http://purl.obolibrary.org/obo/UBERON_0001199;mucosa of stomach;mucosa of organ of stomach -http://purl.obolibrary.org/obo/UBERON_0001199;mucosa of stomach;mucosa of organ of ventriculus -http://purl.obolibrary.org/obo/UBERON_0001199;mucosa of stomach;mucosa of ventriculus -http://purl.obolibrary.org/obo/UBERON_0001199;mucosa of stomach;mucous membrane of stomach -http://purl.obolibrary.org/obo/UBERON_0001199;mucosa of stomach;mucous membrane of ventriculus -http://purl.obolibrary.org/obo/UBERON_0001199;mucosa of stomach;organ mucosa of stomach -http://purl.obolibrary.org/obo/UBERON_0001199;mucosa of stomach;organ mucosa of ventriculus -http://purl.obolibrary.org/obo/UBERON_0001199;mucosa of stomach;stomach mucosa -http://purl.obolibrary.org/obo/UBERON_0001199;mucosa of stomach;stomach mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0001199;mucosa of stomach;stomach mucous membrane -http://purl.obolibrary.org/obo/UBERON_0001199;mucosa of stomach;stomach organ mucosa -http://purl.obolibrary.org/obo/UBERON_0001199;mucosa of stomach;tunica mucosa (gaster) -http://purl.obolibrary.org/obo/UBERON_0001199;mucosa of stomach;tunica mucosa gastricae -http://purl.obolibrary.org/obo/UBERON_0001199;mucosa of stomach;tunica mucosa gastris -http://purl.obolibrary.org/obo/UBERON_0001199;mucosa of stomach;ventriculus mucosa -http://purl.obolibrary.org/obo/UBERON_0001199;mucosa of stomach;ventriculus mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0001199;mucosa of stomach;ventriculus mucous membrane -http://purl.obolibrary.org/obo/UBERON_0001199;mucosa of stomach;ventriculus organ mucosa -http://purl.obolibrary.org/obo/UBERON_0001200;submucosa of stomach;gastric submucosa -http://purl.obolibrary.org/obo/UBERON_0001200;submucosa of stomach;stomach submucosa -http://purl.obolibrary.org/obo/UBERON_0001200;submucosa of stomach;submucosa of ventriculus -http://purl.obolibrary.org/obo/UBERON_0001200;submucosa of stomach;submucous layer of stomach -http://purl.obolibrary.org/obo/UBERON_0001200;submucosa of stomach;tela submucosa (gaster) -http://purl.obolibrary.org/obo/UBERON_0001200;submucosa of stomach;tela submucosa gastricae -http://purl.obolibrary.org/obo/UBERON_0001200;submucosa of stomach;tela submucosa ventriculi -http://purl.obolibrary.org/obo/UBERON_0001200;submucosa of stomach;ventriculus submucosa -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;anatomical wall of stomach serosa -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;anatomical wall of stomach serous membrane -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;anatomical wall of ventriculus serosa -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;anatomical wall of ventriculus serous membrane -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;gastric serosa -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;gastric wall serosa -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;gastric wall serous membrane -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;serosa of anatomical wall of stomach -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;serosa of anatomical wall of ventriculus -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;serosa of gastric wall -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;serosa of stomach anatomical wall -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;serosa of stomach wall -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;serosa of ventriculus anatomical wall -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;serosa of ventriculus wall -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;serosa of wall of stomach -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;serosa of wall of ventriculus -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;serous coat of stomach -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;serous membrane of anatomical wall of stomach -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;serous membrane of anatomical wall of ventriculus -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;serous membrane of gastric wall -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;serous membrane of stomach anatomical wall -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;serous membrane of stomach wall -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;serous membrane of ventriculus anatomical wall -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;serous membrane of ventriculus wall -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;serous membrane of wall of stomach -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;serous membrane of wall of ventriculus -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;stomach anatomical wall serosa -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;stomach anatomical wall serous membrane -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;stomach serosa -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;stomach wall serosa -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;stomach wall serous membrane -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;tunica serosa (gaster) -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;tunica serosa gastricae -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;ventriculus anatomical wall serosa -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;ventriculus anatomical wall serous membrane -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;ventriculus wall serosa -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;ventriculus wall serous membrane -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;visceral peritoneum of stomach -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;wall of stomach serosa -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;wall of stomach serous membrane -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;wall of ventriculus serosa -http://purl.obolibrary.org/obo/UBERON_0001201;serosa of stomach;wall of ventriculus serous membrane -http://purl.obolibrary.org/obo/UBERON_0001202;pyloric sphincter;pyloric valve -http://purl.obolibrary.org/obo/UBERON_0001203;muscularis mucosae of stomach;gastric muscularis mucosa -http://purl.obolibrary.org/obo/UBERON_0001203;muscularis mucosae of stomach;lamina muscularis mucosae (tunica mucosa)(gaster) -http://purl.obolibrary.org/obo/UBERON_0001203;muscularis mucosae of stomach;lamina muscularis mucosae gastricae -http://purl.obolibrary.org/obo/UBERON_0001203;muscularis mucosae of stomach;lamina muscularis of gastric mucosa -http://purl.obolibrary.org/obo/UBERON_0001203;muscularis mucosae of stomach;muscular coat of stomach -http://purl.obolibrary.org/obo/UBERON_0001203;muscularis mucosae of stomach;stomach muscularis mucosa -http://purl.obolibrary.org/obo/UBERON_0001203;muscularis mucosae of stomach;tunica muscularis gastricae -http://purl.obolibrary.org/obo/UBERON_0001204;mucosa of small intestine;mucosa of organ of small bowel -http://purl.obolibrary.org/obo/UBERON_0001204;mucosa of small intestine;mucosa of organ of small intestine -http://purl.obolibrary.org/obo/UBERON_0001204;mucosa of small intestine;mucosa of small bowel -http://purl.obolibrary.org/obo/UBERON_0001204;mucosa of small intestine;mucous membrane of small bowel -http://purl.obolibrary.org/obo/UBERON_0001204;mucosa of small intestine;mucous membrane of small intestine -http://purl.obolibrary.org/obo/UBERON_0001204;mucosa of small intestine;organ mucosa of small bowel -http://purl.obolibrary.org/obo/UBERON_0001204;mucosa of small intestine;organ mucosa of small intestine -http://purl.obolibrary.org/obo/UBERON_0001204;mucosa of small intestine;small bowel mucosa -http://purl.obolibrary.org/obo/UBERON_0001204;mucosa of small intestine;small bowel mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0001204;mucosa of small intestine;small bowel mucous membrane -http://purl.obolibrary.org/obo/UBERON_0001204;mucosa of small intestine;small bowel organ mucosa -http://purl.obolibrary.org/obo/UBERON_0001204;mucosa of small intestine;small intestinal mucosa -http://purl.obolibrary.org/obo/UBERON_0001204;mucosa of small intestine;small intestine mucosa -http://purl.obolibrary.org/obo/UBERON_0001204;mucosa of small intestine;small intestine mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0001204;mucosa of small intestine;small intestine mucous membrane -http://purl.obolibrary.org/obo/UBERON_0001204;mucosa of small intestine;small intestine organ mucosa -http://purl.obolibrary.org/obo/UBERON_0001204;mucosa of small intestine;tunica mucosa (intestinum tenue) -http://purl.obolibrary.org/obo/UBERON_0001204;mucosa of small intestine;tunica mucosa intestini tenuis -http://purl.obolibrary.org/obo/UBERON_0001205;submucosa of small intestine;small bowel submucosa -http://purl.obolibrary.org/obo/UBERON_0001205;submucosa of small intestine;small intestinal submucosa -http://purl.obolibrary.org/obo/UBERON_0001205;submucosa of small intestine;small intestine submucosa -http://purl.obolibrary.org/obo/UBERON_0001205;submucosa of small intestine;submucosa of small bowel -http://purl.obolibrary.org/obo/UBERON_0001205;submucosa of small intestine;tela submucosa (intestinum tenue) -http://purl.obolibrary.org/obo/UBERON_0001205;submucosa of small intestine;tela submucosa intestini tenuis -http://purl.obolibrary.org/obo/UBERON_0001206;serosa of small intestine;serosa of small bowel -http://purl.obolibrary.org/obo/UBERON_0001206;serosa of small intestine;serous coat of small intestine -http://purl.obolibrary.org/obo/UBERON_0001206;serosa of small intestine;serous membrane of small bowel -http://purl.obolibrary.org/obo/UBERON_0001206;serosa of small intestine;serous membrane of small intestine -http://purl.obolibrary.org/obo/UBERON_0001206;serosa of small intestine;small bowel serosa -http://purl.obolibrary.org/obo/UBERON_0001206;serosa of small intestine;small bowel serous membrane -http://purl.obolibrary.org/obo/UBERON_0001206;serosa of small intestine;small intestinal serosa -http://purl.obolibrary.org/obo/UBERON_0001206;serosa of small intestine;small intestine serosa -http://purl.obolibrary.org/obo/UBERON_0001206;serosa of small intestine;small intestine serous membrane -http://purl.obolibrary.org/obo/UBERON_0001206;serosa of small intestine;tunica serosa (intestinum tenue) -http://purl.obolibrary.org/obo/UBERON_0001206;serosa of small intestine;tunica serosa intestini tenuis -http://purl.obolibrary.org/obo/UBERON_0001206;serosa of small intestine;visceral peritoneum of small intestine -http://purl.obolibrary.org/obo/UBERON_0001207;mucosa of large intestine;large intestinal mucosa -http://purl.obolibrary.org/obo/UBERON_0001207;mucosa of large intestine;large intestine mucosa -http://purl.obolibrary.org/obo/UBERON_0001207;mucosa of large intestine;large intestine mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0001207;mucosa of large intestine;large intestine mucous membrane -http://purl.obolibrary.org/obo/UBERON_0001207;mucosa of large intestine;large intestine organ mucosa -http://purl.obolibrary.org/obo/UBERON_0001207;mucosa of large intestine;mucosa of organ of large intestine -http://purl.obolibrary.org/obo/UBERON_0001207;mucosa of large intestine;mucous membrane of large intestine -http://purl.obolibrary.org/obo/UBERON_0001207;mucosa of large intestine;organ mucosa of large intestine -http://purl.obolibrary.org/obo/UBERON_0001207;mucosa of large intestine;tunica mucosa intestini crassi -http://purl.obolibrary.org/obo/UBERON_0001208;submucosa of large intestine;large intestinal submucosa -http://purl.obolibrary.org/obo/UBERON_0001208;submucosa of large intestine;large intestine submucosa -http://purl.obolibrary.org/obo/UBERON_0001208;submucosa of large intestine;tela submucosa intestini crassi -http://purl.obolibrary.org/obo/UBERON_0001209;serosa of large intestine;large intestinal serosa -http://purl.obolibrary.org/obo/UBERON_0001209;serosa of large intestine;large intestine serosa -http://purl.obolibrary.org/obo/UBERON_0001209;serosa of large intestine;large intestine serous membrane -http://purl.obolibrary.org/obo/UBERON_0001209;serosa of large intestine;serous coat of large intestine -http://purl.obolibrary.org/obo/UBERON_0001209;serosa of large intestine;serous membrane of large intestine -http://purl.obolibrary.org/obo/UBERON_0001209;serosa of large intestine;tunica serosa intestini crassi -http://purl.obolibrary.org/obo/UBERON_0001209;serosa of large intestine;visceral peritoneum of large intestine -http://purl.obolibrary.org/obo/UBERON_0001210;muscularis mucosae of small intestine;lamina muscularis mucosae (tunica mucosa)(intestinum tenue) -http://purl.obolibrary.org/obo/UBERON_0001210;muscularis mucosae of small intestine;lamina muscularis mucosae intestini tenuis -http://purl.obolibrary.org/obo/UBERON_0001210;muscularis mucosae of small intestine;lamina muscularis of small intestine mucous membrane -http://purl.obolibrary.org/obo/UBERON_0001210;muscularis mucosae of small intestine;small intestine muscularis mucosa -http://purl.obolibrary.org/obo/UBERON_0001211;Peyer's patch;Peyers gland -http://purl.obolibrary.org/obo/UBERON_0001211;Peyer's patch;Peyers patch -http://purl.obolibrary.org/obo/UBERON_0001211;Peyer's patch;aggregated lymphoid follicle of intestine -http://purl.obolibrary.org/obo/UBERON_0001211;Peyer's patch;aggregated lymphoid nodule -http://purl.obolibrary.org/obo/UBERON_0001211;Peyer's patch;noduli lymphoidei aggregati -http://purl.obolibrary.org/obo/UBERON_0001212;duodenal gland;Brunner's gland -http://purl.obolibrary.org/obo/UBERON_0001212;duodenal gland;gland of Brunner -http://purl.obolibrary.org/obo/UBERON_0001212;duodenal gland;submucosal gland of duodenum -http://purl.obolibrary.org/obo/UBERON_0001213;intestinal villus;enteric villi -http://purl.obolibrary.org/obo/UBERON_0001213;intestinal villus;enteric villous -http://purl.obolibrary.org/obo/UBERON_0001213;intestinal villus;enteric villus -http://purl.obolibrary.org/obo/UBERON_0001213;intestinal villus;intestinal villi -http://purl.obolibrary.org/obo/UBERON_0001213;intestinal villus;intestinal villus layer -http://purl.obolibrary.org/obo/UBERON_0001213;intestinal villus;small intestine villus -http://purl.obolibrary.org/obo/UBERON_0001213;intestinal villus;villi intestinales -http://purl.obolibrary.org/obo/UBERON_0001213;intestinal villus;villus -http://purl.obolibrary.org/obo/UBERON_0001213;intestinal villus;villus intestinalis (intestinum tenue) -http://purl.obolibrary.org/obo/UBERON_0001214;pancreatic tributary of splenic vein;pancreatic vein -http://purl.obolibrary.org/obo/UBERON_0001215;inferior mesenteric vein; -http://purl.obolibrary.org/obo/UBERON_0001216;jejunal vein; -http://purl.obolibrary.org/obo/UBERON_0001217;ileal vein; -http://purl.obolibrary.org/obo/UBERON_0001218;middle colic vein;vena colica media (intermedia) -http://purl.obolibrary.org/obo/UBERON_0001219;ileocolic vein; -http://purl.obolibrary.org/obo/UBERON_0001220;quadratus lumborum;muscle of posterior abdominal wall -http://purl.obolibrary.org/obo/UBERON_0001221;transversus abdominis muscle;musculus transversus abdominis -http://purl.obolibrary.org/obo/UBERON_0001221;transversus abdominis muscle;transverse abdominal -http://purl.obolibrary.org/obo/UBERON_0001221;transversus abdominis muscle;transversis abdominus -http://purl.obolibrary.org/obo/UBERON_0001221;transversus abdominis muscle;transversus abdominis -http://purl.obolibrary.org/obo/UBERON_0001222;right ureter; -http://purl.obolibrary.org/obo/UBERON_0001223;left ureter; -http://purl.obolibrary.org/obo/UBERON_0001224;renal pelvis;kidney pelvis -http://purl.obolibrary.org/obo/UBERON_0001224;renal pelvis;pelvis of ureter -http://purl.obolibrary.org/obo/UBERON_0001225;cortex of kidney;cortex renalis -http://purl.obolibrary.org/obo/UBERON_0001225;cortex of kidney;kidney cortex -http://purl.obolibrary.org/obo/UBERON_0001225;cortex of kidney;renal cortex -http://purl.obolibrary.org/obo/UBERON_0001226;major calyx;calices renales majores -http://purl.obolibrary.org/obo/UBERON_0001226;major calyx;major calix -http://purl.obolibrary.org/obo/UBERON_0001227;minor calyx;calices renales minores -http://purl.obolibrary.org/obo/UBERON_0001227;minor calyx;minor calix -http://purl.obolibrary.org/obo/UBERON_0001228;renal papilla;kidney papilla -http://purl.obolibrary.org/obo/UBERON_0001229;renal corpuscle;Malphigian corpuscle -http://purl.obolibrary.org/obo/UBERON_0001229;renal corpuscle;Malpighian corpuscle -http://purl.obolibrary.org/obo/UBERON_0001229;renal corpuscle;corpusculum renale -http://purl.obolibrary.org/obo/UBERON_0001230;glomerular capsule;Bowman's capsule -http://purl.obolibrary.org/obo/UBERON_0001230;glomerular capsule;Bowmans capsule -http://purl.obolibrary.org/obo/UBERON_0001230;glomerular capsule;capsula glomerularis -http://purl.obolibrary.org/obo/UBERON_0001230;glomerular capsule;renal glomerular capsule -http://purl.obolibrary.org/obo/UBERON_0001231;nephron tubule;kidney tubule -http://purl.obolibrary.org/obo/UBERON_0001231;nephron tubule;tubulus renalis -http://purl.obolibrary.org/obo/UBERON_0001232;collecting duct of renal tubule;collecting duct -http://purl.obolibrary.org/obo/UBERON_0001232;collecting duct of renal tubule;kidney collecting duct -http://purl.obolibrary.org/obo/UBERON_0001232;collecting duct of renal tubule;renal collecting tubule -http://purl.obolibrary.org/obo/UBERON_0001232;collecting duct of renal tubule;tubulus renalis arcuatus -http://purl.obolibrary.org/obo/UBERON_0001232;collecting duct of renal tubule;tubulus renalis colligens -http://purl.obolibrary.org/obo/UBERON_0001233;right adrenal gland;glandula suprarenalis dexter -http://purl.obolibrary.org/obo/UBERON_0001233;right adrenal gland;right suprarenal gland -http://purl.obolibrary.org/obo/UBERON_0001234;left adrenal gland;glandula suprarenalis sinister -http://purl.obolibrary.org/obo/UBERON_0001234;left adrenal gland;left suprarenal gland -http://purl.obolibrary.org/obo/UBERON_0001235;adrenal cortex;adrenal gland cortex -http://purl.obolibrary.org/obo/UBERON_0001235;adrenal cortex;cortex (glandula suprarenalis) -http://purl.obolibrary.org/obo/UBERON_0001235;adrenal cortex;cortex glandulae suprarenalis -http://purl.obolibrary.org/obo/UBERON_0001235;adrenal cortex;cortex of adrenal gland -http://purl.obolibrary.org/obo/UBERON_0001235;adrenal cortex;cortex of suprarenal gland -http://purl.obolibrary.org/obo/UBERON_0001235;adrenal cortex;suprarenal -http://purl.obolibrary.org/obo/UBERON_0001235;adrenal cortex;suprarenal cortex -http://purl.obolibrary.org/obo/UBERON_0001236;adrenal medulla;adrenal central medulla -http://purl.obolibrary.org/obo/UBERON_0001236;adrenal medulla;adrenal gland medulla -http://purl.obolibrary.org/obo/UBERON_0001236;adrenal medulla;chromaffin cells -http://purl.obolibrary.org/obo/UBERON_0001236;adrenal medulla;medulla (glandula suprarenalis) -http://purl.obolibrary.org/obo/UBERON_0001236;adrenal medulla;medulla glandulae suprarenalis -http://purl.obolibrary.org/obo/UBERON_0001236;adrenal medulla;medulla of adrenal gland -http://purl.obolibrary.org/obo/UBERON_0001236;adrenal medulla;medulla of glandula suprarenalis -http://purl.obolibrary.org/obo/UBERON_0001236;adrenal medulla;medulla of suprarenal gland -http://purl.obolibrary.org/obo/UBERON_0001236;adrenal medulla;suprarenal medulla -http://purl.obolibrary.org/obo/UBERON_0001237;paraaortic body;organ of Zuckerkandl -http://purl.obolibrary.org/obo/UBERON_0001237;paraaortic body;paraganglion of Zuckerkandl -http://purl.obolibrary.org/obo/UBERON_0001238;lamina propria of small intestine;lamina propria mucosa of small bowel -http://purl.obolibrary.org/obo/UBERON_0001238;lamina propria of small intestine;lamina propria mucosa of small intestine -http://purl.obolibrary.org/obo/UBERON_0001238;lamina propria of small intestine;lamina propria mucosae of small bowel -http://purl.obolibrary.org/obo/UBERON_0001238;lamina propria of small intestine;lamina propria mucosae of small intestine -http://purl.obolibrary.org/obo/UBERON_0001238;lamina propria of small intestine;lamina propria of mucosa of small intestine -http://purl.obolibrary.org/obo/UBERON_0001238;lamina propria of small intestine;lamina propria of small bowel -http://purl.obolibrary.org/obo/UBERON_0001238;lamina propria of small intestine;small bowel lamina propria -http://purl.obolibrary.org/obo/UBERON_0001238;lamina propria of small intestine;small bowel lamina propria mucosa -http://purl.obolibrary.org/obo/UBERON_0001238;lamina propria of small intestine;small bowel lamina propria mucosae -http://purl.obolibrary.org/obo/UBERON_0001238;lamina propria of small intestine;small intestine lamina propria -http://purl.obolibrary.org/obo/UBERON_0001238;lamina propria of small intestine;small intestine lamina propria mucosa -http://purl.obolibrary.org/obo/UBERON_0001238;lamina propria of small intestine;small intestine lamina propria mucosae -http://purl.obolibrary.org/obo/UBERON_0001239;muscularis mucosae of large intestine;lamina muscularis mucosae intestini crassi -http://purl.obolibrary.org/obo/UBERON_0001239;muscularis mucosae of large intestine;lamina muscularis of large intestine mucosa -http://purl.obolibrary.org/obo/UBERON_0001239;muscularis mucosae of large intestine;lamina muscularis of large intestine mucous membrane -http://purl.obolibrary.org/obo/UBERON_0001239;muscularis mucosae of large intestine;large intestine muscularis mucosa -http://purl.obolibrary.org/obo/UBERON_0001240;muscularis mucosae of intestine;intestine muscularis mucosa -http://purl.obolibrary.org/obo/UBERON_0001241;crypt of Lieberkuhn of small intestine;Lieberkühn crypt of small bowel -http://purl.obolibrary.org/obo/UBERON_0001241;crypt of Lieberkuhn of small intestine;Lieberkühn crypt of small intestine -http://purl.obolibrary.org/obo/UBERON_0001241;crypt of Lieberkuhn of small intestine;crypt of Lieberkuhn of small bowel -http://purl.obolibrary.org/obo/UBERON_0001241;crypt of Lieberkuhn of small intestine;crypt of Lieberkuhn of small intestine -http://purl.obolibrary.org/obo/UBERON_0001241;crypt of Lieberkuhn of small intestine;intestinal gland of small bowel -http://purl.obolibrary.org/obo/UBERON_0001241;crypt of Lieberkuhn of small intestine;intestinal gland of small intestine -http://purl.obolibrary.org/obo/UBERON_0001241;crypt of Lieberkuhn of small intestine;small bowel Lieberkühn crypt -http://purl.obolibrary.org/obo/UBERON_0001241;crypt of Lieberkuhn of small intestine;small bowel crypt of Lieberkuhn -http://purl.obolibrary.org/obo/UBERON_0001241;crypt of Lieberkuhn of small intestine;small bowel intestinal gland -http://purl.obolibrary.org/obo/UBERON_0001241;crypt of Lieberkuhn of small intestine;small intestinal crypt of Lieberkuhn -http://purl.obolibrary.org/obo/UBERON_0001241;crypt of Lieberkuhn of small intestine;small intestine Lieberkühn crypt -http://purl.obolibrary.org/obo/UBERON_0001241;crypt of Lieberkuhn of small intestine;small intestine crypt of Lieberkuhn -http://purl.obolibrary.org/obo/UBERON_0001241;crypt of Lieberkuhn of small intestine;small intestine intestinal gland -http://purl.obolibrary.org/obo/UBERON_0001242;intestinal mucosa;bowel mucosa -http://purl.obolibrary.org/obo/UBERON_0001242;intestinal mucosa;bowel mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0001242;intestinal mucosa;bowel mucous membrane -http://purl.obolibrary.org/obo/UBERON_0001242;intestinal mucosa;bowel organ mucosa -http://purl.obolibrary.org/obo/UBERON_0001242;intestinal mucosa;intestine mucosa -http://purl.obolibrary.org/obo/UBERON_0001242;intestinal mucosa;intestine mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0001242;intestinal mucosa;intestine mucous membrane -http://purl.obolibrary.org/obo/UBERON_0001242;intestinal mucosa;intestine organ mucosa -http://purl.obolibrary.org/obo/UBERON_0001242;intestinal mucosa;mucosa of bowel -http://purl.obolibrary.org/obo/UBERON_0001242;intestinal mucosa;mucosa of intestine -http://purl.obolibrary.org/obo/UBERON_0001242;intestinal mucosa;mucosa of organ of bowel -http://purl.obolibrary.org/obo/UBERON_0001242;intestinal mucosa;mucosa of organ of intestine -http://purl.obolibrary.org/obo/UBERON_0001242;intestinal mucosa;mucous membrane of bowel -http://purl.obolibrary.org/obo/UBERON_0001242;intestinal mucosa;mucous membrane of intestine -http://purl.obolibrary.org/obo/UBERON_0001242;intestinal mucosa;organ mucosa of bowel -http://purl.obolibrary.org/obo/UBERON_0001242;intestinal mucosa;organ mucosa of intestine -http://purl.obolibrary.org/obo/UBERON_0001242;intestinal mucosa;tunica mucosa intestini -http://purl.obolibrary.org/obo/UBERON_0001243;serosa of intestine;anatomical wall of bowel serosa -http://purl.obolibrary.org/obo/UBERON_0001243;serosa of intestine;anatomical wall of bowel serous membrane -http://purl.obolibrary.org/obo/UBERON_0001243;serosa of intestine;anatomical wall of intestine serosa -http://purl.obolibrary.org/obo/UBERON_0001243;serosa of intestine;anatomical wall of intestine serous membrane -http://purl.obolibrary.org/obo/UBERON_0001243;serosa of intestine;bowel anatomical wall serosa -http://purl.obolibrary.org/obo/UBERON_0001243;serosa of intestine;bowel anatomical wall serous membrane -http://purl.obolibrary.org/obo/UBERON_0001243;serosa of intestine;bowel wall serosa -http://purl.obolibrary.org/obo/UBERON_0001243;serosa of intestine;bowel wall serous membrane -http://purl.obolibrary.org/obo/UBERON_0001243;serosa of intestine;intestinal serosa -http://purl.obolibrary.org/obo/UBERON_0001243;serosa of intestine;intestinal wall serosa -http://purl.obolibrary.org/obo/UBERON_0001243;serosa of intestine;intestinal wall serous membrane -http://purl.obolibrary.org/obo/UBERON_0001243;serosa of intestine;intestine anatomical wall serosa -http://purl.obolibrary.org/obo/UBERON_0001243;serosa of intestine;intestine anatomical wall serous membrane -http://purl.obolibrary.org/obo/UBERON_0001243;serosa of intestine;intestine serosa -http://purl.obolibrary.org/obo/UBERON_0001243;serosa of intestine;intestine wall serosa -http://purl.obolibrary.org/obo/UBERON_0001243;serosa of intestine;intestine wall serous membrane -http://purl.obolibrary.org/obo/UBERON_0001243;serosa of intestine;serosa of anatomical wall of bowel -http://purl.obolibrary.org/obo/UBERON_0001243;serosa of intestine;serosa of anatomical wall of intestine -http://purl.obolibrary.org/obo/UBERON_0001243;serosa of intestine;serosa of bowel anatomical wall -http://purl.obolibrary.org/obo/UBERON_0001243;serosa of intestine;serosa of bowel wall -http://purl.obolibrary.org/obo/UBERON_0001243;serosa of intestine;serosa of intestinal wall -http://purl.obolibrary.org/obo/UBERON_0001243;serosa of intestine;serosa of intestine anatomical wall -http://purl.obolibrary.org/obo/UBERON_0001243;serosa of intestine;serosa of intestine wall -http://purl.obolibrary.org/obo/UBERON_0001243;serosa of intestine;serosa of wall of bowel -http://purl.obolibrary.org/obo/UBERON_0001243;serosa of intestine;serosa of wall of intestine -http://purl.obolibrary.org/obo/UBERON_0001243;serosa of intestine;serous membrane of anatomical wall of bowel -http://purl.obolibrary.org/obo/UBERON_0001243;serosa of intestine;serous membrane of anatomical wall of intestine -http://purl.obolibrary.org/obo/UBERON_0001243;serosa of intestine;serous membrane of bowel anatomical wall -http://purl.obolibrary.org/obo/UBERON_0001243;serosa of intestine;serous membrane of bowel wall -http://purl.obolibrary.org/obo/UBERON_0001243;serosa of intestine;serous membrane of intestinal wall -http://purl.obolibrary.org/obo/UBERON_0001243;serosa of intestine;serous membrane of intestine anatomical wall -http://purl.obolibrary.org/obo/UBERON_0001243;serosa of intestine;serous membrane of intestine wall -http://purl.obolibrary.org/obo/UBERON_0001243;serosa of intestine;serous membrane of wall of bowel -http://purl.obolibrary.org/obo/UBERON_0001243;serosa of intestine;serous membrane of wall of intestine -http://purl.obolibrary.org/obo/UBERON_0001243;serosa of intestine;visceral peritoneum of intestine -http://purl.obolibrary.org/obo/UBERON_0001243;serosa of intestine;wall of bowel serosa -http://purl.obolibrary.org/obo/UBERON_0001243;serosa of intestine;wall of bowel serous membrane -http://purl.obolibrary.org/obo/UBERON_0001243;serosa of intestine;wall of intestine serosa -http://purl.obolibrary.org/obo/UBERON_0001243;serosa of intestine;wall of intestine serous membrane -http://purl.obolibrary.org/obo/UBERON_0001244;internal anal sphincter;circular layer of anal muscularis externa -http://purl.obolibrary.org/obo/UBERON_0001244;internal anal sphincter;circular layer of muscularis externa of anal canal -http://purl.obolibrary.org/obo/UBERON_0001244;internal anal sphincter;circular layer of muscularis propria of anal canal -http://purl.obolibrary.org/obo/UBERON_0001244;internal anal sphincter;circular muscle layer of anal canal -http://purl.obolibrary.org/obo/UBERON_0001245;anus;anal opening -http://purl.obolibrary.org/obo/UBERON_0001245;anus;anal orifice -http://purl.obolibrary.org/obo/UBERON_0001245;anus;opening of terminal part of digestive tract -http://purl.obolibrary.org/obo/UBERON_0001246;interlobular bile duct;interlobular ductule -http://purl.obolibrary.org/obo/UBERON_0001247;falciform ligament;falciform ligament of liver -http://purl.obolibrary.org/obo/UBERON_0001247;falciform ligament;ligamentum falciforme (hepatis) -http://purl.obolibrary.org/obo/UBERON_0001247;falciform ligament;ligamentum falciforme hepatis -http://purl.obolibrary.org/obo/UBERON_0001248;hilum of spleen;hilum lienale -http://purl.obolibrary.org/obo/UBERON_0001248;hilum of spleen;hilum splenicum -http://purl.obolibrary.org/obo/UBERON_0001248;hilum of spleen;spleen hilum -http://purl.obolibrary.org/obo/UBERON_0001248;hilum of spleen;splenic hilum -http://purl.obolibrary.org/obo/UBERON_0001249;spleen lymphoid follicle;Malpighian body -http://purl.obolibrary.org/obo/UBERON_0001249;spleen lymphoid follicle;lymphatic follicle of spleen -http://purl.obolibrary.org/obo/UBERON_0001249;spleen lymphoid follicle;lymphoid follicle of spleen -http://purl.obolibrary.org/obo/UBERON_0001249;spleen lymphoid follicle;lymphoid nodule of spleen -http://purl.obolibrary.org/obo/UBERON_0001249;spleen lymphoid follicle;spleen B cell follicle -http://purl.obolibrary.org/obo/UBERON_0001249;spleen lymphoid follicle;spleen lymphoid follicle -http://purl.obolibrary.org/obo/UBERON_0001249;spleen lymphoid follicle;splenic B cell follicle -http://purl.obolibrary.org/obo/UBERON_0001249;spleen lymphoid follicle;splenic lymphatic follicle -http://purl.obolibrary.org/obo/UBERON_0001249;spleen lymphoid follicle;splenic lymphoid follicle -http://purl.obolibrary.org/obo/UBERON_0001250;red pulp of spleen;pulpa rubra -http://purl.obolibrary.org/obo/UBERON_0001250;red pulp of spleen;pulpa splenica -http://purl.obolibrary.org/obo/UBERON_0001250;red pulp of spleen;red pulp -http://purl.obolibrary.org/obo/UBERON_0001250;red pulp of spleen;spleen red pulp -http://purl.obolibrary.org/obo/UBERON_0001250;red pulp of spleen;splenic red pulp -http://purl.obolibrary.org/obo/UBERON_0001251;marginal zone of spleen;junctional zone of spleen -http://purl.obolibrary.org/obo/UBERON_0001251;marginal zone of spleen;spleen marginal zone -http://purl.obolibrary.org/obo/UBERON_0001252;adventitia of ureter;external adventitia of ureter -http://purl.obolibrary.org/obo/UBERON_0001252;adventitia of ureter;tunica adventitia (ureter) -http://purl.obolibrary.org/obo/UBERON_0001252;adventitia of ureter;tunica adventitia ureteris -http://purl.obolibrary.org/obo/UBERON_0001252;adventitia of ureter;ureter adventitia -http://purl.obolibrary.org/obo/UBERON_0001252;adventitia of ureter;ureteral adventitia -http://purl.obolibrary.org/obo/UBERON_0001253;lamina propria of ureter;lamina propria mucosa of ureter -http://purl.obolibrary.org/obo/UBERON_0001253;lamina propria of ureter;lamina propria mucosae of ureter -http://purl.obolibrary.org/obo/UBERON_0001253;lamina propria of ureter;ureter lamina propria -http://purl.obolibrary.org/obo/UBERON_0001253;lamina propria of ureter;ureter lamina propria mucosa -http://purl.obolibrary.org/obo/UBERON_0001253;lamina propria of ureter;ureter lamina propria mucosae -http://purl.obolibrary.org/obo/UBERON_0001254;urothelium of ureter;transitional epithelium of ureter -http://purl.obolibrary.org/obo/UBERON_0001254;urothelium of ureter;ureter transitional epithelium -http://purl.obolibrary.org/obo/UBERON_0001254;urothelium of ureter;ureter urothelium -http://purl.obolibrary.org/obo/UBERON_0001255;urinary bladder;bladder -http://purl.obolibrary.org/obo/UBERON_0001255;urinary bladder;urocyst -http://purl.obolibrary.org/obo/UBERON_0001255;urinary bladder;vesica -http://purl.obolibrary.org/obo/UBERON_0001255;urinary bladder;vesica urinaria -http://purl.obolibrary.org/obo/UBERON_0001256;wall of urinary bladder;anatomical wall of bladder -http://purl.obolibrary.org/obo/UBERON_0001256;wall of urinary bladder;anatomical wall of urinary bladder -http://purl.obolibrary.org/obo/UBERON_0001256;wall of urinary bladder;bladder anatomical wall -http://purl.obolibrary.org/obo/UBERON_0001256;wall of urinary bladder;bladder wall -http://purl.obolibrary.org/obo/UBERON_0001256;wall of urinary bladder;urinary bladder anatomical wall -http://purl.obolibrary.org/obo/UBERON_0001256;wall of urinary bladder;urinary bladder wall -http://purl.obolibrary.org/obo/UBERON_0001256;wall of urinary bladder;wall of bladder -http://purl.obolibrary.org/obo/UBERON_0001257;trigone of urinary bladder;Lieutaud's trigone -http://purl.obolibrary.org/obo/UBERON_0001257;trigone of urinary bladder;bladder trigone -http://purl.obolibrary.org/obo/UBERON_0001257;trigone of urinary bladder;deep trigone -http://purl.obolibrary.org/obo/UBERON_0001257;trigone of urinary bladder;musculus trigoni vesicae profundus -http://purl.obolibrary.org/obo/UBERON_0001257;trigone of urinary bladder;trigone of bladder -http://purl.obolibrary.org/obo/UBERON_0001257;trigone of urinary bladder;trigonum vesicae -http://purl.obolibrary.org/obo/UBERON_0001257;trigone of urinary bladder;urinary bladder trigone -http://purl.obolibrary.org/obo/UBERON_0001257;trigone of urinary bladder;vesical trigone -http://purl.obolibrary.org/obo/UBERON_0001258;neck of urinary bladder;bladder neck -http://purl.obolibrary.org/obo/UBERON_0001258;neck of urinary bladder;cervix vesicae -http://purl.obolibrary.org/obo/UBERON_0001258;neck of urinary bladder;cervix vesicae urinariae -http://purl.obolibrary.org/obo/UBERON_0001258;neck of urinary bladder;collum vesicae -http://purl.obolibrary.org/obo/UBERON_0001258;neck of urinary bladder;neck of bladder -http://purl.obolibrary.org/obo/UBERON_0001258;neck of urinary bladder;urinary bladder neck -http://purl.obolibrary.org/obo/UBERON_0001258;neck of urinary bladder;vesical neck -http://purl.obolibrary.org/obo/UBERON_0001259;mucosa of urinary bladder;bladder mucosa -http://purl.obolibrary.org/obo/UBERON_0001259;mucosa of urinary bladder;bladder mucous membrane -http://purl.obolibrary.org/obo/UBERON_0001259;mucosa of urinary bladder;bladder organ mucosa -http://purl.obolibrary.org/obo/UBERON_0001259;mucosa of urinary bladder;mucosa of bladder -http://purl.obolibrary.org/obo/UBERON_0001259;mucosa of urinary bladder;mucous membrane of bladder -http://purl.obolibrary.org/obo/UBERON_0001259;mucosa of urinary bladder;mucous membrane of urinary bladder -http://purl.obolibrary.org/obo/UBERON_0001259;mucosa of urinary bladder;tunica mucosa (vesica urinaria) -http://purl.obolibrary.org/obo/UBERON_0001259;mucosa of urinary bladder;tunica mucosa vesicae -http://purl.obolibrary.org/obo/UBERON_0001259;mucosa of urinary bladder;tunica mucosa vesicae urinariae -http://purl.obolibrary.org/obo/UBERON_0001259;mucosa of urinary bladder;urinary bladder mucosa -http://purl.obolibrary.org/obo/UBERON_0001259;mucosa of urinary bladder;urinary bladder mucous membrane -http://purl.obolibrary.org/obo/UBERON_0001260;serosa of urinary bladder;bladder serosa -http://purl.obolibrary.org/obo/UBERON_0001260;serosa of urinary bladder;bladder serous membrane -http://purl.obolibrary.org/obo/UBERON_0001260;serosa of urinary bladder;serosa of bladder -http://purl.obolibrary.org/obo/UBERON_0001260;serosa of urinary bladder;serous coat of bladder -http://purl.obolibrary.org/obo/UBERON_0001260;serosa of urinary bladder;serous coat of urinary bladder -http://purl.obolibrary.org/obo/UBERON_0001260;serosa of urinary bladder;serous membrane of bladder -http://purl.obolibrary.org/obo/UBERON_0001260;serosa of urinary bladder;serous membrane of urinary bladder -http://purl.obolibrary.org/obo/UBERON_0001260;serosa of urinary bladder;tunica serosa (vesica urinaria) -http://purl.obolibrary.org/obo/UBERON_0001260;serosa of urinary bladder;tunica serosa vesicae -http://purl.obolibrary.org/obo/UBERON_0001260;serosa of urinary bladder;urinary bladder serosa -http://purl.obolibrary.org/obo/UBERON_0001260;serosa of urinary bladder;urinary bladder serous membrane -http://purl.obolibrary.org/obo/UBERON_0001260;serosa of urinary bladder;visceral peritoneum of urinary bladder -http://purl.obolibrary.org/obo/UBERON_0001261;lamina propria of urinary bladder;bladder lamina propria -http://purl.obolibrary.org/obo/UBERON_0001261;lamina propria of urinary bladder;bladder lamina propria mucosa -http://purl.obolibrary.org/obo/UBERON_0001261;lamina propria of urinary bladder;bladder lamina propria mucosae -http://purl.obolibrary.org/obo/UBERON_0001261;lamina propria of urinary bladder;lamina propria mucosa of bladder -http://purl.obolibrary.org/obo/UBERON_0001261;lamina propria of urinary bladder;lamina propria mucosa of urinary bladder -http://purl.obolibrary.org/obo/UBERON_0001261;lamina propria of urinary bladder;lamina propria mucosae of bladder -http://purl.obolibrary.org/obo/UBERON_0001261;lamina propria of urinary bladder;lamina propria mucosae of urinary bladder -http://purl.obolibrary.org/obo/UBERON_0001261;lamina propria of urinary bladder;lamina propria of bladder -http://purl.obolibrary.org/obo/UBERON_0001261;lamina propria of urinary bladder;urinary bladder lamina propria -http://purl.obolibrary.org/obo/UBERON_0001261;lamina propria of urinary bladder;urinary bladder lamina propria mucosa -http://purl.obolibrary.org/obo/UBERON_0001261;lamina propria of urinary bladder;urinary bladder lamina propria mucosae -http://purl.obolibrary.org/obo/UBERON_0001262;wall of intestine;anatomical wall of bowel -http://purl.obolibrary.org/obo/UBERON_0001262;wall of intestine;anatomical wall of intestine -http://purl.obolibrary.org/obo/UBERON_0001262;wall of intestine;bowel anatomical wall -http://purl.obolibrary.org/obo/UBERON_0001262;wall of intestine;bowel wall -http://purl.obolibrary.org/obo/UBERON_0001262;wall of intestine;intestinal wall -http://purl.obolibrary.org/obo/UBERON_0001262;wall of intestine;intestine anatomical wall -http://purl.obolibrary.org/obo/UBERON_0001262;wall of intestine;intestine wall -http://purl.obolibrary.org/obo/UBERON_0001262;wall of intestine;wall of bowel -http://purl.obolibrary.org/obo/UBERON_0001263;pancreatic acinus;acinus pancreaticus -http://purl.obolibrary.org/obo/UBERON_0001263;pancreatic acinus;pancreas acinus -http://purl.obolibrary.org/obo/UBERON_0001263;pancreatic acinus;pancreatic acinar -http://purl.obolibrary.org/obo/UBERON_0001263;pancreatic acinus;pancreatic acini -http://purl.obolibrary.org/obo/UBERON_0001264;pancreas; -http://purl.obolibrary.org/obo/UBERON_0001265;trabecula of spleen;spleen trabeculum -http://purl.obolibrary.org/obo/UBERON_0001265;trabecula of spleen;splenic trabecula -http://purl.obolibrary.org/obo/UBERON_0001265;trabecula of spleen;trabeculae of spleen -http://purl.obolibrary.org/obo/UBERON_0001266;splenic cord;cord of Billroth -http://purl.obolibrary.org/obo/UBERON_0001266;splenic cord;cord of Bilroth -http://purl.obolibrary.org/obo/UBERON_0001267;femoral nerve;anterior crural nerve -http://purl.obolibrary.org/obo/UBERON_0001268;peritoneal fluid; -http://purl.obolibrary.org/obo/UBERON_0001269;acetabular part of hip bone;acetabular region -http://purl.obolibrary.org/obo/UBERON_0001269;acetabular part of hip bone;acetabulum -http://purl.obolibrary.org/obo/UBERON_0001270;bony pelvis;pelvis ossea -http://purl.obolibrary.org/obo/UBERON_0001270;bony pelvis;skeletal system of pelvis -http://purl.obolibrary.org/obo/UBERON_0001271;pelvic girdle region; -http://purl.obolibrary.org/obo/UBERON_0001272;innominate bone;coxal bone -http://purl.obolibrary.org/obo/UBERON_0001272;innominate bone;hip bone -http://purl.obolibrary.org/obo/UBERON_0001272;innominate bone;innominate bone -http://purl.obolibrary.org/obo/UBERON_0001272;innominate bone;os coxa -http://purl.obolibrary.org/obo/UBERON_0001272;innominate bone;os coxae -http://purl.obolibrary.org/obo/UBERON_0001272;innominate bone;pelvic bone -http://purl.obolibrary.org/obo/UBERON_0001273;ilium;iliac bone -http://purl.obolibrary.org/obo/UBERON_0001273;ilium;ilium bone -http://purl.obolibrary.org/obo/UBERON_0001273;ilium;os iliacum -http://purl.obolibrary.org/obo/UBERON_0001273;ilium;os ilii -http://purl.obolibrary.org/obo/UBERON_0001273;ilium;os ilium -http://purl.obolibrary.org/obo/UBERON_0001274;ischium;ischial bone -http://purl.obolibrary.org/obo/UBERON_0001274;ischium;ischium bone -http://purl.obolibrary.org/obo/UBERON_0001275;pubis; -http://purl.obolibrary.org/obo/UBERON_0001276;epithelium of stomach;epithelial tissue of stomach -http://purl.obolibrary.org/obo/UBERON_0001276;epithelium of stomach;epithelial tissue of ventriculus -http://purl.obolibrary.org/obo/UBERON_0001276;epithelium of stomach;epithelium of ventriculus -http://purl.obolibrary.org/obo/UBERON_0001276;epithelium of stomach;stomach epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0001276;epithelium of stomach;stomach epithelium -http://purl.obolibrary.org/obo/UBERON_0001276;epithelium of stomach;ventriculus epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0001276;epithelium of stomach;ventriculus epithelium -http://purl.obolibrary.org/obo/UBERON_0001277;intestinal epithelium;bowel epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0001277;intestinal epithelium;bowel epithelium -http://purl.obolibrary.org/obo/UBERON_0001277;intestinal epithelium;epithelial tissue of bowel -http://purl.obolibrary.org/obo/UBERON_0001277;intestinal epithelium;epithelial tissue of intestine -http://purl.obolibrary.org/obo/UBERON_0001277;intestinal epithelium;epithelium of bowel -http://purl.obolibrary.org/obo/UBERON_0001277;intestinal epithelium;epithelium of intestine -http://purl.obolibrary.org/obo/UBERON_0001277;intestinal epithelium;intestine epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0001277;intestinal epithelium;intestine epithelium -http://purl.obolibrary.org/obo/UBERON_0001277;intestinal epithelium;villous epithelium -http://purl.obolibrary.org/obo/UBERON_0001278;epithelium of large intestine;epithelial tissue of large intestine -http://purl.obolibrary.org/obo/UBERON_0001278;epithelium of large intestine;large intestinal epithelium -http://purl.obolibrary.org/obo/UBERON_0001278;epithelium of large intestine;large intestine epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0001278;epithelium of large intestine;large intestine epithelium -http://purl.obolibrary.org/obo/UBERON_0001279;portal triad;trias hepatica -http://purl.obolibrary.org/obo/UBERON_0001280;liver parenchyma;hepatic parenchyma -http://purl.obolibrary.org/obo/UBERON_0001280;liver parenchyma;hepatic parenchyme -http://purl.obolibrary.org/obo/UBERON_0001280;liver parenchyma;liver parenchyme -http://purl.obolibrary.org/obo/UBERON_0001280;liver parenchyma;parenchyma of liver -http://purl.obolibrary.org/obo/UBERON_0001281;hepatic sinusoid;liver hepatic sinusoids -http://purl.obolibrary.org/obo/UBERON_0001281;hepatic sinusoid;liver sinusoid -http://purl.obolibrary.org/obo/UBERON_0001281;hepatic sinusoid;liver sinusoidal blood vessel -http://purl.obolibrary.org/obo/UBERON_0001281;hepatic sinusoid;sinusoid of liver -http://purl.obolibrary.org/obo/UBERON_0001281;hepatic sinusoid;sinusoidal blood vessel of liver -http://purl.obolibrary.org/obo/UBERON_0001281;hepatic sinusoid;vas capillare sinusoideum -http://purl.obolibrary.org/obo/UBERON_0001281;hepatic sinusoid;vas sinusoideum -http://purl.obolibrary.org/obo/UBERON_0001282;intralobular bile duct;canal of Herring -http://purl.obolibrary.org/obo/UBERON_0001282;intralobular bile duct;cholangiole -http://purl.obolibrary.org/obo/UBERON_0001282;intralobular bile duct;ductus interlobularis bilifer -http://purl.obolibrary.org/obo/UBERON_0001283;bile canaliculus; -http://purl.obolibrary.org/obo/UBERON_0001284;renal column;column of Bertini -http://purl.obolibrary.org/obo/UBERON_0001284;renal column;columna Bertini -http://purl.obolibrary.org/obo/UBERON_0001284;renal column;kidney column -http://purl.obolibrary.org/obo/UBERON_0001284;renal column;renal column of Bertini -http://purl.obolibrary.org/obo/UBERON_0001284;renal column;renal cortical column -http://purl.obolibrary.org/obo/UBERON_0001285;nephron; -http://purl.obolibrary.org/obo/UBERON_0001286;Bowman's space;Bowman's space -http://purl.obolibrary.org/obo/UBERON_0001286;Bowman's space;capsular space -http://purl.obolibrary.org/obo/UBERON_0001286;Bowman's space;glomerular capsule space -http://purl.obolibrary.org/obo/UBERON_0001286;Bowman's space;glomerular urinary space -http://purl.obolibrary.org/obo/UBERON_0001286;Bowman's space;inter-glomerular space -http://purl.obolibrary.org/obo/UBERON_0001286;Bowman's space;pronephric capsular space -http://purl.obolibrary.org/obo/UBERON_0001286;Bowman's space;renal capsular space -http://purl.obolibrary.org/obo/UBERON_0001286;Bowman's space;urinary space -http://purl.obolibrary.org/obo/UBERON_0001286;Bowman's space;urinary space of renal corpuscle -http://purl.obolibrary.org/obo/UBERON_0001287;proximal convoluted tubule;proximal convoluted renal tubule -http://purl.obolibrary.org/obo/UBERON_0001287;proximal convoluted tubule;tubulus contortus proximalis -http://purl.obolibrary.org/obo/UBERON_0001288;loop of Henle;Henle loop -http://purl.obolibrary.org/obo/UBERON_0001288;loop of Henle;Henle's loop -http://purl.obolibrary.org/obo/UBERON_0001288;loop of Henle;ansa nephroni -http://purl.obolibrary.org/obo/UBERON_0001289;descending limb of loop of Henle;descending limb of Henle's loop -http://purl.obolibrary.org/obo/UBERON_0001289;descending limb of loop of Henle;loop of Henle descending limb -http://purl.obolibrary.org/obo/UBERON_0001290;proximal straight tubule;S3 -http://purl.obolibrary.org/obo/UBERON_0001290;proximal straight tubule;thick descending limb of proximal tubule -http://purl.obolibrary.org/obo/UBERON_0001290;proximal straight tubule;tubulus rectus proximalis -http://purl.obolibrary.org/obo/UBERON_0001291;thick ascending limb of loop of Henle;ascending thick limb -http://purl.obolibrary.org/obo/UBERON_0001291;thick ascending limb of loop of Henle;distal straight tubule -http://purl.obolibrary.org/obo/UBERON_0001291;thick ascending limb of loop of Henle;loop of Henle ascending limb thick segment -http://purl.obolibrary.org/obo/UBERON_0001291;thick ascending limb of loop of Henle;straight portion of distal convoluted renal tubule -http://purl.obolibrary.org/obo/UBERON_0001291;thick ascending limb of loop of Henle;straight portion of distal convoluted tubule -http://purl.obolibrary.org/obo/UBERON_0001291;thick ascending limb of loop of Henle;thick ascending limb -http://purl.obolibrary.org/obo/UBERON_0001291;thick ascending limb of loop of Henle;thick ascending limb of Henle's loop -http://purl.obolibrary.org/obo/UBERON_0001291;thick ascending limb of loop of Henle;thick ascending limb of distal tubule -http://purl.obolibrary.org/obo/UBERON_0001291;thick ascending limb of loop of Henle;tubulus rectus distalis -http://purl.obolibrary.org/obo/UBERON_0001292;distal convoluted tubule;distal convoluted renal tubule -http://purl.obolibrary.org/obo/UBERON_0001292;distal convoluted tubule;tubulus contortus distalis -http://purl.obolibrary.org/obo/UBERON_0001293;outer medulla of kidney;outer renal medulla -http://purl.obolibrary.org/obo/UBERON_0001293;outer medulla of kidney;outer zone of medulla of kidney -http://purl.obolibrary.org/obo/UBERON_0001293;outer medulla of kidney;outer zone of renal medulla -http://purl.obolibrary.org/obo/UBERON_0001293;outer medulla of kidney;renal outer medulla -http://purl.obolibrary.org/obo/UBERON_0001293;outer medulla of kidney;zona externa (medullaris renalis) -http://purl.obolibrary.org/obo/UBERON_0001293;outer medulla of kidney;zona externa medullae renalis -http://purl.obolibrary.org/obo/UBERON_0001294;inner medulla of kidney;inner renal medulla -http://purl.obolibrary.org/obo/UBERON_0001294;inner medulla of kidney;inner zone of medulla of kidney -http://purl.obolibrary.org/obo/UBERON_0001294;inner medulla of kidney;inner zone of renal medulla -http://purl.obolibrary.org/obo/UBERON_0001294;inner medulla of kidney;renal inner medulla -http://purl.obolibrary.org/obo/UBERON_0001294;inner medulla of kidney;set of inner region of renal pyramids -http://purl.obolibrary.org/obo/UBERON_0001294;inner medulla of kidney;zona interna (medullaris renalis) -http://purl.obolibrary.org/obo/UBERON_0001294;inner medulla of kidney;zona interna medullae renalis -http://purl.obolibrary.org/obo/UBERON_0001295;endometrium;tunica mucosa (endometrium) -http://purl.obolibrary.org/obo/UBERON_0001295;endometrium;tunica mucosa uteri -http://purl.obolibrary.org/obo/UBERON_0001295;endometrium;uterine endometrium -http://purl.obolibrary.org/obo/UBERON_0001296;myometrium;tunica muscularis (myometrium) -http://purl.obolibrary.org/obo/UBERON_0001297;serosa of uterus;perimetrium -http://purl.obolibrary.org/obo/UBERON_0001297;serosa of uterus;serous coat of uterus -http://purl.obolibrary.org/obo/UBERON_0001297;serosa of uterus;serous membrane of uterus -http://purl.obolibrary.org/obo/UBERON_0001297;serosa of uterus;tunica serosa (perimetrium) -http://purl.obolibrary.org/obo/UBERON_0001297;serosa of uterus;tunica serosa uteri -http://purl.obolibrary.org/obo/UBERON_0001297;serosa of uterus;uterine serosa -http://purl.obolibrary.org/obo/UBERON_0001297;serosa of uterus;uterus serosa -http://purl.obolibrary.org/obo/UBERON_0001297;serosa of uterus;uterus serous membrane -http://purl.obolibrary.org/obo/UBERON_0001297;serosa of uterus;visceral peritoneum of uterus -http://purl.obolibrary.org/obo/UBERON_0001298;psoas major muscle;psoas major -http://purl.obolibrary.org/obo/UBERON_0001299;glans penis; -http://purl.obolibrary.org/obo/UBERON_0001300;scrotum; -http://purl.obolibrary.org/obo/UBERON_0001301;epididymis; -http://purl.obolibrary.org/obo/UBERON_0001302;right uterine tube;right fallopian tube -http://purl.obolibrary.org/obo/UBERON_0001302;right uterine tube;right oviduct -http://purl.obolibrary.org/obo/UBERON_0001303;left uterine tube;left fallopian tube -http://purl.obolibrary.org/obo/UBERON_0001303;left uterine tube;left oviduct -http://purl.obolibrary.org/obo/UBERON_0001304;germinal epithelium of ovary;epithelium superficiale (ovarium) -http://purl.obolibrary.org/obo/UBERON_0001304;germinal epithelium of ovary;germinal epithelium (female) -http://purl.obolibrary.org/obo/UBERON_0001304;germinal epithelium of ovary;ovarian surface epithelium -http://purl.obolibrary.org/obo/UBERON_0001304;germinal epithelium of ovary;ovary germinal epithelium -http://purl.obolibrary.org/obo/UBERON_0001304;germinal epithelium of ovary;surface epithelium of ovary -http://purl.obolibrary.org/obo/UBERON_0001305;ovarian follicle;follicle of ovary -http://purl.obolibrary.org/obo/UBERON_0001305;ovarian follicle;follicle of ovary viewed macroscopically -http://purl.obolibrary.org/obo/UBERON_0001305;ovarian follicle;ovary follicle -http://purl.obolibrary.org/obo/UBERON_0001306;cumulus oophorus;cumulus ovaricus -http://purl.obolibrary.org/obo/UBERON_0001306;cumulus oophorus;discus proligerus -http://purl.obolibrary.org/obo/UBERON_0001306;cumulus oophorus;ovarian cumulus -http://purl.obolibrary.org/obo/UBERON_0001307;capsule of ovary;ovarian capsule -http://purl.obolibrary.org/obo/UBERON_0001307;capsule of ovary;ovary capsule -http://purl.obolibrary.org/obo/UBERON_0001308;external iliac artery; -http://purl.obolibrary.org/obo/UBERON_0001309;internal iliac artery; -http://purl.obolibrary.org/obo/UBERON_0001310;umbilical artery; -http://purl.obolibrary.org/obo/UBERON_0001311;inferior vesical artery;arteria vesicali inferior -http://purl.obolibrary.org/obo/UBERON_0001311;inferior vesical artery;arteria vesicalis inferior -http://purl.obolibrary.org/obo/UBERON_0001312;superior vesical artery;arteria vesicali superior -http://purl.obolibrary.org/obo/UBERON_0001312;superior vesical artery;arteria vesicalis superior -http://purl.obolibrary.org/obo/UBERON_0001313;iliolumbar artery;ilio-lumbar artery -http://purl.obolibrary.org/obo/UBERON_0001314;obturator artery; -http://purl.obolibrary.org/obo/UBERON_0001315;superior gluteal artery;arteria glutealis superior -http://purl.obolibrary.org/obo/UBERON_0001316;external iliac vein; -http://purl.obolibrary.org/obo/UBERON_0001317;internal iliac vein; -http://purl.obolibrary.org/obo/UBERON_0001318;inferior vesical vein; -http://purl.obolibrary.org/obo/UBERON_0001319;vaginal vein;vagina vein -http://purl.obolibrary.org/obo/UBERON_0001319;vaginal vein;vein of vagina -http://purl.obolibrary.org/obo/UBERON_0001320;iliolumbar vein;ilio-lumbar vein -http://purl.obolibrary.org/obo/UBERON_0001321;obturator vein; -http://purl.obolibrary.org/obo/UBERON_0001322;sciatic nerve; -http://purl.obolibrary.org/obo/UBERON_0001323;tibial nerve;medial popliteal nerve -http://purl.obolibrary.org/obo/UBERON_0001324;common fibular nerve;common peroneal nerve -http://purl.obolibrary.org/obo/UBERON_0001324;common fibular nerve;extrernal peroneal nerve -http://purl.obolibrary.org/obo/UBERON_0001324;common fibular nerve;lateral popliteal nerve -http://purl.obolibrary.org/obo/UBERON_0001324;common fibular nerve;nervus peroneus communis -http://purl.obolibrary.org/obo/UBERON_0001325;muscle of pelvis;muscle organ of pelvis -http://purl.obolibrary.org/obo/UBERON_0001325;muscle of pelvis;pelvic muscle -http://purl.obolibrary.org/obo/UBERON_0001325;muscle of pelvis;pelvis muscle -http://purl.obolibrary.org/obo/UBERON_0001325;muscle of pelvis;pelvis muscle organ -http://purl.obolibrary.org/obo/UBERON_0001326;levator ani muscle;levator ani -http://purl.obolibrary.org/obo/UBERON_0001326;levator ani muscle;musculus levator ani -http://purl.obolibrary.org/obo/UBERON_0001327;coccygeus muscle;coccygeus -http://purl.obolibrary.org/obo/UBERON_0001327;coccygeus muscle;ischiococcygeus -http://purl.obolibrary.org/obo/UBERON_0001327;coccygeus muscle;musculus ischiococcygeus -http://purl.obolibrary.org/obo/UBERON_0001328;lobe of prostate;lobe of prostate gland -http://purl.obolibrary.org/obo/UBERON_0001328;lobe of prostate;prostate gland lobe -http://purl.obolibrary.org/obo/UBERON_0001328;lobe of prostate;prostatic lobe -http://purl.obolibrary.org/obo/UBERON_0001329;prostate gland anterior lobe;anterior lobe of prostate -http://purl.obolibrary.org/obo/UBERON_0001329;prostate gland anterior lobe;anterior lobe of prostate gland -http://purl.obolibrary.org/obo/UBERON_0001329;prostate gland anterior lobe;anterior prostate gland -http://purl.obolibrary.org/obo/UBERON_0001329;prostate gland anterior lobe;commissura prostatae -http://purl.obolibrary.org/obo/UBERON_0001329;prostate gland anterior lobe;commissure of prostate -http://purl.obolibrary.org/obo/UBERON_0001329;prostate gland anterior lobe;isthmus of prostate -http://purl.obolibrary.org/obo/UBERON_0001329;prostate gland anterior lobe;isthmus of prostate gland -http://purl.obolibrary.org/obo/UBERON_0001329;prostate gland anterior lobe;isthmus prostatae -http://purl.obolibrary.org/obo/UBERON_0001329;prostate gland anterior lobe;prostate gland anterior lobe -http://purl.obolibrary.org/obo/UBERON_0001329;prostate gland anterior lobe;prostatic isthmus -http://purl.obolibrary.org/obo/UBERON_0001330;pampiniform plexus;pampiniform venous plexus -http://purl.obolibrary.org/obo/UBERON_0001330;pampiniform plexus;plexus of veins of fascia of prostate -http://purl.obolibrary.org/obo/UBERON_0001330;pampiniform plexus;plexus venosus pampiniformis -http://purl.obolibrary.org/obo/UBERON_0001330;pampiniform plexus;venous plexus of fascia of prostate -http://purl.obolibrary.org/obo/UBERON_0001330;pampiniform plexus;venous plexus of fascia of prostate gland -http://purl.obolibrary.org/obo/UBERON_0001331;skin of penis;penile skin -http://purl.obolibrary.org/obo/UBERON_0001331;skin of penis;penis skin -http://purl.obolibrary.org/obo/UBERON_0001331;skin of penis;penis zone of skin -http://purl.obolibrary.org/obo/UBERON_0001331;skin of penis;zone of skin of penis -http://purl.obolibrary.org/obo/UBERON_0001332;prepuce of penis;penile prepuce -http://purl.obolibrary.org/obo/UBERON_0001332;prepuce of penis;prepuce of male -http://purl.obolibrary.org/obo/UBERON_0001332;prepuce of penis;preputium penis -http://purl.obolibrary.org/obo/UBERON_0001333;male urethra; -http://purl.obolibrary.org/obo/UBERON_0001334;female urethra; -http://purl.obolibrary.org/obo/UBERON_0001335;prostatic urethra;male prostatic urethra -http://purl.obolibrary.org/obo/UBERON_0001335;prostatic urethra;pars prostatica urethrae -http://purl.obolibrary.org/obo/UBERON_0001335;prostatic urethra;prostatic part of male urethra -http://purl.obolibrary.org/obo/UBERON_0001335;prostatic urethra;prostatic part of urethra -http://purl.obolibrary.org/obo/UBERON_0001336;membranous urethra of male or female;intermediate part of urethra -http://purl.obolibrary.org/obo/UBERON_0001336;membranous urethra of male or female;intermediate urethra -http://purl.obolibrary.org/obo/UBERON_0001336;membranous urethra of male or female;membranous part of urethra -http://purl.obolibrary.org/obo/UBERON_0001336;membranous urethra of male or female;membranous urethra -http://purl.obolibrary.org/obo/UBERON_0001336;membranous urethra of male or female;pars intermedia urethrae -http://purl.obolibrary.org/obo/UBERON_0001336;membranous urethra of male or female;pars membranacea (urethrae) -http://purl.obolibrary.org/obo/UBERON_0001337;spongiose part of urethra;cavernous portion of male urethra -http://purl.obolibrary.org/obo/UBERON_0001337;spongiose part of urethra;male spongiose urethra -http://purl.obolibrary.org/obo/UBERON_0001337;spongiose part of urethra;male spongy urethra -http://purl.obolibrary.org/obo/UBERON_0001337;spongiose part of urethra;pars cavernosa urethrae -http://purl.obolibrary.org/obo/UBERON_0001337;spongiose part of urethra;pars spongiosa -http://purl.obolibrary.org/obo/UBERON_0001337;spongiose part of urethra;pars spongiosa (urethra masculina) -http://purl.obolibrary.org/obo/UBERON_0001337;spongiose part of urethra;pars spongiosa urethrae masculinae -http://purl.obolibrary.org/obo/UBERON_0001337;spongiose part of urethra;penile urethra -http://purl.obolibrary.org/obo/UBERON_0001337;spongiose part of urethra;spongiose urethra -http://purl.obolibrary.org/obo/UBERON_0001337;spongiose part of urethra;spongy urethra (male) -http://purl.obolibrary.org/obo/UBERON_0001338;urethral gland;gland of urethra -http://purl.obolibrary.org/obo/UBERON_0001338;urethral gland;urethra gland -http://purl.obolibrary.org/obo/UBERON_0001338;urethral gland;urethra gland (male or female) -http://purl.obolibrary.org/obo/UBERON_0001338;urethral gland;urethral mucuous gland -http://purl.obolibrary.org/obo/UBERON_0001339;ischiocavernosus muscle;musculus ishiocavernosus -http://purl.obolibrary.org/obo/UBERON_0001340;dorsal artery of penis;arteria dorsalis penis -http://purl.obolibrary.org/obo/UBERON_0001340;dorsal artery of penis;dorsal penile artery -http://purl.obolibrary.org/obo/UBERON_0001340;dorsal artery of penis;dorsal penis artery -http://purl.obolibrary.org/obo/UBERON_0001341;lesser sac;bursa omentalis -http://purl.obolibrary.org/obo/UBERON_0001341;lesser sac;omental bursa -http://purl.obolibrary.org/obo/UBERON_0001342;mesovarium; -http://purl.obolibrary.org/obo/UBERON_0001343;seminiferous tubule of testis;seminiferous cord -http://purl.obolibrary.org/obo/UBERON_0001343;seminiferous tubule of testis;seminiferous tubule -http://purl.obolibrary.org/obo/UBERON_0001343;seminiferous tubule of testis;testis - seminiferous tubule -http://purl.obolibrary.org/obo/UBERON_0001343;seminiferous tubule of testis;tubuli seminiferi -http://purl.obolibrary.org/obo/UBERON_0001344;epithelium of vagina;epithelial tissue of vagina -http://purl.obolibrary.org/obo/UBERON_0001344;epithelium of vagina;vagina epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0001344;epithelium of vagina;vagina epithelium -http://purl.obolibrary.org/obo/UBERON_0001344;epithelium of vagina;vaginal epithelium -http://purl.obolibrary.org/obo/UBERON_0001346;vaginal hymen;hymen of vagina -http://purl.obolibrary.org/obo/UBERON_0001346;vaginal hymen;hymen vaginae -http://purl.obolibrary.org/obo/UBERON_0001347;white adipose tissue;adipocytus unigutturalis -http://purl.obolibrary.org/obo/UBERON_0001347;white adipose tissue;textus adiposus albus -http://purl.obolibrary.org/obo/UBERON_0001347;white adipose tissue;unilocular adipose tissue -http://purl.obolibrary.org/obo/UBERON_0001347;white adipose tissue;white fat -http://purl.obolibrary.org/obo/UBERON_0001348;brown adipose tissue;BAT -http://purl.obolibrary.org/obo/UBERON_0001348;brown adipose tissue;adipocytus multigutturalis -http://purl.obolibrary.org/obo/UBERON_0001348;brown adipose tissue;brown fat -http://purl.obolibrary.org/obo/UBERON_0001348;brown adipose tissue;multilocular adipose tissue -http://purl.obolibrary.org/obo/UBERON_0001348;brown adipose tissue;textus adiposus fuscus -http://purl.obolibrary.org/obo/UBERON_0001349;externally connecting tube lumen; -http://purl.obolibrary.org/obo/UBERON_0001350;coccyx;coccygeal skeleton -http://purl.obolibrary.org/obo/UBERON_0001350;coccyx;coccygeal vertebrae I-IV -http://purl.obolibrary.org/obo/UBERON_0001350;coccyx;coccyx [coccygeal vertebrae I-IV] -http://purl.obolibrary.org/obo/UBERON_0001350;coccyx;coccyx [vertebrae coccygeae I-IV] -http://purl.obolibrary.org/obo/UBERON_0001350;coccyx;fused caudal vertebrae -http://purl.obolibrary.org/obo/UBERON_0001350;coccyx;fused caudal vertebral column -http://purl.obolibrary.org/obo/UBERON_0001350;coccyx;os coccygis -http://purl.obolibrary.org/obo/UBERON_0001351;lacrimal sac;lachrymal sac -http://purl.obolibrary.org/obo/UBERON_0001351;lacrimal sac;lacrymal sac -http://purl.obolibrary.org/obo/UBERON_0001351;lacrimal sac;saccus lacrimalis -http://purl.obolibrary.org/obo/UBERON_0001352;external acoustic meatus;auditory canal -http://purl.obolibrary.org/obo/UBERON_0001352;external acoustic meatus;ear canal -http://purl.obolibrary.org/obo/UBERON_0001352;external acoustic meatus;external acoustic tube -http://purl.obolibrary.org/obo/UBERON_0001352;external acoustic meatus;external auditory canal -http://purl.obolibrary.org/obo/UBERON_0001352;external acoustic meatus;external auditory tube -http://purl.obolibrary.org/obo/UBERON_0001353;anal region; -http://purl.obolibrary.org/obo/UBERON_0001354;inferior epigastric artery; -http://purl.obolibrary.org/obo/UBERON_0001355;deep femoral artery;arteria profunda femoris -http://purl.obolibrary.org/obo/UBERON_0001355;deep femoral artery;profunda femoris artery -http://purl.obolibrary.org/obo/UBERON_0001356;medial circumflex femoral artery;medial femoral circumflex artery -http://purl.obolibrary.org/obo/UBERON_0001357;inferior rectal artery; -http://purl.obolibrary.org/obo/UBERON_0001358;perineal artery; -http://purl.obolibrary.org/obo/UBERON_0001359;cerebrospinal fluid;CSF -http://purl.obolibrary.org/obo/UBERON_0001359;cerebrospinal fluid;cerebral spinal fluid -http://purl.obolibrary.org/obo/UBERON_0001360;deep circumflex iliac vein;circumflex iliac vein -http://purl.obolibrary.org/obo/UBERON_0001360;deep circumflex iliac vein;deep iliac circumflex vein -http://purl.obolibrary.org/obo/UBERON_0001360;deep circumflex iliac vein;iliac circumflex vein -http://purl.obolibrary.org/obo/UBERON_0001360;deep circumflex iliac vein;vena circumflexa iliaca profunda -http://purl.obolibrary.org/obo/UBERON_0001361;femoral vein; -http://purl.obolibrary.org/obo/UBERON_0001362;perineal vein; -http://purl.obolibrary.org/obo/UBERON_0001363;great saphenous vein;greater saphenous vein -http://purl.obolibrary.org/obo/UBERON_0001365;sacro-iliac joint;articulatio sacro-iliaca -http://purl.obolibrary.org/obo/UBERON_0001365;sacro-iliac joint;sacroiliac joint -http://purl.obolibrary.org/obo/UBERON_0001366;parietal peritoneum;parietal serous membrane of peritoneum -http://purl.obolibrary.org/obo/UBERON_0001367;external anal sphincter;external sphincter ani -http://purl.obolibrary.org/obo/UBERON_0001367;external anal sphincter;musculus sphincter ani externus -http://purl.obolibrary.org/obo/UBERON_0001368;obturator externus;M. obturator externus -http://purl.obolibrary.org/obo/UBERON_0001368;obturator externus;external obturator -http://purl.obolibrary.org/obo/UBERON_0001369;iliacus muscle;anterior muscle of pelvic girdle -http://purl.obolibrary.org/obo/UBERON_0001369;iliacus muscle;iliacus -http://purl.obolibrary.org/obo/UBERON_0001370;gluteus maximus;gluteus maximus muscle -http://purl.obolibrary.org/obo/UBERON_0001370;gluteus maximus;glutæus maximus -http://purl.obolibrary.org/obo/UBERON_0001370;gluteus maximus;m.gluteus maximus -http://purl.obolibrary.org/obo/UBERON_0001371;gluteus medius; -http://purl.obolibrary.org/obo/UBERON_0001372;psoas minor muscle;psoas minor -http://purl.obolibrary.org/obo/UBERON_0001373;sartorius muscle;sartorius -http://purl.obolibrary.org/obo/UBERON_0001374;biceps femoris;biceps femoris muscle -http://purl.obolibrary.org/obo/UBERON_0001375;semitendinosus;semitendinosus muscle -http://purl.obolibrary.org/obo/UBERON_0001376;tensor fasciae latae muscle;musculus tensor fasciae latae -http://purl.obolibrary.org/obo/UBERON_0001376;tensor fasciae latae muscle;tensor fasciae lata -http://purl.obolibrary.org/obo/UBERON_0001376;tensor fasciae latae muscle;tensor fasciae lata muscle -http://purl.obolibrary.org/obo/UBERON_0001376;tensor fasciae latae muscle;tensor fasciae latae -http://purl.obolibrary.org/obo/UBERON_0001376;tensor fasciae latae muscle;tensor of fascia lata -http://purl.obolibrary.org/obo/UBERON_0001377;quadriceps femoris;quadriceps -http://purl.obolibrary.org/obo/UBERON_0001377;quadriceps femoris;quadriceps femoris muscle -http://purl.obolibrary.org/obo/UBERON_0001378;rectus femoris;musculus rectos femoris -http://purl.obolibrary.org/obo/UBERON_0001379;vastus lateralis;vastus lateralis muscle -http://purl.obolibrary.org/obo/UBERON_0001380;vastus medialis;vastus medialis muscle -http://purl.obolibrary.org/obo/UBERON_0001381;semimembranosus muscle;musculus semimembranosus -http://purl.obolibrary.org/obo/UBERON_0001381;semimembranosus muscle;semimembranosus -http://purl.obolibrary.org/obo/UBERON_0001382;pectineus muscle;M. pectineus -http://purl.obolibrary.org/obo/UBERON_0001382;pectineus muscle;pectineus -http://purl.obolibrary.org/obo/UBERON_0001383;muscle of leg;leg muscle -http://purl.obolibrary.org/obo/UBERON_0001383;muscle of leg;leg muscle organ -http://purl.obolibrary.org/obo/UBERON_0001383;muscle of leg;leg skeletal muscle -http://purl.obolibrary.org/obo/UBERON_0001383;muscle of leg;leg skeletal muscle tissue -http://purl.obolibrary.org/obo/UBERON_0001383;muscle of leg;muscle of hindlimb zeugopod or stylopod -http://purl.obolibrary.org/obo/UBERON_0001383;muscle of leg;muscle of thigh or crus -http://purl.obolibrary.org/obo/UBERON_0001383;muscle of leg;muscle of upper or lower hindlimb segment -http://purl.obolibrary.org/obo/UBERON_0001383;muscle of leg;muscle of upper/lower leg -http://purl.obolibrary.org/obo/UBERON_0001383;muscle of leg;muscle organ of leg -http://purl.obolibrary.org/obo/UBERON_0001383;muscle of leg;skeletal muscle of leg -http://purl.obolibrary.org/obo/UBERON_0001384;primary motor cortex;motor cortex -http://purl.obolibrary.org/obo/UBERON_0001385;tibialis anterior;tibialis anterior muscle -http://purl.obolibrary.org/obo/UBERON_0001385;tibialis anterior;tibialis cranialis -http://purl.obolibrary.org/obo/UBERON_0001385;tibialis anterior;tibilais cranialis -http://purl.obolibrary.org/obo/UBERON_0001386;extensor digitorum longus;extensor digitorum longus muscle -http://purl.obolibrary.org/obo/UBERON_0001386;extensor digitorum longus;toe extensor -http://purl.obolibrary.org/obo/UBERON_0001386;extensor digitorum longus;toe extensor muscle -http://purl.obolibrary.org/obo/UBERON_0001387;fibularis longus;musculus peroneus longus -http://purl.obolibrary.org/obo/UBERON_0001387;fibularis longus;peroneus longus -http://purl.obolibrary.org/obo/UBERON_0001387;fibularis longus;peroneus longus muscle -http://purl.obolibrary.org/obo/UBERON_0001388;gastrocnemius;gastrocnemius muscle -http://purl.obolibrary.org/obo/UBERON_0001388;gastrocnemius;m. gastrocnemius -http://purl.obolibrary.org/obo/UBERON_0001388;gastrocnemius;m.gastrocnemius -http://purl.obolibrary.org/obo/UBERON_0001389;soleus muscle;soleus -http://purl.obolibrary.org/obo/UBERON_0001390;sural artery; -http://purl.obolibrary.org/obo/UBERON_0001391;popliteus muscle;m.popliteus -http://purl.obolibrary.org/obo/UBERON_0001391;popliteus muscle;poplitea -http://purl.obolibrary.org/obo/UBERON_0001391;popliteus muscle;popliteal -http://purl.obolibrary.org/obo/UBERON_0001391;popliteus muscle;popliteal muscle -http://purl.obolibrary.org/obo/UBERON_0001391;popliteus muscle;popliteus -http://purl.obolibrary.org/obo/UBERON_0001392;flexor hallucis longus;flexor hallucis longus muscle -http://purl.obolibrary.org/obo/UBERON_0001393;auditory cortex; -http://purl.obolibrary.org/obo/UBERON_0001394;axillary artery;arteria axillaris -http://purl.obolibrary.org/obo/UBERON_0001394;axillary artery;axillary part of subclavian artery -http://purl.obolibrary.org/obo/UBERON_0001394;axillary artery;axillary part of trunk of subclavian artery -http://purl.obolibrary.org/obo/UBERON_0001395;thoraco-acromial artery;acromiothoracic artery -http://purl.obolibrary.org/obo/UBERON_0001395;thoraco-acromial artery;thoracoacromial artery -http://purl.obolibrary.org/obo/UBERON_0001396;lateral thoracic artery;external mammary artery -http://purl.obolibrary.org/obo/UBERON_0001397;subscapular artery; -http://purl.obolibrary.org/obo/UBERON_0001398;brachial artery;brachial part of trunk of subclavian artery -http://purl.obolibrary.org/obo/UBERON_0001399;deep brachial artery;arteria profunda brachii -http://purl.obolibrary.org/obo/UBERON_0001399;deep brachial artery;profunda brachii artery -http://purl.obolibrary.org/obo/UBERON_0001400;iliocostalis thoracis muscle; -http://purl.obolibrary.org/obo/UBERON_0001401;longissimus thoracis muscle;longissimus dorsi -http://purl.obolibrary.org/obo/UBERON_0001401;longissimus thoracis muscle;longissimus dorsi muscle -http://purl.obolibrary.org/obo/UBERON_0001401;longissimus thoracis muscle;longissimus thoracis -http://purl.obolibrary.org/obo/UBERON_0001401;longissimus thoracis muscle;musculus longissimus dorsi -http://purl.obolibrary.org/obo/UBERON_0001401;longissimus thoracis muscle;musculus longissimus thoracis -http://purl.obolibrary.org/obo/UBERON_0001402;longissimus cervicis muscle;longissimus cervicis -http://purl.obolibrary.org/obo/UBERON_0001403;longissimus capitis; -http://purl.obolibrary.org/obo/UBERON_0001404;radial artery; -http://purl.obolibrary.org/obo/UBERON_0001405;spinalis thoracis muscle;spinalis thoracis -http://purl.obolibrary.org/obo/UBERON_0001406;ulnar artery;arteria ulnaris -http://purl.obolibrary.org/obo/UBERON_0001407;semispinalis thoracis;semispinalis dorsi -http://purl.obolibrary.org/obo/UBERON_0001407;semispinalis thoracis;semispinalis dorsi muscle -http://purl.obolibrary.org/obo/UBERON_0001408;semispinalis cervicis; -http://purl.obolibrary.org/obo/UBERON_0001409;semispinalis capitis; -http://purl.obolibrary.org/obo/UBERON_0001410;common palmar digital artery;common palmar digital arteries -http://purl.obolibrary.org/obo/UBERON_0001411;basilic vein;basilic vein of forearm -http://purl.obolibrary.org/obo/UBERON_0001411;basilic vein;vena basilica antebrachii -http://purl.obolibrary.org/obo/UBERON_0001412;common palmar digital vein;proximal palmar digital vein -http://purl.obolibrary.org/obo/UBERON_0001413;brachial vein; -http://purl.obolibrary.org/obo/UBERON_0001414;median basilic vein;median cubital vein -http://purl.obolibrary.org/obo/UBERON_0001415;skin of pelvis;pelvic skin -http://purl.obolibrary.org/obo/UBERON_0001415;skin of pelvis;pelvis skin -http://purl.obolibrary.org/obo/UBERON_0001415;skin of pelvis;pelvis zone of skin -http://purl.obolibrary.org/obo/UBERON_0001415;skin of pelvis;zone of skin of pelvis -http://purl.obolibrary.org/obo/UBERON_0001416;skin of abdomen;abdomen skin -http://purl.obolibrary.org/obo/UBERON_0001416;skin of abdomen;abdomen zone of skin -http://purl.obolibrary.org/obo/UBERON_0001416;skin of abdomen;abdominal skin -http://purl.obolibrary.org/obo/UBERON_0001416;skin of abdomen;skin of abdomen proper -http://purl.obolibrary.org/obo/UBERON_0001416;skin of abdomen;zone of skin of abdomen -http://purl.obolibrary.org/obo/UBERON_0001417;skin of neck;neck (volume) zone of skin -http://purl.obolibrary.org/obo/UBERON_0001417;skin of neck;neck skin -http://purl.obolibrary.org/obo/UBERON_0001417;skin of neck;neck zone of skin -http://purl.obolibrary.org/obo/UBERON_0001417;skin of neck;zone of skin of neck -http://purl.obolibrary.org/obo/UBERON_0001417;skin of neck;zone of skin of neck (volume) -http://purl.obolibrary.org/obo/UBERON_0001418;skin of thorax;thoracic skin -http://purl.obolibrary.org/obo/UBERON_0001418;skin of thorax;thorax skin -http://purl.obolibrary.org/obo/UBERON_0001418;skin of thorax;thorax zone of skin -http://purl.obolibrary.org/obo/UBERON_0001418;skin of thorax;zone of skin of thorax -http://purl.obolibrary.org/obo/UBERON_0001419;skin of limb;limb skin -http://purl.obolibrary.org/obo/UBERON_0001419;skin of limb;limb zone of skin -http://purl.obolibrary.org/obo/UBERON_0001419;skin of limb;zone of skin of limb -http://purl.obolibrary.org/obo/UBERON_0001420;subscapular vein;vena subscapularis -http://purl.obolibrary.org/obo/UBERON_0001421;pectoral girdle region;cingulum membri superioris -http://purl.obolibrary.org/obo/UBERON_0001421;pectoral girdle region;girdle - pectoral -http://purl.obolibrary.org/obo/UBERON_0001422;facial lymphatic vessel;buccal lymphatic vessel -http://purl.obolibrary.org/obo/UBERON_0001422;facial lymphatic vessel;face lymph vessel -http://purl.obolibrary.org/obo/UBERON_0001422;facial lymphatic vessel;face lymphatic vessel -http://purl.obolibrary.org/obo/UBERON_0001422;facial lymphatic vessel;lymph vessel of face -http://purl.obolibrary.org/obo/UBERON_0001422;facial lymphatic vessel;lymphatic vessel of face -http://purl.obolibrary.org/obo/UBERON_0001423;radius bone;radius -http://purl.obolibrary.org/obo/UBERON_0001424;ulna; -http://purl.obolibrary.org/obo/UBERON_0001425;pectoral lymphatic vessel; -http://purl.obolibrary.org/obo/UBERON_0001426;jugular lymphatic vessel; -http://purl.obolibrary.org/obo/UBERON_0001427;radiale;navicular bone of hand -http://purl.obolibrary.org/obo/UBERON_0001427;radiale;navicular bone of manus -http://purl.obolibrary.org/obo/UBERON_0001427;radiale;navicular of manus -http://purl.obolibrary.org/obo/UBERON_0001427;radiale;os carpi radiale -http://purl.obolibrary.org/obo/UBERON_0001427;radiale;os naviculare manus -http://purl.obolibrary.org/obo/UBERON_0001427;radiale;os scaphoideum -http://purl.obolibrary.org/obo/UBERON_0001427;radiale;radial carpal bone -http://purl.obolibrary.org/obo/UBERON_0001427;radiale;scaphoid -http://purl.obolibrary.org/obo/UBERON_0001427;radiale;scaphoid bone -http://purl.obolibrary.org/obo/UBERON_0001427;radiale;scaphoideum -http://purl.obolibrary.org/obo/UBERON_0001428;intermedium;lunar -http://purl.obolibrary.org/obo/UBERON_0001428;intermedium;lunate -http://purl.obolibrary.org/obo/UBERON_0001428;intermedium;lunate bone -http://purl.obolibrary.org/obo/UBERON_0001428;intermedium;os carpi intermedium -http://purl.obolibrary.org/obo/UBERON_0001428;intermedium;os lunatum -http://purl.obolibrary.org/obo/UBERON_0001428;intermedium;semilunar bone -http://purl.obolibrary.org/obo/UBERON_0001429;pisiform;pisiform bone -http://purl.obolibrary.org/obo/UBERON_0001430;distal carpal bone 1;distal carpal 1 -http://purl.obolibrary.org/obo/UBERON_0001430;distal carpal bone 1;greater multangular bone -http://purl.obolibrary.org/obo/UBERON_0001430;distal carpal bone 1;os trapezium -http://purl.obolibrary.org/obo/UBERON_0001430;distal carpal bone 1;trapezial bone -http://purl.obolibrary.org/obo/UBERON_0001430;distal carpal bone 1;trapezium -http://purl.obolibrary.org/obo/UBERON_0001430;distal carpal bone 1;trapezium bone -http://purl.obolibrary.org/obo/UBERON_0001431;distal carpal bone 2;distal carpal 2 -http://purl.obolibrary.org/obo/UBERON_0001431;distal carpal bone 2;lesser multangular bone -http://purl.obolibrary.org/obo/UBERON_0001431;distal carpal bone 2;os trapezoideum -http://purl.obolibrary.org/obo/UBERON_0001431;distal carpal bone 2;trapezoid -http://purl.obolibrary.org/obo/UBERON_0001431;distal carpal bone 2;trapezoid bone -http://purl.obolibrary.org/obo/UBERON_0001432;distal carpal bone 3;capitate -http://purl.obolibrary.org/obo/UBERON_0001432;distal carpal bone 3;capitate bone -http://purl.obolibrary.org/obo/UBERON_0001432;distal carpal bone 3;distal carpal 3 -http://purl.obolibrary.org/obo/UBERON_0001432;distal carpal bone 3;os magnum (carpus) -http://purl.obolibrary.org/obo/UBERON_0001433;distal carpal bone 4;distal carpal 4 -http://purl.obolibrary.org/obo/UBERON_0001433;distal carpal bone 4;hamate -http://purl.obolibrary.org/obo/UBERON_0001433;distal carpal bone 4;hamate bone -http://purl.obolibrary.org/obo/UBERON_0001433;distal carpal bone 4;unciform bone -http://purl.obolibrary.org/obo/UBERON_0001434;skeletal system;Skelettsystem -http://purl.obolibrary.org/obo/UBERON_0001434;skeletal system;set of all bones and joints -http://purl.obolibrary.org/obo/UBERON_0001434;skeletal system;skeleton system -http://purl.obolibrary.org/obo/UBERON_0001435;carpal bone;bone of carpus -http://purl.obolibrary.org/obo/UBERON_0001435;carpal bone;carpal -http://purl.obolibrary.org/obo/UBERON_0001435;carpal bone;carpal skeleton bone -http://purl.obolibrary.org/obo/UBERON_0001436;phalanx of manus;digitus manus phalanx -http://purl.obolibrary.org/obo/UBERON_0001436;phalanx of manus;finger phalanx -http://purl.obolibrary.org/obo/UBERON_0001436;phalanx of manus;hand digit phalanx -http://purl.obolibrary.org/obo/UBERON_0001436;phalanx of manus;hand phalanx -http://purl.obolibrary.org/obo/UBERON_0001436;phalanx of manus;manual phalanx -http://purl.obolibrary.org/obo/UBERON_0001436;phalanx of manus;phalanx of digit of hand -http://purl.obolibrary.org/obo/UBERON_0001436;phalanx of manus;phalanx of digitus manus -http://purl.obolibrary.org/obo/UBERON_0001436;phalanx of manus;phalanx of finger -http://purl.obolibrary.org/obo/UBERON_0001436;phalanx of manus;phalanx of fore digit -http://purl.obolibrary.org/obo/UBERON_0001436;phalanx of manus;phalanx of hand -http://purl.obolibrary.org/obo/UBERON_0001436;phalanx of manus;phalanx of hand digit -http://purl.obolibrary.org/obo/UBERON_0001436;phalanx of manus;phalanx of manual digit -http://purl.obolibrary.org/obo/UBERON_0001437;epiphysis;bone epiphysis -http://purl.obolibrary.org/obo/UBERON_0001437;epiphysis;end of long bone -http://purl.obolibrary.org/obo/UBERON_0001437;epiphysis;epiphyses -http://purl.obolibrary.org/obo/UBERON_0001437;epiphysis;long bone epiphysis -http://purl.obolibrary.org/obo/UBERON_0001438;metaphysis;diaphyseal end of long bone -http://purl.obolibrary.org/obo/UBERON_0001438;metaphysis;long bone metaphysis -http://purl.obolibrary.org/obo/UBERON_0001438;metaphysis;metaphyses -http://purl.obolibrary.org/obo/UBERON_0001439;compact bone tissue;bony cortex -http://purl.obolibrary.org/obo/UBERON_0001439;compact bone tissue;compact bone -http://purl.obolibrary.org/obo/UBERON_0001439;compact bone tissue;compact bone tissue -http://purl.obolibrary.org/obo/UBERON_0001439;compact bone tissue;cortical bone -http://purl.obolibrary.org/obo/UBERON_0001439;compact bone tissue;cortical bone tissue -http://purl.obolibrary.org/obo/UBERON_0001439;compact bone tissue;cortical region of bone -http://purl.obolibrary.org/obo/UBERON_0001439;compact bone tissue;substantia compacta -http://purl.obolibrary.org/obo/UBERON_0001439;compact bone tissue;substantia compacta (pars ossea) -http://purl.obolibrary.org/obo/UBERON_0001439;compact bone tissue;substantia corticalis -http://purl.obolibrary.org/obo/UBERON_0001440;forelimb skeleton;bones of upper limb -http://purl.obolibrary.org/obo/UBERON_0001440;forelimb skeleton;fore limb skeleton -http://purl.obolibrary.org/obo/UBERON_0001440;forelimb skeleton;forelimb skeleton -http://purl.obolibrary.org/obo/UBERON_0001440;forelimb skeleton;free upper limb skeleton -http://purl.obolibrary.org/obo/UBERON_0001440;forelimb skeleton;ossa membri superioris -http://purl.obolibrary.org/obo/UBERON_0001440;forelimb skeleton;pectoral limb skeleton -http://purl.obolibrary.org/obo/UBERON_0001440;forelimb skeleton;set of bones of upper limb -http://purl.obolibrary.org/obo/UBERON_0001440;forelimb skeleton;skeleton of forelimb -http://purl.obolibrary.org/obo/UBERON_0001440;forelimb skeleton;skeleton of free upper limb -http://purl.obolibrary.org/obo/UBERON_0001440;forelimb skeleton;skeleton of pectoral limb -http://purl.obolibrary.org/obo/UBERON_0001440;forelimb skeleton;skeleton of upper limb -http://purl.obolibrary.org/obo/UBERON_0001440;forelimb skeleton;upper limb skeleton -http://purl.obolibrary.org/obo/UBERON_0001441;hindlimb skeleton;bones of lower limb -http://purl.obolibrary.org/obo/UBERON_0001441;hindlimb skeleton;free lower limb skeleton -http://purl.obolibrary.org/obo/UBERON_0001441;hindlimb skeleton;hind limb skeleton -http://purl.obolibrary.org/obo/UBERON_0001441;hindlimb skeleton;hind-limb skeleton -http://purl.obolibrary.org/obo/UBERON_0001441;hindlimb skeleton;hindlimb skeleton -http://purl.obolibrary.org/obo/UBERON_0001441;hindlimb skeleton;lower limb skeleton -http://purl.obolibrary.org/obo/UBERON_0001441;hindlimb skeleton;ossa membri inferioris -http://purl.obolibrary.org/obo/UBERON_0001441;hindlimb skeleton;set of bones of lower limb -http://purl.obolibrary.org/obo/UBERON_0001441;hindlimb skeleton;skeleton of free lower limb -http://purl.obolibrary.org/obo/UBERON_0001441;hindlimb skeleton;skeleton of lower limb -http://purl.obolibrary.org/obo/UBERON_0001442;skeleton of manus;anterior autopodium skeleton -http://purl.obolibrary.org/obo/UBERON_0001442;skeleton of manus;bones of hand -http://purl.obolibrary.org/obo/UBERON_0001442;skeleton of manus;fore autopod skeleton -http://purl.obolibrary.org/obo/UBERON_0001442;skeleton of manus;forelimb autopod skeleton -http://purl.obolibrary.org/obo/UBERON_0001442;skeleton of manus;hand region skeleton -http://purl.obolibrary.org/obo/UBERON_0001442;skeleton of manus;hand skeleton -http://purl.obolibrary.org/obo/UBERON_0001442;skeleton of manus;manual skeleton -http://purl.obolibrary.org/obo/UBERON_0001442;skeleton of manus;manus skeleton -http://purl.obolibrary.org/obo/UBERON_0001442;skeleton of manus;ossa manus -http://purl.obolibrary.org/obo/UBERON_0001442;skeleton of manus;set of bones of hand -http://purl.obolibrary.org/obo/UBERON_0001442;skeleton of manus;skeleton of hand -http://purl.obolibrary.org/obo/UBERON_0001443;chest;anterolateral part of thorax -http://purl.obolibrary.org/obo/UBERON_0001443;chest;front of thorax -http://purl.obolibrary.org/obo/UBERON_0001443;chest;pectus -http://purl.obolibrary.org/obo/UBERON_0001443;chest;ventral part of thoracic region -http://purl.obolibrary.org/obo/UBERON_0001444;subdivision of head;head region -http://purl.obolibrary.org/obo/UBERON_0001444;subdivision of head;head subdivision -http://purl.obolibrary.org/obo/UBERON_0001444;subdivision of head;region of head -http://purl.obolibrary.org/obo/UBERON_0001445;skeleton of pes;foot region skeleton -http://purl.obolibrary.org/obo/UBERON_0001445;skeleton of pes;foot skeleton -http://purl.obolibrary.org/obo/UBERON_0001445;skeleton of pes;pedal skeleton -http://purl.obolibrary.org/obo/UBERON_0001445;skeleton of pes;pes skeleton -http://purl.obolibrary.org/obo/UBERON_0001445;skeleton of pes;posterior autopodium skeleton -http://purl.obolibrary.org/obo/UBERON_0001445;skeleton of pes;set of bones of foot -http://purl.obolibrary.org/obo/UBERON_0001445;skeleton of pes;skeleton of foot -http://purl.obolibrary.org/obo/UBERON_0001446;fibula; -http://purl.obolibrary.org/obo/UBERON_0001447;tarsal bone;ankle bone -http://purl.obolibrary.org/obo/UBERON_0001447;tarsal bone;bone of ankle -http://purl.obolibrary.org/obo/UBERON_0001447;tarsal bone;bone of tarsal skeleton -http://purl.obolibrary.org/obo/UBERON_0001447;tarsal bone;bone of tarsus -http://purl.obolibrary.org/obo/UBERON_0001447;tarsal bone;ossa tarsalia -http://purl.obolibrary.org/obo/UBERON_0001447;tarsal bone;ossa tarsi -http://purl.obolibrary.org/obo/UBERON_0001448;metatarsal bone;metatarsal -http://purl.obolibrary.org/obo/UBERON_0001449;phalanx of pes;digitus pedis phalanx -http://purl.obolibrary.org/obo/UBERON_0001449;phalanx of pes;foot digit phalanx -http://purl.obolibrary.org/obo/UBERON_0001449;phalanx of pes;foot phalanx -http://purl.obolibrary.org/obo/UBERON_0001449;phalanx of pes;pedal phalanx -http://purl.obolibrary.org/obo/UBERON_0001449;phalanx of pes;phalanx of digit of foot -http://purl.obolibrary.org/obo/UBERON_0001449;phalanx of pes;phalanx of digitus pedis -http://purl.obolibrary.org/obo/UBERON_0001449;phalanx of pes;phalanx of foot digit -http://purl.obolibrary.org/obo/UBERON_0001449;phalanx of pes;phalanx of hind digit -http://purl.obolibrary.org/obo/UBERON_0001449;phalanx of pes;phalanx of pes -http://purl.obolibrary.org/obo/UBERON_0001449;phalanx of pes;phalanx of toe -http://purl.obolibrary.org/obo/UBERON_0001449;phalanx of pes;toe phalanx -http://purl.obolibrary.org/obo/UBERON_0001450;calcaneus;calcaneal bone -http://purl.obolibrary.org/obo/UBERON_0001450;calcaneus;calcaneum -http://purl.obolibrary.org/obo/UBERON_0001450;calcaneus;calcaneus bone -http://purl.obolibrary.org/obo/UBERON_0001450;calcaneus;os calcis -http://purl.obolibrary.org/obo/UBERON_0001451;navicular bone of pes;centrale (hind) -http://purl.obolibrary.org/obo/UBERON_0001451;navicular bone of pes;navicular -http://purl.obolibrary.org/obo/UBERON_0001451;navicular bone of pes;navicular bone of foot -http://purl.obolibrary.org/obo/UBERON_0001451;navicular bone of pes;navicular of foot -http://purl.obolibrary.org/obo/UBERON_0001451;navicular bone of pes;navicular of pes -http://purl.obolibrary.org/obo/UBERON_0001451;navicular bone of pes;os naviculare -http://purl.obolibrary.org/obo/UBERON_0001451;navicular bone of pes;os naviculare pedis -http://purl.obolibrary.org/obo/UBERON_0001451;navicular bone of pes;os tarsi centrale -http://purl.obolibrary.org/obo/UBERON_0001452;distal tarsal bone 1;cuneiforme 1 -http://purl.obolibrary.org/obo/UBERON_0001452;distal tarsal bone 1;distal tarsal 1 bone -http://purl.obolibrary.org/obo/UBERON_0001452;distal tarsal bone 1;entocuneiforme -http://purl.obolibrary.org/obo/UBERON_0001452;distal tarsal bone 1;first cuneiform -http://purl.obolibrary.org/obo/UBERON_0001452;distal tarsal bone 1;first cuneiform bone -http://purl.obolibrary.org/obo/UBERON_0001452;distal tarsal bone 1;medial cuneiform -http://purl.obolibrary.org/obo/UBERON_0001452;distal tarsal bone 1;medial cuneiform bone -http://purl.obolibrary.org/obo/UBERON_0001452;distal tarsal bone 1;os cuneiforme mediale -http://purl.obolibrary.org/obo/UBERON_0001452;distal tarsal bone 1;os tarsale I -http://purl.obolibrary.org/obo/UBERON_0001452;distal tarsal bone 1;tarsal 1 -http://purl.obolibrary.org/obo/UBERON_0001453;distal tarsal bone 2;cuneiforme 2 -http://purl.obolibrary.org/obo/UBERON_0001453;distal tarsal bone 2;distal tarsal 2 bone -http://purl.obolibrary.org/obo/UBERON_0001453;distal tarsal bone 2;intermediate cuneiform -http://purl.obolibrary.org/obo/UBERON_0001453;distal tarsal bone 2;mesocuneiforme -http://purl.obolibrary.org/obo/UBERON_0001453;distal tarsal bone 2;middle cuneiform -http://purl.obolibrary.org/obo/UBERON_0001453;distal tarsal bone 2;middle cuneiform bone of foot -http://purl.obolibrary.org/obo/UBERON_0001453;distal tarsal bone 2;os cuneiforme intermedium -http://purl.obolibrary.org/obo/UBERON_0001453;distal tarsal bone 2;os tarsale II -http://purl.obolibrary.org/obo/UBERON_0001453;distal tarsal bone 2;second cuneiform bone -http://purl.obolibrary.org/obo/UBERON_0001453;distal tarsal bone 2;second cuneiform bone of foot -http://purl.obolibrary.org/obo/UBERON_0001453;distal tarsal bone 2;tarsal 2 -http://purl.obolibrary.org/obo/UBERON_0001454;distal tarsal bone 3;cuneiforme 3 -http://purl.obolibrary.org/obo/UBERON_0001454;distal tarsal bone 3;distal tarsal 3 bone -http://purl.obolibrary.org/obo/UBERON_0001454;distal tarsal bone 3;ectocuneiforme -http://purl.obolibrary.org/obo/UBERON_0001454;distal tarsal bone 3;external cuneiform -http://purl.obolibrary.org/obo/UBERON_0001454;distal tarsal bone 3;external cuneiform bone of foot -http://purl.obolibrary.org/obo/UBERON_0001454;distal tarsal bone 3;lateral cuneiform -http://purl.obolibrary.org/obo/UBERON_0001454;distal tarsal bone 3;lateral cuneiform bone -http://purl.obolibrary.org/obo/UBERON_0001454;distal tarsal bone 3;os cuneiforme laterale -http://purl.obolibrary.org/obo/UBERON_0001454;distal tarsal bone 3;os tarsale III -http://purl.obolibrary.org/obo/UBERON_0001454;distal tarsal bone 3;tarsal 3 -http://purl.obolibrary.org/obo/UBERON_0001454;distal tarsal bone 3;third cuneiform bone -http://purl.obolibrary.org/obo/UBERON_0001455;cuboid bone;cuboid -http://purl.obolibrary.org/obo/UBERON_0001456;face;facia/facies -http://purl.obolibrary.org/obo/UBERON_0001456;face;visage -http://purl.obolibrary.org/obo/UBERON_0001457;skin of eyelid;blepharon zone of skin -http://purl.obolibrary.org/obo/UBERON_0001457;skin of eyelid;eyelid skin -http://purl.obolibrary.org/obo/UBERON_0001457;skin of eyelid;eyelid zone of skin -http://purl.obolibrary.org/obo/UBERON_0001457;skin of eyelid;zone of skin of blepharon -http://purl.obolibrary.org/obo/UBERON_0001457;skin of eyelid;zone of skin of eyelid -http://purl.obolibrary.org/obo/UBERON_0001458;skin of lip;lip skin -http://purl.obolibrary.org/obo/UBERON_0001458;skin of lip;lip zone of skin -http://purl.obolibrary.org/obo/UBERON_0001458;skin of lip;zone of skin of lip -http://purl.obolibrary.org/obo/UBERON_0001459;skin of external ear;auricular region of head zone of skin -http://purl.obolibrary.org/obo/UBERON_0001459;skin of external ear;auricular region zone of skin -http://purl.obolibrary.org/obo/UBERON_0001459;skin of external ear;ear skin -http://purl.obolibrary.org/obo/UBERON_0001459;skin of external ear;external ear skin -http://purl.obolibrary.org/obo/UBERON_0001459;skin of external ear;external ear zone of skin -http://purl.obolibrary.org/obo/UBERON_0001459;skin of external ear;outer ear zone of skin -http://purl.obolibrary.org/obo/UBERON_0001459;skin of external ear;zone of skin of auricular region -http://purl.obolibrary.org/obo/UBERON_0001459;skin of external ear;zone of skin of auricular region of head -http://purl.obolibrary.org/obo/UBERON_0001459;skin of external ear;zone of skin of external ear -http://purl.obolibrary.org/obo/UBERON_0001459;skin of external ear;zone of skin of outer ear -http://purl.obolibrary.org/obo/UBERON_0001460;arm; -http://purl.obolibrary.org/obo/UBERON_0001461;elbow;cubital region -http://purl.obolibrary.org/obo/UBERON_0001461;elbow;elbow limb segment -http://purl.obolibrary.org/obo/UBERON_0001461;elbow;elbow region -http://purl.obolibrary.org/obo/UBERON_0001463;manual digit 1;digit 1 of fore-paw -http://purl.obolibrary.org/obo/UBERON_0001463;manual digit 1;digit 1 of manus -http://purl.obolibrary.org/obo/UBERON_0001463;manual digit 1;finger 1 -http://purl.obolibrary.org/obo/UBERON_0001463;manual digit 1;first digit of hand -http://purl.obolibrary.org/obo/UBERON_0001463;manual digit 1;fore digit I -http://purl.obolibrary.org/obo/UBERON_0001463;manual digit 1;fore limb digit 1 -http://purl.obolibrary.org/obo/UBERON_0001463;manual digit 1;hand digit 1 -http://purl.obolibrary.org/obo/UBERON_0001463;manual digit 1;manual digit 1 -http://purl.obolibrary.org/obo/UBERON_0001463;manual digit 1;manual digit I -http://purl.obolibrary.org/obo/UBERON_0001463;manual digit 1;pollex -http://purl.obolibrary.org/obo/UBERON_0001464;hip;hip region -http://purl.obolibrary.org/obo/UBERON_0001464;hip;regio coxae -http://purl.obolibrary.org/obo/UBERON_0001465;knee;knee region -http://purl.obolibrary.org/obo/UBERON_0001466;pedal digit;digit of foot -http://purl.obolibrary.org/obo/UBERON_0001466;pedal digit;digit of terminal segment of lower limb -http://purl.obolibrary.org/obo/UBERON_0001466;pedal digit;digiti pedis -http://purl.obolibrary.org/obo/UBERON_0001466;pedal digit;digitus pedis -http://purl.obolibrary.org/obo/UBERON_0001466;pedal digit;foot digit -http://purl.obolibrary.org/obo/UBERON_0001466;pedal digit;hind digit -http://purl.obolibrary.org/obo/UBERON_0001466;pedal digit;hind_digit -http://purl.obolibrary.org/obo/UBERON_0001466;pedal digit;hindlimb digit -http://purl.obolibrary.org/obo/UBERON_0001466;pedal digit;pedal digit (phalangeal portion) plus soft tissue -http://purl.obolibrary.org/obo/UBERON_0001466;pedal digit;pes digit -http://purl.obolibrary.org/obo/UBERON_0001466;pedal digit;toe -http://purl.obolibrary.org/obo/UBERON_0001467;shoulder;shoulder region -http://purl.obolibrary.org/obo/UBERON_0001468;intervertebral joint;inter-centrum joint -http://purl.obolibrary.org/obo/UBERON_0001468;intervertebral joint;inter-vertebral joint -http://purl.obolibrary.org/obo/UBERON_0001468;intervertebral joint;intervertebral symphysis -http://purl.obolibrary.org/obo/UBERON_0001468;intervertebral joint;joint of vertebral body -http://purl.obolibrary.org/obo/UBERON_0001469;sternoclavicular joint;sterno clavicular joint -http://purl.obolibrary.org/obo/UBERON_0001469;sternoclavicular joint;sternoclavicular articulation -http://purl.obolibrary.org/obo/UBERON_0001470;glenohumeral joint;articulatio humeri -http://purl.obolibrary.org/obo/UBERON_0001470;glenohumeral joint;humeral joint -http://purl.obolibrary.org/obo/UBERON_0001471;skin of prepuce of penis;foreskin of penis -http://purl.obolibrary.org/obo/UBERON_0001471;skin of prepuce of penis;penis foreskin -http://purl.obolibrary.org/obo/UBERON_0001471;skin of prepuce of penis;preputial skin -http://purl.obolibrary.org/obo/UBERON_0001472;vaginal venous plexus;venous vaginal plexus -http://purl.obolibrary.org/obo/UBERON_0001473;lymphatic vessel;lymph vessel -http://purl.obolibrary.org/obo/UBERON_0001474;bone element;bone -http://purl.obolibrary.org/obo/UBERON_0001474;bone element;bone organ -http://purl.obolibrary.org/obo/UBERON_0001474;bone element;bones -http://purl.obolibrary.org/obo/UBERON_0001476;deltoid;deltoid muscle -http://purl.obolibrary.org/obo/UBERON_0001476;deltoid;m. deltoideus -http://purl.obolibrary.org/obo/UBERON_0001476;deltoid;musculus deltoideus -http://purl.obolibrary.org/obo/UBERON_0001477;infraspinatus muscle;infraspinatus -http://purl.obolibrary.org/obo/UBERON_0001478;teres major muscle;teres major -http://purl.obolibrary.org/obo/UBERON_0001479;sesamoid bone;ossa sesamoidea -http://purl.obolibrary.org/obo/UBERON_0001480;proximal carpal bone; -http://purl.obolibrary.org/obo/UBERON_0001481;distal carpal bone;distal carpal -http://purl.obolibrary.org/obo/UBERON_0001482;muscle of shoulder;muscle organ of shoulder -http://purl.obolibrary.org/obo/UBERON_0001482;muscle of shoulder;shoulder muscle -http://purl.obolibrary.org/obo/UBERON_0001482;muscle of shoulder;shoulder muscle organ -http://purl.obolibrary.org/obo/UBERON_0001483;skin of shoulder;shoulder skin -http://purl.obolibrary.org/obo/UBERON_0001483;skin of shoulder;shoulder zone of skin -http://purl.obolibrary.org/obo/UBERON_0001483;skin of shoulder;zone of skin of shoulder -http://purl.obolibrary.org/obo/UBERON_0001484;articular capsule;capsula articularis -http://purl.obolibrary.org/obo/UBERON_0001484;articular capsule;fibrous capsule of joint -http://purl.obolibrary.org/obo/UBERON_0001484;articular capsule;joint capsule -http://purl.obolibrary.org/obo/UBERON_0001484;articular capsule;joint fibrous capsule -http://purl.obolibrary.org/obo/UBERON_0001485;knee joint;joint of knee -http://purl.obolibrary.org/obo/UBERON_0001486;hip joint;articulatio coxofemoralis -http://purl.obolibrary.org/obo/UBERON_0001486;hip joint;femoro-iliac joint -http://purl.obolibrary.org/obo/UBERON_0001487;pes joint;articulationes pedis -http://purl.obolibrary.org/obo/UBERON_0001487;pes joint;foot joint -http://purl.obolibrary.org/obo/UBERON_0001487;pes joint;hind limb autopod joint -http://purl.obolibrary.org/obo/UBERON_0001487;pes joint;joint of pes -http://purl.obolibrary.org/obo/UBERON_0001487;pes joint;joint of terminal segment of free lower limb -http://purl.obolibrary.org/obo/UBERON_0001487;pes joint;joints of foot -http://purl.obolibrary.org/obo/UBERON_0001487;pes joint;pedal joint -http://purl.obolibrary.org/obo/UBERON_0001488;ankle joint; -http://purl.obolibrary.org/obo/UBERON_0001489;manus joint;articulationes manus -http://purl.obolibrary.org/obo/UBERON_0001489;manus joint;hand joint -http://purl.obolibrary.org/obo/UBERON_0001489;manus joint;joint of hand -http://purl.obolibrary.org/obo/UBERON_0001489;manus joint;joint of manus -http://purl.obolibrary.org/obo/UBERON_0001489;manus joint;joint of terminal segment of free upper limb -http://purl.obolibrary.org/obo/UBERON_0001489;manus joint;manual joint -http://purl.obolibrary.org/obo/UBERON_0001490;elbow joint;articulatio cubiti -http://purl.obolibrary.org/obo/UBERON_0001490;elbow joint;cubital region joint -http://purl.obolibrary.org/obo/UBERON_0001490;elbow joint;joint of cubital region -http://purl.obolibrary.org/obo/UBERON_0001490;elbow joint;joint of elbow -http://purl.obolibrary.org/obo/UBERON_0001491;wrist joint;carpal region joint -http://purl.obolibrary.org/obo/UBERON_0001491;wrist joint;joint of carpal region -http://purl.obolibrary.org/obo/UBERON_0001491;wrist joint;joint of wrist -http://purl.obolibrary.org/obo/UBERON_0001492;radial nerve; -http://purl.obolibrary.org/obo/UBERON_0001493;axillary nerve;circumflex humeral nerve -http://purl.obolibrary.org/obo/UBERON_0001494;ulnar nerve; -http://purl.obolibrary.org/obo/UBERON_0001495;pectoral muscle;M. pectoralis -http://purl.obolibrary.org/obo/UBERON_0001495;pectoral muscle;muscle of pectoral part of chest -http://purl.obolibrary.org/obo/UBERON_0001495;pectoral muscle;muscle of pectoral region -http://purl.obolibrary.org/obo/UBERON_0001496;ascending aorta;ascending thoracic aorta -http://purl.obolibrary.org/obo/UBERON_0001496;ascending aorta;pars ascendens aortae -http://purl.obolibrary.org/obo/UBERON_0001497;muscle of pelvic girdle;girdle-pelvic muscle organ -http://purl.obolibrary.org/obo/UBERON_0001497;muscle of pelvic girdle;muscle organ of girdle-pelvic -http://purl.obolibrary.org/obo/UBERON_0001497;muscle of pelvic girdle;muscle organ of pelvic girdle -http://purl.obolibrary.org/obo/UBERON_0001497;muscle of pelvic girdle;muscle organ of pelvic girdle bone -http://purl.obolibrary.org/obo/UBERON_0001497;muscle of pelvic girdle;pelvic girdle muscle -http://purl.obolibrary.org/obo/UBERON_0001497;muscle of pelvic girdle;pelvic girdle muscle organ -http://purl.obolibrary.org/obo/UBERON_0001497;muscle of pelvic girdle;pelvic girdle skeletal muscle -http://purl.obolibrary.org/obo/UBERON_0001498;muscle of pes;foot muscle -http://purl.obolibrary.org/obo/UBERON_0001498;muscle of pes;foot muscle organ -http://purl.obolibrary.org/obo/UBERON_0001498;muscle of pes;muscle of foot -http://purl.obolibrary.org/obo/UBERON_0001498;muscle of pes;muscle organ of foot -http://purl.obolibrary.org/obo/UBERON_0001499;muscle of arm;arm muscle -http://purl.obolibrary.org/obo/UBERON_0001499;muscle of arm;arm skeletal muscle -http://purl.obolibrary.org/obo/UBERON_0001499;muscle of arm;arm skeletal muscle tissue -http://purl.obolibrary.org/obo/UBERON_0001499;muscle of arm;muscle of upper arm or lower arm -http://purl.obolibrary.org/obo/UBERON_0001499;muscle of arm;upper arm / lower arm muscle -http://purl.obolibrary.org/obo/UBERON_0001500;muscle of manus;hand muscle -http://purl.obolibrary.org/obo/UBERON_0001500;muscle of manus;manus muscle -http://purl.obolibrary.org/obo/UBERON_0001500;muscle of manus;manus muscle organ -http://purl.obolibrary.org/obo/UBERON_0001500;muscle of manus;muscle of hand -http://purl.obolibrary.org/obo/UBERON_0001500;muscle of manus;muscle organ of manus -http://purl.obolibrary.org/obo/UBERON_0001501;lumbrical muscle of manus;hand lumbrical -http://purl.obolibrary.org/obo/UBERON_0001501;lumbrical muscle of manus;hand lumbrical muscle -http://purl.obolibrary.org/obo/UBERON_0001501;lumbrical muscle of manus;lumbrical of hand -http://purl.obolibrary.org/obo/UBERON_0001501;lumbrical muscle of manus;musculi lumbricales manus -http://purl.obolibrary.org/obo/UBERON_0001502;interosseous muscle of manus;hand interosseous muscle -http://purl.obolibrary.org/obo/UBERON_0001502;interosseous muscle of manus;interosseous muscle of hand -http://purl.obolibrary.org/obo/UBERON_0001502;interosseous muscle of manus;manus interosseous muscle -http://purl.obolibrary.org/obo/UBERON_0001503;dorsal interosseous of manus;dorsal hand interosseus muscle -http://purl.obolibrary.org/obo/UBERON_0001503;dorsal interosseous of manus;dorsal interosseous of hand -http://purl.obolibrary.org/obo/UBERON_0001503;dorsal interosseous of manus;dorsal manus interosseous muscle -http://purl.obolibrary.org/obo/UBERON_0001503;dorsal interosseous of manus;musculi interossei dorsales manus -http://purl.obolibrary.org/obo/UBERON_0001504;lumbrical muscle of pes;foot lumbrical -http://purl.obolibrary.org/obo/UBERON_0001504;lumbrical muscle of pes;foot lumbrical muscle -http://purl.obolibrary.org/obo/UBERON_0001504;lumbrical muscle of pes;lumbrical of foot -http://purl.obolibrary.org/obo/UBERON_0001504;lumbrical muscle of pes;pes lumbrical -http://purl.obolibrary.org/obo/UBERON_0001504;lumbrical muscle of pes;pes lumbrical muscle -http://purl.obolibrary.org/obo/UBERON_0001505;coracobrachialis muscle;Pirogoff's aponeurosis -http://purl.obolibrary.org/obo/UBERON_0001505;coracobrachialis muscle;coracobrachial -http://purl.obolibrary.org/obo/UBERON_0001505;coracobrachialis muscle;coracobrachialis -http://purl.obolibrary.org/obo/UBERON_0001506;brachialis muscle;Casserio's muscle -http://purl.obolibrary.org/obo/UBERON_0001507;biceps brachii; -http://purl.obolibrary.org/obo/UBERON_0001508;('Aortic arch', 'arch of aorta');aortic arch -http://purl.obolibrary.org/obo/UBERON_0001508;('Aortic arch', 'arch of aorta');arcus aortae -http://purl.obolibrary.org/obo/UBERON_0001508;('Aortic arch', 'arch of aorta');thoracic aorta -http://purl.obolibrary.org/obo/UBERON_0001508;arch of aorta;aortic arch -http://purl.obolibrary.org/obo/UBERON_0001508;arch of aorta;arcus aortae -http://purl.obolibrary.org/obo/UBERON_0001508;arch of aorta;thoracic aorta -http://purl.obolibrary.org/obo/UBERON_0001509;triceps brachii;triceps -http://purl.obolibrary.org/obo/UBERON_0001509;triceps brachii;triceps brachii muscle -http://purl.obolibrary.org/obo/UBERON_0001510;skin of knee;knee skin -http://purl.obolibrary.org/obo/UBERON_0001510;skin of knee;knee zone of skin -http://purl.obolibrary.org/obo/UBERON_0001510;skin of knee;zone of skin of knee -http://purl.obolibrary.org/obo/UBERON_0001511;skin of leg;leg skin -http://purl.obolibrary.org/obo/UBERON_0001511;skin of leg;leg zone of skin -http://purl.obolibrary.org/obo/UBERON_0001511;skin of leg;zone of skin of leg -http://purl.obolibrary.org/obo/UBERON_0001512;skin of ankle;ankle skin -http://purl.obolibrary.org/obo/UBERON_0001512;skin of ankle;ankle zone of skin -http://purl.obolibrary.org/obo/UBERON_0001512;skin of ankle;tarsal region skin -http://purl.obolibrary.org/obo/UBERON_0001512;skin of ankle;zone of skin of ankle -http://purl.obolibrary.org/obo/UBERON_0001513;skin of pes;foot skin -http://purl.obolibrary.org/obo/UBERON_0001513;skin of pes;skin of foot -http://purl.obolibrary.org/obo/UBERON_0001514;descending aorta;aorta descendens -http://purl.obolibrary.org/obo/UBERON_0001514;descending aorta;pars descendens aortae -http://purl.obolibrary.org/obo/UBERON_0001515;thoracic aorta;aorta thoracalis -http://purl.obolibrary.org/obo/UBERON_0001515;thoracic aorta;aorta thoracica -http://purl.obolibrary.org/obo/UBERON_0001515;thoracic aorta;pars thoracica aortae -http://purl.obolibrary.org/obo/UBERON_0001515;thoracic aorta;thoracic part of aorta -http://purl.obolibrary.org/obo/UBERON_0001516;abdominal aorta;abdominal part of aorta -http://purl.obolibrary.org/obo/UBERON_0001516;abdominal aorta;aorta abdominalis -http://purl.obolibrary.org/obo/UBERON_0001516;abdominal aorta;descending abdominal aorta -http://purl.obolibrary.org/obo/UBERON_0001516;abdominal aorta;pars abdominalis aortae -http://purl.obolibrary.org/obo/UBERON_0001517;skin of elbow;cubital region zone of skin -http://purl.obolibrary.org/obo/UBERON_0001517;skin of elbow;elbow skin -http://purl.obolibrary.org/obo/UBERON_0001517;skin of elbow;elbow zone of skin -http://purl.obolibrary.org/obo/UBERON_0001517;skin of elbow;zone of skin of cubital region -http://purl.obolibrary.org/obo/UBERON_0001517;skin of elbow;zone of skin of elbow -http://purl.obolibrary.org/obo/UBERON_0001518;skin of wrist;carpal region zone of skin -http://purl.obolibrary.org/obo/UBERON_0001518;skin of wrist;wrist skin -http://purl.obolibrary.org/obo/UBERON_0001518;skin of wrist;wrist zone of skin -http://purl.obolibrary.org/obo/UBERON_0001518;skin of wrist;zone of skin of carpal region -http://purl.obolibrary.org/obo/UBERON_0001518;skin of wrist;zone of skin of wrist -http://purl.obolibrary.org/obo/UBERON_0001519;skin of manus;hand skin -http://purl.obolibrary.org/obo/UBERON_0001519;skin of manus;manus skin -http://purl.obolibrary.org/obo/UBERON_0001519;skin of manus;skin of hand -http://purl.obolibrary.org/obo/UBERON_0001520;pronator teres; -http://purl.obolibrary.org/obo/UBERON_0001521;flexor carpi radialis muscle;flexor carpi radialis -http://purl.obolibrary.org/obo/UBERON_0001522;flexor carpi ulnaris muscle;flexor carpi ulnaris -http://purl.obolibrary.org/obo/UBERON_0001523;flexor digitorum profundus;flexor digitorum profundus muscle -http://purl.obolibrary.org/obo/UBERON_0001524;extensor carpi radialis longus muscle;extensor carpi radialis longus -http://purl.obolibrary.org/obo/UBERON_0001525;extensor carpi radialis brevis muscle;extensor carpi radialis brevis -http://purl.obolibrary.org/obo/UBERON_0001525;extensor carpi radialis brevis muscle;musculus extensor carpi radialis brevis -http://purl.obolibrary.org/obo/UBERON_0001526;extensor carpi ulnaris muscle;ECU muscle -http://purl.obolibrary.org/obo/UBERON_0001526;extensor carpi ulnaris muscle;extensor carpi ulnaris -http://purl.obolibrary.org/obo/UBERON_0001526;extensor carpi ulnaris muscle;musculus extensor carpi ulnaris -http://purl.obolibrary.org/obo/UBERON_0001527;abductor pollicis longus; -http://purl.obolibrary.org/obo/UBERON_0001528;radio-ulnar joint;articulation of the radus and ulna -http://purl.obolibrary.org/obo/UBERON_0001528;radio-ulnar joint;radioulnar joint -http://purl.obolibrary.org/obo/UBERON_0001529;brachiocephalic artery;brachiocephalic trunk -http://purl.obolibrary.org/obo/UBERON_0001529;brachiocephalic artery;innominate artery -http://purl.obolibrary.org/obo/UBERON_0001529;brachiocephalic artery;truncus brachiocephalicus -http://purl.obolibrary.org/obo/UBERON_0001530;common carotid artery plus branches;a. carotis communis -http://purl.obolibrary.org/obo/UBERON_0001530;common carotid artery plus branches;carotid artery -http://purl.obolibrary.org/obo/UBERON_0001530;common carotid artery plus branches;carotid artery system -http://purl.obolibrary.org/obo/UBERON_0001530;common carotid artery plus branches;common carotid artery -http://purl.obolibrary.org/obo/UBERON_0001530;common carotid artery plus branches;trunk of common carotid tree -http://purl.obolibrary.org/obo/UBERON_0001531;right common carotid artery plus branches;right common carotid artery -http://purl.obolibrary.org/obo/UBERON_0001531;right common carotid artery plus branches;trunk of right common carotid tree -http://purl.obolibrary.org/obo/UBERON_0001532;internal carotid artery;cranial carotid artery -http://purl.obolibrary.org/obo/UBERON_0001532;internal carotid artery;internal carotid -http://purl.obolibrary.org/obo/UBERON_0001533;subclavian artery;arteria subclavia -http://purl.obolibrary.org/obo/UBERON_0001533;subclavian artery;arterial tree of upper limb -http://purl.obolibrary.org/obo/UBERON_0001533;subclavian artery;pectoral artery -http://purl.obolibrary.org/obo/UBERON_0001533;subclavian artery;subclavian arterial tree -http://purl.obolibrary.org/obo/UBERON_0001534;right subclavian artery;arteria subclavia dextra -http://purl.obolibrary.org/obo/UBERON_0001535;vertebral artery; -http://purl.obolibrary.org/obo/UBERON_0001536;left common carotid artery plus branches;left common carotid artery -http://purl.obolibrary.org/obo/UBERON_0001536;left common carotid artery plus branches;trunk of left common carotid tree -http://purl.obolibrary.org/obo/UBERON_0001537;anterior tibial artery; -http://purl.obolibrary.org/obo/UBERON_0001538;posterior tibial artery; -http://purl.obolibrary.org/obo/UBERON_0001539;dorsalis pedis artery;arteria dorsalis pedis -http://purl.obolibrary.org/obo/UBERON_0001539;dorsalis pedis artery;dorsal artery of foot -http://purl.obolibrary.org/obo/UBERON_0001540;peroneal artery;arteria fibularis -http://purl.obolibrary.org/obo/UBERON_0001540;peroneal artery;fibular artery -http://purl.obolibrary.org/obo/UBERON_0001541;medial plantar artery; -http://purl.obolibrary.org/obo/UBERON_0001542;inguinal lymph node; -http://purl.obolibrary.org/obo/UBERON_0001543;popliteal lymph node; -http://purl.obolibrary.org/obo/UBERON_0001544;popliteal vein; -http://purl.obolibrary.org/obo/UBERON_0001545;anterior tibial vein; -http://purl.obolibrary.org/obo/UBERON_0001546;posterior tibial vein; -http://purl.obolibrary.org/obo/UBERON_0001547;small saphenous vein;lesser saphenous vein -http://purl.obolibrary.org/obo/UBERON_0001547;small saphenous vein;short saphenous vein -http://purl.obolibrary.org/obo/UBERON_0001547;small saphenous vein;vena saphena parva -http://purl.obolibrary.org/obo/UBERON_0001548;lateral marginal vein;lateral marginal vein of foot -http://purl.obolibrary.org/obo/UBERON_0001548;lateral marginal vein;vena marginalis lateralis -http://purl.obolibrary.org/obo/UBERON_0001548;lateral marginal vein;vena marginalis lateralis pedis -http://purl.obolibrary.org/obo/UBERON_0001549;dorsal metatarsal vein;metatarsal vein -http://purl.obolibrary.org/obo/UBERON_0001550;medial marginal vein;medial marginal vein of foot -http://purl.obolibrary.org/obo/UBERON_0001550;medial marginal vein;vena marginalis medialis -http://purl.obolibrary.org/obo/UBERON_0001550;medial marginal vein;vena marginalis medialis pedis -http://purl.obolibrary.org/obo/UBERON_0001551;vein of hindlimb zeugopod;sural vein -http://purl.obolibrary.org/obo/UBERON_0001552;kidney arcuate artery;renal arcuate artery -http://purl.obolibrary.org/obo/UBERON_0001553;medial tarsal artery; -http://purl.obolibrary.org/obo/UBERON_0001554;skin of hip;hip region zone of skin -http://purl.obolibrary.org/obo/UBERON_0001554;skin of hip;hip skin -http://purl.obolibrary.org/obo/UBERON_0001554;skin of hip;hip zone of skin -http://purl.obolibrary.org/obo/UBERON_0001554;skin of hip;regio coxae zone of skin -http://purl.obolibrary.org/obo/UBERON_0001554;skin of hip;zone of skin of hip -http://purl.obolibrary.org/obo/UBERON_0001554;skin of hip;zone of skin of hip region -http://purl.obolibrary.org/obo/UBERON_0001554;skin of hip;zone of skin of regio coxae -http://purl.obolibrary.org/obo/UBERON_0001555;digestive tract;alimentary canal -http://purl.obolibrary.org/obo/UBERON_0001555;digestive tract;alimentary tract -http://purl.obolibrary.org/obo/UBERON_0001555;digestive tract;digestive canal -http://purl.obolibrary.org/obo/UBERON_0001555;digestive tract;digestive tube -http://purl.obolibrary.org/obo/UBERON_0001555;digestive tract;enteric tract -http://purl.obolibrary.org/obo/UBERON_0001555;digestive tract;gut -http://purl.obolibrary.org/obo/UBERON_0001555;digestive tract;gut tube -http://purl.obolibrary.org/obo/UBERON_0001556;lower urinary tract; -http://purl.obolibrary.org/obo/UBERON_0001557;upper respiratory tract; -http://purl.obolibrary.org/obo/UBERON_0001558;lower respiratory tract;lower respiratory system -http://purl.obolibrary.org/obo/UBERON_0001560;neck of organ;organ neck -http://purl.obolibrary.org/obo/UBERON_0001561;subcostal artery; -http://purl.obolibrary.org/obo/UBERON_0001562;digastric muscle group;digastric -http://purl.obolibrary.org/obo/UBERON_0001562;digastric muscle group;musculus digastricus -http://purl.obolibrary.org/obo/UBERON_0001563;longus capitis muscle;longus capitis -http://purl.obolibrary.org/obo/UBERON_0001563;longus capitis muscle;m. rectus capitis posterior -http://purl.obolibrary.org/obo/UBERON_0001564;mylohyoid muscle;musculus mylohyoideus -http://purl.obolibrary.org/obo/UBERON_0001564;mylohyoid muscle;mylohyoid -http://purl.obolibrary.org/obo/UBERON_0001564;mylohyoid muscle;mylohyoideus -http://purl.obolibrary.org/obo/UBERON_0001564;mylohyoid muscle;mylohyoideus muscle -http://purl.obolibrary.org/obo/UBERON_0001565;geniohyoid muscle;genio-hyoideus -http://purl.obolibrary.org/obo/UBERON_0001565;geniohyoid muscle;genio-hyoideus muscle -http://purl.obolibrary.org/obo/UBERON_0001565;geniohyoid muscle;geniohyoid -http://purl.obolibrary.org/obo/UBERON_0001565;geniohyoid muscle;geniohyoideus -http://purl.obolibrary.org/obo/UBERON_0001565;geniohyoid muscle;geniohyoideus muscle -http://purl.obolibrary.org/obo/UBERON_0001565;geniohyoid muscle;m. geniohyoideus -http://purl.obolibrary.org/obo/UBERON_0001566;cricothyroid muscle;M. cricothyroideus -http://purl.obolibrary.org/obo/UBERON_0001566;cricothyroid muscle;cricothyroid -http://purl.obolibrary.org/obo/UBERON_0001566;cricothyroid muscle;cricothyroideus -http://purl.obolibrary.org/obo/UBERON_0001566;cricothyroid muscle;musculus cricothyroideus -http://purl.obolibrary.org/obo/UBERON_0001567;cheek;buccae -http://purl.obolibrary.org/obo/UBERON_0001567;cheek;jowl -http://purl.obolibrary.org/obo/UBERON_0001568;muscle of larynx;laryngeal muscle -http://purl.obolibrary.org/obo/UBERON_0001568;muscle of larynx;larynx muscle -http://purl.obolibrary.org/obo/UBERON_0001568;muscle of larynx;larynx muscle organ -http://purl.obolibrary.org/obo/UBERON_0001568;muscle of larynx;muscle organ of larynx -http://purl.obolibrary.org/obo/UBERON_0001568;muscle of larynx;musculi laryngeales -http://purl.obolibrary.org/obo/UBERON_0001569;constrictor muscle of pharynx;pharyngeal constrictor muscle -http://purl.obolibrary.org/obo/UBERON_0001570;inferior pharyngeal constrictor;constrictor muscle of pharynx inferior -http://purl.obolibrary.org/obo/UBERON_0001570;inferior pharyngeal constrictor;constrictores pharyngis caudales -http://purl.obolibrary.org/obo/UBERON_0001570;inferior pharyngeal constrictor;inferior constrictor -http://purl.obolibrary.org/obo/UBERON_0001570;inferior pharyngeal constrictor;inferior constrictor of pharynx -http://purl.obolibrary.org/obo/UBERON_0001570;inferior pharyngeal constrictor;inferior constrictor pharyngeus -http://purl.obolibrary.org/obo/UBERON_0001570;inferior pharyngeal constrictor;musculus constrictor pharyngis inferior -http://purl.obolibrary.org/obo/UBERON_0001571;genioglossus muscle;genioglossus -http://purl.obolibrary.org/obo/UBERON_0001571;genioglossus muscle;m. genioglossus -http://purl.obolibrary.org/obo/UBERON_0001571;genioglossus muscle;musculus genioglossus -http://purl.obolibrary.org/obo/UBERON_0001572;hyoglossus muscle;hyoglossus -http://purl.obolibrary.org/obo/UBERON_0001572;hyoglossus muscle;m. hyoglossus -http://purl.obolibrary.org/obo/UBERON_0001573;styloglossus;syloglossus muscle -http://purl.obolibrary.org/obo/UBERON_0001574;palatoglossus muscle;palatoglossal -http://purl.obolibrary.org/obo/UBERON_0001574;palatoglossus muscle;palatoglossal muscle -http://purl.obolibrary.org/obo/UBERON_0001574;palatoglossus muscle;palatoglossus -http://purl.obolibrary.org/obo/UBERON_0001575;extrinsic muscle of tongue;extrinsic lingual muscle -http://purl.obolibrary.org/obo/UBERON_0001575;extrinsic muscle of tongue;extrinsic tongue muscle -http://purl.obolibrary.org/obo/UBERON_0001576;intrinsic muscle of tongue;intrinsic lingual muscle -http://purl.obolibrary.org/obo/UBERON_0001576;intrinsic muscle of tongue;intrinsic tongue muscle -http://purl.obolibrary.org/obo/UBERON_0001577;facial muscle;face muscle -http://purl.obolibrary.org/obo/UBERON_0001577;facial muscle;face muscle organ -http://purl.obolibrary.org/obo/UBERON_0001577;facial muscle;facial muscle -http://purl.obolibrary.org/obo/UBERON_0001577;facial muscle;facial muscle proper -http://purl.obolibrary.org/obo/UBERON_0001577;facial muscle;facial nerve innervated muscle -http://purl.obolibrary.org/obo/UBERON_0001577;facial muscle;facial nerve muscle -http://purl.obolibrary.org/obo/UBERON_0001577;facial muscle;muscle of face -http://purl.obolibrary.org/obo/UBERON_0001577;facial muscle;muscle organ of face -http://purl.obolibrary.org/obo/UBERON_0001578;orbicularis oculi muscle;orbicularis oculi -http://purl.obolibrary.org/obo/UBERON_0001579;olfactory nerve;first cranial nerve -http://purl.obolibrary.org/obo/UBERON_0001579;olfactory nerve;nervus olfactorius [i] -http://purl.obolibrary.org/obo/UBERON_0001579;olfactory nerve;olfactory I -http://purl.obolibrary.org/obo/UBERON_0001579;olfactory nerve;olfactory i nerve -http://purl.obolibrary.org/obo/UBERON_0001579;olfactory nerve;olfactory nerve [I] -http://purl.obolibrary.org/obo/UBERON_0001580;levator labii superioris; -http://purl.obolibrary.org/obo/UBERON_0001581;depressor labii inferioris; -http://purl.obolibrary.org/obo/UBERON_0001582;buccinator muscle;buccinator -http://purl.obolibrary.org/obo/UBERON_0001582;buccinator muscle;musculus buccinator -http://purl.obolibrary.org/obo/UBERON_0001583;extrinsic auricular muscle; -http://purl.obolibrary.org/obo/UBERON_0001584;left subclavian artery;arteria subclavia (sinistra) -http://purl.obolibrary.org/obo/UBERON_0001585;anterior vena cava;superior caval vein -http://purl.obolibrary.org/obo/UBERON_0001585;anterior vena cava;superior vena cava -http://purl.obolibrary.org/obo/UBERON_0001586;internal jugular vein;internal jugular -http://purl.obolibrary.org/obo/UBERON_0001586;internal jugular vein;internal jugular venous tree -http://purl.obolibrary.org/obo/UBERON_0001587;subclavian vein;subclavian venous tree -http://purl.obolibrary.org/obo/UBERON_0001587;subclavian vein;vena subclavia -http://purl.obolibrary.org/obo/UBERON_0001588;vertebral vein; -http://purl.obolibrary.org/obo/UBERON_0001589;internal thoracic vein; -http://purl.obolibrary.org/obo/UBERON_0001590;pericardiacophrenic vein; -http://purl.obolibrary.org/obo/UBERON_0001591;thymic vein;thymic tributary of brachiocephalic vein -http://purl.obolibrary.org/obo/UBERON_0001591;thymic vein;vena thymica -http://purl.obolibrary.org/obo/UBERON_0001592;bronchial vein;bronchial venous tree -http://purl.obolibrary.org/obo/UBERON_0001593;venous plexus;venous network -http://purl.obolibrary.org/obo/UBERON_0001594;azygos vein;azygos venous tree -http://purl.obolibrary.org/obo/UBERON_0001595;auricular muscle;muscle of auricle -http://purl.obolibrary.org/obo/UBERON_0001595;auricular muscle;musculi auriculares -http://purl.obolibrary.org/obo/UBERON_0001596;intrinsic auricular muscle; -http://purl.obolibrary.org/obo/UBERON_0001597;masseter muscle;masseter -http://purl.obolibrary.org/obo/UBERON_0001598;temporalis muscle;musculus temporalis -http://purl.obolibrary.org/obo/UBERON_0001598;temporalis muscle;temporal muscle -http://purl.obolibrary.org/obo/UBERON_0001598;temporalis muscle;temporalis -http://purl.obolibrary.org/obo/UBERON_0001599;stapedius muscle;stapedius -http://purl.obolibrary.org/obo/UBERON_0001600;tensor tympani;eustachian muscle -http://purl.obolibrary.org/obo/UBERON_0001600;tensor tympani;tensor tympani muscle -http://purl.obolibrary.org/obo/UBERON_0001601;extra-ocular muscle;extra-ocular skeletal muscle -http://purl.obolibrary.org/obo/UBERON_0001601;extra-ocular muscle;extraocular muscle -http://purl.obolibrary.org/obo/UBERON_0001601;extra-ocular muscle;extraocular musculature -http://purl.obolibrary.org/obo/UBERON_0001601;extra-ocular muscle;extraocular skeletal muscle -http://purl.obolibrary.org/obo/UBERON_0001601;extra-ocular muscle;extrinsic eye muscle -http://purl.obolibrary.org/obo/UBERON_0001601;extra-ocular muscle;extrinsic muscle of eyeball -http://purl.obolibrary.org/obo/UBERON_0001601;extra-ocular muscle;extrinsic ocular muscle -http://purl.obolibrary.org/obo/UBERON_0001602;medial rectus extraocular muscle;m. rectus medialis -http://purl.obolibrary.org/obo/UBERON_0001602;medial rectus extraocular muscle;medial rectus -http://purl.obolibrary.org/obo/UBERON_0001602;medial rectus extraocular muscle;medial rectus extraocular muscle -http://purl.obolibrary.org/obo/UBERON_0001602;medial rectus extraocular muscle;medial rectus muscle -http://purl.obolibrary.org/obo/UBERON_0001602;medial rectus extraocular muscle;musculus rectus medialis -http://purl.obolibrary.org/obo/UBERON_0001603;lateral rectus extra-ocular muscle;M. rectus lateralis -http://purl.obolibrary.org/obo/UBERON_0001603;lateral rectus extra-ocular muscle;lateral rectus -http://purl.obolibrary.org/obo/UBERON_0001603;lateral rectus extra-ocular muscle;lateral rectus extraocular muscle -http://purl.obolibrary.org/obo/UBERON_0001603;lateral rectus extra-ocular muscle;lateral rectus muscle -http://purl.obolibrary.org/obo/UBERON_0001603;lateral rectus extra-ocular muscle;musculus rectus lateralis -http://purl.obolibrary.org/obo/UBERON_0001603;lateral rectus extra-ocular muscle;posterior rectus -http://purl.obolibrary.org/obo/UBERON_0001604;levator palpebrae superioris; -http://purl.obolibrary.org/obo/UBERON_0001605;ciliary muscle;Bowman`s muscles -http://purl.obolibrary.org/obo/UBERON_0001605;ciliary muscle;ciliaris -http://purl.obolibrary.org/obo/UBERON_0001605;ciliary muscle;musculus ciliaris -http://purl.obolibrary.org/obo/UBERON_0001605;ciliary muscle;musculus ciliarus -http://purl.obolibrary.org/obo/UBERON_0001606;muscle of iris;iris muscle -http://purl.obolibrary.org/obo/UBERON_0001606;muscle of iris;iris muscle organ -http://purl.obolibrary.org/obo/UBERON_0001606;muscle of iris;muscle organ of iris -http://purl.obolibrary.org/obo/UBERON_0001607;sphincter pupillae;M. sphincter pupillae -http://purl.obolibrary.org/obo/UBERON_0001607;sphincter pupillae;circular fibers -http://purl.obolibrary.org/obo/UBERON_0001607;sphincter pupillae;constrictor pupillae -http://purl.obolibrary.org/obo/UBERON_0001607;sphincter pupillae;iris constrictor -http://purl.obolibrary.org/obo/UBERON_0001607;sphincter pupillae;iris constrictor muscle -http://purl.obolibrary.org/obo/UBERON_0001607;sphincter pupillae;iris sphincter -http://purl.obolibrary.org/obo/UBERON_0001607;sphincter pupillae;iris sphincter muscle -http://purl.obolibrary.org/obo/UBERON_0001607;sphincter pupillae;m. sphincter pupillae -http://purl.obolibrary.org/obo/UBERON_0001607;sphincter pupillae;musculus sphincter pupillae -http://purl.obolibrary.org/obo/UBERON_0001607;sphincter pupillae;pupillary constrictor muscle -http://purl.obolibrary.org/obo/UBERON_0001607;sphincter pupillae;pupillary sphincter -http://purl.obolibrary.org/obo/UBERON_0001607;sphincter pupillae;pupillary sphincter muscle -http://purl.obolibrary.org/obo/UBERON_0001607;sphincter pupillae;sphincter muscle of pupil -http://purl.obolibrary.org/obo/UBERON_0001607;sphincter pupillae;sphincter pupillae -http://purl.obolibrary.org/obo/UBERON_0001607;sphincter pupillae;sphincter pupillae muscle -http://purl.obolibrary.org/obo/UBERON_0001607;sphincter pupillae;spincter pupillae -http://purl.obolibrary.org/obo/UBERON_0001608;dilatator pupillae;dilator muscle of pupil -http://purl.obolibrary.org/obo/UBERON_0001608;dilatator pupillae;dilator of pupil -http://purl.obolibrary.org/obo/UBERON_0001608;dilatator pupillae;dilator pupillae -http://purl.obolibrary.org/obo/UBERON_0001608;dilatator pupillae;dilator pupillae muscle -http://purl.obolibrary.org/obo/UBERON_0001608;dilatator pupillae;iris dilator muscle -http://purl.obolibrary.org/obo/UBERON_0001608;dilatator pupillae;musculus dilatator pupillae -http://purl.obolibrary.org/obo/UBERON_0001608;dilatator pupillae;pupillary dilator muscle -http://purl.obolibrary.org/obo/UBERON_0001608;dilatator pupillae;radial muscle of iris -http://purl.obolibrary.org/obo/UBERON_0001609;isthmus of thyroid gland;isthmus glandulae thyroideae -http://purl.obolibrary.org/obo/UBERON_0001609;isthmus of thyroid gland;thyroid gland isthmus -http://purl.obolibrary.org/obo/UBERON_0001609;isthmus of thyroid gland;thyroid isthmus -http://purl.obolibrary.org/obo/UBERON_0001610;lingual artery;lingual branch of external carotid artery -http://purl.obolibrary.org/obo/UBERON_0001611;sublingual artery;sublingual branch of lingual artery -http://purl.obolibrary.org/obo/UBERON_0001612;facial artery; -http://purl.obolibrary.org/obo/UBERON_0001613;occipital artery; -http://purl.obolibrary.org/obo/UBERON_0001614;superficial temporal artery; -http://purl.obolibrary.org/obo/UBERON_0001615;transverse facial artery; -http://purl.obolibrary.org/obo/UBERON_0001616;maxillary artery; -http://purl.obolibrary.org/obo/UBERON_0001617;mental artery;mental branch of inferior alveolar artery -http://purl.obolibrary.org/obo/UBERON_0001617;mental artery;ramus mentalis (arteria alveolaris inferior) -http://purl.obolibrary.org/obo/UBERON_0001618;buccal artery; -http://purl.obolibrary.org/obo/UBERON_0001619;ophthalmic artery; -http://purl.obolibrary.org/obo/UBERON_0001620;central retinal artery;Zinn's artery -http://purl.obolibrary.org/obo/UBERON_0001620;central retinal artery;central artery of retina -http://purl.obolibrary.org/obo/UBERON_0001620;central retinal artery;retinal artery -http://purl.obolibrary.org/obo/UBERON_0001621;coronary artery;coronary arterial tree -http://purl.obolibrary.org/obo/UBERON_0001622;lacrimal artery; -http://purl.obolibrary.org/obo/UBERON_0001623;dorsal nasal artery;dorsal nasal branch of ophthalmic artery -http://purl.obolibrary.org/obo/UBERON_0001623;dorsal nasal artery;external nasal artery -http://purl.obolibrary.org/obo/UBERON_0001624;anterior cerebral artery; -http://purl.obolibrary.org/obo/UBERON_0001625;right coronary artery; -http://purl.obolibrary.org/obo/UBERON_0001626;left coronary artery; -http://purl.obolibrary.org/obo/UBERON_0001627;middle cerebral artery;Sylvian artery -http://purl.obolibrary.org/obo/UBERON_0001628;posterior communicating artery;caudal communicating segment -http://purl.obolibrary.org/obo/UBERON_0001628;posterior communicating artery;posterior communicating segment of the basilar artery -http://purl.obolibrary.org/obo/UBERON_0001629;carotid body;carotid glomus -http://purl.obolibrary.org/obo/UBERON_0001629;carotid body;glomus caroticum -http://purl.obolibrary.org/obo/UBERON_0001630;muscle organ;muscle -http://purl.obolibrary.org/obo/UBERON_0001631;thoracic duct;trunk of thoracic duct tree -http://purl.obolibrary.org/obo/UBERON_0001632;temporal artery; -http://purl.obolibrary.org/obo/UBERON_0001633;basilar artery; -http://purl.obolibrary.org/obo/UBERON_0001634;mesencephalic artery;MsA -http://purl.obolibrary.org/obo/UBERON_0001635;superior cerebellar artery; -http://purl.obolibrary.org/obo/UBERON_0001636;posterior cerebral artery; -http://purl.obolibrary.org/obo/UBERON_0001637;artery;arterial subtree -http://purl.obolibrary.org/obo/UBERON_0001637;artery;arterial system -http://purl.obolibrary.org/obo/UBERON_0001637;artery;arterial tree organ part -http://purl.obolibrary.org/obo/UBERON_0001637;artery;arterial vessel -http://purl.obolibrary.org/obo/UBERON_0001637;artery;arteries -http://purl.obolibrary.org/obo/UBERON_0001638;vein;vascular element -http://purl.obolibrary.org/obo/UBERON_0001638;vein;vena -http://purl.obolibrary.org/obo/UBERON_0001638;vein;venae -http://purl.obolibrary.org/obo/UBERON_0001638;vein;venous subtree -http://purl.obolibrary.org/obo/UBERON_0001638;vein;venous tree organ part -http://purl.obolibrary.org/obo/UBERON_0001638;vein;venous vessel -http://purl.obolibrary.org/obo/UBERON_0001639;hepatic portal vein;hepatic portal tree -http://purl.obolibrary.org/obo/UBERON_0001639;hepatic portal vein;liver portal vein -http://purl.obolibrary.org/obo/UBERON_0001639;hepatic portal vein;portal vein of liver -http://purl.obolibrary.org/obo/UBERON_0001640;celiac artery;arteria coeliaca -http://purl.obolibrary.org/obo/UBERON_0001640;celiac artery;arteria cœliaca -http://purl.obolibrary.org/obo/UBERON_0001640;celiac artery;celiac tree -http://purl.obolibrary.org/obo/UBERON_0001640;celiac artery;celiac trunk -http://purl.obolibrary.org/obo/UBERON_0001640;celiac artery;coeliac artery -http://purl.obolibrary.org/obo/UBERON_0001640;celiac artery;coeliac axis -http://purl.obolibrary.org/obo/UBERON_0001640;celiac artery;coeliac trunck -http://purl.obolibrary.org/obo/UBERON_0001640;celiac artery;coeliac trunk -http://purl.obolibrary.org/obo/UBERON_0001640;celiac artery;truncus coeliacus -http://purl.obolibrary.org/obo/UBERON_0001640;celiac artery;truncus cœliacus -http://purl.obolibrary.org/obo/UBERON_0001641;transverse sinus;sinus transversus durae matris -http://purl.obolibrary.org/obo/UBERON_0001642;superior sagittal sinus; -http://purl.obolibrary.org/obo/UBERON_0001643;oculomotor nerve;3n -http://purl.obolibrary.org/obo/UBERON_0001643;oculomotor nerve;CN-III -http://purl.obolibrary.org/obo/UBERON_0001643;oculomotor nerve;cranial nerve III -http://purl.obolibrary.org/obo/UBERON_0001643;oculomotor nerve;nerve III -http://purl.obolibrary.org/obo/UBERON_0001643;oculomotor nerve;nervus oculomotorius -http://purl.obolibrary.org/obo/UBERON_0001643;oculomotor nerve;nervus oculomotorius [III] -http://purl.obolibrary.org/obo/UBERON_0001643;oculomotor nerve;occulomotor -http://purl.obolibrary.org/obo/UBERON_0001643;oculomotor nerve;oculomotor III -http://purl.obolibrary.org/obo/UBERON_0001643;oculomotor nerve;oculomotor III nerve -http://purl.obolibrary.org/obo/UBERON_0001643;oculomotor nerve;oculomotor nerve [III] -http://purl.obolibrary.org/obo/UBERON_0001643;oculomotor nerve;oculomotor nerve or its root -http://purl.obolibrary.org/obo/UBERON_0001643;oculomotor nerve;oculomotor nerve tree -http://purl.obolibrary.org/obo/UBERON_0001643;oculomotor nerve;third cranial nerve -http://purl.obolibrary.org/obo/UBERON_0001644;trochlear nerve;cranial nerve IV -http://purl.obolibrary.org/obo/UBERON_0001644;trochlear nerve;fourth cranial nerve -http://purl.obolibrary.org/obo/UBERON_0001644;trochlear nerve;nervus trochlearis [IV] -http://purl.obolibrary.org/obo/UBERON_0001644;trochlear nerve;superior oblique nerve -http://purl.obolibrary.org/obo/UBERON_0001644;trochlear nerve;trochlear IV nerve -http://purl.obolibrary.org/obo/UBERON_0001644;trochlear nerve;trochlear nerve [IV] -http://purl.obolibrary.org/obo/UBERON_0001644;trochlear nerve;trochlear nerve tree -http://purl.obolibrary.org/obo/UBERON_0001645;trigeminal nerve;5n -http://purl.obolibrary.org/obo/UBERON_0001645;trigeminal nerve;CN-V -http://purl.obolibrary.org/obo/UBERON_0001645;trigeminal nerve;cranial nerve V -http://purl.obolibrary.org/obo/UBERON_0001645;trigeminal nerve;fifth cranial nerve -http://purl.obolibrary.org/obo/UBERON_0001645;trigeminal nerve;nerve V -http://purl.obolibrary.org/obo/UBERON_0001645;trigeminal nerve;nervus trigeminus -http://purl.obolibrary.org/obo/UBERON_0001645;trigeminal nerve;nervus trigeminus [v] -http://purl.obolibrary.org/obo/UBERON_0001645;trigeminal nerve;trigeminal V -http://purl.obolibrary.org/obo/UBERON_0001645;trigeminal nerve;trigeminal nerve [V] -http://purl.obolibrary.org/obo/UBERON_0001645;trigeminal nerve;trigeminal nerve tree -http://purl.obolibrary.org/obo/UBERON_0001645;trigeminal nerve;trigeminal v nerve -http://purl.obolibrary.org/obo/UBERON_0001645;trigeminal nerve;trigeminus -http://purl.obolibrary.org/obo/UBERON_0001646;abducens nerve;abducens VI nerve -http://purl.obolibrary.org/obo/UBERON_0001646;abducens nerve;abducens nerve [VI] -http://purl.obolibrary.org/obo/UBERON_0001646;abducens nerve;abducens nerve tree -http://purl.obolibrary.org/obo/UBERON_0001646;abducens nerve;abducent nerve [VI] -http://purl.obolibrary.org/obo/UBERON_0001646;abducens nerve;lateral rectus nerve -http://purl.obolibrary.org/obo/UBERON_0001646;abducens nerve;nervus abducens -http://purl.obolibrary.org/obo/UBERON_0001646;abducens nerve;nervus abducens [VI] -http://purl.obolibrary.org/obo/UBERON_0001646;abducens nerve;sixth cranial nerve -http://purl.obolibrary.org/obo/UBERON_0001647;facial nerve;7n -http://purl.obolibrary.org/obo/UBERON_0001647;facial nerve;CN-VII -http://purl.obolibrary.org/obo/UBERON_0001647;facial nerve;branchiomeric cranial nerve -http://purl.obolibrary.org/obo/UBERON_0001647;facial nerve;cranial nerve VII -http://purl.obolibrary.org/obo/UBERON_0001647;facial nerve;face nerve -http://purl.obolibrary.org/obo/UBERON_0001647;facial nerve;facial VII -http://purl.obolibrary.org/obo/UBERON_0001647;facial nerve;facial VII nerve -http://purl.obolibrary.org/obo/UBERON_0001647;facial nerve;facial nerve [VII] -http://purl.obolibrary.org/obo/UBERON_0001647;facial nerve;facial nerve or its root -http://purl.obolibrary.org/obo/UBERON_0001647;facial nerve;facial nerve tree -http://purl.obolibrary.org/obo/UBERON_0001647;facial nerve;facial nerve/root -http://purl.obolibrary.org/obo/UBERON_0001647;facial nerve;nerve VII -http://purl.obolibrary.org/obo/UBERON_0001647;facial nerve;nerve of face -http://purl.obolibrary.org/obo/UBERON_0001647;facial nerve;nervus facialis -http://purl.obolibrary.org/obo/UBERON_0001647;facial nerve;nervus facialis [vii] -http://purl.obolibrary.org/obo/UBERON_0001647;facial nerve;seventh cranial nerve -http://purl.obolibrary.org/obo/UBERON_0001648;vestibulocochlear nerve;CN-VIII -http://purl.obolibrary.org/obo/UBERON_0001648;vestibulocochlear nerve;VIII nerve -http://purl.obolibrary.org/obo/UBERON_0001648;vestibulocochlear nerve;VIIIth cranial nerve -http://purl.obolibrary.org/obo/UBERON_0001648;vestibulocochlear nerve;acoustic VIII nerve -http://purl.obolibrary.org/obo/UBERON_0001648;vestibulocochlear nerve;acoustic nerve -http://purl.obolibrary.org/obo/UBERON_0001648;vestibulocochlear nerve;acoustic nerve (Crosby) -http://purl.obolibrary.org/obo/UBERON_0001648;vestibulocochlear nerve;cochlear-vestibular nerve -http://purl.obolibrary.org/obo/UBERON_0001648;vestibulocochlear nerve;cochleovestibular nerve -http://purl.obolibrary.org/obo/UBERON_0001648;vestibulocochlear nerve;cranial nerve VIII -http://purl.obolibrary.org/obo/UBERON_0001648;vestibulocochlear nerve;eighth cranial nerve -http://purl.obolibrary.org/obo/UBERON_0001648;vestibulocochlear nerve;nervus vestibulocochlearis [viii] -http://purl.obolibrary.org/obo/UBERON_0001648;vestibulocochlear nerve;stato-acoustic nerve -http://purl.obolibrary.org/obo/UBERON_0001648;vestibulocochlear nerve;vestibulocochlear VIII nerve -http://purl.obolibrary.org/obo/UBERON_0001648;vestibulocochlear nerve;vestibulocochlear nerve [VIII] -http://purl.obolibrary.org/obo/UBERON_0001648;vestibulocochlear nerve;vestibulocochlear nerve tree -http://purl.obolibrary.org/obo/UBERON_0001649;glossopharyngeal nerve;9n -http://purl.obolibrary.org/obo/UBERON_0001649;glossopharyngeal nerve;CN-IX -http://purl.obolibrary.org/obo/UBERON_0001649;glossopharyngeal nerve;cranial nerve IX -http://purl.obolibrary.org/obo/UBERON_0001649;glossopharyngeal nerve;glossopharyngeal IX -http://purl.obolibrary.org/obo/UBERON_0001649;glossopharyngeal nerve;glossopharyngeal IX nerve -http://purl.obolibrary.org/obo/UBERON_0001649;glossopharyngeal nerve;glossopharyngeal nerve [IX] -http://purl.obolibrary.org/obo/UBERON_0001649;glossopharyngeal nerve;glossopharyngeal nerve tree -http://purl.obolibrary.org/obo/UBERON_0001649;glossopharyngeal nerve;nerve IX -http://purl.obolibrary.org/obo/UBERON_0001649;glossopharyngeal nerve;nervus glossopharyngeus -http://purl.obolibrary.org/obo/UBERON_0001649;glossopharyngeal nerve;nervus glossopharyngeus [ix] -http://purl.obolibrary.org/obo/UBERON_0001649;glossopharyngeal nerve;ninth cranial nerve -http://purl.obolibrary.org/obo/UBERON_0001650;hypoglossal nerve;12n -http://purl.obolibrary.org/obo/UBERON_0001650;hypoglossal nerve;CN-XII -http://purl.obolibrary.org/obo/UBERON_0001650;hypoglossal nerve;cranial nerve XII -http://purl.obolibrary.org/obo/UBERON_0001650;hypoglossal nerve;hypoglossal XII -http://purl.obolibrary.org/obo/UBERON_0001650;hypoglossal nerve;hypoglossal XII nerve -http://purl.obolibrary.org/obo/UBERON_0001650;hypoglossal nerve;hypoglossal nerve [XII] -http://purl.obolibrary.org/obo/UBERON_0001650;hypoglossal nerve;hypoglossal nerve tree -http://purl.obolibrary.org/obo/UBERON_0001650;hypoglossal nerve;hypoglossal nerve/ root -http://purl.obolibrary.org/obo/UBERON_0001650;hypoglossal nerve;nerve XII -http://purl.obolibrary.org/obo/UBERON_0001650;hypoglossal nerve;nervi hypoglossalis -http://purl.obolibrary.org/obo/UBERON_0001650;hypoglossal nerve;nervus hypoglossus -http://purl.obolibrary.org/obo/UBERON_0001650;hypoglossal nerve;nervus hypoglossus [xii] -http://purl.obolibrary.org/obo/UBERON_0001650;hypoglossal nerve;twelfth cranial nerve -http://purl.obolibrary.org/obo/UBERON_0001651;right pulmonary artery;right main pulmonary artery -http://purl.obolibrary.org/obo/UBERON_0001651;right pulmonary artery;right pulmonary arterial tree -http://purl.obolibrary.org/obo/UBERON_0001652;left pulmonary artery;left main pulmonary artery -http://purl.obolibrary.org/obo/UBERON_0001652;left pulmonary artery;left pulmonary arterial tree -http://purl.obolibrary.org/obo/UBERON_0001653;facial vein;face vein -http://purl.obolibrary.org/obo/UBERON_0001653;facial vein;vein of face -http://purl.obolibrary.org/obo/UBERON_0001654;supraorbital vein;supra-orbital vein -http://purl.obolibrary.org/obo/UBERON_0001655;submental vein; -http://purl.obolibrary.org/obo/UBERON_0001656;retromandibular vein;posterior facial vein -http://purl.obolibrary.org/obo/UBERON_0001657;superficial temporal vein; -http://purl.obolibrary.org/obo/UBERON_0001658;middle temporal vein; -http://purl.obolibrary.org/obo/UBERON_0001659;transverse facial vein; -http://purl.obolibrary.org/obo/UBERON_0001660;maxillary vein; -http://purl.obolibrary.org/obo/UBERON_0001661;deep temporal vein; -http://purl.obolibrary.org/obo/UBERON_0001662;anterior auricular vein; -http://purl.obolibrary.org/obo/UBERON_0001663;cerebral vein; -http://purl.obolibrary.org/obo/UBERON_0001664;inferior cerebral vein; -http://purl.obolibrary.org/obo/UBERON_0001665;triceps surae; -http://purl.obolibrary.org/obo/UBERON_0001666;flexor digitorum longus; -http://purl.obolibrary.org/obo/UBERON_0001667;tibialis posterior;tibialis caudalis -http://purl.obolibrary.org/obo/UBERON_0001668;cerebellar vein;cerebellum vein -http://purl.obolibrary.org/obo/UBERON_0001668;cerebellar vein;epencephalon-1 vein -http://purl.obolibrary.org/obo/UBERON_0001668;cerebellar vein;vein of cerebellum -http://purl.obolibrary.org/obo/UBERON_0001668;cerebellar vein;vein of epencephalon-1 -http://purl.obolibrary.org/obo/UBERON_0001669;superior cerebellar vein;vein of superior cerebellar hemisphere -http://purl.obolibrary.org/obo/UBERON_0001670;inferior cerebellar vein;inferior vein of cerebellar hemisphere -http://purl.obolibrary.org/obo/UBERON_0001671;temporal vein; -http://purl.obolibrary.org/obo/UBERON_0001672;anterior cerebral vein; -http://purl.obolibrary.org/obo/UBERON_0001673;central retinal vein;retinal vein -http://purl.obolibrary.org/obo/UBERON_0001674;masseteric vein; -http://purl.obolibrary.org/obo/UBERON_0001675;trigeminal ganglion;5th ganglion -http://purl.obolibrary.org/obo/UBERON_0001675;trigeminal ganglion;Gasserian ganglion -http://purl.obolibrary.org/obo/UBERON_0001675;trigeminal ganglion;fifth ganglion -http://purl.obolibrary.org/obo/UBERON_0001675;trigeminal ganglion;ganglion of trigeminal complex -http://purl.obolibrary.org/obo/UBERON_0001675;trigeminal ganglion;semilunar ganglion -http://purl.obolibrary.org/obo/UBERON_0001675;trigeminal ganglion;trigeminal V ganglion -http://purl.obolibrary.org/obo/UBERON_0001676;occipital bone; -http://purl.obolibrary.org/obo/UBERON_0001677;sphenoid bone;os sphenoidale -http://purl.obolibrary.org/obo/UBERON_0001677;sphenoid bone;sphenoid -http://purl.obolibrary.org/obo/UBERON_0001677;sphenoid bone;sphenoidal bone -http://purl.obolibrary.org/obo/UBERON_0001678;temporal bone;os temporale -http://purl.obolibrary.org/obo/UBERON_0001679;ethmoid bone;ethmoid -http://purl.obolibrary.org/obo/UBERON_0001679;ethmoid bone;ethmoidal bone -http://purl.obolibrary.org/obo/UBERON_0001679;ethmoid bone;os ethmoidale -http://purl.obolibrary.org/obo/UBERON_0001680;lacrimal bone;lachrymal bone -http://purl.obolibrary.org/obo/UBERON_0001680;lacrimal bone;lacrymal bone -http://purl.obolibrary.org/obo/UBERON_0001681;nasal bone; -http://purl.obolibrary.org/obo/UBERON_0001682;palatine bone;palatine -http://purl.obolibrary.org/obo/UBERON_0001683;jugal bone;cheek bone -http://purl.obolibrary.org/obo/UBERON_0001683;jugal bone;malar bone -http://purl.obolibrary.org/obo/UBERON_0001683;jugal bone;orbital bone -http://purl.obolibrary.org/obo/UBERON_0001683;jugal bone;os zygomaticum -http://purl.obolibrary.org/obo/UBERON_0001683;jugal bone;zygomatic bone -http://purl.obolibrary.org/obo/UBERON_0001684;mandible;inferior maxillary bone -http://purl.obolibrary.org/obo/UBERON_0001684;mandible;mammaliam mandible -http://purl.obolibrary.org/obo/UBERON_0001684;mandible;mandibulla -http://purl.obolibrary.org/obo/UBERON_0001685;hyoid bone; -http://purl.obolibrary.org/obo/UBERON_0001686;auditory ossicle bone;auditory bone -http://purl.obolibrary.org/obo/UBERON_0001686;auditory ossicle bone;middle ear ossicle -http://purl.obolibrary.org/obo/UBERON_0001687;stapes bone;stirrup -http://purl.obolibrary.org/obo/UBERON_0001688;incus bone;incus -http://purl.obolibrary.org/obo/UBERON_0001688;incus bone;incus bone -http://purl.obolibrary.org/obo/UBERON_0001689;malleus bone;malleus -http://purl.obolibrary.org/obo/UBERON_0001690;ear;auditory apparatus -http://purl.obolibrary.org/obo/UBERON_0001690;ear;auris -http://purl.obolibrary.org/obo/UBERON_0001691;external ear;auricular region -http://purl.obolibrary.org/obo/UBERON_0001691;external ear;auricular region of head -http://purl.obolibrary.org/obo/UBERON_0001691;external ear;auris externa -http://purl.obolibrary.org/obo/UBERON_0001691;external ear;outer ear -http://purl.obolibrary.org/obo/UBERON_0001692;basioccipital bone;basi-occipital -http://purl.obolibrary.org/obo/UBERON_0001692;basioccipital bone;basilar part of occipital bone -http://purl.obolibrary.org/obo/UBERON_0001692;basioccipital bone;basioccipital -http://purl.obolibrary.org/obo/UBERON_0001692;basioccipital bone;basioccipital bone -http://purl.obolibrary.org/obo/UBERON_0001693;exoccipital bone;exoccipital -http://purl.obolibrary.org/obo/UBERON_0001693;exoccipital bone;exoccipitals -http://purl.obolibrary.org/obo/UBERON_0001693;exoccipital bone;lateral part of occipital bone -http://purl.obolibrary.org/obo/UBERON_0001693;exoccipital bone;pars lateralis ossis occipitalis -http://purl.obolibrary.org/obo/UBERON_0001694;petrous part of temporal bone;pars petrosa (os temporale) -http://purl.obolibrary.org/obo/UBERON_0001694;petrous part of temporal bone;pars petrosa ossis temporalis -http://purl.obolibrary.org/obo/UBERON_0001694;petrous part of temporal bone;petromastoid part of temporal bone -http://purl.obolibrary.org/obo/UBERON_0001694;petrous part of temporal bone;petrosal -http://purl.obolibrary.org/obo/UBERON_0001694;petrous part of temporal bone;petrosal bone -http://purl.obolibrary.org/obo/UBERON_0001694;petrous part of temporal bone;petrous bone -http://purl.obolibrary.org/obo/UBERON_0001694;petrous part of temporal bone;temporal bone petrous part -http://purl.obolibrary.org/obo/UBERON_0001695;squamous part of temporal bone;os squamosum -http://purl.obolibrary.org/obo/UBERON_0001695;squamous part of temporal bone;pars squamosa (os temporale) -http://purl.obolibrary.org/obo/UBERON_0001695;squamous part of temporal bone;pars squamosa ossis temporalis -http://purl.obolibrary.org/obo/UBERON_0001695;squamous part of temporal bone;squama temporalis -http://purl.obolibrary.org/obo/UBERON_0001695;squamous part of temporal bone;squamosal -http://purl.obolibrary.org/obo/UBERON_0001695;squamous part of temporal bone;squamosal bone -http://purl.obolibrary.org/obo/UBERON_0001695;squamous part of temporal bone;squamosum -http://purl.obolibrary.org/obo/UBERON_0001695;squamous part of temporal bone;squamous bone -http://purl.obolibrary.org/obo/UBERON_0001695;squamous part of temporal bone;temporal bone squamous part -http://purl.obolibrary.org/obo/UBERON_0001697;orbit of skull;bony orbit -http://purl.obolibrary.org/obo/UBERON_0001697;orbit of skull;eye socket -http://purl.obolibrary.org/obo/UBERON_0001697;orbit of skull;orbit of skull -http://purl.obolibrary.org/obo/UBERON_0001698;foramen ovale of skull;foramen ovale (skull) -http://purl.obolibrary.org/obo/UBERON_0001698;foramen ovale of skull;foramen ovale basis cranii -http://purl.obolibrary.org/obo/UBERON_0001698;foramen ovale of skull;foramen ovale cranii -http://purl.obolibrary.org/obo/UBERON_0001698;foramen ovale of skull;foramen ovale of chondrocranium -http://purl.obolibrary.org/obo/UBERON_0001698;foramen ovale of skull;foramen ovale of cranium -http://purl.obolibrary.org/obo/UBERON_0001699;sensory root of facial nerve;sensory component of the VIIth (facial) nerve -http://purl.obolibrary.org/obo/UBERON_0001700;geniculate ganglion;facial VII ganglion -http://purl.obolibrary.org/obo/UBERON_0001700;geniculate ganglion;gVII -http://purl.obolibrary.org/obo/UBERON_0001700;geniculate ganglion;ganglion genicularum -http://purl.obolibrary.org/obo/UBERON_0001700;geniculate ganglion;genicular ganglion -http://purl.obolibrary.org/obo/UBERON_0001701;glossopharyngeal ganglion;gIX -http://purl.obolibrary.org/obo/UBERON_0001701;glossopharyngeal ganglion;ganglion of glossopharyngeal nerve -http://purl.obolibrary.org/obo/UBERON_0001701;glossopharyngeal ganglion;ganglion of glosspharyngeal nerve -http://purl.obolibrary.org/obo/UBERON_0001701;glossopharyngeal ganglion;glossopharyngeal IX ganglion -http://purl.obolibrary.org/obo/UBERON_0001701;glossopharyngeal ganglion;petrosal ganglion -http://purl.obolibrary.org/obo/UBERON_0001702;eyelash;eyelid cilium -http://purl.obolibrary.org/obo/UBERON_0001703;neurocranium;brain box -http://purl.obolibrary.org/obo/UBERON_0001703;neurocranium;brain case -http://purl.obolibrary.org/obo/UBERON_0001703;neurocranium;brain pan -http://purl.obolibrary.org/obo/UBERON_0001703;neurocranium;braincase -http://purl.obolibrary.org/obo/UBERON_0001705;nail;nail/claw -http://purl.obolibrary.org/obo/UBERON_0001706;nasal septum; -http://purl.obolibrary.org/obo/UBERON_0001707;nasal cavity;cavity of nose -http://purl.obolibrary.org/obo/UBERON_0001707;nasal cavity;cavity of olfactory apparatus -http://purl.obolibrary.org/obo/UBERON_0001707;nasal cavity;nasal canal -http://purl.obolibrary.org/obo/UBERON_0001707;nasal cavity;nasal conduit space -http://purl.obolibrary.org/obo/UBERON_0001707;nasal cavity;nasal fossa -http://purl.obolibrary.org/obo/UBERON_0001707;nasal cavity;olfactory chamber cavity -http://purl.obolibrary.org/obo/UBERON_0001708;jaw skeleton;jaw -http://purl.obolibrary.org/obo/UBERON_0001708;jaw skeleton;jaw cartilage -http://purl.obolibrary.org/obo/UBERON_0001708;jaw skeleton;mandibular arch skeleton -http://purl.obolibrary.org/obo/UBERON_0001709;upper jaw region;maxillary part of mouth -http://purl.obolibrary.org/obo/UBERON_0001710;lower jaw region;lower part of mouth -http://purl.obolibrary.org/obo/UBERON_0001710;lower jaw region;mandibular part of mouth -http://purl.obolibrary.org/obo/UBERON_0001710;lower jaw region;mandibular series -http://purl.obolibrary.org/obo/UBERON_0001711;eyelid;blepharon -http://purl.obolibrary.org/obo/UBERON_0001711;eyelid;eye lid -http://purl.obolibrary.org/obo/UBERON_0001711;eyelid;palpebra -http://purl.obolibrary.org/obo/UBERON_0001712;upper eyelid;palpebra superior -http://purl.obolibrary.org/obo/UBERON_0001712;upper eyelid;superior eyelid -http://purl.obolibrary.org/obo/UBERON_0001713;lower eyelid;inferior eyelid -http://purl.obolibrary.org/obo/UBERON_0001713;lower eyelid;palpebra inferior -http://purl.obolibrary.org/obo/UBERON_0001714;cranial ganglion;cranial ganglia -http://purl.obolibrary.org/obo/UBERON_0001714;cranial ganglion;cranial ganglion -http://purl.obolibrary.org/obo/UBERON_0001714;cranial ganglion;cranial ganglion part of peripheral nervous system -http://purl.obolibrary.org/obo/UBERON_0001714;cranial ganglion;cranial ganglion/nerve -http://purl.obolibrary.org/obo/UBERON_0001714;cranial ganglion;cranial nerve ganglion -http://purl.obolibrary.org/obo/UBERON_0001714;cranial ganglion;cranial neural ganglion -http://purl.obolibrary.org/obo/UBERON_0001714;cranial ganglion;cranial neural tree organ ganglion -http://purl.obolibrary.org/obo/UBERON_0001714;cranial ganglion;ganglion of cranial nerve -http://purl.obolibrary.org/obo/UBERON_0001714;cranial ganglion;ganglion of cranial neural tree organ -http://purl.obolibrary.org/obo/UBERON_0001714;cranial ganglion;head ganglion -http://purl.obolibrary.org/obo/UBERON_0001714;cranial ganglion;presumptive cranial ganglia -http://purl.obolibrary.org/obo/UBERON_0001715;oculomotor nuclear complex;OM -http://purl.obolibrary.org/obo/UBERON_0001715;oculomotor nuclear complex;motor nucleus III -http://purl.obolibrary.org/obo/UBERON_0001715;oculomotor nuclear complex;nIII -http://purl.obolibrary.org/obo/UBERON_0001715;oculomotor nuclear complex;nucleus nervi oculomotorii -http://purl.obolibrary.org/obo/UBERON_0001715;oculomotor nuclear complex;nucleus oculomotorius -http://purl.obolibrary.org/obo/UBERON_0001715;oculomotor nuclear complex;nucleus of oculomotor nerve -http://purl.obolibrary.org/obo/UBERON_0001715;oculomotor nuclear complex;nucleus of oculomotor nuclear complex -http://purl.obolibrary.org/obo/UBERON_0001715;oculomotor nuclear complex;nucleus of third cranial nerve -http://purl.obolibrary.org/obo/UBERON_0001715;oculomotor nuclear complex;oculomotor III nuclear complex -http://purl.obolibrary.org/obo/UBERON_0001715;oculomotor nuclear complex;oculomotor III nucleus -http://purl.obolibrary.org/obo/UBERON_0001715;oculomotor nuclear complex;oculomotor motornucleus -http://purl.obolibrary.org/obo/UBERON_0001715;oculomotor nuclear complex;oculomotor nucleus -http://purl.obolibrary.org/obo/UBERON_0001715;oculomotor nuclear complex;third cranial nerve nucleus -http://purl.obolibrary.org/obo/UBERON_0001716;secondary palate;definitive palate -http://purl.obolibrary.org/obo/UBERON_0001716;secondary palate;oral roof -http://purl.obolibrary.org/obo/UBERON_0001716;secondary palate;palatum definitivum -http://purl.obolibrary.org/obo/UBERON_0001716;secondary palate;palatum secundarium -http://purl.obolibrary.org/obo/UBERON_0001717;spinal nucleus of trigeminal nerve;spinal nucleus of cranial nerve v -http://purl.obolibrary.org/obo/UBERON_0001717;spinal nucleus of trigeminal nerve;spinal trigeminal nucleus -http://purl.obolibrary.org/obo/UBERON_0001717;spinal nucleus of trigeminal nerve;trigeminal nerve spinal tract nucleus -http://purl.obolibrary.org/obo/UBERON_0001717;spinal nucleus of trigeminal nerve;trigeminal spinal nucleus -http://purl.obolibrary.org/obo/UBERON_0001717;spinal nucleus of trigeminal nerve;trigeminal v spinal sensory nucleus -http://purl.obolibrary.org/obo/UBERON_0001718;mesencephalic nucleus of trigeminal nerve;mesencephalic trigeminal V nucleus -http://purl.obolibrary.org/obo/UBERON_0001718;mesencephalic nucleus of trigeminal nerve;mesencephalic trigeminal nucleus -http://purl.obolibrary.org/obo/UBERON_0001718;mesencephalic nucleus of trigeminal nerve;nucleus of mesencephalic root of v -http://purl.obolibrary.org/obo/UBERON_0001718;mesencephalic nucleus of trigeminal nerve;trigeminal V mesencephalic nucleus -http://purl.obolibrary.org/obo/UBERON_0001718;mesencephalic nucleus of trigeminal nerve;trigeminal mesencephalic nucleus -http://purl.obolibrary.org/obo/UBERON_0001718;mesencephalic nucleus of trigeminal nerve;trigeminal nerve mesencepahlic nucleus -http://purl.obolibrary.org/obo/UBERON_0001719;nucleus ambiguus;Amb -http://purl.obolibrary.org/obo/UBERON_0001719;nucleus ambiguus;ambiguous nucleus -http://purl.obolibrary.org/obo/UBERON_0001719;nucleus ambiguus;ambiguus nucleus -http://purl.obolibrary.org/obo/UBERON_0001719;nucleus ambiguus;nucleus innominatus -http://purl.obolibrary.org/obo/UBERON_0001720;cochlear nucleus;cochlear VIII nucleus -http://purl.obolibrary.org/obo/UBERON_0001720;cochlear nucleus;cochlear nucleus of acoustic nerve -http://purl.obolibrary.org/obo/UBERON_0001720;cochlear nucleus;cochlear nucleus of eighth cranial nerve -http://purl.obolibrary.org/obo/UBERON_0001720;cochlear nucleus;nucleus of cochlear nerve -http://purl.obolibrary.org/obo/UBERON_0001720;cochlear nucleus;statoacoustic (VIII) nucleus -http://purl.obolibrary.org/obo/UBERON_0001720;cochlear nucleus;vestibulocochlear nucleus -http://purl.obolibrary.org/obo/UBERON_0001721;inferior vestibular nucleus;descending vestibular nucleus -http://purl.obolibrary.org/obo/UBERON_0001721;inferior vestibular nucleus;spinal vestibular nucleus -http://purl.obolibrary.org/obo/UBERON_0001722;medial vestibular nucleus;Schwalbe's nucleus -http://purl.obolibrary.org/obo/UBERON_0001722;medial vestibular nucleus;chief vestibular nucleus -http://purl.obolibrary.org/obo/UBERON_0001722;medial vestibular nucleus;dorsal vestibular nucleus -http://purl.obolibrary.org/obo/UBERON_0001722;medial vestibular nucleus;nucleus of Schwalbe -http://purl.obolibrary.org/obo/UBERON_0001722;medial vestibular nucleus;nucleus triangularis -http://purl.obolibrary.org/obo/UBERON_0001722;medial vestibular nucleus;principal vestibular nucleus -http://purl.obolibrary.org/obo/UBERON_0001722;medial vestibular nucleus;triangular nucleus -http://purl.obolibrary.org/obo/UBERON_0001723;tongue;glossus -http://purl.obolibrary.org/obo/UBERON_0001724;sphenoidal sinus;sphenoid sinus -http://purl.obolibrary.org/obo/UBERON_0001725;cranial synchondrosis; -http://purl.obolibrary.org/obo/UBERON_0001726;papilla of tongue;lingual papilla -http://purl.obolibrary.org/obo/UBERON_0001726;papilla of tongue;tongue papilla -http://purl.obolibrary.org/obo/UBERON_0001727;taste bud;tastebud -http://purl.obolibrary.org/obo/UBERON_0001728;nasopharynx;nasal part of pharynx -http://purl.obolibrary.org/obo/UBERON_0001728;nasopharynx;rhinopharynx -http://purl.obolibrary.org/obo/UBERON_0001729;oropharynx;oral part of pharynx -http://purl.obolibrary.org/obo/UBERON_0001730;extrinsic ligament of larynx;laryngeal extrinsic ligament -http://purl.obolibrary.org/obo/UBERON_0001731;cavity of pharynx;lumen of pharynx -http://purl.obolibrary.org/obo/UBERON_0001731;cavity of pharynx;pharyngeal cavity -http://purl.obolibrary.org/obo/UBERON_0001732;pharyngeal tonsil;adenoid -http://purl.obolibrary.org/obo/UBERON_0001732;pharyngeal tonsil;nasopharyngeal tonsil -http://purl.obolibrary.org/obo/UBERON_0001732;pharyngeal tonsil;tonsil of Luschka -http://purl.obolibrary.org/obo/UBERON_0001732;pharyngeal tonsil;tonsilla pharyngealis -http://purl.obolibrary.org/obo/UBERON_0001733;soft palate; -http://purl.obolibrary.org/obo/UBERON_0001734;palatine uvula;palatine uvula -http://purl.obolibrary.org/obo/UBERON_0001734;palatine uvula;uvula -http://purl.obolibrary.org/obo/UBERON_0001734;palatine uvula;uvula of palate -http://purl.obolibrary.org/obo/UBERON_0001734;palatine uvula;uvula palatina -http://purl.obolibrary.org/obo/UBERON_0001735;tonsillar ring;Waldeyer's ring -http://purl.obolibrary.org/obo/UBERON_0001735;tonsillar ring;Waldeyer's tonsillar ring -http://purl.obolibrary.org/obo/UBERON_0001735;tonsillar ring;anulus lymphoideus pharyngis -http://purl.obolibrary.org/obo/UBERON_0001735;tonsillar ring;oropharyngeal lymphoid tissue -http://purl.obolibrary.org/obo/UBERON_0001735;tonsillar ring;pharyngeal lymphatic ring -http://purl.obolibrary.org/obo/UBERON_0001735;tonsillar ring;pharyngeal lymphoid ring -http://purl.obolibrary.org/obo/UBERON_0001736;submandibular gland;glandula submandibularis -http://purl.obolibrary.org/obo/UBERON_0001736;submandibular gland;mandibular gland -http://purl.obolibrary.org/obo/UBERON_0001736;submandibular gland;mandibular salivary gland -http://purl.obolibrary.org/obo/UBERON_0001736;submandibular gland;maxillary gland -http://purl.obolibrary.org/obo/UBERON_0001736;submandibular gland;submandibular salivary gland -http://purl.obolibrary.org/obo/UBERON_0001736;submandibular gland;submaxillary gland -http://purl.obolibrary.org/obo/UBERON_0001737;larynx; -http://purl.obolibrary.org/obo/UBERON_0001738;thyroid cartilage; -http://purl.obolibrary.org/obo/UBERON_0001739;laryngeal cartilage;cartilage of larynx -http://purl.obolibrary.org/obo/UBERON_0001739;laryngeal cartilage;cartilagines laryngeales -http://purl.obolibrary.org/obo/UBERON_0001739;laryngeal cartilage;larynx cartilage -http://purl.obolibrary.org/obo/UBERON_0001740;arytenoid cartilage;arytenoid -http://purl.obolibrary.org/obo/UBERON_0001741;corniculate cartilage;Santorini's cartilage -http://purl.obolibrary.org/obo/UBERON_0001741;corniculate cartilage;cartilage of Santorini -http://purl.obolibrary.org/obo/UBERON_0001741;corniculate cartilage;cartilagines corniculata -http://purl.obolibrary.org/obo/UBERON_0001742;epiglottic cartilage; -http://purl.obolibrary.org/obo/UBERON_0001743;ligament of larynx;laryngeal ligament -http://purl.obolibrary.org/obo/UBERON_0001743;ligament of larynx;larynx ligament -http://purl.obolibrary.org/obo/UBERON_0001744;lymphoid tissue;lymphatic tissue -http://purl.obolibrary.org/obo/UBERON_0001744;lymphoid tissue;lymphocytic tissue -http://purl.obolibrary.org/obo/UBERON_0001745;secondary nodular lymphoid tissue;peripheral lymphoid tissue -http://purl.obolibrary.org/obo/UBERON_0001745;secondary nodular lymphoid tissue;secondary lymphoid nodule -http://purl.obolibrary.org/obo/UBERON_0001745;secondary nodular lymphoid tissue;secondary lymphoid tissue -http://purl.obolibrary.org/obo/UBERON_0001746;capsule of thyroid gland;capsula fibrosa glandulae thyroideae -http://purl.obolibrary.org/obo/UBERON_0001746;capsule of thyroid gland;fibrous capsule of thyroid gland -http://purl.obolibrary.org/obo/UBERON_0001746;capsule of thyroid gland;thyroid capsule -http://purl.obolibrary.org/obo/UBERON_0001746;capsule of thyroid gland;thyroid gland capsule -http://purl.obolibrary.org/obo/UBERON_0001747;parenchyma of thyroid gland;parenchyma of thyroid -http://purl.obolibrary.org/obo/UBERON_0001747;parenchyma of thyroid gland;parenchyma of thyroid follicle -http://purl.obolibrary.org/obo/UBERON_0001747;parenchyma of thyroid gland;parenchyma of thyroid gland follicle -http://purl.obolibrary.org/obo/UBERON_0001747;parenchyma of thyroid gland;thyroid follicle parenchyma -http://purl.obolibrary.org/obo/UBERON_0001747;parenchyma of thyroid gland;thyroid gland follicle parenchyma -http://purl.obolibrary.org/obo/UBERON_0001747;parenchyma of thyroid gland;thyroid gland parenchyma -http://purl.obolibrary.org/obo/UBERON_0001747;parenchyma of thyroid gland;thyroid parenchyma -http://purl.obolibrary.org/obo/UBERON_0001748;capsule of parathyroid gland;parathyroid gland capsule -http://purl.obolibrary.org/obo/UBERON_0001749;parenchyma of parathyroid gland;parathyroid gland parenchyma -http://purl.obolibrary.org/obo/UBERON_0001749;parenchyma of parathyroid gland;parathyroid parenchyma -http://purl.obolibrary.org/obo/UBERON_0001749;parenchyma of parathyroid gland;parenchyma of parathyroid -http://purl.obolibrary.org/obo/UBERON_0001750;lacrimal apparatus;apparatus lacrimalis -http://purl.obolibrary.org/obo/UBERON_0001750;lacrimal apparatus;lacrimal drainage system -http://purl.obolibrary.org/obo/UBERON_0001750;lacrimal apparatus;lacrymal system -http://purl.obolibrary.org/obo/UBERON_0001750;lacrimal apparatus;nasolacrimal drainage system -http://purl.obolibrary.org/obo/UBERON_0001750;lacrimal apparatus;nasolacrimal system -http://purl.obolibrary.org/obo/UBERON_0001751;dentine;dentin -http://purl.obolibrary.org/obo/UBERON_0001751;dentine;dentine of tooth -http://purl.obolibrary.org/obo/UBERON_0001752;enamel;enamel of tooth -http://purl.obolibrary.org/obo/UBERON_0001752;enamel;enamel tissue -http://purl.obolibrary.org/obo/UBERON_0001752;enamel;tooth enamel -http://purl.obolibrary.org/obo/UBERON_0001753;cementum;cement -http://purl.obolibrary.org/obo/UBERON_0001753;cementum;cement of tooth -http://purl.obolibrary.org/obo/UBERON_0001753;cementum;cementum -http://purl.obolibrary.org/obo/UBERON_0001753;cementum;cementum of tooth -http://purl.obolibrary.org/obo/UBERON_0001754;dental pulp;pulp of tooth -http://purl.obolibrary.org/obo/UBERON_0001754;dental pulp;tooth pulp -http://purl.obolibrary.org/obo/UBERON_0001755;distal part of styloid process of temporal bone;distal part of styloid process -http://purl.obolibrary.org/obo/UBERON_0001756;middle ear; -http://purl.obolibrary.org/obo/UBERON_0001757;pinna;auricle -http://purl.obolibrary.org/obo/UBERON_0001757;pinna;auricle of ear -http://purl.obolibrary.org/obo/UBERON_0001757;pinna;auricle of external ear -http://purl.obolibrary.org/obo/UBERON_0001757;pinna;auricula -http://purl.obolibrary.org/obo/UBERON_0001757;pinna;auricula (auris externa) -http://purl.obolibrary.org/obo/UBERON_0001757;pinna;pinna of ear -http://purl.obolibrary.org/obo/UBERON_0001757;pinna;pinnae -http://purl.obolibrary.org/obo/UBERON_0001758;periodontium; -http://purl.obolibrary.org/obo/UBERON_0001759;vagus nerve;10n -http://purl.obolibrary.org/obo/UBERON_0001759;vagus nerve;CN-X -http://purl.obolibrary.org/obo/UBERON_0001759;vagus nerve;cranial nerve X -http://purl.obolibrary.org/obo/UBERON_0001759;vagus nerve;nerve X -http://purl.obolibrary.org/obo/UBERON_0001759;vagus nerve;nervus vagus -http://purl.obolibrary.org/obo/UBERON_0001759;vagus nerve;nervus vagus [x] -http://purl.obolibrary.org/obo/UBERON_0001759;vagus nerve;pneuomgastric nerve -http://purl.obolibrary.org/obo/UBERON_0001759;vagus nerve;tenth cranial nerve -http://purl.obolibrary.org/obo/UBERON_0001759;vagus nerve;vagal nerve -http://purl.obolibrary.org/obo/UBERON_0001759;vagus nerve;vagus -http://purl.obolibrary.org/obo/UBERON_0001759;vagus nerve;vagus X nerve -http://purl.obolibrary.org/obo/UBERON_0001759;vagus nerve;vagus nerve [X] -http://purl.obolibrary.org/obo/UBERON_0001759;vagus nerve;vagus nerve or its root -http://purl.obolibrary.org/obo/UBERON_0001759;vagus nerve;vagus nerve tree -http://purl.obolibrary.org/obo/UBERON_0001760;frontal sinus;cavity of frontal bone -http://purl.obolibrary.org/obo/UBERON_0001761;future foramen cecum; -http://purl.obolibrary.org/obo/UBERON_0001762;turbinate bone;ossified nasal turbinal -http://purl.obolibrary.org/obo/UBERON_0001762;turbinate bone;ossified nasal turbinate -http://purl.obolibrary.org/obo/UBERON_0001762;turbinate bone;ossified turbinate -http://purl.obolibrary.org/obo/UBERON_0001762;turbinate bone;turbinal bone -http://purl.obolibrary.org/obo/UBERON_0001762;turbinate bone;turbinate bone -http://purl.obolibrary.org/obo/UBERON_0001763;odontogenic papilla;odontogenic condensation -http://purl.obolibrary.org/obo/UBERON_0001764;maxillary sinus;antrum of Highmore -http://purl.obolibrary.org/obo/UBERON_0001764;maxillary sinus;sinus maxilliaris -http://purl.obolibrary.org/obo/UBERON_0001765;mammary duct;lactiferous duct -http://purl.obolibrary.org/obo/UBERON_0001765;mammary duct;lactiferous gland duct -http://purl.obolibrary.org/obo/UBERON_0001765;mammary duct;mammary gland duct -http://purl.obolibrary.org/obo/UBERON_0001766;anterior chamber of eyeball;anterior chamber -http://purl.obolibrary.org/obo/UBERON_0001766;anterior chamber of eyeball;anterior chamber of eye -http://purl.obolibrary.org/obo/UBERON_0001766;anterior chamber of eyeball;camera anterior -http://purl.obolibrary.org/obo/UBERON_0001766;anterior chamber of eyeball;eye anterior chamber -http://purl.obolibrary.org/obo/UBERON_0001767;posterior chamber of eyeball;camera posterior -http://purl.obolibrary.org/obo/UBERON_0001767;posterior chamber of eyeball;eye posterior chamber -http://purl.obolibrary.org/obo/UBERON_0001767;posterior chamber of eyeball;posterior chamber of eye -http://purl.obolibrary.org/obo/UBERON_0001768;uvea;pars iridica retinae -http://purl.obolibrary.org/obo/UBERON_0001768;uvea;tunica vasculatis oculi -http://purl.obolibrary.org/obo/UBERON_0001768;uvea;tunica vasculosa bulbi -http://purl.obolibrary.org/obo/UBERON_0001768;uvea;tunica vasculosa of eyeball -http://purl.obolibrary.org/obo/UBERON_0001768;uvea;uvea -http://purl.obolibrary.org/obo/UBERON_0001768;uvea;uveal tract -http://purl.obolibrary.org/obo/UBERON_0001768;uvea;vascular layer of eyeball -http://purl.obolibrary.org/obo/UBERON_0001769;iris;anterior uvea -http://purl.obolibrary.org/obo/UBERON_0001769;iris;irides -http://purl.obolibrary.org/obo/UBERON_0001769;iris;irises -http://purl.obolibrary.org/obo/UBERON_0001770;lacrimal canaliculus; -http://purl.obolibrary.org/obo/UBERON_0001771;pupil; -http://purl.obolibrary.org/obo/UBERON_0001772;corneal epithelium;anterior corneal epithelium -http://purl.obolibrary.org/obo/UBERON_0001772;corneal epithelium;cornea epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0001772;corneal epithelium;cornea epithelium -http://purl.obolibrary.org/obo/UBERON_0001772;corneal epithelium;epithelial tissue of cornea -http://purl.obolibrary.org/obo/UBERON_0001772;corneal epithelium;epithelium anterius (cornea) -http://purl.obolibrary.org/obo/UBERON_0001772;corneal epithelium;epithelium anterius corneae -http://purl.obolibrary.org/obo/UBERON_0001772;corneal epithelium;epithelium corneæ anterior layer -http://purl.obolibrary.org/obo/UBERON_0001772;corneal epithelium;epithelium of cornea -http://purl.obolibrary.org/obo/UBERON_0001772;corneal epithelium;external epithelium of cornea -http://purl.obolibrary.org/obo/UBERON_0001773;sclera; -http://purl.obolibrary.org/obo/UBERON_0001774;skeletal muscle of trunk;body musculature -http://purl.obolibrary.org/obo/UBERON_0001774;skeletal muscle of trunk;muscle of trunk -http://purl.obolibrary.org/obo/UBERON_0001774;skeletal muscle of trunk;muscle organ of torso -http://purl.obolibrary.org/obo/UBERON_0001774;skeletal muscle of trunk;muscle organ of trunk -http://purl.obolibrary.org/obo/UBERON_0001774;skeletal muscle of trunk;torso muscle organ -http://purl.obolibrary.org/obo/UBERON_0001774;skeletal muscle of trunk;trunk muscle -http://purl.obolibrary.org/obo/UBERON_0001774;skeletal muscle of trunk;trunk muscle organ -http://purl.obolibrary.org/obo/UBERON_0001774;skeletal muscle of trunk;trunk musculature -http://purl.obolibrary.org/obo/UBERON_0001775;ciliary body;anterior uvea -http://purl.obolibrary.org/obo/UBERON_0001775;ciliary body;ciliary bodies -http://purl.obolibrary.org/obo/UBERON_0001775;ciliary body;corpus ciliare -http://purl.obolibrary.org/obo/UBERON_0001775;ciliary body;ocular ciliary body -http://purl.obolibrary.org/obo/UBERON_0001776;optic choroid;choroid -http://purl.obolibrary.org/obo/UBERON_0001776;optic choroid;choroid coat -http://purl.obolibrary.org/obo/UBERON_0001776;optic choroid;choroidea -http://purl.obolibrary.org/obo/UBERON_0001776;optic choroid;eye choroid -http://purl.obolibrary.org/obo/UBERON_0001776;optic choroid;posterior uvea -http://purl.obolibrary.org/obo/UBERON_0001777;substantia propria of cornea;corneal stroma -http://purl.obolibrary.org/obo/UBERON_0001777;substantia propria of cornea;stroma of cornea -http://purl.obolibrary.org/obo/UBERON_0001777;substantia propria of cornea;substantia propria corneae -http://purl.obolibrary.org/obo/UBERON_0001778;ciliary epithelium;ciliary body epithelium -http://purl.obolibrary.org/obo/UBERON_0001778;ciliary epithelium;epithelium of ciliary body -http://purl.obolibrary.org/obo/UBERON_0001778;ciliary epithelium;ocular ciliary epithelium -http://purl.obolibrary.org/obo/UBERON_0001779;iris stroma;iridial stroma -http://purl.obolibrary.org/obo/UBERON_0001779;iris stroma;stroma of iris -http://purl.obolibrary.org/obo/UBERON_0001780;spinal nerve;backbone nerve -http://purl.obolibrary.org/obo/UBERON_0001780;spinal nerve;nerve of backbone -http://purl.obolibrary.org/obo/UBERON_0001780;spinal nerve;nerve of spinal column -http://purl.obolibrary.org/obo/UBERON_0001780;spinal nerve;nerve of spine -http://purl.obolibrary.org/obo/UBERON_0001780;spinal nerve;nerve of vertebral column -http://purl.obolibrary.org/obo/UBERON_0001780;spinal nerve;nervi spinales -http://purl.obolibrary.org/obo/UBERON_0001780;spinal nerve;spinal column nerve -http://purl.obolibrary.org/obo/UBERON_0001780;spinal nerve;spinal nerve tree -http://purl.obolibrary.org/obo/UBERON_0001780;spinal nerve;spinal nerves -http://purl.obolibrary.org/obo/UBERON_0001780;spinal nerve;spine nerve -http://purl.obolibrary.org/obo/UBERON_0001780;spinal nerve;vertebral column nerve -http://purl.obolibrary.org/obo/UBERON_0001781;layer of retina;retina layer -http://purl.obolibrary.org/obo/UBERON_0001781;layer of retina;retina neuronal layer -http://purl.obolibrary.org/obo/UBERON_0001781;layer of retina;retinal layer -http://purl.obolibrary.org/obo/UBERON_0001781;layer of retina;retinal neuronal layer -http://purl.obolibrary.org/obo/UBERON_0001782;pigmented layer of retina;outer pigmented layer of retina -http://purl.obolibrary.org/obo/UBERON_0001782;pigmented layer of retina;pigment epithelium of retina -http://purl.obolibrary.org/obo/UBERON_0001782;pigmented layer of retina;pigmented retina epithelium -http://purl.obolibrary.org/obo/UBERON_0001782;pigmented layer of retina;pigmented retinal epithelium -http://purl.obolibrary.org/obo/UBERON_0001782;pigmented layer of retina;retinal pigment epithelium -http://purl.obolibrary.org/obo/UBERON_0001782;pigmented layer of retina;retinal pigmented epithelium -http://purl.obolibrary.org/obo/UBERON_0001782;pigmented layer of retina;stratum pigmentosum (retina) -http://purl.obolibrary.org/obo/UBERON_0001782;pigmented layer of retina;stratum pigmentosum retinae -http://purl.obolibrary.org/obo/UBERON_0001783;optic disc;optic disk -http://purl.obolibrary.org/obo/UBERON_0001785;cranial nerve;cranial nerves -http://purl.obolibrary.org/obo/UBERON_0001785;cranial nerve;cranial neural tree organ -http://purl.obolibrary.org/obo/UBERON_0001785;cranial nerve;nervus cranialis -http://purl.obolibrary.org/obo/UBERON_0001786;fovea centralis;centre of macula -http://purl.obolibrary.org/obo/UBERON_0001786;fovea centralis;fovea centralis in macula -http://purl.obolibrary.org/obo/UBERON_0001787;photoreceptor layer of retina;retina photoreceptor layer -http://purl.obolibrary.org/obo/UBERON_0001787;photoreceptor layer of retina;retinal photoreceptor layer -http://purl.obolibrary.org/obo/UBERON_0001787;photoreceptor layer of retina;stratum segmentorum externorum et internorum (retina) -http://purl.obolibrary.org/obo/UBERON_0001787;photoreceptor layer of retina;stratum segmentorum externorum et internorum retinae -http://purl.obolibrary.org/obo/UBERON_0001788;outer limiting layer of retina;external limiting lamina of retina -http://purl.obolibrary.org/obo/UBERON_0001788;outer limiting layer of retina;external limiting membrane -http://purl.obolibrary.org/obo/UBERON_0001788;outer limiting layer of retina;external limiting membrane of retina -http://purl.obolibrary.org/obo/UBERON_0001788;outer limiting layer of retina;outer limiting membrane -http://purl.obolibrary.org/obo/UBERON_0001788;outer limiting layer of retina;outer limiting membrane of retina -http://purl.obolibrary.org/obo/UBERON_0001788;outer limiting layer of retina;retina external limiting lamina -http://purl.obolibrary.org/obo/UBERON_0001788;outer limiting layer of retina;retina outer limiting membrane -http://purl.obolibrary.org/obo/UBERON_0001788;outer limiting layer of retina;stratum limitans externum (retina) -http://purl.obolibrary.org/obo/UBERON_0001788;outer limiting layer of retina;stratum limitans externum retinae -http://purl.obolibrary.org/obo/UBERON_0001789;outer nuclear layer of retina;ONL -http://purl.obolibrary.org/obo/UBERON_0001789;outer nuclear layer of retina;external nuclear layer -http://purl.obolibrary.org/obo/UBERON_0001789;outer nuclear layer of retina;layer of outer granules -http://purl.obolibrary.org/obo/UBERON_0001789;outer nuclear layer of retina;neural retina outer nuclear layer -http://purl.obolibrary.org/obo/UBERON_0001789;outer nuclear layer of retina;outer nuclear layer -http://purl.obolibrary.org/obo/UBERON_0001789;outer nuclear layer of retina;retina outer nuclear layer -http://purl.obolibrary.org/obo/UBERON_0001789;outer nuclear layer of retina;retina, outer nuclear layer -http://purl.obolibrary.org/obo/UBERON_0001789;outer nuclear layer of retina;retinal outer nuclear layer -http://purl.obolibrary.org/obo/UBERON_0001789;outer nuclear layer of retina;retinal outer nuclear layers -http://purl.obolibrary.org/obo/UBERON_0001789;outer nuclear layer of retina;stratum nucleare externum (retina) -http://purl.obolibrary.org/obo/UBERON_0001789;outer nuclear layer of retina;stratum nucleare externum retinae -http://purl.obolibrary.org/obo/UBERON_0001790;outer plexiform layer of retina;OPL -http://purl.obolibrary.org/obo/UBERON_0001790;outer plexiform layer of retina;external plexiform layer -http://purl.obolibrary.org/obo/UBERON_0001790;outer plexiform layer of retina;outer plexiform layer -http://purl.obolibrary.org/obo/UBERON_0001790;outer plexiform layer of retina;retina outer plexiform layer -http://purl.obolibrary.org/obo/UBERON_0001790;outer plexiform layer of retina;retina, outer plexiform layer -http://purl.obolibrary.org/obo/UBERON_0001790;outer plexiform layer of retina;retinal outer plexiform layer -http://purl.obolibrary.org/obo/UBERON_0001790;outer plexiform layer of retina;retinal outer plexiform layers -http://purl.obolibrary.org/obo/UBERON_0001790;outer plexiform layer of retina;stratum plexiforme externum -http://purl.obolibrary.org/obo/UBERON_0001790;outer plexiform layer of retina;stratum plexiforme externum retinae -http://purl.obolibrary.org/obo/UBERON_0001791;inner nuclear layer of retina;INL -http://purl.obolibrary.org/obo/UBERON_0001791;inner nuclear layer of retina;inner nuclear layer -http://purl.obolibrary.org/obo/UBERON_0001791;inner nuclear layer of retina;intermediate cell layer -http://purl.obolibrary.org/obo/UBERON_0001791;inner nuclear layer of retina;layer of inner granules -http://purl.obolibrary.org/obo/UBERON_0001791;inner nuclear layer of retina;neural retina inner nuclear layer -http://purl.obolibrary.org/obo/UBERON_0001791;inner nuclear layer of retina;retina inner nuclear layer -http://purl.obolibrary.org/obo/UBERON_0001791;inner nuclear layer of retina;retina, inner nuclear layer -http://purl.obolibrary.org/obo/UBERON_0001791;inner nuclear layer of retina;retinal inner nuclear layer -http://purl.obolibrary.org/obo/UBERON_0001791;inner nuclear layer of retina;stratum nucleare internum -http://purl.obolibrary.org/obo/UBERON_0001791;inner nuclear layer of retina;stratum nucleare internum retinae -http://purl.obolibrary.org/obo/UBERON_0001792;ganglionic layer of retina;GCL layer -http://purl.obolibrary.org/obo/UBERON_0001792;ganglionic layer of retina;RGC layer -http://purl.obolibrary.org/obo/UBERON_0001792;ganglionic layer of retina;ganglion cell layer -http://purl.obolibrary.org/obo/UBERON_0001792;ganglionic layer of retina;ganglionic cell layer of retina -http://purl.obolibrary.org/obo/UBERON_0001792;ganglionic layer of retina;retina ganglion cell layer -http://purl.obolibrary.org/obo/UBERON_0001792;ganglionic layer of retina;retina ganglion layer -http://purl.obolibrary.org/obo/UBERON_0001792;ganglionic layer of retina;retina, ganglion cell layer -http://purl.obolibrary.org/obo/UBERON_0001792;ganglionic layer of retina;retinal ganglion cell layer -http://purl.obolibrary.org/obo/UBERON_0001792;ganglionic layer of retina;retinal ganglion layer -http://purl.obolibrary.org/obo/UBERON_0001792;ganglionic layer of retina;stratum ganglionicum (retina) -http://purl.obolibrary.org/obo/UBERON_0001792;ganglionic layer of retina;stratum ganglionicum retinae -http://purl.obolibrary.org/obo/UBERON_0001793;nerve fiber layer of retina;layer of nerve fibers of retina -http://purl.obolibrary.org/obo/UBERON_0001793;nerve fiber layer of retina;layer of nerve fibres of retina -http://purl.obolibrary.org/obo/UBERON_0001793;nerve fiber layer of retina;optic fiber layer -http://purl.obolibrary.org/obo/UBERON_0001793;nerve fiber layer of retina;retina nerve fiber layer -http://purl.obolibrary.org/obo/UBERON_0001793;nerve fiber layer of retina;stratum neurofibrarum (retina) -http://purl.obolibrary.org/obo/UBERON_0001793;nerve fiber layer of retina;stratum neurofibrarum retinae -http://purl.obolibrary.org/obo/UBERON_0001793;nerve fiber layer of retina;stratum opticum of retina -http://purl.obolibrary.org/obo/UBERON_0001794;inner limiting layer of retina;inner limiting membrane -http://purl.obolibrary.org/obo/UBERON_0001794;inner limiting layer of retina;inner limiting membrane of retina -http://purl.obolibrary.org/obo/UBERON_0001794;inner limiting layer of retina;internal limiting lamina of retina -http://purl.obolibrary.org/obo/UBERON_0001794;inner limiting layer of retina;internal limiting membrane of retina -http://purl.obolibrary.org/obo/UBERON_0001794;inner limiting layer of retina;retina inner limiting membrane -http://purl.obolibrary.org/obo/UBERON_0001794;inner limiting layer of retina;retina internal limiting lamina -http://purl.obolibrary.org/obo/UBERON_0001794;inner limiting layer of retina;stratum limitans internum retinae -http://purl.obolibrary.org/obo/UBERON_0001795;inner plexiform layer of retina;IPL -http://purl.obolibrary.org/obo/UBERON_0001795;inner plexiform layer of retina;inner plexiform layer -http://purl.obolibrary.org/obo/UBERON_0001795;inner plexiform layer of retina;internal plexiform layer of retina -http://purl.obolibrary.org/obo/UBERON_0001795;inner plexiform layer of retina;retina inner plexiform layer -http://purl.obolibrary.org/obo/UBERON_0001795;inner plexiform layer of retina;retina, inner plexiform layer -http://purl.obolibrary.org/obo/UBERON_0001795;inner plexiform layer of retina;retinal inner plexiform layer -http://purl.obolibrary.org/obo/UBERON_0001795;inner plexiform layer of retina;retinal internal plexiform layer -http://purl.obolibrary.org/obo/UBERON_0001795;inner plexiform layer of retina;stratum plexifome internum -http://purl.obolibrary.org/obo/UBERON_0001795;inner plexiform layer of retina;stratum plexiforme internum -http://purl.obolibrary.org/obo/UBERON_0001795;inner plexiform layer of retina;stratum plexiforme internum retinae -http://purl.obolibrary.org/obo/UBERON_0001796;aqueous humor of eyeball;aqueous humor -http://purl.obolibrary.org/obo/UBERON_0001796;aqueous humor of eyeball;aqueous humour -http://purl.obolibrary.org/obo/UBERON_0001796;aqueous humor of eyeball;humor aquosus -http://purl.obolibrary.org/obo/UBERON_0001797;vitreous humor;humor vitreous -http://purl.obolibrary.org/obo/UBERON_0001797;vitreous humor;humor vitreus -http://purl.obolibrary.org/obo/UBERON_0001797;vitreous humor;vitreous -http://purl.obolibrary.org/obo/UBERON_0001797;vitreous humor;whole portion of vitreous humor -http://purl.obolibrary.org/obo/UBERON_0001798;vitreous body; -http://purl.obolibrary.org/obo/UBERON_0001799;vitreous chamber of eyeball;camera postrema -http://purl.obolibrary.org/obo/UBERON_0001799;vitreous chamber of eyeball;camera postrema bulbi oculi -http://purl.obolibrary.org/obo/UBERON_0001799;vitreous chamber of eyeball;camera vitrea -http://purl.obolibrary.org/obo/UBERON_0001799;vitreous chamber of eyeball;camera vitrea bulbi -http://purl.obolibrary.org/obo/UBERON_0001799;vitreous chamber of eyeball;postremal chamber -http://purl.obolibrary.org/obo/UBERON_0001799;vitreous chamber of eyeball;postremal chamber of eyeball -http://purl.obolibrary.org/obo/UBERON_0001799;vitreous chamber of eyeball;vitreous chamber -http://purl.obolibrary.org/obo/UBERON_0001800;sensory ganglion;ganglion sensorium -http://purl.obolibrary.org/obo/UBERON_0001801;anterior segment of eyeball;anterior eye segment -http://purl.obolibrary.org/obo/UBERON_0001801;anterior segment of eyeball;anterior segment eye -http://purl.obolibrary.org/obo/UBERON_0001801;anterior segment of eyeball;anterior segment of eye -http://purl.obolibrary.org/obo/UBERON_0001801;anterior segment of eyeball;anterior segment of the eye -http://purl.obolibrary.org/obo/UBERON_0001801;anterior segment of eyeball;eye anterior segment -http://purl.obolibrary.org/obo/UBERON_0001801;anterior segment of eyeball;segmentum anterius (bulbus oculi) -http://purl.obolibrary.org/obo/UBERON_0001801;anterior segment of eyeball;segmentum anterius bulbi oculi -http://purl.obolibrary.org/obo/UBERON_0001802;posterior segment of eyeball;eye posterior segment -http://purl.obolibrary.org/obo/UBERON_0001802;posterior segment of eyeball;posterior eye segment -http://purl.obolibrary.org/obo/UBERON_0001802;posterior segment of eyeball;posterior segment eye -http://purl.obolibrary.org/obo/UBERON_0001802;posterior segment of eyeball;posterior segment of eye -http://purl.obolibrary.org/obo/UBERON_0001802;posterior segment of eyeball;posterior segment of the eye -http://purl.obolibrary.org/obo/UBERON_0001802;posterior segment of eyeball;segmentum posterius (bulbus oculi) -http://purl.obolibrary.org/obo/UBERON_0001802;posterior segment of eyeball;segmentum posterius bulbi oculi -http://purl.obolibrary.org/obo/UBERON_0001803;epithelium of lens;epithelial tissue of eye lens -http://purl.obolibrary.org/obo/UBERON_0001803;epithelium of lens;epithelial tissue of lens -http://purl.obolibrary.org/obo/UBERON_0001803;epithelium of lens;epithelium lentis -http://purl.obolibrary.org/obo/UBERON_0001803;epithelium of lens;epithelium of eye lens -http://purl.obolibrary.org/obo/UBERON_0001803;epithelium of lens;eye lens epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0001803;epithelium of lens;eye lens epithelium -http://purl.obolibrary.org/obo/UBERON_0001803;epithelium of lens;lens epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0001803;epithelium of lens;lens epithelium -http://purl.obolibrary.org/obo/UBERON_0001804;capsule of lens;capsula lentis -http://purl.obolibrary.org/obo/UBERON_0001804;capsule of lens;lens capsule -http://purl.obolibrary.org/obo/UBERON_0001805;autonomic ganglion;autonomic nervous system ganglion -http://purl.obolibrary.org/obo/UBERON_0001805;autonomic ganglion;ganglion autonomicum -http://purl.obolibrary.org/obo/UBERON_0001805;autonomic ganglion;ganglion of autonomic nervous system -http://purl.obolibrary.org/obo/UBERON_0001805;autonomic ganglion;ganglion of visceral nervous system -http://purl.obolibrary.org/obo/UBERON_0001805;autonomic ganglion;visceral nervous system ganglion -http://purl.obolibrary.org/obo/UBERON_0001806;sympathetic ganglion;ganglion of sympathetic nervous system -http://purl.obolibrary.org/obo/UBERON_0001806;sympathetic ganglion;ganglion of sympathetic part of autonomic division of nervous system -http://purl.obolibrary.org/obo/UBERON_0001806;sympathetic ganglion;ganglion sympatheticum -http://purl.obolibrary.org/obo/UBERON_0001806;sympathetic ganglion;ganglion sympathicum -http://purl.obolibrary.org/obo/UBERON_0001806;sympathetic ganglion;sympathetic nervous system ganglion -http://purl.obolibrary.org/obo/UBERON_0001806;sympathetic ganglion;sympathetic part of autonomic division of nervous system ganglion -http://purl.obolibrary.org/obo/UBERON_0001807;paravertebral ganglion;ganglia of sympathetic trunk -http://purl.obolibrary.org/obo/UBERON_0001807;paravertebral ganglion;ganglia trunci sympathici -http://purl.obolibrary.org/obo/UBERON_0001807;paravertebral ganglion;ganglion of sympathetic trunk -http://purl.obolibrary.org/obo/UBERON_0001807;paravertebral ganglion;ganglion trunci sympathetici -http://purl.obolibrary.org/obo/UBERON_0001807;paravertebral ganglion;ganglion trunci sympathici -http://purl.obolibrary.org/obo/UBERON_0001807;paravertebral ganglion;paravertebral ganglia -http://purl.obolibrary.org/obo/UBERON_0001807;paravertebral ganglion;paravertebral ganglion -http://purl.obolibrary.org/obo/UBERON_0001807;paravertebral ganglion;sympathetic chain ganglia -http://purl.obolibrary.org/obo/UBERON_0001807;paravertebral ganglion;sympathetic chain ganglion -http://purl.obolibrary.org/obo/UBERON_0001808;parasympathetic ganglion;ganglion parasympathicum -http://purl.obolibrary.org/obo/UBERON_0001809;enteric ganglion;intramural ganglion -http://purl.obolibrary.org/obo/UBERON_0001810;nerve plexus;plexus -http://purl.obolibrary.org/obo/UBERON_0001811;conjunctiva;conjunctivae -http://purl.obolibrary.org/obo/UBERON_0001811;conjunctiva;conjunctivas -http://purl.obolibrary.org/obo/UBERON_0001811;conjunctiva;tunica conjunctiva -http://purl.obolibrary.org/obo/UBERON_0001811;conjunctiva;wall of conjunctival sac -http://purl.obolibrary.org/obo/UBERON_0001812;palpebral conjunctiva;conjunctival layer of eyelids -http://purl.obolibrary.org/obo/UBERON_0001812;palpebral conjunctiva;tarsal conjunctiva -http://purl.obolibrary.org/obo/UBERON_0001812;palpebral conjunctiva;tunica conjunctiva palpebrum -http://purl.obolibrary.org/obo/UBERON_0001813;spinal nerve plexus;plexus nervorum spinalium -http://purl.obolibrary.org/obo/UBERON_0001813;spinal nerve plexus;plexus of spinal nerves -http://purl.obolibrary.org/obo/UBERON_0001813;spinal nerve plexus;somatic nerve plexus -http://purl.obolibrary.org/obo/UBERON_0001813;spinal nerve plexus;spinal nerve plexus -http://purl.obolibrary.org/obo/UBERON_0001814;brachial nerve plexus;brachial plexus -http://purl.obolibrary.org/obo/UBERON_0001815;lumbosacral nerve plexus;lumbosacral plexus -http://purl.obolibrary.org/obo/UBERON_0001815;lumbosacral nerve plexus;plexus lumbosacralis -http://purl.obolibrary.org/obo/UBERON_0001816;autonomic nerve plexus;autonomic plexus -http://purl.obolibrary.org/obo/UBERON_0001816;autonomic nerve plexus;plexus autonomicus -http://purl.obolibrary.org/obo/UBERON_0001816;autonomic nerve plexus;plexus nervosus visceralis -http://purl.obolibrary.org/obo/UBERON_0001816;autonomic nerve plexus;plexus visceralis -http://purl.obolibrary.org/obo/UBERON_0001816;autonomic nerve plexus;visceral nerve plexus -http://purl.obolibrary.org/obo/UBERON_0001816;autonomic nerve plexus;visceral plexus -http://purl.obolibrary.org/obo/UBERON_0001817;lacrimal gland;glandula lacrimalis -http://purl.obolibrary.org/obo/UBERON_0001817;lacrimal gland;glandula praeorbitalis -http://purl.obolibrary.org/obo/UBERON_0001817;lacrimal gland;lacrimal-preorbital gland -http://purl.obolibrary.org/obo/UBERON_0001817;lacrimal gland;preorbital gland -http://purl.obolibrary.org/obo/UBERON_0001817;lacrimal gland;tear gland -http://purl.obolibrary.org/obo/UBERON_0001818;tarsal gland;Meibomian gland -http://purl.obolibrary.org/obo/UBERON_0001818;tarsal gland;gland of Meibom -http://purl.obolibrary.org/obo/UBERON_0001818;tarsal gland;glandula tarsales -http://purl.obolibrary.org/obo/UBERON_0001819;palpebral fissure; -http://purl.obolibrary.org/obo/UBERON_0001820;sweat gland; -http://purl.obolibrary.org/obo/UBERON_0001821;sebaceous gland; -http://purl.obolibrary.org/obo/UBERON_0001822;orbital septum; -http://purl.obolibrary.org/obo/UBERON_0001823;nasal cartilage;cartilage of nose -http://purl.obolibrary.org/obo/UBERON_0001824;mucosa of larynx;laryngeal mucosa -http://purl.obolibrary.org/obo/UBERON_0001824;mucosa of larynx;larynx mucosa -http://purl.obolibrary.org/obo/UBERON_0001824;mucosa of larynx;larynx mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0001824;mucosa of larynx;larynx mucous membrane -http://purl.obolibrary.org/obo/UBERON_0001824;mucosa of larynx;larynx organ mucosa -http://purl.obolibrary.org/obo/UBERON_0001824;mucosa of larynx;mucosa of organ of larynx -http://purl.obolibrary.org/obo/UBERON_0001824;mucosa of larynx;mucous membrane of larynx -http://purl.obolibrary.org/obo/UBERON_0001824;mucosa of larynx;organ mucosa of larynx -http://purl.obolibrary.org/obo/UBERON_0001824;mucosa of larynx;tunica mucosa laryngis -http://purl.obolibrary.org/obo/UBERON_0001825;paranasal sinus; -http://purl.obolibrary.org/obo/UBERON_0001826;nasal cavity mucosa;mucosa of nose -http://purl.obolibrary.org/obo/UBERON_0001826;nasal cavity mucosa;mucous membrane of nose -http://purl.obolibrary.org/obo/UBERON_0001826;nasal cavity mucosa;nasal mucosa -http://purl.obolibrary.org/obo/UBERON_0001826;nasal cavity mucosa;tunica mucosa nasalis -http://purl.obolibrary.org/obo/UBERON_0001826;nasal cavity mucosa;tunica mucosa nasi -http://purl.obolibrary.org/obo/UBERON_0001827;secretion of lacrimal gland;lacrimal fluid -http://purl.obolibrary.org/obo/UBERON_0001827;secretion of lacrimal gland;lacrimal gland secretion -http://purl.obolibrary.org/obo/UBERON_0001827;secretion of lacrimal gland;lacrimal secretion -http://purl.obolibrary.org/obo/UBERON_0001827;secretion of lacrimal gland;tear -http://purl.obolibrary.org/obo/UBERON_0001827;secretion of lacrimal gland;tears -http://purl.obolibrary.org/obo/UBERON_0001828;gingiva;gum -http://purl.obolibrary.org/obo/UBERON_0001828;gingiva;gum tissue -http://purl.obolibrary.org/obo/UBERON_0001828;gingiva;gums -http://purl.obolibrary.org/obo/UBERON_0001829;major salivary gland; -http://purl.obolibrary.org/obo/UBERON_0001830;minor salivary gland; -http://purl.obolibrary.org/obo/UBERON_0001831;parotid gland;glandula parotidea -http://purl.obolibrary.org/obo/UBERON_0001831;parotid gland;parotid -http://purl.obolibrary.org/obo/UBERON_0001832;sublingual gland;Rivinus gland -http://purl.obolibrary.org/obo/UBERON_0001832;sublingual gland;Rivinus' gland -http://purl.obolibrary.org/obo/UBERON_0001832;sublingual gland;ductus sublingualis -http://purl.obolibrary.org/obo/UBERON_0001832;sublingual gland;glandula sublingualis -http://purl.obolibrary.org/obo/UBERON_0001832;sublingual gland;sublingual salivary gland -http://purl.obolibrary.org/obo/UBERON_0001832;sublingual gland;submaxillary gland -http://purl.obolibrary.org/obo/UBERON_0001833;lip; -http://purl.obolibrary.org/obo/UBERON_0001834;upper lip;upper jaw lip -http://purl.obolibrary.org/obo/UBERON_0001835;lower lip;lower jaw lip -http://purl.obolibrary.org/obo/UBERON_0001836;saliva;salivary gland secretion -http://purl.obolibrary.org/obo/UBERON_0001837;duct of salivary gland;salivary duct -http://purl.obolibrary.org/obo/UBERON_0001837;duct of salivary gland;salivary gland duct -http://purl.obolibrary.org/obo/UBERON_0001838;sublingual duct; -http://purl.obolibrary.org/obo/UBERON_0001839;bony labyrinth;labyrinthus osseus -http://purl.obolibrary.org/obo/UBERON_0001839;bony labyrinth;osseous labyrinth -http://purl.obolibrary.org/obo/UBERON_0001839;bony labyrinth;osseus labyrinth -http://purl.obolibrary.org/obo/UBERON_0001840;semicircular canal;semicircular canals -http://purl.obolibrary.org/obo/UBERON_0001841;anterior semicircular canal;superior semicircular canal -http://purl.obolibrary.org/obo/UBERON_0001842;posterior semicircular canal; -http://purl.obolibrary.org/obo/UBERON_0001843;lateral semicircular canal; -http://purl.obolibrary.org/obo/UBERON_0001844;cochlea;cochleae -http://purl.obolibrary.org/obo/UBERON_0001844;cochlea;cochlear duct -http://purl.obolibrary.org/obo/UBERON_0001844;cochlea;cochlear organ -http://purl.obolibrary.org/obo/UBERON_0001844;cochlea;cochlear part of bony labyrinth -http://purl.obolibrary.org/obo/UBERON_0001844;cochlea;lagena -http://purl.obolibrary.org/obo/UBERON_0001844;cochlea;lagenas -http://purl.obolibrary.org/obo/UBERON_0001845;perilymph; -http://purl.obolibrary.org/obo/UBERON_0001846;internal ear;auris interna -http://purl.obolibrary.org/obo/UBERON_0001846;internal ear;inner ear -http://purl.obolibrary.org/obo/UBERON_0001846;internal ear;labyrinth -http://purl.obolibrary.org/obo/UBERON_0001846;internal ear;otocyst -http://purl.obolibrary.org/obo/UBERON_0001847;lobule of pinna;auricular lobule -http://purl.obolibrary.org/obo/UBERON_0001847;lobule of pinna;ear lobe -http://purl.obolibrary.org/obo/UBERON_0001847;lobule of pinna;ear lobule -http://purl.obolibrary.org/obo/UBERON_0001847;lobule of pinna;earlobe -http://purl.obolibrary.org/obo/UBERON_0001847;lobule of pinna;lobe of ear -http://purl.obolibrary.org/obo/UBERON_0001847;lobule of pinna;lobule of auricle -http://purl.obolibrary.org/obo/UBERON_0001847;lobule of pinna;lobule of auricle of ear -http://purl.obolibrary.org/obo/UBERON_0001847;lobule of pinna;lobulus auriculae -http://purl.obolibrary.org/obo/UBERON_0001847;lobule of pinna;pinna lobule -http://purl.obolibrary.org/obo/UBERON_0001848;auricular cartilage;cartilage of pinna -http://purl.obolibrary.org/obo/UBERON_0001848;auricular cartilage;pinna cartilage -http://purl.obolibrary.org/obo/UBERON_0001849;membranous labyrinth;labyrinthus membranaceus -http://purl.obolibrary.org/obo/UBERON_0001850;lacrimal drainage system; -http://purl.obolibrary.org/obo/UBERON_0001851;cortex;cortex -http://purl.obolibrary.org/obo/UBERON_0001851;cortex;cortex of organ -http://purl.obolibrary.org/obo/UBERON_0001852;endolymph;endolymphatic fluid -http://purl.obolibrary.org/obo/UBERON_0001853;utricle of membranous labyrinth;membranous labyrinth utricle -http://purl.obolibrary.org/obo/UBERON_0001853;utricle of membranous labyrinth;utricle -http://purl.obolibrary.org/obo/UBERON_0001853;utricle of membranous labyrinth;utriculus -http://purl.obolibrary.org/obo/UBERON_0001853;utricle of membranous labyrinth;utriculus (labyrinthus vestibularis) -http://purl.obolibrary.org/obo/UBERON_0001854;saccule of membranous labyrinth;membranous labyrinth saccule -http://purl.obolibrary.org/obo/UBERON_0001854;saccule of membranous labyrinth;saccule -http://purl.obolibrary.org/obo/UBERON_0001854;saccule of membranous labyrinth;sacculus -http://purl.obolibrary.org/obo/UBERON_0001854;saccule of membranous labyrinth;sacculus (labyrinthus vestibularis) -http://purl.obolibrary.org/obo/UBERON_0001855;cochlear duct of membranous labyrinth;Reissner's canal -http://purl.obolibrary.org/obo/UBERON_0001855;cochlear duct of membranous labyrinth;Reissners canal -http://purl.obolibrary.org/obo/UBERON_0001855;cochlear duct of membranous labyrinth;cochlea duct -http://purl.obolibrary.org/obo/UBERON_0001855;cochlear duct of membranous labyrinth;cochlear aqueduct -http://purl.obolibrary.org/obo/UBERON_0001855;cochlear duct of membranous labyrinth;cochlear duct -http://purl.obolibrary.org/obo/UBERON_0001855;cochlear duct of membranous labyrinth;ductus cochlearis -http://purl.obolibrary.org/obo/UBERON_0001855;cochlear duct of membranous labyrinth;membranous cochlea -http://purl.obolibrary.org/obo/UBERON_0001855;cochlear duct of membranous labyrinth;scala media -http://purl.obolibrary.org/obo/UBERON_0001855;cochlear duct of membranous labyrinth;scala medias -http://purl.obolibrary.org/obo/UBERON_0001855;cochlear duct of membranous labyrinth;scala of Loewenberg -http://purl.obolibrary.org/obo/UBERON_0001856;semicircular duct; -http://purl.obolibrary.org/obo/UBERON_0001857;anterior semicircular duct; -http://purl.obolibrary.org/obo/UBERON_0001858;posterior semicircular duct; -http://purl.obolibrary.org/obo/UBERON_0001859;lateral semicircular duct; -http://purl.obolibrary.org/obo/UBERON_0001860;endolymphatic duct;ductus endolymphaticus -http://purl.obolibrary.org/obo/UBERON_0001861;ductus reuniens; -http://purl.obolibrary.org/obo/UBERON_0001862;vestibular labyrinth;inner ear vestibular component -http://purl.obolibrary.org/obo/UBERON_0001862;vestibular labyrinth;labyrinthus vestibularis -http://purl.obolibrary.org/obo/UBERON_0001862;vestibular labyrinth;vestibular apparatus -http://purl.obolibrary.org/obo/UBERON_0001862;vestibular labyrinth;vestibular component -http://purl.obolibrary.org/obo/UBERON_0001863;scala vestibuli; -http://purl.obolibrary.org/obo/UBERON_0001864;scala tympani; -http://purl.obolibrary.org/obo/UBERON_0001865;cartilaginous external acoustic tube;cartilaginous external acoustic meatus -http://purl.obolibrary.org/obo/UBERON_0001865;cartilaginous external acoustic tube;cartilaginous part of external acoustic meatus -http://purl.obolibrary.org/obo/UBERON_0001865;cartilaginous external acoustic tube;external acoustic meatus cartilaginous part -http://purl.obolibrary.org/obo/UBERON_0001865;cartilaginous external acoustic tube;meatus acusticus externus cartilagineus -http://purl.obolibrary.org/obo/UBERON_0001866;sebum; -http://purl.obolibrary.org/obo/UBERON_0001867;cartilage of external ear;external ear cartilage -http://purl.obolibrary.org/obo/UBERON_0001868;skin of chest;anterior thoracic region zone of skin -http://purl.obolibrary.org/obo/UBERON_0001868;skin of chest;anterolateral part of thorax zone of skin -http://purl.obolibrary.org/obo/UBERON_0001868;skin of chest;chest skin -http://purl.obolibrary.org/obo/UBERON_0001868;skin of chest;chest zone of skin -http://purl.obolibrary.org/obo/UBERON_0001868;skin of chest;front of thorax zone of skin -http://purl.obolibrary.org/obo/UBERON_0001868;skin of chest;zone of skin of anterior chest -http://purl.obolibrary.org/obo/UBERON_0001868;skin of chest;zone of skin of anterior part of thorax -http://purl.obolibrary.org/obo/UBERON_0001868;skin of chest;zone of skin of anterior thoracic region -http://purl.obolibrary.org/obo/UBERON_0001868;skin of chest;zone of skin of anterolateral part of thorax -http://purl.obolibrary.org/obo/UBERON_0001868;skin of chest;zone of skin of chest -http://purl.obolibrary.org/obo/UBERON_0001868;skin of chest;zone of skin of front of thorax -http://purl.obolibrary.org/obo/UBERON_0001869;cerebral hemisphere;cerebrum -http://purl.obolibrary.org/obo/UBERON_0001869;cerebral hemisphere;hemisphere -http://purl.obolibrary.org/obo/UBERON_0001869;cerebral hemisphere;hemispheric regions -http://purl.obolibrary.org/obo/UBERON_0001869;cerebral hemisphere;hemispherium cerebri -http://purl.obolibrary.org/obo/UBERON_0001869;cerebral hemisphere;medial amygdalar nucleus -http://purl.obolibrary.org/obo/UBERON_0001869;cerebral hemisphere;nucleus amygdaloideus medialis -http://purl.obolibrary.org/obo/UBERON_0001869;cerebral hemisphere;nucleus medialis amygdalae -http://purl.obolibrary.org/obo/UBERON_0001870;frontal cortex;cortex of frontal lobe -http://purl.obolibrary.org/obo/UBERON_0001870;frontal cortex;frontal lobe cortex -http://purl.obolibrary.org/obo/UBERON_0001870;frontal cortex;gray matter of frontal lobe -http://purl.obolibrary.org/obo/UBERON_0001870;frontal cortex;grey matter of frontal lobe -http://purl.obolibrary.org/obo/UBERON_0001871;temporal lobe;lobus temporalis -http://purl.obolibrary.org/obo/UBERON_0001871;temporal lobe;temporal cortex -http://purl.obolibrary.org/obo/UBERON_0001872;parietal lobe;lobus parietalis -http://purl.obolibrary.org/obo/UBERON_0001872;parietal lobe;parietal region -http://purl.obolibrary.org/obo/UBERON_0001872;parietal lobe;regio parietalis -http://purl.obolibrary.org/obo/UBERON_0001873;caudate nucleus;caudatus -http://purl.obolibrary.org/obo/UBERON_0001874;putamen;nucleus putamen -http://purl.obolibrary.org/obo/UBERON_0001875;globus pallidus;globus pallidus (Burdach) -http://purl.obolibrary.org/obo/UBERON_0001875;globus pallidus;nucleus pallidus -http://purl.obolibrary.org/obo/UBERON_0001875;globus pallidus;pale body -http://purl.obolibrary.org/obo/UBERON_0001875;globus pallidus;paleostriatum -http://purl.obolibrary.org/obo/UBERON_0001875;globus pallidus;pallidium -http://purl.obolibrary.org/obo/UBERON_0001875;globus pallidus;pallidum -http://purl.obolibrary.org/obo/UBERON_0001876;amygdala;amygdaloid area -http://purl.obolibrary.org/obo/UBERON_0001876;amygdala;amygdaloid body -http://purl.obolibrary.org/obo/UBERON_0001876;amygdala;amygdaloid complex -http://purl.obolibrary.org/obo/UBERON_0001876;amygdala;amygdaloid nuclear complex -http://purl.obolibrary.org/obo/UBERON_0001876;amygdala;amygdaloid nuclear group -http://purl.obolibrary.org/obo/UBERON_0001876;amygdala;amygdaloid nuclear groups -http://purl.obolibrary.org/obo/UBERON_0001876;amygdala;amygdaloid nucleus -http://purl.obolibrary.org/obo/UBERON_0001876;amygdala;archistriatum -http://purl.obolibrary.org/obo/UBERON_0001876;amygdala;corpus amygdalae -http://purl.obolibrary.org/obo/UBERON_0001876;amygdala;corpus amygdaloideum -http://purl.obolibrary.org/obo/UBERON_0001876;amygdala;nucleus amygdalae -http://purl.obolibrary.org/obo/UBERON_0001877;medial septal nucleus;medial parolfactory nucleus -http://purl.obolibrary.org/obo/UBERON_0001878;septofimbrial nucleus;nucleus septofibrialis -http://purl.obolibrary.org/obo/UBERON_0001878;septofimbrial nucleus;scattered nucleus of the septum -http://purl.obolibrary.org/obo/UBERON_0001879;nucleus of diagonal band;diagonal band nucleus -http://purl.obolibrary.org/obo/UBERON_0001879;nucleus of diagonal band;nucleus of diagonal band (of Broca) -http://purl.obolibrary.org/obo/UBERON_0001879;nucleus of diagonal band;nucleus of the diagonal band of Broca -http://purl.obolibrary.org/obo/UBERON_0001879;nucleus of diagonal band;olfactory area (roberts) -http://purl.obolibrary.org/obo/UBERON_0001880;bed nucleus of stria terminalis;BST -http://purl.obolibrary.org/obo/UBERON_0001880;bed nucleus of stria terminalis;bed nuclei of the stria terminalis -http://purl.obolibrary.org/obo/UBERON_0001880;bed nucleus of stria terminalis;bed nucleus of the stria terminalis -http://purl.obolibrary.org/obo/UBERON_0001880;bed nucleus of stria terminalis;bed nucleus stria terminalis (Johnson) -http://purl.obolibrary.org/obo/UBERON_0001880;bed nucleus of stria terminalis;bed nucleus striae terminalis -http://purl.obolibrary.org/obo/UBERON_0001880;bed nucleus of stria terminalis;intercalate nucleus of stria terminalis -http://purl.obolibrary.org/obo/UBERON_0001880;bed nucleus of stria terminalis;interstitial nucleus of stria terminalis -http://purl.obolibrary.org/obo/UBERON_0001880;bed nucleus of stria terminalis;nuclei of stria terminalis -http://purl.obolibrary.org/obo/UBERON_0001880;bed nucleus of stria terminalis;nucleus interstitialis striae terminalis -http://purl.obolibrary.org/obo/UBERON_0001880;bed nucleus of stria terminalis;nucleus of stria terminalis -http://purl.obolibrary.org/obo/UBERON_0001880;bed nucleus of stria terminalis;nucleus of the stria terminalis -http://purl.obolibrary.org/obo/UBERON_0001880;bed nucleus of stria terminalis;nucleus proprius stria terminalis (bed nucleus) -http://purl.obolibrary.org/obo/UBERON_0001880;bed nucleus of stria terminalis;nucleus striae terminalis -http://purl.obolibrary.org/obo/UBERON_0001880;bed nucleus of stria terminalis;stria terminalis nucleus -http://purl.obolibrary.org/obo/UBERON_0001881;island of Calleja;Calleja island -http://purl.obolibrary.org/obo/UBERON_0001881;island of Calleja;islands of Calleja -http://purl.obolibrary.org/obo/UBERON_0001882;nucleus accumbens;accumbens nucleus -http://purl.obolibrary.org/obo/UBERON_0001882;nucleus accumbens;colliculus nuclei caudati -http://purl.obolibrary.org/obo/UBERON_0001882;nucleus accumbens;colliculus of caudate nucleus -http://purl.obolibrary.org/obo/UBERON_0001882;nucleus accumbens;nucleus accumbens septi -http://purl.obolibrary.org/obo/UBERON_0001883;olfactory tubercle;tuberculum olfactorium -http://purl.obolibrary.org/obo/UBERON_0001884;phrenic nerve;diaphragmatic nerve -http://purl.obolibrary.org/obo/UBERON_0001884;phrenic nerve;nervus phrenicus -http://purl.obolibrary.org/obo/UBERON_0001884;phrenic nerve;phrenic -http://purl.obolibrary.org/obo/UBERON_0001885;dentate gyrus of hippocampal formation;area dentata -http://purl.obolibrary.org/obo/UBERON_0001885;dentate gyrus of hippocampal formation;dentate area -http://purl.obolibrary.org/obo/UBERON_0001885;dentate gyrus of hippocampal formation;dentate area (dentate gyrus) -http://purl.obolibrary.org/obo/UBERON_0001885;dentate gyrus of hippocampal formation;dentate gyrus -http://purl.obolibrary.org/obo/UBERON_0001885;dentate gyrus of hippocampal formation;fascia dentata -http://purl.obolibrary.org/obo/UBERON_0001885;dentate gyrus of hippocampal formation;gyrus dentatus -http://purl.obolibrary.org/obo/UBERON_0001885;dentate gyrus of hippocampal formation;hippocampal dentate gyrus -http://purl.obolibrary.org/obo/UBERON_0001886;choroid plexus;chorioid plexus -http://purl.obolibrary.org/obo/UBERON_0001886;choroid plexus;plexus choroideus -http://purl.obolibrary.org/obo/UBERON_0001887;internal capsule of telencephalon;brain internal capsule -http://purl.obolibrary.org/obo/UBERON_0001887;internal capsule of telencephalon;internal capsule radiations -http://purl.obolibrary.org/obo/UBERON_0001888;lateral olfactory stria;tractus olfactorius lateralis -http://purl.obolibrary.org/obo/UBERON_0001889;trunk of phrenic nerve;phrenic nerve trunk -http://purl.obolibrary.org/obo/UBERON_0001889;trunk of phrenic nerve;phrenic neural trunk -http://purl.obolibrary.org/obo/UBERON_0001890;forebrain;FB -http://purl.obolibrary.org/obo/UBERON_0001890;forebrain;prosencephalon -http://purl.obolibrary.org/obo/UBERON_0001891;midbrain;MB -http://purl.obolibrary.org/obo/UBERON_0001891;midbrain;mesencephalon -http://purl.obolibrary.org/obo/UBERON_0001892;rhombomere;hindbrain neuromere -http://purl.obolibrary.org/obo/UBERON_0001892;rhombomere;hindbrain neuromeres -http://purl.obolibrary.org/obo/UBERON_0001892;rhombomere;rhombomere -http://purl.obolibrary.org/obo/UBERON_0001893;telencephalon;cerebrum -http://purl.obolibrary.org/obo/UBERON_0001893;telencephalon;endbrain -http://purl.obolibrary.org/obo/UBERON_0001893;telencephalon;supratentorial region -http://purl.obolibrary.org/obo/UBERON_0001894;diencephalon;DiE -http://purl.obolibrary.org/obo/UBERON_0001894;diencephalon;between brain -http://purl.obolibrary.org/obo/UBERON_0001894;diencephalon;betweenbrain -http://purl.obolibrary.org/obo/UBERON_0001894;diencephalon;diencephalon -http://purl.obolibrary.org/obo/UBERON_0001894;diencephalon;interbrain -http://purl.obolibrary.org/obo/UBERON_0001894;diencephalon;mature diencephalon -http://purl.obolibrary.org/obo/UBERON_0001894;diencephalon;thalamencephalon -http://purl.obolibrary.org/obo/UBERON_0001895;metencephalon;epencephalon -http://purl.obolibrary.org/obo/UBERON_0001895;metencephalon;epencephalon-2 -http://purl.obolibrary.org/obo/UBERON_0001896;medulla oblongata;bulb -http://purl.obolibrary.org/obo/UBERON_0001896;medulla oblongata;bulbus -http://purl.obolibrary.org/obo/UBERON_0001896;medulla oblongata;medulla -http://purl.obolibrary.org/obo/UBERON_0001896;medulla oblongata;medulla oblonzata -http://purl.obolibrary.org/obo/UBERON_0001896;medulla oblongata;metepencephalon -http://purl.obolibrary.org/obo/UBERON_0001897;Thalamus;Th -http://purl.obolibrary.org/obo/UBERON_0001897;Thalamus;thalamencephalon -http://purl.obolibrary.org/obo/UBERON_0001897;Thalamus;thalami -http://purl.obolibrary.org/obo/UBERON_0001897;Thalamus;thalamus -http://purl.obolibrary.org/obo/UBERON_0001897;Thalamus;thalamus opticus -http://purl.obolibrary.org/obo/UBERON_0001897;Thalamus;wider thalamus -http://purl.obolibrary.org/obo/UBERON_0001897;dorsal plus ventral thalamus;Th -http://purl.obolibrary.org/obo/UBERON_0001897;dorsal plus ventral thalamus;thalamencephalon -http://purl.obolibrary.org/obo/UBERON_0001897;dorsal plus ventral thalamus;thalami -http://purl.obolibrary.org/obo/UBERON_0001897;dorsal plus ventral thalamus;thalamus -http://purl.obolibrary.org/obo/UBERON_0001897;dorsal plus ventral thalamus;thalamus opticus -http://purl.obolibrary.org/obo/UBERON_0001897;dorsal plus ventral thalamus;wider thalamus -http://purl.obolibrary.org/obo/UBERON_0001898;hypothalamus;Hy -http://purl.obolibrary.org/obo/UBERON_0001898;hypothalamus;hypothalamus -http://purl.obolibrary.org/obo/UBERON_0001898;hypothalamus;preoptico-hypothalamic area -http://purl.obolibrary.org/obo/UBERON_0001898;hypothalamus;preoptico-hypothalamic region -http://purl.obolibrary.org/obo/UBERON_0001899;epithalamus;ETh -http://purl.obolibrary.org/obo/UBERON_0001899;epithalamus;epithalamus -http://purl.obolibrary.org/obo/UBERON_0001900;ventral thalamus;SbTh -http://purl.obolibrary.org/obo/UBERON_0001900;ventral thalamus;perithalamus -http://purl.obolibrary.org/obo/UBERON_0001900;ventral thalamus;prethalamus -http://purl.obolibrary.org/obo/UBERON_0001900;ventral thalamus;subthalamic region -http://purl.obolibrary.org/obo/UBERON_0001900;ventral thalamus;subthalamus -http://purl.obolibrary.org/obo/UBERON_0001900;ventral thalamus;thalamus ventralis -http://purl.obolibrary.org/obo/UBERON_0001900;ventral thalamus;ventral thalamus -http://purl.obolibrary.org/obo/UBERON_0001901;epithelium of trachea;epithelial tissue of trachea -http://purl.obolibrary.org/obo/UBERON_0001901;epithelium of trachea;epithelial tissue of windpipe -http://purl.obolibrary.org/obo/UBERON_0001901;epithelium of trachea;epithelium of windpipe -http://purl.obolibrary.org/obo/UBERON_0001901;epithelium of trachea;trachea epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0001901;epithelium of trachea;trachea epithelium -http://purl.obolibrary.org/obo/UBERON_0001901;epithelium of trachea;tracheal epithelium -http://purl.obolibrary.org/obo/UBERON_0001901;epithelium of trachea;windpipe epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0001901;epithelium of trachea;windpipe epithelium -http://purl.obolibrary.org/obo/UBERON_0001902;epithelium of small intestine;epithelial tissue of small bowel -http://purl.obolibrary.org/obo/UBERON_0001902;epithelium of small intestine;epithelial tissue of small intestine -http://purl.obolibrary.org/obo/UBERON_0001902;epithelium of small intestine;epithelium of small bowel -http://purl.obolibrary.org/obo/UBERON_0001902;epithelium of small intestine;mid intestine epithelium -http://purl.obolibrary.org/obo/UBERON_0001902;epithelium of small intestine;small bowel epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0001902;epithelium of small intestine;small bowel epithelium -http://purl.obolibrary.org/obo/UBERON_0001902;epithelium of small intestine;small intestinal epithelium -http://purl.obolibrary.org/obo/UBERON_0001902;epithelium of small intestine;small intestine epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0001902;epithelium of small intestine;small intestine epithelium -http://purl.obolibrary.org/obo/UBERON_0001903;thalamic reticular nucleus;nuclei reticulares (thalami) -http://purl.obolibrary.org/obo/UBERON_0001903;thalamic reticular nucleus;nucleus reticularis -http://purl.obolibrary.org/obo/UBERON_0001903;thalamic reticular nucleus;nucleus reticularis thalami -http://purl.obolibrary.org/obo/UBERON_0001903;thalamic reticular nucleus;nucleus reticulatus (thalami) -http://purl.obolibrary.org/obo/UBERON_0001903;thalamic reticular nucleus;nucleus thalamicus reticularis -http://purl.obolibrary.org/obo/UBERON_0001903;thalamic reticular nucleus;reticular nuclear group -http://purl.obolibrary.org/obo/UBERON_0001903;thalamic reticular nucleus;reticular nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0001903;thalamic reticular nucleus;reticular nucleus of the thalamus -http://purl.obolibrary.org/obo/UBERON_0001903;thalamic reticular nucleus;reticular nucleus thalamus (Arnold) -http://purl.obolibrary.org/obo/UBERON_0001903;thalamic reticular nucleus;reticular nucleus-2 -http://purl.obolibrary.org/obo/UBERON_0001903;thalamic reticular nucleus;reticular thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0001903;thalamic reticular nucleus;reticulatum thalami (Hassler) -http://purl.obolibrary.org/obo/UBERON_0001904;habenula;Hb -http://purl.obolibrary.org/obo/UBERON_0001904;habenula;ganglion intercrurale -http://purl.obolibrary.org/obo/UBERON_0001904;habenula;ganglion interpedunculare -http://purl.obolibrary.org/obo/UBERON_0001904;habenula;habenula complex -http://purl.obolibrary.org/obo/UBERON_0001904;habenula;habenulae -http://purl.obolibrary.org/obo/UBERON_0001904;habenula;habenular complex -http://purl.obolibrary.org/obo/UBERON_0001904;habenula;habenular nuclei -http://purl.obolibrary.org/obo/UBERON_0001904;habenula;nuclei habenulares -http://purl.obolibrary.org/obo/UBERON_0001904;habenula;nucleus habenularis -http://purl.obolibrary.org/obo/UBERON_0001904;habenula;pineal peduncle -http://purl.obolibrary.org/obo/UBERON_0001905;pineal body;corpus pineale -http://purl.obolibrary.org/obo/UBERON_0001905;pineal body;glandula pinealis -http://purl.obolibrary.org/obo/UBERON_0001905;pineal body;pineal gland -http://purl.obolibrary.org/obo/UBERON_0001905;pineal body;pineal organ -http://purl.obolibrary.org/obo/UBERON_0001906;subthalamic nucleus;Luy's body -http://purl.obolibrary.org/obo/UBERON_0001906;subthalamic nucleus;Luys' body -http://purl.obolibrary.org/obo/UBERON_0001906;subthalamic nucleus;Luys' nucleus -http://purl.obolibrary.org/obo/UBERON_0001906;subthalamic nucleus;body of Forel -http://purl.obolibrary.org/obo/UBERON_0001906;subthalamic nucleus;body of Luys -http://purl.obolibrary.org/obo/UBERON_0001906;subthalamic nucleus;corpus Luysi -http://purl.obolibrary.org/obo/UBERON_0001906;subthalamic nucleus;corpus subthalamicum -http://purl.obolibrary.org/obo/UBERON_0001906;subthalamic nucleus;nucleus of Luys -http://purl.obolibrary.org/obo/UBERON_0001906;subthalamic nucleus;nucleus of corpus luysii -http://purl.obolibrary.org/obo/UBERON_0001906;subthalamic nucleus;nucleus subthalamicus -http://purl.obolibrary.org/obo/UBERON_0001906;subthalamic nucleus;subthalamic nucleus (of Luys) -http://purl.obolibrary.org/obo/UBERON_0001906;subthalamic nucleus;subthalamic nucleus of Luys -http://purl.obolibrary.org/obo/UBERON_0001907;zona incerta;nucleus of the zona incerta -http://purl.obolibrary.org/obo/UBERON_0001907;zona incerta;zona incerta proper -http://purl.obolibrary.org/obo/UBERON_0001908;optic tract;optic lemniscus -http://purl.obolibrary.org/obo/UBERON_0001909;habenular commissure;commissura habenularum -http://purl.obolibrary.org/obo/UBERON_0001909;habenular commissure;commissure habenularum -http://purl.obolibrary.org/obo/UBERON_0001910;medial forebrain bundle;medial forebrain fasciculus -http://purl.obolibrary.org/obo/UBERON_0001910;medial forebrain bundle;telencephalic medial fasciculus -http://purl.obolibrary.org/obo/UBERON_0001911;mammary gland;glandula mammaria -http://purl.obolibrary.org/obo/UBERON_0001911;mammary gland;lactiferous gland -http://purl.obolibrary.org/obo/UBERON_0001912;lobule of mammary gland;acinus of mammary gland -http://purl.obolibrary.org/obo/UBERON_0001912;lobule of mammary gland;lactiferous acinus -http://purl.obolibrary.org/obo/UBERON_0001912;lobule of mammary gland;lactiferous gland lobule -http://purl.obolibrary.org/obo/UBERON_0001912;lobule of mammary gland;lactiferous lobule -http://purl.obolibrary.org/obo/UBERON_0001912;lobule of mammary gland;lobule of lactiferous gland -http://purl.obolibrary.org/obo/UBERON_0001912;lobule of mammary gland;lobule of mammary gland -http://purl.obolibrary.org/obo/UBERON_0001912;lobule of mammary gland;mammary acinus -http://purl.obolibrary.org/obo/UBERON_0001912;lobule of mammary gland;mammary gland lobule -http://purl.obolibrary.org/obo/UBERON_0001913;milk;mammary gland milk -http://purl.obolibrary.org/obo/UBERON_0001914;colostrum; -http://purl.obolibrary.org/obo/UBERON_0001915;endothelium of capillary;blood capillary endothelium -http://purl.obolibrary.org/obo/UBERON_0001915;endothelium of capillary;capillary endothelium -http://purl.obolibrary.org/obo/UBERON_0001915;endothelium of capillary;capillary vessel endothelium -http://purl.obolibrary.org/obo/UBERON_0001915;endothelium of capillary;endothelium of blood capillary -http://purl.obolibrary.org/obo/UBERON_0001915;endothelium of capillary;endothelium of capillary vessel -http://purl.obolibrary.org/obo/UBERON_0001916;endothelium of arteriole;arteriole endothelium -http://purl.obolibrary.org/obo/UBERON_0001917;endothelium of artery;arterial endothelium -http://purl.obolibrary.org/obo/UBERON_0001917;endothelium of artery;artery endothelium -http://purl.obolibrary.org/obo/UBERON_0001918;endothelium of venule;venule endothelium -http://purl.obolibrary.org/obo/UBERON_0001919;endothelium of vein;vein endothelium -http://purl.obolibrary.org/obo/UBERON_0001919;endothelium of vein;venous endothelium -http://purl.obolibrary.org/obo/UBERON_0001920;paraventricular nucleus of thalamus;nuclei paraventriculares thalami -http://purl.obolibrary.org/obo/UBERON_0001920;paraventricular nucleus of thalamus;paraventricular gray -http://purl.obolibrary.org/obo/UBERON_0001920;paraventricular nucleus of thalamus;paraventricular nuclei of thalamus -http://purl.obolibrary.org/obo/UBERON_0001920;paraventricular nucleus of thalamus;paraventricular thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0001921;reuniens nucleus;medioventral nucleus -http://purl.obolibrary.org/obo/UBERON_0001921;reuniens nucleus;nucleus reuniens -http://purl.obolibrary.org/obo/UBERON_0001921;reuniens nucleus;reuniens thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0001922;parafascicular nucleus;nuclei parafasciculares thalami -http://purl.obolibrary.org/obo/UBERON_0001922;parafascicular nucleus;nucleus parafascicularis -http://purl.obolibrary.org/obo/UBERON_0001922;parafascicular nucleus;nucleus parafascicularis (Hassler) -http://purl.obolibrary.org/obo/UBERON_0001922;parafascicular nucleus;nucleus parafascicularis thalami -http://purl.obolibrary.org/obo/UBERON_0001922;parafascicular nucleus;parafascicular nucleus (vogt) -http://purl.obolibrary.org/obo/UBERON_0001922;parafascicular nucleus;parafascicular nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0001922;parafascicular nucleus;parafascicular nucleus of the thalamus -http://purl.obolibrary.org/obo/UBERON_0001922;parafascicular nucleus;parafascicular thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0001923;central medial nucleus;central medial nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0001923;central medial nucleus;central medial nucleus thalamus (rioch 1928) -http://purl.obolibrary.org/obo/UBERON_0001923;central medial nucleus;central medial thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0001923;central medial nucleus;nucleus centralis medialis -http://purl.obolibrary.org/obo/UBERON_0001923;central medial nucleus;nucleus centralis medialis thalami -http://purl.obolibrary.org/obo/UBERON_0001924;paracentral nucleus;nucleus centralis lateralis superior (kusama) -http://purl.obolibrary.org/obo/UBERON_0001924;paracentral nucleus;nucleus paracentral -http://purl.obolibrary.org/obo/UBERON_0001924;paracentral nucleus;nucleus paracentral thalami -http://purl.obolibrary.org/obo/UBERON_0001924;paracentral nucleus;nucleus paracentralis thalami -http://purl.obolibrary.org/obo/UBERON_0001924;paracentral nucleus;paracentral nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0001924;paracentral nucleus;paracentral nucleus thalamus (gurdjian 1927) -http://purl.obolibrary.org/obo/UBERON_0001924;paracentral nucleus;paracentral thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0001925;ventral lateral nucleus of thalamus;lateral ventral nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0001925;ventral lateral nucleus of thalamus;nuclei ventrales laterales thalami -http://purl.obolibrary.org/obo/UBERON_0001925;ventral lateral nucleus of thalamus;nucleus ventralis intermedius -http://purl.obolibrary.org/obo/UBERON_0001925;ventral lateral nucleus of thalamus;nucleus ventralis lateralis -http://purl.obolibrary.org/obo/UBERON_0001925;ventral lateral nucleus of thalamus;nucleus ventralis lateralis thalami -http://purl.obolibrary.org/obo/UBERON_0001925;ventral lateral nucleus of thalamus;nucleus ventralis thalami lateralis -http://purl.obolibrary.org/obo/UBERON_0001925;ventral lateral nucleus of thalamus;nucleus ventrolateralis thalami -http://purl.obolibrary.org/obo/UBERON_0001925;ventral lateral nucleus of thalamus;ventral lateral complex of thalamus -http://purl.obolibrary.org/obo/UBERON_0001925;ventral lateral nucleus of thalamus;ventral lateral nucleus -http://purl.obolibrary.org/obo/UBERON_0001925;ventral lateral nucleus of thalamus;ventral lateral nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0001925;ventral lateral nucleus of thalamus;ventral lateral thalamic nuclei -http://purl.obolibrary.org/obo/UBERON_0001925;ventral lateral nucleus of thalamus;ventral lateral thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0001925;ventral lateral nucleus of thalamus;ventrolateral thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0001926;lateral geniculate body;LGB -http://purl.obolibrary.org/obo/UBERON_0001926;lateral geniculate body;LGN -http://purl.obolibrary.org/obo/UBERON_0001926;lateral geniculate body;corpus geniculatum externum -http://purl.obolibrary.org/obo/UBERON_0001926;lateral geniculate body;corpus geniculatum laterale -http://purl.obolibrary.org/obo/UBERON_0001926;lateral geniculate body;corpus geniculatum laterales -http://purl.obolibrary.org/obo/UBERON_0001926;lateral geniculate body;corpus geniculatus lateralis -http://purl.obolibrary.org/obo/UBERON_0001926;lateral geniculate body;external geniculate body -http://purl.obolibrary.org/obo/UBERON_0001926;lateral geniculate body;lateral geniculate complex -http://purl.obolibrary.org/obo/UBERON_0001926;lateral geniculate body;lateral geniculate nucleus -http://purl.obolibrary.org/obo/UBERON_0001926;lateral geniculate body;nucleus corporis geniculati lateralis -http://purl.obolibrary.org/obo/UBERON_0001926;lateral geniculate body;nucleus geniculatus lateralis -http://purl.obolibrary.org/obo/UBERON_0001927;medial geniculate body;MGB -http://purl.obolibrary.org/obo/UBERON_0001927;medial geniculate body;MGN -http://purl.obolibrary.org/obo/UBERON_0001927;medial geniculate body;corpus geniculatum mediale -http://purl.obolibrary.org/obo/UBERON_0001927;medial geniculate body;corpus geniculatus medialis -http://purl.obolibrary.org/obo/UBERON_0001927;medial geniculate body;internal geniculate body -http://purl.obolibrary.org/obo/UBERON_0001927;medial geniculate body;medial geniculate complex -http://purl.obolibrary.org/obo/UBERON_0001927;medial geniculate body;medial geniculate complex of dorsal thalamus -http://purl.obolibrary.org/obo/UBERON_0001927;medial geniculate body;medial geniculate nuclei -http://purl.obolibrary.org/obo/UBERON_0001927;medial geniculate body;medial geniculate nucleus -http://purl.obolibrary.org/obo/UBERON_0001927;medial geniculate body;nuclei corporis geniculati medialis -http://purl.obolibrary.org/obo/UBERON_0001927;medial geniculate body;nucleus corporis geniculati medialis -http://purl.obolibrary.org/obo/UBERON_0001927;medial geniculate body;nucleus geniculatus medialis -http://purl.obolibrary.org/obo/UBERON_0001928;preoptic area;POA -http://purl.obolibrary.org/obo/UBERON_0001928;preoptic area;area hypothalamica rostralis -http://purl.obolibrary.org/obo/UBERON_0001928;preoptic area;area praeoptica -http://purl.obolibrary.org/obo/UBERON_0001928;preoptic area;area preoptica -http://purl.obolibrary.org/obo/UBERON_0001928;preoptic area;nuclei preoptici -http://purl.obolibrary.org/obo/UBERON_0001928;preoptic area;preoptic hypothalamic area -http://purl.obolibrary.org/obo/UBERON_0001928;preoptic area;preoptic hypothalamic region -http://purl.obolibrary.org/obo/UBERON_0001928;preoptic area;preoptic nuclei -http://purl.obolibrary.org/obo/UBERON_0001928;preoptic area;preoptic region -http://purl.obolibrary.org/obo/UBERON_0001928;preoptic area;preoptic region of hypothalamus -http://purl.obolibrary.org/obo/UBERON_0001928;preoptic area;regio hypothalamica anterior -http://purl.obolibrary.org/obo/UBERON_0001929;supraoptic nucleus;nucleus supraopticus -http://purl.obolibrary.org/obo/UBERON_0001929;supraoptic nucleus;supra-optic nucleus -http://purl.obolibrary.org/obo/UBERON_0001929;supraoptic nucleus;supraoptic nucleus of hypothalamus -http://purl.obolibrary.org/obo/UBERON_0001930;paraventricular nucleus of hypothalamus;Pa -http://purl.obolibrary.org/obo/UBERON_0001930;paraventricular nucleus of hypothalamus;filiform nucleus -http://purl.obolibrary.org/obo/UBERON_0001930;paraventricular nucleus of hypothalamus;nuclei paraventriculares -http://purl.obolibrary.org/obo/UBERON_0001930;paraventricular nucleus of hypothalamus;nuclei paraventricularis hypothalami -http://purl.obolibrary.org/obo/UBERON_0001930;paraventricular nucleus of hypothalamus;nucleus filiformis -http://purl.obolibrary.org/obo/UBERON_0001930;paraventricular nucleus of hypothalamus;nucleus hypothalami filiformis -http://purl.obolibrary.org/obo/UBERON_0001930;paraventricular nucleus of hypothalamus;nucleus hypothalami paraventricularis -http://purl.obolibrary.org/obo/UBERON_0001930;paraventricular nucleus of hypothalamus;nucleus paraventricularis hypothalami -http://purl.obolibrary.org/obo/UBERON_0001930;paraventricular nucleus of hypothalamus;paraventricular hypothalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0001930;paraventricular nucleus of hypothalamus;paraventricular nucleus -http://purl.obolibrary.org/obo/UBERON_0001930;paraventricular nucleus of hypothalamus;paraventricular nucleus hypothalamus (Malone) -http://purl.obolibrary.org/obo/UBERON_0001930;paraventricular nucleus of hypothalamus;paraventricular nucleus of the hypothalamus -http://purl.obolibrary.org/obo/UBERON_0001930;paraventricular nucleus of hypothalamus;parvocellular hypothalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0001930;paraventricular nucleus of hypothalamus;subcommissural nucleus (Ziehen) -http://purl.obolibrary.org/obo/UBERON_0001931;lateral preoptic nucleus;LPO -http://purl.obolibrary.org/obo/UBERON_0001931;lateral preoptic nucleus;area praeoptica lateralis -http://purl.obolibrary.org/obo/UBERON_0001931;lateral preoptic nucleus;area preoptica lateralis -http://purl.obolibrary.org/obo/UBERON_0001931;lateral preoptic nucleus;lateral preoptic area -http://purl.obolibrary.org/obo/UBERON_0001931;lateral preoptic nucleus;lateral preoptic hypothalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0001931;lateral preoptic nucleus;nucleus praeopticus lateralis -http://purl.obolibrary.org/obo/UBERON_0001931;lateral preoptic nucleus;nucleus preopticus lateralis -http://purl.obolibrary.org/obo/UBERON_0001932;arcuate nucleus of hypothalamus;arcuate hypothalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0001932;arcuate nucleus of hypothalamus;arcuate nucleus -http://purl.obolibrary.org/obo/UBERON_0001932;arcuate nucleus of hypothalamus;arcuate nucleus-2 -http://purl.obolibrary.org/obo/UBERON_0001932;arcuate nucleus of hypothalamus;arcuate periventricular nucleus -http://purl.obolibrary.org/obo/UBERON_0001932;arcuate nucleus of hypothalamus;infundibular hypothalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0001932;arcuate nucleus of hypothalamus;infundibular nucleus -http://purl.obolibrary.org/obo/UBERON_0001932;arcuate nucleus of hypothalamus;infundibular periventricular nucleus -http://purl.obolibrary.org/obo/UBERON_0001932;arcuate nucleus of hypothalamus;nucleus arcuatus -http://purl.obolibrary.org/obo/UBERON_0001933;retrochiasmatic area;retrochiasmatic region -http://purl.obolibrary.org/obo/UBERON_0001934;dorsomedial nucleus of hypothalamus;dorsomedial hypothalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0001934;dorsomedial nucleus of hypothalamus;dorsomedial nucleus of dorsal hypothalamus -http://purl.obolibrary.org/obo/UBERON_0001934;dorsomedial nucleus of hypothalamus;dorsomedial nucleus of intermediate hypothalamus -http://purl.obolibrary.org/obo/UBERON_0001935;ventromedial nucleus of hypothalamus;ventromedial hypothalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0001936;tuberomammillary nucleus;caudal magnocellular nucleus -http://purl.obolibrary.org/obo/UBERON_0001936;tuberomammillary nucleus;mammilloinfundibular nucleus -http://purl.obolibrary.org/obo/UBERON_0001936;tuberomammillary nucleus;mammiloinfundibular nucleus -http://purl.obolibrary.org/obo/UBERON_0001936;tuberomammillary nucleus;tuberomammillary hypothalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0001936;tuberomammillary nucleus;tuberomammillary nucleus -http://purl.obolibrary.org/obo/UBERON_0001937;lateral hypothalamic nucleus;nucleus hypothalamicus lateralis -http://purl.obolibrary.org/obo/UBERON_0001938;lateral mammillary nucleus;lateral mammillary hypothalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0001938;lateral mammillary nucleus;lateral nucleus of mammillary body -http://purl.obolibrary.org/obo/UBERON_0001938;lateral mammillary nucleus;nucleus mammillaris lateralis -http://purl.obolibrary.org/obo/UBERON_0001939;medial mammillary nucleus;internal mammillary nucleus -http://purl.obolibrary.org/obo/UBERON_0001939;medial mammillary nucleus;medial nucleus of mammillary body -http://purl.obolibrary.org/obo/UBERON_0001939;medial mammillary nucleus;nucleus mammillaris medialis -http://purl.obolibrary.org/obo/UBERON_0001940;supramammillary nucleus; -http://purl.obolibrary.org/obo/UBERON_0001941;lateral habenular nucleus;lateral habenula -http://purl.obolibrary.org/obo/UBERON_0001941;lateral habenular nucleus;nucleus habenulae lateralis -http://purl.obolibrary.org/obo/UBERON_0001941;lateral habenular nucleus;nucleus habenularis lateralis -http://purl.obolibrary.org/obo/UBERON_0001941;lateral habenular nucleus;nucleus habenularis lateralis epithalami -http://purl.obolibrary.org/obo/UBERON_0001942;medial habenular nucleus;medial habenula -http://purl.obolibrary.org/obo/UBERON_0001942;medial habenular nucleus;nucleus habenulae medialis -http://purl.obolibrary.org/obo/UBERON_0001942;medial habenular nucleus;nucleus habenularis medialis -http://purl.obolibrary.org/obo/UBERON_0001942;medial habenular nucleus;nucleus habenularis medialis (Hassler) -http://purl.obolibrary.org/obo/UBERON_0001942;medial habenular nucleus;nucleus habenularis medialis epithalami -http://purl.obolibrary.org/obo/UBERON_0001943;midbrain tegmentum;MTg -http://purl.obolibrary.org/obo/UBERON_0001943;midbrain tegmentum;mesencephalic tegmentum -http://purl.obolibrary.org/obo/UBERON_0001943;midbrain tegmentum;tegmentum -http://purl.obolibrary.org/obo/UBERON_0001943;midbrain tegmentum;tegmentum mesencephali -http://purl.obolibrary.org/obo/UBERON_0001943;midbrain tegmentum;tegmentum mesencephalicum -http://purl.obolibrary.org/obo/UBERON_0001943;midbrain tegmentum;tegmentum of midbrain -http://purl.obolibrary.org/obo/UBERON_0001944;pretectal region;area praetectalis -http://purl.obolibrary.org/obo/UBERON_0001944;pretectal region;area pretectalis -http://purl.obolibrary.org/obo/UBERON_0001944;pretectal region;nuclei pretectales -http://purl.obolibrary.org/obo/UBERON_0001944;pretectal region;nucleus praetectalis -http://purl.obolibrary.org/obo/UBERON_0001944;pretectal region;praetectum -http://purl.obolibrary.org/obo/UBERON_0001944;pretectal region;pretectal area -http://purl.obolibrary.org/obo/UBERON_0001944;pretectal region;pretectal nuclei -http://purl.obolibrary.org/obo/UBERON_0001944;pretectal region;pretectum -http://purl.obolibrary.org/obo/UBERON_0001944;pretectal region;regio pretectalis -http://purl.obolibrary.org/obo/UBERON_0001945;superior colliculus;anterior colliculus -http://purl.obolibrary.org/obo/UBERON_0001945;superior colliculus;anterior corpus quadrigeminum -http://purl.obolibrary.org/obo/UBERON_0001945;superior colliculus;colliculus bigeminalis oralis -http://purl.obolibrary.org/obo/UBERON_0001945;superior colliculus;colliculus cranialis -http://purl.obolibrary.org/obo/UBERON_0001945;superior colliculus;colliculus rostralis -http://purl.obolibrary.org/obo/UBERON_0001945;superior colliculus;colliculus superior -http://purl.obolibrary.org/obo/UBERON_0001945;superior colliculus;corpora bigemina -http://purl.obolibrary.org/obo/UBERON_0001945;superior colliculus;corpus quadrigeminum superius -http://purl.obolibrary.org/obo/UBERON_0001945;superior colliculus;cranial colliculus -http://purl.obolibrary.org/obo/UBERON_0001945;superior colliculus;dorsal midbrain -http://purl.obolibrary.org/obo/UBERON_0001945;superior colliculus;layers of the superior colliculus -http://purl.obolibrary.org/obo/UBERON_0001945;superior colliculus;lobus opticus -http://purl.obolibrary.org/obo/UBERON_0001945;superior colliculus;nates -http://purl.obolibrary.org/obo/UBERON_0001945;superior colliculus;optic lobe -http://purl.obolibrary.org/obo/UBERON_0001945;superior colliculus;optic tectum -http://purl.obolibrary.org/obo/UBERON_0001945;superior colliculus;strata (grisea et alba) colliculi cranialis -http://purl.obolibrary.org/obo/UBERON_0001945;superior colliculus;strata (grisea et alba) colliculi superioris -http://purl.obolibrary.org/obo/UBERON_0001945;superior colliculus;tectal lobe -http://purl.obolibrary.org/obo/UBERON_0001945;superior colliculus;tectum -http://purl.obolibrary.org/obo/UBERON_0001945;superior colliculus;tectum opticum -http://purl.obolibrary.org/obo/UBERON_0001946;inferior colliculus;caudal colliculus -http://purl.obolibrary.org/obo/UBERON_0001946;inferior colliculus;colliculus caudalis -http://purl.obolibrary.org/obo/UBERON_0001946;inferior colliculus;colliculus inferior -http://purl.obolibrary.org/obo/UBERON_0001946;inferior colliculus;corpus bigeminalis caudalis -http://purl.obolibrary.org/obo/UBERON_0001946;inferior colliculus;corpus bigeminum posterioris -http://purl.obolibrary.org/obo/UBERON_0001946;inferior colliculus;corpus quadrigeminum inferius -http://purl.obolibrary.org/obo/UBERON_0001946;inferior colliculus;inferior colliculi -http://purl.obolibrary.org/obo/UBERON_0001946;inferior colliculus;posterior colliculus -http://purl.obolibrary.org/obo/UBERON_0001946;inferior colliculus;posterior corpus quadrigeminum -http://purl.obolibrary.org/obo/UBERON_0001947;red nucleus;R -http://purl.obolibrary.org/obo/UBERON_0001947;red nucleus;nucleus rotundus subthalamo-peduncularis -http://purl.obolibrary.org/obo/UBERON_0001947;red nucleus;nucleus ruber -http://purl.obolibrary.org/obo/UBERON_0001947;red nucleus;nucleus ruber tegmenti -http://purl.obolibrary.org/obo/UBERON_0001947;red nucleus;nucleus ruber tegmenti (Stilling) -http://purl.obolibrary.org/obo/UBERON_0001947;red nucleus;red nucleus (Burdach) -http://purl.obolibrary.org/obo/UBERON_0001948;Regional part of spinal cord;spinal cord part -http://purl.obolibrary.org/obo/UBERON_0001948;regional part of spinal cord;spinal cord part -http://purl.obolibrary.org/obo/UBERON_0001949;gingival epithelium;epithelial tissue of gingiva -http://purl.obolibrary.org/obo/UBERON_0001949;gingival epithelium;epithelium of gingiva -http://purl.obolibrary.org/obo/UBERON_0001949;gingival epithelium;gingiva epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0001949;gingival epithelium;gingiva epithelium -http://purl.obolibrary.org/obo/UBERON_0001950;neocortex;cerebral neocortex -http://purl.obolibrary.org/obo/UBERON_0001950;neocortex;homogenetic cortex -http://purl.obolibrary.org/obo/UBERON_0001950;neocortex;homotypical cortex -http://purl.obolibrary.org/obo/UBERON_0001950;neocortex;iso-cortex -http://purl.obolibrary.org/obo/UBERON_0001950;neocortex;isocortex -http://purl.obolibrary.org/obo/UBERON_0001950;neocortex;isocortex (sensu lato) -http://purl.obolibrary.org/obo/UBERON_0001950;neocortex;neocortex (isocortex) -http://purl.obolibrary.org/obo/UBERON_0001950;neocortex;neopallial cortex -http://purl.obolibrary.org/obo/UBERON_0001950;neocortex;neopallium -http://purl.obolibrary.org/obo/UBERON_0001950;neocortex;nonolfactory cortex -http://purl.obolibrary.org/obo/UBERON_0001950;neocortex;nucleus hypoglossalis -http://purl.obolibrary.org/obo/UBERON_0001951;epithelium of nasopharynx;epithelial tissue of nasal part of pharynx -http://purl.obolibrary.org/obo/UBERON_0001951;epithelium of nasopharynx;epithelial tissue of nasopharynx -http://purl.obolibrary.org/obo/UBERON_0001951;epithelium of nasopharynx;epithelial tissue of rhinopharynx -http://purl.obolibrary.org/obo/UBERON_0001951;epithelium of nasopharynx;epithelium of nasal part of pharynx -http://purl.obolibrary.org/obo/UBERON_0001951;epithelium of nasopharynx;epithelium of rhinopharynx -http://purl.obolibrary.org/obo/UBERON_0001951;epithelium of nasopharynx;nasal part of pharynx epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0001951;epithelium of nasopharynx;nasal part of pharynx epithelium -http://purl.obolibrary.org/obo/UBERON_0001951;epithelium of nasopharynx;nasopharynx epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0001951;epithelium of nasopharynx;nasopharynx epithelium -http://purl.obolibrary.org/obo/UBERON_0001951;epithelium of nasopharynx;rhinopharynx epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0001951;epithelium of nasopharynx;rhinopharynx epithelium -http://purl.obolibrary.org/obo/UBERON_0001952;epithelium of oropharynx;oropharyngeal epithelium -http://purl.obolibrary.org/obo/UBERON_0001952;epithelium of oropharynx;oropharynx epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0001952;epithelium of oropharynx;oropharynx epithelium -http://purl.obolibrary.org/obo/UBERON_0001953;presubiculum;presubicular cortex (presubiculum) -http://purl.obolibrary.org/obo/UBERON_0001953;presubiculum;presubiculum (Cajal) -http://purl.obolibrary.org/obo/UBERON_0001954;Ammon's horn;Ammon horn fields -http://purl.obolibrary.org/obo/UBERON_0001954;Ammon's horn;Ammon's horn -http://purl.obolibrary.org/obo/UBERON_0001954;Ammon's horn;Ammons horn -http://purl.obolibrary.org/obo/UBERON_0001954;Ammon's horn;ammon gyrus -http://purl.obolibrary.org/obo/UBERON_0001954;Ammon's horn;ammon horn -http://purl.obolibrary.org/obo/UBERON_0001954;Ammon's horn;cornu ammonis -http://purl.obolibrary.org/obo/UBERON_0001954;Ammon's horn;hippocampus -http://purl.obolibrary.org/obo/UBERON_0001954;Ammon's horn;hippocampus major -http://purl.obolibrary.org/obo/UBERON_0001954;Ammon's horn;hippocampus proper -http://purl.obolibrary.org/obo/UBERON_0001954;Ammon's horn;hippocampus proprius -http://purl.obolibrary.org/obo/UBERON_0001955;epithelium of respiratory bronchiole;bronchiolus respiratorius epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0001955;epithelium of respiratory bronchiole;bronchiolus respiratorius epithelium -http://purl.obolibrary.org/obo/UBERON_0001955;epithelium of respiratory bronchiole;epithelial tissue of bronchiolus respiratorius -http://purl.obolibrary.org/obo/UBERON_0001955;epithelium of respiratory bronchiole;epithelial tissue of respiratory bronchiole -http://purl.obolibrary.org/obo/UBERON_0001955;epithelium of respiratory bronchiole;epithelium of bronchiolus respiratorius -http://purl.obolibrary.org/obo/UBERON_0001955;epithelium of respiratory bronchiole;respiratory bronchiole epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0001955;epithelium of respiratory bronchiole;respiratory bronchiole epithelium -http://purl.obolibrary.org/obo/UBERON_0001956;cartilage of bronchus;bronchi cartilage -http://purl.obolibrary.org/obo/UBERON_0001956;cartilage of bronchus;bronchial cartilage -http://purl.obolibrary.org/obo/UBERON_0001956;cartilage of bronchus;bronchial cartilage ring -http://purl.obolibrary.org/obo/UBERON_0001956;cartilage of bronchus;bronchial trunk cartilage -http://purl.obolibrary.org/obo/UBERON_0001956;cartilage of bronchus;bronchus cartilage -http://purl.obolibrary.org/obo/UBERON_0001956;cartilage of bronchus;cartilage of bronchi -http://purl.obolibrary.org/obo/UBERON_0001956;cartilage of bronchus;cartilage of bronchial trunk -http://purl.obolibrary.org/obo/UBERON_0001956;cartilage of bronchus;cartilagines bronchiales -http://purl.obolibrary.org/obo/UBERON_0001957;submucosa of bronchus;bronchi submucosa -http://purl.obolibrary.org/obo/UBERON_0001957;submucosa of bronchus;bronchial submucosa -http://purl.obolibrary.org/obo/UBERON_0001957;submucosa of bronchus;bronchial trunk submucosa -http://purl.obolibrary.org/obo/UBERON_0001957;submucosa of bronchus;bronchus submucosa -http://purl.obolibrary.org/obo/UBERON_0001957;submucosa of bronchus;submucosa of bronchi -http://purl.obolibrary.org/obo/UBERON_0001957;submucosa of bronchus;submucosa of bronchial trunk -http://purl.obolibrary.org/obo/UBERON_0001957;submucosa of bronchus;tela submucosa bronchi -http://purl.obolibrary.org/obo/UBERON_0001958;terminal bronchiole epithelium;bronchiolus terminalis epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0001958;terminal bronchiole epithelium;bronchiolus terminalis epithelium -http://purl.obolibrary.org/obo/UBERON_0001958;terminal bronchiole epithelium;epithelial tissue of bronchiolus terminalis -http://purl.obolibrary.org/obo/UBERON_0001958;terminal bronchiole epithelium;epithelial tissue of terminal bronchiole -http://purl.obolibrary.org/obo/UBERON_0001958;terminal bronchiole epithelium;epithelium of bronchiolus terminalis -http://purl.obolibrary.org/obo/UBERON_0001958;terminal bronchiole epithelium;epithelium of terminal bronchiole -http://purl.obolibrary.org/obo/UBERON_0001958;terminal bronchiole epithelium;terminal bronchiole epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0001958;terminal bronchiole epithelium;terminal bronchiole epithelium -http://purl.obolibrary.org/obo/UBERON_0001959;white pulp of spleen;noduli lymphoidei splenici -http://purl.obolibrary.org/obo/UBERON_0001959;white pulp of spleen;pulpa alba -http://purl.obolibrary.org/obo/UBERON_0001959;white pulp of spleen;spleen white pulp -http://purl.obolibrary.org/obo/UBERON_0001959;white pulp of spleen;splenic white pulp -http://purl.obolibrary.org/obo/UBERON_0001959;white pulp of spleen;white pulp -http://purl.obolibrary.org/obo/UBERON_0001960;periarterial lymphatic sheath;PALS -http://purl.obolibrary.org/obo/UBERON_0001960;periarterial lymphatic sheath;T cell domain of the splenic white pulp -http://purl.obolibrary.org/obo/UBERON_0001960;periarterial lymphatic sheath;periarterial lymphoid sheath -http://purl.obolibrary.org/obo/UBERON_0001960;periarterial lymphatic sheath;periarteriolar sheath -http://purl.obolibrary.org/obo/UBERON_0001960;periarterial lymphatic sheath;spleen periarteriolar lymphatic sheath -http://purl.obolibrary.org/obo/UBERON_0001960;periarterial lymphatic sheath;splenic periarteriolar lymphoid sheath -http://purl.obolibrary.org/obo/UBERON_0001961;mucosa-associated lymphoid tissue;MALT -http://purl.obolibrary.org/obo/UBERON_0001961;mucosa-associated lymphoid tissue;epithelio-lymphoid tissue -http://purl.obolibrary.org/obo/UBERON_0001961;mucosa-associated lymphoid tissue;mucosa associated lymphatic tissue -http://purl.obolibrary.org/obo/UBERON_0001961;mucosa-associated lymphoid tissue;mucosa associated lymphoid tissue -http://purl.obolibrary.org/obo/UBERON_0001961;mucosa-associated lymphoid tissue;mucosa-associated lymphoid tissue -http://purl.obolibrary.org/obo/UBERON_0001961;mucosa-associated lymphoid tissue;mucosal-associated lymphatic tissue -http://purl.obolibrary.org/obo/UBERON_0001961;mucosa-associated lymphoid tissue;mucosal-associated lymphoid tissue -http://purl.obolibrary.org/obo/UBERON_0001962;gut-associated lymphoid tissue;GALT -http://purl.obolibrary.org/obo/UBERON_0001962;gut-associated lymphoid tissue;gut associated lymphoid tissue -http://purl.obolibrary.org/obo/UBERON_0001963;bronchial-associated lymphoid tissue;bronchus associated lymphoid tissue -http://purl.obolibrary.org/obo/UBERON_0001964;least splanchnic nerve;least thoracic splanchnic nerve -http://purl.obolibrary.org/obo/UBERON_0001964;least splanchnic nerve;lowest splanchnic nerve -http://purl.obolibrary.org/obo/UBERON_0001964;least splanchnic nerve;nervus splanchnicus imus -http://purl.obolibrary.org/obo/UBERON_0001964;least splanchnic nerve;ramus renalis nervus splanchnici minoris -http://purl.obolibrary.org/obo/UBERON_0001964;least splanchnic nerve;renal branch of lesser splanchnic nerve -http://purl.obolibrary.org/obo/UBERON_0001964;least splanchnic nerve;renal nerve -http://purl.obolibrary.org/obo/UBERON_0001965;substantia nigra pars compacta;SNC -http://purl.obolibrary.org/obo/UBERON_0001965;substantia nigra pars compacta;SNpc -http://purl.obolibrary.org/obo/UBERON_0001965;substantia nigra pars compacta;compact part of substantia nigra -http://purl.obolibrary.org/obo/UBERON_0001965;substantia nigra pars compacta;nucleus substantiae nigrae, pars compacta -http://purl.obolibrary.org/obo/UBERON_0001965;substantia nigra pars compacta;pars compacta -http://purl.obolibrary.org/obo/UBERON_0001965;substantia nigra pars compacta;pars compacta of substantia nigra -http://purl.obolibrary.org/obo/UBERON_0001965;substantia nigra pars compacta;pars compacta substantiae nigrae -http://purl.obolibrary.org/obo/UBERON_0001965;substantia nigra pars compacta;substantia nigra compact part -http://purl.obolibrary.org/obo/UBERON_0001965;substantia nigra pars compacta;substantia nigra compacta -http://purl.obolibrary.org/obo/UBERON_0001965;substantia nigra pars compacta;substantia nigra, compact division -http://purl.obolibrary.org/obo/UBERON_0001965;substantia nigra pars compacta;substantia nigra, compact part -http://purl.obolibrary.org/obo/UBERON_0001965;substantia nigra pars compacta;substantia nigra, pars compacta -http://purl.obolibrary.org/obo/UBERON_0001966;substantia nigra pars reticulata;SNPR -http://purl.obolibrary.org/obo/UBERON_0001966;substantia nigra pars reticulata;SNR -http://purl.obolibrary.org/obo/UBERON_0001966;substantia nigra pars reticulata;nucleus substantiae nigrae, pars compacta -http://purl.obolibrary.org/obo/UBERON_0001966;substantia nigra pars reticulata;nucleus substantiae nigrae, pars reticularis -http://purl.obolibrary.org/obo/UBERON_0001966;substantia nigra pars reticulata;pars compacta of substantia nigra -http://purl.obolibrary.org/obo/UBERON_0001966;substantia nigra pars reticulata;pars reticularis -http://purl.obolibrary.org/obo/UBERON_0001966;substantia nigra pars reticulata;pars reticularis substantiae nigrae -http://purl.obolibrary.org/obo/UBERON_0001966;substantia nigra pars reticulata;pars reticulata -http://purl.obolibrary.org/obo/UBERON_0001966;substantia nigra pars reticulata;reticular part of substantia nigra -http://purl.obolibrary.org/obo/UBERON_0001966;substantia nigra pars reticulata;substantia nigra reticular part -http://purl.obolibrary.org/obo/UBERON_0001966;substantia nigra pars reticulata;substantia nigra, pars compacta -http://purl.obolibrary.org/obo/UBERON_0001966;substantia nigra pars reticulata;substantia nigra, pars diffusa -http://purl.obolibrary.org/obo/UBERON_0001966;substantia nigra pars reticulata;substantia nigra, pars reticulata -http://purl.obolibrary.org/obo/UBERON_0001966;substantia nigra pars reticulata;substantia nigra, reticular division -http://purl.obolibrary.org/obo/UBERON_0001966;substantia nigra pars reticulata;substantia nigra, reticular part -http://purl.obolibrary.org/obo/UBERON_0001967;reticular lamina of epithelium;fibroreticular lamina -http://purl.obolibrary.org/obo/UBERON_0001967;reticular lamina of epithelium;lamina fibroreticularis -http://purl.obolibrary.org/obo/UBERON_0001968;semen; -http://purl.obolibrary.org/obo/UBERON_0001969;blood plasma;blood plasm -http://purl.obolibrary.org/obo/UBERON_0001969;blood plasma;portion of blood plasma -http://purl.obolibrary.org/obo/UBERON_0001970;bile; -http://purl.obolibrary.org/obo/UBERON_0001971;gastric juice;stomach secretion -http://purl.obolibrary.org/obo/UBERON_0001972;submucosa of esophagus;esophageal submucosa -http://purl.obolibrary.org/obo/UBERON_0001972;submucosa of esophagus;esophagus submucosa -http://purl.obolibrary.org/obo/UBERON_0001972;submucosa of esophagus;gullet submucosa -http://purl.obolibrary.org/obo/UBERON_0001972;submucosa of esophagus;oesophagus submucosa -http://purl.obolibrary.org/obo/UBERON_0001972;submucosa of esophagus;submucosa of esophagus -http://purl.obolibrary.org/obo/UBERON_0001972;submucosa of esophagus;submucosa of gullet -http://purl.obolibrary.org/obo/UBERON_0001972;submucosa of esophagus;submucosa of oesophagus -http://purl.obolibrary.org/obo/UBERON_0001972;submucosa of esophagus;tela submucosa (oesophagus) -http://purl.obolibrary.org/obo/UBERON_0001972;submucosa of esophagus;tela submucosa esophagi -http://purl.obolibrary.org/obo/UBERON_0001972;submucosa of esophagus;tela submucosa oesophageae -http://purl.obolibrary.org/obo/UBERON_0001972;submucosa of esophagus;tela submucosa of esophagus -http://purl.obolibrary.org/obo/UBERON_0001974;lamina propria of esophagus;esophagus lamina propria -http://purl.obolibrary.org/obo/UBERON_0001974;lamina propria of esophagus;esophagus lamina propria mucosa -http://purl.obolibrary.org/obo/UBERON_0001974;lamina propria of esophagus;esophagus lamina propria mucosae -http://purl.obolibrary.org/obo/UBERON_0001974;lamina propria of esophagus;gullet lamina propria -http://purl.obolibrary.org/obo/UBERON_0001974;lamina propria of esophagus;gullet lamina propria mucosa -http://purl.obolibrary.org/obo/UBERON_0001974;lamina propria of esophagus;gullet lamina propria mucosae -http://purl.obolibrary.org/obo/UBERON_0001974;lamina propria of esophagus;lamina propria mucosa of esophagus -http://purl.obolibrary.org/obo/UBERON_0001974;lamina propria of esophagus;lamina propria mucosa of gullet -http://purl.obolibrary.org/obo/UBERON_0001974;lamina propria of esophagus;lamina propria mucosa of oesophagus -http://purl.obolibrary.org/obo/UBERON_0001974;lamina propria of esophagus;lamina propria mucosae of esophagus -http://purl.obolibrary.org/obo/UBERON_0001974;lamina propria of esophagus;lamina propria mucosae of gullet -http://purl.obolibrary.org/obo/UBERON_0001974;lamina propria of esophagus;lamina propria mucosae of oesophagus -http://purl.obolibrary.org/obo/UBERON_0001974;lamina propria of esophagus;lamina propria of gullet -http://purl.obolibrary.org/obo/UBERON_0001974;lamina propria of esophagus;lamina propria of oesophagus -http://purl.obolibrary.org/obo/UBERON_0001974;lamina propria of esophagus;oesophagus lamina propria mucosa -http://purl.obolibrary.org/obo/UBERON_0001974;lamina propria of esophagus;oesophagus lamina propria mucosae -http://purl.obolibrary.org/obo/UBERON_0001975;serosa of esophagus;esophagus serosa -http://purl.obolibrary.org/obo/UBERON_0001975;serosa of esophagus;esophagus serous membrane -http://purl.obolibrary.org/obo/UBERON_0001975;serosa of esophagus;gullet serosa -http://purl.obolibrary.org/obo/UBERON_0001975;serosa of esophagus;gullet serous membrane -http://purl.obolibrary.org/obo/UBERON_0001975;serosa of esophagus;oesophagus serosa -http://purl.obolibrary.org/obo/UBERON_0001975;serosa of esophagus;oesophagus serous membrane -http://purl.obolibrary.org/obo/UBERON_0001975;serosa of esophagus;serosa of abdominal part of esophagus -http://purl.obolibrary.org/obo/UBERON_0001975;serosa of esophagus;serosa of gullet -http://purl.obolibrary.org/obo/UBERON_0001975;serosa of esophagus;serosa of oesophagus -http://purl.obolibrary.org/obo/UBERON_0001975;serosa of esophagus;serous coat of oesophagus -http://purl.obolibrary.org/obo/UBERON_0001975;serosa of esophagus;serous membrane of esophagus -http://purl.obolibrary.org/obo/UBERON_0001975;serosa of esophagus;serous membrane of gullet -http://purl.obolibrary.org/obo/UBERON_0001975;serosa of esophagus;serous membrane of oesophagus -http://purl.obolibrary.org/obo/UBERON_0001975;serosa of esophagus;tunica serosa oesophageae -http://purl.obolibrary.org/obo/UBERON_0001976;epithelium of esophagus;epithelial tissue of esophagus -http://purl.obolibrary.org/obo/UBERON_0001976;epithelium of esophagus;epithelial tissue of gullet -http://purl.obolibrary.org/obo/UBERON_0001976;epithelium of esophagus;epithelial tissue of oesophagus -http://purl.obolibrary.org/obo/UBERON_0001976;epithelium of esophagus;epithelium of gullet -http://purl.obolibrary.org/obo/UBERON_0001976;epithelium of esophagus;epithelium of oesophagus -http://purl.obolibrary.org/obo/UBERON_0001976;epithelium of esophagus;esophageal epithelium -http://purl.obolibrary.org/obo/UBERON_0001976;epithelium of esophagus;esophagus epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0001976;epithelium of esophagus;esophagus epithelium -http://purl.obolibrary.org/obo/UBERON_0001976;epithelium of esophagus;gullet epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0001976;epithelium of esophagus;gullet epithelium -http://purl.obolibrary.org/obo/UBERON_0001976;epithelium of esophagus;oesophagus epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0001977;blood serum;serum -http://purl.obolibrary.org/obo/UBERON_0001978;parenchyma of pancreas;pancreas parenchyma -http://purl.obolibrary.org/obo/UBERON_0001978;parenchyma of pancreas;pancreatic parenchyma -http://purl.obolibrary.org/obo/UBERON_0001979;venule; -http://purl.obolibrary.org/obo/UBERON_0001980;arteriole;arteriola -http://purl.obolibrary.org/obo/UBERON_0001981;blood vessel;region of vascular tree organ -http://purl.obolibrary.org/obo/UBERON_0001981;blood vessel;vas sanguineum -http://purl.obolibrary.org/obo/UBERON_0001981;blood vessel;vascular element -http://purl.obolibrary.org/obo/UBERON_0001981;blood vessel;vascular tree organ region -http://purl.obolibrary.org/obo/UBERON_0001982;capillary;blood capillary -http://purl.obolibrary.org/obo/UBERON_0001982;capillary;capillary vessel -http://purl.obolibrary.org/obo/UBERON_0001983;crypt of Lieberkuhn;Lieberkuhn crypt -http://purl.obolibrary.org/obo/UBERON_0001983;crypt of Lieberkuhn;Lieberkuhn gland -http://purl.obolibrary.org/obo/UBERON_0001983;crypt of Lieberkuhn;Lieberkuhn's gland -http://purl.obolibrary.org/obo/UBERON_0001983;crypt of Lieberkuhn;Lieberkuhn's glands -http://purl.obolibrary.org/obo/UBERON_0001983;crypt of Lieberkuhn;Lieberkühn crypt -http://purl.obolibrary.org/obo/UBERON_0001983;crypt of Lieberkuhn;crypt of Lieberkuhn -http://purl.obolibrary.org/obo/UBERON_0001983;crypt of Lieberkuhn;crypt of Lieberkühn -http://purl.obolibrary.org/obo/UBERON_0001983;crypt of Lieberkuhn;crypts of Lieberkühn -http://purl.obolibrary.org/obo/UBERON_0001983;crypt of Lieberkuhn;follicles of Lieberkühn -http://purl.obolibrary.org/obo/UBERON_0001983;crypt of Lieberkuhn;intestinal crypt -http://purl.obolibrary.org/obo/UBERON_0001983;crypt of Lieberkuhn;intestinal crypts -http://purl.obolibrary.org/obo/UBERON_0001984;crypt of Lieberkuhn of large intestine;Lieberkühn crypt of large intestine -http://purl.obolibrary.org/obo/UBERON_0001984;crypt of Lieberkuhn of large intestine;intestinal gland of large intestine -http://purl.obolibrary.org/obo/UBERON_0001984;crypt of Lieberkuhn of large intestine;large intestinal crypt of Lieberkuhn -http://purl.obolibrary.org/obo/UBERON_0001984;crypt of Lieberkuhn of large intestine;large intestine Lieberkühn crypt -http://purl.obolibrary.org/obo/UBERON_0001984;crypt of Lieberkuhn of large intestine;large intestine crypt of Lieberkuhn -http://purl.obolibrary.org/obo/UBERON_0001984;crypt of Lieberkuhn of large intestine;large intestine intestinal gland -http://purl.obolibrary.org/obo/UBERON_0001985;corneal endothelium;cornea endothelium -http://purl.obolibrary.org/obo/UBERON_0001985;corneal endothelium;endothelium of cornea -http://purl.obolibrary.org/obo/UBERON_0001986;endothelium; -http://purl.obolibrary.org/obo/UBERON_0001987;placenta;allantoic placenta -http://purl.obolibrary.org/obo/UBERON_0001987;placenta;eutherian placenta -http://purl.obolibrary.org/obo/UBERON_0001988;feces;faeces -http://purl.obolibrary.org/obo/UBERON_0001988;feces;fecal material -http://purl.obolibrary.org/obo/UBERON_0001988;feces;fecal matter -http://purl.obolibrary.org/obo/UBERON_0001988;feces;piece of shit -http://purl.obolibrary.org/obo/UBERON_0001988;feces;portion of excrement -http://purl.obolibrary.org/obo/UBERON_0001988;feces;portion of faeces -http://purl.obolibrary.org/obo/UBERON_0001988;feces;portion of fecal material -http://purl.obolibrary.org/obo/UBERON_0001988;feces;portion of fecal matter -http://purl.obolibrary.org/obo/UBERON_0001988;feces;portion of feces -http://purl.obolibrary.org/obo/UBERON_0001988;feces;portionem cacas -http://purl.obolibrary.org/obo/UBERON_0001988;feces;stool -http://purl.obolibrary.org/obo/UBERON_0001989;superior cervical ganglion;SCG -http://purl.obolibrary.org/obo/UBERON_0001989;superior cervical ganglion;ganglion cervicale superius -http://purl.obolibrary.org/obo/UBERON_0001989;superior cervical ganglion;superior cervical sympathetic ganglion -http://purl.obolibrary.org/obo/UBERON_0001989;superior cervical ganglion;superior sympathetic cervical ganglion -http://purl.obolibrary.org/obo/UBERON_0001990;middle cervical ganglion;ganglion cervicale medium -http://purl.obolibrary.org/obo/UBERON_0001990;middle cervical ganglion;middle cervical sympathetic ganglion -http://purl.obolibrary.org/obo/UBERON_0001991;cervical ganglion;cervical sympathetic ganglion -http://purl.obolibrary.org/obo/UBERON_0001992;papillary layer of dermis;corpus papillary -http://purl.obolibrary.org/obo/UBERON_0001992;papillary layer of dermis;dermis papillary layer -http://purl.obolibrary.org/obo/UBERON_0001992;papillary layer of dermis;papillary dermis -http://purl.obolibrary.org/obo/UBERON_0001992;papillary layer of dermis;papillary layer -http://purl.obolibrary.org/obo/UBERON_0001992;papillary layer of dermis;papillary layer of dermis -http://purl.obolibrary.org/obo/UBERON_0001992;papillary layer of dermis;stratum papillare -http://purl.obolibrary.org/obo/UBERON_0001992;papillary layer of dermis;stratum papillare (dermis) -http://purl.obolibrary.org/obo/UBERON_0001992;papillary layer of dermis;stratum papillare corii -http://purl.obolibrary.org/obo/UBERON_0001992;papillary layer of dermis;stratum papillare dermis -http://purl.obolibrary.org/obo/UBERON_0001992;papillary layer of dermis;superficial dermis -http://purl.obolibrary.org/obo/UBERON_0001993;reticular layer of dermis;dermis reticular layer -http://purl.obolibrary.org/obo/UBERON_0001993;reticular layer of dermis;dermis stratum reticulare -http://purl.obolibrary.org/obo/UBERON_0001993;reticular layer of dermis;reticular dermis -http://purl.obolibrary.org/obo/UBERON_0001993;reticular layer of dermis;stratum reticulare -http://purl.obolibrary.org/obo/UBERON_0001993;reticular layer of dermis;stratum reticulare dermis -http://purl.obolibrary.org/obo/UBERON_0001994;hyaline cartilage tissue;hyaline cartilage -http://purl.obolibrary.org/obo/UBERON_0001995;fibrocartilage;fibrocartilage tissue -http://purl.obolibrary.org/obo/UBERON_0001995;fibrocartilage;stratified cartilage tissue -http://purl.obolibrary.org/obo/UBERON_0001996;elastic cartilage tissue;elastic cartilage -http://purl.obolibrary.org/obo/UBERON_0001996;elastic cartilage tissue;elastic cartilage tissue -http://purl.obolibrary.org/obo/UBERON_0001996;elastic cartilage tissue;yellow elastic cartilage -http://purl.obolibrary.org/obo/UBERON_0001996;elastic cartilage tissue;yellow elastic cartilage tissue -http://purl.obolibrary.org/obo/UBERON_0001997;olfactory epithelium;MOE -http://purl.obolibrary.org/obo/UBERON_0001997;olfactory epithelium;main olfactory epithelium -http://purl.obolibrary.org/obo/UBERON_0001997;olfactory epithelium;nasal cavity olfactory epithelium -http://purl.obolibrary.org/obo/UBERON_0001997;olfactory epithelium;nasal epithelium -http://purl.obolibrary.org/obo/UBERON_0001997;olfactory epithelium;nasal sensory epithelium -http://purl.obolibrary.org/obo/UBERON_0001997;olfactory epithelium;olfactory membrane -http://purl.obolibrary.org/obo/UBERON_0001997;olfactory epithelium;olfactory sensory epithelium -http://purl.obolibrary.org/obo/UBERON_0001997;olfactory epithelium;pseudostratified main olfactory epithelium -http://purl.obolibrary.org/obo/UBERON_0001997;olfactory epithelium;sensory olfactory epithelium -http://purl.obolibrary.org/obo/UBERON_0001998;sternocostal joint;articulatio sternocostalis -http://purl.obolibrary.org/obo/UBERON_0001998;sternocostal joint;costo sternal joint -http://purl.obolibrary.org/obo/UBERON_0001998;sternocostal joint;costosternal joint -http://purl.obolibrary.org/obo/UBERON_0001998;sternocostal joint;sternochondral joint -http://purl.obolibrary.org/obo/UBERON_0001998;sternocostal joint;sternocostal synovial joint -http://purl.obolibrary.org/obo/UBERON_0001998;sternocostal joint;synovial sternocostal joint -http://purl.obolibrary.org/obo/UBERON_0001999;iliopsoas;Hyrtl's muscle -http://purl.obolibrary.org/obo/UBERON_0001999;iliopsoas;iliopsoas muscle -http://purl.obolibrary.org/obo/UBERON_0001999;iliopsoas;illopsoas -http://purl.obolibrary.org/obo/UBERON_0002000;gluteal muscle; -http://purl.obolibrary.org/obo/UBERON_0002001;joint of rib;rib joint -http://purl.obolibrary.org/obo/UBERON_0002002;interchondral joint;articulatio interchondralis -http://purl.obolibrary.org/obo/UBERON_0002002;interchondral joint;articulationes interchondrales -http://purl.obolibrary.org/obo/UBERON_0002002;interchondral joint;interchondral articulation -http://purl.obolibrary.org/obo/UBERON_0002002;interchondral joint;interchondral joints -http://purl.obolibrary.org/obo/UBERON_0002002;interchondral joint;interchondral joints set -http://purl.obolibrary.org/obo/UBERON_0002002;interchondral joint;synovial interchondral joint -http://purl.obolibrary.org/obo/UBERON_0002004;trunk of sciatic nerve;sciatic nerve trunk -http://purl.obolibrary.org/obo/UBERON_0002004;trunk of sciatic nerve;sciatic neural trunk -http://purl.obolibrary.org/obo/UBERON_0002005;enteric nervous system;PNS - enteric -http://purl.obolibrary.org/obo/UBERON_0002005;enteric nervous system;enteric PNS -http://purl.obolibrary.org/obo/UBERON_0002006;cortex of lymph node;lymph node cortex -http://purl.obolibrary.org/obo/UBERON_0002007;medulla of lymph node;lymph node medulla -http://purl.obolibrary.org/obo/UBERON_0002008;cardiac nerve plexus;autonomic nerve plexus of heart -http://purl.obolibrary.org/obo/UBERON_0002008;cardiac nerve plexus;autonomic plexus of heart -http://purl.obolibrary.org/obo/UBERON_0002008;cardiac nerve plexus;cardiac plexus -http://purl.obolibrary.org/obo/UBERON_0002008;cardiac nerve plexus;heart autonomic nerve plexus -http://purl.obolibrary.org/obo/UBERON_0002008;cardiac nerve plexus;heart autonomic plexus -http://purl.obolibrary.org/obo/UBERON_0002008;cardiac nerve plexus;plexus cardiacus -http://purl.obolibrary.org/obo/UBERON_0002009;pulmonary nerve plexus;plexus pulmonalis -http://purl.obolibrary.org/obo/UBERON_0002009;pulmonary nerve plexus;pulmonary plexus -http://purl.obolibrary.org/obo/UBERON_0002010;celiac nerve plexus;celiac plexus -http://purl.obolibrary.org/obo/UBERON_0002010;celiac nerve plexus;coeliac plexus -http://purl.obolibrary.org/obo/UBERON_0002010;celiac nerve plexus;plexus coeliacus -http://purl.obolibrary.org/obo/UBERON_0002010;celiac nerve plexus;plexus nervosus coeliacus -http://purl.obolibrary.org/obo/UBERON_0002011;thoracodorsal artery; -http://purl.obolibrary.org/obo/UBERON_0002012;pulmonary artery;arteria pulmonalis -http://purl.obolibrary.org/obo/UBERON_0002012;pulmonary artery;pulmonary arterial subtree -http://purl.obolibrary.org/obo/UBERON_0002012;pulmonary artery;pulmonary arterial tree -http://purl.obolibrary.org/obo/UBERON_0002012;pulmonary artery;pulmonary arterial tree organ part -http://purl.obolibrary.org/obo/UBERON_0002012;pulmonary artery;truncus pulmonalis -http://purl.obolibrary.org/obo/UBERON_0002013;superior hypogastric nerve plexus;nervus presacralis -http://purl.obolibrary.org/obo/UBERON_0002013;superior hypogastric nerve plexus;plexus hypogastricus superior -http://purl.obolibrary.org/obo/UBERON_0002013;superior hypogastric nerve plexus;presacral nerve -http://purl.obolibrary.org/obo/UBERON_0002013;superior hypogastric nerve plexus;superior hypogastric plexus -http://purl.obolibrary.org/obo/UBERON_0002014;inferior hypogastric nerve plexus;inferior hypogastric plexus -http://purl.obolibrary.org/obo/UBERON_0002014;inferior hypogastric nerve plexus;pelvic nerve plexus -http://purl.obolibrary.org/obo/UBERON_0002014;inferior hypogastric nerve plexus;pelvic plexus -http://purl.obolibrary.org/obo/UBERON_0002014;inferior hypogastric nerve plexus;plexus hypogastricus inferior -http://purl.obolibrary.org/obo/UBERON_0002014;inferior hypogastric nerve plexus;plexus nervosus hypogastricus inferior -http://purl.obolibrary.org/obo/UBERON_0002014;inferior hypogastric nerve plexus;plexus nervosus pelvicus -http://purl.obolibrary.org/obo/UBERON_0002014;inferior hypogastric nerve plexus;plexus pelvicus -http://purl.obolibrary.org/obo/UBERON_0002015;kidney capsule;capsula fibrosa renis -http://purl.obolibrary.org/obo/UBERON_0002015;kidney capsule;capsule of kidney -http://purl.obolibrary.org/obo/UBERON_0002015;kidney capsule;fibrous capsule of kidney -http://purl.obolibrary.org/obo/UBERON_0002015;kidney capsule;renal capsule -http://purl.obolibrary.org/obo/UBERON_0002016;pulmonary vein;pulmonary venous tree organ part -http://purl.obolibrary.org/obo/UBERON_0002017;portal vein;portal venous tree organ part -http://purl.obolibrary.org/obo/UBERON_0002018;synovial membrane of synovial joint;membrana synovialis (capsula articularis) -http://purl.obolibrary.org/obo/UBERON_0002018;synovial membrane of synovial joint;membrana synovialis capsulae articularis -http://purl.obolibrary.org/obo/UBERON_0002018;synovial membrane of synovial joint;stratum synoviale -http://purl.obolibrary.org/obo/UBERON_0002018;synovial membrane of synovial joint;stratum synoviale (capsula articularis) -http://purl.obolibrary.org/obo/UBERON_0002019;accessory XI nerve;Willis' nerve -http://purl.obolibrary.org/obo/UBERON_0002019;accessory XI nerve;accessory XI -http://purl.obolibrary.org/obo/UBERON_0002019;accessory XI nerve;accessory XI nerve -http://purl.obolibrary.org/obo/UBERON_0002019;accessory XI nerve;accessory nerve -http://purl.obolibrary.org/obo/UBERON_0002019;accessory XI nerve;accessory nerve [XI] -http://purl.obolibrary.org/obo/UBERON_0002019;accessory XI nerve;cervical accessory nerve -http://purl.obolibrary.org/obo/UBERON_0002019;accessory XI nerve;cranial nerve XI -http://purl.obolibrary.org/obo/UBERON_0002019;accessory XI nerve;eleventh cranial nerve -http://purl.obolibrary.org/obo/UBERON_0002019;accessory XI nerve;nervus accessorius [XI] -http://purl.obolibrary.org/obo/UBERON_0002019;accessory XI nerve;pars spinalis nervus accessorius -http://purl.obolibrary.org/obo/UBERON_0002019;accessory XI nerve;radix spinalis nervus accessorius -http://purl.obolibrary.org/obo/UBERON_0002019;accessory XI nerve;spinal accessory nerve -http://purl.obolibrary.org/obo/UBERON_0002019;accessory XI nerve;spinal accessory nerve tree -http://purl.obolibrary.org/obo/UBERON_0002019;accessory XI nerve;spinal part of accessory nerve -http://purl.obolibrary.org/obo/UBERON_0002020;gray matter;gray mater -http://purl.obolibrary.org/obo/UBERON_0002020;gray matter;gray matter -http://purl.obolibrary.org/obo/UBERON_0002020;gray matter;gray matter of neuraxis -http://purl.obolibrary.org/obo/UBERON_0002020;gray matter;grey matter -http://purl.obolibrary.org/obo/UBERON_0002020;gray matter;grey matter of neuraxis -http://purl.obolibrary.org/obo/UBERON_0002020;gray matter;grey substance -http://purl.obolibrary.org/obo/UBERON_0002020;gray matter;grisea -http://purl.obolibrary.org/obo/UBERON_0002020;gray matter;neuronal grey matter -http://purl.obolibrary.org/obo/UBERON_0002020;gray matter;substantia grisea -http://purl.obolibrary.org/obo/UBERON_0002021;occipital lobe;regio occipitalis -http://purl.obolibrary.org/obo/UBERON_0002022;insula;central lobe -http://purl.obolibrary.org/obo/UBERON_0002022;insula;cortex insularis -http://purl.obolibrary.org/obo/UBERON_0002022;insula;cortex of island -http://purl.obolibrary.org/obo/UBERON_0002022;insula;iNS -http://purl.obolibrary.org/obo/UBERON_0002022;insula;insula Reilii -http://purl.obolibrary.org/obo/UBERON_0002022;insula;insula cerebri -http://purl.obolibrary.org/obo/UBERON_0002022;insula;insula lobule -http://purl.obolibrary.org/obo/UBERON_0002022;insula;insula of Reil -http://purl.obolibrary.org/obo/UBERON_0002022;insula;insular cortex -http://purl.obolibrary.org/obo/UBERON_0002022;insula;insular gyrus -http://purl.obolibrary.org/obo/UBERON_0002022;insula;insular lobe -http://purl.obolibrary.org/obo/UBERON_0002022;insula;insular region -http://purl.obolibrary.org/obo/UBERON_0002022;insula;insulary cortex -http://purl.obolibrary.org/obo/UBERON_0002022;insula;island of Reil -http://purl.obolibrary.org/obo/UBERON_0002022;insula;lobus insularis -http://purl.obolibrary.org/obo/UBERON_0002022;insula;morphological insula -http://purl.obolibrary.org/obo/UBERON_0002023;claustrum of brain;claustrum -http://purl.obolibrary.org/obo/UBERON_0002023;claustrum of brain;claustrum (Burdach) -http://purl.obolibrary.org/obo/UBERON_0002023;claustrum of brain;dorsal claustrum -http://purl.obolibrary.org/obo/UBERON_0002023;claustrum of brain;dorsal portion of claustrum -http://purl.obolibrary.org/obo/UBERON_0002024;internal carotid nerve plexus;internal carotid plexus -http://purl.obolibrary.org/obo/UBERON_0002024;internal carotid nerve plexus;plexus caroticus internus -http://purl.obolibrary.org/obo/UBERON_0002025;stratum basale of epidermis;basal cell layer of epidermis -http://purl.obolibrary.org/obo/UBERON_0002025;stratum basale of epidermis;basal epidermal layer -http://purl.obolibrary.org/obo/UBERON_0002025;stratum basale of epidermis;epidermal basal stratum -http://purl.obolibrary.org/obo/UBERON_0002025;stratum basale of epidermis;epidermis stratum basale -http://purl.obolibrary.org/obo/UBERON_0002025;stratum basale of epidermis;stratum basalis of epidermis -http://purl.obolibrary.org/obo/UBERON_0002025;stratum basale of epidermis;stratum germinativum -http://purl.obolibrary.org/obo/UBERON_0002025;stratum basale of epidermis;stratum germinosum of epidermis -http://purl.obolibrary.org/obo/UBERON_0002026;stratum spinosum of epidermis;epidermis stratum spinosum -http://purl.obolibrary.org/obo/UBERON_0002026;stratum spinosum of epidermis;prickle cell layer of epidermis -http://purl.obolibrary.org/obo/UBERON_0002026;stratum spinosum of epidermis;squamous cell layer of epidermis -http://purl.obolibrary.org/obo/UBERON_0002026;stratum spinosum of epidermis;stratum spinosum -http://purl.obolibrary.org/obo/UBERON_0002027;stratum corneum of epidermis;cornified layer -http://purl.obolibrary.org/obo/UBERON_0002027;stratum corneum of epidermis;epidermis stratum corneum -http://purl.obolibrary.org/obo/UBERON_0002027;stratum corneum of epidermis;horny layer of epidermis -http://purl.obolibrary.org/obo/UBERON_0002027;stratum corneum of epidermis;keratinized squame layer of epidermis -http://purl.obolibrary.org/obo/UBERON_0002028;hindbrain;rhombencephalon -http://purl.obolibrary.org/obo/UBERON_0002029;epithelium of gall bladder;epithelial tissue of gall bladder -http://purl.obolibrary.org/obo/UBERON_0002029;epithelium of gall bladder;epithelial tissue of gallbladder -http://purl.obolibrary.org/obo/UBERON_0002029;epithelium of gall bladder;epithelium of gallbladder -http://purl.obolibrary.org/obo/UBERON_0002029;epithelium of gall bladder;gall bladder epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0002029;epithelium of gall bladder;gall bladder epithelium -http://purl.obolibrary.org/obo/UBERON_0002029;epithelium of gall bladder;gallbladder epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0002029;epithelium of gall bladder;gallbladder epithelium -http://purl.obolibrary.org/obo/UBERON_0002030;nipple;papilla mammae -http://purl.obolibrary.org/obo/UBERON_0002030;nipple;papilla of breast -http://purl.obolibrary.org/obo/UBERON_0002030;nipple;thele -http://purl.obolibrary.org/obo/UBERON_0002030;nipple;thelium -http://purl.obolibrary.org/obo/UBERON_0002031;epithelium of bronchus;bronchi epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0002031;epithelium of bronchus;bronchi epithelium -http://purl.obolibrary.org/obo/UBERON_0002031;epithelium of bronchus;bronchial epithelium -http://purl.obolibrary.org/obo/UBERON_0002031;epithelium of bronchus;bronchial trunk epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0002031;epithelium of bronchus;bronchial trunk epithelium -http://purl.obolibrary.org/obo/UBERON_0002031;epithelium of bronchus;bronchus epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0002031;epithelium of bronchus;bronchus epithelium -http://purl.obolibrary.org/obo/UBERON_0002031;epithelium of bronchus;epithelial tissue of bronchi -http://purl.obolibrary.org/obo/UBERON_0002031;epithelium of bronchus;epithelial tissue of bronchial trunk -http://purl.obolibrary.org/obo/UBERON_0002031;epithelium of bronchus;epithelial tissue of bronchus -http://purl.obolibrary.org/obo/UBERON_0002031;epithelium of bronchus;epithelium of bronchi -http://purl.obolibrary.org/obo/UBERON_0002031;epithelium of bronchus;epithelium of bronchial trunk -http://purl.obolibrary.org/obo/UBERON_0002032;areola; -http://purl.obolibrary.org/obo/UBERON_0002033;arrector muscle of hair;arrector pili -http://purl.obolibrary.org/obo/UBERON_0002033;arrector muscle of hair;arrector pili muscle -http://purl.obolibrary.org/obo/UBERON_0002033;arrector muscle of hair;arrector pili smooth muscle -http://purl.obolibrary.org/obo/UBERON_0002033;arrector muscle of hair;arrector pilli -http://purl.obolibrary.org/obo/UBERON_0002033;arrector muscle of hair;arrector pilli muscle -http://purl.obolibrary.org/obo/UBERON_0002033;arrector muscle of hair;arrector pilorum -http://purl.obolibrary.org/obo/UBERON_0002033;arrector muscle of hair;arrector pilorum muscle of hair -http://purl.obolibrary.org/obo/UBERON_0002034;suprachiasmatic nucleus;SCN -http://purl.obolibrary.org/obo/UBERON_0002034;suprachiasmatic nucleus;SCh -http://purl.obolibrary.org/obo/UBERON_0002034;suprachiasmatic nucleus;nucleus suprachiasmaticus -http://purl.obolibrary.org/obo/UBERON_0002034;suprachiasmatic nucleus;nucleus suprachiasmaticus hypothalami -http://purl.obolibrary.org/obo/UBERON_0002034;suprachiasmatic nucleus;suprachiasmatic nucleus (Spiegel-Zwieg) -http://purl.obolibrary.org/obo/UBERON_0002034;suprachiasmatic nucleus;suprachiasmatic nucleus of hypothalamus -http://purl.obolibrary.org/obo/UBERON_0002035;medial preoptic nucleus;MPO -http://purl.obolibrary.org/obo/UBERON_0002035;medial preoptic nucleus;area praeoptica medialis -http://purl.obolibrary.org/obo/UBERON_0002035;medial preoptic nucleus;area preopticus medialis -http://purl.obolibrary.org/obo/UBERON_0002035;medial preoptic nucleus;medial preoptic hypothalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0002035;medial preoptic nucleus;nucleus praeopticus medialis -http://purl.obolibrary.org/obo/UBERON_0002035;medial preoptic nucleus;nucleus preopticus medialis -http://purl.obolibrary.org/obo/UBERON_0002036;striated muscle tissue;striated muscle -http://purl.obolibrary.org/obo/UBERON_0002037;cerebellum;corpus cerebelli -http://purl.obolibrary.org/obo/UBERON_0002037;cerebellum;epencephalon-1 -http://purl.obolibrary.org/obo/UBERON_0002037;cerebellum;infratentorial region -http://purl.obolibrary.org/obo/UBERON_0002037;cerebellum;parencephalon -http://purl.obolibrary.org/obo/UBERON_0002038;substantia nigra;SN -http://purl.obolibrary.org/obo/UBERON_0002038;substantia nigra;Soemmering's substance -http://purl.obolibrary.org/obo/UBERON_0002038;substantia nigra;nucleus of basis pedunculi -http://purl.obolibrary.org/obo/UBERON_0002038;substantia nigra;nucleus pigmentosus subthalamo-peduncularis -http://purl.obolibrary.org/obo/UBERON_0002038;substantia nigra;substancia nigra -http://purl.obolibrary.org/obo/UBERON_0002038;substantia nigra;substantia nigra (Soemmerringi) -http://purl.obolibrary.org/obo/UBERON_0002039;inferior phrenic vein; -http://purl.obolibrary.org/obo/UBERON_0002040;bronchial artery;bronchial arterial tree -http://purl.obolibrary.org/obo/UBERON_0002041;terminal bronchus; -http://purl.obolibrary.org/obo/UBERON_0002042;lymphatic vessel endothelium;endothelium of lymph vessel -http://purl.obolibrary.org/obo/UBERON_0002042;lymphatic vessel endothelium;endothelium of lymphatic vessel -http://purl.obolibrary.org/obo/UBERON_0002042;lymphatic vessel endothelium;lymph vessel endothelium -http://purl.obolibrary.org/obo/UBERON_0002042;lymphatic vessel endothelium;lymphatic endothelium -http://purl.obolibrary.org/obo/UBERON_0002042;lymphatic vessel endothelium;lymphatic vessel endothelium -http://purl.obolibrary.org/obo/UBERON_0002043;dorsal raphe nucleus;DR -http://purl.obolibrary.org/obo/UBERON_0002043;dorsal raphe nucleus;DRN -http://purl.obolibrary.org/obo/UBERON_0002043;dorsal raphe nucleus;cell group b7 -http://purl.obolibrary.org/obo/UBERON_0002043;dorsal raphe nucleus;dorsal nucleus of the raphe -http://purl.obolibrary.org/obo/UBERON_0002043;dorsal raphe nucleus;dorsal nucleus raphe -http://purl.obolibrary.org/obo/UBERON_0002043;dorsal raphe nucleus;dorsal raphe -http://purl.obolibrary.org/obo/UBERON_0002043;dorsal raphe nucleus;dorsal raphé -http://purl.obolibrary.org/obo/UBERON_0002043;dorsal raphe nucleus;inferior raphe nucleus -http://purl.obolibrary.org/obo/UBERON_0002043;dorsal raphe nucleus;nucleus dorsalis raphes -http://purl.obolibrary.org/obo/UBERON_0002043;dorsal raphe nucleus;nucleus raphe dorsalis -http://purl.obolibrary.org/obo/UBERON_0002043;dorsal raphe nucleus;nucleus raphe posterior -http://purl.obolibrary.org/obo/UBERON_0002043;dorsal raphe nucleus;nucleus raphes dorsalis -http://purl.obolibrary.org/obo/UBERON_0002043;dorsal raphe nucleus;nucleus raphes posterior -http://purl.obolibrary.org/obo/UBERON_0002043;dorsal raphe nucleus;posterior raphe nucleus -http://purl.obolibrary.org/obo/UBERON_0002044;ventral nucleus of posterior commissure;Darkshevich nucleus -http://purl.obolibrary.org/obo/UBERON_0002044;ventral nucleus of posterior commissure;Darkshevich's nucleus -http://purl.obolibrary.org/obo/UBERON_0002044;ventral nucleus of posterior commissure;Dk -http://purl.obolibrary.org/obo/UBERON_0002044;ventral nucleus of posterior commissure;nucleus Darkschewitsch -http://purl.obolibrary.org/obo/UBERON_0002044;ventral nucleus of posterior commissure;nucleus Darkschewitschi -http://purl.obolibrary.org/obo/UBERON_0002044;ventral nucleus of posterior commissure;nucleus accessorius -http://purl.obolibrary.org/obo/UBERON_0002044;ventral nucleus of posterior commissure;nucleus commissurae posterioris (Riley) -http://purl.obolibrary.org/obo/UBERON_0002044;ventral nucleus of posterior commissure;nucleus fasciculi longitudinalis medialis -http://purl.obolibrary.org/obo/UBERON_0002044;ventral nucleus of posterior commissure;nucleus of Darkschewitsch -http://purl.obolibrary.org/obo/UBERON_0002044;ventral nucleus of posterior commissure;nucleus of Darkschewitsch (Cajal) -http://purl.obolibrary.org/obo/UBERON_0002044;ventral nucleus of posterior commissure;nucleus of Darkshevich -http://purl.obolibrary.org/obo/UBERON_0002044;ventral nucleus of posterior commissure;nucleus of the posterior commissure (Darkschewitsch) -http://purl.obolibrary.org/obo/UBERON_0002045;cuneate nucleus;Burdach's nucleus -http://purl.obolibrary.org/obo/UBERON_0002045;cuneate nucleus;Cu -http://purl.obolibrary.org/obo/UBERON_0002045;cuneate nucleus;burdachs nucleus -http://purl.obolibrary.org/obo/UBERON_0002045;cuneate nucleus;cuneate -http://purl.obolibrary.org/obo/UBERON_0002045;cuneate nucleus;cuneate nucleus (Burdach) -http://purl.obolibrary.org/obo/UBERON_0002045;cuneate nucleus;cuneate nucleus of the medulla -http://purl.obolibrary.org/obo/UBERON_0002045;cuneate nucleus;nucleus cuneatus -http://purl.obolibrary.org/obo/UBERON_0002045;cuneate nucleus;nucleus cuneatus medialis -http://purl.obolibrary.org/obo/UBERON_0002045;cuneate nucleus;nucleus restiformis -http://purl.obolibrary.org/obo/UBERON_0002046;thyroid gland;thyroid -http://purl.obolibrary.org/obo/UBERON_0002047;pontine raphe nucleus;nucleus raphe pontis -http://purl.obolibrary.org/obo/UBERON_0002047;pontine raphe nucleus;nucleus raphes pontis -http://purl.obolibrary.org/obo/UBERON_0002047;pontine raphe nucleus;raphe (mediana pontina) -http://purl.obolibrary.org/obo/UBERON_0002047;pontine raphe nucleus;raphe of pons -http://purl.obolibrary.org/obo/UBERON_0002047;pontine raphe nucleus;raphe pontis -http://purl.obolibrary.org/obo/UBERON_0002047;pontine raphe nucleus;raphe pontis nucleus -http://purl.obolibrary.org/obo/UBERON_0002048;lung;pulmo -http://purl.obolibrary.org/obo/UBERON_0002049;vasculature;vascular network -http://purl.obolibrary.org/obo/UBERON_0002050;embryonic structure;developing embryonic structure -http://purl.obolibrary.org/obo/UBERON_0002050;embryonic structure;developing structure -http://purl.obolibrary.org/obo/UBERON_0002050;embryonic structure;embryonale Struktur -http://purl.obolibrary.org/obo/UBERON_0002050;embryonic structure;embryonic anatomical structure -http://purl.obolibrary.org/obo/UBERON_0002050;embryonic structure;embryonic structures -http://purl.obolibrary.org/obo/UBERON_0002051;epithelium of bronchiole;bronchiolar epithelium -http://purl.obolibrary.org/obo/UBERON_0002051;epithelium of bronchiole;bronchiole epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0002051;epithelium of bronchiole;bronchiole epithelium -http://purl.obolibrary.org/obo/UBERON_0002051;epithelium of bronchiole;epithelial tissue of bronchiole -http://purl.obolibrary.org/obo/UBERON_0002052;adrenal gland capsule;capsule of adrenal gland -http://purl.obolibrary.org/obo/UBERON_0002053;zona glomerulosa of adrenal gland;adrenal gland zona glomerulosa -http://purl.obolibrary.org/obo/UBERON_0002053;zona glomerulosa of adrenal gland;zona glomerulosa -http://purl.obolibrary.org/obo/UBERON_0002053;zona glomerulosa of adrenal gland;zona glomerulosa of suprarenal gland -http://purl.obolibrary.org/obo/UBERON_0002054;zona fasciculata of adrenal gland;adrenal gland zona fasciculata -http://purl.obolibrary.org/obo/UBERON_0002054;zona fasciculata of adrenal gland;zona fasciculata -http://purl.obolibrary.org/obo/UBERON_0002054;zona fasciculata of adrenal gland;zona fasciculata of suprarenal gland -http://purl.obolibrary.org/obo/UBERON_0002055;zona reticularis of adrenal gland;adrenal gland zona reticularis -http://purl.obolibrary.org/obo/UBERON_0002055;zona reticularis of adrenal gland;zona reticularis -http://purl.obolibrary.org/obo/UBERON_0002055;zona reticularis of adrenal gland;zona reticularis of suprarenal gland -http://purl.obolibrary.org/obo/UBERON_0002056;inferior suprarenal artery; -http://purl.obolibrary.org/obo/UBERON_0002057;phrenic artery; -http://purl.obolibrary.org/obo/UBERON_0002058;main ciliary ganglion;ciliary ganglion -http://purl.obolibrary.org/obo/UBERON_0002058;main ciliary ganglion;ganglion ciliare -http://purl.obolibrary.org/obo/UBERON_0002059;submandibular ganglion;Blandin`s ganglion -http://purl.obolibrary.org/obo/UBERON_0002059;submandibular ganglion;ganglion submandibulare -http://purl.obolibrary.org/obo/UBERON_0002059;submandibular ganglion;lingual ganglion -http://purl.obolibrary.org/obo/UBERON_0002059;submandibular ganglion;mandibular ganglion -http://purl.obolibrary.org/obo/UBERON_0002059;submandibular ganglion;maxillary ganglion -http://purl.obolibrary.org/obo/UBERON_0002059;submandibular ganglion;submaxillary ganglion -http://purl.obolibrary.org/obo/UBERON_0002060;femoral artery; -http://purl.obolibrary.org/obo/UBERON_0002061;truncus arteriosus; -http://purl.obolibrary.org/obo/UBERON_0002062;endocardial cushion;AV cushion -http://purl.obolibrary.org/obo/UBERON_0002062;endocardial cushion;atrioventricular cushion -http://purl.obolibrary.org/obo/UBERON_0002062;endocardial cushion;cardiac cushion -http://purl.obolibrary.org/obo/UBERON_0002062;endocardial cushion;endocardial cushion tissue -http://purl.obolibrary.org/obo/UBERON_0002063;sinus venosus; -http://purl.obolibrary.org/obo/UBERON_0002064;common cardinal vein; -http://purl.obolibrary.org/obo/UBERON_0002065;posterior cardinal vein; -http://purl.obolibrary.org/obo/UBERON_0002066;umbilical vein; -http://purl.obolibrary.org/obo/UBERON_0002067;dermis;vertebrate dermis -http://purl.obolibrary.org/obo/UBERON_0002068;urachus; -http://purl.obolibrary.org/obo/UBERON_0002069;stratum granulosum of epidermis;epidermis stratum granulosum -http://purl.obolibrary.org/obo/UBERON_0002069;stratum granulosum of epidermis;granular layer of epidermis -http://purl.obolibrary.org/obo/UBERON_0002069;stratum granulosum of epidermis;stratum granulosum -http://purl.obolibrary.org/obo/UBERON_0002070;superior pancreaticoduodenal artery;superior pancreatico-duodenal artery -http://purl.obolibrary.org/obo/UBERON_0002070;superior pancreaticoduodenal artery;superior pancreatoduodenal artery -http://purl.obolibrary.org/obo/UBERON_0002071;stratum lucidum of epidermis;epidermis stratum lucidum -http://purl.obolibrary.org/obo/UBERON_0002071;stratum lucidum of epidermis;stratum conjunctum of epidermis -http://purl.obolibrary.org/obo/UBERON_0002072;hypodermis;hypoderm -http://purl.obolibrary.org/obo/UBERON_0002072;hypodermis;sub-tegumental tissue -http://purl.obolibrary.org/obo/UBERON_0002072;hypodermis;subcutaneous tissue -http://purl.obolibrary.org/obo/UBERON_0002072;hypodermis;subcutis -http://purl.obolibrary.org/obo/UBERON_0002072;hypodermis;subtegumental tissue -http://purl.obolibrary.org/obo/UBERON_0002072;hypodermis;superficial fascia -http://purl.obolibrary.org/obo/UBERON_0002072;hypodermis;tela subcutanea -http://purl.obolibrary.org/obo/UBERON_0002072;hypodermis;vertebrate hypodermis -http://purl.obolibrary.org/obo/UBERON_0002073;hair follicle; -http://purl.obolibrary.org/obo/UBERON_0002074;hair shaft;shaft of hair -http://purl.obolibrary.org/obo/UBERON_0002075;viscus;splanchnic tissue -http://purl.obolibrary.org/obo/UBERON_0002075;viscus;viscera -http://purl.obolibrary.org/obo/UBERON_0002075;viscus;visceral organ -http://purl.obolibrary.org/obo/UBERON_0002075;viscus;visceral organ system -http://purl.obolibrary.org/obo/UBERON_0002075;viscus;visceral tissue -http://purl.obolibrary.org/obo/UBERON_0002076;cuticle of hair;hair cuticle -http://purl.obolibrary.org/obo/UBERON_0002077;cortex of hair;coat hair cortex -http://purl.obolibrary.org/obo/UBERON_0002077;cortex of hair;coat/hair cortex -http://purl.obolibrary.org/obo/UBERON_0002077;cortex of hair;cortex of coat hair -http://purl.obolibrary.org/obo/UBERON_0002077;cortex of hair;cortex of coat/hair -http://purl.obolibrary.org/obo/UBERON_0002077;cortex of hair;hair cortex -http://purl.obolibrary.org/obo/UBERON_0002078;right cardiac atrium;atrium dextrum -http://purl.obolibrary.org/obo/UBERON_0002078;right cardiac atrium;cardiac right atrium -http://purl.obolibrary.org/obo/UBERON_0002078;right cardiac atrium;heart right atrium -http://purl.obolibrary.org/obo/UBERON_0002078;right cardiac atrium;right atrium -http://purl.obolibrary.org/obo/UBERON_0002078;right cardiac atrium;right atrium of heart -http://purl.obolibrary.org/obo/UBERON_0002078;right cardiac atrium;right cardiac atrium -http://purl.obolibrary.org/obo/UBERON_0002079;left cardiac atrium;atrium sinistrum -http://purl.obolibrary.org/obo/UBERON_0002079;left cardiac atrium;cardiac left atrium -http://purl.obolibrary.org/obo/UBERON_0002079;left cardiac atrium;heart left atrium -http://purl.obolibrary.org/obo/UBERON_0002079;left cardiac atrium;left atrium -http://purl.obolibrary.org/obo/UBERON_0002079;left cardiac atrium;left atrium of heart -http://purl.obolibrary.org/obo/UBERON_0002079;left cardiac atrium;left cardiac atrium -http://purl.obolibrary.org/obo/UBERON_0002080;heart right ventricle;cardiac right ventricle -http://purl.obolibrary.org/obo/UBERON_0002080;heart right ventricle;right cardiac ventricle -http://purl.obolibrary.org/obo/UBERON_0002080;heart right ventricle;right ventricle -http://purl.obolibrary.org/obo/UBERON_0002080;heart right ventricle;right ventricle of heart -http://purl.obolibrary.org/obo/UBERON_0002080;heart right ventricle;ventriculus dexter -http://purl.obolibrary.org/obo/UBERON_0002081;cardiac atrium;atria -http://purl.obolibrary.org/obo/UBERON_0002081;cardiac atrium;atrial tissue -http://purl.obolibrary.org/obo/UBERON_0002081;cardiac atrium;atrium -http://purl.obolibrary.org/obo/UBERON_0002081;cardiac atrium;atrium of heart -http://purl.obolibrary.org/obo/UBERON_0002081;cardiac atrium;cardiac atria -http://purl.obolibrary.org/obo/UBERON_0002081;cardiac atrium;heart atrium -http://purl.obolibrary.org/obo/UBERON_0002082;cardiac ventricle;heart ventricle -http://purl.obolibrary.org/obo/UBERON_0002082;cardiac ventricle;lower chamber of heart -http://purl.obolibrary.org/obo/UBERON_0002082;cardiac ventricle;ventricle -http://purl.obolibrary.org/obo/UBERON_0002082;cardiac ventricle;ventricle of heart -http://purl.obolibrary.org/obo/UBERON_0002083;ductus venosus; -http://purl.obolibrary.org/obo/UBERON_0002084;heart left ventricle;cardiac left ventricle -http://purl.obolibrary.org/obo/UBERON_0002084;heart left ventricle;left cardiac ventricle -http://purl.obolibrary.org/obo/UBERON_0002084;heart left ventricle;left ventricle -http://purl.obolibrary.org/obo/UBERON_0002084;heart left ventricle;left ventricle of heart -http://purl.obolibrary.org/obo/UBERON_0002084;heart left ventricle;ventriculus sinister cordis -http://purl.obolibrary.org/obo/UBERON_0002085;interatrial septum;atrial septum -http://purl.obolibrary.org/obo/UBERON_0002085;interatrial septum;atrium septum -http://purl.obolibrary.org/obo/UBERON_0002085;interatrial septum;interatrial septal wall -http://purl.obolibrary.org/obo/UBERON_0002086;sinoatrial valve;sinuatrial valve -http://purl.obolibrary.org/obo/UBERON_0002087;atrioventricular canal;AV canal -http://purl.obolibrary.org/obo/UBERON_0002087;atrioventricular canal;AVC -http://purl.obolibrary.org/obo/UBERON_0002087;atrioventricular canal;atrial canal -http://purl.obolibrary.org/obo/UBERON_0002087;atrioventricular canal;atrio-ventricular canal -http://purl.obolibrary.org/obo/UBERON_0002088;lateral thoracic vein; -http://purl.obolibrary.org/obo/UBERON_0002089;thoracodorsal vein; -http://purl.obolibrary.org/obo/UBERON_0002090;postcranial axial skeleton;post-cranial axial skeleton -http://purl.obolibrary.org/obo/UBERON_0002091;appendicular skeleton;appendicular skeleton -http://purl.obolibrary.org/obo/UBERON_0002091;appendicular skeleton;entire appendicular skeleton -http://purl.obolibrary.org/obo/UBERON_0002092;brain dura mater;cranial dura mater -http://purl.obolibrary.org/obo/UBERON_0002092;brain dura mater;dura mater cranialis -http://purl.obolibrary.org/obo/UBERON_0002092;brain dura mater;dura mater encephali -http://purl.obolibrary.org/obo/UBERON_0002092;brain dura mater;dura mater of brain -http://purl.obolibrary.org/obo/UBERON_0002093;spinal dura mater;dura mater of neuraxis of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002093;spinal dura mater;dura mater of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002093;spinal dura mater;spinal cord dura mater -http://purl.obolibrary.org/obo/UBERON_0002093;spinal dura mater;spinal cord dura mater of neuraxis -http://purl.obolibrary.org/obo/UBERON_0002094;interventricular septum;heart interventricular septum -http://purl.obolibrary.org/obo/UBERON_0002094;interventricular septum;heart ventricular septum -http://purl.obolibrary.org/obo/UBERON_0002095;mesentery;generic mesentery -http://purl.obolibrary.org/obo/UBERON_0002095;mesentery;mesentery (generic) -http://purl.obolibrary.org/obo/UBERON_0002097;skin of body;entire skin -http://purl.obolibrary.org/obo/UBERON_0002097;skin of body;skin organ -http://purl.obolibrary.org/obo/UBERON_0002098;apex of heart;apex cordis -http://purl.obolibrary.org/obo/UBERON_0002098;apex of heart;cardiac apex -http://purl.obolibrary.org/obo/UBERON_0002098;apex of heart;heart apex -http://purl.obolibrary.org/obo/UBERON_0002099;cardiac septum;cardiac septa -http://purl.obolibrary.org/obo/UBERON_0002099;cardiac septum;heart septa -http://purl.obolibrary.org/obo/UBERON_0002099;cardiac septum;heart septum -http://purl.obolibrary.org/obo/UBERON_0002099;cardiac septum;septum of heart -http://purl.obolibrary.org/obo/UBERON_0002100;trunk;Rumpf -http://purl.obolibrary.org/obo/UBERON_0002100;trunk;thoracolumbar region -http://purl.obolibrary.org/obo/UBERON_0002100;trunk;torso -http://purl.obolibrary.org/obo/UBERON_0002100;trunk;trunk region -http://purl.obolibrary.org/obo/UBERON_0002101;limb;extremities -http://purl.obolibrary.org/obo/UBERON_0002101;limb;extremity -http://purl.obolibrary.org/obo/UBERON_0002101;limb;flipper -http://purl.obolibrary.org/obo/UBERON_0002101;limb;free limb -http://purl.obolibrary.org/obo/UBERON_0002101;limb;limb sensu Vertebrata -http://purl.obolibrary.org/obo/UBERON_0002101;limb;pentadactyl limb -http://purl.obolibrary.org/obo/UBERON_0002101;limb;tetrapod limb -http://purl.obolibrary.org/obo/UBERON_0002102;forelimb;anteriormost limb -http://purl.obolibrary.org/obo/UBERON_0002102;forelimb;fore limb -http://purl.obolibrary.org/obo/UBERON_0002102;forelimb;forelimb -http://purl.obolibrary.org/obo/UBERON_0002102;forelimb;free part of upper limb -http://purl.obolibrary.org/obo/UBERON_0002102;forelimb;free upper limb -http://purl.obolibrary.org/obo/UBERON_0002102;forelimb;membrum superius -http://purl.obolibrary.org/obo/UBERON_0002102;forelimb;pectoral limb -http://purl.obolibrary.org/obo/UBERON_0002102;forelimb;superior member -http://purl.obolibrary.org/obo/UBERON_0002102;forelimb;upper extremity -http://purl.obolibrary.org/obo/UBERON_0002102;forelimb;upper limb -http://purl.obolibrary.org/obo/UBERON_0002103;hindlimb;free lower limb -http://purl.obolibrary.org/obo/UBERON_0002103;hindlimb;hind limb -http://purl.obolibrary.org/obo/UBERON_0002103;hindlimb;hind-limb -http://purl.obolibrary.org/obo/UBERON_0002103;hindlimb;hindlimb -http://purl.obolibrary.org/obo/UBERON_0002103;hindlimb;inferior member -http://purl.obolibrary.org/obo/UBERON_0002103;hindlimb;lower limb -http://purl.obolibrary.org/obo/UBERON_0002103;hindlimb;membrum inferius -http://purl.obolibrary.org/obo/UBERON_0002104;visual system;photosensory system -http://purl.obolibrary.org/obo/UBERON_0002104;visual system;visual organ system -http://purl.obolibrary.org/obo/UBERON_0002105;vestibulo-auditory system;auditory organ system -http://purl.obolibrary.org/obo/UBERON_0002105;vestibulo-auditory system;auditory system -http://purl.obolibrary.org/obo/UBERON_0002105;vestibulo-auditory system;auditory/vestibular system -http://purl.obolibrary.org/obo/UBERON_0002105;vestibulo-auditory system;vestibuloauditory system -http://purl.obolibrary.org/obo/UBERON_0002106;spleen;lien -http://purl.obolibrary.org/obo/UBERON_0002107;liver;iecur -http://purl.obolibrary.org/obo/UBERON_0002107;liver;jecur -http://purl.obolibrary.org/obo/UBERON_0002108;small intestine;anterior intestine -http://purl.obolibrary.org/obo/UBERON_0002108;small intestine;intestinum tenue -http://purl.obolibrary.org/obo/UBERON_0002108;small intestine;mid intestine -http://purl.obolibrary.org/obo/UBERON_0002108;small intestine;small bowel -http://purl.obolibrary.org/obo/UBERON_0002108;small intestine;small intestine -http://purl.obolibrary.org/obo/UBERON_0002109;pair of nares;nares set -http://purl.obolibrary.org/obo/UBERON_0002109;pair of nares;nostrils -http://purl.obolibrary.org/obo/UBERON_0002109;pair of nares;pair of nostrils -http://purl.obolibrary.org/obo/UBERON_0002110;gallbladder;cholecyst -http://purl.obolibrary.org/obo/UBERON_0002110;gallbladder;gall bladder -http://purl.obolibrary.org/obo/UBERON_0002111;artery smooth muscle tissue;arterial smooth muscle -http://purl.obolibrary.org/obo/UBERON_0002111;artery smooth muscle tissue;artery smooth muscle -http://purl.obolibrary.org/obo/UBERON_0002111;artery smooth muscle tissue;artery smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0002111;artery smooth muscle tissue;smooth muscle of artery -http://purl.obolibrary.org/obo/UBERON_0002112;smooth muscle of esophagus;esophageal smooth muscle -http://purl.obolibrary.org/obo/UBERON_0002112;smooth muscle of esophagus;esophagus involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0002112;smooth muscle of esophagus;esophagus non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0002112;smooth muscle of esophagus;esophagus smooth muscle -http://purl.obolibrary.org/obo/UBERON_0002112;smooth muscle of esophagus;esophagus smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0002112;smooth muscle of esophagus;gullet involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0002112;smooth muscle of esophagus;gullet non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0002112;smooth muscle of esophagus;gullet smooth muscle -http://purl.obolibrary.org/obo/UBERON_0002112;smooth muscle of esophagus;gullet smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0002112;smooth muscle of esophagus;involuntary muscle of esophagus -http://purl.obolibrary.org/obo/UBERON_0002112;smooth muscle of esophagus;involuntary muscle of gullet -http://purl.obolibrary.org/obo/UBERON_0002112;smooth muscle of esophagus;involuntary muscle of oesophagus -http://purl.obolibrary.org/obo/UBERON_0002112;smooth muscle of esophagus;non-striated muscle of esophagus -http://purl.obolibrary.org/obo/UBERON_0002112;smooth muscle of esophagus;non-striated muscle of gullet -http://purl.obolibrary.org/obo/UBERON_0002112;smooth muscle of esophagus;non-striated muscle of oesophagus -http://purl.obolibrary.org/obo/UBERON_0002112;smooth muscle of esophagus;oesophagus involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0002112;smooth muscle of esophagus;oesophagus non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0002112;smooth muscle of esophagus;oesophagus smooth muscle -http://purl.obolibrary.org/obo/UBERON_0002112;smooth muscle of esophagus;oesophagus smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0002112;smooth muscle of esophagus;smooth muscle of gullet -http://purl.obolibrary.org/obo/UBERON_0002112;smooth muscle of esophagus;smooth muscle of oesophagus -http://purl.obolibrary.org/obo/UBERON_0002112;smooth muscle of esophagus;smooth muscle tissue of esophagus -http://purl.obolibrary.org/obo/UBERON_0002112;smooth muscle of esophagus;smooth muscle tissue of gullet -http://purl.obolibrary.org/obo/UBERON_0002112;smooth muscle of esophagus;smooth muscle tissue of oesophagus -http://purl.obolibrary.org/obo/UBERON_0002113;kidney; -http://purl.obolibrary.org/obo/UBERON_0002114;duodenum; -http://purl.obolibrary.org/obo/UBERON_0002115;jejunum; -http://purl.obolibrary.org/obo/UBERON_0002116;ileum; -http://purl.obolibrary.org/obo/UBERON_0002118;right ovary; -http://purl.obolibrary.org/obo/UBERON_0002119;left ovary; -http://purl.obolibrary.org/obo/UBERON_0002120;pronephros;pronephric kidney -http://purl.obolibrary.org/obo/UBERON_0002122;capsule of thymus;thymic capsule -http://purl.obolibrary.org/obo/UBERON_0002122;capsule of thymus;thymus capsule -http://purl.obolibrary.org/obo/UBERON_0002123;cortex of thymus;thymic cortex -http://purl.obolibrary.org/obo/UBERON_0002123;cortex of thymus;thymus cortex -http://purl.obolibrary.org/obo/UBERON_0002124;medulla of thymus;medulla of thymus gland -http://purl.obolibrary.org/obo/UBERON_0002124;medulla of thymus;thymus gland medulla -http://purl.obolibrary.org/obo/UBERON_0002124;medulla of thymus;thymus medulla -http://purl.obolibrary.org/obo/UBERON_0002125;thymus lobule;lobule of thymus -http://purl.obolibrary.org/obo/UBERON_0002125;thymus lobule;thymic lobule -http://purl.obolibrary.org/obo/UBERON_0002125;thymus lobule;thymus lobule -http://purl.obolibrary.org/obo/UBERON_0002126;solitary tract nuclear complex;nuclei of solitary tract -http://purl.obolibrary.org/obo/UBERON_0002126;solitary tract nuclear complex;nucleus tractus solitarii -http://purl.obolibrary.org/obo/UBERON_0002126;solitary tract nuclear complex;solitary nuclei -http://purl.obolibrary.org/obo/UBERON_0002127;inferior olivary complex;inferior olivary nuclear complex -http://purl.obolibrary.org/obo/UBERON_0002127;inferior olivary complex;inferior olive -http://purl.obolibrary.org/obo/UBERON_0002127;inferior olivary complex;oliva -http://purl.obolibrary.org/obo/UBERON_0002128;Superior olivary complex;nucleus olivaris superior -http://purl.obolibrary.org/obo/UBERON_0002128;Superior olivary complex;regio olivaris superioris -http://purl.obolibrary.org/obo/UBERON_0002128;Superior olivary complex;superior olivary nuclei -http://purl.obolibrary.org/obo/UBERON_0002128;Superior olivary complex;superior olivary nucleus -http://purl.obolibrary.org/obo/UBERON_0002128;Superior olivary complex;superior olivary nucleus (Barr & Kiernan) -http://purl.obolibrary.org/obo/UBERON_0002128;Superior olivary complex;superior olive -http://purl.obolibrary.org/obo/UBERON_0002128;superior olivary complex;nucleus olivaris superior -http://purl.obolibrary.org/obo/UBERON_0002128;superior olivary complex;regio olivaris superioris -http://purl.obolibrary.org/obo/UBERON_0002128;superior olivary complex;superior olivary nuclei -http://purl.obolibrary.org/obo/UBERON_0002128;superior olivary complex;superior olivary nucleus -http://purl.obolibrary.org/obo/UBERON_0002128;superior olivary complex;superior olivary nucleus (Barr & Kiernan) -http://purl.obolibrary.org/obo/UBERON_0002128;superior olivary complex;superior olive -http://purl.obolibrary.org/obo/UBERON_0002129;cerebellar cortex;cortex cerebellaris -http://purl.obolibrary.org/obo/UBERON_0002129;cerebellar cortex;cortex cerebelli -http://purl.obolibrary.org/obo/UBERON_0002129;cerebellar cortex;cortex of cerebellar hemisphere -http://purl.obolibrary.org/obo/UBERON_0002130;cerebellar nuclear complex;central nuclei -http://purl.obolibrary.org/obo/UBERON_0002130;cerebellar nuclear complex;cerebellar nuclei -http://purl.obolibrary.org/obo/UBERON_0002130;cerebellar nuclear complex;deep cerebellar nuclear complex -http://purl.obolibrary.org/obo/UBERON_0002130;cerebellar nuclear complex;deep cerebellar nuclei -http://purl.obolibrary.org/obo/UBERON_0002130;cerebellar nuclear complex;intracerebellar nuclei -http://purl.obolibrary.org/obo/UBERON_0002130;cerebellar nuclear complex;intrinsic nuclei of cerebellum -http://purl.obolibrary.org/obo/UBERON_0002130;cerebellar nuclear complex;nuclei cerebellares -http://purl.obolibrary.org/obo/UBERON_0002130;cerebellar nuclear complex;nuclei cerebellaris -http://purl.obolibrary.org/obo/UBERON_0002130;cerebellar nuclear complex;nuclei cerebelli -http://purl.obolibrary.org/obo/UBERON_0002130;cerebellar nuclear complex;roof nuclei-2 -http://purl.obolibrary.org/obo/UBERON_0002131;anterior lobe of cerebellum;anterior cerebellar lobe -http://purl.obolibrary.org/obo/UBERON_0002131;anterior lobe of cerebellum;anterior lobe of cerebellum -http://purl.obolibrary.org/obo/UBERON_0002131;anterior lobe of cerebellum;anterior lobe of the cerebellum -http://purl.obolibrary.org/obo/UBERON_0002131;anterior lobe of cerebellum;cerebellar anterior lobe -http://purl.obolibrary.org/obo/UBERON_0002131;anterior lobe of cerebellum;cerebellum anterior lobe -http://purl.obolibrary.org/obo/UBERON_0002132;dentate nucleus;dentate cerebellar nucleus -http://purl.obolibrary.org/obo/UBERON_0002132;dentate nucleus;lateral cerebellar nucleus -http://purl.obolibrary.org/obo/UBERON_0002132;dentate nucleus;lateral nucleus of cerebellum -http://purl.obolibrary.org/obo/UBERON_0002133;atrioventricular valve;AV valve -http://purl.obolibrary.org/obo/UBERON_0002134;tricuspid valve;right atrioventricular valve -http://purl.obolibrary.org/obo/UBERON_0002134;tricuspid valve;valva atrioventricularis dextra -http://purl.obolibrary.org/obo/UBERON_0002135;mitral valve;left atrioventricular valve -http://purl.obolibrary.org/obo/UBERON_0002135;mitral valve;valva atrioventricularis sinistra -http://purl.obolibrary.org/obo/UBERON_0002136;hilus of dentate gyrus;CA4 -http://purl.obolibrary.org/obo/UBERON_0002136;hilus of dentate gyrus;dentate gyrus hilus -http://purl.obolibrary.org/obo/UBERON_0002136;hilus of dentate gyrus;field CA4 of hippocampal formation -http://purl.obolibrary.org/obo/UBERON_0002136;hilus of dentate gyrus;hilus gyri dentati -http://purl.obolibrary.org/obo/UBERON_0002136;hilus of dentate gyrus;hilus of the dentate gyrus -http://purl.obolibrary.org/obo/UBERON_0002136;hilus of dentate gyrus;multiform layer of dentate gyrus -http://purl.obolibrary.org/obo/UBERON_0002136;hilus of dentate gyrus;polymorphic later of dentate gyrus -http://purl.obolibrary.org/obo/UBERON_0002136;hilus of dentate gyrus;region CA4 -http://purl.obolibrary.org/obo/UBERON_0002137;aortic valve; -http://purl.obolibrary.org/obo/UBERON_0002138;habenulo-interpeduncular tract;Meynert's retroflex bundle -http://purl.obolibrary.org/obo/UBERON_0002138;habenulo-interpeduncular tract;fasciculus retroflexus -http://purl.obolibrary.org/obo/UBERON_0002138;habenulo-interpeduncular tract;fasciculus retroflexus (Meynert) -http://purl.obolibrary.org/obo/UBERON_0002138;habenulo-interpeduncular tract;habenulointerpeduncular fasciculus -http://purl.obolibrary.org/obo/UBERON_0002138;habenulo-interpeduncular tract;habenulopeduncular tract -http://purl.obolibrary.org/obo/UBERON_0002138;habenulo-interpeduncular tract;tractus habenulo-interpeduncularis -http://purl.obolibrary.org/obo/UBERON_0002139;subcommissural organ; -http://purl.obolibrary.org/obo/UBERON_0002140;parabigeminal nucleus;nucleus parabigeminalis -http://purl.obolibrary.org/obo/UBERON_0002141;parvocellular oculomotor nucleus;EW -http://purl.obolibrary.org/obo/UBERON_0002141;parvocellular oculomotor nucleus;Edinger-Westphal nucleus -http://purl.obolibrary.org/obo/UBERON_0002141;parvocellular oculomotor nucleus;Edinger-Westphal nucleus of oculomotor nerve -http://purl.obolibrary.org/obo/UBERON_0002141;parvocellular oculomotor nucleus;PC3 -http://purl.obolibrary.org/obo/UBERON_0002141;parvocellular oculomotor nucleus;accessory oculomotor nucleus -http://purl.obolibrary.org/obo/UBERON_0002141;parvocellular oculomotor nucleus;nuclei accessorii nervi oculomtorii (Edinger-Westphal) -http://purl.obolibrary.org/obo/UBERON_0002141;parvocellular oculomotor nucleus;nucleus Edinger Westphal -http://purl.obolibrary.org/obo/UBERON_0002141;parvocellular oculomotor nucleus;nucleus Edinger-Westphal -http://purl.obolibrary.org/obo/UBERON_0002141;parvocellular oculomotor nucleus;nucleus Westphal-Edinger -http://purl.obolibrary.org/obo/UBERON_0002141;parvocellular oculomotor nucleus;nucleus nervi oculomotorii Edinger-Westphal -http://purl.obolibrary.org/obo/UBERON_0002141;parvocellular oculomotor nucleus;nucleus nervi oculomotorii parvocellularis -http://purl.obolibrary.org/obo/UBERON_0002141;parvocellular oculomotor nucleus;nucleus rostralis nervi oculomotorii -http://purl.obolibrary.org/obo/UBERON_0002141;parvocellular oculomotor nucleus;oculomotor nucleus, parvicellular part -http://purl.obolibrary.org/obo/UBERON_0002141;parvocellular oculomotor nucleus;oculomotor nucleus, parvocellular part -http://purl.obolibrary.org/obo/UBERON_0002142;pedunculopontine tegmental nucleus;PPTg -http://purl.obolibrary.org/obo/UBERON_0002142;pedunculopontine tegmental nucleus;nucleus pedunculopontinus -http://purl.obolibrary.org/obo/UBERON_0002142;pedunculopontine tegmental nucleus;nucleus tegmenti pedunculopontinus -http://purl.obolibrary.org/obo/UBERON_0002142;pedunculopontine tegmental nucleus;peduncular pontine nucleus -http://purl.obolibrary.org/obo/UBERON_0002142;pedunculopontine tegmental nucleus;pedunculopontine nucleus -http://purl.obolibrary.org/obo/UBERON_0002143;dorsal tegmental nucleus;dorsal tegmental nucleus (Gudden) -http://purl.obolibrary.org/obo/UBERON_0002143;dorsal tegmental nucleus;dorsal tegmental nucleus of Gudden -http://purl.obolibrary.org/obo/UBERON_0002143;dorsal tegmental nucleus;gudden nucleus -http://purl.obolibrary.org/obo/UBERON_0002143;dorsal tegmental nucleus;nucleus tegmentalis dorsalis -http://purl.obolibrary.org/obo/UBERON_0002143;dorsal tegmental nucleus;nucleus tegmentalis posterior -http://purl.obolibrary.org/obo/UBERON_0002143;dorsal tegmental nucleus;posterior tegmental nucleus -http://purl.obolibrary.org/obo/UBERON_0002143;dorsal tegmental nucleus;von Gudden's nucleus -http://purl.obolibrary.org/obo/UBERON_0002144;peripeduncular nucleus;peripeduncular nucleus of pons -http://purl.obolibrary.org/obo/UBERON_0002145;interpeduncular nucleus;IP -http://purl.obolibrary.org/obo/UBERON_0002145;interpeduncular nucleus;interpedunclear nucleus -http://purl.obolibrary.org/obo/UBERON_0002145;interpeduncular nucleus;interpeduncular ganglion -http://purl.obolibrary.org/obo/UBERON_0002145;interpeduncular nucleus;interpeduncular nuclei -http://purl.obolibrary.org/obo/UBERON_0002145;interpeduncular nucleus;interpeduncular nucleus (Gudden) -http://purl.obolibrary.org/obo/UBERON_0002145;interpeduncular nucleus;interpeduncular nucleus of midbrain -http://purl.obolibrary.org/obo/UBERON_0002145;interpeduncular nucleus;interpeduncular nucleus tegmentum -http://purl.obolibrary.org/obo/UBERON_0002145;interpeduncular nucleus;nucleus interpeduncularis -http://purl.obolibrary.org/obo/UBERON_0002145;interpeduncular nucleus;nucleus interpeduncularis medialis -http://purl.obolibrary.org/obo/UBERON_0002146;pulmonary valve;pulmonic valve -http://purl.obolibrary.org/obo/UBERON_0002147;reticulotegmental nucleus;nucleus reticularis tegmenti pontis -http://purl.obolibrary.org/obo/UBERON_0002147;reticulotegmental nucleus;reticular tegmental nucleus -http://purl.obolibrary.org/obo/UBERON_0002147;reticulotegmental nucleus;reticulotegmental nucleus of pons -http://purl.obolibrary.org/obo/UBERON_0002147;reticulotegmental nucleus;tegmental reticular nucleus, pontine gray -http://purl.obolibrary.org/obo/UBERON_0002148;locus ceruleus;Noradrenergic cell group A6 -http://purl.obolibrary.org/obo/UBERON_0002148;locus ceruleus;blue nucleus -http://purl.obolibrary.org/obo/UBERON_0002148;locus ceruleus;caerulean nucleus -http://purl.obolibrary.org/obo/UBERON_0002148;locus ceruleus;loci coeruleus -http://purl.obolibrary.org/obo/UBERON_0002148;locus ceruleus;locus caeruleus -http://purl.obolibrary.org/obo/UBERON_0002148;locus ceruleus;locus cinereus -http://purl.obolibrary.org/obo/UBERON_0002148;locus ceruleus;locus coeruleu -http://purl.obolibrary.org/obo/UBERON_0002148;locus ceruleus;locus coeruleus -http://purl.obolibrary.org/obo/UBERON_0002148;locus ceruleus;locus coeruleus (Vicq d'Azyr) -http://purl.obolibrary.org/obo/UBERON_0002148;locus ceruleus;nucleus caeruleus -http://purl.obolibrary.org/obo/UBERON_0002148;locus ceruleus;nucleus loci caerulei -http://purl.obolibrary.org/obo/UBERON_0002148;locus ceruleus;nucleus of locus caeruleus -http://purl.obolibrary.org/obo/UBERON_0002148;locus ceruleus;nucleus pigmentosus pontis -http://purl.obolibrary.org/obo/UBERON_0002148;locus ceruleus;substantia ferruginea -http://purl.obolibrary.org/obo/UBERON_0002149;superior salivatory nucleus;nucleus salivarius superior -http://purl.obolibrary.org/obo/UBERON_0002149;superior salivatory nucleus;nucleus salivatorius cranialis -http://purl.obolibrary.org/obo/UBERON_0002149;superior salivatory nucleus;nucleus salivatorius rostralis -http://purl.obolibrary.org/obo/UBERON_0002149;superior salivatory nucleus;nucleus salivatorius superior -http://purl.obolibrary.org/obo/UBERON_0002149;superior salivatory nucleus;superior salivary nucleus -http://purl.obolibrary.org/obo/UBERON_0002150;superior cerebellar peduncle;brachium conjunctivum -http://purl.obolibrary.org/obo/UBERON_0002151;pontine nuclear group;nuclei brachii pontis -http://purl.obolibrary.org/obo/UBERON_0002151;pontine nuclear group;nuclei pontis -http://purl.obolibrary.org/obo/UBERON_0002151;pontine nuclear group;nucleus pontis -http://purl.obolibrary.org/obo/UBERON_0002151;pontine nuclear group;pontine gray -http://purl.obolibrary.org/obo/UBERON_0002151;pontine nuclear group;pontine gray matter -http://purl.obolibrary.org/obo/UBERON_0002151;pontine nuclear group;pontine grey matter -http://purl.obolibrary.org/obo/UBERON_0002151;pontine nuclear group;pontine nuclear complex -http://purl.obolibrary.org/obo/UBERON_0002151;pontine nuclear group;pontine nuclear group -http://purl.obolibrary.org/obo/UBERON_0002151;pontine nuclear group;pontine nuclei -http://purl.obolibrary.org/obo/UBERON_0002151;pontine nuclear group;pontine nucleus -http://purl.obolibrary.org/obo/UBERON_0002152;middle cerebellar peduncle;brachium pontis -http://purl.obolibrary.org/obo/UBERON_0002153;fastigial nucleus;medial (fastigial) nucleus -http://purl.obolibrary.org/obo/UBERON_0002153;fastigial nucleus;medial cerebellar nucleus -http://purl.obolibrary.org/obo/UBERON_0002153;fastigial nucleus;nucleus fastigii -http://purl.obolibrary.org/obo/UBERON_0002153;fastigial nucleus;roof nucleus-1 -http://purl.obolibrary.org/obo/UBERON_0002154;lateral reticular nucleus;lateral reticular nucleus (medulla) -http://purl.obolibrary.org/obo/UBERON_0002155;gigantocellular nucleus;gigantocellular group -http://purl.obolibrary.org/obo/UBERON_0002155;gigantocellular nucleus;gigantocellular reticular nuclei -http://purl.obolibrary.org/obo/UBERON_0002155;gigantocellular nucleus;gigantocellular reticular nucleus -http://purl.obolibrary.org/obo/UBERON_0002155;gigantocellular nucleus;nucleus gigantocellularis -http://purl.obolibrary.org/obo/UBERON_0002155;gigantocellular nucleus;nucleus reticularis gigantocellularis -http://purl.obolibrary.org/obo/UBERON_0002156;nucleus raphe magnus;magnus raphe nucleus -http://purl.obolibrary.org/obo/UBERON_0002156;nucleus raphe magnus;nucleus raphes magnus -http://purl.obolibrary.org/obo/UBERON_0002156;nucleus raphe magnus;raphe magnus nucleus -http://purl.obolibrary.org/obo/UBERON_0002157;nucleus raphe pallidus;nucleus raphes pallidus -http://purl.obolibrary.org/obo/UBERON_0002157;nucleus raphe pallidus;pallidal raphe nucleus -http://purl.obolibrary.org/obo/UBERON_0002157;nucleus raphe pallidus;raphe pallidus nucleus -http://purl.obolibrary.org/obo/UBERON_0002158;principal inferior olivary nucleus;chief inferior olivary nucleus -http://purl.obolibrary.org/obo/UBERON_0002158;principal inferior olivary nucleus;convoluted olive -http://purl.obolibrary.org/obo/UBERON_0002158;principal inferior olivary nucleus;inferior olivary complex, principal olive -http://purl.obolibrary.org/obo/UBERON_0002158;principal inferior olivary nucleus;inferior olive principal nucleus -http://purl.obolibrary.org/obo/UBERON_0002158;principal inferior olivary nucleus;inferior olive, principal nucleus -http://purl.obolibrary.org/obo/UBERON_0002158;principal inferior olivary nucleus;main olivary nucleus -http://purl.obolibrary.org/obo/UBERON_0002158;principal inferior olivary nucleus;nucleus olivaris principalis -http://purl.obolibrary.org/obo/UBERON_0002158;principal inferior olivary nucleus;principal nucleus of inferior olive -http://purl.obolibrary.org/obo/UBERON_0002158;principal inferior olivary nucleus;principal olivary nucleus -http://purl.obolibrary.org/obo/UBERON_0002158;principal inferior olivary nucleus;principal olive -http://purl.obolibrary.org/obo/UBERON_0002159;medial accessory inferior olivary nucleus;inferior olivary complex, medial accessory olive -http://purl.obolibrary.org/obo/UBERON_0002159;medial accessory inferior olivary nucleus;inferior olive medial nucleus -http://purl.obolibrary.org/obo/UBERON_0002159;medial accessory inferior olivary nucleus;inferior olive, medial nucleus -http://purl.obolibrary.org/obo/UBERON_0002159;medial accessory inferior olivary nucleus;medial accessory olivary nucleus -http://purl.obolibrary.org/obo/UBERON_0002159;medial accessory inferior olivary nucleus;nucleus olivaris accessorius medialis -http://purl.obolibrary.org/obo/UBERON_0002160;nucleus prepositus;PrP -http://purl.obolibrary.org/obo/UBERON_0002160;nucleus prepositus;nucleus praepositus -http://purl.obolibrary.org/obo/UBERON_0002160;nucleus prepositus;nucleus praepositus hypoglossi -http://purl.obolibrary.org/obo/UBERON_0002160;nucleus prepositus;nucleus prepositus hypoglossi -http://purl.obolibrary.org/obo/UBERON_0002160;nucleus prepositus;nucleus prepositus hypoglossus -http://purl.obolibrary.org/obo/UBERON_0002160;nucleus prepositus;prepositus hypoglossal nucleus -http://purl.obolibrary.org/obo/UBERON_0002160;nucleus prepositus;prepositus nucleus -http://purl.obolibrary.org/obo/UBERON_0002160;nucleus prepositus;prepositus nucleus (Marburg) -http://purl.obolibrary.org/obo/UBERON_0002161;gracile nucleus;Goll's nucleus -http://purl.obolibrary.org/obo/UBERON_0002161;gracile nucleus;golls nucleus -http://purl.obolibrary.org/obo/UBERON_0002161;gracile nucleus;gracile nucleus (Goll) -http://purl.obolibrary.org/obo/UBERON_0002161;gracile nucleus;gracile nucleus of the medulla -http://purl.obolibrary.org/obo/UBERON_0002161;gracile nucleus;gracile nucleus, general -http://purl.obolibrary.org/obo/UBERON_0002161;gracile nucleus;gracile nucleus, principal part -http://purl.obolibrary.org/obo/UBERON_0002161;gracile nucleus;nucleus gracilis -http://purl.obolibrary.org/obo/UBERON_0002162;area postrema;AP -http://purl.obolibrary.org/obo/UBERON_0002162;area postrema;chemoreceptor trigger zone -http://purl.obolibrary.org/obo/UBERON_0002163;inferior cerebellar peduncle;corpus restiforme -http://purl.obolibrary.org/obo/UBERON_0002163;inferior cerebellar peduncle;restiform body -http://purl.obolibrary.org/obo/UBERON_0002164;tectobulbar tract;tecto-bulbar tract -http://purl.obolibrary.org/obo/UBERON_0002165;endocardium;endocardial lining -http://purl.obolibrary.org/obo/UBERON_0002165;endocardium;endocardial tissue -http://purl.obolibrary.org/obo/UBERON_0002165;endocardium;heart endocardium -http://purl.obolibrary.org/obo/UBERON_0002166;endocardium of atrium;Cardiac atria endocardium -http://purl.obolibrary.org/obo/UBERON_0002166;endocardium of atrium;atrial endocardium -http://purl.obolibrary.org/obo/UBERON_0002166;endocardium of atrium;atrium endocardium -http://purl.obolibrary.org/obo/UBERON_0002166;endocardium of atrium;atrium of heart endocardium -http://purl.obolibrary.org/obo/UBERON_0002166;endocardium of atrium;cardiac atrium endocardium -http://purl.obolibrary.org/obo/UBERON_0002166;endocardium of atrium;endocardium of Cardiac atria -http://purl.obolibrary.org/obo/UBERON_0002166;endocardium of atrium;endocardium of atrium of heart -http://purl.obolibrary.org/obo/UBERON_0002166;endocardium of atrium;endocardium of cardiac atrium -http://purl.obolibrary.org/obo/UBERON_0002166;endocardium of atrium;endocardium of heart atrium -http://purl.obolibrary.org/obo/UBERON_0002166;endocardium of atrium;heart atrium endocardium -http://purl.obolibrary.org/obo/UBERON_0002167;right lung; -http://purl.obolibrary.org/obo/UBERON_0002168;left lung; -http://purl.obolibrary.org/obo/UBERON_0002169;alveolar sac;pulmonary alveolar sac -http://purl.obolibrary.org/obo/UBERON_0002169;alveolar sac;sacculus alveolaris -http://purl.obolibrary.org/obo/UBERON_0002170;upper lobe of right lung;lobus superior (pulmo dexter) -http://purl.obolibrary.org/obo/UBERON_0002170;upper lobe of right lung;lobus superior pulmonis dextri -http://purl.obolibrary.org/obo/UBERON_0002170;upper lobe of right lung;right cranial lobe of lung -http://purl.obolibrary.org/obo/UBERON_0002170;upper lobe of right lung;right lung cranial lobe -http://purl.obolibrary.org/obo/UBERON_0002170;upper lobe of right lung;right upper lobe -http://purl.obolibrary.org/obo/UBERON_0002170;upper lobe of right lung;right upper lobe of lung -http://purl.obolibrary.org/obo/UBERON_0002170;upper lobe of right lung;superior lobe of right lung -http://purl.obolibrary.org/obo/UBERON_0002170;upper lobe of right lung;upper lobe of right lung -http://purl.obolibrary.org/obo/UBERON_0002171;lower lobe of right lung;inferior lobe of right lung -http://purl.obolibrary.org/obo/UBERON_0002171;lower lobe of right lung;lobus inferior (pulmo dexter) -http://purl.obolibrary.org/obo/UBERON_0002171;lower lobe of right lung;lobus inferior pulmonis dextri -http://purl.obolibrary.org/obo/UBERON_0002171;lower lobe of right lung;lower lobe of right lung -http://purl.obolibrary.org/obo/UBERON_0002171;lower lobe of right lung;right caudal lobe of lung -http://purl.obolibrary.org/obo/UBERON_0002171;lower lobe of right lung;right lower lobe -http://purl.obolibrary.org/obo/UBERON_0002171;lower lobe of right lung;right lower lobe of lung -http://purl.obolibrary.org/obo/UBERON_0002172;alveolar atrium;alveolus of lung atrium -http://purl.obolibrary.org/obo/UBERON_0002172;alveolar atrium;atrium alveolare -http://purl.obolibrary.org/obo/UBERON_0002172;alveolar atrium;atrium of alveolus -http://purl.obolibrary.org/obo/UBERON_0002172;alveolar atrium;atrium of alveolus of lung -http://purl.obolibrary.org/obo/UBERON_0002172;alveolar atrium;atrium of lung alveolus -http://purl.obolibrary.org/obo/UBERON_0002172;alveolar atrium;lung alveolus atrium -http://purl.obolibrary.org/obo/UBERON_0002173;pulmonary alveolar duct;alveolar duct -http://purl.obolibrary.org/obo/UBERON_0002173;pulmonary alveolar duct;ductus alveolaris -http://purl.obolibrary.org/obo/UBERON_0002173;pulmonary alveolar duct;respiratory alveolar duct -http://purl.obolibrary.org/obo/UBERON_0002174;middle lobe of right lung;intermediate lobe of right lung -http://purl.obolibrary.org/obo/UBERON_0002174;middle lobe of right lung;lobus medius pulmonis dextri -http://purl.obolibrary.org/obo/UBERON_0002174;middle lobe of right lung;right lung middle lobe -http://purl.obolibrary.org/obo/UBERON_0002174;middle lobe of right lung;right lung, middle lobe -http://purl.obolibrary.org/obo/UBERON_0002174;middle lobe of right lung;right medial lobe of lung -http://purl.obolibrary.org/obo/UBERON_0002174;middle lobe of right lung;right middle lobe of lung -http://purl.obolibrary.org/obo/UBERON_0002175;intermediolateral nucleus;intermediolateral nucleus of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002175;intermediolateral nucleus;nucleus intermediolateralis medullae spinalis -http://purl.obolibrary.org/obo/UBERON_0002175;intermediolateral nucleus;spinal cord intermediolateral nucleus -http://purl.obolibrary.org/obo/UBERON_0002176;lateral cervical nucleus; -http://purl.obolibrary.org/obo/UBERON_0002177;right main bronchus;right major bronchus -http://purl.obolibrary.org/obo/UBERON_0002177;right main bronchus;right primary bronchus -http://purl.obolibrary.org/obo/UBERON_0002177;right main bronchus;right principal bronchus -http://purl.obolibrary.org/obo/UBERON_0002178;left main bronchus;left major bronchus -http://purl.obolibrary.org/obo/UBERON_0002178;left main bronchus;left primary bronchus -http://purl.obolibrary.org/obo/UBERON_0002178;left main bronchus;left principal bronchus -http://purl.obolibrary.org/obo/UBERON_0002179;lateral funiculus of spinal cord;lateral funiculus -http://purl.obolibrary.org/obo/UBERON_0002179;lateral funiculus of spinal cord;lateral funiculus of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002179;lateral funiculus of spinal cord;lateral white column of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002180;ventral funiculus of spinal cord;anterior funiculus -http://purl.obolibrary.org/obo/UBERON_0002180;ventral funiculus of spinal cord;anterior funiculus of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002180;ventral funiculus of spinal cord;anterior white column of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002180;ventral funiculus of spinal cord;funiculus anterior medullae spinalis -http://purl.obolibrary.org/obo/UBERON_0002180;ventral funiculus of spinal cord;ventral funiculi -http://purl.obolibrary.org/obo/UBERON_0002180;ventral funiculus of spinal cord;ventral funiculus -http://purl.obolibrary.org/obo/UBERON_0002180;ventral funiculus of spinal cord;ventral funiculus of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002180;ventral funiculus of spinal cord;ventral white column of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002181;substantia gelatinosa;central gelatinous substance of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002181;substantia gelatinosa;gelatinous substance of Rolando -http://purl.obolibrary.org/obo/UBERON_0002181;substantia gelatinosa;gelatinous substance of dorsal horn of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002181;substantia gelatinosa;gelatinous substance of posterior horn of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002181;substantia gelatinosa;lamina II of gray matter of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002181;substantia gelatinosa;lamina spinalis II -http://purl.obolibrary.org/obo/UBERON_0002181;substantia gelatinosa;rexed lamina II -http://purl.obolibrary.org/obo/UBERON_0002181;substantia gelatinosa;spinal lamina II -http://purl.obolibrary.org/obo/UBERON_0002181;substantia gelatinosa;substantia gelatinosa cornu posterioris medullae spinalis -http://purl.obolibrary.org/obo/UBERON_0002181;substantia gelatinosa;substantia gelatinosa of spinal cord dorsal horn -http://purl.obolibrary.org/obo/UBERON_0002182;main bronchus;bronchus principalis -http://purl.obolibrary.org/obo/UBERON_0002182;main bronchus;extrapulmonary bronchus -http://purl.obolibrary.org/obo/UBERON_0002182;main bronchus;mainstem bronchus -http://purl.obolibrary.org/obo/UBERON_0002182;main bronchus;major bronchus -http://purl.obolibrary.org/obo/UBERON_0002182;main bronchus;primary bronchus -http://purl.obolibrary.org/obo/UBERON_0002182;main bronchus;principal bronchus -http://purl.obolibrary.org/obo/UBERON_0002183;lobar bronchus;bronchi lobaris -http://purl.obolibrary.org/obo/UBERON_0002183;lobar bronchus;secondary bronchus -http://purl.obolibrary.org/obo/UBERON_0002184;segmental bronchus;tertiary bronchus -http://purl.obolibrary.org/obo/UBERON_0002185;bronchus;bronchi -http://purl.obolibrary.org/obo/UBERON_0002185;bronchus;bronchial tissue -http://purl.obolibrary.org/obo/UBERON_0002185;bronchus;bronchial trunk -http://purl.obolibrary.org/obo/UBERON_0002186;bronchiole;bronchioli -http://purl.obolibrary.org/obo/UBERON_0002186;bronchiole;bronchiolus -http://purl.obolibrary.org/obo/UBERON_0002187;terminal bronchiole;bronchioli terminalis -http://purl.obolibrary.org/obo/UBERON_0002187;terminal bronchiole;bronchiolus terminalis -http://purl.obolibrary.org/obo/UBERON_0002187;terminal bronchiole;terminal bronchiole tube -http://purl.obolibrary.org/obo/UBERON_0002188;respiratory bronchiole;bronchiolus respiratorii -http://purl.obolibrary.org/obo/UBERON_0002188;respiratory bronchiole;bronchiolus respiratorius -http://purl.obolibrary.org/obo/UBERON_0002189;outer cortex of kidney;kidney outer cortex -http://purl.obolibrary.org/obo/UBERON_0002189;outer cortex of kidney;outer renal cortex -http://purl.obolibrary.org/obo/UBERON_0002190;subcutaneous adipose tissue;fatty layer of subcutaneous tissue -http://purl.obolibrary.org/obo/UBERON_0002190;subcutaneous adipose tissue;fatty layer of superficial fascia -http://purl.obolibrary.org/obo/UBERON_0002190;subcutaneous adipose tissue;hypodermis fat layer -http://purl.obolibrary.org/obo/UBERON_0002190;subcutaneous adipose tissue;panniculus adiposus -http://purl.obolibrary.org/obo/UBERON_0002190;subcutaneous adipose tissue;panniculus adiposus (tela subcutanea) -http://purl.obolibrary.org/obo/UBERON_0002190;subcutaneous adipose tissue;panniculus adiposus telae subcutaneae -http://purl.obolibrary.org/obo/UBERON_0002190;subcutaneous adipose tissue;subcutaneous fat -http://purl.obolibrary.org/obo/UBERON_0002190;subcutaneous adipose tissue;subcutaneous fat layer -http://purl.obolibrary.org/obo/UBERON_0002191;subiculum;gyrus parahippocampalis -http://purl.obolibrary.org/obo/UBERON_0002191;subiculum;subicular cortex -http://purl.obolibrary.org/obo/UBERON_0002191;subiculum;subiculum cornu ammonis -http://purl.obolibrary.org/obo/UBERON_0002191;subiculum;subiculum hippocampi -http://purl.obolibrary.org/obo/UBERON_0002192;ventricular system choroidal fissure;choroidal fissure of lateral ventricle -http://purl.obolibrary.org/obo/UBERON_0002192;ventricular system choroidal fissure;lateral ventricle choroid fissure -http://purl.obolibrary.org/obo/UBERON_0002192;ventricular system choroidal fissure;ventricular system choroid fissure -http://purl.obolibrary.org/obo/UBERON_0002193;hemolymphoid system;haemolymphoid system -http://purl.obolibrary.org/obo/UBERON_0002193;hemolymphoid system;hematolymphoid system -http://purl.obolibrary.org/obo/UBERON_0002193;hemolymphoid system;lymphomyeloid complex -http://purl.obolibrary.org/obo/UBERON_0002194;capsule of lymph node;capsula nodi lymphoidei -http://purl.obolibrary.org/obo/UBERON_0002194;capsule of lymph node;lymph node capsule -http://purl.obolibrary.org/obo/UBERON_0002195;trabecula of lymph node;lymph node trabecula -http://purl.obolibrary.org/obo/UBERON_0002195;trabecula of lymph node;lymph node trabeculae -http://purl.obolibrary.org/obo/UBERON_0002195;trabecula of lymph node;lymph node trabeculum -http://purl.obolibrary.org/obo/UBERON_0002195;trabecula of lymph node;trabeculae of lymph node -http://purl.obolibrary.org/obo/UBERON_0002196;adenohypophysis;anterior hypophysis -http://purl.obolibrary.org/obo/UBERON_0002196;adenohypophysis;anterior lobe (hypophysis) -http://purl.obolibrary.org/obo/UBERON_0002196;adenohypophysis;anterior lobe of hypophysis -http://purl.obolibrary.org/obo/UBERON_0002196;adenohypophysis;anterior lobe of pituitary -http://purl.obolibrary.org/obo/UBERON_0002196;adenohypophysis;anterior lobe of pituitary gland -http://purl.obolibrary.org/obo/UBERON_0002196;adenohypophysis;anterior pituitary -http://purl.obolibrary.org/obo/UBERON_0002196;adenohypophysis;lobus anterior (glandula pituitaria) -http://purl.obolibrary.org/obo/UBERON_0002196;adenohypophysis;lobus anterior hypophysis -http://purl.obolibrary.org/obo/UBERON_0002196;adenohypophysis;pituitary gland, anterior lobe -http://purl.obolibrary.org/obo/UBERON_0002197;median eminence of neurohypophysis;ME -http://purl.obolibrary.org/obo/UBERON_0002197;median eminence of neurohypophysis;eminentia medialis (Shantha) -http://purl.obolibrary.org/obo/UBERON_0002197;median eminence of neurohypophysis;eminentia mediana -http://purl.obolibrary.org/obo/UBERON_0002197;median eminence of neurohypophysis;eminentia mediana hypothalami -http://purl.obolibrary.org/obo/UBERON_0002197;median eminence of neurohypophysis;eminentia postinfundibularis -http://purl.obolibrary.org/obo/UBERON_0002197;median eminence of neurohypophysis;medial eminence -http://purl.obolibrary.org/obo/UBERON_0002197;median eminence of neurohypophysis;median eminence -http://purl.obolibrary.org/obo/UBERON_0002197;median eminence of neurohypophysis;median eminence of hypothalamus -http://purl.obolibrary.org/obo/UBERON_0002197;median eminence of neurohypophysis;median eminence of posterior lobe of pituitary gland -http://purl.obolibrary.org/obo/UBERON_0002197;median eminence of neurohypophysis;median eminence of tuber cinereum -http://purl.obolibrary.org/obo/UBERON_0002198;neurohypophysis;NHP -http://purl.obolibrary.org/obo/UBERON_0002198;neurohypophysis;infundibular process -http://purl.obolibrary.org/obo/UBERON_0002198;neurohypophysis;lobus nervosus -http://purl.obolibrary.org/obo/UBERON_0002198;neurohypophysis;lobus nervosus neurohypophysis -http://purl.obolibrary.org/obo/UBERON_0002198;neurohypophysis;lobus posterior -http://purl.obolibrary.org/obo/UBERON_0002198;neurohypophysis;lobus posterior (glandula pituitaria) -http://purl.obolibrary.org/obo/UBERON_0002198;neurohypophysis;lobus posterior hypophysis -http://purl.obolibrary.org/obo/UBERON_0002198;neurohypophysis;neural lobe -http://purl.obolibrary.org/obo/UBERON_0002198;neurohypophysis;neural lobe of pituitary -http://purl.obolibrary.org/obo/UBERON_0002198;neurohypophysis;neural lobe of pituitary gland -http://purl.obolibrary.org/obo/UBERON_0002198;neurohypophysis;neuro hypophysis -http://purl.obolibrary.org/obo/UBERON_0002198;neurohypophysis;neurohypophysis -http://purl.obolibrary.org/obo/UBERON_0002198;neurohypophysis;pituitary gland neural lobe -http://purl.obolibrary.org/obo/UBERON_0002198;neurohypophysis;pituitary gland, neural lobe -http://purl.obolibrary.org/obo/UBERON_0002198;neurohypophysis;pituitary gland, posterior lobe -http://purl.obolibrary.org/obo/UBERON_0002198;neurohypophysis;posterior lobe of hypophysis -http://purl.obolibrary.org/obo/UBERON_0002198;neurohypophysis;posterior lobe of pituitary -http://purl.obolibrary.org/obo/UBERON_0002198;neurohypophysis;posterior lobe of pituitary gland -http://purl.obolibrary.org/obo/UBERON_0002198;neurohypophysis;posterior pituitary -http://purl.obolibrary.org/obo/UBERON_0002198;neurohypophysis;posterior pituitary gland -http://purl.obolibrary.org/obo/UBERON_0002199;integument;dermal system -http://purl.obolibrary.org/obo/UBERON_0002199;integument;dermis plus epidermis plus hypodermis -http://purl.obolibrary.org/obo/UBERON_0002199;integument;dermoid system -http://purl.obolibrary.org/obo/UBERON_0002199;integument;integumentum commune -http://purl.obolibrary.org/obo/UBERON_0002199;integument;skin -http://purl.obolibrary.org/obo/UBERON_0002199;integument;skin and subcutaneous tissue -http://purl.obolibrary.org/obo/UBERON_0002199;integument;skin plus hypodermis -http://purl.obolibrary.org/obo/UBERON_0002199;integument;tegument -http://purl.obolibrary.org/obo/UBERON_0002199;integument;the integument -http://purl.obolibrary.org/obo/UBERON_0002199;integument;vertebrate integument -http://purl.obolibrary.org/obo/UBERON_0002200;vasculature of head;adult head vascular network -http://purl.obolibrary.org/obo/UBERON_0002200;vasculature of head;adult head vasculature -http://purl.obolibrary.org/obo/UBERON_0002200;vasculature of head;cranial vasculature -http://purl.obolibrary.org/obo/UBERON_0002200;vasculature of head;head vascular network -http://purl.obolibrary.org/obo/UBERON_0002200;vasculature of head;vascular network of adult head -http://purl.obolibrary.org/obo/UBERON_0002200;vasculature of head;vascular network of head -http://purl.obolibrary.org/obo/UBERON_0002200;vasculature of head;vasculature of adult head -http://purl.obolibrary.org/obo/UBERON_0002201;vasculature of trunk;torso vascular network -http://purl.obolibrary.org/obo/UBERON_0002201;vasculature of trunk;torso vasculature -http://purl.obolibrary.org/obo/UBERON_0002201;vasculature of trunk;trunk vascular network -http://purl.obolibrary.org/obo/UBERON_0002201;vasculature of trunk;trunk vasculature -http://purl.obolibrary.org/obo/UBERON_0002201;vasculature of trunk;vascular network of torso -http://purl.obolibrary.org/obo/UBERON_0002201;vasculature of trunk;vascular network of trunk -http://purl.obolibrary.org/obo/UBERON_0002201;vasculature of trunk;vasculature of torso -http://purl.obolibrary.org/obo/UBERON_0002202;submucosa of trachea;submucosa of windpipe -http://purl.obolibrary.org/obo/UBERON_0002202;submucosa of trachea;trachea submucosa -http://purl.obolibrary.org/obo/UBERON_0002202;submucosa of trachea;tracheal submucosa -http://purl.obolibrary.org/obo/UBERON_0002202;submucosa of trachea;windpipe submucosa -http://purl.obolibrary.org/obo/UBERON_0002203;vasculature of eye;eye vascular network -http://purl.obolibrary.org/obo/UBERON_0002203;vasculature of eye;ocular blood vessel -http://purl.obolibrary.org/obo/UBERON_0002203;vasculature of eye;ocular vasculature -http://purl.obolibrary.org/obo/UBERON_0002203;vasculature of eye;vascular network of eye -http://purl.obolibrary.org/obo/UBERON_0002204;musculoskeletal system;musculo-skeletal system -http://purl.obolibrary.org/obo/UBERON_0002205;manubrium of sternum;manubrium of sternum -http://purl.obolibrary.org/obo/UBERON_0002205;manubrium of sternum;manubrium sterni -http://purl.obolibrary.org/obo/UBERON_0002205;manubrium of sternum;sternal manubrium -http://purl.obolibrary.org/obo/UBERON_0002205;manubrium of sternum;sternal rostrum -http://purl.obolibrary.org/obo/UBERON_0002205;manubrium of sternum;sternum rostrum -http://purl.obolibrary.org/obo/UBERON_0002206;mammillary body;MMB -http://purl.obolibrary.org/obo/UBERON_0002206;mammillary body;corpora mamillaria -http://purl.obolibrary.org/obo/UBERON_0002206;mammillary body;corpora mammillaria -http://purl.obolibrary.org/obo/UBERON_0002206;mammillary body;corpus mamillare -http://purl.obolibrary.org/obo/UBERON_0002206;mammillary body;corpus mamillaris -http://purl.obolibrary.org/obo/UBERON_0002206;mammillary body;corpus mammillare -http://purl.obolibrary.org/obo/UBERON_0002206;mammillary body;mammillary area -http://purl.obolibrary.org/obo/UBERON_0002207;xiphoid process;xiphisternum -http://purl.obolibrary.org/obo/UBERON_0002207;xiphoid process;xiphoid process -http://purl.obolibrary.org/obo/UBERON_0002207;xiphoid process;xiphoid process of sternum -http://purl.obolibrary.org/obo/UBERON_0002208;sternebra; -http://purl.obolibrary.org/obo/UBERON_0002209;fibrous joint;articulatio fibrosa -http://purl.obolibrary.org/obo/UBERON_0002209;fibrous joint;junctura fibrosa -http://purl.obolibrary.org/obo/UBERON_0002210;syndesmosis; -http://purl.obolibrary.org/obo/UBERON_0002211;nerve root;initial segment of nerve -http://purl.obolibrary.org/obo/UBERON_0002211;nerve root;radix nervi -http://purl.obolibrary.org/obo/UBERON_0002212;macula of saccule of membranous labyrinth;macula of membranous labyrinth saccule -http://purl.obolibrary.org/obo/UBERON_0002212;macula of saccule of membranous labyrinth;macula of saccule -http://purl.obolibrary.org/obo/UBERON_0002212;macula of saccule of membranous labyrinth;macula of sacculus (labyrinthus vestibularis) -http://purl.obolibrary.org/obo/UBERON_0002212;macula of saccule of membranous labyrinth;macula saccule -http://purl.obolibrary.org/obo/UBERON_0002212;macula of saccule of membranous labyrinth;macula sacculi -http://purl.obolibrary.org/obo/UBERON_0002212;macula of saccule of membranous labyrinth;membranous labyrinth saccule macula -http://purl.obolibrary.org/obo/UBERON_0002212;macula of saccule of membranous labyrinth;saccular macula -http://purl.obolibrary.org/obo/UBERON_0002212;macula of saccule of membranous labyrinth;saccular macula of membranous labyrinth -http://purl.obolibrary.org/obo/UBERON_0002212;macula of saccule of membranous labyrinth;saccule macula -http://purl.obolibrary.org/obo/UBERON_0002212;macula of saccule of membranous labyrinth;saccule of membranous labyrinth macula -http://purl.obolibrary.org/obo/UBERON_0002212;macula of saccule of membranous labyrinth;sacculus (labyrinthus vestibularis) macula -http://purl.obolibrary.org/obo/UBERON_0002213;cartilaginous joint;articulatio cartilaginea -http://purl.obolibrary.org/obo/UBERON_0002213;cartilaginous joint;junctura cartilaginea -http://purl.obolibrary.org/obo/UBERON_0002214;macula of utricle of membranous labyrinth;macula of membranous labyrinth utricle -http://purl.obolibrary.org/obo/UBERON_0002214;macula of utricle of membranous labyrinth;macula of utricle -http://purl.obolibrary.org/obo/UBERON_0002214;macula of utricle of membranous labyrinth;macula of utriculus (labyrinthus vestibularis) -http://purl.obolibrary.org/obo/UBERON_0002214;macula of utricle of membranous labyrinth;macula utricle -http://purl.obolibrary.org/obo/UBERON_0002214;macula of utricle of membranous labyrinth;macula utriculi -http://purl.obolibrary.org/obo/UBERON_0002214;macula of utricle of membranous labyrinth;membranous labyrinth utricle macula -http://purl.obolibrary.org/obo/UBERON_0002214;macula of utricle of membranous labyrinth;utricle macula -http://purl.obolibrary.org/obo/UBERON_0002214;macula of utricle of membranous labyrinth;utricle of membranous labyrinth macula -http://purl.obolibrary.org/obo/UBERON_0002214;macula of utricle of membranous labyrinth;utriculus (labyrinthus vestibularis) macula -http://purl.obolibrary.org/obo/UBERON_0002215;synchondrosis;cartilago epiphysialis -http://purl.obolibrary.org/obo/UBERON_0002215;synchondrosis;primary cartilaginous joint -http://purl.obolibrary.org/obo/UBERON_0002216;symphysis;secondary cartilaginous joint -http://purl.obolibrary.org/obo/UBERON_0002217;synovial joint;articulatio synoviale -http://purl.obolibrary.org/obo/UBERON_0002217;synovial joint;diarthroses -http://purl.obolibrary.org/obo/UBERON_0002217;synovial joint;diarthrosis -http://purl.obolibrary.org/obo/UBERON_0002217;synovial joint;diarthrosis joint -http://purl.obolibrary.org/obo/UBERON_0002218;tympanic ring; -http://purl.obolibrary.org/obo/UBERON_0002219;subfornical organ; -http://purl.obolibrary.org/obo/UBERON_0002221;fontanelle;fontanel -http://purl.obolibrary.org/obo/UBERON_0002221;fontanelle;fontanelles -http://purl.obolibrary.org/obo/UBERON_0002221;fontanelle;fontanels -http://purl.obolibrary.org/obo/UBERON_0002222;perichondrium; -http://purl.obolibrary.org/obo/UBERON_0002223;endolymphatic sac;saccus endolymphaticus -http://purl.obolibrary.org/obo/UBERON_0002224;thoracic cavity;cavitas thoracis -http://purl.obolibrary.org/obo/UBERON_0002224;thoracic cavity;cavity of chest -http://purl.obolibrary.org/obo/UBERON_0002224;thoracic cavity;cavity of thorax -http://purl.obolibrary.org/obo/UBERON_0002224;thoracic cavity;chest cavity -http://purl.obolibrary.org/obo/UBERON_0002224;thoracic cavity;pectoral cavity -http://purl.obolibrary.org/obo/UBERON_0002224;thoracic cavity;space of thoracic compartment -http://purl.obolibrary.org/obo/UBERON_0002224;thoracic cavity;thoracic lumen -http://purl.obolibrary.org/obo/UBERON_0002225;costal arch; -http://purl.obolibrary.org/obo/UBERON_0002226;basilar membrane of cochlea;basilar membrane -http://purl.obolibrary.org/obo/UBERON_0002227;spiral organ of cochlea;Corti's organ -http://purl.obolibrary.org/obo/UBERON_0002227;spiral organ of cochlea;auditory papilla -http://purl.obolibrary.org/obo/UBERON_0002227;spiral organ of cochlea;auditory papillae -http://purl.obolibrary.org/obo/UBERON_0002227;spiral organ of cochlea;basilar papilla -http://purl.obolibrary.org/obo/UBERON_0002227;spiral organ of cochlea;cochlear spiral organ -http://purl.obolibrary.org/obo/UBERON_0002227;spiral organ of cochlea;organ of Corti -http://purl.obolibrary.org/obo/UBERON_0002227;spiral organ of cochlea;organum spirale -http://purl.obolibrary.org/obo/UBERON_0002227;spiral organ of cochlea;papilla basilaris -http://purl.obolibrary.org/obo/UBERON_0002227;spiral organ of cochlea;spiral organ -http://purl.obolibrary.org/obo/UBERON_0002227;spiral organ of cochlea;spiral organ of Corti -http://purl.obolibrary.org/obo/UBERON_0002228;rib; -http://purl.obolibrary.org/obo/UBERON_0002229;interparietal bone;inter-parietal bone -http://purl.obolibrary.org/obo/UBERON_0002229;interparietal bone;interparietal -http://purl.obolibrary.org/obo/UBERON_0002230;head of rib;rib head -http://purl.obolibrary.org/obo/UBERON_0002231;body of rib;corpus costae -http://purl.obolibrary.org/obo/UBERON_0002231;body of rib;rib body -http://purl.obolibrary.org/obo/UBERON_0002231;body of rib;rib shaft -http://purl.obolibrary.org/obo/UBERON_0002231;body of rib;shaft of rib -http://purl.obolibrary.org/obo/UBERON_0002232;olfactory gland;olfactory gland of Bowman -http://purl.obolibrary.org/obo/UBERON_0002233;tectorial membrane of cochlea;tectorial membrane -http://purl.obolibrary.org/obo/UBERON_0002233;tectorial membrane of cochlea;tectorial membrane of spiral organ of cochlea -http://purl.obolibrary.org/obo/UBERON_0002234;proximal phalanx of manus;hand proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0002234;proximal phalanx of manus;phalanx proximalis manus -http://purl.obolibrary.org/obo/UBERON_0002234;proximal phalanx of manus;proximal manual phalanx -http://purl.obolibrary.org/obo/UBERON_0002234;proximal phalanx of manus;proximal phalanx of finger -http://purl.obolibrary.org/obo/UBERON_0002234;proximal phalanx of manus;proximal phalanx of fore digit -http://purl.obolibrary.org/obo/UBERON_0002234;proximal phalanx of manus;proximal phalanx of hand -http://purl.obolibrary.org/obo/UBERON_0002234;proximal phalanx of manus;proximal phalanx of manual digit -http://purl.obolibrary.org/obo/UBERON_0002235;tubercle of rib;rib tubercle -http://purl.obolibrary.org/obo/UBERON_0002235;tubercle of rib;tuberculum costae -http://purl.obolibrary.org/obo/UBERON_0002236;costal cartilage; -http://purl.obolibrary.org/obo/UBERON_0002237;true rib;costa vera -http://purl.obolibrary.org/obo/UBERON_0002238;false rib;costa spuria -http://purl.obolibrary.org/obo/UBERON_0002239;floating rib;costa fluitante -http://purl.obolibrary.org/obo/UBERON_0002239;floating rib;free rib -http://purl.obolibrary.org/obo/UBERON_0002239;floating rib;vertebral rib -http://purl.obolibrary.org/obo/UBERON_0002240;spinal cord;SpC -http://purl.obolibrary.org/obo/UBERON_0002240;spinal cord;cerebro-cerebellar fissure -http://purl.obolibrary.org/obo/UBERON_0002240;spinal cord;cerebrocerebellar fissure -http://purl.obolibrary.org/obo/UBERON_0002240;spinal cord;fissura cerebro-cerebellaris -http://purl.obolibrary.org/obo/UBERON_0002240;spinal cord;fissura cerebrocerebellaris -http://purl.obolibrary.org/obo/UBERON_0002240;spinal cord;medulla spinalis -http://purl.obolibrary.org/obo/UBERON_0002240;spinal cord;spinal cord structure -http://purl.obolibrary.org/obo/UBERON_0002240;spinal cord;spinal medulla -http://purl.obolibrary.org/obo/UBERON_0002241;chondrocranium;calvarium -http://purl.obolibrary.org/obo/UBERON_0002241;chondrocranium;neurocranium -http://purl.obolibrary.org/obo/UBERON_0002242;nucleus pulposus;nucleus pulposus (diskus intervertebralis) -http://purl.obolibrary.org/obo/UBERON_0002242;nucleus pulposus;pulpy nucleus -http://purl.obolibrary.org/obo/UBERON_0002243;cutaneous vein; -http://purl.obolibrary.org/obo/UBERON_0002244;premaxilla;premaxillae -http://purl.obolibrary.org/obo/UBERON_0002244;premaxilla;premaxillary -http://purl.obolibrary.org/obo/UBERON_0002245;cerebellar hemisphere;cerebellar hemisphere -http://purl.obolibrary.org/obo/UBERON_0002245;cerebellar hemisphere;cerebellum hemisphere -http://purl.obolibrary.org/obo/UBERON_0002245;cerebellar hemisphere;hemisphere of cerebellum -http://purl.obolibrary.org/obo/UBERON_0002245;cerebellar hemisphere;hemisphere of cerebellum [H II - H X] -http://purl.obolibrary.org/obo/UBERON_0002245;cerebellar hemisphere;hemispherium cerebelli [H II - H X] -http://purl.obolibrary.org/obo/UBERON_0002245;cerebellar hemisphere;hemispherium cerebelli [hII-hX] -http://purl.obolibrary.org/obo/UBERON_0002246;dorsal thoracic nucleus;Clarke's column -http://purl.obolibrary.org/obo/UBERON_0002246;dorsal thoracic nucleus;Clarke's nucleus -http://purl.obolibrary.org/obo/UBERON_0002246;dorsal thoracic nucleus;Stilling-Clarke's column -http://purl.obolibrary.org/obo/UBERON_0002246;dorsal thoracic nucleus;Stilling-Clarke's nucleus -http://purl.obolibrary.org/obo/UBERON_0002246;dorsal thoracic nucleus;dorsal nucleus of Clarke -http://purl.obolibrary.org/obo/UBERON_0002246;dorsal thoracic nucleus;nucleus thoracicus dorsalis -http://purl.obolibrary.org/obo/UBERON_0002246;dorsal thoracic nucleus;nucleus thoracicus posterior -http://purl.obolibrary.org/obo/UBERON_0002246;dorsal thoracic nucleus;posterior thoracic nucleus -http://purl.obolibrary.org/obo/UBERON_0002246;dorsal thoracic nucleus;spinal cord dorsal nucleus -http://purl.obolibrary.org/obo/UBERON_0002247;uterine horn; -http://purl.obolibrary.org/obo/UBERON_0002248;transverse pericardial sinus;Thiele's canal -http://purl.obolibrary.org/obo/UBERON_0002248;transverse pericardial sinus;transverse sinus of pericardial cavity -http://purl.obolibrary.org/obo/UBERON_0002249;median artery; -http://purl.obolibrary.org/obo/UBERON_0002250;popliteal artery; -http://purl.obolibrary.org/obo/UBERON_0002251;iliocostalis muscle;iliocostal muscle -http://purl.obolibrary.org/obo/UBERON_0002251;iliocostalis muscle;iliocostalis -http://purl.obolibrary.org/obo/UBERON_0002251;iliocostalis muscle;musculus iliocostalis -http://purl.obolibrary.org/obo/UBERON_0002252;splenius;splenius muscle -http://purl.obolibrary.org/obo/UBERON_0002254;thyroglossal duct;ductus thyroglossus -http://purl.obolibrary.org/obo/UBERON_0002255;vomeronasal organ;Jacobson's organ -http://purl.obolibrary.org/obo/UBERON_0002255;vomeronasal organ;organon vomeronasale -http://purl.obolibrary.org/obo/UBERON_0002255;vomeronasal organ;organum vomeronasale -http://purl.obolibrary.org/obo/UBERON_0002256;dorsal horn of spinal cord;columna grisea posterior medullae spinalis -http://purl.obolibrary.org/obo/UBERON_0002256;dorsal horn of spinal cord;cornu dorsale -http://purl.obolibrary.org/obo/UBERON_0002256;dorsal horn of spinal cord;cornu posterius medullae spinalis -http://purl.obolibrary.org/obo/UBERON_0002256;dorsal horn of spinal cord;dorsal gray column of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002256;dorsal horn of spinal cord;dorsal gray horn -http://purl.obolibrary.org/obo/UBERON_0002256;dorsal horn of spinal cord;dorsal gray matter of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002256;dorsal horn of spinal cord;dorsal grey column of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002256;dorsal horn of spinal cord;dorsal grey horn -http://purl.obolibrary.org/obo/UBERON_0002256;dorsal horn of spinal cord;dorsal horn -http://purl.obolibrary.org/obo/UBERON_0002256;dorsal horn of spinal cord;dorsal horn of the spinal cord -http://purl.obolibrary.org/obo/UBERON_0002256;dorsal horn of spinal cord;dorsal horn spinal cord -http://purl.obolibrary.org/obo/UBERON_0002256;dorsal horn of spinal cord;dorsal region of mature spinal cord -http://purl.obolibrary.org/obo/UBERON_0002256;dorsal horn of spinal cord;dorsal region of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002256;dorsal horn of spinal cord;dorsal spinal cord -http://purl.obolibrary.org/obo/UBERON_0002256;dorsal horn of spinal cord;posterior gray column of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002256;dorsal horn of spinal cord;posterior gray horn of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002256;dorsal horn of spinal cord;posterior grey column of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002256;dorsal horn of spinal cord;posterior horn of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002256;dorsal horn of spinal cord;spinal cord dorsal horn -http://purl.obolibrary.org/obo/UBERON_0002256;dorsal horn of spinal cord;spinal cord dorsal horns -http://purl.obolibrary.org/obo/UBERON_0002256;dorsal horn of spinal cord;spinal cord posterior horn -http://purl.obolibrary.org/obo/UBERON_0002257;ventral horn of spinal cord;anterior column -http://purl.obolibrary.org/obo/UBERON_0002257;ventral horn of spinal cord;anterior column of the spinal cord -http://purl.obolibrary.org/obo/UBERON_0002257;ventral horn of spinal cord;anterior gray column of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002257;ventral horn of spinal cord;anterior gray horn of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002257;ventral horn of spinal cord;anterior grey column of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002257;ventral horn of spinal cord;anterior horn -http://purl.obolibrary.org/obo/UBERON_0002257;ventral horn of spinal cord;anterior horn (spinal cord) -http://purl.obolibrary.org/obo/UBERON_0002257;ventral horn of spinal cord;columna grisea anterior medullae spinalis -http://purl.obolibrary.org/obo/UBERON_0002257;ventral horn of spinal cord;cornu anterius medullae spinalis -http://purl.obolibrary.org/obo/UBERON_0002257;ventral horn of spinal cord;spinal cord anterior horn -http://purl.obolibrary.org/obo/UBERON_0002257;ventral horn of spinal cord;spinal cord ventral horn -http://purl.obolibrary.org/obo/UBERON_0002257;ventral horn of spinal cord;ventral gray column of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002257;ventral horn of spinal cord;ventral gray matter of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002257;ventral horn of spinal cord;ventral grey column of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002257;ventral horn of spinal cord;ventral grey horn -http://purl.obolibrary.org/obo/UBERON_0002257;ventral horn of spinal cord;ventral horn of the spinal cord -http://purl.obolibrary.org/obo/UBERON_0002257;ventral horn of spinal cord;ventral horn spinal cord -http://purl.obolibrary.org/obo/UBERON_0002257;ventral horn of spinal cord;ventral horns spinal cord -http://purl.obolibrary.org/obo/UBERON_0002257;ventral horn of spinal cord;ventral region of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002257;ventral horn of spinal cord;ventral spinal cord -http://purl.obolibrary.org/obo/UBERON_0002258;dorsal funiculus of spinal cord;dorsal funiculus -http://purl.obolibrary.org/obo/UBERON_0002258;dorsal funiculus of spinal cord;dorsal funiculus of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002258;dorsal funiculus of spinal cord;dorsal white column of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002258;dorsal funiculus of spinal cord;funiculus dorsalis -http://purl.obolibrary.org/obo/UBERON_0002258;dorsal funiculus of spinal cord;funiculus posterior medullae spinalis -http://purl.obolibrary.org/obo/UBERON_0002258;dorsal funiculus of spinal cord;posterior funiculus -http://purl.obolibrary.org/obo/UBERON_0002258;dorsal funiculus of spinal cord;posterior funiculus of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002258;dorsal funiculus of spinal cord;posterior white column of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002259;corpora quadrigemina;colliculi -http://purl.obolibrary.org/obo/UBERON_0002259;corpora quadrigemina;corpora quadrigemina -http://purl.obolibrary.org/obo/UBERON_0002259;corpora quadrigemina;quadrigeminal body -http://purl.obolibrary.org/obo/UBERON_0002259;corpora quadrigemina;set of colliculi -http://purl.obolibrary.org/obo/UBERON_0002260;ventral root of spinal cord;anterior spinal root -http://purl.obolibrary.org/obo/UBERON_0002260;ventral root of spinal cord;ventral spinal root -http://purl.obolibrary.org/obo/UBERON_0002261;dorsal root of spinal cord;dorsal root -http://purl.obolibrary.org/obo/UBERON_0002261;dorsal root of spinal cord;dorsal root of spinal nerve -http://purl.obolibrary.org/obo/UBERON_0002261;dorsal root of spinal cord;dorsal spinal nerve root -http://purl.obolibrary.org/obo/UBERON_0002261;dorsal root of spinal cord;dorsal spinal root -http://purl.obolibrary.org/obo/UBERON_0002261;dorsal root of spinal cord;posterior root of spinal nerve -http://purl.obolibrary.org/obo/UBERON_0002261;dorsal root of spinal cord;radix dorsalis -http://purl.obolibrary.org/obo/UBERON_0002261;dorsal root of spinal cord;radix posterior (nervus spinalis) -http://purl.obolibrary.org/obo/UBERON_0002261;dorsal root of spinal cord;radix sensoria (nervus spinalis) -http://purl.obolibrary.org/obo/UBERON_0002261;dorsal root of spinal cord;sensory root of spinal nerve -http://purl.obolibrary.org/obo/UBERON_0002262;celiac ganglion;coeliac ganglion -http://purl.obolibrary.org/obo/UBERON_0002263;lentiform nucleus;lenticular nucleus -http://purl.obolibrary.org/obo/UBERON_0002263;lentiform nucleus;nucleus lenticularis -http://purl.obolibrary.org/obo/UBERON_0002263;lentiform nucleus;nucleus lentiformis -http://purl.obolibrary.org/obo/UBERON_0002264;Olfactory bulb;bulbus olfactorius -http://purl.obolibrary.org/obo/UBERON_0002264;Olfactory bulb;bulbus olfactorius (Morgagni) -http://purl.obolibrary.org/obo/UBERON_0002264;Olfactory bulb;olfactory lobe -http://purl.obolibrary.org/obo/UBERON_0002264;Olfactory bulb;olfactory lobe (Barr & Kiernan) -http://purl.obolibrary.org/obo/UBERON_0002264;olfactory bulb;bulbus olfactorius -http://purl.obolibrary.org/obo/UBERON_0002264;olfactory bulb;bulbus olfactorius (Morgagni) -http://purl.obolibrary.org/obo/UBERON_0002264;olfactory bulb;olfactory lobe -http://purl.obolibrary.org/obo/UBERON_0002264;olfactory bulb;olfactory lobe (Barr & Kiernan) -http://purl.obolibrary.org/obo/UBERON_0002265;olfactory tract; -http://purl.obolibrary.org/obo/UBERON_0002266;anterior olfactory nucleus;nucleus retrobulbaris [a8] -http://purl.obolibrary.org/obo/UBERON_0002266;anterior olfactory nucleus;retrobulbar nucleus [a8] -http://purl.obolibrary.org/obo/UBERON_0002267;laterodorsal tegmental nucleus;anterodorsal tegmental nucleus -http://purl.obolibrary.org/obo/UBERON_0002267;laterodorsal tegmental nucleus;lateroposterior tegmental nucleus -http://purl.obolibrary.org/obo/UBERON_0002267;laterodorsal tegmental nucleus;nucleus tegmentalis posterolateralis -http://purl.obolibrary.org/obo/UBERON_0002268;olfactory organ;main olfactory organ -http://purl.obolibrary.org/obo/UBERON_0002268;olfactory organ;olfactory neuroepithelium -http://purl.obolibrary.org/obo/UBERON_0002268;olfactory organ;olfactory organ -http://purl.obolibrary.org/obo/UBERON_0002268;olfactory organ;olfactory sense organ -http://purl.obolibrary.org/obo/UBERON_0002268;olfactory organ;olfactory sensory organ -http://purl.obolibrary.org/obo/UBERON_0002268;olfactory organ;organ olfactus -http://purl.obolibrary.org/obo/UBERON_0002268;olfactory organ;organum olfactorium -http://purl.obolibrary.org/obo/UBERON_0002268;olfactory organ;primary olfactory organ -http://purl.obolibrary.org/obo/UBERON_0002269;pupillary membrane; -http://purl.obolibrary.org/obo/UBERON_0002270;hyaloid artery;arteria hyaloidea -http://purl.obolibrary.org/obo/UBERON_0002271;periventricular zone of hypothalamus;hypothalamus periventricular zone -http://purl.obolibrary.org/obo/UBERON_0002271;periventricular zone of hypothalamus;periventricular zone of the hypothalamus -http://purl.obolibrary.org/obo/UBERON_0002271;periventricular zone of hypothalamus;zona periventricularis hypothalamicae -http://purl.obolibrary.org/obo/UBERON_0002272;medial zone of hypothalamus;hypothalamic medial zone behavioral control column -http://purl.obolibrary.org/obo/UBERON_0002272;medial zone of hypothalamus;hypothalamus medial zone -http://purl.obolibrary.org/obo/UBERON_0002272;medial zone of hypothalamus;medial zone of the hypothalamus -http://purl.obolibrary.org/obo/UBERON_0002272;medial zone of hypothalamus;zona medialis hypothalamicae -http://purl.obolibrary.org/obo/UBERON_0002273;lateral zone of hypothalamus;hypothalamic lateral zone -http://purl.obolibrary.org/obo/UBERON_0002273;lateral zone of hypothalamus;hypothalamus lateral zone -http://purl.obolibrary.org/obo/UBERON_0002273;lateral zone of hypothalamus;lateral zone of the hypothalamus -http://purl.obolibrary.org/obo/UBERON_0002273;lateral zone of hypothalamus;zona lateralis hypothalamicae -http://purl.obolibrary.org/obo/UBERON_0002274;perifornical nucleus; -http://purl.obolibrary.org/obo/UBERON_0002275;reticular formation;brain stem reticular formation -http://purl.obolibrary.org/obo/UBERON_0002275;reticular formation;brainstem reticular formation -http://purl.obolibrary.org/obo/UBERON_0002275;reticular formation;reticular formation (classical) -http://purl.obolibrary.org/obo/UBERON_0002275;reticular formation;reticular formation of the brainstem -http://purl.obolibrary.org/obo/UBERON_0002276;lamina of spiral limbus;limbus lamina spiralis -http://purl.obolibrary.org/obo/UBERON_0002276;lamina of spiral limbus;limbus laminae spiralis -http://purl.obolibrary.org/obo/UBERON_0002276;lamina of spiral limbus;limbus laminae spiralis osseae -http://purl.obolibrary.org/obo/UBERON_0002276;lamina of spiral limbus;spiral limbus lamina -http://purl.obolibrary.org/obo/UBERON_0002277;spiral sulcus;sulcus spiralis -http://purl.obolibrary.org/obo/UBERON_0002278;perilymphatic space; -http://purl.obolibrary.org/obo/UBERON_0002279;vestibular aqueduct; -http://purl.obolibrary.org/obo/UBERON_0002280;otolith;otoconium -http://purl.obolibrary.org/obo/UBERON_0002280;otolith;otoliths -http://purl.obolibrary.org/obo/UBERON_0002280;otolith;statoconium -http://purl.obolibrary.org/obo/UBERON_0002281;vestibular membrane of cochlear duct;Reissner membrane -http://purl.obolibrary.org/obo/UBERON_0002281;vestibular membrane of cochlear duct;Reissner's membrane -http://purl.obolibrary.org/obo/UBERON_0002281;vestibular membrane of cochlear duct;membrana vestibularis ductus cochlearis -http://purl.obolibrary.org/obo/UBERON_0002281;vestibular membrane of cochlear duct;paries vestibularis ductus cochlearis -http://purl.obolibrary.org/obo/UBERON_0002281;vestibular membrane of cochlear duct;superior wall of cochlear duct -http://purl.obolibrary.org/obo/UBERON_0002281;vestibular membrane of cochlear duct;vestibular membrane -http://purl.obolibrary.org/obo/UBERON_0002281;vestibular membrane of cochlear duct;vestibular membrane of Reissner -http://purl.obolibrary.org/obo/UBERON_0002281;vestibular membrane of cochlear duct;vestibular wall of cochlear duct -http://purl.obolibrary.org/obo/UBERON_0002282;stria vascularis of cochlear duct;psalterial cord -http://purl.obolibrary.org/obo/UBERON_0002282;stria vascularis of cochlear duct;stria vascularis -http://purl.obolibrary.org/obo/UBERON_0002282;stria vascularis of cochlear duct;stria vascularis of cochlea -http://purl.obolibrary.org/obo/UBERON_0002282;stria vascularis of cochlear duct;vascular stripe of cochlear duct -http://purl.obolibrary.org/obo/UBERON_0002283;nail matrix;keratogenous membrane -http://purl.obolibrary.org/obo/UBERON_0002283;nail matrix;matrix unguis -http://purl.obolibrary.org/obo/UBERON_0002283;nail matrix;nail germinal matrix -http://purl.obolibrary.org/obo/UBERON_0002283;nail matrix;onychostroma -http://purl.obolibrary.org/obo/UBERON_0002284;hyponychium; -http://purl.obolibrary.org/obo/UBERON_0002285;telencephalic ventricle;forebrain ventricle -http://purl.obolibrary.org/obo/UBERON_0002285;telencephalic ventricle;lateral ventricle -http://purl.obolibrary.org/obo/UBERON_0002285;telencephalic ventricle;lateral ventricle of brain -http://purl.obolibrary.org/obo/UBERON_0002285;telencephalic ventricle;lateral ventricles -http://purl.obolibrary.org/obo/UBERON_0002285;telencephalic ventricle;tectal ventricle -http://purl.obolibrary.org/obo/UBERON_0002285;telencephalic ventricle;telencephalic ventricle -http://purl.obolibrary.org/obo/UBERON_0002285;telencephalic ventricle;telencephalic ventricles -http://purl.obolibrary.org/obo/UBERON_0002285;telencephalic ventricle;telencephalic vesicle -http://purl.obolibrary.org/obo/UBERON_0002285;telencephalic ventricle;telencephalon lateral ventricle -http://purl.obolibrary.org/obo/UBERON_0002286;third ventricle;3rd ventricle -http://purl.obolibrary.org/obo/UBERON_0002286;third ventricle;ventriculus diencephali -http://purl.obolibrary.org/obo/UBERON_0002287;optic recess of third ventricle;optic recess -http://purl.obolibrary.org/obo/UBERON_0002287;optic recess of third ventricle;preoptic recess -http://purl.obolibrary.org/obo/UBERON_0002287;optic recess of third ventricle;recessus supraopticus -http://purl.obolibrary.org/obo/UBERON_0002287;optic recess of third ventricle;supraoptic recess -http://purl.obolibrary.org/obo/UBERON_0002288;choroid plexus of third ventricle;chorioid plexus of cerebral hemisphere of third ventricle -http://purl.obolibrary.org/obo/UBERON_0002288;choroid plexus of third ventricle;chorioid plexus of third ventricle -http://purl.obolibrary.org/obo/UBERON_0002288;choroid plexus of third ventricle;choroid plexus third ventricle -http://purl.obolibrary.org/obo/UBERON_0002288;choroid plexus of third ventricle;diencephalic choroid plexus -http://purl.obolibrary.org/obo/UBERON_0002288;choroid plexus of third ventricle;third ventricle chorioid plexus of cerebral hemisphere -http://purl.obolibrary.org/obo/UBERON_0002288;choroid plexus of third ventricle;third ventricle choroid plexus -http://purl.obolibrary.org/obo/UBERON_0002289;midbrain cerebral aqueduct;Sylvian aqueduct -http://purl.obolibrary.org/obo/UBERON_0002289;midbrain cerebral aqueduct;aqueduct (Sylvius) -http://purl.obolibrary.org/obo/UBERON_0002289;midbrain cerebral aqueduct;aqueduct of Sylvius -http://purl.obolibrary.org/obo/UBERON_0002289;midbrain cerebral aqueduct;aqueduct of midbrain -http://purl.obolibrary.org/obo/UBERON_0002289;midbrain cerebral aqueduct;aqueductus mesencephali -http://purl.obolibrary.org/obo/UBERON_0002289;midbrain cerebral aqueduct;cerebral aquaduct -http://purl.obolibrary.org/obo/UBERON_0002289;midbrain cerebral aqueduct;cerebral aqueduct -http://purl.obolibrary.org/obo/UBERON_0002289;midbrain cerebral aqueduct;cerebral aqueduct of Sylvius -http://purl.obolibrary.org/obo/UBERON_0002289;midbrain cerebral aqueduct;medial tectal ventricle -http://purl.obolibrary.org/obo/UBERON_0002289;midbrain cerebral aqueduct;mesencephalic duct -http://purl.obolibrary.org/obo/UBERON_0002289;midbrain cerebral aqueduct;mesencephalic ventricle -http://purl.obolibrary.org/obo/UBERON_0002289;midbrain cerebral aqueduct;midbrain cerebral aqueduct -http://purl.obolibrary.org/obo/UBERON_0002289;midbrain cerebral aqueduct;midbrain ventricle -http://purl.obolibrary.org/obo/UBERON_0002289;midbrain cerebral aqueduct;tectal ventricle -http://purl.obolibrary.org/obo/UBERON_0002290;choroid plexus of fourth ventricle;chorioid plexus of cerebral hemisphere of fourth ventricle -http://purl.obolibrary.org/obo/UBERON_0002290;choroid plexus of fourth ventricle;chorioid plexus of fourth ventricle -http://purl.obolibrary.org/obo/UBERON_0002290;choroid plexus of fourth ventricle;choroid plexus fourth ventricle -http://purl.obolibrary.org/obo/UBERON_0002290;choroid plexus of fourth ventricle;fourth ventricle chorioid plexus of cerebral hemisphere -http://purl.obolibrary.org/obo/UBERON_0002290;choroid plexus of fourth ventricle;fourth ventricle choroid plexus -http://purl.obolibrary.org/obo/UBERON_0002291;central canal of spinal cord;canalis centralis -http://purl.obolibrary.org/obo/UBERON_0002291;central canal of spinal cord;central canal -http://purl.obolibrary.org/obo/UBERON_0002291;central canal of spinal cord;central canal of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002291;central canal of spinal cord;spinal cord central canal -http://purl.obolibrary.org/obo/UBERON_0002291;central canal of spinal cord;ventricle of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002292;costovertebral joint;costovertebral synovial joint -http://purl.obolibrary.org/obo/UBERON_0002293;costochondral joint;articulatio costochondralis -http://purl.obolibrary.org/obo/UBERON_0002293;costochondral joint;chondrocostal synchondrosis -http://purl.obolibrary.org/obo/UBERON_0002293;costochondral joint;costochondral junction -http://purl.obolibrary.org/obo/UBERON_0002293;costochondral joint;costochondral synchondrosis -http://purl.obolibrary.org/obo/UBERON_0002294;biliary system;biliary apparatus -http://purl.obolibrary.org/obo/UBERON_0002295;scala media; -http://purl.obolibrary.org/obo/UBERON_0002296;dorsal mesentery; -http://purl.obolibrary.org/obo/UBERON_0002297;cerumen;ear wax -http://purl.obolibrary.org/obo/UBERON_0002297;cerumen;earwax -http://purl.obolibrary.org/obo/UBERON_0002298;brainstem;accessory medullary lamina of pallidum -http://purl.obolibrary.org/obo/UBERON_0002298;brainstem;brain stem -http://purl.obolibrary.org/obo/UBERON_0002298;brainstem;lamella pallidi incompleta -http://purl.obolibrary.org/obo/UBERON_0002298;brainstem;lamina medullaris accessoria -http://purl.obolibrary.org/obo/UBERON_0002298;brainstem;lamina medullaris incompleta pallidi -http://purl.obolibrary.org/obo/UBERON_0002298;brainstem;lamina pallidi incompleta -http://purl.obolibrary.org/obo/UBERON_0002298;brainstem;truncus encephali -http://purl.obolibrary.org/obo/UBERON_0002298;brainstem;truncus encephalicus -http://purl.obolibrary.org/obo/UBERON_0002299;alveolus of lung;alveolus pulmonis -http://purl.obolibrary.org/obo/UBERON_0002299;alveolus of lung;lung alveolus -http://purl.obolibrary.org/obo/UBERON_0002299;alveolus of lung;pulmonary alveolus -http://purl.obolibrary.org/obo/UBERON_0002299;alveolus of lung;respiratory alveolus -http://purl.obolibrary.org/obo/UBERON_0002301;layer of neocortex;cerebral cortex layer -http://purl.obolibrary.org/obo/UBERON_0002301;layer of neocortex;cortical layer -http://purl.obolibrary.org/obo/UBERON_0002301;layer of neocortex;lamina of neocortex -http://purl.obolibrary.org/obo/UBERON_0002301;layer of neocortex;layer of neocortex -http://purl.obolibrary.org/obo/UBERON_0002301;layer of neocortex;neocortex layer -http://purl.obolibrary.org/obo/UBERON_0002302;myocardium of atrium;atrial myocardium -http://purl.obolibrary.org/obo/UBERON_0002302;myocardium of atrium;atrium myocardium -http://purl.obolibrary.org/obo/UBERON_0002303;juxtaglomerular apparatus;complexus juxtaglomerularis -http://purl.obolibrary.org/obo/UBERON_0002303;juxtaglomerular apparatus;juxtaglomerular complex -http://purl.obolibrary.org/obo/UBERON_0002304;layer of dentate gyrus;dentate gyrus cell layer -http://purl.obolibrary.org/obo/UBERON_0002304;layer of dentate gyrus;dentate gyrus layer -http://purl.obolibrary.org/obo/UBERON_0002305;Cytoarchitectural fields of hippocampal formation;cytoarchitectural fields of hippocampal formation -http://purl.obolibrary.org/obo/UBERON_0002305;Cytoarchitectural fields of hippocampal formation;hippocampus layer -http://purl.obolibrary.org/obo/UBERON_0002305;Cytoarchitectural fields of hippocampal formation;hippocampus proper layer -http://purl.obolibrary.org/obo/UBERON_0002305;Cytoarchitectural fields of hippocampal formation;layer of cornu ammonis -http://purl.obolibrary.org/obo/UBERON_0002305;layer of hippocampus;cytoarchitectural fields of hippocampal formation -http://purl.obolibrary.org/obo/UBERON_0002305;layer of hippocampus;hippocampus layer -http://purl.obolibrary.org/obo/UBERON_0002305;layer of hippocampus;hippocampus proper layer -http://purl.obolibrary.org/obo/UBERON_0002305;layer of hippocampus;layer of cornu ammonis -http://purl.obolibrary.org/obo/UBERON_0002306;nasal mucus; -http://purl.obolibrary.org/obo/UBERON_0002307;choroid plexus of lateral ventricle;chorioid plexus of cerebral hemisphere of lateral ventricle -http://purl.obolibrary.org/obo/UBERON_0002307;choroid plexus of lateral ventricle;chorioid plexus of lateral ventricle -http://purl.obolibrary.org/obo/UBERON_0002307;choroid plexus of lateral ventricle;choroid plexus telencephalic ventricle -http://purl.obolibrary.org/obo/UBERON_0002307;choroid plexus of lateral ventricle;lateral ventricle chorioid plexus of cerebral hemisphere -http://purl.obolibrary.org/obo/UBERON_0002307;choroid plexus of lateral ventricle;lateral ventricle choroid plexus -http://purl.obolibrary.org/obo/UBERON_0002308;nucleus of brain;brain nuclei -http://purl.obolibrary.org/obo/UBERON_0002308;nucleus of brain;brain nucleus -http://purl.obolibrary.org/obo/UBERON_0002309;medial longitudinal fasciculus;MLF -http://purl.obolibrary.org/obo/UBERON_0002309;medial longitudinal fasciculus;fasciculus longitudinalis medialis -http://purl.obolibrary.org/obo/UBERON_0002309;medial longitudinal fasciculus;medial longitudinal fascicle -http://purl.obolibrary.org/obo/UBERON_0002310;hippocampus fimbria;fimbria hippocampus -http://purl.obolibrary.org/obo/UBERON_0002310;hippocampus fimbria;fimbria of hippocampus -http://purl.obolibrary.org/obo/UBERON_0002310;hippocampus fimbria;fimbria of the fornix -http://purl.obolibrary.org/obo/UBERON_0002310;hippocampus fimbria;fimbria-fornix -http://purl.obolibrary.org/obo/UBERON_0002310;hippocampus fimbria;hippocampal fimbria -http://purl.obolibrary.org/obo/UBERON_0002310;hippocampus fimbria;neuraxis fimbria -http://purl.obolibrary.org/obo/UBERON_0002313;hippocampus pyramidal layer;gyrus occipitalis inferior -http://purl.obolibrary.org/obo/UBERON_0002313;hippocampus pyramidal layer;gyrus occipitalis tertius -http://purl.obolibrary.org/obo/UBERON_0002313;hippocampus pyramidal layer;hippocampal pyramidal cell layer -http://purl.obolibrary.org/obo/UBERON_0002313;hippocampus pyramidal layer;hippocampal pyramidal layer -http://purl.obolibrary.org/obo/UBERON_0002313;hippocampus pyramidal layer;hippocampus pyramidal cell layer -http://purl.obolibrary.org/obo/UBERON_0002313;hippocampus pyramidal layer;hippocampus stratum pyramidale -http://purl.obolibrary.org/obo/UBERON_0002313;hippocampus pyramidal layer;pyramidal cell layer of the hippocampus -http://purl.obolibrary.org/obo/UBERON_0002313;hippocampus pyramidal layer;pyramidal layer of hippocampus -http://purl.obolibrary.org/obo/UBERON_0002313;hippocampus pyramidal layer;stratum pyramidale -http://purl.obolibrary.org/obo/UBERON_0002313;hippocampus pyramidal layer;stratum pyramidale hippocampi -http://purl.obolibrary.org/obo/UBERON_0002314;midbrain tectum;mesencephalic tectum -http://purl.obolibrary.org/obo/UBERON_0002314;midbrain tectum;neuraxis tectum -http://purl.obolibrary.org/obo/UBERON_0002314;midbrain tectum;t. mesencephali -http://purl.obolibrary.org/obo/UBERON_0002314;midbrain tectum;tectum -http://purl.obolibrary.org/obo/UBERON_0002314;midbrain tectum;tectum mesencephali -http://purl.obolibrary.org/obo/UBERON_0002314;midbrain tectum;tectum mesencephalicum -http://purl.obolibrary.org/obo/UBERON_0002314;midbrain tectum;tectum of midbrain -http://purl.obolibrary.org/obo/UBERON_0002315;gray matter of spinal cord;gray matter of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002315;gray matter of spinal cord;gray substance of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002315;gray matter of spinal cord;grey matter of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002315;gray matter of spinal cord;grey substance of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002315;gray matter of spinal cord;spinal cord gray matter -http://purl.obolibrary.org/obo/UBERON_0002315;gray matter of spinal cord;spinal cord grey matter -http://purl.obolibrary.org/obo/UBERON_0002315;gray matter of spinal cord;spinal cord grey substance -http://purl.obolibrary.org/obo/UBERON_0002315;gray matter of spinal cord;substantia grisea medullae spinalis -http://purl.obolibrary.org/obo/UBERON_0002316;white matter;CNS tract/commissure -http://purl.obolibrary.org/obo/UBERON_0002316;white matter;CNS tracts and commissures -http://purl.obolibrary.org/obo/UBERON_0002316;white matter;CNS white matter -http://purl.obolibrary.org/obo/UBERON_0002316;white matter;neuronal white matter -http://purl.obolibrary.org/obo/UBERON_0002316;white matter;substantia alba -http://purl.obolibrary.org/obo/UBERON_0002316;white matter;white mater -http://purl.obolibrary.org/obo/UBERON_0002316;white matter;white matter of neuraxis -http://purl.obolibrary.org/obo/UBERON_0002316;white matter;white substance -http://purl.obolibrary.org/obo/UBERON_0002317;white matter of cerebellum;cerebellar white matter -http://purl.obolibrary.org/obo/UBERON_0002317;white matter of cerebellum;cerebellum white matter -http://purl.obolibrary.org/obo/UBERON_0002318;white matter of spinal cord;spinal cord white matter -http://purl.obolibrary.org/obo/UBERON_0002318;white matter of spinal cord;spinal cord white matter of neuraxis -http://purl.obolibrary.org/obo/UBERON_0002318;white matter of spinal cord;spinal cord white substance -http://purl.obolibrary.org/obo/UBERON_0002318;white matter of spinal cord;substantia alba medullae spinalis -http://purl.obolibrary.org/obo/UBERON_0002318;white matter of spinal cord;white matter of neuraxis of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002318;white matter of spinal cord;white substance of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002319;mesangium; -http://purl.obolibrary.org/obo/UBERON_0002320;glomerular mesangium; -http://purl.obolibrary.org/obo/UBERON_0002321;extraglomerular mesangium; -http://purl.obolibrary.org/obo/UBERON_0002322;periventricular nucleus;ventral zone of periventricular hypothalamus -http://purl.obolibrary.org/obo/UBERON_0002323;coelemic cavity lumen;coelomic cavity -http://purl.obolibrary.org/obo/UBERON_0002323;coelemic cavity lumen;coelomic cavity lumen -http://purl.obolibrary.org/obo/UBERON_0002323;coelemic cavity lumen;main body cavity -http://purl.obolibrary.org/obo/UBERON_0002323;coelemic cavity lumen;space of body compartment -http://purl.obolibrary.org/obo/UBERON_0002324;muscle of back;back muscle -http://purl.obolibrary.org/obo/UBERON_0002324;muscle of back;back muscle organ -http://purl.obolibrary.org/obo/UBERON_0002324;muscle of back;muscle organ of back -http://purl.obolibrary.org/obo/UBERON_0002325;epithelium of urethra;epithelial tissue of urethra -http://purl.obolibrary.org/obo/UBERON_0002325;epithelium of urethra;urethra epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0002325;epithelium of urethra;urethra epithelium -http://purl.obolibrary.org/obo/UBERON_0002326;lamina propria of urethra;lamina propria mucosa of urethra -http://purl.obolibrary.org/obo/UBERON_0002326;lamina propria of urethra;lamina propria mucosae of urethra -http://purl.obolibrary.org/obo/UBERON_0002326;lamina propria of urethra;urethra lamina propria -http://purl.obolibrary.org/obo/UBERON_0002326;lamina propria of urethra;urethra lamina propria mucosa -http://purl.obolibrary.org/obo/UBERON_0002326;lamina propria of urethra;urethra lamina propria mucosae -http://purl.obolibrary.org/obo/UBERON_0002327;trunk of intercostal nerve;intercostal nerve trunk -http://purl.obolibrary.org/obo/UBERON_0002327;trunk of intercostal nerve;intercostal neural trunk -http://purl.obolibrary.org/obo/UBERON_0002328;notochord;embryonic notocord -http://purl.obolibrary.org/obo/UBERON_0002328;notochord;notocord -http://purl.obolibrary.org/obo/UBERON_0002329;somite; -http://purl.obolibrary.org/obo/UBERON_0002330;exocrine system;exocrine glandular system -http://purl.obolibrary.org/obo/UBERON_0002331;umbilical cord;chorda umbilicalis -http://purl.obolibrary.org/obo/UBERON_0002331;umbilical cord;funiculus umbilicalis -http://purl.obolibrary.org/obo/UBERON_0002333;pulmonary trunk;pulmonary artery (trunk) -http://purl.obolibrary.org/obo/UBERON_0002333;pulmonary trunk;trunk of pulmonary arterial tree -http://purl.obolibrary.org/obo/UBERON_0002334;submandibular duct; -http://purl.obolibrary.org/obo/UBERON_0002335;macula densa; -http://purl.obolibrary.org/obo/UBERON_0002336;corpus callosum; -http://purl.obolibrary.org/obo/UBERON_0002337;endometrial stroma;endometrium stroma -http://purl.obolibrary.org/obo/UBERON_0002337;endometrial stroma;stroma of endometrium -http://purl.obolibrary.org/obo/UBERON_0002338;lamina propria of bronchus;bronchi lamina propria -http://purl.obolibrary.org/obo/UBERON_0002338;lamina propria of bronchus;bronchi lamina propria mucosa -http://purl.obolibrary.org/obo/UBERON_0002338;lamina propria of bronchus;bronchi lamina propria mucosae -http://purl.obolibrary.org/obo/UBERON_0002338;lamina propria of bronchus;bronchial trunk lamina propria -http://purl.obolibrary.org/obo/UBERON_0002338;lamina propria of bronchus;bronchial trunk lamina propria mucosa -http://purl.obolibrary.org/obo/UBERON_0002338;lamina propria of bronchus;bronchial trunk lamina propria mucosae -http://purl.obolibrary.org/obo/UBERON_0002338;lamina propria of bronchus;bronchus lamina propria -http://purl.obolibrary.org/obo/UBERON_0002338;lamina propria of bronchus;bronchus lamina propria mucosa -http://purl.obolibrary.org/obo/UBERON_0002338;lamina propria of bronchus;bronchus lamina propria mucosae -http://purl.obolibrary.org/obo/UBERON_0002338;lamina propria of bronchus;lamina propria mucosa of bronchi -http://purl.obolibrary.org/obo/UBERON_0002338;lamina propria of bronchus;lamina propria mucosa of bronchial trunk -http://purl.obolibrary.org/obo/UBERON_0002338;lamina propria of bronchus;lamina propria mucosa of bronchus -http://purl.obolibrary.org/obo/UBERON_0002338;lamina propria of bronchus;lamina propria mucosae of bronchi -http://purl.obolibrary.org/obo/UBERON_0002338;lamina propria of bronchus;lamina propria mucosae of bronchial trunk -http://purl.obolibrary.org/obo/UBERON_0002338;lamina propria of bronchus;lamina propria mucosae of bronchus -http://purl.obolibrary.org/obo/UBERON_0002338;lamina propria of bronchus;lamina propria of bronchi -http://purl.obolibrary.org/obo/UBERON_0002338;lamina propria of bronchus;lamina propria of bronchial trunk -http://purl.obolibrary.org/obo/UBERON_0002339;epithelium of lobar bronchus;epithelial tissue of lobar bronchus -http://purl.obolibrary.org/obo/UBERON_0002339;epithelium of lobar bronchus;epithelial tissue of secondary bronchus -http://purl.obolibrary.org/obo/UBERON_0002339;epithelium of lobar bronchus;epithelium of secondary bronchus -http://purl.obolibrary.org/obo/UBERON_0002339;epithelium of lobar bronchus;lobar bronchial epithelium -http://purl.obolibrary.org/obo/UBERON_0002339;epithelium of lobar bronchus;lobar bronchus epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0002339;epithelium of lobar bronchus;lobar bronchus epithelium -http://purl.obolibrary.org/obo/UBERON_0002339;epithelium of lobar bronchus;secondary bronchus epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0002339;epithelium of lobar bronchus;secondary bronchus epithelium -http://purl.obolibrary.org/obo/UBERON_0002340;epithelium of main bronchus;bronchus principalis epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0002340;epithelium of main bronchus;bronchus principalis epithelium -http://purl.obolibrary.org/obo/UBERON_0002340;epithelium of main bronchus;epithelial tissue of bronchus principalis -http://purl.obolibrary.org/obo/UBERON_0002340;epithelium of main bronchus;epithelial tissue of main bronchus -http://purl.obolibrary.org/obo/UBERON_0002340;epithelium of main bronchus;epithelial tissue of primary bronchus -http://purl.obolibrary.org/obo/UBERON_0002340;epithelium of main bronchus;epithelial tissue of principal bronchus -http://purl.obolibrary.org/obo/UBERON_0002340;epithelium of main bronchus;epithelium of bronchus principalis -http://purl.obolibrary.org/obo/UBERON_0002340;epithelium of main bronchus;epithelium of primary bronchus -http://purl.obolibrary.org/obo/UBERON_0002340;epithelium of main bronchus;epithelium of principal bronchus -http://purl.obolibrary.org/obo/UBERON_0002340;epithelium of main bronchus;main bronchial epithelium -http://purl.obolibrary.org/obo/UBERON_0002340;epithelium of main bronchus;main bronchus epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0002340;epithelium of main bronchus;main bronchus epithelium -http://purl.obolibrary.org/obo/UBERON_0002340;epithelium of main bronchus;primary bronchus epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0002340;epithelium of main bronchus;primary bronchus epithelium -http://purl.obolibrary.org/obo/UBERON_0002340;epithelium of main bronchus;principal bronchus epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0002340;epithelium of main bronchus;principal bronchus epithelium -http://purl.obolibrary.org/obo/UBERON_0002341;epithelium of segmental bronchus;epithelial tissue of segmental bronchus -http://purl.obolibrary.org/obo/UBERON_0002341;epithelium of segmental bronchus;epithelial tissue of tertiary bronchus -http://purl.obolibrary.org/obo/UBERON_0002341;epithelium of segmental bronchus;epithelium of tertiary bronchus -http://purl.obolibrary.org/obo/UBERON_0002341;epithelium of segmental bronchus;segmental bronchial epithelium -http://purl.obolibrary.org/obo/UBERON_0002341;epithelium of segmental bronchus;segmental bronchus epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0002341;epithelium of segmental bronchus;segmental bronchus epithelium -http://purl.obolibrary.org/obo/UBERON_0002341;epithelium of segmental bronchus;tertiary bronchus epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0002341;epithelium of segmental bronchus;tertiary bronchus epithelium -http://purl.obolibrary.org/obo/UBERON_0002342;neural crest;NC -http://purl.obolibrary.org/obo/UBERON_0002343;abdomen musculature;abdominal musculature -http://purl.obolibrary.org/obo/UBERON_0002343;abdomen musculature;muscle group of abdomen -http://purl.obolibrary.org/obo/UBERON_0002343;abdomen musculature;muscles of abdomen -http://purl.obolibrary.org/obo/UBERON_0002343;abdomen musculature;musculature of abdomen -http://purl.obolibrary.org/obo/UBERON_0002343;abdomen musculature;musculature of abdominal wall -http://purl.obolibrary.org/obo/UBERON_0002343;abdomen musculature;set of muscles of abdomen -http://purl.obolibrary.org/obo/UBERON_0002345;descending thoracic aorta; -http://purl.obolibrary.org/obo/UBERON_0002346;neurectoderm;neural ectoderm -http://purl.obolibrary.org/obo/UBERON_0002346;neurectoderm;neuroectoderm -http://purl.obolibrary.org/obo/UBERON_0002347;thoracic vertebra;dorsal vertebra -http://purl.obolibrary.org/obo/UBERON_0002347;thoracic vertebra;thorax vertebra -http://purl.obolibrary.org/obo/UBERON_0002347;thoracic vertebra;vertebra of thorax -http://purl.obolibrary.org/obo/UBERON_0002347;thoracic vertebra;vertebra thoracica -http://purl.obolibrary.org/obo/UBERON_0002348;epicardium;heart epicardium -http://purl.obolibrary.org/obo/UBERON_0002348;epicardium;pericardium visceral mesothelium -http://purl.obolibrary.org/obo/UBERON_0002348;epicardium;visceral serous pericardium of heart -http://purl.obolibrary.org/obo/UBERON_0002348;epicardium;visceral serous pericardium proper -http://purl.obolibrary.org/obo/UBERON_0002349;myocardium;heart myocardium -http://purl.obolibrary.org/obo/UBERON_0002349;myocardium;muscle of heart -http://purl.obolibrary.org/obo/UBERON_0002350;conducting system of heart;cardiac conducting system -http://purl.obolibrary.org/obo/UBERON_0002350;conducting system of heart;cardiac conduction system -http://purl.obolibrary.org/obo/UBERON_0002350;conducting system of heart;cardiac impulse conducting system -http://purl.obolibrary.org/obo/UBERON_0002350;conducting system of heart;cardionector -http://purl.obolibrary.org/obo/UBERON_0002350;conducting system of heart;complexus stimulans cordis -http://purl.obolibrary.org/obo/UBERON_0002350;conducting system of heart;heart conduction system -http://purl.obolibrary.org/obo/UBERON_0002350;conducting system of heart;impulse conducting system -http://purl.obolibrary.org/obo/UBERON_0002350;conducting system of heart;systema conducente cordis -http://purl.obolibrary.org/obo/UBERON_0002351;sinoatrial node;Koch's node -http://purl.obolibrary.org/obo/UBERON_0002351;sinoatrial node;SA nodal muscle tissue -http://purl.obolibrary.org/obo/UBERON_0002351;sinoatrial node;SA node -http://purl.obolibrary.org/obo/UBERON_0002351;sinoatrial node;cardiac pacemaker -http://purl.obolibrary.org/obo/UBERON_0002351;sinoatrial node;node of Keith-Flack -http://purl.obolibrary.org/obo/UBERON_0002351;sinoatrial node;nodus sinuatrialis -http://purl.obolibrary.org/obo/UBERON_0002351;sinoatrial node;sinoatrial node -http://purl.obolibrary.org/obo/UBERON_0002351;sinoatrial node;sinu-atrial node -http://purl.obolibrary.org/obo/UBERON_0002351;sinoatrial node;sinuatrial nodal muscle tissue -http://purl.obolibrary.org/obo/UBERON_0002351;sinoatrial node;sinuatrial node -http://purl.obolibrary.org/obo/UBERON_0002351;sinoatrial node;sinus node -http://purl.obolibrary.org/obo/UBERON_0002351;sinoatrial node;sinus node of Keith and Flack -http://purl.obolibrary.org/obo/UBERON_0002352;atrioventricular node;AV nodal muscle tissue -http://purl.obolibrary.org/obo/UBERON_0002352;atrioventricular node;AV node -http://purl.obolibrary.org/obo/UBERON_0002352;atrioventricular node;Aschoff-Tawara node -http://purl.obolibrary.org/obo/UBERON_0002352;atrioventricular node;atrioventricular nodal muscle tissue -http://purl.obolibrary.org/obo/UBERON_0002352;atrioventricular node;node of Tawara -http://purl.obolibrary.org/obo/UBERON_0002352;atrioventricular node;nodus atrioventricularis -http://purl.obolibrary.org/obo/UBERON_0002353;bundle of His;AV bundle -http://purl.obolibrary.org/obo/UBERON_0002353;bundle of His;AVB -http://purl.obolibrary.org/obo/UBERON_0002353;bundle of His;His bundle -http://purl.obolibrary.org/obo/UBERON_0002353;bundle of His;atrio-ventricular bundle -http://purl.obolibrary.org/obo/UBERON_0002353;bundle of His;atrioventricular bundle -http://purl.obolibrary.org/obo/UBERON_0002353;bundle of His;atrioventricular bundle muscle tissue -http://purl.obolibrary.org/obo/UBERON_0002353;bundle of His;atrioventricular fasciculus -http://purl.obolibrary.org/obo/UBERON_0002353;bundle of His;bundle of His -http://purl.obolibrary.org/obo/UBERON_0002353;bundle of His;fasciculus atrioventricularis -http://purl.obolibrary.org/obo/UBERON_0002354;cardiac Purkinje fiber;Purkinje fiber -http://purl.obolibrary.org/obo/UBERON_0002354;cardiac Purkinje fiber;cardiac Purkinje fiber -http://purl.obolibrary.org/obo/UBERON_0002354;cardiac Purkinje fiber;myofibra conducens cardiacus -http://purl.obolibrary.org/obo/UBERON_0002354;cardiac Purkinje fiber;subendocardial branch -http://purl.obolibrary.org/obo/UBERON_0002355;pelvic region of trunk;lesser pelvis -http://purl.obolibrary.org/obo/UBERON_0002355;pelvic region of trunk;pelvic region -http://purl.obolibrary.org/obo/UBERON_0002355;pelvic region of trunk;pelvis -http://purl.obolibrary.org/obo/UBERON_0002355;pelvic region of trunk;pelvis region -http://purl.obolibrary.org/obo/UBERON_0002355;pelvic region of trunk;true pelvis -http://purl.obolibrary.org/obo/UBERON_0002356;perineum;perineal region -http://purl.obolibrary.org/obo/UBERON_0002356;perineum;regio perinealis -http://purl.obolibrary.org/obo/UBERON_0002357;serous pericardium;pericardium serosum -http://purl.obolibrary.org/obo/UBERON_0002357;serous pericardium;serous portion of pericardium -http://purl.obolibrary.org/obo/UBERON_0002358;peritoneum; -http://purl.obolibrary.org/obo/UBERON_0002359;fibrous pericardium;fibrous portion of pericardium -http://purl.obolibrary.org/obo/UBERON_0002360;meninx;layer of meninges -http://purl.obolibrary.org/obo/UBERON_0002360;meninx;meningeal layer -http://purl.obolibrary.org/obo/UBERON_0002361;pia mater;pia mater of neuraxis -http://purl.obolibrary.org/obo/UBERON_0002361;pia mater;pial membrane -http://purl.obolibrary.org/obo/UBERON_0002362;arachnoid mater;arachnoid -http://purl.obolibrary.org/obo/UBERON_0002362;arachnoid mater;arachnoid mater of neuraxis -http://purl.obolibrary.org/obo/UBERON_0002362;arachnoid mater;arachnoid membrane -http://purl.obolibrary.org/obo/UBERON_0002363;dura mater;dura mater of neuraxis -http://purl.obolibrary.org/obo/UBERON_0002363;dura mater;pachymeninges -http://purl.obolibrary.org/obo/UBERON_0002364;tympanic membrane;Rivinus' membrane -http://purl.obolibrary.org/obo/UBERON_0002364;tympanic membrane;ear drum -http://purl.obolibrary.org/obo/UBERON_0002364;tympanic membrane;eardrum -http://purl.obolibrary.org/obo/UBERON_0002364;tympanic membrane;lateral wall of tympanic cavity -http://purl.obolibrary.org/obo/UBERON_0002364;tympanic membrane;membranous wall of tympanic cavity -http://purl.obolibrary.org/obo/UBERON_0002364;tympanic membrane;myrinx -http://purl.obolibrary.org/obo/UBERON_0002364;tympanic membrane;paries membranaceus cavi tympani -http://purl.obolibrary.org/obo/UBERON_0002365;exocrine gland;ducted gland -http://purl.obolibrary.org/obo/UBERON_0002365;exocrine gland;glandula exocrina -http://purl.obolibrary.org/obo/UBERON_0002366;bulbo-urethral gland;Cowper's gland -http://purl.obolibrary.org/obo/UBERON_0002366;bulbo-urethral gland;Cowper's gland of male -http://purl.obolibrary.org/obo/UBERON_0002366;bulbo-urethral gland;Cowper's glands -http://purl.obolibrary.org/obo/UBERON_0002366;bulbo-urethral gland;Mery's gland -http://purl.obolibrary.org/obo/UBERON_0002366;bulbo-urethral gland;Méry gland -http://purl.obolibrary.org/obo/UBERON_0002366;bulbo-urethral gland;bulbourethral gland -http://purl.obolibrary.org/obo/UBERON_0002366;bulbo-urethral gland;glandula bulbourethralis -http://purl.obolibrary.org/obo/UBERON_0002367;prostate gland;male prostate -http://purl.obolibrary.org/obo/UBERON_0002367;prostate gland;prostate -http://purl.obolibrary.org/obo/UBERON_0002368;endocrine gland;ductless gland -http://purl.obolibrary.org/obo/UBERON_0002368;endocrine gland;glandula endocrina -http://purl.obolibrary.org/obo/UBERON_0002368;endocrine gland;glandulae endocrinae -http://purl.obolibrary.org/obo/UBERON_0002369;adrenal gland;adrenal -http://purl.obolibrary.org/obo/UBERON_0002369;adrenal gland;adrenal capsule -http://purl.obolibrary.org/obo/UBERON_0002369;adrenal gland;adrenal medulla cell -http://purl.obolibrary.org/obo/UBERON_0002369;adrenal gland;atrabiliary capsule -http://purl.obolibrary.org/obo/UBERON_0002369;adrenal gland;epinephric gland -http://purl.obolibrary.org/obo/UBERON_0002369;adrenal gland;epinephros -http://purl.obolibrary.org/obo/UBERON_0002369;adrenal gland;glandula adrenalis -http://purl.obolibrary.org/obo/UBERON_0002369;adrenal gland;glandula suprarenalis -http://purl.obolibrary.org/obo/UBERON_0002369;adrenal gland;interrenal gland -http://purl.obolibrary.org/obo/UBERON_0002369;adrenal gland;suprarenal capsule -http://purl.obolibrary.org/obo/UBERON_0002369;adrenal gland;suprarenal gland -http://purl.obolibrary.org/obo/UBERON_0002370;thymus;thymus gland -http://purl.obolibrary.org/obo/UBERON_0002370;thymus;thymus organ -http://purl.obolibrary.org/obo/UBERON_0002371;bone marrow;medulla ossea -http://purl.obolibrary.org/obo/UBERON_0002371;bone marrow;medulla ossium -http://purl.obolibrary.org/obo/UBERON_0002372;tonsil; -http://purl.obolibrary.org/obo/UBERON_0002373;palatine tonsil;faucial tonsil -http://purl.obolibrary.org/obo/UBERON_0002374;metacarpal bone;metacarpal -http://purl.obolibrary.org/obo/UBERON_0002375;cricoid cartilage;cartilago cricoidea -http://purl.obolibrary.org/obo/UBERON_0002376;cranial muscle;cephalic muscle -http://purl.obolibrary.org/obo/UBERON_0002376;cranial muscle;cephalic musculature -http://purl.obolibrary.org/obo/UBERON_0002376;cranial muscle;head muscle -http://purl.obolibrary.org/obo/UBERON_0002376;cranial muscle;head muscle organ -http://purl.obolibrary.org/obo/UBERON_0002376;cranial muscle;muscle of head -http://purl.obolibrary.org/obo/UBERON_0002376;cranial muscle;muscle organ of adult head -http://purl.obolibrary.org/obo/UBERON_0002376;cranial muscle;muscle organ of head -http://purl.obolibrary.org/obo/UBERON_0002376;cranial muscle;musculus caput -http://purl.obolibrary.org/obo/UBERON_0002377;muscle of neck;muscle organ of neck -http://purl.obolibrary.org/obo/UBERON_0002377;muscle of neck;muscle organ of neck (volume) -http://purl.obolibrary.org/obo/UBERON_0002377;muscle of neck;neck (volume) muscle organ -http://purl.obolibrary.org/obo/UBERON_0002377;muscle of neck;neck muscle -http://purl.obolibrary.org/obo/UBERON_0002377;muscle of neck;neck muscle organ -http://purl.obolibrary.org/obo/UBERON_0002378;muscle of abdomen;abdomen muscle -http://purl.obolibrary.org/obo/UBERON_0002378;muscle of abdomen;abdomen muscle organ -http://purl.obolibrary.org/obo/UBERON_0002378;muscle of abdomen;abdominal muscle -http://purl.obolibrary.org/obo/UBERON_0002378;muscle of abdomen;abdominal wall muscle -http://purl.obolibrary.org/obo/UBERON_0002378;muscle of abdomen;muscle organ of abdomen -http://purl.obolibrary.org/obo/UBERON_0002379;perineal muscle;muscle of perineum -http://purl.obolibrary.org/obo/UBERON_0002379;perineal muscle;muscle organ of perineal region -http://purl.obolibrary.org/obo/UBERON_0002379;perineal muscle;muscle organ of perineum -http://purl.obolibrary.org/obo/UBERON_0002379;perineal muscle;perineal region muscle organ -http://purl.obolibrary.org/obo/UBERON_0002379;perineal muscle;perineum muscle organ -http://purl.obolibrary.org/obo/UBERON_0002380;trapezius muscle;trapezius -http://purl.obolibrary.org/obo/UBERON_0002381;pectoralis major;pectoralis major muscle -http://purl.obolibrary.org/obo/UBERON_0002381;pectoralis major;pectoralis major muscle structure -http://purl.obolibrary.org/obo/UBERON_0002382;rectus abdominis muscle;m. rectus abdominis -http://purl.obolibrary.org/obo/UBERON_0002382;rectus abdominis muscle;musculus rectus abdominis -http://purl.obolibrary.org/obo/UBERON_0002382;rectus abdominis muscle;rectus abdominis -http://purl.obolibrary.org/obo/UBERON_0002383;supraspinatus muscle;musculus supraspinatus -http://purl.obolibrary.org/obo/UBERON_0002383;supraspinatus muscle;supraspinatus -http://purl.obolibrary.org/obo/UBERON_0002384;connective tissue;Bindegewebe -http://purl.obolibrary.org/obo/UBERON_0002384;connective tissue;portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0002384;connective tissue;textus connectivus -http://purl.obolibrary.org/obo/UBERON_0002385;muscle tissue;muscular tissue -http://purl.obolibrary.org/obo/UBERON_0002385;muscle tissue;portion of muscle tissue -http://purl.obolibrary.org/obo/UBERON_0002385;muscle tissue;textus muscularis -http://purl.obolibrary.org/obo/UBERON_0002386;forelimb zeugopod;antebrachial region -http://purl.obolibrary.org/obo/UBERON_0002386;forelimb zeugopod;antebrachium -http://purl.obolibrary.org/obo/UBERON_0002386;forelimb zeugopod;antibrachium -http://purl.obolibrary.org/obo/UBERON_0002386;forelimb zeugopod;arm middle limb segment -http://purl.obolibrary.org/obo/UBERON_0002386;forelimb zeugopod;arm zeugopod -http://purl.obolibrary.org/obo/UBERON_0002386;forelimb zeugopod;brachial region middle limb segment -http://purl.obolibrary.org/obo/UBERON_0002386;forelimb zeugopod;brachial region zeugopod -http://purl.obolibrary.org/obo/UBERON_0002386;forelimb zeugopod;forearm -http://purl.obolibrary.org/obo/UBERON_0002386;forelimb zeugopod;forelimb epipodium -http://purl.obolibrary.org/obo/UBERON_0002386;forelimb zeugopod;forelimb zeugopodium -http://purl.obolibrary.org/obo/UBERON_0002386;forelimb zeugopod;forelimb zygopod -http://purl.obolibrary.org/obo/UBERON_0002386;forelimb zeugopod;intermediate segment of free upper limb -http://purl.obolibrary.org/obo/UBERON_0002386;forelimb zeugopod;lower arm -http://purl.obolibrary.org/obo/UBERON_0002386;forelimb zeugopod;lower segment of arm -http://purl.obolibrary.org/obo/UBERON_0002386;forelimb zeugopod;middle limb segment of arm -http://purl.obolibrary.org/obo/UBERON_0002386;forelimb zeugopod;middle limb segment of brachial region -http://purl.obolibrary.org/obo/UBERON_0002386;forelimb zeugopod;middle limb segment of forelimb -http://purl.obolibrary.org/obo/UBERON_0002386;forelimb zeugopod;middle limb segment of proximal segment of free upper limb -http://purl.obolibrary.org/obo/UBERON_0002386;forelimb zeugopod;regio antebrachialis -http://purl.obolibrary.org/obo/UBERON_0002386;forelimb zeugopod;zeugopod of arm -http://purl.obolibrary.org/obo/UBERON_0002386;forelimb zeugopod;zeugopod of brachial region -http://purl.obolibrary.org/obo/UBERON_0002386;forelimb zeugopod;zeugopod of forelimb -http://purl.obolibrary.org/obo/UBERON_0002386;forelimb zeugopod;zeugopod of proximal segment of free upper limb -http://purl.obolibrary.org/obo/UBERON_0002387;pes;foot -http://purl.obolibrary.org/obo/UBERON_0002387;pes;hindlimb autopod -http://purl.obolibrary.org/obo/UBERON_0002387;pes;hindlimb autopodium -http://purl.obolibrary.org/obo/UBERON_0002387;pes;hindlimb distal free limb segment -http://purl.obolibrary.org/obo/UBERON_0002387;pes;pes -http://purl.obolibrary.org/obo/UBERON_0002387;pes;terminal segment of free lower limb -http://purl.obolibrary.org/obo/UBERON_0002389;manual digit;digit of hand -http://purl.obolibrary.org/obo/UBERON_0002389;manual digit;digit of manus -http://purl.obolibrary.org/obo/UBERON_0002389;manual digit;digitus manus -http://purl.obolibrary.org/obo/UBERON_0002389;manual digit;finger -http://purl.obolibrary.org/obo/UBERON_0002389;manual digit;fore digit -http://purl.obolibrary.org/obo/UBERON_0002389;manual digit;forelimb digit -http://purl.obolibrary.org/obo/UBERON_0002389;manual digit;hand digit -http://purl.obolibrary.org/obo/UBERON_0002389;manual digit;manual digit (phalangeal portion) plus soft tissue -http://purl.obolibrary.org/obo/UBERON_0002390;hematopoietic system;Blutbildungssystem -http://purl.obolibrary.org/obo/UBERON_0002390;hematopoietic system;haematological system -http://purl.obolibrary.org/obo/UBERON_0002390;hematopoietic system;haematopoietic system -http://purl.obolibrary.org/obo/UBERON_0002390;hematopoietic system;haemopoietic system -http://purl.obolibrary.org/obo/UBERON_0002390;hematopoietic system;hematological system -http://purl.obolibrary.org/obo/UBERON_0002390;hematopoietic system;hematolymphoid system -http://purl.obolibrary.org/obo/UBERON_0002390;hematopoietic system;hemopoietic system -http://purl.obolibrary.org/obo/UBERON_0002390;hematopoietic system;organa haemopoietica -http://purl.obolibrary.org/obo/UBERON_0002391;lymph; -http://purl.obolibrary.org/obo/UBERON_0002392;nasolacrimal duct; -http://purl.obolibrary.org/obo/UBERON_0002393;pharyngotympanic tube;auditory tube -http://purl.obolibrary.org/obo/UBERON_0002393;pharyngotympanic tube;internal auditory tube -http://purl.obolibrary.org/obo/UBERON_0002393;pharyngotympanic tube;pharyngo-tympanic tube -http://purl.obolibrary.org/obo/UBERON_0002393;pharyngotympanic tube;tuba auditiva -http://purl.obolibrary.org/obo/UBERON_0002393;pharyngotympanic tube;tuba auditoria -http://purl.obolibrary.org/obo/UBERON_0002394;bile duct; -http://purl.obolibrary.org/obo/UBERON_0002395;talus; -http://purl.obolibrary.org/obo/UBERON_0002396;vomer;vomer bone -http://purl.obolibrary.org/obo/UBERON_0002397;maxilla; -http://purl.obolibrary.org/obo/UBERON_0002398;manus;forelimb autopod -http://purl.obolibrary.org/obo/UBERON_0002398;manus;forelimb autopodium -http://purl.obolibrary.org/obo/UBERON_0002398;manus;hand -http://purl.obolibrary.org/obo/UBERON_0002398;manus;hand region -http://purl.obolibrary.org/obo/UBERON_0002398;manus;terminal segment of free upper limb -http://purl.obolibrary.org/obo/UBERON_0002399;lesser omentum; -http://purl.obolibrary.org/obo/UBERON_0002400;parietal pleura; -http://purl.obolibrary.org/obo/UBERON_0002401;visceral pleura;pleura pulmonalis -http://purl.obolibrary.org/obo/UBERON_0002401;visceral pleura;pleura visceralis -http://purl.obolibrary.org/obo/UBERON_0002401;visceral pleura;pleura visceralis (pulmonalis) -http://purl.obolibrary.org/obo/UBERON_0002401;visceral pleura;pulmonary visceral pleura -http://purl.obolibrary.org/obo/UBERON_0002402;pleural cavity;cavitas pleuralis -http://purl.obolibrary.org/obo/UBERON_0002403;internal intercostal muscle;intercostales internus -http://purl.obolibrary.org/obo/UBERON_0002404;transversus thoracis; -http://purl.obolibrary.org/obo/UBERON_0002405;immune system; -http://purl.obolibrary.org/obo/UBERON_0002406;pericardial sac;pericardium -http://purl.obolibrary.org/obo/UBERON_0002407;pericardium; -http://purl.obolibrary.org/obo/UBERON_0002408;parietal serous pericardium;lamina parietalis (pericardii serosum) -http://purl.obolibrary.org/obo/UBERON_0002408;parietal serous pericardium;lamina parietalis pericardii -http://purl.obolibrary.org/obo/UBERON_0002408;parietal serous pericardium;parietal layer of serous pericardium -http://purl.obolibrary.org/obo/UBERON_0002408;parietal serous pericardium;parietal pericardium -http://purl.obolibrary.org/obo/UBERON_0002409;pericardial fluid; -http://purl.obolibrary.org/obo/UBERON_0002410;autonomic nervous system;ANS -http://purl.obolibrary.org/obo/UBERON_0002410;autonomic nervous system;autonomic division of peripheral nervous system -http://purl.obolibrary.org/obo/UBERON_0002410;autonomic nervous system;autonomic part of peripheral nervous system -http://purl.obolibrary.org/obo/UBERON_0002410;autonomic nervous system;divisio autonomica systematis nervosi peripherici -http://purl.obolibrary.org/obo/UBERON_0002410;autonomic nervous system;pars autonomica systematis nervosi peripherici -http://purl.obolibrary.org/obo/UBERON_0002410;autonomic nervous system;peripheral autonomic nervous system -http://purl.obolibrary.org/obo/UBERON_0002410;autonomic nervous system;visceral nervous system -http://purl.obolibrary.org/obo/UBERON_0002411;clitoris; -http://purl.obolibrary.org/obo/UBERON_0002412;vertebra;vertebra bone -http://purl.obolibrary.org/obo/UBERON_0002412;vertebra;vertebrae -http://purl.obolibrary.org/obo/UBERON_0002413;cervical vertebra;cervical vertebrae -http://purl.obolibrary.org/obo/UBERON_0002414;lumbar vertebra; -http://purl.obolibrary.org/obo/UBERON_0002415;tail;caudal subdivision -http://purl.obolibrary.org/obo/UBERON_0002416;integumental system;body surface -http://purl.obolibrary.org/obo/UBERON_0002416;integumental system;dermal system -http://purl.obolibrary.org/obo/UBERON_0002416;integumental system;external covering of organism -http://purl.obolibrary.org/obo/UBERON_0002416;integumental system;integumentary system -http://purl.obolibrary.org/obo/UBERON_0002416;integumental system;integumentum commune -http://purl.obolibrary.org/obo/UBERON_0002416;integumental system;organism surface -http://purl.obolibrary.org/obo/UBERON_0002416;integumental system;surface -http://purl.obolibrary.org/obo/UBERON_0002417;abdominal segment of trunk;abdomen/pelvis/perineum -http://purl.obolibrary.org/obo/UBERON_0002417;abdominal segment of trunk;lower body -http://purl.obolibrary.org/obo/UBERON_0002417;abdominal segment of trunk;lower trunk -http://purl.obolibrary.org/obo/UBERON_0002417;abdominal segment of trunk;lumbar region -http://purl.obolibrary.org/obo/UBERON_0002418;cartilage tissue;cartilage tissue -http://purl.obolibrary.org/obo/UBERON_0002418;cartilage tissue;cartilaginous tissue -http://purl.obolibrary.org/obo/UBERON_0002418;cartilage tissue;chondrogenic tissue -http://purl.obolibrary.org/obo/UBERON_0002419;skin gland;glandulae cutis -http://purl.obolibrary.org/obo/UBERON_0002420;basal ganglion;basal ganglia -http://purl.obolibrary.org/obo/UBERON_0002420;basal ganglion;basal ganglion of telencephalon -http://purl.obolibrary.org/obo/UBERON_0002420;basal ganglion;basal nucleus -http://purl.obolibrary.org/obo/UBERON_0002420;basal ganglion;nuclei basales -http://purl.obolibrary.org/obo/UBERON_0002421;hippocampal formation;archipallium -http://purl.obolibrary.org/obo/UBERON_0002421;hippocampal formation;formatio hippocampi -http://purl.obolibrary.org/obo/UBERON_0002421;hippocampal formation;hippocampus -http://purl.obolibrary.org/obo/UBERON_0002421;hippocampal formation;hippocampus (Crosby) -http://purl.obolibrary.org/obo/UBERON_0002421;hippocampal formation;major hippocampus -http://purl.obolibrary.org/obo/UBERON_0002421;hippocampal formation;primal cortex -http://purl.obolibrary.org/obo/UBERON_0002421;hippocampal formation;seahorse -http://purl.obolibrary.org/obo/UBERON_0002422;fourth ventricle;4th ventricle -http://purl.obolibrary.org/obo/UBERON_0002422;fourth ventricle;IVth ventricle -http://purl.obolibrary.org/obo/UBERON_0002422;fourth ventricle;fourth ventricle proper -http://purl.obolibrary.org/obo/UBERON_0002422;fourth ventricle;hindbrain ventricle -http://purl.obolibrary.org/obo/UBERON_0002422;fourth ventricle;rhombencephalic ventricle -http://purl.obolibrary.org/obo/UBERON_0002422;fourth ventricle;rhombencephalic vesicle -http://purl.obolibrary.org/obo/UBERON_0002422;fourth ventricle;ventricle IV -http://purl.obolibrary.org/obo/UBERON_0002422;fourth ventricle;ventricle of hindbrain -http://purl.obolibrary.org/obo/UBERON_0002422;fourth ventricle;ventricle of rhombencephalon -http://purl.obolibrary.org/obo/UBERON_0002422;fourth ventricle;ventriculus quartus -http://purl.obolibrary.org/obo/UBERON_0002423;hepatobiliary system;hepaticobiliary system -http://purl.obolibrary.org/obo/UBERON_0002423;hepatobiliary system;liver and biliary system -http://purl.obolibrary.org/obo/UBERON_0002423;hepatobiliary system;liver/biliary system -http://purl.obolibrary.org/obo/UBERON_0002424;oral epithelium;epithelium of mucosa of mouth -http://purl.obolibrary.org/obo/UBERON_0002424;oral epithelium;epithelium of oral mucosa -http://purl.obolibrary.org/obo/UBERON_0002425;visceral serous pericardium;epicardium -http://purl.obolibrary.org/obo/UBERON_0002425;visceral serous pericardium;lamina visceralis pericardii serosi -http://purl.obolibrary.org/obo/UBERON_0002425;visceral serous pericardium;pericardium visceral mesothelium -http://purl.obolibrary.org/obo/UBERON_0002425;visceral serous pericardium;serous visceral pericardium -http://purl.obolibrary.org/obo/UBERON_0002425;visceral serous pericardium;visceral lamina of serous pericardium -http://purl.obolibrary.org/obo/UBERON_0002425;visceral serous pericardium;visceral layer of serous pericardium -http://purl.obolibrary.org/obo/UBERON_0002425;visceral serous pericardium;visceral pericardium -http://purl.obolibrary.org/obo/UBERON_0002426;chest muscle;anterior thoracic region muscle organ -http://purl.obolibrary.org/obo/UBERON_0002426;chest muscle;anterolateral part of thorax muscle organ -http://purl.obolibrary.org/obo/UBERON_0002426;chest muscle;chest muscle organ -http://purl.obolibrary.org/obo/UBERON_0002426;chest muscle;front of thorax muscle organ -http://purl.obolibrary.org/obo/UBERON_0002426;chest muscle;muscle of thorax -http://purl.obolibrary.org/obo/UBERON_0002426;chest muscle;muscle organ of anterior thoracic region -http://purl.obolibrary.org/obo/UBERON_0002426;chest muscle;muscle organ of anterolateral part of thorax -http://purl.obolibrary.org/obo/UBERON_0002426;chest muscle;muscle organ of chest -http://purl.obolibrary.org/obo/UBERON_0002426;chest muscle;muscle organ of front of thorax -http://purl.obolibrary.org/obo/UBERON_0002426;chest muscle;musculus thoracicus -http://purl.obolibrary.org/obo/UBERON_0002426;chest muscle;thoracic muscle -http://purl.obolibrary.org/obo/UBERON_0002427;arm skin;skin of arm -http://purl.obolibrary.org/obo/UBERON_0002428;limb bone;bone of extremity -http://purl.obolibrary.org/obo/UBERON_0002428;limb bone;bone of limb -http://purl.obolibrary.org/obo/UBERON_0002428;limb bone;free limb bone -http://purl.obolibrary.org/obo/UBERON_0002429;cervical lymph node;lymph node of neck -http://purl.obolibrary.org/obo/UBERON_0002430;lateral hypothalamic area;LH -http://purl.obolibrary.org/obo/UBERON_0002430;lateral hypothalamic area;area hypothalamica lateralis -http://purl.obolibrary.org/obo/UBERON_0002430;lateral hypothalamic area;area lateralis hypothalami -http://purl.obolibrary.org/obo/UBERON_0002430;lateral hypothalamic area;lateral division of hypothalamus -http://purl.obolibrary.org/obo/UBERON_0002430;lateral hypothalamic area;lateral group of hypothalamic nuclei -http://purl.obolibrary.org/obo/UBERON_0002430;lateral hypothalamic area;lateral hypothalamic area (Nissl 1913) -http://purl.obolibrary.org/obo/UBERON_0002430;lateral hypothalamic area;lateral hypothalamic area proper -http://purl.obolibrary.org/obo/UBERON_0002430;lateral hypothalamic area;lateral hypothalamic group -http://purl.obolibrary.org/obo/UBERON_0002430;lateral hypothalamic area;lateral hypothalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0002430;lateral hypothalamic area;lateral hypothalamic region -http://purl.obolibrary.org/obo/UBERON_0002430;lateral hypothalamic area;lateral hypothalamic zone (Crosby) -http://purl.obolibrary.org/obo/UBERON_0002432;pars intermedia of adenohypophysis;intermediate lobe of adenohypophysis -http://purl.obolibrary.org/obo/UBERON_0002432;pars intermedia of adenohypophysis;intermediate lobe of pituitary -http://purl.obolibrary.org/obo/UBERON_0002432;pars intermedia of adenohypophysis;pars intermedia -http://purl.obolibrary.org/obo/UBERON_0002432;pars intermedia of adenohypophysis;pars intermedia (glandula pituitaria) -http://purl.obolibrary.org/obo/UBERON_0002432;pars intermedia of adenohypophysis;pars intermedia adenohypophysis -http://purl.obolibrary.org/obo/UBERON_0002432;pars intermedia of adenohypophysis;pars intermedia of anterior lobe of pituitary gland -http://purl.obolibrary.org/obo/UBERON_0002433;pars tuberalis of adenohypophysis;pars infundibularis of adenohypophysis -http://purl.obolibrary.org/obo/UBERON_0002433;pars tuberalis of adenohypophysis;pars tuberalis -http://purl.obolibrary.org/obo/UBERON_0002433;pars tuberalis of adenohypophysis;pars tuberalis (glandula pituitaria) -http://purl.obolibrary.org/obo/UBERON_0002433;pars tuberalis of adenohypophysis;pars tuberalis adenohypophysis -http://purl.obolibrary.org/obo/UBERON_0002433;pars tuberalis of adenohypophysis;pars tuberalis of anterior lobe of pituitary gland -http://purl.obolibrary.org/obo/UBERON_0002434;pituitary stalk;hypophyseal stalk -http://purl.obolibrary.org/obo/UBERON_0002434;pituitary stalk;infundibular stalk -http://purl.obolibrary.org/obo/UBERON_0002434;pituitary stalk;infundibular stem -http://purl.obolibrary.org/obo/UBERON_0002434;pituitary stalk;infundibular stem of neurohypophysis -http://purl.obolibrary.org/obo/UBERON_0002434;pituitary stalk;infundibulum -http://purl.obolibrary.org/obo/UBERON_0002434;pituitary stalk;infundibulum (lobus posterior) (glandula pituitaria) -http://purl.obolibrary.org/obo/UBERON_0002434;pituitary stalk;infundibulum hypophysis -http://purl.obolibrary.org/obo/UBERON_0002434;pituitary stalk;infundibulum of neurohypophysis -http://purl.obolibrary.org/obo/UBERON_0002434;pituitary stalk;infundibulum of pituitary gland -http://purl.obolibrary.org/obo/UBERON_0002434;pituitary stalk;infundibulum of posterior lobe of pituitary gland -http://purl.obolibrary.org/obo/UBERON_0002434;pituitary stalk;neurohypophysis infundibulum -http://purl.obolibrary.org/obo/UBERON_0002434;pituitary stalk;pituitary infundibular stalk -http://purl.obolibrary.org/obo/UBERON_0002434;pituitary stalk;tuberal part of hypophysis -http://purl.obolibrary.org/obo/UBERON_0002435;striatum;caudate putamen -http://purl.obolibrary.org/obo/UBERON_0002435;striatum;corpus striatum -http://purl.obolibrary.org/obo/UBERON_0002435;striatum;corpus striatum (Zilles) -http://purl.obolibrary.org/obo/UBERON_0002435;striatum;dorsal striatum -http://purl.obolibrary.org/obo/UBERON_0002435;striatum;neostriatum -http://purl.obolibrary.org/obo/UBERON_0002435;striatum;neuraxis striatum -http://purl.obolibrary.org/obo/UBERON_0002435;striatum;striate nucleus -http://purl.obolibrary.org/obo/UBERON_0002435;striatum;striated nucleus -http://purl.obolibrary.org/obo/UBERON_0002435;striatum;striatum -http://purl.obolibrary.org/obo/UBERON_0002435;striatum;striatum of neuraxis -http://purl.obolibrary.org/obo/UBERON_0002436;primary visual cortex;striate cortex -http://purl.obolibrary.org/obo/UBERON_0002437;cerebral hemisphere white matter;cerebral hemisphere white matter -http://purl.obolibrary.org/obo/UBERON_0002437;cerebral hemisphere white matter;cerebral white matter -http://purl.obolibrary.org/obo/UBERON_0002437;cerebral hemisphere white matter;hemisphere white matter -http://purl.obolibrary.org/obo/UBERON_0002437;cerebral hemisphere white matter;region of cerebral white matter -http://purl.obolibrary.org/obo/UBERON_0002437;cerebral hemisphere white matter;substantia medullaris cerebri -http://purl.obolibrary.org/obo/UBERON_0002437;cerebral hemisphere white matter;white matter structure of cerebral hemisphere -http://purl.obolibrary.org/obo/UBERON_0002438;ventral tegmental nucleus;deep tegmental nucleus of Gudden -http://purl.obolibrary.org/obo/UBERON_0002438;ventral tegmental nucleus;ventral raphe tegmental nucleus -http://purl.obolibrary.org/obo/UBERON_0002438;ventral tegmental nucleus;ventral tegmental nuclei -http://purl.obolibrary.org/obo/UBERON_0002438;ventral tegmental nucleus;ventral tegmental nucleus (gudden) -http://purl.obolibrary.org/obo/UBERON_0002438;ventral tegmental nucleus;ventral tegmental nucleus of Gudden -http://purl.obolibrary.org/obo/UBERON_0002439;myenteric nerve plexus;Auberbach plexus -http://purl.obolibrary.org/obo/UBERON_0002439;myenteric nerve plexus;Auberbach's plexus -http://purl.obolibrary.org/obo/UBERON_0002439;myenteric nerve plexus;Auberbachs plexus -http://purl.obolibrary.org/obo/UBERON_0002439;myenteric nerve plexus;Auerbach's plexus -http://purl.obolibrary.org/obo/UBERON_0002439;myenteric nerve plexus;Meissner's plexus -http://purl.obolibrary.org/obo/UBERON_0002439;myenteric nerve plexus;Remak's plexus -http://purl.obolibrary.org/obo/UBERON_0002439;myenteric nerve plexus;myenteric plexus -http://purl.obolibrary.org/obo/UBERON_0002439;myenteric nerve plexus;plexus myentericus -http://purl.obolibrary.org/obo/UBERON_0002439;myenteric nerve plexus;plexus nervosus submucosus -http://purl.obolibrary.org/obo/UBERON_0002439;myenteric nerve plexus;plexus submucosus -http://purl.obolibrary.org/obo/UBERON_0002439;myenteric nerve plexus;submucous plexus -http://purl.obolibrary.org/obo/UBERON_0002440;inferior cervical ganglion;cervico-thoracic -http://purl.obolibrary.org/obo/UBERON_0002440;inferior cervical ganglion;cervico-thoracic ganglion -http://purl.obolibrary.org/obo/UBERON_0002440;inferior cervical ganglion;ganglion cervicale inferioris -http://purl.obolibrary.org/obo/UBERON_0002440;inferior cervical ganglion;ganglion cervicale inferius -http://purl.obolibrary.org/obo/UBERON_0002440;inferior cervical ganglion;stellate ganglion -http://purl.obolibrary.org/obo/UBERON_0002440;inferior cervical ganglion;variant cervical ganglion -http://purl.obolibrary.org/obo/UBERON_0002441;cervicothoracic ganglion;cervicothoracic sympathetic ganglion -http://purl.obolibrary.org/obo/UBERON_0002441;cervicothoracic ganglion;ganglion cervicothoracicum -http://purl.obolibrary.org/obo/UBERON_0002441;cervicothoracic ganglion;ganglion stellatum -http://purl.obolibrary.org/obo/UBERON_0002441;cervicothoracic ganglion;stellate ganglion -http://purl.obolibrary.org/obo/UBERON_0002442;axillary nerve trunk;right axillary neural trunk -http://purl.obolibrary.org/obo/UBERON_0002442;axillary nerve trunk;trunk of right axillary nerve -http://purl.obolibrary.org/obo/UBERON_0002443;choroidal blood vessel;blood vessel of choroid -http://purl.obolibrary.org/obo/UBERON_0002443;choroidal blood vessel;blood vessel of choroid coat -http://purl.obolibrary.org/obo/UBERON_0002443;choroidal blood vessel;blood vessel of choroidea -http://purl.obolibrary.org/obo/UBERON_0002443;choroidal blood vessel;blood vessel of posterior uvea -http://purl.obolibrary.org/obo/UBERON_0002443;choroidal blood vessel;choroid blood vessel -http://purl.obolibrary.org/obo/UBERON_0002443;choroidal blood vessel;choroid blood vessels -http://purl.obolibrary.org/obo/UBERON_0002443;choroidal blood vessel;choroid blood vessels set -http://purl.obolibrary.org/obo/UBERON_0002443;choroidal blood vessel;choroid coat blood vessel -http://purl.obolibrary.org/obo/UBERON_0002443;choroidal blood vessel;choroidea blood vessel -http://purl.obolibrary.org/obo/UBERON_0002443;choroidal blood vessel;posterior uvea blood vessel -http://purl.obolibrary.org/obo/UBERON_0002443;choroidal blood vessel;vasa sanguinea choroideae -http://purl.obolibrary.org/obo/UBERON_0002444;lens fiber;fibrae lentis -http://purl.obolibrary.org/obo/UBERON_0002444;lens fiber;lens fibers -http://purl.obolibrary.org/obo/UBERON_0002444;lens fiber;lens fibers set -http://purl.obolibrary.org/obo/UBERON_0002444;lens fiber;lens fibres -http://purl.obolibrary.org/obo/UBERON_0002445;ulnare;cuneiform bone of hand -http://purl.obolibrary.org/obo/UBERON_0002445;ulnare;cuneiform bone of manus -http://purl.obolibrary.org/obo/UBERON_0002445;ulnare;os triquetrum -http://purl.obolibrary.org/obo/UBERON_0002445;ulnare;os ulnare -http://purl.obolibrary.org/obo/UBERON_0002445;ulnare;triangular bone -http://purl.obolibrary.org/obo/UBERON_0002445;ulnare;triquetral -http://purl.obolibrary.org/obo/UBERON_0002445;ulnare;triquetral bone -http://purl.obolibrary.org/obo/UBERON_0002446;patella; -http://purl.obolibrary.org/obo/UBERON_0002447;palatine gland;palatine glands set -http://purl.obolibrary.org/obo/UBERON_0002447;palatine gland;palatine mucuous gland -http://purl.obolibrary.org/obo/UBERON_0002447;palatine gland;palatine salivary gland -http://purl.obolibrary.org/obo/UBERON_0002447;palatine gland;salivary palatine gland -http://purl.obolibrary.org/obo/UBERON_0002448;fungiform papilla;fungiform papilla of tongue -http://purl.obolibrary.org/obo/UBERON_0002448;fungiform papilla;fungiform papillae -http://purl.obolibrary.org/obo/UBERON_0002448;fungiform papilla;fungiform papillae set -http://purl.obolibrary.org/obo/UBERON_0002450;decidua;decidous membrane -http://purl.obolibrary.org/obo/UBERON_0002451;endometrial gland;endometrial gland -http://purl.obolibrary.org/obo/UBERON_0002451;endometrial gland;endometrial mucuous gland -http://purl.obolibrary.org/obo/UBERON_0002451;endometrial gland;endometrium gland -http://purl.obolibrary.org/obo/UBERON_0002451;endometrial gland;glandulae uterinae -http://purl.obolibrary.org/obo/UBERON_0002451;endometrial gland;uterine gland -http://purl.obolibrary.org/obo/UBERON_0002453;ethmoid sinus;ethmoidal bone sinus -http://purl.obolibrary.org/obo/UBERON_0002453;ethmoid sinus;ethmoidal sinus -http://purl.obolibrary.org/obo/UBERON_0002454;dorsal metacarpal artery;arteriae metacarpales dorsales -http://purl.obolibrary.org/obo/UBERON_0002454;dorsal metacarpal artery;dorsal metacarpal arteries -http://purl.obolibrary.org/obo/UBERON_0002454;dorsal metacarpal artery;dorsal metacarpal arteries set -http://purl.obolibrary.org/obo/UBERON_0002455;common plantar digital arteries;arteriae digitales plantares communes -http://purl.obolibrary.org/obo/UBERON_0002455;common plantar digital arteries;common plantar digital arteries -http://purl.obolibrary.org/obo/UBERON_0002455;common plantar digital arteries;common plantar digital arteries set -http://purl.obolibrary.org/obo/UBERON_0002456;internal thoracic artery;internal mammary artery -http://purl.obolibrary.org/obo/UBERON_0002456;internal thoracic artery;internal thoracic mammary artery -http://purl.obolibrary.org/obo/UBERON_0002457;intersomitic artery;intersegmental artery -http://purl.obolibrary.org/obo/UBERON_0002458;spinal artery;spinal arteries -http://purl.obolibrary.org/obo/UBERON_0002459;inferior palpebral vein;inferior palpebral veins -http://purl.obolibrary.org/obo/UBERON_0002459;inferior palpebral vein;inferior palpebral veins set -http://purl.obolibrary.org/obo/UBERON_0002459;inferior palpebral vein;vein of inferior eyelid -http://purl.obolibrary.org/obo/UBERON_0002460;vesical vein;venae vesicales -http://purl.obolibrary.org/obo/UBERON_0002460;vesical vein;vesical veins -http://purl.obolibrary.org/obo/UBERON_0002460;vesical vein;vesical veins set -http://purl.obolibrary.org/obo/UBERON_0002461;anterior abdominal wall muscle;muscle of anterior abdominal wall -http://purl.obolibrary.org/obo/UBERON_0002461;anterior abdominal wall muscle;ventral abdominal wall muscle -http://purl.obolibrary.org/obo/UBERON_0002462;erector spinae muscle group;erector spinae -http://purl.obolibrary.org/obo/UBERON_0002462;erector spinae muscle group;extensor spinae -http://purl.obolibrary.org/obo/UBERON_0002462;erector spinae muscle group;extensor spinae muscles -http://purl.obolibrary.org/obo/UBERON_0002462;erector spinae muscle group;sacrospinalis -http://purl.obolibrary.org/obo/UBERON_0002463;muscle of posterior compartment of hindlimb stylopod;hamstring muscle -http://purl.obolibrary.org/obo/UBERON_0002463;muscle of posterior compartment of hindlimb stylopod;muscle of posterior compartment of thigh -http://purl.obolibrary.org/obo/UBERON_0002463;muscle of posterior compartment of hindlimb stylopod;posterior femoral muscle -http://purl.obolibrary.org/obo/UBERON_0002464;nerve trunk;peripheral nerve trunk -http://purl.obolibrary.org/obo/UBERON_0002464;nerve trunk;trunk of nerve -http://purl.obolibrary.org/obo/UBERON_0002464;nerve trunk;trunk of peripheral nerve -http://purl.obolibrary.org/obo/UBERON_0002465;lymphoid system;lymphatic circulatory system -http://purl.obolibrary.org/obo/UBERON_0002465;lymphoid system;lymphatic drainage system -http://purl.obolibrary.org/obo/UBERON_0002465;lymphoid system;lymphatic system -http://purl.obolibrary.org/obo/UBERON_0002465;lymphoid system;systema lymphoideum -http://purl.obolibrary.org/obo/UBERON_0002466;intestine secretion;intestinal secretion -http://purl.obolibrary.org/obo/UBERON_0002466;intestine secretion;succus entericus -http://purl.obolibrary.org/obo/UBERON_0002467;filiform papilla;filiform papilla of tongue -http://purl.obolibrary.org/obo/UBERON_0002467;filiform papilla;filiform papillae -http://purl.obolibrary.org/obo/UBERON_0002467;filiform papilla;filiform papillae set -http://purl.obolibrary.org/obo/UBERON_0002468;foliate papilla;foliate papilla of tongue -http://purl.obolibrary.org/obo/UBERON_0002468;foliate papilla;foliate papillae -http://purl.obolibrary.org/obo/UBERON_0002468;foliate papilla;foliate papillae set -http://purl.obolibrary.org/obo/UBERON_0002469;esophagus mucosa;esophageal mucosa -http://purl.obolibrary.org/obo/UBERON_0002469;esophagus mucosa;esophageal mucous membrane -http://purl.obolibrary.org/obo/UBERON_0002469;esophagus mucosa;esophagus mucosa -http://purl.obolibrary.org/obo/UBERON_0002469;esophagus mucosa;esophagus mucous membrane -http://purl.obolibrary.org/obo/UBERON_0002469;esophagus mucosa;lamina muscularis mucosae oesophageae -http://purl.obolibrary.org/obo/UBERON_0002469;esophagus mucosa;mucosa of esophagus -http://purl.obolibrary.org/obo/UBERON_0002469;esophagus mucosa;mucosa of oesophagus -http://purl.obolibrary.org/obo/UBERON_0002469;esophagus mucosa;mucous membrane of esophagus -http://purl.obolibrary.org/obo/UBERON_0002469;esophagus mucosa;mucous membrane of oesophagus -http://purl.obolibrary.org/obo/UBERON_0002469;esophagus mucosa;oesophageal mucosa -http://purl.obolibrary.org/obo/UBERON_0002469;esophagus mucosa;oesophagus mucosa -http://purl.obolibrary.org/obo/UBERON_0002469;esophagus mucosa;oesophagus mucous membrane -http://purl.obolibrary.org/obo/UBERON_0002469;esophagus mucosa;tunica mucosa esophagi -http://purl.obolibrary.org/obo/UBERON_0002469;esophagus mucosa;tunica mucosa oesophageae -http://purl.obolibrary.org/obo/UBERON_0002469;esophagus mucosa;tunica mucosa oesophagi -http://purl.obolibrary.org/obo/UBERON_0002470;autopod region;autopodial limb segment -http://purl.obolibrary.org/obo/UBERON_0002470;autopod region;autopodial segment -http://purl.obolibrary.org/obo/UBERON_0002470;autopod region;autopodium -http://purl.obolibrary.org/obo/UBERON_0002470;autopod region;autopodium region -http://purl.obolibrary.org/obo/UBERON_0002470;autopod region;distal free limb segment -http://purl.obolibrary.org/obo/UBERON_0002470;autopod region;distal segment of free limb -http://purl.obolibrary.org/obo/UBERON_0002471;zeugopod;epipodium -http://purl.obolibrary.org/obo/UBERON_0002471;zeugopod;middle free limb segment -http://purl.obolibrary.org/obo/UBERON_0002471;zeugopod;middle limb segment -http://purl.obolibrary.org/obo/UBERON_0002471;zeugopod;zeugopod limb segment -http://purl.obolibrary.org/obo/UBERON_0002471;zeugopod;zeugopodial limb segment -http://purl.obolibrary.org/obo/UBERON_0002471;zeugopod;zeugopodium -http://purl.obolibrary.org/obo/UBERON_0002471;zeugopod;zygopod -http://purl.obolibrary.org/obo/UBERON_0002471;zeugopod;zygopodium -http://purl.obolibrary.org/obo/UBERON_0002472;stylopod;propodium -http://purl.obolibrary.org/obo/UBERON_0002472;stylopod;proximal free limb segment -http://purl.obolibrary.org/obo/UBERON_0002472;stylopod;stylopodial limb segment -http://purl.obolibrary.org/obo/UBERON_0002472;stylopod;stylopodium -http://purl.obolibrary.org/obo/UBERON_0002473;intercerebral commissure; -http://purl.obolibrary.org/obo/UBERON_0002474;cerebellar peduncular complex;cerebellar peduncles -http://purl.obolibrary.org/obo/UBERON_0002474;cerebellar peduncular complex;cerebellar peduncles and decussations -http://purl.obolibrary.org/obo/UBERON_0002474;cerebellar peduncular complex;cerebellar peduncles set -http://purl.obolibrary.org/obo/UBERON_0002474;cerebellar peduncular complex;cerebellum peduncles -http://purl.obolibrary.org/obo/UBERON_0002474;cerebellar peduncular complex;pedunculi cerebellares -http://purl.obolibrary.org/obo/UBERON_0002475;saphenous nerve; -http://purl.obolibrary.org/obo/UBERON_0002476;lateral globus pallidus;external globus pallidus -http://purl.obolibrary.org/obo/UBERON_0002476;lateral globus pallidus;external pallidum -http://purl.obolibrary.org/obo/UBERON_0002476;lateral globus pallidus;external part of globus pallidus -http://purl.obolibrary.org/obo/UBERON_0002476;lateral globus pallidus;globus pallidus (rat) -http://purl.obolibrary.org/obo/UBERON_0002476;lateral globus pallidus;globus pallidus extermal segment -http://purl.obolibrary.org/obo/UBERON_0002476;lateral globus pallidus;globus pallidus external segment -http://purl.obolibrary.org/obo/UBERON_0002476;lateral globus pallidus;globus pallidus externus -http://purl.obolibrary.org/obo/UBERON_0002476;lateral globus pallidus;globus pallidus lateral part -http://purl.obolibrary.org/obo/UBERON_0002476;lateral globus pallidus;globus pallidus lateral segment -http://purl.obolibrary.org/obo/UBERON_0002476;lateral globus pallidus;globus pallidus lateralis -http://purl.obolibrary.org/obo/UBERON_0002476;lateral globus pallidus;globus pallidus, external segment -http://purl.obolibrary.org/obo/UBERON_0002476;lateral globus pallidus;globus pallidus, lateral part -http://purl.obolibrary.org/obo/UBERON_0002476;lateral globus pallidus;globus pallidus, lateral segment -http://purl.obolibrary.org/obo/UBERON_0002476;lateral globus pallidus;globus pallidus, pars externa -http://purl.obolibrary.org/obo/UBERON_0002476;lateral globus pallidus;lateral division of globus pallidus -http://purl.obolibrary.org/obo/UBERON_0002476;lateral globus pallidus;lateral pallidal segment -http://purl.obolibrary.org/obo/UBERON_0002476;lateral globus pallidus;lateral pallidum -http://purl.obolibrary.org/obo/UBERON_0002476;lateral globus pallidus;lateral part of globus pallidus -http://purl.obolibrary.org/obo/UBERON_0002476;lateral globus pallidus;lateral segment of globus pallidus -http://purl.obolibrary.org/obo/UBERON_0002476;lateral globus pallidus;lateral segment of the globus pallidus -http://purl.obolibrary.org/obo/UBERON_0002476;lateral globus pallidus;nucleus lateralis globi pallidi -http://purl.obolibrary.org/obo/UBERON_0002476;lateral globus pallidus;pallidum I -http://purl.obolibrary.org/obo/UBERON_0002476;lateral globus pallidus;pallidum dorsal region external segment -http://purl.obolibrary.org/obo/UBERON_0002476;lateral globus pallidus;pallidus II -http://purl.obolibrary.org/obo/UBERON_0002476;lateral globus pallidus;pars lateralis globi pallidi medialis -http://purl.obolibrary.org/obo/UBERON_0002477;medial globus pallidus;entopeduncular nucleus -http://purl.obolibrary.org/obo/UBERON_0002477;medial globus pallidus;entopeduncular nucleus (monakow) -http://purl.obolibrary.org/obo/UBERON_0002477;medial globus pallidus;globus pallidus inernal segment -http://purl.obolibrary.org/obo/UBERON_0002477;medial globus pallidus;globus pallidus interna -http://purl.obolibrary.org/obo/UBERON_0002477;medial globus pallidus;globus pallidus internal segment -http://purl.obolibrary.org/obo/UBERON_0002477;medial globus pallidus;globus pallidus internus -http://purl.obolibrary.org/obo/UBERON_0002477;medial globus pallidus;globus pallidus medial part -http://purl.obolibrary.org/obo/UBERON_0002477;medial globus pallidus;globus pallidus medial segment -http://purl.obolibrary.org/obo/UBERON_0002477;medial globus pallidus;globus pallidus medialis -http://purl.obolibrary.org/obo/UBERON_0002477;medial globus pallidus;globus pallidus pars medialis -http://purl.obolibrary.org/obo/UBERON_0002477;medial globus pallidus;globus pallidus, internal segment -http://purl.obolibrary.org/obo/UBERON_0002477;medial globus pallidus;globus pallidus, medial part -http://purl.obolibrary.org/obo/UBERON_0002477;medial globus pallidus;globus pallidus, medial segment -http://purl.obolibrary.org/obo/UBERON_0002477;medial globus pallidus;globus pallidus, pars interna -http://purl.obolibrary.org/obo/UBERON_0002477;medial globus pallidus;internal globus pallidus -http://purl.obolibrary.org/obo/UBERON_0002477;medial globus pallidus;internal pallidum -http://purl.obolibrary.org/obo/UBERON_0002477;medial globus pallidus;internal part of globus pallidus -http://purl.obolibrary.org/obo/UBERON_0002477;medial globus pallidus;medial division of globus pallidus -http://purl.obolibrary.org/obo/UBERON_0002477;medial globus pallidus;medial globus pallidus (entopeduncular nucleus) -http://purl.obolibrary.org/obo/UBERON_0002477;medial globus pallidus;medial pallidal segment -http://purl.obolibrary.org/obo/UBERON_0002477;medial globus pallidus;medial part of globus pallidus -http://purl.obolibrary.org/obo/UBERON_0002477;medial globus pallidus;medial segment of globus pallidus -http://purl.obolibrary.org/obo/UBERON_0002477;medial globus pallidus;medial segment of the globus pallidus -http://purl.obolibrary.org/obo/UBERON_0002477;medial globus pallidus;mesial pallidum -http://purl.obolibrary.org/obo/UBERON_0002477;medial globus pallidus;nucleus medialis globi pallidi -http://purl.obolibrary.org/obo/UBERON_0002477;medial globus pallidus;pallidum I -http://purl.obolibrary.org/obo/UBERON_0002477;medial globus pallidus;pallidum II -http://purl.obolibrary.org/obo/UBERON_0002477;medial globus pallidus;pallidum dorsal region internal segment -http://purl.obolibrary.org/obo/UBERON_0002477;medial globus pallidus;pallidus I -http://purl.obolibrary.org/obo/UBERON_0002477;medial globus pallidus;pars medialis globi pallidi -http://purl.obolibrary.org/obo/UBERON_0002477;medial globus pallidus;principal medial geniculate nucleus -http://purl.obolibrary.org/obo/UBERON_0002478;orbitosphenoid;ala minor (os sphenoidale) -http://purl.obolibrary.org/obo/UBERON_0002478;orbitosphenoid;ala minor ossis sphenoidalis -http://purl.obolibrary.org/obo/UBERON_0002478;orbitosphenoid;ingrassia's process -http://purl.obolibrary.org/obo/UBERON_0002478;orbitosphenoid;lesser wing of sphenoid -http://purl.obolibrary.org/obo/UBERON_0002478;orbitosphenoid;lesser wing of sphenoidal bone -http://purl.obolibrary.org/obo/UBERON_0002478;orbitosphenoid;orbitosphenoid bone -http://purl.obolibrary.org/obo/UBERON_0002479;dorsal lateral geniculate nucleus;lateral geniculate complex, dorsal part -http://purl.obolibrary.org/obo/UBERON_0002479;dorsal lateral geniculate nucleus;lateral geniculate nucleus, dorsal part -http://purl.obolibrary.org/obo/UBERON_0002479;dorsal lateral geniculate nucleus;nucleus dorsalis corporis geniculati lateralis -http://purl.obolibrary.org/obo/UBERON_0002479;dorsal lateral geniculate nucleus;nucleus geniculatus lateralis pars dorsalis -http://purl.obolibrary.org/obo/UBERON_0002480;ventral lateral geniculate nucleus;corpus geniculatum externum, nucleus accessorius -http://purl.obolibrary.org/obo/UBERON_0002480;ventral lateral geniculate nucleus;corpus geniculatum laterale, pars oralis -http://purl.obolibrary.org/obo/UBERON_0002480;ventral lateral geniculate nucleus;dorsal_nucleus_of_lateral_geniculate_body -http://purl.obolibrary.org/obo/UBERON_0002480;ventral lateral geniculate nucleus;griseum praegeniculatum -http://purl.obolibrary.org/obo/UBERON_0002480;ventral lateral geniculate nucleus;lateral geniculate complex, ventral part -http://purl.obolibrary.org/obo/UBERON_0002480;ventral lateral geniculate nucleus;lateral geniculate complex, ventral part (kolliker) -http://purl.obolibrary.org/obo/UBERON_0002480;ventral lateral geniculate nucleus;lateral geniculate nucleus, ventral part -http://purl.obolibrary.org/obo/UBERON_0002480;ventral lateral geniculate nucleus;nucleus corporis geniculati lateralis, pars ventralis -http://purl.obolibrary.org/obo/UBERON_0002480;ventral lateral geniculate nucleus;nucleus praegeniculatus -http://purl.obolibrary.org/obo/UBERON_0002480;ventral lateral geniculate nucleus;nucleus pregeniculatum -http://purl.obolibrary.org/obo/UBERON_0002480;ventral lateral geniculate nucleus;nucleus pregeniculatus -http://purl.obolibrary.org/obo/UBERON_0002480;ventral lateral geniculate nucleus;nucleus ventralis corporis geniculati lateralis -http://purl.obolibrary.org/obo/UBERON_0002480;ventral lateral geniculate nucleus;praegeniculatum -http://purl.obolibrary.org/obo/UBERON_0002480;ventral lateral geniculate nucleus;pregeniculate nucleus -http://purl.obolibrary.org/obo/UBERON_0002480;ventral lateral geniculate nucleus;ventral part of the lateral geniculate complex -http://purl.obolibrary.org/obo/UBERON_0002481;bone tissue;calcium tissue -http://purl.obolibrary.org/obo/UBERON_0002481;bone tissue;osseous tissue -http://purl.obolibrary.org/obo/UBERON_0002481;bone tissue;osteogenic tissue -http://purl.obolibrary.org/obo/UBERON_0002482;lamellar bone; -http://purl.obolibrary.org/obo/UBERON_0002483;trabecular bone tissue;cancellous bone -http://purl.obolibrary.org/obo/UBERON_0002483;trabecular bone tissue;cancellous bone tissue -http://purl.obolibrary.org/obo/UBERON_0002483;trabecular bone tissue;spongy bone -http://purl.obolibrary.org/obo/UBERON_0002483;trabecular bone tissue;spongy bone tissue -http://purl.obolibrary.org/obo/UBERON_0002483;trabecular bone tissue;substantia spongiosa -http://purl.obolibrary.org/obo/UBERON_0002483;trabecular bone tissue;substantia spongiosa ossium -http://purl.obolibrary.org/obo/UBERON_0002483;trabecular bone tissue;substantia trabecularis -http://purl.obolibrary.org/obo/UBERON_0002483;trabecular bone tissue;trabecular bone -http://purl.obolibrary.org/obo/UBERON_0002484;bone marrow cavity;cavity of cancellous bone -http://purl.obolibrary.org/obo/UBERON_0002484;bone marrow cavity;marrow cavity -http://purl.obolibrary.org/obo/UBERON_0002484;bone marrow cavity;medullary cavity -http://purl.obolibrary.org/obo/UBERON_0002485;prostate duct;duct of prostate -http://purl.obolibrary.org/obo/UBERON_0002485;prostate duct;duct of prostate gland -http://purl.obolibrary.org/obo/UBERON_0002485;prostate duct;prostate duct -http://purl.obolibrary.org/obo/UBERON_0002485;prostate duct;prostate gland duct -http://purl.obolibrary.org/obo/UBERON_0002485;prostate duct;prostatic duct -http://purl.obolibrary.org/obo/UBERON_0002486;glottis; -http://purl.obolibrary.org/obo/UBERON_0002487;tooth cavity;cavitas dentis -http://purl.obolibrary.org/obo/UBERON_0002487;tooth cavity;cavitas pulparis -http://purl.obolibrary.org/obo/UBERON_0002487;tooth cavity;lumen of tooth -http://purl.obolibrary.org/obo/UBERON_0002487;tooth cavity;pulp cavity -http://purl.obolibrary.org/obo/UBERON_0002487;tooth cavity;pulp cavity of tooth -http://purl.obolibrary.org/obo/UBERON_0002488;helix of outer ear;helical part of pinna -http://purl.obolibrary.org/obo/UBERON_0002488;helix of outer ear;helix -http://purl.obolibrary.org/obo/UBERON_0002488;helix of outer ear;helix (auricula) -http://purl.obolibrary.org/obo/UBERON_0002488;helix of outer ear;helix of auricle of ear -http://purl.obolibrary.org/obo/UBERON_0002488;helix of outer ear;helix of ear -http://purl.obolibrary.org/obo/UBERON_0002488;helix of outer ear;helix of pinna -http://purl.obolibrary.org/obo/UBERON_0002489;coronal suture;coronal suture of skull -http://purl.obolibrary.org/obo/UBERON_0002489;coronal suture;fronto-parietal suture -http://purl.obolibrary.org/obo/UBERON_0002489;coronal suture;frontoparietal suture -http://purl.obolibrary.org/obo/UBERON_0002490;frontal suture;frontal suture of skull -http://purl.obolibrary.org/obo/UBERON_0002490;frontal suture;median frontal suture -http://purl.obolibrary.org/obo/UBERON_0002490;frontal suture;sutura frontalis -http://purl.obolibrary.org/obo/UBERON_0002490;frontal suture;sutura metopica -http://purl.obolibrary.org/obo/UBERON_0002491;lambdoid suture;lambdoid suture of skull -http://purl.obolibrary.org/obo/UBERON_0002492;sagittal suture;sagittal suture of skull -http://purl.obolibrary.org/obo/UBERON_0002493;uterine artery; -http://purl.obolibrary.org/obo/UBERON_0002494;papillary muscle of heart;papillary muscle -http://purl.obolibrary.org/obo/UBERON_0002494;papillary muscle of heart;papillary muscle of ventricle -http://purl.obolibrary.org/obo/UBERON_0002494;papillary muscle of heart;ventricular papillary muscle -http://purl.obolibrary.org/obo/UBERON_0002494;papillary muscle of heart;ventricule papillary muscle -http://purl.obolibrary.org/obo/UBERON_0002495;long bone; -http://purl.obolibrary.org/obo/UBERON_0002496;stapes base;base of stapes -http://purl.obolibrary.org/obo/UBERON_0002496;stapes base;basis stapedis -http://purl.obolibrary.org/obo/UBERON_0002496;stapes base;stapes footpiece -http://purl.obolibrary.org/obo/UBERON_0002496;stapes base;stapes footplate -http://purl.obolibrary.org/obo/UBERON_0002497;acromion;acromion process -http://purl.obolibrary.org/obo/UBERON_0002497;acromion;scapular acromion -http://purl.obolibrary.org/obo/UBERON_0002498;deltopectoral crest;crista ventralis -http://purl.obolibrary.org/obo/UBERON_0002498;deltopectoral crest;deltoid crest -http://purl.obolibrary.org/obo/UBERON_0002498;deltopectoral crest;deltoid eminence -http://purl.obolibrary.org/obo/UBERON_0002498;deltopectoral crest;deltoid impression -http://purl.obolibrary.org/obo/UBERON_0002498;deltopectoral crest;deltoid tuberosity -http://purl.obolibrary.org/obo/UBERON_0002498;deltopectoral crest;deltoid tuberosity of humerus -http://purl.obolibrary.org/obo/UBERON_0002498;deltopectoral crest;tuberositas deltoidea -http://purl.obolibrary.org/obo/UBERON_0002498;deltopectoral crest;tuberositas deltoidea (corpus humeri) -http://purl.obolibrary.org/obo/UBERON_0002498;deltopectoral crest;tuberositas deltoidea humeri -http://purl.obolibrary.org/obo/UBERON_0002499;cochlear labyrinth; -http://purl.obolibrary.org/obo/UBERON_0002500;zygomatic arch;zygoma -http://purl.obolibrary.org/obo/UBERON_0002501;oval window;oval window of petrous part of temporal bone -http://purl.obolibrary.org/obo/UBERON_0002502;round window of inner ear;round window -http://purl.obolibrary.org/obo/UBERON_0002502;round window of inner ear;round window of petrous part of temporal bone -http://purl.obolibrary.org/obo/UBERON_0002503;greater trochanter;great trochanter -http://purl.obolibrary.org/obo/UBERON_0002503;greater trochanter;greater trochanter of femur -http://purl.obolibrary.org/obo/UBERON_0002504;lesser trochanter;lesser trochanter of femur -http://purl.obolibrary.org/obo/UBERON_0002505;spiral modiolar artery; -http://purl.obolibrary.org/obo/UBERON_0002506;iris epithelium;epithelial tissue of iris -http://purl.obolibrary.org/obo/UBERON_0002506;iris epithelium;epithelium of iris -http://purl.obolibrary.org/obo/UBERON_0002506;iris epithelium;epithelium pigmentosum (iris) -http://purl.obolibrary.org/obo/UBERON_0002506;iris epithelium;epithelium pigmentosum iridis -http://purl.obolibrary.org/obo/UBERON_0002506;iris epithelium;iris epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0002506;iris epithelium;iris epithelium -http://purl.obolibrary.org/obo/UBERON_0002506;iris epithelium;pigmented epithelium of iris -http://purl.obolibrary.org/obo/UBERON_0002507;abdominal lymph node;abdomen lymph node -http://purl.obolibrary.org/obo/UBERON_0002507;abdominal lymph node;lymph node of abdomen -http://purl.obolibrary.org/obo/UBERON_0002507;abdominal lymph node;parietal abdominal lymph node -http://purl.obolibrary.org/obo/UBERON_0002508;celiac lymph node;celiac node -http://purl.obolibrary.org/obo/UBERON_0002508;celiac lymph node;coeliac node -http://purl.obolibrary.org/obo/UBERON_0002508;celiac lymph node;nodus lymphaticus coeliacus -http://purl.obolibrary.org/obo/UBERON_0002508;celiac lymph node;terminal ventral aortic node -http://purl.obolibrary.org/obo/UBERON_0002509;mesenteric lymph node;mesenteric node -http://purl.obolibrary.org/obo/UBERON_0002509;mesenteric lymph node;nodi lymphoidei mesenterici -http://purl.obolibrary.org/obo/UBERON_0002510;anterior fontanel;anterior fontanelle -http://purl.obolibrary.org/obo/UBERON_0002511;trabecula carnea;ventricle trabecula carnea -http://purl.obolibrary.org/obo/UBERON_0002512;corpus luteum;corpora lutea -http://purl.obolibrary.org/obo/UBERON_0002512;corpus luteum;corpus luteum of ovary -http://purl.obolibrary.org/obo/UBERON_0002512;corpus luteum;ovarian corpus luteum -http://purl.obolibrary.org/obo/UBERON_0002513;endochondral bone;ossified chondrogenic bone -http://purl.obolibrary.org/obo/UBERON_0002514;intramembranous bone; -http://purl.obolibrary.org/obo/UBERON_0002515;periosteum; -http://purl.obolibrary.org/obo/UBERON_0002516;epiphyseal plate;epiphyseal growth plate -http://purl.obolibrary.org/obo/UBERON_0002516;epiphyseal plate;epiphyseal growth plate cartilage -http://purl.obolibrary.org/obo/UBERON_0002516;epiphyseal plate;epiphysial plate -http://purl.obolibrary.org/obo/UBERON_0002516;epiphyseal plate;long bone epiphyseal plate -http://purl.obolibrary.org/obo/UBERON_0002517;basicranium;base of cranium -http://purl.obolibrary.org/obo/UBERON_0002517;basicranium;base of skull -http://purl.obolibrary.org/obo/UBERON_0002517;basicranium;basis cranii -http://purl.obolibrary.org/obo/UBERON_0002517;basicranium;cranial base -http://purl.obolibrary.org/obo/UBERON_0002518;otolith organ; -http://purl.obolibrary.org/obo/UBERON_0002519;otolithic part of statoconial membrane;otolith layer of statoconial membrane -http://purl.obolibrary.org/obo/UBERON_0002520;submandibular lymph node;submandibular node -http://purl.obolibrary.org/obo/UBERON_0002521;elastic tissue;elastic connective tissue -http://purl.obolibrary.org/obo/UBERON_0002521;elastic tissue;textus connectivus elasticus -http://purl.obolibrary.org/obo/UBERON_0002522;tunica media; -http://purl.obolibrary.org/obo/UBERON_0002523;tunica intima; -http://purl.obolibrary.org/obo/UBERON_0002524;mediastinal lymph node;mediastinal node -http://purl.obolibrary.org/obo/UBERON_0002525;brachial lymph node; -http://purl.obolibrary.org/obo/UBERON_0002526;lumbar lymph node; -http://purl.obolibrary.org/obo/UBERON_0002527;pancreatic lymph node;lymph node of pancreas -http://purl.obolibrary.org/obo/UBERON_0002527;pancreatic lymph node;pancreas lymph node -http://purl.obolibrary.org/obo/UBERON_0002527;pancreatic lymph node;pancreatic node -http://purl.obolibrary.org/obo/UBERON_0002528;sacral lymph node;sacral node -http://purl.obolibrary.org/obo/UBERON_0002529;limb segment;extremity part -http://purl.obolibrary.org/obo/UBERON_0002529;limb segment;free limb segment -http://purl.obolibrary.org/obo/UBERON_0002529;limb segment;limb region -http://purl.obolibrary.org/obo/UBERON_0002529;limb segment;region of limb -http://purl.obolibrary.org/obo/UBERON_0002529;limb segment;segment of limb -http://purl.obolibrary.org/obo/UBERON_0002529;limb segment;subdivision of limb -http://purl.obolibrary.org/obo/UBERON_0002530;gland;Druese -http://purl.obolibrary.org/obo/UBERON_0002530;gland;glandula -http://purl.obolibrary.org/obo/UBERON_0002530;gland;glandular organ -http://purl.obolibrary.org/obo/UBERON_0002531;paired fin bud;fin bud -http://purl.obolibrary.org/obo/UBERON_0002531;paired fin bud;fin buds -http://purl.obolibrary.org/obo/UBERON_0002532;epiblast (generic);epiblast -http://purl.obolibrary.org/obo/UBERON_0002533;post-anal tail bud;tail bud -http://purl.obolibrary.org/obo/UBERON_0002533;post-anal tail bud;tailbud -http://purl.obolibrary.org/obo/UBERON_0002534;paired fin;pelvic/pectoral fin -http://purl.obolibrary.org/obo/UBERON_0002535;gill; -http://purl.obolibrary.org/obo/UBERON_0002536;arthropod sensillum;sensillum -http://purl.obolibrary.org/obo/UBERON_0002537;hermaphrodite gonad;hermaphrodite genitalia -http://purl.obolibrary.org/obo/UBERON_0002538;hatching gland; -http://purl.obolibrary.org/obo/UBERON_0002539;pharyngeal arch;pharyngeal arches -http://purl.obolibrary.org/obo/UBERON_0002540;lateral line system; -http://purl.obolibrary.org/obo/UBERON_0002541;germ ring; -http://purl.obolibrary.org/obo/UBERON_0002542;scale;scale (sensu Metazoa) -http://purl.obolibrary.org/obo/UBERON_0002544;digit;acropodial unit -http://purl.obolibrary.org/obo/UBERON_0002544;digit;digit (phalangeal portion) plus soft tissue -http://purl.obolibrary.org/obo/UBERON_0002544;digit;limb digit -http://purl.obolibrary.org/obo/UBERON_0002546;cranial placode;ectodermal cranial placode -http://purl.obolibrary.org/obo/UBERON_0002547;tadpole; -http://purl.obolibrary.org/obo/UBERON_0002548;larva;larval organism -http://purl.obolibrary.org/obo/UBERON_0002549;ventral trigeminal tract;anterior trigeminothalamic tract -http://purl.obolibrary.org/obo/UBERON_0002549;ventral trigeminal tract;tractus trigeminothalamicus anterior -http://purl.obolibrary.org/obo/UBERON_0002549;ventral trigeminal tract;trigeminal lemniscus-2 -http://purl.obolibrary.org/obo/UBERON_0002549;ventral trigeminal tract;ventral crossed tract -http://purl.obolibrary.org/obo/UBERON_0002549;ventral trigeminal tract;ventral secondary ascending tract of V -http://purl.obolibrary.org/obo/UBERON_0002549;ventral trigeminal tract;ventral trigeminal pathway -http://purl.obolibrary.org/obo/UBERON_0002549;ventral trigeminal tract;ventral trigeminothalamic tract -http://purl.obolibrary.org/obo/UBERON_0002550;anterior hypothalamic region;anterior hypothalamic area -http://purl.obolibrary.org/obo/UBERON_0002550;anterior hypothalamic region;chiasmal zone -http://purl.obolibrary.org/obo/UBERON_0002551;interstitial nucleus of Cajal;ICjl -http://purl.obolibrary.org/obo/UBERON_0002551;interstitial nucleus of Cajal;NIC -http://purl.obolibrary.org/obo/UBERON_0002551;interstitial nucleus of Cajal;interstitial nucleus -http://purl.obolibrary.org/obo/UBERON_0002551;interstitial nucleus of Cajal;interstitial nucleus of Cajal -http://purl.obolibrary.org/obo/UBERON_0002551;interstitial nucleus of Cajal;interstitial nucleus of medial longitudinal fasciculus -http://purl.obolibrary.org/obo/UBERON_0002551;interstitial nucleus of Cajal;interstitial nucleus of medial longitudinal fasciculus (Crosby) -http://purl.obolibrary.org/obo/UBERON_0002551;interstitial nucleus of Cajal;interstitial nucleus of the medial longitudinal fascicle (Boyce 1895) -http://purl.obolibrary.org/obo/UBERON_0002551;interstitial nucleus of Cajal;interstitial nucleus of the medial longitudinal fasciculus -http://purl.obolibrary.org/obo/UBERON_0002551;interstitial nucleus of Cajal;nucleus interstitialis -http://purl.obolibrary.org/obo/UBERON_0002551;interstitial nucleus of Cajal;nucleus interstitialis Cajal -http://purl.obolibrary.org/obo/UBERON_0002551;interstitial nucleus of Cajal;nucleus of the posterior commissure (Kvlliker) -http://purl.obolibrary.org/obo/UBERON_0002552;vestibulocerebellar tract;vestibulocerebellar fibers -http://purl.obolibrary.org/obo/UBERON_0002553;anatomical cavity; -http://purl.obolibrary.org/obo/UBERON_0002555;intermediate hypothalamic region;area hypothalamica intermedia -http://purl.obolibrary.org/obo/UBERON_0002555;intermediate hypothalamic region;intermediate hypothalamic area -http://purl.obolibrary.org/obo/UBERON_0002556;corticotectal tract;corticotectal fibers -http://purl.obolibrary.org/obo/UBERON_0002556;corticotectal tract;corticotectal fibres -http://purl.obolibrary.org/obo/UBERON_0002556;corticotectal tract;fibrae corticotectales -http://purl.obolibrary.org/obo/UBERON_0002557;linear nucleus; -http://purl.obolibrary.org/obo/UBERON_0002558;organ cavity;cavity of organ -http://purl.obolibrary.org/obo/UBERON_0002559;medullary reticular formation;bulb reticular formation -http://purl.obolibrary.org/obo/UBERON_0002559;medullary reticular formation;bulbar reticular formation -http://purl.obolibrary.org/obo/UBERON_0002559;medullary reticular formation;medulla oblongata reticular formation -http://purl.obolibrary.org/obo/UBERON_0002559;medullary reticular formation;medulla oblonmgata reticular formation -http://purl.obolibrary.org/obo/UBERON_0002559;medullary reticular formation;medullary reticular nucleus -http://purl.obolibrary.org/obo/UBERON_0002559;medullary reticular formation;metepencephalon reticular formation -http://purl.obolibrary.org/obo/UBERON_0002559;medullary reticular formation;reticular formation of bulb -http://purl.obolibrary.org/obo/UBERON_0002559;medullary reticular formation;reticular formation of medulla -http://purl.obolibrary.org/obo/UBERON_0002559;medullary reticular formation;reticular formation of medulla oblongata -http://purl.obolibrary.org/obo/UBERON_0002559;medullary reticular formation;reticular formation of medulla oblonmgata -http://purl.obolibrary.org/obo/UBERON_0002559;medullary reticular formation;reticular formation of metepencephalon -http://purl.obolibrary.org/obo/UBERON_0002559;medullary reticular formation;rhombencephalic reticular formation -http://purl.obolibrary.org/obo/UBERON_0002560;temporal operculum;facies supratemporalis -http://purl.obolibrary.org/obo/UBERON_0002561;lumen of central nervous system;cavity of neuraxis -http://purl.obolibrary.org/obo/UBERON_0002561;lumen of central nervous system;cavity of ventricular system of neuraxis -http://purl.obolibrary.org/obo/UBERON_0002561;lumen of central nervous system;neuraxis cavity -http://purl.obolibrary.org/obo/UBERON_0002561;lumen of central nervous system;neuraxis lumen -http://purl.obolibrary.org/obo/UBERON_0002562;superior frontal sulcus;sulcus f1 -http://purl.obolibrary.org/obo/UBERON_0002562;superior frontal sulcus;sulcus frontalis primus -http://purl.obolibrary.org/obo/UBERON_0002562;superior frontal sulcus;sulcus frontalis superior -http://purl.obolibrary.org/obo/UBERON_0002562;superior frontal sulcus;superior frontal fissure -http://purl.obolibrary.org/obo/UBERON_0002563;central nucleus of inferior colliculus;chief nucleus of inferior colliculus -http://purl.obolibrary.org/obo/UBERON_0002563;central nucleus of inferior colliculus;inferior colliculus, central nucleus -http://purl.obolibrary.org/obo/UBERON_0002563;central nucleus of inferior colliculus;nucleus centralis colliculi inferioris -http://purl.obolibrary.org/obo/UBERON_0002563;central nucleus of inferior colliculus;nucleus of inferior colliculus (Crosby) -http://purl.obolibrary.org/obo/UBERON_0002564;lateral orbital gyrus; -http://purl.obolibrary.org/obo/UBERON_0002565;olivary pretectal nucleus;nucleus praetectalis olivaris -http://purl.obolibrary.org/obo/UBERON_0002565;olivary pretectal nucleus;olivary nucleus of superior colliculus -http://purl.obolibrary.org/obo/UBERON_0002565;olivary pretectal nucleus;pretectal olivary nucleus -http://purl.obolibrary.org/obo/UBERON_0002566;superior precentral sulcus;precentral dimple -http://purl.obolibrary.org/obo/UBERON_0002566;superior precentral sulcus;sulcus praecentralis superior -http://purl.obolibrary.org/obo/UBERON_0002566;superior precentral sulcus;sulcus precentralis superior -http://purl.obolibrary.org/obo/UBERON_0002566;superior precentral sulcus;superior part of precentral fissure -http://purl.obolibrary.org/obo/UBERON_0002567;basal part of pons;basal part of the pons -http://purl.obolibrary.org/obo/UBERON_0002567;basal part of pons;basal portion of pons -http://purl.obolibrary.org/obo/UBERON_0002567;basal part of pons;base of pons -http://purl.obolibrary.org/obo/UBERON_0002567;basal part of pons;basilar part of pons -http://purl.obolibrary.org/obo/UBERON_0002567;basal part of pons;basilar pons -http://purl.obolibrary.org/obo/UBERON_0002567;basal part of pons;basis pontis -http://purl.obolibrary.org/obo/UBERON_0002567;basal part of pons;pars anterior pontis -http://purl.obolibrary.org/obo/UBERON_0002567;basal part of pons;pars basilaris pontis -http://purl.obolibrary.org/obo/UBERON_0002567;basal part of pons;pars ventralis pontis -http://purl.obolibrary.org/obo/UBERON_0002567;basal part of pons;pons proper -http://purl.obolibrary.org/obo/UBERON_0002567;basal part of pons;ventral pons -http://purl.obolibrary.org/obo/UBERON_0002567;basal part of pons;ventral portion of pons -http://purl.obolibrary.org/obo/UBERON_0002568;amiculum of dentate nucleus;dentate nuclear amiculum -http://purl.obolibrary.org/obo/UBERON_0002569;transverse temporal sulcus; -http://purl.obolibrary.org/obo/UBERON_0002570;medial orbital gyrus; -http://purl.obolibrary.org/obo/UBERON_0002571;external nucleus of inferior colliculus;nucleus externus colliculi inferioris -http://purl.obolibrary.org/obo/UBERON_0002571;external nucleus of inferior colliculus;nucleus lateralis colliculi inferioris -http://purl.obolibrary.org/obo/UBERON_0002572;principal pretectal nucleus; -http://purl.obolibrary.org/obo/UBERON_0002573;pontine reticular formation;formatio reticularis pontis -http://purl.obolibrary.org/obo/UBERON_0002573;pontine reticular formation;pons of varolius reticular formation -http://purl.obolibrary.org/obo/UBERON_0002573;pontine reticular formation;pons reticular formation -http://purl.obolibrary.org/obo/UBERON_0002573;pontine reticular formation;pontine reticular nucleus -http://purl.obolibrary.org/obo/UBERON_0002573;pontine reticular formation;pontine reticular nucleus rostral part -http://purl.obolibrary.org/obo/UBERON_0002573;pontine reticular formation;reticular formation of pons -http://purl.obolibrary.org/obo/UBERON_0002573;pontine reticular formation;reticular formation of pons of varolius -http://purl.obolibrary.org/obo/UBERON_0002575;posterior orbital gyrus; -http://purl.obolibrary.org/obo/UBERON_0002576;temporal pole;polus temporalis -http://purl.obolibrary.org/obo/UBERON_0002577;pericentral nucleus of inferior colliculus;cortex of inferior colliculus -http://purl.obolibrary.org/obo/UBERON_0002577;pericentral nucleus of inferior colliculus;nucleus pericentralis colliculi inferioris -http://purl.obolibrary.org/obo/UBERON_0002578;sublentiform nucleus;nucleus sublentiformis -http://purl.obolibrary.org/obo/UBERON_0002580;brachium of superior colliculus;brachium colliculi cranialis -http://purl.obolibrary.org/obo/UBERON_0002580;brachium of superior colliculus;brachium colliculi rostralis -http://purl.obolibrary.org/obo/UBERON_0002580;brachium of superior colliculus;brachium colliculi superioris -http://purl.obolibrary.org/obo/UBERON_0002580;brachium of superior colliculus;brachium of the superior colliculus -http://purl.obolibrary.org/obo/UBERON_0002580;brachium of superior colliculus;brachium quadrigeminum superius -http://purl.obolibrary.org/obo/UBERON_0002580;brachium of superior colliculus;superior brachium -http://purl.obolibrary.org/obo/UBERON_0002580;brachium of superior colliculus;superior collicular brachium -http://purl.obolibrary.org/obo/UBERON_0002580;brachium of superior colliculus;superior colliculus brachium -http://purl.obolibrary.org/obo/UBERON_0002580;brachium of superior colliculus;superior quadrigeminal brachium -http://purl.obolibrary.org/obo/UBERON_0002581;postcentral gyrus;gyrus centralis posterior -http://purl.obolibrary.org/obo/UBERON_0002581;postcentral gyrus;gyrus postcentralis -http://purl.obolibrary.org/obo/UBERON_0002581;postcentral gyrus;post central gyrus -http://purl.obolibrary.org/obo/UBERON_0002581;postcentral gyrus;postcentral convolution -http://purl.obolibrary.org/obo/UBERON_0002581;postcentral gyrus;posterior central gyrus -http://purl.obolibrary.org/obo/UBERON_0002581;postcentral gyrus;postrolandic gyrus -http://purl.obolibrary.org/obo/UBERON_0002581;postcentral gyrus;somatosensory cortex -http://purl.obolibrary.org/obo/UBERON_0002582;anterior calcarine sulcus;anterior calcarine fissure -http://purl.obolibrary.org/obo/UBERON_0002582;anterior calcarine sulcus;sulcus calcarinus anterior -http://purl.obolibrary.org/obo/UBERON_0002583;commissure of superior colliculus;anterior colliculus commissure -http://purl.obolibrary.org/obo/UBERON_0002583;commissure of superior colliculus;anterior corpus quadrigeminum commissure -http://purl.obolibrary.org/obo/UBERON_0002583;commissure of superior colliculus;commissure of anterior colliculus -http://purl.obolibrary.org/obo/UBERON_0002583;commissure of superior colliculus;commissure of anterior corpus quadrigeminum -http://purl.obolibrary.org/obo/UBERON_0002583;commissure of superior colliculus;commissure of cranial colliculus -http://purl.obolibrary.org/obo/UBERON_0002583;commissure of superior colliculus;commissure of optic tectum -http://purl.obolibrary.org/obo/UBERON_0002583;commissure of superior colliculus;commissure of superior colliculi -http://purl.obolibrary.org/obo/UBERON_0002583;commissure of superior colliculus;cranial colliculus commissure -http://purl.obolibrary.org/obo/UBERON_0002583;commissure of superior colliculus;intertectal commissure -http://purl.obolibrary.org/obo/UBERON_0002583;commissure of superior colliculus;optic tectum commissure -http://purl.obolibrary.org/obo/UBERON_0002583;commissure of superior colliculus;superior colliculus commissure -http://purl.obolibrary.org/obo/UBERON_0002585;central tegmental tract of midbrain; -http://purl.obolibrary.org/obo/UBERON_0002586;calcarine sulcus;calcarine fissure -http://purl.obolibrary.org/obo/UBERON_0002586;calcarine sulcus;sulcus calcarinus -http://purl.obolibrary.org/obo/UBERON_0002587;nucleus subceruleus;nucleus subcaeruleus -http://purl.obolibrary.org/obo/UBERON_0002587;nucleus subceruleus;nucleus subcoeruleus -http://purl.obolibrary.org/obo/UBERON_0002587;nucleus subceruleus;subcaerulean nucleus -http://purl.obolibrary.org/obo/UBERON_0002587;nucleus subceruleus;subceruleus nucleus -http://purl.obolibrary.org/obo/UBERON_0002587;nucleus subceruleus;subcoeruleus nucleus -http://purl.obolibrary.org/obo/UBERON_0002588;decussation of superior cerebellar peduncle;Wernekink's decussation -http://purl.obolibrary.org/obo/UBERON_0002588;decussation of superior cerebellar peduncle;decussatio pedunculorum cerebellarium superiorum -http://purl.obolibrary.org/obo/UBERON_0002588;decussation of superior cerebellar peduncle;decussation of brachium conjunctivum -http://purl.obolibrary.org/obo/UBERON_0002588;decussation of superior cerebellar peduncle;decussation of superior cerebellar peduncles -http://purl.obolibrary.org/obo/UBERON_0002588;decussation of superior cerebellar peduncle;superior cerebellar peduncle decussation -http://purl.obolibrary.org/obo/UBERON_0002589;lateral corticospinal tract;corticospinal tract, crossed -http://purl.obolibrary.org/obo/UBERON_0002589;lateral corticospinal tract;crossed pyramidal tract -http://purl.obolibrary.org/obo/UBERON_0002589;lateral corticospinal tract;lateral pyramidal tract -http://purl.obolibrary.org/obo/UBERON_0002589;lateral corticospinal tract;pyramidal tract, crossed -http://purl.obolibrary.org/obo/UBERON_0002590;Prepyriform area;(pre-)piriform cortex -http://purl.obolibrary.org/obo/UBERON_0002590;Prepyriform area;area prepiriformis -http://purl.obolibrary.org/obo/UBERON_0002590;Prepyriform area;eupalaeocortex -http://purl.obolibrary.org/obo/UBERON_0002590;Prepyriform area;gyrus olfactorius lateralis -http://purl.obolibrary.org/obo/UBERON_0002590;Prepyriform area;lateral olfactory gyrus -http://purl.obolibrary.org/obo/UBERON_0002590;Prepyriform area;palaeocortex II -http://purl.obolibrary.org/obo/UBERON_0002590;Prepyriform area;piriform cortex (price) -http://purl.obolibrary.org/obo/UBERON_0002590;Prepyriform area;piriform olfactory cortex -http://purl.obolibrary.org/obo/UBERON_0002590;Prepyriform area;prepiriform cortex -http://purl.obolibrary.org/obo/UBERON_0002590;Prepyriform area;prepiriform region -http://purl.obolibrary.org/obo/UBERON_0002590;Prepyriform area;prepyriform cortex -http://purl.obolibrary.org/obo/UBERON_0002590;Prepyriform area;pyriform area -http://purl.obolibrary.org/obo/UBERON_0002590;Prepyriform area;regio praepiriformis -http://purl.obolibrary.org/obo/UBERON_0002590;prepyriform area;(pre-)piriform cortex -http://purl.obolibrary.org/obo/UBERON_0002590;prepyriform area;area prepiriformis -http://purl.obolibrary.org/obo/UBERON_0002590;prepyriform area;eupalaeocortex -http://purl.obolibrary.org/obo/UBERON_0002590;prepyriform area;gyrus olfactorius lateralis -http://purl.obolibrary.org/obo/UBERON_0002590;prepyriform area;lateral olfactory gyrus -http://purl.obolibrary.org/obo/UBERON_0002590;prepyriform area;palaeocortex II -http://purl.obolibrary.org/obo/UBERON_0002590;prepyriform area;piriform cortex (price) -http://purl.obolibrary.org/obo/UBERON_0002590;prepyriform area;piriform olfactory cortex -http://purl.obolibrary.org/obo/UBERON_0002590;prepyriform area;prepiriform cortex -http://purl.obolibrary.org/obo/UBERON_0002590;prepyriform area;prepiriform region -http://purl.obolibrary.org/obo/UBERON_0002590;prepyriform area;prepyriform cortex -http://purl.obolibrary.org/obo/UBERON_0002590;prepyriform area;pyriform area -http://purl.obolibrary.org/obo/UBERON_0002590;prepyriform area;regio praepiriformis -http://purl.obolibrary.org/obo/UBERON_0002591;oral part of spinal trigeminal nucleus; -http://purl.obolibrary.org/obo/UBERON_0002592;juxtarestiform body; -http://purl.obolibrary.org/obo/UBERON_0002593;orbital operculum;operculum orbitale -http://purl.obolibrary.org/obo/UBERON_0002593;orbital operculum;pars orbitalis of frontal operculum (Ono) -http://purl.obolibrary.org/obo/UBERON_0002594;dentatothalamic tract;dentatothalamic fibers -http://purl.obolibrary.org/obo/UBERON_0002595;orbital sulcus;cruciate sulcus of campbell -http://purl.obolibrary.org/obo/UBERON_0002595;orbital sulcus;orbital sulci -http://purl.obolibrary.org/obo/UBERON_0002595;orbital sulcus;sulci orbitalis -http://purl.obolibrary.org/obo/UBERON_0002595;orbital sulcus;sulcus orbitalis -http://purl.obolibrary.org/obo/UBERON_0002596;ventral posterior nucleus of thalamus;nucleus ventrales posteriores -http://purl.obolibrary.org/obo/UBERON_0002596;ventral posterior nucleus of thalamus;nucleus ventralis posterior -http://purl.obolibrary.org/obo/UBERON_0002596;ventral posterior nucleus of thalamus;ventral posterior nucleus -http://purl.obolibrary.org/obo/UBERON_0002596;ventral posterior nucleus of thalamus;ventral posterior thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0002596;ventral posterior nucleus of thalamus;ventrobasal complex -http://purl.obolibrary.org/obo/UBERON_0002596;ventral posterior nucleus of thalamus;ventrobasal nucleus -http://purl.obolibrary.org/obo/UBERON_0002597;principal sensory nucleus of trigeminal nerve;chief sensory nucleus -http://purl.obolibrary.org/obo/UBERON_0002597;principal sensory nucleus of trigeminal nerve;chief sensory trigeminal nucleus -http://purl.obolibrary.org/obo/UBERON_0002597;principal sensory nucleus of trigeminal nerve;chief trigeminal sensory nucleus -http://purl.obolibrary.org/obo/UBERON_0002597;principal sensory nucleus of trigeminal nerve;main sensory nucleus -http://purl.obolibrary.org/obo/UBERON_0002597;principal sensory nucleus of trigeminal nerve;main sensory nucleus of cranial nerve v -http://purl.obolibrary.org/obo/UBERON_0002597;principal sensory nucleus of trigeminal nerve;nucleus pontinus nervi trigeminalis -http://purl.obolibrary.org/obo/UBERON_0002597;principal sensory nucleus of trigeminal nerve;nucleus pontinus nervi trigemini -http://purl.obolibrary.org/obo/UBERON_0002597;principal sensory nucleus of trigeminal nerve;nucleus principalis nervi trigemini -http://purl.obolibrary.org/obo/UBERON_0002597;principal sensory nucleus of trigeminal nerve;nucleus sensibilis superior nervi trigemini -http://purl.obolibrary.org/obo/UBERON_0002597;principal sensory nucleus of trigeminal nerve;nucleus sensorius principalis nervi trigemini -http://purl.obolibrary.org/obo/UBERON_0002597;principal sensory nucleus of trigeminal nerve;nucleus sensorius superior nervi trigemini -http://purl.obolibrary.org/obo/UBERON_0002597;principal sensory nucleus of trigeminal nerve;pontine nucleus -http://purl.obolibrary.org/obo/UBERON_0002597;principal sensory nucleus of trigeminal nerve;pontine nucleus of the trigeminal nerve -http://purl.obolibrary.org/obo/UBERON_0002597;principal sensory nucleus of trigeminal nerve;primary nucleus of the trigeminal nerve -http://purl.obolibrary.org/obo/UBERON_0002597;principal sensory nucleus of trigeminal nerve;principal sensory nucleus -http://purl.obolibrary.org/obo/UBERON_0002597;principal sensory nucleus of trigeminal nerve;principal sensory nucleus of the trigeminal -http://purl.obolibrary.org/obo/UBERON_0002597;principal sensory nucleus of trigeminal nerve;principal sensory nucleus of the trigeminal nerve -http://purl.obolibrary.org/obo/UBERON_0002597;principal sensory nucleus of trigeminal nerve;principal sensory nucleus of trigeminal nerve -http://purl.obolibrary.org/obo/UBERON_0002597;principal sensory nucleus of trigeminal nerve;principal sensory trigeminal nucleus -http://purl.obolibrary.org/obo/UBERON_0002597;principal sensory nucleus of trigeminal nerve;principal trigeminal nucleus -http://purl.obolibrary.org/obo/UBERON_0002597;principal sensory nucleus of trigeminal nerve;superior trigeminal nucleus -http://purl.obolibrary.org/obo/UBERON_0002597;principal sensory nucleus of trigeminal nerve;superior trigeminal sensory nucleus -http://purl.obolibrary.org/obo/UBERON_0002597;principal sensory nucleus of trigeminal nerve;trigeminal V chief sensory nucleus -http://purl.obolibrary.org/obo/UBERON_0002597;principal sensory nucleus of trigeminal nerve;trigeminal V principal sensory nucleus -http://purl.obolibrary.org/obo/UBERON_0002597;principal sensory nucleus of trigeminal nerve;trigeminal nerve superior sensory nucleus -http://purl.obolibrary.org/obo/UBERON_0002598;paracentral sulcus;sulcus subcentralis medialis -http://purl.obolibrary.org/obo/UBERON_0002599;medial olfactory gyrus; -http://purl.obolibrary.org/obo/UBERON_0002600;limbic lobe;fornicate convolution -http://purl.obolibrary.org/obo/UBERON_0002600;limbic lobe;fornicate gyrus -http://purl.obolibrary.org/obo/UBERON_0002600;limbic lobe;fornicate lobe -http://purl.obolibrary.org/obo/UBERON_0002600;limbic lobe;grande lobe limbique of Broca -http://purl.obolibrary.org/obo/UBERON_0002600;limbic lobe;gyrus fornicatus -http://purl.obolibrary.org/obo/UBERON_0002600;limbic lobe;limbic lobe (carpenter) -http://purl.obolibrary.org/obo/UBERON_0002600;limbic lobe;lobus limbicus -http://purl.obolibrary.org/obo/UBERON_0002601;fasciolar gyrus;retrosplenial gyrus of hippocampus -http://purl.obolibrary.org/obo/UBERON_0002602;emboliform nucleus;anterior interposed nucleus -http://purl.obolibrary.org/obo/UBERON_0002602;emboliform nucleus;anterior interpositus nucleus -http://purl.obolibrary.org/obo/UBERON_0002602;emboliform nucleus;cerebellar emboliform nucleus -http://purl.obolibrary.org/obo/UBERON_0002602;emboliform nucleus;cerebellum emboliform nucleus -http://purl.obolibrary.org/obo/UBERON_0002602;emboliform nucleus;embolus -http://purl.obolibrary.org/obo/UBERON_0002602;emboliform nucleus;lateral interpositus (emboliform) nucleus -http://purl.obolibrary.org/obo/UBERON_0002602;emboliform nucleus;nucleus interpositus anterior -http://purl.obolibrary.org/obo/UBERON_0002603;paraterminal gyrus;precommissural hippocampus -http://purl.obolibrary.org/obo/UBERON_0002603;paraterminal gyrus;subcallosal gyrus -http://purl.obolibrary.org/obo/UBERON_0002604;ventral nucleus of lateral lemniscus;anterior nucleus of lateral lemniscus -http://purl.obolibrary.org/obo/UBERON_0002604;ventral nucleus of lateral lemniscus;nucleus anterior lemnisci lateralis -http://purl.obolibrary.org/obo/UBERON_0002604;ventral nucleus of lateral lemniscus;nucleus lemnisci lateralis pars ventralis -http://purl.obolibrary.org/obo/UBERON_0002604;ventral nucleus of lateral lemniscus;nucleus lemnisci lateralis ventralis -http://purl.obolibrary.org/obo/UBERON_0002604;ventral nucleus of lateral lemniscus;nucleus of the lateral lemniscus ventral part -http://purl.obolibrary.org/obo/UBERON_0002604;ventral nucleus of lateral lemniscus;nucleus of the lateral lemniscus, ventral part -http://purl.obolibrary.org/obo/UBERON_0002604;ventral nucleus of lateral lemniscus;ventral nucleus of the lateral lemniscus -http://purl.obolibrary.org/obo/UBERON_0002605;precentral operculum;operculum precentrale -http://purl.obolibrary.org/obo/UBERON_0002606;neuropil; -http://purl.obolibrary.org/obo/UBERON_0002607;superior rostral sulcus;sulcus rostralis superior -http://purl.obolibrary.org/obo/UBERON_0002608;caudal part of ventral lateral nucleus;dorsal part of ventral lateral posterior nucleus (jones) -http://purl.obolibrary.org/obo/UBERON_0002608;caudal part of ventral lateral nucleus;nucleus dorsooralis (van buren) -http://purl.obolibrary.org/obo/UBERON_0002608;caudal part of ventral lateral nucleus;nucleus lateralis intermedius mediodorsalis situs dorsalis -http://purl.obolibrary.org/obo/UBERON_0002608;caudal part of ventral lateral nucleus;nucleus ventralis lateralis, pars caudalis -http://purl.obolibrary.org/obo/UBERON_0002608;caudal part of ventral lateral nucleus;ventral lateral nucleus, caudal part -http://purl.obolibrary.org/obo/UBERON_0002608;caudal part of ventral lateral nucleus;ventral lateral thalamic nucleus, caudal part -http://purl.obolibrary.org/obo/UBERON_0002609;spinothalamic tract of midbrain; -http://purl.obolibrary.org/obo/UBERON_0002610;cochlear nuclear complex;cochlear nuclei -http://purl.obolibrary.org/obo/UBERON_0002610;cochlear nuclear complex;nuclei cochleares -http://purl.obolibrary.org/obo/UBERON_0002612;transverse orbital sulcus;sulcus orbitalis transversus -http://purl.obolibrary.org/obo/UBERON_0002613;cerebellum globose nucleus;globose nucleus -http://purl.obolibrary.org/obo/UBERON_0002613;cerebellum globose nucleus;medial interposed nucleus -http://purl.obolibrary.org/obo/UBERON_0002613;cerebellum globose nucleus;medial interpositus (globose) nucleus -http://purl.obolibrary.org/obo/UBERON_0002613;cerebellum globose nucleus;medial interpositus nucleus -http://purl.obolibrary.org/obo/UBERON_0002613;cerebellum globose nucleus;nucleus interpositus posterior -http://purl.obolibrary.org/obo/UBERON_0002613;cerebellum globose nucleus;posterior interposed nucleus -http://purl.obolibrary.org/obo/UBERON_0002613;cerebellum globose nucleus;posterior interpositus nucleus -http://purl.obolibrary.org/obo/UBERON_0002614;medial part of ventral lateral nucleus;nucleus ventralis lateralis thalami, pars medialis -http://purl.obolibrary.org/obo/UBERON_0002614;medial part of ventral lateral nucleus;nucleus ventrooralis medialis (Hassler) -http://purl.obolibrary.org/obo/UBERON_0002614;medial part of ventral lateral nucleus;vMp (Macchi) -http://purl.obolibrary.org/obo/UBERON_0002614;medial part of ventral lateral nucleus;ventral lateral nucleus, medial part -http://purl.obolibrary.org/obo/UBERON_0002614;medial part of ventral lateral nucleus;ventral medial nucleus -http://purl.obolibrary.org/obo/UBERON_0002614;medial part of ventral lateral nucleus;ventral medial nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0002615;ventral tegmental decussation;anterior tegmental decussation -http://purl.obolibrary.org/obo/UBERON_0002615;ventral tegmental decussation;decussatio tegmentalis anterior -http://purl.obolibrary.org/obo/UBERON_0002615;ventral tegmental decussation;decussation of forel -http://purl.obolibrary.org/obo/UBERON_0002615;ventral tegmental decussation;ventral tegmental decussation of forel -http://purl.obolibrary.org/obo/UBERON_0002616;Regional part of brain;anatomical structure of brain -http://purl.obolibrary.org/obo/UBERON_0002616;Regional part of brain;biological structure of brain -http://purl.obolibrary.org/obo/UBERON_0002616;Regional part of brain;brain anatomical structure -http://purl.obolibrary.org/obo/UBERON_0002616;Regional part of brain;brain biological structure -http://purl.obolibrary.org/obo/UBERON_0002616;Regional part of brain;brain part -http://purl.obolibrary.org/obo/UBERON_0002616;Regional part of brain;neuraxis segment -http://purl.obolibrary.org/obo/UBERON_0002616;Regional part of brain;neuroanatomical region -http://purl.obolibrary.org/obo/UBERON_0002616;Regional part of brain;segment of brain -http://purl.obolibrary.org/obo/UBERON_0002616;regional part of brain;anatomical structure of brain -http://purl.obolibrary.org/obo/UBERON_0002616;regional part of brain;biological structure of brain -http://purl.obolibrary.org/obo/UBERON_0002616;regional part of brain;brain anatomical structure -http://purl.obolibrary.org/obo/UBERON_0002616;regional part of brain;brain biological structure -http://purl.obolibrary.org/obo/UBERON_0002616;regional part of brain;brain part -http://purl.obolibrary.org/obo/UBERON_0002616;regional part of brain;neuraxis segment -http://purl.obolibrary.org/obo/UBERON_0002616;regional part of brain;neuroanatomical region -http://purl.obolibrary.org/obo/UBERON_0002616;regional part of brain;segment of brain -http://purl.obolibrary.org/obo/UBERON_0002617;pars postrema of ventral lateral nucleus;nucleus dorsointermedius externus magnocellularis (hassler) -http://purl.obolibrary.org/obo/UBERON_0002617;pars postrema of ventral lateral nucleus;nucleus lateralis intermedius mediodorsalis situs postremus -http://purl.obolibrary.org/obo/UBERON_0002617;pars postrema of ventral lateral nucleus;nucleus ventralis lateralis thalami, pars postrema -http://purl.obolibrary.org/obo/UBERON_0002617;pars postrema of ventral lateral nucleus;posterodorsal part of ventral lateral posterior nucleus (jones) -http://purl.obolibrary.org/obo/UBERON_0002617;pars postrema of ventral lateral nucleus;vLps -http://purl.obolibrary.org/obo/UBERON_0002617;pars postrema of ventral lateral nucleus;ventral lateral nucleus (pars postrema) -http://purl.obolibrary.org/obo/UBERON_0002618;root of trochlear nerve;central part of trochlear nerve -http://purl.obolibrary.org/obo/UBERON_0002618;root of trochlear nerve;trochlear nerve fibers -http://purl.obolibrary.org/obo/UBERON_0002618;root of trochlear nerve;trochlear nerve root -http://purl.obolibrary.org/obo/UBERON_0002618;root of trochlear nerve;trochlear nerve tract -http://purl.obolibrary.org/obo/UBERON_0002620;tuber cinereum; -http://purl.obolibrary.org/obo/UBERON_0002622;preoptic periventricular nucleus;nucleus preopticus periventricularis -http://purl.obolibrary.org/obo/UBERON_0002622;preoptic periventricular nucleus;periventricular preoptic nucleus -http://purl.obolibrary.org/obo/UBERON_0002622;preoptic periventricular nucleus;preoptic periventricular hypothalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0002623;cerebral peduncle;CP -http://purl.obolibrary.org/obo/UBERON_0002623;cerebral peduncle;cerebal peduncle -http://purl.obolibrary.org/obo/UBERON_0002623;cerebral peduncle;cerebral peduncle -http://purl.obolibrary.org/obo/UBERON_0002623;cerebral peduncle;cerebral peduncle (archaic) -http://purl.obolibrary.org/obo/UBERON_0002623;cerebral peduncle;peduncle of midbrain -http://purl.obolibrary.org/obo/UBERON_0002623;cerebral peduncle;pedunculi cerebri -http://purl.obolibrary.org/obo/UBERON_0002623;cerebral peduncle;pedunculus cerebralis -http://purl.obolibrary.org/obo/UBERON_0002623;cerebral peduncle;pedunculus cerebri -http://purl.obolibrary.org/obo/UBERON_0002623;cerebral peduncle;tegmentum -http://purl.obolibrary.org/obo/UBERON_0002624;orbital part of inferior frontal gyrus;gyrus frontalis inferior, pars orbitalis -http://purl.obolibrary.org/obo/UBERON_0002624;orbital part of inferior frontal gyrus;inferior frontal gyrus, orbital part -http://purl.obolibrary.org/obo/UBERON_0002624;orbital part of inferior frontal gyrus;pars orbitalis gyri frontalis inferioris -http://purl.obolibrary.org/obo/UBERON_0002625;median preoptic nucleus;MnPO -http://purl.obolibrary.org/obo/UBERON_0002625;median preoptic nucleus;median preoptic nucleus (Loo) -http://purl.obolibrary.org/obo/UBERON_0002625;median preoptic nucleus;nucleus praeopticus medianus -http://purl.obolibrary.org/obo/UBERON_0002625;median preoptic nucleus;nucleus preopticus medianus -http://purl.obolibrary.org/obo/UBERON_0002625;median preoptic nucleus;periventricular nucleus, preventricular portion -http://purl.obolibrary.org/obo/UBERON_0002626;head of caudate nucleus;caput (caudatus) -http://purl.obolibrary.org/obo/UBERON_0002626;head of caudate nucleus;caudate nuclear head -http://purl.obolibrary.org/obo/UBERON_0002627;capsule of medial geniculate body;capsula corporis geniculati medialis -http://purl.obolibrary.org/obo/UBERON_0002627;capsule of medial geniculate body;medial geniculate body capsule -http://purl.obolibrary.org/obo/UBERON_0002628;tail of caudate nucleus;caudate nuclear tail -http://purl.obolibrary.org/obo/UBERON_0002629;triangular part of inferior frontal gyrus;gyrus frontalis inferior, pars triangularis -http://purl.obolibrary.org/obo/UBERON_0002629;triangular part of inferior frontal gyrus;pars triangularis -http://purl.obolibrary.org/obo/UBERON_0002629;triangular part of inferior frontal gyrus;pars triangularis gyri frontalis inferioris -http://purl.obolibrary.org/obo/UBERON_0002629;triangular part of inferior frontal gyrus;pars triangularis of frontal operculum (Ono) -http://purl.obolibrary.org/obo/UBERON_0002630;body of caudate nucleus;caudate nuclear body -http://purl.obolibrary.org/obo/UBERON_0002630;body of caudate nucleus;corpus (caudatus) -http://purl.obolibrary.org/obo/UBERON_0002631;cerebral crus;cerebral peduncle (clinical definition) -http://purl.obolibrary.org/obo/UBERON_0002631;cerebral crus;crura cerebri -http://purl.obolibrary.org/obo/UBERON_0002631;cerebral crus;crus cerebri -http://purl.obolibrary.org/obo/UBERON_0002632;medial part of medial mammillary nucleus;medial mammillary nucleus (carpenter) -http://purl.obolibrary.org/obo/UBERON_0002632;medial part of medial mammillary nucleus;medial mammillary nucleus, medial part -http://purl.obolibrary.org/obo/UBERON_0002632;medial part of medial mammillary nucleus;medial mammillary nucleus, median part -http://purl.obolibrary.org/obo/UBERON_0002632;medial part of medial mammillary nucleus;medial subdivision of medial mammillary nucleus -http://purl.obolibrary.org/obo/UBERON_0002633;motor nucleus of trigeminal nerve;motor nucleus -http://purl.obolibrary.org/obo/UBERON_0002633;motor nucleus of trigeminal nerve;motor nucleus V -http://purl.obolibrary.org/obo/UBERON_0002633;motor nucleus of trigeminal nerve;motor nucleus of cranial nerve v -http://purl.obolibrary.org/obo/UBERON_0002633;motor nucleus of trigeminal nerve;motor nucleus of the trigeminal -http://purl.obolibrary.org/obo/UBERON_0002633;motor nucleus of trigeminal nerve;motor nucleus of the trigeminal nerve -http://purl.obolibrary.org/obo/UBERON_0002633;motor nucleus of trigeminal nerve;motor nucleus of trigeminal -http://purl.obolibrary.org/obo/UBERON_0002633;motor nucleus of trigeminal nerve;motor nucleus of trigeminal nerve -http://purl.obolibrary.org/obo/UBERON_0002633;motor nucleus of trigeminal nerve;motor trigeminal nucleus -http://purl.obolibrary.org/obo/UBERON_0002633;motor nucleus of trigeminal nerve;nV -http://purl.obolibrary.org/obo/UBERON_0002633;motor nucleus of trigeminal nerve;nucleus motorius nervi trigeminalis -http://purl.obolibrary.org/obo/UBERON_0002633;motor nucleus of trigeminal nerve;nucleus motorius nervi trigemini -http://purl.obolibrary.org/obo/UBERON_0002633;motor nucleus of trigeminal nerve;nucleus motorius trigeminalis -http://purl.obolibrary.org/obo/UBERON_0002633;motor nucleus of trigeminal nerve;trigeminal V motor nucleus -http://purl.obolibrary.org/obo/UBERON_0002633;motor nucleus of trigeminal nerve;trigeminal motor nuclei -http://purl.obolibrary.org/obo/UBERON_0002633;motor nucleus of trigeminal nerve;trigeminal motor nucleus -http://purl.obolibrary.org/obo/UBERON_0002634;anterior nucleus of hypothalamus;anterior hypothalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0002634;anterior nucleus of hypothalamus;area hypothalamica rostralis -http://purl.obolibrary.org/obo/UBERON_0002634;anterior nucleus of hypothalamus;fundamental gray substance -http://purl.obolibrary.org/obo/UBERON_0002634;anterior nucleus of hypothalamus;parvocellular nucleus of hypothalamus -http://purl.obolibrary.org/obo/UBERON_0002636;lateral pulvinar nucleus;lateral pulvinar nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0002636;lateral pulvinar nucleus;nucleus pulvinaris lateralis -http://purl.obolibrary.org/obo/UBERON_0002636;lateral pulvinar nucleus;nucleus pulvinaris lateralis (Hassler) -http://purl.obolibrary.org/obo/UBERON_0002636;lateral pulvinar nucleus;nucleus pulvinaris lateralis thalami -http://purl.obolibrary.org/obo/UBERON_0002636;lateral pulvinar nucleus;nucleus pulvinaris thalami, pars lateralis -http://purl.obolibrary.org/obo/UBERON_0002637;ventral anterior nucleus of thalamus;nucleus lateropolaris -http://purl.obolibrary.org/obo/UBERON_0002637;ventral anterior nucleus of thalamus;nucleus ventralis anterior -http://purl.obolibrary.org/obo/UBERON_0002637;ventral anterior nucleus of thalamus;nucleus ventralis anterior thalami -http://purl.obolibrary.org/obo/UBERON_0002637;ventral anterior nucleus of thalamus;nucleus ventralis thalami anterior -http://purl.obolibrary.org/obo/UBERON_0002637;ventral anterior nucleus of thalamus;ventral anterior nucleus -http://purl.obolibrary.org/obo/UBERON_0002637;ventral anterior nucleus of thalamus;ventral anterior nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0002637;ventral anterior nucleus of thalamus;ventral anterior thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0002637;ventral anterior nucleus of thalamus;ventroanterior nucleus of the thalamus -http://purl.obolibrary.org/obo/UBERON_0002637;ventral anterior nucleus of thalamus;ventroanterior thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0002638;medial pulvinar nucleus;nucleus pulvinaris medialis -http://purl.obolibrary.org/obo/UBERON_0002638;medial pulvinar nucleus;nucleus pulvinaris medialis thalami -http://purl.obolibrary.org/obo/UBERON_0002638;medial pulvinar nucleus;nucleus pulvinaris thalami, pars medialis -http://purl.obolibrary.org/obo/UBERON_0002639;midbrain reticular formation;MBRF -http://purl.obolibrary.org/obo/UBERON_0002639;midbrain reticular formation;formatio reticularis mesencephali -http://purl.obolibrary.org/obo/UBERON_0002639;midbrain reticular formation;formatio reticularis tegmentalis -http://purl.obolibrary.org/obo/UBERON_0002639;midbrain reticular formation;formatio reticularis tegmenti mesencephali -http://purl.obolibrary.org/obo/UBERON_0002639;midbrain reticular formation;reticular formation of midbrain -http://purl.obolibrary.org/obo/UBERON_0002639;midbrain reticular formation;substantia reticularis mesencephali -http://purl.obolibrary.org/obo/UBERON_0002639;midbrain reticular formation;tegmental reticular formation -http://purl.obolibrary.org/obo/UBERON_0002640;cuneocerebellar tract;cuneocerebellar fibers -http://purl.obolibrary.org/obo/UBERON_0002641;oral pulvinar nucleus;anterior pulvinar nucleus -http://purl.obolibrary.org/obo/UBERON_0002641;oral pulvinar nucleus;nucleus pulvinaris anterior -http://purl.obolibrary.org/obo/UBERON_0002641;oral pulvinar nucleus;nucleus pulvinaris oralis -http://purl.obolibrary.org/obo/UBERON_0002641;oral pulvinar nucleus;nucleus pulvinaris oralis thalami -http://purl.obolibrary.org/obo/UBERON_0002641;oral pulvinar nucleus;oral nuclear group of pulvinar -http://purl.obolibrary.org/obo/UBERON_0002641;oral pulvinar nucleus;oral part of pulvinar -http://purl.obolibrary.org/obo/UBERON_0002641;oral pulvinar nucleus;oral portion of pulvinar -http://purl.obolibrary.org/obo/UBERON_0002642;cuneate fasciculus of medulla;fasciculus cuneatus (myelencephali) -http://purl.obolibrary.org/obo/UBERON_0002643;decussation of medial lemniscus;decussation of lemnisci -http://purl.obolibrary.org/obo/UBERON_0002643;decussation of medial lemniscus;decussation of lemniscus -http://purl.obolibrary.org/obo/UBERON_0002643;decussation of medial lemniscus;decussation of medial lemnisci -http://purl.obolibrary.org/obo/UBERON_0002643;decussation of medial lemniscus;medial lemniscus decussation -http://purl.obolibrary.org/obo/UBERON_0002643;decussation of medial lemniscus;medullary sensory decussation -http://purl.obolibrary.org/obo/UBERON_0002643;decussation of medial lemniscus;sensory decussation -http://purl.obolibrary.org/obo/UBERON_0002644;intermediate orbital gyrus; -http://purl.obolibrary.org/obo/UBERON_0002645;densocellular part of medial dorsal nucleus;nucleus medialis dorsalis paralamellaris (Hassler) -http://purl.obolibrary.org/obo/UBERON_0002645;densocellular part of medial dorsal nucleus;nucleus medialis dorsalis, pars densocellularis -http://purl.obolibrary.org/obo/UBERON_0002646;dorsal longitudinal fasciculus of medulla;bundle of Schutz of medulla -http://purl.obolibrary.org/obo/UBERON_0002646;dorsal longitudinal fasciculus of medulla;fasciculus of Schutz of medulla -http://purl.obolibrary.org/obo/UBERON_0002646;dorsal longitudinal fasciculus of medulla;medulla bundle of Schutz -http://purl.obolibrary.org/obo/UBERON_0002646;dorsal longitudinal fasciculus of medulla;medulla dorsal longitudinal fasciculus -http://purl.obolibrary.org/obo/UBERON_0002646;dorsal longitudinal fasciculus of medulla;medulla fasciculus of Schutz -http://purl.obolibrary.org/obo/UBERON_0002646;dorsal longitudinal fasciculus of medulla;medulla posterior longitudinal fasciculus -http://purl.obolibrary.org/obo/UBERON_0002646;dorsal longitudinal fasciculus of medulla;posterior longitudinal fasciculus of medulla -http://purl.obolibrary.org/obo/UBERON_0002647;magnocellular part of medial dorsal nucleus;MDmc -http://purl.obolibrary.org/obo/UBERON_0002647;magnocellular part of medial dorsal nucleus;dorsomedial thalamic nucleus, magnocellular part -http://purl.obolibrary.org/obo/UBERON_0002647;magnocellular part of medial dorsal nucleus;magnocellular mediodorsal nucleus -http://purl.obolibrary.org/obo/UBERON_0002647;magnocellular part of medial dorsal nucleus;magnocellular nucleus of medial dorsal nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0002647;magnocellular part of medial dorsal nucleus;magnocellular part of dorsomedial nucleus -http://purl.obolibrary.org/obo/UBERON_0002647;magnocellular part of medial dorsal nucleus;magnocellular part of mediodorsal nucleus -http://purl.obolibrary.org/obo/UBERON_0002647;magnocellular part of medial dorsal nucleus;mediodorsal nucleus of the thalamus, medial part -http://purl.obolibrary.org/obo/UBERON_0002647;magnocellular part of medial dorsal nucleus;nucleus medialis dorsalis, pars magnocellularis -http://purl.obolibrary.org/obo/UBERON_0002647;magnocellular part of medial dorsal nucleus;nucleus medialis fibrosus -http://purl.obolibrary.org/obo/UBERON_0002647;magnocellular part of medial dorsal nucleus;nucleus medialis fibrosus (hassler) -http://purl.obolibrary.org/obo/UBERON_0002647;magnocellular part of medial dorsal nucleus;pars magnocellularis nuclei mediodorsalis thalami -http://purl.obolibrary.org/obo/UBERON_0002648;anterior median eminence; -http://purl.obolibrary.org/obo/UBERON_0002649;dorsolateral fasciculus of medulla;dorsolateral fasciculus -http://purl.obolibrary.org/obo/UBERON_0002649;dorsolateral fasciculus of medulla;dorsolateral tract -http://purl.obolibrary.org/obo/UBERON_0002649;dorsolateral fasciculus of medulla;lissauer's tract -http://purl.obolibrary.org/obo/UBERON_0002649;dorsolateral fasciculus of medulla;posterolateral fasciculus -http://purl.obolibrary.org/obo/UBERON_0002649;dorsolateral fasciculus of medulla;posterolateral tract -http://purl.obolibrary.org/obo/UBERON_0002649;dorsolateral fasciculus of medulla;tract of Lissauer -http://purl.obolibrary.org/obo/UBERON_0002649;dorsolateral fasciculus of medulla;tractus posterolateralis -http://purl.obolibrary.org/obo/UBERON_0002649;dorsolateral fasciculus of medulla;zone of Lissauer -http://purl.obolibrary.org/obo/UBERON_0002650;paralaminar part of medial dorsal nucleus;dorsomedial thalamic nucleus, paralaminar part -http://purl.obolibrary.org/obo/UBERON_0002650;paralaminar part of medial dorsal nucleus;mediodorsal thalamic nucleus, paralaminar part -http://purl.obolibrary.org/obo/UBERON_0002650;paralaminar part of medial dorsal nucleus;nucleus medialis dorsalis caudalis (hassler) -http://purl.obolibrary.org/obo/UBERON_0002650;paralaminar part of medial dorsal nucleus;nucleus medialis dorsalis thalami, pars multiformis -http://purl.obolibrary.org/obo/UBERON_0002650;paralaminar part of medial dorsal nucleus;nucleus medialis dorsalis, pars multiformis -http://purl.obolibrary.org/obo/UBERON_0002650;paralaminar part of medial dorsal nucleus;nucleus medialis dorsalis, pars paralaminaris -http://purl.obolibrary.org/obo/UBERON_0002650;paralaminar part of medial dorsal nucleus;paralaminar part of dorsomedial nucleus -http://purl.obolibrary.org/obo/UBERON_0002650;paralaminar part of medial dorsal nucleus;paralaminar part of medial dorsal nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0002650;paralaminar part of medial dorsal nucleus;pars paralaminaris nuclei mediodorsalis thalami -http://purl.obolibrary.org/obo/UBERON_0002650;paralaminar part of medial dorsal nucleus;pars paralaminaris of medial dorsal nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0002650;paralaminar part of medial dorsal nucleus;ventral mediodorsal nucleus -http://purl.obolibrary.org/obo/UBERON_0002651;anterior horn of lateral ventricle;anterior horn of lateral ventricle -http://purl.obolibrary.org/obo/UBERON_0002651;anterior horn of lateral ventricle;cornu anterius (ventriculi lateralis) -http://purl.obolibrary.org/obo/UBERON_0002651;anterior horn of lateral ventricle;cornu anterius ventriculi lateralis -http://purl.obolibrary.org/obo/UBERON_0002651;anterior horn of lateral ventricle;cornu frontale (ventriculi lateralis) -http://purl.obolibrary.org/obo/UBERON_0002651;anterior horn of lateral ventricle;cornu frontale ventriculi lateralis -http://purl.obolibrary.org/obo/UBERON_0002651;anterior horn of lateral ventricle;frontal horn of lateral ventricle -http://purl.obolibrary.org/obo/UBERON_0002651;anterior horn of lateral ventricle;ventriculus lateralis, cornu anterius -http://purl.obolibrary.org/obo/UBERON_0002652;posterior median eminence; -http://purl.obolibrary.org/obo/UBERON_0002653;gracile fasciculus of medulla;Goll's tract -http://purl.obolibrary.org/obo/UBERON_0002653;gracile fasciculus of medulla;column of Goll -http://purl.obolibrary.org/obo/UBERON_0002653;gracile fasciculus of medulla;fasciculus of goll -http://purl.obolibrary.org/obo/UBERON_0002653;gracile fasciculus of medulla;gracile fascicle of medulla -http://purl.obolibrary.org/obo/UBERON_0002653;gracile fasciculus of medulla;medulla segment of fasciculus gracilis -http://purl.obolibrary.org/obo/UBERON_0002653;gracile fasciculus of medulla;medulla segment of gracile fasciculus -http://purl.obolibrary.org/obo/UBERON_0002654;parvocellular part of medial dorsal nucleus;dorsomedial thalamic nucleus, parvicellular part -http://purl.obolibrary.org/obo/UBERON_0002654;parvocellular part of medial dorsal nucleus;lateral mediodorsal nucleus -http://purl.obolibrary.org/obo/UBERON_0002654;parvocellular part of medial dorsal nucleus;lateral nucleus of medial dorsal nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0002654;parvocellular part of medial dorsal nucleus;mediodorsal thalamic nucleus, pars fasciculosa -http://purl.obolibrary.org/obo/UBERON_0002654;parvocellular part of medial dorsal nucleus;nucleus medialis dorsalis fasciculosis (hassler) -http://purl.obolibrary.org/obo/UBERON_0002654;parvocellular part of medial dorsal nucleus;nucleus medialis dorsalis nucleus fasciculosis (hassler) -http://purl.obolibrary.org/obo/UBERON_0002654;parvocellular part of medial dorsal nucleus;nucleus medialis dorsalis, pars parvicellularis -http://purl.obolibrary.org/obo/UBERON_0002654;parvocellular part of medial dorsal nucleus;pars parvocellularis lateralis nuclei mediodorsalis thalami -http://purl.obolibrary.org/obo/UBERON_0002654;parvocellular part of medial dorsal nucleus;pars principalis nuclei ventralis anterior thalami -http://purl.obolibrary.org/obo/UBERON_0002654;parvocellular part of medial dorsal nucleus;parvicellular part of dorsomedial nucleus -http://purl.obolibrary.org/obo/UBERON_0002654;parvocellular part of medial dorsal nucleus;parvicellular part of medial dorsal nucleus -http://purl.obolibrary.org/obo/UBERON_0002654;parvocellular part of medial dorsal nucleus;parvocellular nucleus of medial dorsal nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0002654;parvocellular part of medial dorsal nucleus;principal division of ventral anterior nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0002655;body of lateral ventricle;central part of lateral ventricle -http://purl.obolibrary.org/obo/UBERON_0002655;body of lateral ventricle;corpus ventriculi lateralis -http://purl.obolibrary.org/obo/UBERON_0002655;body of lateral ventricle;lateral ventricular body -http://purl.obolibrary.org/obo/UBERON_0002655;body of lateral ventricle;pars centralis (ventriculi lateralis) -http://purl.obolibrary.org/obo/UBERON_0002655;body of lateral ventricle;pars centralis ventriculi lateralis -http://purl.obolibrary.org/obo/UBERON_0002655;body of lateral ventricle;ventriculus lateralis, corpus -http://purl.obolibrary.org/obo/UBERON_0002655;body of lateral ventricle;ventriculus lateralis, pars centralis -http://purl.obolibrary.org/obo/UBERON_0002656;periamygdaloid area;periamygdaloid area -http://purl.obolibrary.org/obo/UBERON_0002656;periamygdaloid area;periamygdaloid region -http://purl.obolibrary.org/obo/UBERON_0002656;periamygdaloid area;semilunar gyrus -http://purl.obolibrary.org/obo/UBERON_0002656;periamygdaloid area;ventral cortical nucleus of amygdala -http://purl.obolibrary.org/obo/UBERON_0002657;posterior parahippocampal gyrus;parahippocampal gyrus (amaral) -http://purl.obolibrary.org/obo/UBERON_0002657;posterior parahippocampal gyrus;parahippocampal gyrus (insausti) -http://purl.obolibrary.org/obo/UBERON_0002658;medial lemniscus of midbrain;midbrain medial lemniscus -http://purl.obolibrary.org/obo/UBERON_0002659;superior medullary velum;anterior medullary velum -http://purl.obolibrary.org/obo/UBERON_0002660;medial longitudinal fasciculus of midbrain;midbrain medial longitudinal fasciculus -http://purl.obolibrary.org/obo/UBERON_0002661;superior frontal gyrus;marginal gyrus -http://purl.obolibrary.org/obo/UBERON_0002661;superior frontal gyrus;superior frontal convolution -http://purl.obolibrary.org/obo/UBERON_0002662;medial pes lemniscus;superficial pes lemniscus -http://purl.obolibrary.org/obo/UBERON_0002663;septal nuclear complex;nuclei septales -http://purl.obolibrary.org/obo/UBERON_0002663;septal nuclear complex;parolfactory nuclei -http://purl.obolibrary.org/obo/UBERON_0002663;septal nuclear complex;septal nuclei -http://purl.obolibrary.org/obo/UBERON_0002663;septal nuclear complex;septal nucleus -http://purl.obolibrary.org/obo/UBERON_0002664;lateral part of medial mammillary nucleus;intercalated mammillary nucleus -http://purl.obolibrary.org/obo/UBERON_0002664;lateral part of medial mammillary nucleus;intermediate mammillary nucleus -http://purl.obolibrary.org/obo/UBERON_0002664;lateral part of medial mammillary nucleus;lateral mammillary nucleus (gagel) -http://purl.obolibrary.org/obo/UBERON_0002664;lateral part of medial mammillary nucleus;lateral subdivision of medial mammillary nucleus -http://purl.obolibrary.org/obo/UBERON_0002664;lateral part of medial mammillary nucleus;medial mammillary nucleus, lateral part -http://purl.obolibrary.org/obo/UBERON_0002665;supracallosal gyrus;gyrus supracallosus -http://purl.obolibrary.org/obo/UBERON_0002665;supracallosal gyrus;hippocampus supracommissuralis -http://purl.obolibrary.org/obo/UBERON_0002665;supracallosal gyrus;supracommissural hippocampal rudiment -http://purl.obolibrary.org/obo/UBERON_0002665;supracallosal gyrus;supracommissural hippocampus -http://purl.obolibrary.org/obo/UBERON_0002666;mesencephalic tract of trigeminal nerve;mesencephalic root of v -http://purl.obolibrary.org/obo/UBERON_0002666;mesencephalic tract of trigeminal nerve;mesencephalic trigeminal tract -http://purl.obolibrary.org/obo/UBERON_0002667;lateral septal nucleus;lateral parolfactory nucleus -http://purl.obolibrary.org/obo/UBERON_0002667;lateral septal nucleus;lateral septal nucleus (cajal) -http://purl.obolibrary.org/obo/UBERON_0002667;lateral septal nucleus;lateral septum -http://purl.obolibrary.org/obo/UBERON_0002667;lateral septal nucleus;lateral septum nucleus -http://purl.obolibrary.org/obo/UBERON_0002668;oculomotor nerve root;central part of oculomotor nerve -http://purl.obolibrary.org/obo/UBERON_0002668;oculomotor nerve root;oculomotor nerve fibers -http://purl.obolibrary.org/obo/UBERON_0002668;oculomotor nerve root;root of oculomotor nerve -http://purl.obolibrary.org/obo/UBERON_0002669;anterior horizontal limb of lateral sulcus;anterior branch of lateral sulcus -http://purl.obolibrary.org/obo/UBERON_0002669;anterior horizontal limb of lateral sulcus;anterior horizontal limb of lateral fissure -http://purl.obolibrary.org/obo/UBERON_0002669;anterior horizontal limb of lateral sulcus;anterior horizontal ramus of lateral fissure -http://purl.obolibrary.org/obo/UBERON_0002669;anterior horizontal limb of lateral sulcus;anterior ramus of lateral cerebral sulcus -http://purl.obolibrary.org/obo/UBERON_0002669;anterior horizontal limb of lateral sulcus;horizontal limb of lateral fissure -http://purl.obolibrary.org/obo/UBERON_0002669;anterior horizontal limb of lateral sulcus;horizontal ramus of sylvian fissure -http://purl.obolibrary.org/obo/UBERON_0002669;anterior horizontal limb of lateral sulcus;ramus anterior sulci lateralis cerebri -http://purl.obolibrary.org/obo/UBERON_0002670;anterior ascending limb of lateral sulcus;anterior ascending limb of lateral fissure -http://purl.obolibrary.org/obo/UBERON_0002670;anterior ascending limb of lateral sulcus;anterior ascending ramus of lateral sulcus -http://purl.obolibrary.org/obo/UBERON_0002670;anterior ascending limb of lateral sulcus;ascending branch of lateral sulcus -http://purl.obolibrary.org/obo/UBERON_0002670;anterior ascending limb of lateral sulcus;ascending ramus of lateral cerebral sulcus -http://purl.obolibrary.org/obo/UBERON_0002670;anterior ascending limb of lateral sulcus;ascending ramus of sylvian fissure -http://purl.obolibrary.org/obo/UBERON_0002670;anterior ascending limb of lateral sulcus;middle ramus of lateral fissure -http://purl.obolibrary.org/obo/UBERON_0002670;anterior ascending limb of lateral sulcus;ramus ascendens sulci lateralis cerebri -http://purl.obolibrary.org/obo/UBERON_0002670;anterior ascending limb of lateral sulcus;superior branch of lateral fissure -http://purl.obolibrary.org/obo/UBERON_0002671;pallidotegmental fasciculus;pallidotegmental tract -http://purl.obolibrary.org/obo/UBERON_0002672;anterior subcentral sulcus; -http://purl.obolibrary.org/obo/UBERON_0002673;vestibular nuclear complex;nuclei vestibulares in medulla oblongata -http://purl.obolibrary.org/obo/UBERON_0002673;vestibular nuclear complex;vestibular nuclei -http://purl.obolibrary.org/obo/UBERON_0002673;vestibular nuclear complex;vestibular nuclei in medulla oblongata -http://purl.obolibrary.org/obo/UBERON_0002675;diagonal sulcus; -http://purl.obolibrary.org/obo/UBERON_0002676;ventral supraoptic decussation;Gudden commissure -http://purl.obolibrary.org/obo/UBERON_0002676;ventral supraoptic decussation;Gudden's commissure -http://purl.obolibrary.org/obo/UBERON_0002676;ventral supraoptic decussation;VSOX -http://purl.obolibrary.org/obo/UBERON_0002676;ventral supraoptic decussation;commissura supraoptica ventralis -http://purl.obolibrary.org/obo/UBERON_0002676;ventral supraoptic decussation;commissure of Gudden -http://purl.obolibrary.org/obo/UBERON_0002676;ventral supraoptic decussation;supraoptic commissures, ventral -http://purl.obolibrary.org/obo/UBERON_0002676;ventral supraoptic decussation;ventral supra-optic commissure -http://purl.obolibrary.org/obo/UBERON_0002676;ventral supraoptic decussation;ventral supraoptic commissure (of Meynert) -http://purl.obolibrary.org/obo/UBERON_0002676;ventral supraoptic decussation;ventral supraoptic decussation -http://purl.obolibrary.org/obo/UBERON_0002676;ventral supraoptic decussation;von Gudden's commissure -http://purl.obolibrary.org/obo/UBERON_0002679;anterodorsal nucleus of thalamus;anterior dorsal thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0002679;anterodorsal nucleus of thalamus;anterodorsal nucleus -http://purl.obolibrary.org/obo/UBERON_0002679;anterodorsal nucleus of thalamus;anterodorsal nucleus of the thalamus -http://purl.obolibrary.org/obo/UBERON_0002679;anterodorsal nucleus of thalamus;anterodorsal thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0002679;anterodorsal nucleus of thalamus;nucleus anterior dorsalis -http://purl.obolibrary.org/obo/UBERON_0002679;anterodorsal nucleus of thalamus;nucleus anterior dorsalis thalami -http://purl.obolibrary.org/obo/UBERON_0002679;anterodorsal nucleus of thalamus;nucleus anterior thalami dorsalis -http://purl.obolibrary.org/obo/UBERON_0002679;anterodorsal nucleus of thalamus;nucleus anterodorsalis -http://purl.obolibrary.org/obo/UBERON_0002679;anterodorsal nucleus of thalamus;nucleus anterodorsalis (hassler) -http://purl.obolibrary.org/obo/UBERON_0002679;anterodorsal nucleus of thalamus;nucleus anterodorsalis thalami -http://purl.obolibrary.org/obo/UBERON_0002679;anterodorsal nucleus of thalamus;nucleus anterosuperior -http://purl.obolibrary.org/obo/UBERON_0002679;anterodorsal nucleus of thalamus;nucleus thalamicus anterodorsalis -http://purl.obolibrary.org/obo/UBERON_0002681;anteromedial nucleus of thalamus;anteromedial nucleus -http://purl.obolibrary.org/obo/UBERON_0002681;anteromedial nucleus of thalamus;anteromedial nucleus of the thalamus -http://purl.obolibrary.org/obo/UBERON_0002681;anteromedial nucleus of thalamus;anteromedial thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0002681;anteromedial nucleus of thalamus;nucleus anterior medialis -http://purl.obolibrary.org/obo/UBERON_0002681;anteromedial nucleus of thalamus;nucleus anterior medialis thalami -http://purl.obolibrary.org/obo/UBERON_0002681;anteromedial nucleus of thalamus;nucleus anterior thalami medialis -http://purl.obolibrary.org/obo/UBERON_0002681;anteromedial nucleus of thalamus;nucleus anteromedialis (hassler) -http://purl.obolibrary.org/obo/UBERON_0002681;anteromedial nucleus of thalamus;nucleus anteromedialis thalami -http://purl.obolibrary.org/obo/UBERON_0002681;anteromedial nucleus of thalamus;nucleus thalamicus anteromedialis -http://purl.obolibrary.org/obo/UBERON_0002682;abducens nucleus;abducens VI nucleus -http://purl.obolibrary.org/obo/UBERON_0002682;abducens nucleus;abducens motor nuclei -http://purl.obolibrary.org/obo/UBERON_0002682;abducens nucleus;abducens motor nucleus -http://purl.obolibrary.org/obo/UBERON_0002682;abducens nucleus;abducens nerve nucleus -http://purl.obolibrary.org/obo/UBERON_0002682;abducens nucleus;abducens nucleus proper -http://purl.obolibrary.org/obo/UBERON_0002682;abducens nucleus;abducent nucleus -http://purl.obolibrary.org/obo/UBERON_0002682;abducens nucleus;motor nucleus VI -http://purl.obolibrary.org/obo/UBERON_0002682;abducens nucleus;nVI -http://purl.obolibrary.org/obo/UBERON_0002682;abducens nucleus;nucleus abducens -http://purl.obolibrary.org/obo/UBERON_0002682;abducens nucleus;nucleus nervi abducentis -http://purl.obolibrary.org/obo/UBERON_0002682;abducens nucleus;nucleus of abducens nerve -http://purl.obolibrary.org/obo/UBERON_0002682;abducens nucleus;nucleus of abducens nerve (VI) -http://purl.obolibrary.org/obo/UBERON_0002682;abducens nucleus;sixth cranial nerve nucleus -http://purl.obolibrary.org/obo/UBERON_0002683;rhinal sulcus;fissura rhinalis -http://purl.obolibrary.org/obo/UBERON_0002683;rhinal sulcus;rhinal fissuer (Turner, Rezius) -http://purl.obolibrary.org/obo/UBERON_0002683;rhinal sulcus;rhinal fissure -http://purl.obolibrary.org/obo/UBERON_0002683;rhinal sulcus;sulcus rhinalis -http://purl.obolibrary.org/obo/UBERON_0002684;nucleus raphe obscurus;nucleus raphes obscurus -http://purl.obolibrary.org/obo/UBERON_0002684;nucleus raphe obscurus;obscurus raphe nucleus -http://purl.obolibrary.org/obo/UBERON_0002684;nucleus raphe obscurus;raphe obscurus nucleus -http://purl.obolibrary.org/obo/UBERON_0002685;anteroventral nucleus of thalamus;anterior ventral nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0002685;anteroventral nucleus of thalamus;anteroprincipal thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0002685;anteroventral nucleus of thalamus;anteroventral nucleus -http://purl.obolibrary.org/obo/UBERON_0002685;anteroventral nucleus of thalamus;anteroventral nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0002685;anteroventral nucleus of thalamus;anteroventral nucleus of the thalamus -http://purl.obolibrary.org/obo/UBERON_0002685;anteroventral nucleus of thalamus;anteroventral thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0002685;anteroventral nucleus of thalamus;nucleus anterior thalami ventralis -http://purl.obolibrary.org/obo/UBERON_0002685;anteroventral nucleus of thalamus;nucleus anterior ventralis -http://purl.obolibrary.org/obo/UBERON_0002685;anteroventral nucleus of thalamus;nucleus anteroinferior -http://purl.obolibrary.org/obo/UBERON_0002685;anteroventral nucleus of thalamus;nucleus anteroventralis -http://purl.obolibrary.org/obo/UBERON_0002685;anteroventral nucleus of thalamus;nucleus anteroventralis thalami -http://purl.obolibrary.org/obo/UBERON_0002685;anteroventral nucleus of thalamus;nucleus thalamicus anteroprincipalis -http://purl.obolibrary.org/obo/UBERON_0002685;anteroventral nucleus of thalamus;nucleus thalamicus anteroventralis -http://purl.obolibrary.org/obo/UBERON_0002686;angular gyrus;middle part of inferior parietal lobule -http://purl.obolibrary.org/obo/UBERON_0002686;angular gyrus;preoccipital gyrus -http://purl.obolibrary.org/obo/UBERON_0002687;area X of ventral lateral nucleus;anteromedial part of ventral lateral posterior nucleus (jones) -http://purl.obolibrary.org/obo/UBERON_0002687;area X of ventral lateral nucleus;area X -http://purl.obolibrary.org/obo/UBERON_0002687;area X of ventral lateral nucleus;area X of Olszewski -http://purl.obolibrary.org/obo/UBERON_0002687;area X of ventral lateral nucleus;nucleus lateralis intermedius mediodorsalis situs ventralis medialis -http://purl.obolibrary.org/obo/UBERON_0002687;area X of ventral lateral nucleus;nucleus ventralis oralis, pars posterior (dewulf) -http://purl.obolibrary.org/obo/UBERON_0002687;area X of ventral lateral nucleus;nucleus ventrooralis internus (hassler) -http://purl.obolibrary.org/obo/UBERON_0002687;area X of ventral lateral nucleus;nucleus ventrooralis internus, superior part -http://purl.obolibrary.org/obo/UBERON_0002688;supramarginal gyrus;anterior part of inferior parietal lobule -http://purl.obolibrary.org/obo/UBERON_0002688;supramarginal gyrus;inferior parietal lobule (krieg) -http://purl.obolibrary.org/obo/UBERON_0002689;supraoptic crest;OVLT -http://purl.obolibrary.org/obo/UBERON_0002689;supraoptic crest;organum vasculosum lamina terminalis -http://purl.obolibrary.org/obo/UBERON_0002689;supraoptic crest;organum vasculosum laminae terminalis -http://purl.obolibrary.org/obo/UBERON_0002689;supraoptic crest;prechiasmatic gland -http://purl.obolibrary.org/obo/UBERON_0002689;supraoptic crest;vascular organ of lamina terminalis -http://purl.obolibrary.org/obo/UBERON_0002690;anteroventral periventricular nucleus; -http://purl.obolibrary.org/obo/UBERON_0002691;ventral tegmental area;VTA -http://purl.obolibrary.org/obo/UBERON_0002691;ventral tegmental area;a10a -http://purl.obolibrary.org/obo/UBERON_0002691;ventral tegmental area;area tegmentalis ventralis -http://purl.obolibrary.org/obo/UBERON_0002691;ventral tegmental area;area tegmentalis ventralis (Tsai) -http://purl.obolibrary.org/obo/UBERON_0002691;ventral tegmental area;tegmentum ventrale -http://purl.obolibrary.org/obo/UBERON_0002691;ventral tegmental area;ventral brain stem -http://purl.obolibrary.org/obo/UBERON_0002691;ventral tegmental area;ventral tegmental area (Tsai) -http://purl.obolibrary.org/obo/UBERON_0002691;ventral tegmental area;ventral tegmental area of tsai -http://purl.obolibrary.org/obo/UBERON_0002691;ventral tegmental area;ventral tegmental nucleus (Rioch) -http://purl.obolibrary.org/obo/UBERON_0002691;ventral tegmental area;ventral tegmental nucleus (tsai) -http://purl.obolibrary.org/obo/UBERON_0002691;ventral tegmental area;ventral tegmental nucleus of tsai -http://purl.obolibrary.org/obo/UBERON_0002691;ventral tegmental area;ventromedial mesencephalic tegmentum -http://purl.obolibrary.org/obo/UBERON_0002692;medullary raphe nuclear complex;raphe medullae oblongatae -http://purl.obolibrary.org/obo/UBERON_0002692;medullary raphe nuclear complex;raphe nuclei of medulla -http://purl.obolibrary.org/obo/UBERON_0002692;medullary raphe nuclear complex;raphe of medulla oblongata -http://purl.obolibrary.org/obo/UBERON_0002693;occipitotemporal sulcus;inferior temporal fissure -http://purl.obolibrary.org/obo/UBERON_0002693;occipitotemporal sulcus;inferior temporal fissure (Crosby) -http://purl.obolibrary.org/obo/UBERON_0002693;occipitotemporal sulcus;inferior temporal sulcus (roberts) -http://purl.obolibrary.org/obo/UBERON_0002693;occipitotemporal sulcus;inferior temporal sulcus (szikla) -http://purl.obolibrary.org/obo/UBERON_0002693;occipitotemporal sulcus;inferior temporal sulcus-2 -http://purl.obolibrary.org/obo/UBERON_0002693;occipitotemporal sulcus;lateral occipitotemporal sulcus -http://purl.obolibrary.org/obo/UBERON_0002693;occipitotemporal sulcus;occipito-temporal sulcus -http://purl.obolibrary.org/obo/UBERON_0002693;occipitotemporal sulcus;third temporal sulcus -http://purl.obolibrary.org/obo/UBERON_0002694;anterior hypothalamic commissure;anterior hypothalamic commissure (Ganser) -http://purl.obolibrary.org/obo/UBERON_0002694;anterior hypothalamic commissure;anterior hypothalamic decussation of Ganser -http://purl.obolibrary.org/obo/UBERON_0002695;parieto-occipital sulcus;fissura parieto-occipitalis -http://purl.obolibrary.org/obo/UBERON_0002695;parieto-occipital sulcus;parieto-occipital fissure -http://purl.obolibrary.org/obo/UBERON_0002695;parieto-occipital sulcus;parieto-occipital incisure -http://purl.obolibrary.org/obo/UBERON_0002695;parieto-occipital sulcus;parietooccipital sulcus -http://purl.obolibrary.org/obo/UBERON_0002695;parieto-occipital sulcus;sulcus parieto-occipitalis -http://purl.obolibrary.org/obo/UBERON_0002695;parieto-occipital sulcus;sulcus parieto-occipitalis medialis -http://purl.obolibrary.org/obo/UBERON_0002695;parieto-occipital sulcus;sulcus parietoccipitalis -http://purl.obolibrary.org/obo/UBERON_0002695;parieto-occipital sulcus;sulcus parietooccipitalis -http://purl.obolibrary.org/obo/UBERON_0002696;cuneiform nucleus;cunieform nucleus -http://purl.obolibrary.org/obo/UBERON_0002696;cuneiform nucleus;parabigeminal area (mai) -http://purl.obolibrary.org/obo/UBERON_0002697;dorsal supraoptic decussation;Meynert's commissure -http://purl.obolibrary.org/obo/UBERON_0002697;dorsal supraoptic decussation;commissura supraoptica dorsalis -http://purl.obolibrary.org/obo/UBERON_0002697;dorsal supraoptic decussation;commissure of Meynert -http://purl.obolibrary.org/obo/UBERON_0002697;dorsal supraoptic decussation;dorsal supra-optic commissure -http://purl.obolibrary.org/obo/UBERON_0002697;dorsal supraoptic decussation;dorsal supraoptic commissure -http://purl.obolibrary.org/obo/UBERON_0002697;dorsal supraoptic decussation;dorsal supraoptic commissure (of ganser) -http://purl.obolibrary.org/obo/UBERON_0002697;dorsal supraoptic decussation;dorsal supraoptic decussation (of Meynert) -http://purl.obolibrary.org/obo/UBERON_0002697;dorsal supraoptic decussation;dorsal supraoptic decussation (of ganser) -http://purl.obolibrary.org/obo/UBERON_0002697;dorsal supraoptic decussation;dorsal supraoptic decussation of Meynert -http://purl.obolibrary.org/obo/UBERON_0002697;dorsal supraoptic decussation;ganser's commissure -http://purl.obolibrary.org/obo/UBERON_0002697;dorsal supraoptic decussation;supraoptic commissure of Meynert -http://purl.obolibrary.org/obo/UBERON_0002697;dorsal supraoptic decussation;supraoptic commissures, dorsal -http://purl.obolibrary.org/obo/UBERON_0002698;preoccipital notch;incisura parieto-occipitalis -http://purl.obolibrary.org/obo/UBERON_0002698;preoccipital notch;incisura praeoccipitalis -http://purl.obolibrary.org/obo/UBERON_0002698;preoccipital notch;incisura preoccipitalis -http://purl.obolibrary.org/obo/UBERON_0002698;preoccipital notch;occipital notch -http://purl.obolibrary.org/obo/UBERON_0002698;preoccipital notch;preoccipital incisura -http://purl.obolibrary.org/obo/UBERON_0002698;preoccipital notch;preoccipital incisure -http://purl.obolibrary.org/obo/UBERON_0002699;supraopticohypophysial tract;supra-opticohypophysial tract -http://purl.obolibrary.org/obo/UBERON_0002699;supraopticohypophysial tract;supraopticohypophyseal tract -http://purl.obolibrary.org/obo/UBERON_0002699;supraopticohypophysial tract;tractus supraopticohypophysialis -http://purl.obolibrary.org/obo/UBERON_0002700;subcuneiform nucleus;subcuneiform area of midbrain -http://purl.obolibrary.org/obo/UBERON_0002701;anterior median oculomotor nucleus;anterior medial visceral nucleus -http://purl.obolibrary.org/obo/UBERON_0002701;anterior median oculomotor nucleus;anterior median nucleus of oculomotor nerve -http://purl.obolibrary.org/obo/UBERON_0002701;anterior median oculomotor nucleus;anterior median nucleus of oculomotor nuclear complex -http://purl.obolibrary.org/obo/UBERON_0002701;anterior median oculomotor nucleus;nucleus visceralis anteromedialis -http://purl.obolibrary.org/obo/UBERON_0002701;anterior median oculomotor nucleus;ventral medial nucleus of oculomotor nerve -http://purl.obolibrary.org/obo/UBERON_0002701;anterior median oculomotor nucleus;ventral medial visceral nucleus -http://purl.obolibrary.org/obo/UBERON_0002702;middle frontal gyrus;gyrus frontalis medialis -http://purl.obolibrary.org/obo/UBERON_0002702;middle frontal gyrus;intermediate frontal gyrus -http://purl.obolibrary.org/obo/UBERON_0002702;middle frontal gyrus;medial frontal gyrus -http://purl.obolibrary.org/obo/UBERON_0002703;precentral gyrus;precentral convolution -http://purl.obolibrary.org/obo/UBERON_0002703;precentral gyrus;prerolandic gyrus -http://purl.obolibrary.org/obo/UBERON_0002704;metathalamus;MTh -http://purl.obolibrary.org/obo/UBERON_0002704;metathalamus;corpora geniculata -http://purl.obolibrary.org/obo/UBERON_0002704;metathalamus;geniculate group of dorsal thalamus -http://purl.obolibrary.org/obo/UBERON_0002704;metathalamus;geniculate group of the dorsal thalamus -http://purl.obolibrary.org/obo/UBERON_0002704;metathalamus;geniculate thalamic group -http://purl.obolibrary.org/obo/UBERON_0002704;metathalamus;geniculate thalamic nuclear group (metathalamus) -http://purl.obolibrary.org/obo/UBERON_0002704;metathalamus;nuclei metathalami -http://purl.obolibrary.org/obo/UBERON_0002705;midline nuclear group;median nuclei of thalamus -http://purl.obolibrary.org/obo/UBERON_0002705;midline nuclear group;midline nuclear group -http://purl.obolibrary.org/obo/UBERON_0002705;midline nuclear group;midline nuclear group of thalamus -http://purl.obolibrary.org/obo/UBERON_0002705;midline nuclear group;midline nuclei of thalamus -http://purl.obolibrary.org/obo/UBERON_0002705;midline nuclear group;midline thalamic group -http://purl.obolibrary.org/obo/UBERON_0002705;midline nuclear group;nuclei mediani (thalami) -http://purl.obolibrary.org/obo/UBERON_0002705;midline nuclear group;nuclei mediani thalami -http://purl.obolibrary.org/obo/UBERON_0002705;midline nuclear group;periventricular nuclei of thalamus -http://purl.obolibrary.org/obo/UBERON_0002706;posterior nucleus of hypothalamus;area hypothalamica posterior -http://purl.obolibrary.org/obo/UBERON_0002706;posterior nucleus of hypothalamus;posterior hypothalamic area -http://purl.obolibrary.org/obo/UBERON_0002706;posterior nucleus of hypothalamus;posterior hypothalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0002707;corticospinal tract;corticospinal fibers -http://purl.obolibrary.org/obo/UBERON_0002707;corticospinal tract;fasciculus cerebro-spinalis -http://purl.obolibrary.org/obo/UBERON_0002707;corticospinal tract;fasciculus pyramidalis -http://purl.obolibrary.org/obo/UBERON_0002707;corticospinal tract;fibrae corticospinales -http://purl.obolibrary.org/obo/UBERON_0002707;corticospinal tract;pyramid (Willis) -http://purl.obolibrary.org/obo/UBERON_0002707;corticospinal tract;tractus cortico-spinalis -http://purl.obolibrary.org/obo/UBERON_0002707;corticospinal tract;tractus corticospinalis -http://purl.obolibrary.org/obo/UBERON_0002707;corticospinal tract;tractus pyramidalis -http://purl.obolibrary.org/obo/UBERON_0002708;posterior periventricular nucleus;griseum periventriculare hypothalami -http://purl.obolibrary.org/obo/UBERON_0002708;posterior periventricular nucleus;nucleus periventricularis posterior -http://purl.obolibrary.org/obo/UBERON_0002708;posterior periventricular nucleus;periventricular hypothalamic nucleus, posterior part -http://purl.obolibrary.org/obo/UBERON_0002708;posterior periventricular nucleus;periventricular nucleus, posterior subdivision -http://purl.obolibrary.org/obo/UBERON_0002708;posterior periventricular nucleus;posterior paraventricular nucleus -http://purl.obolibrary.org/obo/UBERON_0002708;posterior periventricular nucleus;posterior periventricular hypothalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0002708;posterior periventricular nucleus;posterior periventricular nucleus -http://purl.obolibrary.org/obo/UBERON_0002708;posterior periventricular nucleus;posterior periventricular nucleus of hypothalamus -http://purl.obolibrary.org/obo/UBERON_0002708;posterior periventricular nucleus;posterior periventricular nucleus of the hypothalamus -http://purl.obolibrary.org/obo/UBERON_0002709;posterior nuclear complex of thalamus;caudal thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0002709;posterior nuclear complex of thalamus;nuclei posteriores thalami -http://purl.obolibrary.org/obo/UBERON_0002709;posterior nuclear complex of thalamus;posterior complex of thalamus -http://purl.obolibrary.org/obo/UBERON_0002709;posterior nuclear complex of thalamus;posterior complex of the thalamus -http://purl.obolibrary.org/obo/UBERON_0002709;posterior nuclear complex of thalamus;posterior nuclear complex -http://purl.obolibrary.org/obo/UBERON_0002709;posterior nuclear complex of thalamus;posterior nuclear complex of thalamus -http://purl.obolibrary.org/obo/UBERON_0002709;posterior nuclear complex of thalamus;posterior nuclear group of thalamus -http://purl.obolibrary.org/obo/UBERON_0002709;posterior nuclear complex of thalamus;posterior nucleus of dorsal thalamus -http://purl.obolibrary.org/obo/UBERON_0002709;posterior nuclear complex of thalamus;posterior thalamic nuclear group -http://purl.obolibrary.org/obo/UBERON_0002709;posterior nuclear complex of thalamus;posterior thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0002710;cingulate sulcus;calloso-marginal sulcus -http://purl.obolibrary.org/obo/UBERON_0002710;cingulate sulcus;callosomarginal fissure -http://purl.obolibrary.org/obo/UBERON_0002710;cingulate sulcus;callosomarginal sulcus -http://purl.obolibrary.org/obo/UBERON_0002710;cingulate sulcus;cingulate fissure -http://purl.obolibrary.org/obo/UBERON_0002710;cingulate sulcus;sulcus callosomarginalis -http://purl.obolibrary.org/obo/UBERON_0002710;cingulate sulcus;sulcus cingulatus -http://purl.obolibrary.org/obo/UBERON_0002710;cingulate sulcus;sulcus cinguli -http://purl.obolibrary.org/obo/UBERON_0002711;nucleus of posterior commissure;posterior commissure nucleus -http://purl.obolibrary.org/obo/UBERON_0002712;premammillary nucleus;PMm -http://purl.obolibrary.org/obo/UBERON_0002712;premammillary nucleus;nuclei premamillaris -http://purl.obolibrary.org/obo/UBERON_0002712;premammillary nucleus;nucleus premamillaris hypothalami -http://purl.obolibrary.org/obo/UBERON_0002712;premammillary nucleus;premamillary nucleus -http://purl.obolibrary.org/obo/UBERON_0002712;premammillary nucleus;premammillary nuclei -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;central lobe marginal branch of cingulate sulcus -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;central lobe marginal ramus of cingulate sulcus -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;central lobe marginal sulcus -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;circular fissure -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;circular sulcus (of reil) -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;circuminsular sulcus -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;ciruclar insular sulcus -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;cortex of island marginal branch of cingulate sulcus -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;cortex of island marginal ramus of cingulate sulcus -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;cortex of island marginal sulcus -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;insula lobule marginal branch of cingulate sulcus -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;insula lobule marginal ramus of cingulate sulcus -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;insula lobule marginal sulcus -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;insula marginal branch of cingulate sulcus -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;insula marginal ramus of cingulate sulcus -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;insula marginal sulcus -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;insular cortex marginal branch of cingulate sulcus -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;insular cortex marginal ramus of cingulate sulcus -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;insular cortex marginal sulcus -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;insular lobe marginal branch of cingulate sulcus -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;insular lobe marginal ramus of cingulate sulcus -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;insular lobe marginal sulcus -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;insular region marginal branch of cingulate sulcus -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;insular region marginal ramus of cingulate sulcus -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;insular region marginal sulcus -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;island of reil marginal branch of cingulate sulcus -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;island of reil marginal ramus of cingulate sulcus -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;island of reil marginal sulcus -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;limiting fissure -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;marginal branch of cingulate sulcus of central lobe -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;marginal branch of cingulate sulcus of cortex of island -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;marginal branch of cingulate sulcus of insula -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;marginal branch of cingulate sulcus of insula lobule -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;marginal branch of cingulate sulcus of insular cortex -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;marginal branch of cingulate sulcus of insular lobe -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;marginal branch of cingulate sulcus of insular region -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;marginal branch of cingulate sulcus of island of reil -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;marginal insular sulcus -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;marginal ramus of cingulate sulcus of central lobe -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;marginal ramus of cingulate sulcus of cortex of island -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;marginal ramus of cingulate sulcus of insula -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;marginal ramus of cingulate sulcus of insula lobule -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;marginal ramus of cingulate sulcus of insular cortex -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;marginal ramus of cingulate sulcus of insular lobe -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;marginal ramus of cingulate sulcus of insular region -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;marginal ramus of cingulate sulcus of island of reil -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;marginal sulcus of central lobe -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;marginal sulcus of cortex of island -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;marginal sulcus of insula -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;marginal sulcus of insula lobule -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;marginal sulcus of insular cortex -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;marginal sulcus of insular lobe -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;marginal sulcus of insular region -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;marginal sulcus of island of reil -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;sulcus circularis insulae -http://purl.obolibrary.org/obo/UBERON_0002713;circular sulcus of insula;sulcus marginalis insulae -http://purl.obolibrary.org/obo/UBERON_0002714;rubrospinal tract;Monakow's tract -http://purl.obolibrary.org/obo/UBERON_0002714;rubrospinal tract;rubrospinal tract (Monakow) -http://purl.obolibrary.org/obo/UBERON_0002715;spinal trigeminal tract of medulla; -http://purl.obolibrary.org/obo/UBERON_0002716;collateral sulcus;collateral fissure -http://purl.obolibrary.org/obo/UBERON_0002716;collateral sulcus;sulcus collateralis -http://purl.obolibrary.org/obo/UBERON_0002717;rostral interstitial nucleus of medial longitudinal fasciculus;riMLF -http://purl.obolibrary.org/obo/UBERON_0002717;rostral interstitial nucleus of medial longitudinal fasciculus;rostral interstitial nucleus of MLF -http://purl.obolibrary.org/obo/UBERON_0002718;solitary tract;respiratory bundle of Gierke -http://purl.obolibrary.org/obo/UBERON_0002719;spino-olivary tract;helweg's tract -http://purl.obolibrary.org/obo/UBERON_0002720;mammillary peduncle;peduncle of mammillary body -http://purl.obolibrary.org/obo/UBERON_0002721;lateral sulcus;Sylvian fissure -http://purl.obolibrary.org/obo/UBERON_0002721;lateral sulcus;Sylvian sulcus -http://purl.obolibrary.org/obo/UBERON_0002721;lateral sulcus;fissura lateralis -http://purl.obolibrary.org/obo/UBERON_0002721;lateral sulcus;fissura lateralis cerebri -http://purl.obolibrary.org/obo/UBERON_0002721;lateral sulcus;fissura lateralis cerebri (sylvii) -http://purl.obolibrary.org/obo/UBERON_0002721;lateral sulcus;fissura transversa cerebri -http://purl.obolibrary.org/obo/UBERON_0002721;lateral sulcus;fissure of Sylvius -http://purl.obolibrary.org/obo/UBERON_0002721;lateral sulcus;lateral cerebral fissure -http://purl.obolibrary.org/obo/UBERON_0002721;lateral sulcus;lateral cerebral sulcus -http://purl.obolibrary.org/obo/UBERON_0002721;lateral sulcus;lateral fissure -http://purl.obolibrary.org/obo/UBERON_0002721;lateral sulcus;lateral fissure of Sylvius -http://purl.obolibrary.org/obo/UBERON_0002721;lateral sulcus;sulcus lateralis -http://purl.obolibrary.org/obo/UBERON_0002721;lateral sulcus;sulcus lateralis cerebri -http://purl.obolibrary.org/obo/UBERON_0002721;lateral sulcus;transverse cerebral fissure -http://purl.obolibrary.org/obo/UBERON_0002722;trochlear nucleus;fourth cranial nerve nucleus -http://purl.obolibrary.org/obo/UBERON_0002722;trochlear nucleus;motor nucleus IV -http://purl.obolibrary.org/obo/UBERON_0002722;trochlear nucleus;nIV -http://purl.obolibrary.org/obo/UBERON_0002722;trochlear nucleus;nucleus nervi trochlearis -http://purl.obolibrary.org/obo/UBERON_0002722;trochlear nucleus;nucleus of trochlear nerve -http://purl.obolibrary.org/obo/UBERON_0002722;trochlear nucleus;trochlear IV nucleus -http://purl.obolibrary.org/obo/UBERON_0002722;trochlear nucleus;trochlear motor nucleus -http://purl.obolibrary.org/obo/UBERON_0002723;mammillary princeps fasciculus;principal mammillary fasciculus -http://purl.obolibrary.org/obo/UBERON_0002723;mammillary princeps fasciculus;principal mammillary tract -http://purl.obolibrary.org/obo/UBERON_0002723;mammillary princeps fasciculus;principle mamillary fasciculus -http://purl.obolibrary.org/obo/UBERON_0002724;limen of insula;angulus gyri olfactorii lateralis -http://purl.obolibrary.org/obo/UBERON_0002724;limen of insula;gyrus ambiens (Noback) -http://purl.obolibrary.org/obo/UBERON_0002724;limen of insula;insula limen -http://purl.obolibrary.org/obo/UBERON_0002724;limen of insula;limen insulae -http://purl.obolibrary.org/obo/UBERON_0002726;cervical spinal cord;cervical segment of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002726;cervical spinal cord;cervical segments of spinal cord [1-8] -http://purl.obolibrary.org/obo/UBERON_0002726;cervical spinal cord;cervical spinal cord -http://purl.obolibrary.org/obo/UBERON_0002726;cervical spinal cord;pars cervicalis medullae spinalis -http://purl.obolibrary.org/obo/UBERON_0002726;cervical spinal cord;segmenta cervicalia medullae spinalis [1-8 -http://purl.obolibrary.org/obo/UBERON_0002727;medial medullary lamina of globus pallidus;inner medullary lamina -http://purl.obolibrary.org/obo/UBERON_0002727;medial medullary lamina of globus pallidus;internal medullary lamina of corpus striatum -http://purl.obolibrary.org/obo/UBERON_0002727;medial medullary lamina of globus pallidus;internal medullary lamina of globus pallidus -http://purl.obolibrary.org/obo/UBERON_0002727;medial medullary lamina of globus pallidus;internal medullary lamina of lentiform nucleus -http://purl.obolibrary.org/obo/UBERON_0002727;medial medullary lamina of globus pallidus;lamina medullaris interna corporis striati -http://purl.obolibrary.org/obo/UBERON_0002727;medial medullary lamina of globus pallidus;lamina medullaris medialis corporis striati -http://purl.obolibrary.org/obo/UBERON_0002727;medial medullary lamina of globus pallidus;medial medullary lamina -http://purl.obolibrary.org/obo/UBERON_0002727;medial medullary lamina of globus pallidus;medial medullary lamina of corpus striatum -http://purl.obolibrary.org/obo/UBERON_0002727;medial medullary lamina of globus pallidus;medial medullary lamina of globus pallidus -http://purl.obolibrary.org/obo/UBERON_0002727;medial medullary lamina of globus pallidus;medial medullary lamina of pallidum -http://purl.obolibrary.org/obo/UBERON_0002727;medial medullary lamina of globus pallidus;medial medullary stria -http://purl.obolibrary.org/obo/UBERON_0002728;entorhinal cortex;Brodmann's area 28 -http://purl.obolibrary.org/obo/UBERON_0002728;entorhinal cortex;area entorhinalis (28,34) -http://purl.obolibrary.org/obo/UBERON_0002728;entorhinal cortex;area entorhinalis ventralis et dorsalis -http://purl.obolibrary.org/obo/UBERON_0002728;entorhinal cortex;cortex entorhinalis -http://purl.obolibrary.org/obo/UBERON_0002728;entorhinal cortex;entorhinal area -http://purl.obolibrary.org/obo/UBERON_0002728;entorhinal cortex;entorhinal cortex -http://purl.obolibrary.org/obo/UBERON_0002729;claustral amygdaloid area;claustrum diffusa -http://purl.obolibrary.org/obo/UBERON_0002729;claustral amygdaloid area;claustrum parvum -http://purl.obolibrary.org/obo/UBERON_0002729;claustral amygdaloid area;ventral claustrum -http://purl.obolibrary.org/obo/UBERON_0002729;claustral amygdaloid area;ventral portion of claustrum -http://purl.obolibrary.org/obo/UBERON_0002731;vestibulocochlear nerve root;central part of vestibulocochlear nerve -http://purl.obolibrary.org/obo/UBERON_0002731;vestibulocochlear nerve root;fibrae nervi statoacustici -http://purl.obolibrary.org/obo/UBERON_0002731;vestibulocochlear nerve root;root of vestibulocochlear nerve -http://purl.obolibrary.org/obo/UBERON_0002731;vestibulocochlear nerve root;statoacoustic nerve fibers -http://purl.obolibrary.org/obo/UBERON_0002731;vestibulocochlear nerve root;vestibulocochlear nerve fibers -http://purl.obolibrary.org/obo/UBERON_0002731;vestibulocochlear nerve root;vestibulocochlear nerve roots -http://purl.obolibrary.org/obo/UBERON_0002731;vestibulocochlear nerve root;vestibulocochlear nerve tract -http://purl.obolibrary.org/obo/UBERON_0002732;longitudinal pontine fibers;fibrae pontis longitudinales -http://purl.obolibrary.org/obo/UBERON_0002732;longitudinal pontine fibers;longitudinal fasciculus of the pons -http://purl.obolibrary.org/obo/UBERON_0002732;longitudinal pontine fibers;longitudinal pontine fibers -http://purl.obolibrary.org/obo/UBERON_0002732;longitudinal pontine fibers;longitudinal pontine fibres -http://purl.obolibrary.org/obo/UBERON_0002732;longitudinal pontine fibers;longitudinal pontine tract -http://purl.obolibrary.org/obo/UBERON_0002733;intralaminar nuclear group;intralaminar nuclear complex -http://purl.obolibrary.org/obo/UBERON_0002733;intralaminar nuclear group;intralaminar nuclear group -http://purl.obolibrary.org/obo/UBERON_0002733;intralaminar nuclear group;intralaminar nuclear group of thalamus -http://purl.obolibrary.org/obo/UBERON_0002733;intralaminar nuclear group;intralaminar nuclei of thalamus -http://purl.obolibrary.org/obo/UBERON_0002733;intralaminar nuclear group;intralaminar thalamic nuclei -http://purl.obolibrary.org/obo/UBERON_0002733;intralaminar nuclear group;nonspecific thalamic system -http://purl.obolibrary.org/obo/UBERON_0002733;intralaminar nuclear group;nuclei intralaminares (thalami) -http://purl.obolibrary.org/obo/UBERON_0002733;intralaminar nuclear group;nuclei intralaminares thalami -http://purl.obolibrary.org/obo/UBERON_0002734;superior temporal sulcus;parallel sulcus -http://purl.obolibrary.org/obo/UBERON_0002734;superior temporal sulcus;sulcus t1 -http://purl.obolibrary.org/obo/UBERON_0002734;superior temporal sulcus;superior temporal fissure -http://purl.obolibrary.org/obo/UBERON_0002735;transverse pontine fibers;fibrae pontis transversae -http://purl.obolibrary.org/obo/UBERON_0002735;transverse pontine fibers;superficial transverse fibers of pons -http://purl.obolibrary.org/obo/UBERON_0002735;transverse pontine fibers;transverse fibers of pons -http://purl.obolibrary.org/obo/UBERON_0002735;transverse pontine fibers;transverse pontine fibers -http://purl.obolibrary.org/obo/UBERON_0002735;transverse pontine fibers;transverse pontine fibres -http://purl.obolibrary.org/obo/UBERON_0002735;transverse pontine fibers;transverse pontine tract -http://purl.obolibrary.org/obo/UBERON_0002736;lateral nuclear group of thalamus;LNG -http://purl.obolibrary.org/obo/UBERON_0002736;lateral nuclear group of thalamus;lateral group of nuclei -http://purl.obolibrary.org/obo/UBERON_0002736;lateral nuclear group of thalamus;lateral group of the dorsal thalamus -http://purl.obolibrary.org/obo/UBERON_0002736;lateral nuclear group of thalamus;lateral nuclear group -http://purl.obolibrary.org/obo/UBERON_0002736;lateral nuclear group of thalamus;lateral nuclear group of dorsal thalamus -http://purl.obolibrary.org/obo/UBERON_0002736;lateral nuclear group of thalamus;lateral nuclear group of thalamus -http://purl.obolibrary.org/obo/UBERON_0002736;lateral nuclear group of thalamus;lateral nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0002736;lateral nuclear group of thalamus;lateral thalamic group -http://purl.obolibrary.org/obo/UBERON_0002736;lateral nuclear group of thalamus;lateral thalamic nuclear group -http://purl.obolibrary.org/obo/UBERON_0002736;lateral nuclear group of thalamus;lateral thalamic nuclear region -http://purl.obolibrary.org/obo/UBERON_0002736;lateral nuclear group of thalamus;lateral thalamic nuclei -http://purl.obolibrary.org/obo/UBERON_0002736;lateral nuclear group of thalamus;lateral thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0002736;lateral nuclear group of thalamus;nuclei laterales thalami -http://purl.obolibrary.org/obo/UBERON_0002736;lateral nuclear group of thalamus;nucleus lateralis thalami -http://purl.obolibrary.org/obo/UBERON_0002737;lateral inferior limiting sulcus; -http://purl.obolibrary.org/obo/UBERON_0002738;isthmus of cingulate gyrus;cingulate gyrus isthmus -http://purl.obolibrary.org/obo/UBERON_0002738;isthmus of cingulate gyrus;isthmus of fornicate gyrus -http://purl.obolibrary.org/obo/UBERON_0002738;isthmus of cingulate gyrus;isthmus of limbic lobe -http://purl.obolibrary.org/obo/UBERON_0002739;medial dorsal nucleus of thalamus;dorsal medial nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0002739;medial dorsal nucleus of thalamus;dorsomedial nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0002739;medial dorsal nucleus of thalamus;medial dorsal nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0002739;medial dorsal nucleus of thalamus;medial dorsal thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0002739;medial dorsal nucleus of thalamus;medial nuclear group of thalamus -http://purl.obolibrary.org/obo/UBERON_0002739;medial dorsal nucleus of thalamus;mediodorsal nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0002739;medial dorsal nucleus of thalamus;mediodorsal thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0002739;medial dorsal nucleus of thalamus;nucleus dorsomedialis thalami -http://purl.obolibrary.org/obo/UBERON_0002740;posterior cingulate gyrus; -http://purl.obolibrary.org/obo/UBERON_0002741;diagonal band of Broca;broca's diagonal band -http://purl.obolibrary.org/obo/UBERON_0002741;diagonal band of Broca;broca's diagonal gyrus -http://purl.obolibrary.org/obo/UBERON_0002741;diagonal band of Broca;diagonal band -http://purl.obolibrary.org/obo/UBERON_0002741;diagonal band of Broca;diagonal band of Broca -http://purl.obolibrary.org/obo/UBERON_0002741;diagonal band of Broca;diagonal gyrus -http://purl.obolibrary.org/obo/UBERON_0002741;diagonal band of Broca;olfactory fasciculus -http://purl.obolibrary.org/obo/UBERON_0002741;diagonal band of Broca;olfactory radiations of Zuckerkandl -http://purl.obolibrary.org/obo/UBERON_0002742;lamina of septum pellucidum;lamina of the septum pellucidum -http://purl.obolibrary.org/obo/UBERON_0002742;lamina of septum pellucidum;lamina septi pellucidi -http://purl.obolibrary.org/obo/UBERON_0002742;lamina of septum pellucidum;laminae septi pellucidi -http://purl.obolibrary.org/obo/UBERON_0002742;lamina of septum pellucidum;septum pellucidum lamina -http://purl.obolibrary.org/obo/UBERON_0002743;basal forebrain;basal forebrain area -http://purl.obolibrary.org/obo/UBERON_0002743;basal forebrain;pars basalis telencephali -http://purl.obolibrary.org/obo/UBERON_0002744;hilum of dentate nucleus;dentate nuclear hilum -http://purl.obolibrary.org/obo/UBERON_0002745;ventral amygdalofugal projection;projectiones ventrales amygdalae -http://purl.obolibrary.org/obo/UBERON_0002745;ventral amygdalofugal projection;ventral amygdalofugal pathway -http://purl.obolibrary.org/obo/UBERON_0002746;intermediate periventricular nucleus;hPe -http://purl.obolibrary.org/obo/UBERON_0002746;intermediate periventricular nucleus;intermediate periventricular nucleus of hypothalamus -http://purl.obolibrary.org/obo/UBERON_0002746;intermediate periventricular nucleus;periventricular nucleus at the tuberal level -http://purl.obolibrary.org/obo/UBERON_0002747;neodentate part of dentate nucleus;neodentate portion of dentate nucleus -http://purl.obolibrary.org/obo/UBERON_0002748;medial lemniscus of medulla;medulla medial lemniscus -http://purl.obolibrary.org/obo/UBERON_0002749;regional part of cerebellar cortex;cerebellar cortical segment -http://purl.obolibrary.org/obo/UBERON_0002749;regional part of cerebellar cortex;segment of cerebellar cortex -http://purl.obolibrary.org/obo/UBERON_0002750;medial longitudinal fasciculus of medulla;medial longitudinal fasciculus of medulla oblongata -http://purl.obolibrary.org/obo/UBERON_0002750;medial longitudinal fasciculus of medulla;medulla medial longitudinal fasciculus -http://purl.obolibrary.org/obo/UBERON_0002751;inferior temporal gyrus;gyrus temporalis inferior -http://purl.obolibrary.org/obo/UBERON_0002751;inferior temporal gyrus;lateral occipitotemporal gyrus (heimer-83) -http://purl.obolibrary.org/obo/UBERON_0002752;olivocerebellar tract; -http://purl.obolibrary.org/obo/UBERON_0002753;posterior spinocerebellar tract;dorsal spinocerebellar tract -http://purl.obolibrary.org/obo/UBERON_0002753;posterior spinocerebellar tract;dorsal spinocerebellar tract of the medulla -http://purl.obolibrary.org/obo/UBERON_0002753;posterior spinocerebellar tract;flechsig's tract -http://purl.obolibrary.org/obo/UBERON_0002754;predorsal bundle;predorsal bundle of Edinger -http://purl.obolibrary.org/obo/UBERON_0002754;predorsal bundle;predorsal fasciculus -http://purl.obolibrary.org/obo/UBERON_0002754;predorsal bundle;tectospinal fibers -http://purl.obolibrary.org/obo/UBERON_0002755;pyramidal decussation;corticospinal decussation -http://purl.obolibrary.org/obo/UBERON_0002755;pyramidal decussation;decussatio pyramidum -http://purl.obolibrary.org/obo/UBERON_0002755;pyramidal decussation;decussatio pyramidum medullae oblongatae -http://purl.obolibrary.org/obo/UBERON_0002755;pyramidal decussation;decussation of corticospinal tract -http://purl.obolibrary.org/obo/UBERON_0002755;pyramidal decussation;decussation of pyramidal tract fibers -http://purl.obolibrary.org/obo/UBERON_0002755;pyramidal decussation;decussation of pyramids -http://purl.obolibrary.org/obo/UBERON_0002755;pyramidal decussation;decussation of pyramids of medulla -http://purl.obolibrary.org/obo/UBERON_0002755;pyramidal decussation;decussation of the pyramidal tract -http://purl.obolibrary.org/obo/UBERON_0002755;pyramidal decussation;motor decussation -http://purl.obolibrary.org/obo/UBERON_0002755;pyramidal decussation;motor decussation of medulla -http://purl.obolibrary.org/obo/UBERON_0002755;pyramidal decussation;pyramidal decussation (pourfour du petit) -http://purl.obolibrary.org/obo/UBERON_0002755;pyramidal decussation;pyramidal tract decussation -http://purl.obolibrary.org/obo/UBERON_0002756;anterior cingulate gyrus; -http://purl.obolibrary.org/obo/UBERON_0002758;dorsal nucleus of medial geniculate body;dorsal nucleus of medial geniculate complex -http://purl.obolibrary.org/obo/UBERON_0002758;dorsal nucleus of medial geniculate body;medial geniculate complex, dorsal part -http://purl.obolibrary.org/obo/UBERON_0002758;dorsal nucleus of medial geniculate body;medial geniculate nucleus, dorsal part -http://purl.obolibrary.org/obo/UBERON_0002758;dorsal nucleus of medial geniculate body;nucleus corporis geniculati medialis, pars dorsalis -http://purl.obolibrary.org/obo/UBERON_0002758;dorsal nucleus of medial geniculate body;nucleus dorsalis corporis geniculati medialis -http://purl.obolibrary.org/obo/UBERON_0002758;dorsal nucleus of medial geniculate body;nucleus geniculatus medialis fibrosus (hassler) -http://purl.obolibrary.org/obo/UBERON_0002758;dorsal nucleus of medial geniculate body;nucleus geniculatus medialis pars dorsalis -http://purl.obolibrary.org/obo/UBERON_0002759;magnocellular nucleus of medial geniculate body;corpus geniculatus mediale, pars magnocelluaris -http://purl.obolibrary.org/obo/UBERON_0002759;magnocellular nucleus of medial geniculate body;magnocelluar nucleus of medial geniculate complex -http://purl.obolibrary.org/obo/UBERON_0002759;magnocellular nucleus of medial geniculate body;medial division of medial geniculate body -http://purl.obolibrary.org/obo/UBERON_0002759;magnocellular nucleus of medial geniculate body;medial geniculate complex, medial part -http://purl.obolibrary.org/obo/UBERON_0002759;magnocellular nucleus of medial geniculate body;medial geniculate nucleus, medial part -http://purl.obolibrary.org/obo/UBERON_0002759;magnocellular nucleus of medial geniculate body;medial magnocellular nucleus of medial geniculate body -http://purl.obolibrary.org/obo/UBERON_0002759;magnocellular nucleus of medial geniculate body;medial nucleus of medial geniculate body -http://purl.obolibrary.org/obo/UBERON_0002759;magnocellular nucleus of medial geniculate body;nucleus corporis geniculati medialis, pars magnocelluaris -http://purl.obolibrary.org/obo/UBERON_0002759;magnocellular nucleus of medial geniculate body;nucleus geniculatus medialis magnocelluaris (hassler) -http://purl.obolibrary.org/obo/UBERON_0002759;magnocellular nucleus of medial geniculate body;nucleus geniculatus medialis, pars magnocelluaris -http://purl.obolibrary.org/obo/UBERON_0002760;ventral corticospinal tract;anterior corticospinal tract -http://purl.obolibrary.org/obo/UBERON_0002760;ventral corticospinal tract;anterior pyramidal tract -http://purl.obolibrary.org/obo/UBERON_0002760;ventral corticospinal tract;anterior tract of turck -http://purl.obolibrary.org/obo/UBERON_0002760;ventral corticospinal tract;bundle of Turck -http://purl.obolibrary.org/obo/UBERON_0002760;ventral corticospinal tract;column of Turck -http://purl.obolibrary.org/obo/UBERON_0002760;ventral corticospinal tract;corticospinal tract, uncrossed -http://purl.obolibrary.org/obo/UBERON_0002761;inferior frontal sulcus;inferior frontal fissure -http://purl.obolibrary.org/obo/UBERON_0002761;inferior frontal sulcus;sulcus f2 -http://purl.obolibrary.org/obo/UBERON_0002762;internal medullary lamina of thalamus;envelope (involucrum medial) (Hassler) -http://purl.obolibrary.org/obo/UBERON_0002762;internal medullary lamina of thalamus;internal medullary lamina -http://purl.obolibrary.org/obo/UBERON_0002762;internal medullary lamina of thalamus;internal medullary lamina of thalamus -http://purl.obolibrary.org/obo/UBERON_0002762;internal medullary lamina of thalamus;lamina medullaris interna -http://purl.obolibrary.org/obo/UBERON_0002762;internal medullary lamina of thalamus;lamina medullaris interna thalami -http://purl.obolibrary.org/obo/UBERON_0002762;internal medullary lamina of thalamus;lamina medullaris medialis thalami -http://purl.obolibrary.org/obo/UBERON_0002762;internal medullary lamina of thalamus;lamina medullaris thalami interna -http://purl.obolibrary.org/obo/UBERON_0002763;accessory medullary lamina of globus pallidus;accessory medullar lamina of pallidum -http://purl.obolibrary.org/obo/UBERON_0002763;accessory medullary lamina of globus pallidus;accessory medullary lamina -http://purl.obolibrary.org/obo/UBERON_0002763;accessory medullary lamina of globus pallidus;accessory medullary lamina of corpus striatum -http://purl.obolibrary.org/obo/UBERON_0002763;accessory medullary lamina of globus pallidus;accessory medullary lamina of globus pallidus -http://purl.obolibrary.org/obo/UBERON_0002763;accessory medullary lamina of globus pallidus;accessory medullary lamina pallidus -http://purl.obolibrary.org/obo/UBERON_0002763;accessory medullary lamina of globus pallidus;incomplete medullary lamina of globus pallidus -http://purl.obolibrary.org/obo/UBERON_0002763;accessory medullary lamina of globus pallidus;lamina medullaris accessoria corporis striati -http://purl.obolibrary.org/obo/UBERON_0002764;inferior precentral sulcus;inferior part of precentral fissure -http://purl.obolibrary.org/obo/UBERON_0002764;inferior precentral sulcus;sulcus praecentralis inferior -http://purl.obolibrary.org/obo/UBERON_0002764;inferior precentral sulcus;sulcus precentralis inferior -http://purl.obolibrary.org/obo/UBERON_0002765;lateral medullary lamina of globus pallidus;external medulary lamina of globus pallidus -http://purl.obolibrary.org/obo/UBERON_0002765;lateral medullary lamina of globus pallidus;external medulary lamina of lentiform nucleus -http://purl.obolibrary.org/obo/UBERON_0002765;lateral medullary lamina of globus pallidus;external medullary lamina of corpus striatum -http://purl.obolibrary.org/obo/UBERON_0002765;lateral medullary lamina of globus pallidus;external medullary lamina of globus pallidus -http://purl.obolibrary.org/obo/UBERON_0002765;lateral medullary lamina of globus pallidus;external medullary lamina of lentiform nucleus -http://purl.obolibrary.org/obo/UBERON_0002765;lateral medullary lamina of globus pallidus;lamina medullaris externa corporis striati -http://purl.obolibrary.org/obo/UBERON_0002765;lateral medullary lamina of globus pallidus;lamina medullaris lateralis corporis striati -http://purl.obolibrary.org/obo/UBERON_0002765;lateral medullary lamina of globus pallidus;lateral medulary lamina of globus pallidus -http://purl.obolibrary.org/obo/UBERON_0002765;lateral medullary lamina of globus pallidus;lateral medulary stria -http://purl.obolibrary.org/obo/UBERON_0002765;lateral medullary lamina of globus pallidus;lateral medullary lamina -http://purl.obolibrary.org/obo/UBERON_0002765;lateral medullary lamina of globus pallidus;lateral medullary lamina of corpus striatum -http://purl.obolibrary.org/obo/UBERON_0002765;lateral medullary lamina of globus pallidus;lateral medullary lamina of globus pallidus -http://purl.obolibrary.org/obo/UBERON_0002765;lateral medullary lamina of globus pallidus;lateral medullary lamina of pallidum -http://purl.obolibrary.org/obo/UBERON_0002765;lateral medullary lamina of globus pallidus;lateral medullary stria -http://purl.obolibrary.org/obo/UBERON_0002765;lateral medullary lamina of globus pallidus;medulary lamina of pallidum -http://purl.obolibrary.org/obo/UBERON_0002765;lateral medullary lamina of globus pallidus;outer medulary lamina -http://purl.obolibrary.org/obo/UBERON_0002765;lateral medullary lamina of globus pallidus;outer medullary lamina -http://purl.obolibrary.org/obo/UBERON_0002766;fusiform gyrus;gyrus occipitotemporalis lateralis -http://purl.obolibrary.org/obo/UBERON_0002766;fusiform gyrus;lateral occipitotemporal gyrus -http://purl.obolibrary.org/obo/UBERON_0002766;fusiform gyrus;medial occipitotemporal gyrus-1 (heimer) -http://purl.obolibrary.org/obo/UBERON_0002766;fusiform gyrus;occipitotemporal gyrus -http://purl.obolibrary.org/obo/UBERON_0002767;inferior rostral sulcus;sulcus rostralis inferior -http://purl.obolibrary.org/obo/UBERON_0002768;vestibulospinal tract;vestibulo-spinal tract -http://purl.obolibrary.org/obo/UBERON_0002769;superior temporal gyrus;gyrus temporalis superior -http://purl.obolibrary.org/obo/UBERON_0002770;posterior hypothalamic region;PHR -http://purl.obolibrary.org/obo/UBERON_0002770;posterior hypothalamic region;hypothalamus posterior -http://purl.obolibrary.org/obo/UBERON_0002770;posterior hypothalamic region;mammillary level of hypothalamus -http://purl.obolibrary.org/obo/UBERON_0002770;posterior hypothalamic region;mammillary region -http://purl.obolibrary.org/obo/UBERON_0002770;posterior hypothalamic region;posterior hypothalamus -http://purl.obolibrary.org/obo/UBERON_0002770;posterior hypothalamic region;regio hypothalamica posterior -http://purl.obolibrary.org/obo/UBERON_0002771;middle temporal gyrus;gyrus temporalis medius -http://purl.obolibrary.org/obo/UBERON_0002771;middle temporal gyrus;intermediate temporal gyrus -http://purl.obolibrary.org/obo/UBERON_0002772;olfactory sulcus;olfactory groove -http://purl.obolibrary.org/obo/UBERON_0002772;olfactory sulcus;sulcus olfactorius -http://purl.obolibrary.org/obo/UBERON_0002773;anterior transverse temporal gyrus;anterior transverse convolution of heschl -http://purl.obolibrary.org/obo/UBERON_0002773;anterior transverse temporal gyrus;anterior transverse temporal convolution of heschl -http://purl.obolibrary.org/obo/UBERON_0002773;anterior transverse temporal gyrus;first transverse gyrus of Heschl -http://purl.obolibrary.org/obo/UBERON_0002773;anterior transverse temporal gyrus;great transverse gyrus of Heschl -http://purl.obolibrary.org/obo/UBERON_0002774;posterior transverse temporal gyrus;posterior transverse convolution of heschl -http://purl.obolibrary.org/obo/UBERON_0002774;posterior transverse temporal gyrus;posterior transverse temporal convolution of heschl -http://purl.obolibrary.org/obo/UBERON_0002775;olivocochlear bundle;bundle of Rasmussen -http://purl.obolibrary.org/obo/UBERON_0002775;olivocochlear bundle;efferent cochlear bundle -http://purl.obolibrary.org/obo/UBERON_0002775;olivocochlear bundle;efferent cochlear pathway -http://purl.obolibrary.org/obo/UBERON_0002775;olivocochlear bundle;olivocochlear bundle of rasmussen -http://purl.obolibrary.org/obo/UBERON_0002775;olivocochlear bundle;olivocochlear tract -http://purl.obolibrary.org/obo/UBERON_0002775;olivocochlear bundle;tractus olivocochlearis -http://purl.obolibrary.org/obo/UBERON_0002776;ventral nuclear group;VNG -http://purl.obolibrary.org/obo/UBERON_0002776;ventral nuclear group;dorsal thalamus, ventral group -http://purl.obolibrary.org/obo/UBERON_0002776;ventral nuclear group;nuclei ventrales thalami -http://purl.obolibrary.org/obo/UBERON_0002776;ventral nuclear group;ventral dorsal thalamic nuclear group -http://purl.obolibrary.org/obo/UBERON_0002776;ventral nuclear group;ventral group of dorsal thalamus -http://purl.obolibrary.org/obo/UBERON_0002776;ventral nuclear group;ventral group of the dorsal thalamus -http://purl.obolibrary.org/obo/UBERON_0002776;ventral nuclear group;ventral nuclear group -http://purl.obolibrary.org/obo/UBERON_0002776;ventral nuclear group;ventral nuclear group of thalamus -http://purl.obolibrary.org/obo/UBERON_0002776;ventral nuclear group;ventral nuclear mass -http://purl.obolibrary.org/obo/UBERON_0002776;ventral nuclear group;ventral nuclei of thalamus -http://purl.obolibrary.org/obo/UBERON_0002776;ventral nuclear group;ventral thalamus nucleus -http://purl.obolibrary.org/obo/UBERON_0002776;ventral nuclear group;ventral tier thalamic nuclei -http://purl.obolibrary.org/obo/UBERON_0002778;ventral pallidum;fibrae nervi vagi -http://purl.obolibrary.org/obo/UBERON_0002778;ventral pallidum;globus pallidus ventral part -http://purl.obolibrary.org/obo/UBERON_0002778;ventral pallidum;pallidum ventral region -http://purl.obolibrary.org/obo/UBERON_0002778;ventral pallidum;ventral globus pallidus -http://purl.obolibrary.org/obo/UBERON_0002778;ventral pallidum;ventral pallidum -http://purl.obolibrary.org/obo/UBERON_0002779;lateral superior olivary nucleus;LSON -http://purl.obolibrary.org/obo/UBERON_0002779;lateral superior olivary nucleus;accessory olivary nucleus -http://purl.obolibrary.org/obo/UBERON_0002779;lateral superior olivary nucleus;accessory superior olivary nucleus -http://purl.obolibrary.org/obo/UBERON_0002779;lateral superior olivary nucleus;accessory superior olive -http://purl.obolibrary.org/obo/UBERON_0002779;lateral superior olivary nucleus;inferior olivary complex dorsalaccessory nucleus -http://purl.obolibrary.org/obo/UBERON_0002779;lateral superior olivary nucleus;lateral superior olive -http://purl.obolibrary.org/obo/UBERON_0002779;lateral superior olivary nucleus;nucleus olivaris superior lateralis -http://purl.obolibrary.org/obo/UBERON_0002779;lateral superior olivary nucleus;superior olivary complex, lateral part -http://purl.obolibrary.org/obo/UBERON_0002779;lateral superior olivary nucleus;superior olivary nucleus, lateral part -http://purl.obolibrary.org/obo/UBERON_0002779;lateral superior olivary nucleus;superior olive lateral part -http://purl.obolibrary.org/obo/UBERON_0002781;caudal part of ventral posterolateral nucleus of thalamus;caudal part of ventral posterolateral nucleus -http://purl.obolibrary.org/obo/UBERON_0002781;caudal part of ventral posterolateral nucleus of thalamus;ventral posterior lateral nucleus (ilinsky) -http://purl.obolibrary.org/obo/UBERON_0002781;caudal part of ventral posterolateral nucleus of thalamus;ventral posterolateral nucleus, caudal part -http://purl.obolibrary.org/obo/UBERON_0002781;caudal part of ventral posterolateral nucleus of thalamus;ventral posterolateral thalamic nucleus, caudal part -http://purl.obolibrary.org/obo/UBERON_0002782;medial superior olivary nucleus;chief nucleus of superior olive -http://purl.obolibrary.org/obo/UBERON_0002782;medial superior olivary nucleus;chief superior olivary nucleus -http://purl.obolibrary.org/obo/UBERON_0002782;medial superior olivary nucleus;main superior olivary nucleus -http://purl.obolibrary.org/obo/UBERON_0002782;medial superior olivary nucleus;medial superior olive -http://purl.obolibrary.org/obo/UBERON_0002782;medial superior olivary nucleus;principal superior olivary nucleus -http://purl.obolibrary.org/obo/UBERON_0002782;medial superior olivary nucleus;superior olivary nucleus, medial part -http://purl.obolibrary.org/obo/UBERON_0002782;medial superior olivary nucleus;superior olive medial part -http://purl.obolibrary.org/obo/UBERON_0002783;central tegmental tract of pons; -http://purl.obolibrary.org/obo/UBERON_0002786;root of abducens nerve;abducens nerve fibers -http://purl.obolibrary.org/obo/UBERON_0002786;root of abducens nerve;abducens nerve tract -http://purl.obolibrary.org/obo/UBERON_0002786;root of abducens nerve;central part of abducens nerve -http://purl.obolibrary.org/obo/UBERON_0002786;root of abducens nerve;root of abducens nerve -http://purl.obolibrary.org/obo/UBERON_0002787;decussation of trochlear nerve;decussatio fibrarum nervorum trochlearium -http://purl.obolibrary.org/obo/UBERON_0002787;decussation of trochlear nerve;decussation of trochlear nerve (IV) -http://purl.obolibrary.org/obo/UBERON_0002787;decussation of trochlear nerve;decussation of trochlear nerve fibers -http://purl.obolibrary.org/obo/UBERON_0002787;decussation of trochlear nerve;trochlear neural decussation -http://purl.obolibrary.org/obo/UBERON_0002788;anterior nuclear group;anterior nuclear group -http://purl.obolibrary.org/obo/UBERON_0002788;anterior nuclear group;anterior nuclear group of thalamus -http://purl.obolibrary.org/obo/UBERON_0002788;anterior nuclear group;anterior nuclei of thalamus -http://purl.obolibrary.org/obo/UBERON_0002788;anterior nuclear group;anterior nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0002788;anterior nuclear group;anterior thalamic group -http://purl.obolibrary.org/obo/UBERON_0002788;anterior nuclear group;anterior thalamic nuclei -http://purl.obolibrary.org/obo/UBERON_0002788;anterior nuclear group;anterior thalamus -http://purl.obolibrary.org/obo/UBERON_0002788;anterior nuclear group;nuclei anterior thalami -http://purl.obolibrary.org/obo/UBERON_0002788;anterior nuclear group;nuclei anteriores (thalami) -http://purl.obolibrary.org/obo/UBERON_0002788;anterior nuclear group;nuclei anteriores thalami -http://purl.obolibrary.org/obo/UBERON_0002788;anterior nuclear group;nuclei thalamicus anterior -http://purl.obolibrary.org/obo/UBERON_0002790;dorsal acoustic stria;dorsal acoustic stria (Monakow) -http://purl.obolibrary.org/obo/UBERON_0002790;dorsal acoustic stria;posterior acoustic stria -http://purl.obolibrary.org/obo/UBERON_0002790;dorsal acoustic stria;stria cochlearis posterior -http://purl.obolibrary.org/obo/UBERON_0002790;dorsal acoustic stria;striae acusticae dorsalis -http://purl.obolibrary.org/obo/UBERON_0002792;lumbar spinal cord;lumbar segment of spinal cord -http://purl.obolibrary.org/obo/UBERON_0002792;lumbar spinal cord;lumbar segments of spinal cord [1-5] -http://purl.obolibrary.org/obo/UBERON_0002792;lumbar spinal cord;lumbar spinal cord -http://purl.obolibrary.org/obo/UBERON_0002792;lumbar spinal cord;pars lumbalis medullae spinalis -http://purl.obolibrary.org/obo/UBERON_0002792;lumbar spinal cord;segmenta lumbalia medullae spinalis [1-5] -http://purl.obolibrary.org/obo/UBERON_0002792;lumbar spinal cord;spinal cord lumbar segment -http://purl.obolibrary.org/obo/UBERON_0002793;dorsal longitudinal fasciculus of pons; -http://purl.obolibrary.org/obo/UBERON_0002794;medial longitudinal fasciculus of pons;medial longitudinal fasciculus of pons of varolius -http://purl.obolibrary.org/obo/UBERON_0002794;medial longitudinal fasciculus of pons;pons medial longitudinal fasciculus -http://purl.obolibrary.org/obo/UBERON_0002794;medial longitudinal fasciculus of pons;pons of varolius medial longitudinal fasciculus -http://purl.obolibrary.org/obo/UBERON_0002795;frontal pole;frontal pole -http://purl.obolibrary.org/obo/UBERON_0002795;frontal pole;polus frontalis -http://purl.obolibrary.org/obo/UBERON_0002796;motor root of trigeminal nerve;motor branch of trigeminal nerve -http://purl.obolibrary.org/obo/UBERON_0002796;motor root of trigeminal nerve;motor root of nervus v -http://purl.obolibrary.org/obo/UBERON_0002796;motor root of trigeminal nerve;radix motoria (Nervus trigeminus [V]) -http://purl.obolibrary.org/obo/UBERON_0002796;motor root of trigeminal nerve;radix motoria nervus trigemini -http://purl.obolibrary.org/obo/UBERON_0002797;dorsal trigeminal tract;dorsal ascending trigeminal tract -http://purl.obolibrary.org/obo/UBERON_0002797;dorsal trigeminal tract;dorsal division of trigeminal lemniscus -http://purl.obolibrary.org/obo/UBERON_0002797;dorsal trigeminal tract;dorsal secondary ascending tract of v -http://purl.obolibrary.org/obo/UBERON_0002797;dorsal trigeminal tract;dorsal secondary tract of v -http://purl.obolibrary.org/obo/UBERON_0002797;dorsal trigeminal tract;dorsal trigeminal lemniscus -http://purl.obolibrary.org/obo/UBERON_0002797;dorsal trigeminal tract;dorsal trigeminal pathway -http://purl.obolibrary.org/obo/UBERON_0002797;dorsal trigeminal tract;dorsal trigeminothalamic tract -http://purl.obolibrary.org/obo/UBERON_0002797;dorsal trigeminal tract;posterior trigeminothalamic tract -http://purl.obolibrary.org/obo/UBERON_0002797;dorsal trigeminal tract;reticulothalamic tract -http://purl.obolibrary.org/obo/UBERON_0002797;dorsal trigeminal tract;tractus trigeminothalamicus posterior -http://purl.obolibrary.org/obo/UBERON_0002797;dorsal trigeminal tract;uncrossed dorsal trigeminothalamic tract -http://purl.obolibrary.org/obo/UBERON_0002798;spinothalamic tract of pons;pons of varolius spinothalamic tract -http://purl.obolibrary.org/obo/UBERON_0002798;spinothalamic tract of pons;pons of varolius spinothalamic tract of medulla -http://purl.obolibrary.org/obo/UBERON_0002798;spinothalamic tract of pons;pons spinothalamic tract -http://purl.obolibrary.org/obo/UBERON_0002798;spinothalamic tract of pons;pons spinothalamic tract of medulla -http://purl.obolibrary.org/obo/UBERON_0002798;spinothalamic tract of pons;spinothalamic tract of medulla of pons -http://purl.obolibrary.org/obo/UBERON_0002798;spinothalamic tract of pons;spinothalamic tract of medulla of pons of varolius -http://purl.obolibrary.org/obo/UBERON_0002798;spinothalamic tract of pons;spinothalamic tract of pons of varolius -http://purl.obolibrary.org/obo/UBERON_0002799;fronto-orbital sulcus;fronto-orbital dimple -http://purl.obolibrary.org/obo/UBERON_0002799;fronto-orbital sulcus;orbito-frontal sulcus -http://purl.obolibrary.org/obo/UBERON_0002799;fronto-orbital sulcus;orbitofrontal sulcus -http://purl.obolibrary.org/obo/UBERON_0002800;spinal trigeminal tract of pons; -http://purl.obolibrary.org/obo/UBERON_0002801;stratum zonale of thalamus;neuraxis stratum -http://purl.obolibrary.org/obo/UBERON_0002801;stratum zonale of thalamus;stratum zonale thalami -http://purl.obolibrary.org/obo/UBERON_0002802;left parietal lobe; -http://purl.obolibrary.org/obo/UBERON_0002803;right parietal lobe; -http://purl.obolibrary.org/obo/UBERON_0002804;left limbic lobe; -http://purl.obolibrary.org/obo/UBERON_0002805;right limbic lobe; -http://purl.obolibrary.org/obo/UBERON_0002806;left occipital lobe; -http://purl.obolibrary.org/obo/UBERON_0002807;right occipital lobe; -http://purl.obolibrary.org/obo/UBERON_0002808;left temporal lobe; -http://purl.obolibrary.org/obo/UBERON_0002809;right temporal lobe; -http://purl.obolibrary.org/obo/UBERON_0002810;right frontal lobe; -http://purl.obolibrary.org/obo/UBERON_0002811;left frontal lobe; -http://purl.obolibrary.org/obo/UBERON_0002812;left cerebral hemisphere;left hemisphere -http://purl.obolibrary.org/obo/UBERON_0002813;right cerebral hemisphere;right hemisphere -http://purl.obolibrary.org/obo/UBERON_0002814;posterior superior fissure of cerebellum;fissura post clivalis -http://purl.obolibrary.org/obo/UBERON_0002814;posterior superior fissure of cerebellum;post-clival fissure -http://purl.obolibrary.org/obo/UBERON_0002814;posterior superior fissure of cerebellum;postclival fissure -http://purl.obolibrary.org/obo/UBERON_0002814;posterior superior fissure of cerebellum;posterior superior fissure of cerebellum -http://purl.obolibrary.org/obo/UBERON_0002814;posterior superior fissure of cerebellum;postlunate fissure -http://purl.obolibrary.org/obo/UBERON_0002814;posterior superior fissure of cerebellum;superior posterior cerebellar fissure -http://purl.obolibrary.org/obo/UBERON_0002815;horizontal fissure of cerebellum;fissura horizontalis cerebelli -http://purl.obolibrary.org/obo/UBERON_0002815;horizontal fissure of cerebellum;fissura intercruralis -http://purl.obolibrary.org/obo/UBERON_0002815;horizontal fissure of cerebellum;fissura intercruralis cerebelli -http://purl.obolibrary.org/obo/UBERON_0002815;horizontal fissure of cerebellum;great horizontal fissure -http://purl.obolibrary.org/obo/UBERON_0002815;horizontal fissure of cerebellum;horizontal sulcus -http://purl.obolibrary.org/obo/UBERON_0002815;horizontal fissure of cerebellum;intercrural fissure of cerebellum -http://purl.obolibrary.org/obo/UBERON_0002816;prepyramidal fissure of cerebellum;fissura inferior anterior -http://purl.obolibrary.org/obo/UBERON_0002816;prepyramidal fissure of cerebellum;fissura parafloccularis -http://purl.obolibrary.org/obo/UBERON_0002816;prepyramidal fissure of cerebellum;fissura praepyramidalis -http://purl.obolibrary.org/obo/UBERON_0002816;prepyramidal fissure of cerebellum;fissura prebiventralis cerebelli -http://purl.obolibrary.org/obo/UBERON_0002816;prepyramidal fissure of cerebellum;fissura prepyramidalis -http://purl.obolibrary.org/obo/UBERON_0002816;prepyramidal fissure of cerebellum;fissura prepyramidalis cerebelli -http://purl.obolibrary.org/obo/UBERON_0002816;prepyramidal fissure of cerebellum;prebiventral fissure of cerebellum -http://purl.obolibrary.org/obo/UBERON_0002816;prepyramidal fissure of cerebellum;prepyramidal fissure of cerebellum -http://purl.obolibrary.org/obo/UBERON_0002816;prepyramidal fissure of cerebellum;prepyramidal sulcus -http://purl.obolibrary.org/obo/UBERON_0002817;secondary fissure of cerebellum;fissura postpyramidalis cerebelli -http://purl.obolibrary.org/obo/UBERON_0002817;secondary fissure of cerebellum;post-pyramidal fissure of cerebellum -http://purl.obolibrary.org/obo/UBERON_0002817;secondary fissure of cerebellum;postpyramidal fissure -http://purl.obolibrary.org/obo/UBERON_0002817;secondary fissure of cerebellum;secondary fissure of cerebellum -http://purl.obolibrary.org/obo/UBERON_0002818;posterolateral fissure of cerebellum;dorsolateral fissure of cerebellum -http://purl.obolibrary.org/obo/UBERON_0002818;posterolateral fissure of cerebellum;posterolateral fissure of cerebellum -http://purl.obolibrary.org/obo/UBERON_0002818;posterolateral fissure of cerebellum;prenodular fissure -http://purl.obolibrary.org/obo/UBERON_0002818;posterolateral fissure of cerebellum;prenodular sulcus -http://purl.obolibrary.org/obo/UBERON_0002818;posterolateral fissure of cerebellum;uvulonodular fissure -http://purl.obolibrary.org/obo/UBERON_0002819;apex of cochlea;apex of cochlear canal -http://purl.obolibrary.org/obo/UBERON_0002819;apex of cochlea;apex of the cochlear canal -http://purl.obolibrary.org/obo/UBERON_0002819;apex of cochlea;cochlea apex -http://purl.obolibrary.org/obo/UBERON_0002819;apex of cochlea;cupula of cochlea -http://purl.obolibrary.org/obo/UBERON_0002819;apex of cochlea;cupula of the cochlear canal -http://purl.obolibrary.org/obo/UBERON_0002820;zona arcuata of basilar membrane of cochlea;arcuate zone of basilar membrane -http://purl.obolibrary.org/obo/UBERON_0002820;zona arcuata of basilar membrane of cochlea;arcuate zone of organ of corti -http://purl.obolibrary.org/obo/UBERON_0002820;zona arcuata of basilar membrane of cochlea;basilar membrane of cochlea, zona arcuata -http://purl.obolibrary.org/obo/UBERON_0002822;macula lutea proper; -http://purl.obolibrary.org/obo/UBERON_0002823;clivus of fovea centralis;clivus of macula lutea -http://purl.obolibrary.org/obo/UBERON_0002823;clivus of fovea centralis;fovea centralis clivus -http://purl.obolibrary.org/obo/UBERON_0002824;vestibular ganglion;Scarpa's ganglion -http://purl.obolibrary.org/obo/UBERON_0002824;vestibular ganglion;nucleus nervi oculomotorii, pars medialis -http://purl.obolibrary.org/obo/UBERON_0002824;vestibular ganglion;vestibular part of vestibulocochlear ganglion -http://purl.obolibrary.org/obo/UBERON_0002824;vestibular ganglion;vestibulocochlear VIII ganglion vestibular component -http://purl.obolibrary.org/obo/UBERON_0002824;vestibular ganglion;vestibulocochlear ganglion vestibular component -http://purl.obolibrary.org/obo/UBERON_0002825;superior part of vestibular ganglion;pars superior ganglionis vestibularis -http://purl.obolibrary.org/obo/UBERON_0002825;superior part of vestibular ganglion;vestibular ganglion superior part -http://purl.obolibrary.org/obo/UBERON_0002826;inferior part of vestibular ganglion;pars inferior ganglionis vestibularis -http://purl.obolibrary.org/obo/UBERON_0002826;inferior part of vestibular ganglion;vestibular ganglion inferior part -http://purl.obolibrary.org/obo/UBERON_0002827;vestibulocochlear ganglion;SAG -http://purl.obolibrary.org/obo/UBERON_0002827;vestibulocochlear ganglion;acoustic ganglion -http://purl.obolibrary.org/obo/UBERON_0002827;vestibulocochlear ganglion;acoustic ganglion VIII -http://purl.obolibrary.org/obo/UBERON_0002827;vestibulocochlear ganglion;acoustico-vestibular VIII ganglion -http://purl.obolibrary.org/obo/UBERON_0002827;vestibulocochlear ganglion;auditory ganglion -http://purl.obolibrary.org/obo/UBERON_0002827;vestibulocochlear ganglion;gVIII -http://purl.obolibrary.org/obo/UBERON_0002827;vestibulocochlear ganglion;ganglion VIII -http://purl.obolibrary.org/obo/UBERON_0002827;vestibulocochlear ganglion;nucleus nervi oculomotorii ventrolateralis -http://purl.obolibrary.org/obo/UBERON_0002827;vestibulocochlear ganglion;nucleus nervi oculomotorii, pars ventralis -http://purl.obolibrary.org/obo/UBERON_0002827;vestibulocochlear ganglion;statoacoustic (VIII) ganglion -http://purl.obolibrary.org/obo/UBERON_0002827;vestibulocochlear ganglion;statoacoustic VIII ganglion -http://purl.obolibrary.org/obo/UBERON_0002827;vestibulocochlear ganglion;statoacoustic ganglia -http://purl.obolibrary.org/obo/UBERON_0002827;vestibulocochlear ganglion;statoacoustic ganglion -http://purl.obolibrary.org/obo/UBERON_0002827;vestibulocochlear ganglion;vestibulocochlear VIII ganglion -http://purl.obolibrary.org/obo/UBERON_0002827;vestibulocochlear ganglion;vestibulocochlear ganglia -http://purl.obolibrary.org/obo/UBERON_0002828;ventral cochlear nucleus;VCo -http://purl.obolibrary.org/obo/UBERON_0002828;ventral cochlear nucleus;accessory cochlear nucleus -http://purl.obolibrary.org/obo/UBERON_0002828;ventral cochlear nucleus;anterior cochlear nucleus -http://purl.obolibrary.org/obo/UBERON_0002828;ventral cochlear nucleus;c1281209 -http://purl.obolibrary.org/obo/UBERON_0002828;ventral cochlear nucleus;nucleus acustici accessorici -http://purl.obolibrary.org/obo/UBERON_0002828;ventral cochlear nucleus;nucleus cochlearis anterior -http://purl.obolibrary.org/obo/UBERON_0002828;ventral cochlear nucleus;nucleus cochlearis ventralis -http://purl.obolibrary.org/obo/UBERON_0002828;ventral cochlear nucleus;ventral cochlear nuclei -http://purl.obolibrary.org/obo/UBERON_0002828;ventral cochlear nucleus;ventral cochlear nucleus -http://purl.obolibrary.org/obo/UBERON_0002828;ventral cochlear nucleus;ventral coclear nucleus -http://purl.obolibrary.org/obo/UBERON_0002828;ventral cochlear nucleus;ventral division of cochlear nucleus -http://purl.obolibrary.org/obo/UBERON_0002829;Dorsal cochlear nucleus;DCo -http://purl.obolibrary.org/obo/UBERON_0002829;Dorsal cochlear nucleus;dorsal cochlear nucleus -http://purl.obolibrary.org/obo/UBERON_0002829;Dorsal cochlear nucleus;dorsal coclear nucleus -http://purl.obolibrary.org/obo/UBERON_0002829;Dorsal cochlear nucleus;dorsal division of cochlear nucleus -http://purl.obolibrary.org/obo/UBERON_0002829;Dorsal cochlear nucleus;nucleus cochlearis dorsalis -http://purl.obolibrary.org/obo/UBERON_0002829;Dorsal cochlear nucleus;nucleus cochlearis posterior -http://purl.obolibrary.org/obo/UBERON_0002829;Dorsal cochlear nucleus;posterior cochlear nucleus -http://purl.obolibrary.org/obo/UBERON_0002829;Dorsal cochlear nucleus;tuberculum acousticum -http://purl.obolibrary.org/obo/UBERON_0002829;dorsal cochlear nucleus;DCo -http://purl.obolibrary.org/obo/UBERON_0002829;dorsal cochlear nucleus;dorsal cochlear nucleus -http://purl.obolibrary.org/obo/UBERON_0002829;dorsal cochlear nucleus;dorsal coclear nucleus -http://purl.obolibrary.org/obo/UBERON_0002829;dorsal cochlear nucleus;dorsal division of cochlear nucleus -http://purl.obolibrary.org/obo/UBERON_0002829;dorsal cochlear nucleus;nucleus cochlearis dorsalis -http://purl.obolibrary.org/obo/UBERON_0002829;dorsal cochlear nucleus;nucleus cochlearis posterior -http://purl.obolibrary.org/obo/UBERON_0002829;dorsal cochlear nucleus;posterior cochlear nucleus -http://purl.obolibrary.org/obo/UBERON_0002829;dorsal cochlear nucleus;tuberculum acousticum -http://purl.obolibrary.org/obo/UBERON_0002830;anteroventral cochlear nucleus;anterior part of anterior cochlear nucleus -http://purl.obolibrary.org/obo/UBERON_0002830;anteroventral cochlear nucleus;anteroventral auditory nucleus -http://purl.obolibrary.org/obo/UBERON_0002830;anteroventral cochlear nucleus;nucleus magnocellularis -http://purl.obolibrary.org/obo/UBERON_0002831;posteroventral cochlear nucleus;posterior part of anterior cochlear nucleus -http://purl.obolibrary.org/obo/UBERON_0002832;ventral nucleus of trapezoid body;VNTB -http://purl.obolibrary.org/obo/UBERON_0002832;ventral nucleus of trapezoid body;anterior nucleus of trapezoid body -http://purl.obolibrary.org/obo/UBERON_0002832;ventral nucleus of trapezoid body;nucleus anterior corporis trapezoidei -http://purl.obolibrary.org/obo/UBERON_0002832;ventral nucleus of trapezoid body;nucleus ventralis corporis trapezoidei -http://purl.obolibrary.org/obo/UBERON_0002832;ventral nucleus of trapezoid body;ventral trapezoid nucleus -http://purl.obolibrary.org/obo/UBERON_0002833;medial nucleus of trapezoid body;MNTB -http://purl.obolibrary.org/obo/UBERON_0002834;cervical dorsal root ganglion;cervical dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0002834;cervical dorsal root ganglion;cervical spinal ganglion -http://purl.obolibrary.org/obo/UBERON_0002835;Thoracic dorsal root ganglion;dorsal root ganglion of thorax -http://purl.obolibrary.org/obo/UBERON_0002835;Thoracic dorsal root ganglion;ganglion of dorsal root of thorax -http://purl.obolibrary.org/obo/UBERON_0002835;Thoracic dorsal root ganglion;ganglion spinalis of thorax -http://purl.obolibrary.org/obo/UBERON_0002835;Thoracic dorsal root ganglion;thoracic dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0002835;Thoracic dorsal root ganglion;thoracic spinal ganglion -http://purl.obolibrary.org/obo/UBERON_0002835;Thoracic dorsal root ganglion;thorax dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0002835;Thoracic dorsal root ganglion;thorax ganglion of dorsal root -http://purl.obolibrary.org/obo/UBERON_0002835;Thoracic dorsal root ganglion;thorax ganglion spinalis -http://purl.obolibrary.org/obo/UBERON_0002835;thoracic dorsal root ganglion;dorsal root ganglion of thorax -http://purl.obolibrary.org/obo/UBERON_0002835;thoracic dorsal root ganglion;ganglion of dorsal root of thorax -http://purl.obolibrary.org/obo/UBERON_0002835;thoracic dorsal root ganglion;ganglion spinalis of thorax -http://purl.obolibrary.org/obo/UBERON_0002835;thoracic dorsal root ganglion;thoracic dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0002835;thoracic dorsal root ganglion;thoracic spinal ganglion -http://purl.obolibrary.org/obo/UBERON_0002835;thoracic dorsal root ganglion;thorax dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0002835;thoracic dorsal root ganglion;thorax ganglion of dorsal root -http://purl.obolibrary.org/obo/UBERON_0002835;thoracic dorsal root ganglion;thorax ganglion spinalis -http://purl.obolibrary.org/obo/UBERON_0002836;Lumbar dorsal root ganglion;lumbar dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0002836;Lumbar dorsal root ganglion;lumbar spinal ganglion -http://purl.obolibrary.org/obo/UBERON_0002836;lumbar dorsal root ganglion;lumbar dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0002836;lumbar dorsal root ganglion;lumbar spinal ganglion -http://purl.obolibrary.org/obo/UBERON_0002837;sacral dorsal root ganglion;sacral dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0002837;sacral dorsal root ganglion;sacral spinal ganglion -http://purl.obolibrary.org/obo/UBERON_0002838;first cervical dorsal root ganglion;first cervical dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0002838;first cervical dorsal root ganglion;first cervical spinal ganglion -http://purl.obolibrary.org/obo/UBERON_0002839;second cervical dorsal root ganglion;C2 dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0002839;second cervical dorsal root ganglion;second cervical dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0002839;second cervical dorsal root ganglion;second cervical spinal ganglion -http://purl.obolibrary.org/obo/UBERON_0002840;third cervical dorsal root ganglion;C3 dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0002840;third cervical dorsal root ganglion;third cervical dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0002840;third cervical dorsal root ganglion;third cervical spinal ganglion -http://purl.obolibrary.org/obo/UBERON_0002841;fourth cervical dorsal root ganglion;C4 dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0002841;fourth cervical dorsal root ganglion;fourth cervical dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0002841;fourth cervical dorsal root ganglion;fourth cervical spinal ganglion -http://purl.obolibrary.org/obo/UBERON_0002842;fifth cervical dorsal root ganglion;C5 dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0002842;fifth cervical dorsal root ganglion;fifth cervical dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0002842;fifth cervical dorsal root ganglion;fifth cervical spinal ganglion -http://purl.obolibrary.org/obo/UBERON_0002843;seventh cervical dorsal root ganglion;C7 dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0002843;seventh cervical dorsal root ganglion;seventh cervical dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0002843;seventh cervical dorsal root ganglion;seventh cervical spinal ganglion -http://purl.obolibrary.org/obo/UBERON_0002844;eighth cervical dorsal root ganglion;eighth cervical dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0002844;eighth cervical dorsal root ganglion;eighth cervical spinal ganglion -http://purl.obolibrary.org/obo/UBERON_0002845;first thoracic dorsal root ganglion;first thoracic dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0002845;first thoracic dorsal root ganglion;first thoracic spinal ganglion -http://purl.obolibrary.org/obo/UBERON_0002846;second thoracic dorsal root ganglion;second thoracic dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0002846;second thoracic dorsal root ganglion;second thoracic spinal ganglion -http://purl.obolibrary.org/obo/UBERON_0002847;third thoracic dorsal root ganglion;third thoracic dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0002847;third thoracic dorsal root ganglion;third thoracic spinal ganglion -http://purl.obolibrary.org/obo/UBERON_0002848;fifth thoracic dorsal root ganglion;fifth thoracic dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0002848;fifth thoracic dorsal root ganglion;fifth thoracic spinal ganglion -http://purl.obolibrary.org/obo/UBERON_0002849;sixth thoracic dorsal root ganglion;sixth thoracic dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0002849;sixth thoracic dorsal root ganglion;sixth thoracic spinal ganglion -http://purl.obolibrary.org/obo/UBERON_0002850;seventh thoracic dorsal root ganglion;seventh thoracic dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0002850;seventh thoracic dorsal root ganglion;seventh thoracic spinal ganglion -http://purl.obolibrary.org/obo/UBERON_0002851;eighth thoracic dorsal root ganglion;eighth thoracic dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0002851;eighth thoracic dorsal root ganglion;eighth thoracic spinal ganglion -http://purl.obolibrary.org/obo/UBERON_0002852;ninth thoracic dorsal root ganglion;ninth thoracic dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0002852;ninth thoracic dorsal root ganglion;ninth thoracic spinal ganglion -http://purl.obolibrary.org/obo/UBERON_0002853;tenth thoracic dorsal root ganglion;tenth thoracic dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0002853;tenth thoracic dorsal root ganglion;tenth thoracic spinal ganglion -http://purl.obolibrary.org/obo/UBERON_0002854;eleventh thoracic dorsal root ganglion;eleventh thoracic dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0002854;eleventh thoracic dorsal root ganglion;eleventh thoracic spinal ganglion -http://purl.obolibrary.org/obo/UBERON_0002855;twelfth thoracic dorsal root ganglion;twelfth thoracic dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0002855;twelfth thoracic dorsal root ganglion;twelfth thoracic spinal ganglion -http://purl.obolibrary.org/obo/UBERON_0002856;second lumbar dorsal root ganglion;second lumbar dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0002856;second lumbar dorsal root ganglion;second lumbar spinal ganglion -http://purl.obolibrary.org/obo/UBERON_0002857;first lumbar dorsal root ganglion;first lumbar dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0002857;first lumbar dorsal root ganglion;first lumbar spinal ganglion -http://purl.obolibrary.org/obo/UBERON_0002858;third lumbar dorsal root ganglion;third lumbar dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0002858;third lumbar dorsal root ganglion;third lumbar spinal ganglion -http://purl.obolibrary.org/obo/UBERON_0002859;fifth lumbar dorsal root ganglion;L5 dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0002859;fifth lumbar dorsal root ganglion;L5 ganglion -http://purl.obolibrary.org/obo/UBERON_0002859;fifth lumbar dorsal root ganglion;fifth lumbar dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0002859;fifth lumbar dorsal root ganglion;fifth lumbar spinal ganglion -http://purl.obolibrary.org/obo/UBERON_0002860;first sacral dorsal root ganglion;first sacral dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0002860;first sacral dorsal root ganglion;first sacral spinal ganglion -http://purl.obolibrary.org/obo/UBERON_0002861;second sacral dorsal root ganglion;second sacral dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0002861;second sacral dorsal root ganglion;second sacral spinal ganglion -http://purl.obolibrary.org/obo/UBERON_0002862;third sacral dorsal root ganglion;third sacral dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0002862;third sacral dorsal root ganglion;third sacral spinal ganglion -http://purl.obolibrary.org/obo/UBERON_0002863;fifth sacral dorsal root ganglion;fifth sacral dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0002863;fifth sacral dorsal root ganglion;fifth sacral spinal ganglion -http://purl.obolibrary.org/obo/UBERON_0002864;accessory cuneate nucleus;external cuneate nucleus -http://purl.obolibrary.org/obo/UBERON_0002864;accessory cuneate nucleus;lateral cuneate nucleus -http://purl.obolibrary.org/obo/UBERON_0002864;accessory cuneate nucleus;nucleus of corpus restiforme -http://purl.obolibrary.org/obo/UBERON_0002865;arcuate nucleus of medulla;ArcM -http://purl.obolibrary.org/obo/UBERON_0002865;arcuate nucleus of medulla;arcuate hypothalamic nucleus medial part -http://purl.obolibrary.org/obo/UBERON_0002865;arcuate nucleus of medulla;arcuate hypothalamic nucleus of medulla -http://purl.obolibrary.org/obo/UBERON_0002865;arcuate nucleus of medulla;arcuate nucleus (medulla) -http://purl.obolibrary.org/obo/UBERON_0002865;arcuate nucleus of medulla;arcuate nucleus of hypothalamus of medulla -http://purl.obolibrary.org/obo/UBERON_0002865;arcuate nucleus of medulla;arcuate nucleus of the medulla -http://purl.obolibrary.org/obo/UBERON_0002865;arcuate nucleus of medulla;arcuate nucleus, medial part -http://purl.obolibrary.org/obo/UBERON_0002865;arcuate nucleus of medulla;arcuate nucleus-1 -http://purl.obolibrary.org/obo/UBERON_0002865;arcuate nucleus of medulla;arcuate nucleus-2 of medulla -http://purl.obolibrary.org/obo/UBERON_0002865;arcuate nucleus of medulla;arcuate periventricular nucleus of medulla -http://purl.obolibrary.org/obo/UBERON_0002865;arcuate nucleus of medulla;infundibular hypothalamic nucleus of medulla -http://purl.obolibrary.org/obo/UBERON_0002865;arcuate nucleus of medulla;infundibular nucleus of medulla -http://purl.obolibrary.org/obo/UBERON_0002865;arcuate nucleus of medulla;infundibular periventricular nucleus of medulla -http://purl.obolibrary.org/obo/UBERON_0002865;arcuate nucleus of medulla;medial arcuate nucleus -http://purl.obolibrary.org/obo/UBERON_0002865;arcuate nucleus of medulla;medulla arcuate hypothalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0002865;arcuate nucleus of medulla;medulla arcuate nucleus -http://purl.obolibrary.org/obo/UBERON_0002865;arcuate nucleus of medulla;medulla arcuate nucleus of hypothalamus -http://purl.obolibrary.org/obo/UBERON_0002865;arcuate nucleus of medulla;medulla arcuate nucleus-2 -http://purl.obolibrary.org/obo/UBERON_0002865;arcuate nucleus of medulla;medulla arcuate periventricular nucleus -http://purl.obolibrary.org/obo/UBERON_0002865;arcuate nucleus of medulla;medulla infundibular hypothalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0002865;arcuate nucleus of medulla;medulla infundibular nucleus -http://purl.obolibrary.org/obo/UBERON_0002865;arcuate nucleus of medulla;medulla infundibular periventricular nucleus -http://purl.obolibrary.org/obo/UBERON_0002865;arcuate nucleus of medulla;nuclei arcuati -http://purl.obolibrary.org/obo/UBERON_0002865;arcuate nucleus of medulla;nucleus arciformis pyramidalis -http://purl.obolibrary.org/obo/UBERON_0002865;arcuate nucleus of medulla;nucleus arcuatus myelencephali -http://purl.obolibrary.org/obo/UBERON_0002865;arcuate nucleus of medulla;nucleus arcuatus pyramidalis -http://purl.obolibrary.org/obo/UBERON_0002866;caudal part of spinal trigeminal nucleus;caudal nucleus -http://purl.obolibrary.org/obo/UBERON_0002866;caudal part of spinal trigeminal nucleus;caudal nucleus (kandell) -http://purl.obolibrary.org/obo/UBERON_0002866;caudal part of spinal trigeminal nucleus;spinal trigeminal nucleus, caudal part -http://purl.obolibrary.org/obo/UBERON_0002867;central gray substance of medulla;central gray matter -http://purl.obolibrary.org/obo/UBERON_0002867;central gray substance of medulla;medullary central gray substance -http://purl.obolibrary.org/obo/UBERON_0002868;commissural nucleus of vagus nerve;commissural nucleus-1 -http://purl.obolibrary.org/obo/UBERON_0002868;commissural nucleus of vagus nerve;nucleus of inferior commissure -http://purl.obolibrary.org/obo/UBERON_0002868;commissural nucleus of vagus nerve;nucleus of inferior commisure -http://purl.obolibrary.org/obo/UBERON_0002869;diffuse reticular nucleus;Koelliker-Fuse nucleus -http://purl.obolibrary.org/obo/UBERON_0002869;diffuse reticular nucleus;Kolloker-Fuse nucleus -http://purl.obolibrary.org/obo/UBERON_0002869;diffuse reticular nucleus;Kölliker-Fuse nucleus -http://purl.obolibrary.org/obo/UBERON_0002869;diffuse reticular nucleus;kolliker-Fuse nucleus -http://purl.obolibrary.org/obo/UBERON_0002869;diffuse reticular nucleus;nucleus of Kolliker-Fuse -http://purl.obolibrary.org/obo/UBERON_0002869;diffuse reticular nucleus;nucleus subparabrachialis -http://purl.obolibrary.org/obo/UBERON_0002869;diffuse reticular nucleus;subparabrachial nucleus -http://purl.obolibrary.org/obo/UBERON_0002870;dorsal motor nucleus of vagus nerve;dorsal efferent nucleus of vagus -http://purl.obolibrary.org/obo/UBERON_0002870;dorsal motor nucleus of vagus nerve;dorsal motor nucleus -http://purl.obolibrary.org/obo/UBERON_0002870;dorsal motor nucleus of vagus nerve;dorsal motor nucleus of the vagus -http://purl.obolibrary.org/obo/UBERON_0002870;dorsal motor nucleus of vagus nerve;dorsal motor nucleus of the vagus (vagal nucleus) -http://purl.obolibrary.org/obo/UBERON_0002870;dorsal motor nucleus of vagus nerve;dorsal motor nucleus of the vagus nerve -http://purl.obolibrary.org/obo/UBERON_0002870;dorsal motor nucleus of vagus nerve;dorsal motor nucleus of vagus -http://purl.obolibrary.org/obo/UBERON_0002870;dorsal motor nucleus of vagus nerve;dorsal motor nucleus of vagus X nerve -http://purl.obolibrary.org/obo/UBERON_0002870;dorsal motor nucleus of vagus nerve;dorsal motor nucleus of vagus nerve -http://purl.obolibrary.org/obo/UBERON_0002870;dorsal motor nucleus of vagus nerve;dorsal motor vagal nucleus -http://purl.obolibrary.org/obo/UBERON_0002870;dorsal motor nucleus of vagus nerve;dorsal nucleus of the vagus nerve -http://purl.obolibrary.org/obo/UBERON_0002870;dorsal motor nucleus of vagus nerve;dorsal nucleus of vagus nerve -http://purl.obolibrary.org/obo/UBERON_0002870;dorsal motor nucleus of vagus nerve;dorsal vagal nucleus -http://purl.obolibrary.org/obo/UBERON_0002870;dorsal motor nucleus of vagus nerve;nucleus alaris -http://purl.obolibrary.org/obo/UBERON_0002870;dorsal motor nucleus of vagus nerve;nucleus alaris (Oertel) -http://purl.obolibrary.org/obo/UBERON_0002870;dorsal motor nucleus of vagus nerve;nucleus dorsalis motorius nervi vagi -http://purl.obolibrary.org/obo/UBERON_0002870;dorsal motor nucleus of vagus nerve;nucleus dorsalis nervi vagi -http://purl.obolibrary.org/obo/UBERON_0002870;dorsal motor nucleus of vagus nerve;nucleus posterior nervi vagi -http://purl.obolibrary.org/obo/UBERON_0002870;dorsal motor nucleus of vagus nerve;nucleus vagalis dorsalis -http://purl.obolibrary.org/obo/UBERON_0002870;dorsal motor nucleus of vagus nerve;posterior nucleus of vagus nerve -http://purl.obolibrary.org/obo/UBERON_0002870;dorsal motor nucleus of vagus nerve;vagus nucleus -http://purl.obolibrary.org/obo/UBERON_0002871;hypoglossal nucleus;hypoglossal XII nucleus -http://purl.obolibrary.org/obo/UBERON_0002871;hypoglossal nucleus;hypoglossal nerve nucleus -http://purl.obolibrary.org/obo/UBERON_0002871;hypoglossal nucleus;hypoglossal nucleus -http://purl.obolibrary.org/obo/UBERON_0002871;hypoglossal nucleus;nucleus hypoglossalis -http://purl.obolibrary.org/obo/UBERON_0002871;hypoglossal nucleus;nucleus nervi hypoglossi -http://purl.obolibrary.org/obo/UBERON_0002871;hypoglossal nucleus;nucleus of hypoglossal nerve -http://purl.obolibrary.org/obo/UBERON_0002871;hypoglossal nucleus;twelfth cranial nerve nucleus -http://purl.obolibrary.org/obo/UBERON_0002872;inferior salivatory nucleus;inferior salivary nucleus -http://purl.obolibrary.org/obo/UBERON_0002872;inferior salivatory nucleus;inferior salivatary nucleus -http://purl.obolibrary.org/obo/UBERON_0002872;inferior salivatory nucleus;nucleus salivarius inferior -http://purl.obolibrary.org/obo/UBERON_0002872;inferior salivatory nucleus;nucleus salivatorius caudalis -http://purl.obolibrary.org/obo/UBERON_0002872;inferior salivatory nucleus;nucleus salivatorius inferior -http://purl.obolibrary.org/obo/UBERON_0002872;inferior salivatory nucleus;nucleus salivatorius inferior nervi glossopharyngei -http://purl.obolibrary.org/obo/UBERON_0002873;interpolar part of spinal trigeminal nucleus; -http://purl.obolibrary.org/obo/UBERON_0002874;lateral pericuneate nucleus; -http://purl.obolibrary.org/obo/UBERON_0002875;medial pericuneate nucleus; -http://purl.obolibrary.org/obo/UBERON_0002876;nucleus intercalatus;intercalated nucleus of medulla -http://purl.obolibrary.org/obo/UBERON_0002876;nucleus intercalatus;nucleus Staderini -http://purl.obolibrary.org/obo/UBERON_0002876;nucleus intercalatus;nucleus intercalatus of medulla -http://purl.obolibrary.org/obo/UBERON_0002876;nucleus intercalatus;nucleus of Staderini -http://purl.obolibrary.org/obo/UBERON_0002877;parasolitary nucleus;nucleus fasciculus solitarius -http://purl.obolibrary.org/obo/UBERON_0002877;parasolitary nucleus;nucleus juxtasolitarius -http://purl.obolibrary.org/obo/UBERON_0002879;peritrigeminal nucleus; -http://purl.obolibrary.org/obo/UBERON_0002880;pontobulbar nucleus;nucleus of circumolivary bundle -http://purl.obolibrary.org/obo/UBERON_0002880;pontobulbar nucleus;pontobulbar body -http://purl.obolibrary.org/obo/UBERON_0002881;sublingual nucleus;Roller's nucleus -http://purl.obolibrary.org/obo/UBERON_0002881;sublingual nucleus;SLg -http://purl.obolibrary.org/obo/UBERON_0002881;sublingual nucleus;inferior central nucleus -http://purl.obolibrary.org/obo/UBERON_0002881;sublingual nucleus;nucleus Roller -http://purl.obolibrary.org/obo/UBERON_0002881;sublingual nucleus;nucleus of roller -http://purl.obolibrary.org/obo/UBERON_0002881;sublingual nucleus;nucleus parvocellularis nervi hypoglossi -http://purl.obolibrary.org/obo/UBERON_0002881;sublingual nucleus;nucleus sublingualis -http://purl.obolibrary.org/obo/UBERON_0002882;supraspinal nucleus; -http://purl.obolibrary.org/obo/UBERON_0002883;central amygdaloid nucleus;amygdala central nucleus -http://purl.obolibrary.org/obo/UBERON_0002883;central amygdaloid nucleus;central amygdala -http://purl.obolibrary.org/obo/UBERON_0002883;central amygdaloid nucleus;central amygdalar nucleus -http://purl.obolibrary.org/obo/UBERON_0002883;central amygdaloid nucleus;central nuclear group -http://purl.obolibrary.org/obo/UBERON_0002883;central amygdaloid nucleus;central nucleus amygdala -http://purl.obolibrary.org/obo/UBERON_0002883;central amygdaloid nucleus;central nucleus of amygda -http://purl.obolibrary.org/obo/UBERON_0002883;central amygdaloid nucleus;central nucleus of amygdala -http://purl.obolibrary.org/obo/UBERON_0002883;central amygdaloid nucleus;central nucleus of the amygdala -http://purl.obolibrary.org/obo/UBERON_0002883;central amygdaloid nucleus;nucleus amygdalae centralis -http://purl.obolibrary.org/obo/UBERON_0002883;central amygdaloid nucleus;nucleus amygdaloideus centralis -http://purl.obolibrary.org/obo/UBERON_0002883;central amygdaloid nucleus;nucleus centralis amygdalae -http://purl.obolibrary.org/obo/UBERON_0002884;intercalated amygdaloid nuclei;intercalated amygdaloid nuclei -http://purl.obolibrary.org/obo/UBERON_0002884;intercalated amygdaloid nuclei;intercalated amygdaloid nucleus -http://purl.obolibrary.org/obo/UBERON_0002884;intercalated amygdaloid nuclei;intercalated masses of nucleus amygdaloideus -http://purl.obolibrary.org/obo/UBERON_0002884;intercalated amygdaloid nuclei;intercalated nuclei of amygdala -http://purl.obolibrary.org/obo/UBERON_0002884;intercalated amygdaloid nuclei;intercalated nucleus of the amygdala -http://purl.obolibrary.org/obo/UBERON_0002884;intercalated amygdaloid nuclei;massa intercalata -http://purl.obolibrary.org/obo/UBERON_0002884;intercalated amygdaloid nuclei;massa intercalata of amygdala -http://purl.obolibrary.org/obo/UBERON_0002885;accessory basal amygdaloid nucleus;accessory basal nucleus of amygdala -http://purl.obolibrary.org/obo/UBERON_0002885;accessory basal amygdaloid nucleus;basal amygdaloid nucleus, medial part -http://purl.obolibrary.org/obo/UBERON_0002885;accessory basal amygdaloid nucleus;basomedial nucleus (accessory basal nucleus) -http://purl.obolibrary.org/obo/UBERON_0002885;accessory basal amygdaloid nucleus;basomedial nucleus (de olmos) -http://purl.obolibrary.org/obo/UBERON_0002886;lateral amygdaloid nucleus;lateral amygdala -http://purl.obolibrary.org/obo/UBERON_0002886;lateral amygdaloid nucleus;lateral amygdalar nucleus -http://purl.obolibrary.org/obo/UBERON_0002886;lateral amygdaloid nucleus;lateral nucleus of amygdala -http://purl.obolibrary.org/obo/UBERON_0002886;lateral amygdaloid nucleus;lateral nucleus of the amygdala -http://purl.obolibrary.org/obo/UBERON_0002886;lateral amygdaloid nucleus;lateral principal nucleus of amygdala -http://purl.obolibrary.org/obo/UBERON_0002886;lateral amygdaloid nucleus;medial principal nucleus -http://purl.obolibrary.org/obo/UBERON_0002886;lateral amygdaloid nucleus;nucleus amygdalae lateralis -http://purl.obolibrary.org/obo/UBERON_0002886;lateral amygdaloid nucleus;nucleus amygdaloideus lateralis -http://purl.obolibrary.org/obo/UBERON_0002886;lateral amygdaloid nucleus;nucleus lateralis amygdalae -http://purl.obolibrary.org/obo/UBERON_0002887;basal amygdaloid nucleus;basolateral amygaloid nucleus -http://purl.obolibrary.org/obo/UBERON_0002887;basal amygdaloid nucleus;basolateral amygdalar nucleus -http://purl.obolibrary.org/obo/UBERON_0002887;basal amygdaloid nucleus;basolateral amygdaloid nucleus -http://purl.obolibrary.org/obo/UBERON_0002887;basal amygdaloid nucleus;basolateral nucleus (de olmos) -http://purl.obolibrary.org/obo/UBERON_0002887;basal amygdaloid nucleus;intermediate principal nucleus -http://purl.obolibrary.org/obo/UBERON_0002887;basal amygdaloid nucleus;nucleus amygdalae basalis lateralis -http://purl.obolibrary.org/obo/UBERON_0002888;lateral part of basal amygdaloid nucleus;lateral basal nucleus of amygdala -http://purl.obolibrary.org/obo/UBERON_0002888;lateral part of basal amygdaloid nucleus;lateral basal nucleus of the amygdala -http://purl.obolibrary.org/obo/UBERON_0002888;lateral part of basal amygdaloid nucleus;lateral division of basal nucleus -http://purl.obolibrary.org/obo/UBERON_0002888;lateral part of basal amygdaloid nucleus;lateral division of the basal nucleus -http://purl.obolibrary.org/obo/UBERON_0002889;medial part of basal amygdaloid nucleus;basomedial amygdalar nucleus -http://purl.obolibrary.org/obo/UBERON_0002889;medial part of basal amygdaloid nucleus;basomedial amygdaloid nucleus -http://purl.obolibrary.org/obo/UBERON_0002889;medial part of basal amygdaloid nucleus;medial basal nucleus of amygdala -http://purl.obolibrary.org/obo/UBERON_0002889;medial part of basal amygdaloid nucleus;medial division of basal nucleus -http://purl.obolibrary.org/obo/UBERON_0002889;medial part of basal amygdaloid nucleus;nucleus amygdalae basalis medialis -http://purl.obolibrary.org/obo/UBERON_0002890;anterior amygdaloid area;anterior amygaloid area -http://purl.obolibrary.org/obo/UBERON_0002890;anterior amygdaloid area;anterior amygdalar area -http://purl.obolibrary.org/obo/UBERON_0002891;cortical amygdaloid nucleus;posterior cortical amygdaloid nucleus -http://purl.obolibrary.org/obo/UBERON_0002891;cortical amygdaloid nucleus;posterior cortical nucleus of amygdala -http://purl.obolibrary.org/obo/UBERON_0002892;medial amygdaloid nucleus;medial amygalar nucleus -http://purl.obolibrary.org/obo/UBERON_0002892;medial amygdaloid nucleus;medial amygdala -http://purl.obolibrary.org/obo/UBERON_0002892;medial amygdaloid nucleus;medial amygdalar nucleus -http://purl.obolibrary.org/obo/UBERON_0002892;medial amygdaloid nucleus;medial amygdaloid nucleus principal part -http://purl.obolibrary.org/obo/UBERON_0002892;medial amygdaloid nucleus;medial nucleus of amygdala -http://purl.obolibrary.org/obo/UBERON_0002892;medial amygdaloid nucleus;medial nucleus of the amygdala -http://purl.obolibrary.org/obo/UBERON_0002892;medial amygdaloid nucleus;nucleus amygdalae medialis -http://purl.obolibrary.org/obo/UBERON_0002892;medial amygdaloid nucleus;nucleus amygdaloideus medialis -http://purl.obolibrary.org/obo/UBERON_0002892;medial amygdaloid nucleus;nucleus medialis amygdalae -http://purl.obolibrary.org/obo/UBERON_0002893;nucleus of lateral olfactory tract;NLOT -http://purl.obolibrary.org/obo/UBERON_0002893;nucleus of lateral olfactory tract;lateral olfactory tract nucleus -http://purl.obolibrary.org/obo/UBERON_0002893;nucleus of lateral olfactory tract;nucleus of the lateral olfactory tract (ganser) -http://purl.obolibrary.org/obo/UBERON_0002894;olfactory cortex;archaeocortex -http://purl.obolibrary.org/obo/UBERON_0002894;olfactory cortex;archeocortex -http://purl.obolibrary.org/obo/UBERON_0002894;olfactory cortex;olfactory areas -http://purl.obolibrary.org/obo/UBERON_0002894;olfactory cortex;olfactory lobe -http://purl.obolibrary.org/obo/UBERON_0002895;secondary olfactory cortex;secondary olfactory areas -http://purl.obolibrary.org/obo/UBERON_0002895;secondary olfactory cortex;secondary olfactory cortex -http://purl.obolibrary.org/obo/UBERON_0002895;secondary olfactory cortex;secondary olfactory cortical area (carpenter) -http://purl.obolibrary.org/obo/UBERON_0002896;telodiencephalic fissure;telo-diencephalic fissure -http://purl.obolibrary.org/obo/UBERON_0002897;cistern of lamina terminalis;cisterna lamina terminalis -http://purl.obolibrary.org/obo/UBERON_0002897;cistern of lamina terminalis;lamina terminalis cistern -http://purl.obolibrary.org/obo/UBERON_0002898;chiasmatic cistern;cisterna chiasmatica -http://purl.obolibrary.org/obo/UBERON_0002898;chiasmatic cistern;cisterna chiasmatis -http://purl.obolibrary.org/obo/UBERON_0002899;hippocampal sulcus;dentate fissure -http://purl.obolibrary.org/obo/UBERON_0002899;hippocampal sulcus;hippocampal fissure -http://purl.obolibrary.org/obo/UBERON_0002899;hippocampal sulcus;sulcus hippocampi -http://purl.obolibrary.org/obo/UBERON_0002900;transverse occipital sulcus;sulcus occipitalis transversus -http://purl.obolibrary.org/obo/UBERON_0002901;posterior calcarine sulcus;postcalcarine sulcus -http://purl.obolibrary.org/obo/UBERON_0002901;posterior calcarine sulcus;posterior calcarine fissure -http://purl.obolibrary.org/obo/UBERON_0002901;posterior calcarine sulcus;posterior part of calcarine sulcus -http://purl.obolibrary.org/obo/UBERON_0002901;posterior calcarine sulcus;sulcus calcarinus posterior -http://purl.obolibrary.org/obo/UBERON_0002902;occipital pole;polus occipitalis -http://purl.obolibrary.org/obo/UBERON_0002903;lunate sulcus;lunate fissure -http://purl.obolibrary.org/obo/UBERON_0002903;lunate sulcus;sulcus lunatus -http://purl.obolibrary.org/obo/UBERON_0002903;lunate sulcus;sulcus simialis -http://purl.obolibrary.org/obo/UBERON_0002904;lateral occipital sulcus;sulcus occipitalis lateralis -http://purl.obolibrary.org/obo/UBERON_0002905;intralingual sulcus;sulcus intralingualis -http://purl.obolibrary.org/obo/UBERON_0002906;anterior occipital sulcus;ascending limb of the inferior temporal sulcus -http://purl.obolibrary.org/obo/UBERON_0002906;anterior occipital sulcus;posterior inferior temporal sulcus -http://purl.obolibrary.org/obo/UBERON_0002906;anterior occipital sulcus;sulci occipitales superiores -http://purl.obolibrary.org/obo/UBERON_0002906;anterior occipital sulcus;sulcus annectans -http://purl.obolibrary.org/obo/UBERON_0002906;anterior occipital sulcus;sulcus occipitalis anterior -http://purl.obolibrary.org/obo/UBERON_0002907;superior postcentral sulcus;postcentral dimple -http://purl.obolibrary.org/obo/UBERON_0002907;superior postcentral sulcus;sulcus postcentralis superior -http://purl.obolibrary.org/obo/UBERON_0002908;subparietal sulcus;splenial sulcus -http://purl.obolibrary.org/obo/UBERON_0002908;subparietal sulcus;sulcus subparietalis -http://purl.obolibrary.org/obo/UBERON_0002908;subparietal sulcus;suprasplenial sulcus -http://purl.obolibrary.org/obo/UBERON_0002909;posterior subcentral sulcus;sulcus subcentralis posterior -http://purl.obolibrary.org/obo/UBERON_0002910;posterior ascending limb of lateral sulcus;ascending terminal ramus of sylvian fissure -http://purl.obolibrary.org/obo/UBERON_0002910;posterior ascending limb of lateral sulcus;posterior ascending limb of lateral fissure -http://purl.obolibrary.org/obo/UBERON_0002910;posterior ascending limb of lateral sulcus;posterior ramus of lateral cerebral sulcus -http://purl.obolibrary.org/obo/UBERON_0002910;posterior ascending limb of lateral sulcus;ramus posterior ascendens fissurae lateralis -http://purl.obolibrary.org/obo/UBERON_0002910;posterior ascending limb of lateral sulcus;ramus posterior sulci lateralis cerebri -http://purl.obolibrary.org/obo/UBERON_0002911;parietal operculum;operculum parietale -http://purl.obolibrary.org/obo/UBERON_0002912;marginal sulcus;marginal branch of cingulate sulcus -http://purl.obolibrary.org/obo/UBERON_0002912;marginal sulcus;marginal ramus of cingulate sulcus -http://purl.obolibrary.org/obo/UBERON_0002912;marginal sulcus;ramus marginalis sulci cingulati -http://purl.obolibrary.org/obo/UBERON_0002912;marginal sulcus;ramus marginalis sulci cinguli -http://purl.obolibrary.org/obo/UBERON_0002912;marginal sulcus;sulcus marginalis -http://purl.obolibrary.org/obo/UBERON_0002913;intraparietal sulcus;interparietal fissure -http://purl.obolibrary.org/obo/UBERON_0002913;intraparietal sulcus;intraparietal fissure -http://purl.obolibrary.org/obo/UBERON_0002913;intraparietal sulcus;sulcus interparietalis -http://purl.obolibrary.org/obo/UBERON_0002914;inferior postcentral sulcus;sulcus postcentralis inferior -http://purl.obolibrary.org/obo/UBERON_0002915;postcentral sulcus of parietal lobe;postcentral fissure of cerebral hemisphere -http://purl.obolibrary.org/obo/UBERON_0002915;postcentral sulcus of parietal lobe;postcentral fissure-1 -http://purl.obolibrary.org/obo/UBERON_0002915;postcentral sulcus of parietal lobe;postcentral sulcus -http://purl.obolibrary.org/obo/UBERON_0002915;postcentral sulcus of parietal lobe;structure of postcentral sulcus -http://purl.obolibrary.org/obo/UBERON_0002915;postcentral sulcus of parietal lobe;sulcus postcentralis -http://purl.obolibrary.org/obo/UBERON_0002916;central sulcus;central cerebral sulcus -http://purl.obolibrary.org/obo/UBERON_0002916;central sulcus;central fissure -http://purl.obolibrary.org/obo/UBERON_0002916;central sulcus;central sulcus of Rolando -http://purl.obolibrary.org/obo/UBERON_0002916;central sulcus;fissure of Rolando -http://purl.obolibrary.org/obo/UBERON_0002916;central sulcus;rolandic fissure -http://purl.obolibrary.org/obo/UBERON_0002916;central sulcus;sulcus centralis -http://purl.obolibrary.org/obo/UBERON_0002916;central sulcus;sulcus centralis (rolandi) -http://purl.obolibrary.org/obo/UBERON_0002916;central sulcus;sulcus centralis cerebri -http://purl.obolibrary.org/obo/UBERON_0002916;central sulcus;sulcus of Rolando -http://purl.obolibrary.org/obo/UBERON_0002918;medial parabrachial nucleus; -http://purl.obolibrary.org/obo/UBERON_0002919;anterior parolfactory sulcus;paraolfactory sulci -http://purl.obolibrary.org/obo/UBERON_0002919;anterior parolfactory sulcus;paraolfactory sulcus -http://purl.obolibrary.org/obo/UBERON_0002919;anterior parolfactory sulcus;sulcus parolfactorius anterior -http://purl.obolibrary.org/obo/UBERON_0002920;callosal sulcus;sulcus corporis callosi -http://purl.obolibrary.org/obo/UBERON_0002920;callosal sulcus;sulcus of corpus callosum -http://purl.obolibrary.org/obo/UBERON_0002921;longitudinal fissure;fissura interhemispherica -http://purl.obolibrary.org/obo/UBERON_0002921;longitudinal fissure;fissura longitudinalis cerebrales -http://purl.obolibrary.org/obo/UBERON_0002921;longitudinal fissure;fissura longitudinalis cerebri -http://purl.obolibrary.org/obo/UBERON_0002921;longitudinal fissure;fissura longitudinalis magna -http://purl.obolibrary.org/obo/UBERON_0002921;longitudinal fissure;hemispheric sulcus -http://purl.obolibrary.org/obo/UBERON_0002921;longitudinal fissure;interhemispheric fissure -http://purl.obolibrary.org/obo/UBERON_0002921;longitudinal fissure;longitudinal cerebral fissure -http://purl.obolibrary.org/obo/UBERON_0002921;longitudinal fissure;longitudinal fissure of hemisphere -http://purl.obolibrary.org/obo/UBERON_0002921;longitudinal fissure;longitudinal fissure of the cerebrum -http://purl.obolibrary.org/obo/UBERON_0002921;longitudinal fissure;longitudinal sulcus -http://purl.obolibrary.org/obo/UBERON_0002921;longitudinal fissure;medial longitudinal fissure -http://purl.obolibrary.org/obo/UBERON_0002921;longitudinal fissure;sagittal fissure -http://purl.obolibrary.org/obo/UBERON_0002922;olfactory trigone;trigonum olfactorium -http://purl.obolibrary.org/obo/UBERON_0002923;posterior parolfactory sulcus; -http://purl.obolibrary.org/obo/UBERON_0002924;terminal nerve;cranial nerve 0 -http://purl.obolibrary.org/obo/UBERON_0002924;terminal nerve;cranial nerve zero -http://purl.obolibrary.org/obo/UBERON_0002924;terminal nerve;nervus terminalis -http://purl.obolibrary.org/obo/UBERON_0002924;terminal nerve;terminalis nerve -http://purl.obolibrary.org/obo/UBERON_0002925;trigeminal nucleus;nucleus mesencephalicus nervi trigemini -http://purl.obolibrary.org/obo/UBERON_0002925;trigeminal nucleus;nucleus mesencephalicus trigeminalis -http://purl.obolibrary.org/obo/UBERON_0002925;trigeminal nucleus;nucleus of trigeminal nuclear complex -http://purl.obolibrary.org/obo/UBERON_0002925;trigeminal nucleus;nucleus tractus mesencephali nervi trigeminalis -http://purl.obolibrary.org/obo/UBERON_0002925;trigeminal nucleus;trigeminal V nucleus -http://purl.obolibrary.org/obo/UBERON_0002925;trigeminal nucleus;trigeminal nuclear complex nucleus -http://purl.obolibrary.org/obo/UBERON_0002925;trigeminal nucleus;trigeminal nucleus -http://purl.obolibrary.org/obo/UBERON_0002926;gustatory epithelium; -http://purl.obolibrary.org/obo/UBERON_0002928;dentate gyrus polymorphic layer; -http://purl.obolibrary.org/obo/UBERON_0002929;dentate gyrus pyramidal layer; -http://purl.obolibrary.org/obo/UBERON_0002930;tectopontine tract;fibrae tectopontinae -http://purl.obolibrary.org/obo/UBERON_0002930;tectopontine tract;tectopontine fibers -http://purl.obolibrary.org/obo/UBERON_0002930;tectopontine tract;tectopontine fibres -http://purl.obolibrary.org/obo/UBERON_0002931;dorsal septal nucleus; -http://purl.obolibrary.org/obo/UBERON_0002932;trapezoid body;TZ -http://purl.obolibrary.org/obo/UBERON_0002932;trapezoid body;corpus trapezoides -http://purl.obolibrary.org/obo/UBERON_0002932;trapezoid body;corpus trapezoideum -http://purl.obolibrary.org/obo/UBERON_0002932;trapezoid body;trapezoid body (Treviranus) -http://purl.obolibrary.org/obo/UBERON_0002933;nucleus of anterior commissure;anterior commissure nucleus -http://purl.obolibrary.org/obo/UBERON_0002933;nucleus of anterior commissure;bed nucleus of anterior commissure -http://purl.obolibrary.org/obo/UBERON_0002933;nucleus of anterior commissure;nucleus of commissura anterior -http://purl.obolibrary.org/obo/UBERON_0002934;ventral oculomotor nucleus;V3 -http://purl.obolibrary.org/obo/UBERON_0002934;ventral oculomotor nucleus;nucleus nervi oculomotorii ventrolateralis -http://purl.obolibrary.org/obo/UBERON_0002934;ventral oculomotor nucleus;nucleus nervi oculomotorii, pars ventralis -http://purl.obolibrary.org/obo/UBERON_0002934;ventral oculomotor nucleus;ventral nucleus of oculomotor nuclear complex -http://purl.obolibrary.org/obo/UBERON_0002934;ventral oculomotor nucleus;ventral oculomotor cell column -http://purl.obolibrary.org/obo/UBERON_0002935;magnocellular part of ventral anterior nucleus;magnocellular division of ventral anterior nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0002935;magnocellular part of ventral anterior nucleus;magnocellular ventral anterior nucleus -http://purl.obolibrary.org/obo/UBERON_0002935;magnocellular part of ventral anterior nucleus;nucleus lateropolaris (magnocellularis) -http://purl.obolibrary.org/obo/UBERON_0002935;magnocellular part of ventral anterior nucleus;nucleus lateropolaris magnocellularis (hassler) -http://purl.obolibrary.org/obo/UBERON_0002935;magnocellular part of ventral anterior nucleus;nucleus rostralis lateralis situs perifascicularis -http://purl.obolibrary.org/obo/UBERON_0002935;magnocellular part of ventral anterior nucleus;nucleus thalamicus ventral anterior, pars magnocellularis -http://purl.obolibrary.org/obo/UBERON_0002935;magnocellular part of ventral anterior nucleus;nucleus ventralis anterior, pars magnocellularis -http://purl.obolibrary.org/obo/UBERON_0002935;magnocellular part of ventral anterior nucleus;pars magnocellularis nuclei ventralis anterior thalami -http://purl.obolibrary.org/obo/UBERON_0002935;magnocellular part of ventral anterior nucleus;ventral anterior nucleus, magnocellular part -http://purl.obolibrary.org/obo/UBERON_0002935;magnocellular part of ventral anterior nucleus;ventral anterior nucleus, pars magnocellularis -http://purl.obolibrary.org/obo/UBERON_0002935;magnocellular part of ventral anterior nucleus;ventral anterior thalamic nucleus, magnocellular part -http://purl.obolibrary.org/obo/UBERON_0002935;magnocellular part of ventral anterior nucleus;ventroanterior thalamic nucleus, magnocellular part -http://purl.obolibrary.org/obo/UBERON_0002936;magnocellular part of red nucleus;paleoruber -http://purl.obolibrary.org/obo/UBERON_0002936;magnocellular part of red nucleus;pars magnocellularis nuclei rubri -http://purl.obolibrary.org/obo/UBERON_0002936;magnocellular part of red nucleus;red nucleus, magnocellular part -http://purl.obolibrary.org/obo/UBERON_0002937;parvocellular part of ventral anterior nucleus;nucleus ventralis anterior (dewulf) -http://purl.obolibrary.org/obo/UBERON_0002937;parvocellular part of ventral anterior nucleus;nucleus ventralis anterior, pars parvicellularis -http://purl.obolibrary.org/obo/UBERON_0002937;parvocellular part of ventral anterior nucleus;parvicellular part of ventral anterior nucleus -http://purl.obolibrary.org/obo/UBERON_0002937;parvocellular part of ventral anterior nucleus;ventral anterior nucleus, pars parvicellularis -http://purl.obolibrary.org/obo/UBERON_0002937;parvocellular part of ventral anterior nucleus;ventral anterior thalamic nucleus, parvicellular part -http://purl.obolibrary.org/obo/UBERON_0002937;parvocellular part of ventral anterior nucleus;ventralis anterior (jones) -http://purl.obolibrary.org/obo/UBERON_0002938;parvocellular part of red nucleus;neoruber -http://purl.obolibrary.org/obo/UBERON_0002938;parvocellular part of red nucleus;pars parvocellularis nuclei rubri -http://purl.obolibrary.org/obo/UBERON_0002938;parvocellular part of red nucleus;red nucleus, parvocellular part -http://purl.obolibrary.org/obo/UBERON_0002939;ventral posteroinferior nucleus;nucleus ventralis posterior inferior thalami -http://purl.obolibrary.org/obo/UBERON_0002939;ventral posteroinferior nucleus;ventral posterior inferior nucleus -http://purl.obolibrary.org/obo/UBERON_0002939;ventral posteroinferior nucleus;ventral posterior inferior nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0002939;ventral posteroinferior nucleus;ventral posterior inferior thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0002940;anterior column of fornix;anterior crus of fornix -http://purl.obolibrary.org/obo/UBERON_0002940;anterior column of fornix;anterior pillar of fornix -http://purl.obolibrary.org/obo/UBERON_0002940;anterior column of fornix;columna fornicis anterior -http://purl.obolibrary.org/obo/UBERON_0002940;anterior column of fornix;fornix, crus anterius -http://purl.obolibrary.org/obo/UBERON_0002941;capsule of red nucleus;red nuclear capsule -http://purl.obolibrary.org/obo/UBERON_0002942;ventral posterolateral nucleus;nucleus ventralis posterior lateralis thalami -http://purl.obolibrary.org/obo/UBERON_0002942;ventral posterolateral nucleus;nucleus ventralis posterolateralis -http://purl.obolibrary.org/obo/UBERON_0002942;ventral posterolateral nucleus;nucleus ventralis posterolateralis thalami -http://purl.obolibrary.org/obo/UBERON_0002942;ventral posterolateral nucleus;nucleus ventralis thalami posterior lateralis -http://purl.obolibrary.org/obo/UBERON_0002942;ventral posterolateral nucleus;posterolateral ventral nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0002942;ventral posterolateral nucleus;posterolateral ventral nucleus of the thalamus -http://purl.obolibrary.org/obo/UBERON_0002942;ventral posterolateral nucleus;ventral posterolateral nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0002942;ventral posterolateral nucleus;ventral posterolateral nucleus of the thalamus -http://purl.obolibrary.org/obo/UBERON_0002942;ventral posterolateral nucleus;ventral posterolateral thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0002943;lingual gyrus;gyrus occipitotemporalis medialis -http://purl.obolibrary.org/obo/UBERON_0002943;lingual gyrus;lingula of cerebral hemisphere -http://purl.obolibrary.org/obo/UBERON_0002943;lingual gyrus;medial occipitotemporal gyrus -http://purl.obolibrary.org/obo/UBERON_0002943;lingual gyrus;medial occipitotemporal gyrus-2 -http://purl.obolibrary.org/obo/UBERON_0002944;spinothalamic tract of medulla; -http://purl.obolibrary.org/obo/UBERON_0002945;ventral posteromedial nucleus of thalamus;arcuate nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0002945;ventral posteromedial nucleus of thalamus;arcuate nucleus of the thalamus -http://purl.obolibrary.org/obo/UBERON_0002945;ventral posteromedial nucleus of thalamus;arcuate nucleus-3 -http://purl.obolibrary.org/obo/UBERON_0002945;ventral posteromedial nucleus of thalamus;nucleus arcuatus thalami -http://purl.obolibrary.org/obo/UBERON_0002945;ventral posteromedial nucleus of thalamus;nucleus semilunaris thalami -http://purl.obolibrary.org/obo/UBERON_0002945;ventral posteromedial nucleus of thalamus;nucleus ventralis posterior medialis thalami -http://purl.obolibrary.org/obo/UBERON_0002945;ventral posteromedial nucleus of thalamus;nucleus ventralis posteromedialis -http://purl.obolibrary.org/obo/UBERON_0002945;ventral posteromedial nucleus of thalamus;nucleus ventralis posteromedialis thalami -http://purl.obolibrary.org/obo/UBERON_0002945;ventral posteromedial nucleus of thalamus;nucleus ventrocaudalis anterior internus (hassler) -http://purl.obolibrary.org/obo/UBERON_0002945;ventral posteromedial nucleus of thalamus;posteromedial ventral nucleus -http://purl.obolibrary.org/obo/UBERON_0002945;ventral posteromedial nucleus of thalamus;posteromedial ventral nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0002945;ventral posteromedial nucleus of thalamus;posteromedial ventral nucleus of the thalamus -http://purl.obolibrary.org/obo/UBERON_0002945;ventral posteromedial nucleus of thalamus;semilunar nucleus -http://purl.obolibrary.org/obo/UBERON_0002945;ventral posteromedial nucleus of thalamus;thalamic gustatory nucleus -http://purl.obolibrary.org/obo/UBERON_0002945;ventral posteromedial nucleus of thalamus;ventral posterior medial nucleus -http://purl.obolibrary.org/obo/UBERON_0002945;ventral posteromedial nucleus of thalamus;ventral posterior medial nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0002945;ventral posteromedial nucleus of thalamus;ventral posteromedial nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0002945;ventral posteromedial nucleus of thalamus;ventral posteromedial nucleus of the thalamus -http://purl.obolibrary.org/obo/UBERON_0002945;ventral posteromedial nucleus of thalamus;ventral posteromedial thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0002945;ventral posteromedial nucleus of thalamus;ventroposteromedial nucleus of the thalamus -http://purl.obolibrary.org/obo/UBERON_0002947;frontal operculum; -http://purl.obolibrary.org/obo/UBERON_0002948;superior occipital gyrus;gyrus occipitalis primus -http://purl.obolibrary.org/obo/UBERON_0002949;tectospinal tract;Held's bundle -http://purl.obolibrary.org/obo/UBERON_0002949;tectospinal tract;tectospinal pathway -http://purl.obolibrary.org/obo/UBERON_0002952;intermediate acoustic stria;commissure of held -http://purl.obolibrary.org/obo/UBERON_0002952;intermediate acoustic stria;intermediate acoustic stria (held) -http://purl.obolibrary.org/obo/UBERON_0002952;intermediate acoustic stria;intermediate acoustic stria of held -http://purl.obolibrary.org/obo/UBERON_0002952;intermediate acoustic stria;striae acusticae intermedius -http://purl.obolibrary.org/obo/UBERON_0002953;lateral lemniscus;central acoustic tract -http://purl.obolibrary.org/obo/UBERON_0002953;lateral lemniscus;lateral fillet -http://purl.obolibrary.org/obo/UBERON_0002953;lateral lemniscus;lateral lemniscus (Reil) -http://purl.obolibrary.org/obo/UBERON_0002953;lateral lemniscus;lemniscus acusticus -http://purl.obolibrary.org/obo/UBERON_0002953;lateral lemniscus;lemniscus lateralis -http://purl.obolibrary.org/obo/UBERON_0002954;dorsal hypothalamic area;dorsal hypothalamic zone -http://purl.obolibrary.org/obo/UBERON_0002955;rhomboidal nucleus;rhomboid nucleus -http://purl.obolibrary.org/obo/UBERON_0002955;rhomboidal nucleus;rhomboid thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0002956;granular layer of cerebellar cortex;cerebellar granular layer -http://purl.obolibrary.org/obo/UBERON_0002956;granular layer of cerebellar cortex;cerebellar granule cell layer -http://purl.obolibrary.org/obo/UBERON_0002956;granular layer of cerebellar cortex;cerebellar granule layer -http://purl.obolibrary.org/obo/UBERON_0002956;granular layer of cerebellar cortex;cerebellum granule cell layer -http://purl.obolibrary.org/obo/UBERON_0002956;granular layer of cerebellar cortex;cerebellum granule layer -http://purl.obolibrary.org/obo/UBERON_0002956;granular layer of cerebellar cortex;granular layer of cerebellum -http://purl.obolibrary.org/obo/UBERON_0002956;granular layer of cerebellar cortex;granule cell layer of cerebellar cortex -http://purl.obolibrary.org/obo/UBERON_0002956;granular layer of cerebellar cortex;stratum granulosum cerebelli -http://purl.obolibrary.org/obo/UBERON_0002956;granular layer of cerebellar cortex;stratum granulosum corticis cerebelli -http://purl.obolibrary.org/obo/UBERON_0002957;caudal central oculomotor nucleus;caudal central nucleus -http://purl.obolibrary.org/obo/UBERON_0002957;caudal central oculomotor nucleus;caudal central nucleus of oculomotor nerve -http://purl.obolibrary.org/obo/UBERON_0002957;caudal central oculomotor nucleus;oculomotor nerve central caudal nucleus -http://purl.obolibrary.org/obo/UBERON_0002958;medial lemniscus of pons;medial lemniscus of pons of varolius -http://purl.obolibrary.org/obo/UBERON_0002958;medial lemniscus of pons;pons medial lemniscus -http://purl.obolibrary.org/obo/UBERON_0002958;medial lemniscus of pons;pons of varolius medial lemniscus -http://purl.obolibrary.org/obo/UBERON_0002959;subfascicular nucleus; -http://purl.obolibrary.org/obo/UBERON_0002960;central oculomotor nucleus;central nucleus of perlia -http://purl.obolibrary.org/obo/UBERON_0002960;central oculomotor nucleus;nucleus of perlia -http://purl.obolibrary.org/obo/UBERON_0002960;central oculomotor nucleus;spitzka's nucleus -http://purl.obolibrary.org/obo/UBERON_0002961;archicortex;archipallium -http://purl.obolibrary.org/obo/UBERON_0002962;adductor pollicis muscle;adductor pollicis -http://purl.obolibrary.org/obo/UBERON_0002963;caudal pontine reticular nucleus;pontine reticular nucleus, caudal part -http://purl.obolibrary.org/obo/UBERON_0002964;dorsal oculomotor nucleus;dorsal nucleus of oculomotor nuclear complex -http://purl.obolibrary.org/obo/UBERON_0002964;dorsal oculomotor nucleus;dorsal oculomotor cell column -http://purl.obolibrary.org/obo/UBERON_0002965;rostral intralaminar nuclear group;anterior group of intralaminar nuclei -http://purl.obolibrary.org/obo/UBERON_0002965;rostral intralaminar nuclear group;nuclei intralaminares rostrales -http://purl.obolibrary.org/obo/UBERON_0002965;rostral intralaminar nuclear group;rostral group of intralaminar nuclei -http://purl.obolibrary.org/obo/UBERON_0002965;rostral intralaminar nuclear group;rostral intralaminar nuclear group -http://purl.obolibrary.org/obo/UBERON_0002965;rostral intralaminar nuclear group;rostral intralaminar nuclei -http://purl.obolibrary.org/obo/UBERON_0002967;cingulate gyrus;cingulate area -http://purl.obolibrary.org/obo/UBERON_0002967;cingulate gyrus;cingulate region -http://purl.obolibrary.org/obo/UBERON_0002967;cingulate gyrus;falciform lobe -http://purl.obolibrary.org/obo/UBERON_0002967;cingulate gyrus;upper limbic gyrus -http://purl.obolibrary.org/obo/UBERON_0002968;central gray substance of pons;central gray of pons -http://purl.obolibrary.org/obo/UBERON_0002968;central gray substance of pons;central gray of the pons -http://purl.obolibrary.org/obo/UBERON_0002968;central gray substance of pons;griseum centrale pontis -http://purl.obolibrary.org/obo/UBERON_0002968;central gray substance of pons;pontine central gray -http://purl.obolibrary.org/obo/UBERON_0002969;inferior temporal sulcus;inferior temporal sulcus-1 -http://purl.obolibrary.org/obo/UBERON_0002969;inferior temporal sulcus;middle temporal sulcus (szikla) -http://purl.obolibrary.org/obo/UBERON_0002969;inferior temporal sulcus;second temporal sulcus -http://purl.obolibrary.org/obo/UBERON_0002969;inferior temporal sulcus;sulcus t2 -http://purl.obolibrary.org/obo/UBERON_0002970;intermediate oculomotor nucleus;intermediate nucleus of oculomotor nuclear complex -http://purl.obolibrary.org/obo/UBERON_0002970;intermediate oculomotor nucleus;intermediate oculomotor cell column -http://purl.obolibrary.org/obo/UBERON_0002971;periolivary nucleus;POI -http://purl.obolibrary.org/obo/UBERON_0002971;periolivary nucleus;nuclei periolivares -http://purl.obolibrary.org/obo/UBERON_0002971;periolivary nucleus;nucleus periolivaris -http://purl.obolibrary.org/obo/UBERON_0002971;periolivary nucleus;peri-olivary nuclei -http://purl.obolibrary.org/obo/UBERON_0002971;periolivary nucleus;peri-olivary nucleus -http://purl.obolibrary.org/obo/UBERON_0002971;periolivary nucleus;periolivary nuclei -http://purl.obolibrary.org/obo/UBERON_0002971;periolivary nucleus;periolivary region -http://purl.obolibrary.org/obo/UBERON_0002971;periolivary nucleus;superior olivary complex periolivary region -http://purl.obolibrary.org/obo/UBERON_0002972;centromedian nucleus of thalamus;central magnocellular nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0002972;centromedian nucleus of thalamus;central nucleus-1 -http://purl.obolibrary.org/obo/UBERON_0002972;centromedian nucleus of thalamus;centre median nucleus -http://purl.obolibrary.org/obo/UBERON_0002972;centromedian nucleus of thalamus;centromedian nucleus -http://purl.obolibrary.org/obo/UBERON_0002972;centromedian nucleus of thalamus;centromedian nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0002972;centromedian nucleus of thalamus;centromedian thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0002972;centromedian nucleus of thalamus;centrum medianum -http://purl.obolibrary.org/obo/UBERON_0002972;centromedian nucleus of thalamus;centrum medianum thalami -http://purl.obolibrary.org/obo/UBERON_0002972;centromedian nucleus of thalamus;noyau centre median of Luys -http://purl.obolibrary.org/obo/UBERON_0002972;centromedian nucleus of thalamus;nucleus centralis centralis -http://purl.obolibrary.org/obo/UBERON_0002972;centromedian nucleus of thalamus;nucleus centralis thalami (Hassler) -http://purl.obolibrary.org/obo/UBERON_0002972;centromedian nucleus of thalamus;nucleus centri mediani thalami -http://purl.obolibrary.org/obo/UBERON_0002972;centromedian nucleus of thalamus;nucleus centromedianus -http://purl.obolibrary.org/obo/UBERON_0002972;centromedian nucleus of thalamus;nucleus centromedianus thalami -http://purl.obolibrary.org/obo/UBERON_0002972;centromedian nucleus of thalamus;nucleus centrum medianum -http://purl.obolibrary.org/obo/UBERON_0002973;parahippocampal gyrus;gyrus hippocampi -http://purl.obolibrary.org/obo/UBERON_0002973;parahippocampal gyrus;gyrus parahippocampalis -http://purl.obolibrary.org/obo/UBERON_0002973;parahippocampal gyrus;gyrus parahippocampi -http://purl.obolibrary.org/obo/UBERON_0002973;parahippocampal gyrus;hippocampal convolution -http://purl.obolibrary.org/obo/UBERON_0002973;parahippocampal gyrus;hippocampal gyrus -http://purl.obolibrary.org/obo/UBERON_0002974;molecular layer of cerebellar cortex;cerebellar molecular layer -http://purl.obolibrary.org/obo/UBERON_0002974;molecular layer of cerebellar cortex;cerebellum molecular cell layer -http://purl.obolibrary.org/obo/UBERON_0002974;molecular layer of cerebellar cortex;cerebellum molecular layer -http://purl.obolibrary.org/obo/UBERON_0002974;molecular layer of cerebellar cortex;fasciculi thalami -http://purl.obolibrary.org/obo/UBERON_0002974;molecular layer of cerebellar cortex;stratum moleculare corticis cerebelli -http://purl.obolibrary.org/obo/UBERON_0002974;molecular layer of cerebellar cortex;thalamic fiber tracts -http://purl.obolibrary.org/obo/UBERON_0002975;medial oculomotor nucleus;medial nucleus of oculomotor nuclear complex -http://purl.obolibrary.org/obo/UBERON_0002975;medial oculomotor nucleus;medial oculomotor cell column -http://purl.obolibrary.org/obo/UBERON_0002976;preolivary nucleus;preolivary nuclei -http://purl.obolibrary.org/obo/UBERON_0002977;triangular septal nucleus;nucleus triangularis septi -http://purl.obolibrary.org/obo/UBERON_0002977;triangular septal nucleus;triangular nucleus of septum -http://purl.obolibrary.org/obo/UBERON_0002977;triangular septal nucleus;triangular nucleus septum (cajal) -http://purl.obolibrary.org/obo/UBERON_0002978;oral part of ventral lateral nucleus;nucleus lateralis oralis situs principalis -http://purl.obolibrary.org/obo/UBERON_0002978;oral part of ventral lateral nucleus;nucleus ventralis lateralis, pars oralis -http://purl.obolibrary.org/obo/UBERON_0002978;oral part of ventral lateral nucleus;nucleus ventrooralis externus, anterior part (van buren) -http://purl.obolibrary.org/obo/UBERON_0002978;oral part of ventral lateral nucleus;subnucleus rostralis -http://purl.obolibrary.org/obo/UBERON_0002978;oral part of ventral lateral nucleus;ventral anterior nucleus, pars densicellularis -http://purl.obolibrary.org/obo/UBERON_0002978;oral part of ventral lateral nucleus;ventral lateral anterior nucleus -http://purl.obolibrary.org/obo/UBERON_0002978;oral part of ventral lateral nucleus;ventral lateral nucleus, oral part -http://purl.obolibrary.org/obo/UBERON_0002978;oral part of ventral lateral nucleus;ventral lateral thalamic nucleus, oral part -http://purl.obolibrary.org/obo/UBERON_0002979;Purkinje cell layer of cerebellar cortex;Purkinje cell layer -http://purl.obolibrary.org/obo/UBERON_0002979;Purkinje cell layer of cerebellar cortex;cerebellar Purkinje cell layer -http://purl.obolibrary.org/obo/UBERON_0002979;Purkinje cell layer of cerebellar cortex;cerebellum Purkinje cell layer -http://purl.obolibrary.org/obo/UBERON_0002979;Purkinje cell layer of cerebellar cortex;cerebellum Purkinje layer -http://purl.obolibrary.org/obo/UBERON_0002979;Purkinje cell layer of cerebellar cortex;nuclei reticulares (thalami) -http://purl.obolibrary.org/obo/UBERON_0002979;Purkinje cell layer of cerebellar cortex;nucleus reticularis -http://purl.obolibrary.org/obo/UBERON_0002979;Purkinje cell layer of cerebellar cortex;nucleus reticulatus (thalami) -http://purl.obolibrary.org/obo/UBERON_0002979;Purkinje cell layer of cerebellar cortex;nucleus thalamicus reticularis -http://purl.obolibrary.org/obo/UBERON_0002979;Purkinje cell layer of cerebellar cortex;reticular nucleus thalamus (Arnold) -http://purl.obolibrary.org/obo/UBERON_0002979;Purkinje cell layer of cerebellar cortex;reticulatum thalami (Hassler) -http://purl.obolibrary.org/obo/UBERON_0002980;opercular part of inferior frontal gyrus;gyrus frontalis inferior, pars opercularis -http://purl.obolibrary.org/obo/UBERON_0002980;opercular part of inferior frontal gyrus;opercular portion of inferior frontal gyrus -http://purl.obolibrary.org/obo/UBERON_0002980;opercular part of inferior frontal gyrus;pars opercularis -http://purl.obolibrary.org/obo/UBERON_0002980;opercular part of inferior frontal gyrus;pars opercularis gyri frontalis inferioris -http://purl.obolibrary.org/obo/UBERON_0002980;opercular part of inferior frontal gyrus;pars posterior of inferior frontal gyrus -http://purl.obolibrary.org/obo/UBERON_0002980;opercular part of inferior frontal gyrus;posterior part of inferior frontal gyrus -http://purl.obolibrary.org/obo/UBERON_0002981;pulvinar nucleus;Pul -http://purl.obolibrary.org/obo/UBERON_0002981;pulvinar nucleus;nuclei pulvinares -http://purl.obolibrary.org/obo/UBERON_0002981;pulvinar nucleus;nucleus pulvinaris -http://purl.obolibrary.org/obo/UBERON_0002981;pulvinar nucleus;nucleus pulvinaris thalami -http://purl.obolibrary.org/obo/UBERON_0002981;pulvinar nucleus;posterior nucleus (P) -http://purl.obolibrary.org/obo/UBERON_0002981;pulvinar nucleus;pulvinar -http://purl.obolibrary.org/obo/UBERON_0002981;pulvinar nucleus;pulvinar nuclei -http://purl.obolibrary.org/obo/UBERON_0002981;pulvinar nucleus;pulvinar thalami -http://purl.obolibrary.org/obo/UBERON_0002981;pulvinar nucleus;pulvinar thalamus -http://purl.obolibrary.org/obo/UBERON_0002982;inferior pulvinar nucleus;nucleus pulvinaris inferior -http://purl.obolibrary.org/obo/UBERON_0002982;inferior pulvinar nucleus;nucleus pulvinaris inferior thalami -http://purl.obolibrary.org/obo/UBERON_0002982;inferior pulvinar nucleus;nucleus pulvinaris thalami, pars inferior -http://purl.obolibrary.org/obo/UBERON_0002983;lateral posterior nucleus of thalamus;LP -http://purl.obolibrary.org/obo/UBERON_0002983;lateral posterior nucleus of thalamus;lateral posterior complex -http://purl.obolibrary.org/obo/UBERON_0002983;lateral posterior nucleus of thalamus;lateral posterior nucleus -http://purl.obolibrary.org/obo/UBERON_0002983;lateral posterior nucleus of thalamus;lateral posterior nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0002983;lateral posterior nucleus of thalamus;lateral posterior nucleus of the thalamus -http://purl.obolibrary.org/obo/UBERON_0002983;lateral posterior nucleus of thalamus;lateral posterior thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0002983;lateral posterior nucleus of thalamus;laterodorsal nucleus, caudal part -http://purl.obolibrary.org/obo/UBERON_0002983;lateral posterior nucleus of thalamus;nucleus dorso-caudalis -http://purl.obolibrary.org/obo/UBERON_0002983;lateral posterior nucleus of thalamus;nucleus dorsocaudalis (Hassler) -http://purl.obolibrary.org/obo/UBERON_0002983;lateral posterior nucleus of thalamus;nucleus lateralis posterior -http://purl.obolibrary.org/obo/UBERON_0002983;lateral posterior nucleus of thalamus;nucleus lateralis posterior thalami -http://purl.obolibrary.org/obo/UBERON_0002983;lateral posterior nucleus of thalamus;nucleus lateralis thalami posterior -http://purl.obolibrary.org/obo/UBERON_0002983;lateral posterior nucleus of thalamus;posterior lateral nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0002984;lateral dorsal nucleus;dorsal thalamus, lateral group -http://purl.obolibrary.org/obo/UBERON_0002984;lateral dorsal nucleus;lateral dorsal nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0002984;lateral dorsal nucleus;lateral dorsal thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0002984;lateral dorsal nucleus;laterodorsal nucleus nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0002984;lateral dorsal nucleus;laterodorsal nucleus thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0002984;lateral dorsal nucleus;laterodorsal nucleus, superficial part -http://purl.obolibrary.org/obo/UBERON_0002984;lateral dorsal nucleus;laterodorsal thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0002984;lateral dorsal nucleus;nucleus dorsalis lateralis thalami -http://purl.obolibrary.org/obo/UBERON_0002984;lateral dorsal nucleus;nucleus dorsalis superficialis (Hassler) -http://purl.obolibrary.org/obo/UBERON_0002984;lateral dorsal nucleus;nucleus dorsolateralis thalami -http://purl.obolibrary.org/obo/UBERON_0002984;lateral dorsal nucleus;nucleus lateralis dorsalis -http://purl.obolibrary.org/obo/UBERON_0002984;lateral dorsal nucleus;nucleus lateralis dorsalis of thalamus -http://purl.obolibrary.org/obo/UBERON_0002984;lateral dorsal nucleus;nucleus lateralis dorsalis thalami -http://purl.obolibrary.org/obo/UBERON_0002984;lateral dorsal nucleus;nucleus lateralis thalami dorsalis -http://purl.obolibrary.org/obo/UBERON_0002985;ventral nucleus of medial geniculate body;medial geniculate complex, ventral part -http://purl.obolibrary.org/obo/UBERON_0002985;ventral nucleus of medial geniculate body;medial geniculate nucleus, ventral part -http://purl.obolibrary.org/obo/UBERON_0002985;ventral nucleus of medial geniculate body;medial nucleus of medial geniculate complex -http://purl.obolibrary.org/obo/UBERON_0002985;ventral nucleus of medial geniculate body;nucleus corporis geniculati medialis, pars ventralis -http://purl.obolibrary.org/obo/UBERON_0002985;ventral nucleus of medial geniculate body;nucleus geniculatus medialis fasciculosis (Hassler) -http://purl.obolibrary.org/obo/UBERON_0002985;ventral nucleus of medial geniculate body;nucleus geniculatus medialis fasciculosus (Hassler) -http://purl.obolibrary.org/obo/UBERON_0002985;ventral nucleus of medial geniculate body;nucleus geniculatus medialis pars ventralis -http://purl.obolibrary.org/obo/UBERON_0002985;ventral nucleus of medial geniculate body;nucleus ventralis corporis geniculati medialis -http://purl.obolibrary.org/obo/UBERON_0002985;ventral nucleus of medial geniculate body;ventral nucleus of medial geniculate complex -http://purl.obolibrary.org/obo/UBERON_0002985;ventral nucleus of medial geniculate body;ventral principal nucleus of medial geniculate body -http://purl.obolibrary.org/obo/UBERON_0002987;anterior spinocerebellar tract;Gower's tract -http://purl.obolibrary.org/obo/UBERON_0002987;anterior spinocerebellar tract;Gowers' tract -http://purl.obolibrary.org/obo/UBERON_0002987;anterior spinocerebellar tract;tractus spinocerebellaris anterior -http://purl.obolibrary.org/obo/UBERON_0002987;anterior spinocerebellar tract;tractus spinocerebellaris ventralis -http://purl.obolibrary.org/obo/UBERON_0002987;anterior spinocerebellar tract;ventral spinocerebellar tract -http://purl.obolibrary.org/obo/UBERON_0002987;anterior spinocerebellar tract;ventral spinocerebellar tract (Gowers) -http://purl.obolibrary.org/obo/UBERON_0002988;first dorsal interosseous of manus;abductor indicis -http://purl.obolibrary.org/obo/UBERON_0002988;first dorsal interosseous of manus;first dorsal interosseous of hand -http://purl.obolibrary.org/obo/UBERON_0002989;anconeus muscle;anconeus -http://purl.obolibrary.org/obo/UBERON_0002989;anconeus muscle;m. anconeus -http://purl.obolibrary.org/obo/UBERON_0002989;anconeus muscle;musculus anconaeus -http://purl.obolibrary.org/obo/UBERON_0002989;anconeus muscle;musculus anconeus -http://purl.obolibrary.org/obo/UBERON_0002990;mammillothalamic tract of hypothalamus; -http://purl.obolibrary.org/obo/UBERON_0002991;supramammillary commissure;commissure of forel -http://purl.obolibrary.org/obo/UBERON_0002991;supramammillary commissure;commissure y -http://purl.obolibrary.org/obo/UBERON_0002991;supramammillary commissure;decussation supramamilaris -http://purl.obolibrary.org/obo/UBERON_0002991;supramammillary commissure;postmammillary decussation -http://purl.obolibrary.org/obo/UBERON_0002991;supramammillary commissure;supramammillary decussation -http://purl.obolibrary.org/obo/UBERON_0002992;paratenial nucleus;nucleus parataenialis -http://purl.obolibrary.org/obo/UBERON_0002992;paratenial nucleus;parataenial nucleus -http://purl.obolibrary.org/obo/UBERON_0002992;paratenial nucleus;paratenial thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0002993;inferior central nucleus;inferior central nucleus (of roller) -http://purl.obolibrary.org/obo/UBERON_0002993;inferior central nucleus;inferior central nucleus of raphe -http://purl.obolibrary.org/obo/UBERON_0002993;inferior central nucleus;inferior central tegmental nucleus -http://purl.obolibrary.org/obo/UBERON_0002993;inferior central nucleus;nucleus centralis inferior -http://purl.obolibrary.org/obo/UBERON_0002993;inferior central nucleus;nucleus tegmentalis centralis inferior -http://purl.obolibrary.org/obo/UBERON_0002995;substantia nigra pars lateralis;lateral part of substantia nigra -http://purl.obolibrary.org/obo/UBERON_0002995;substantia nigra pars lateralis;pars lateralis -http://purl.obolibrary.org/obo/UBERON_0002995;substantia nigra pars lateralis;pars lateralis substantiae nigrae -http://purl.obolibrary.org/obo/UBERON_0002995;substantia nigra pars lateralis;substantia nigra, lateral part -http://purl.obolibrary.org/obo/UBERON_0002996;nucleus of optic tract;large-celled nucleus of optic tract -http://purl.obolibrary.org/obo/UBERON_0002996;nucleus of optic tract;lentiform nucleus of pretectal area -http://purl.obolibrary.org/obo/UBERON_0002996;nucleus of optic tract;nucleus of the optic tract -http://purl.obolibrary.org/obo/UBERON_0002996;nucleus of optic tract;optic tract nucleus -http://purl.obolibrary.org/obo/UBERON_0002997;nucleus of medial eminence;medial eminence nucleus -http://purl.obolibrary.org/obo/UBERON_0002997;nucleus of medial eminence;nucleus eminentiae teretis -http://purl.obolibrary.org/obo/UBERON_0002997;nucleus of medial eminence;nucleus of eminentia teres -http://purl.obolibrary.org/obo/UBERON_0002998;inferior frontal gyrus;inferior frontal convolution -http://purl.obolibrary.org/obo/UBERON_0002999;oral pontine reticular nucleus;pontine reticular nucleus, rostral part -http://purl.obolibrary.org/obo/UBERON_0003001;nervous system lemniscus;lemniscus -http://purl.obolibrary.org/obo/UBERON_0003001;nervous system lemniscus;neuraxis lemniscus -http://purl.obolibrary.org/obo/UBERON_0003002;medial lemniscus; -http://purl.obolibrary.org/obo/UBERON_0003004;median raphe nucleus;MRN -http://purl.obolibrary.org/obo/UBERON_0003004;median raphe nucleus;cell group b8 -http://purl.obolibrary.org/obo/UBERON_0003004;median raphe nucleus;medial raphe nucleus -http://purl.obolibrary.org/obo/UBERON_0003004;median raphe nucleus;median nucleus of the raphe -http://purl.obolibrary.org/obo/UBERON_0003004;median raphe nucleus;nucleus centralis superior -http://purl.obolibrary.org/obo/UBERON_0003004;median raphe nucleus;nucleus raphes medianus -http://purl.obolibrary.org/obo/UBERON_0003004;median raphe nucleus;superior central nucleus -http://purl.obolibrary.org/obo/UBERON_0003004;median raphe nucleus;superior central nucleus raphe -http://purl.obolibrary.org/obo/UBERON_0003004;median raphe nucleus;superior central tegmental nucleus -http://purl.obolibrary.org/obo/UBERON_0003005;dorsal longitudinal fasciculus of midbrain;bundle of Schutz of midbrain -http://purl.obolibrary.org/obo/UBERON_0003005;dorsal longitudinal fasciculus of midbrain;fasciculus of Schutz of midbrain -http://purl.obolibrary.org/obo/UBERON_0003005;dorsal longitudinal fasciculus of midbrain;midbrain bundle of Schutz -http://purl.obolibrary.org/obo/UBERON_0003005;dorsal longitudinal fasciculus of midbrain;midbrain dorsal longitudinal fasciculus -http://purl.obolibrary.org/obo/UBERON_0003005;dorsal longitudinal fasciculus of midbrain;midbrain fasciculus of Schutz -http://purl.obolibrary.org/obo/UBERON_0003005;dorsal longitudinal fasciculus of midbrain;midbrain posterior longitudinal fasciculus -http://purl.obolibrary.org/obo/UBERON_0003005;dorsal longitudinal fasciculus of midbrain;posterior longitudinal fasciculus of midbrain -http://purl.obolibrary.org/obo/UBERON_0003006;dorsal nucleus of lateral lemniscus;dorsal nucleus of the lateral lemniscus -http://purl.obolibrary.org/obo/UBERON_0003006;dorsal nucleus of lateral lemniscus;nucleus of the lateral lemniscus, dorsal part -http://purl.obolibrary.org/obo/UBERON_0003006;dorsal nucleus of lateral lemniscus;nucleus posterior lemnisci lateralis -http://purl.obolibrary.org/obo/UBERON_0003006;dorsal nucleus of lateral lemniscus;posterior nucleus of lateral lemniscus -http://purl.obolibrary.org/obo/UBERON_0003007;lateral parabrachial nucleus; -http://purl.obolibrary.org/obo/UBERON_0003008;dorsal longitudinal fasciculus of hypothalamus; -http://purl.obolibrary.org/obo/UBERON_0003009;dorsal tegmental decussation;Meynert's decussation -http://purl.obolibrary.org/obo/UBERON_0003009;dorsal tegmental decussation;decussatio tegmentalis posterior -http://purl.obolibrary.org/obo/UBERON_0003009;dorsal tegmental decussation;dorsal fountain decussation -http://purl.obolibrary.org/obo/UBERON_0003009;dorsal tegmental decussation;fountain decussation of Meynert -http://purl.obolibrary.org/obo/UBERON_0003009;dorsal tegmental decussation;posterior tegmental decussation -http://purl.obolibrary.org/obo/UBERON_0003010;lateral pes lemniscus;deep pes lemniscus -http://purl.obolibrary.org/obo/UBERON_0003010;lateral pes lemniscus;fussschleife -http://purl.obolibrary.org/obo/UBERON_0003010;lateral pes lemniscus;lateral pontine bundle -http://purl.obolibrary.org/obo/UBERON_0003010;lateral pes lemniscus;laterale haubenfussschleife -http://purl.obolibrary.org/obo/UBERON_0003010;lateral pes lemniscus;laterale pontine buendel -http://purl.obolibrary.org/obo/UBERON_0003010;lateral pes lemniscus;pes lemniscus profond -http://purl.obolibrary.org/obo/UBERON_0003011;facial motor nucleus;branchiomotor nucleus of facial nerve -http://purl.obolibrary.org/obo/UBERON_0003011;facial motor nucleus;facial motor nucleus -http://purl.obolibrary.org/obo/UBERON_0003011;facial motor nucleus;facial nerve motor nucleus -http://purl.obolibrary.org/obo/UBERON_0003011;facial motor nucleus;facial nucleus -http://purl.obolibrary.org/obo/UBERON_0003011;facial motor nucleus;motor nucleus VII -http://purl.obolibrary.org/obo/UBERON_0003011;facial motor nucleus;motor nucleus of VII -http://purl.obolibrary.org/obo/UBERON_0003011;facial motor nucleus;motor nucleus of facial nerve -http://purl.obolibrary.org/obo/UBERON_0003011;facial motor nucleus;n. nervi facialis -http://purl.obolibrary.org/obo/UBERON_0003011;facial motor nucleus;nVII -http://purl.obolibrary.org/obo/UBERON_0003011;facial motor nucleus;nucleus facialis -http://purl.obolibrary.org/obo/UBERON_0003011;facial motor nucleus;nucleus motorius nervi facialis -http://purl.obolibrary.org/obo/UBERON_0003011;facial motor nucleus;nucleus nervi facialis -http://purl.obolibrary.org/obo/UBERON_0003012;flocculonodular lobe;cerebellum flocculonodular lobe -http://purl.obolibrary.org/obo/UBERON_0003012;flocculonodular lobe;flocculonodular lobe -http://purl.obolibrary.org/obo/UBERON_0003012;flocculonodular lobe;flocculonodular lobe of cerebellum -http://purl.obolibrary.org/obo/UBERON_0003012;flocculonodular lobe;lobus flocculonodularis -http://purl.obolibrary.org/obo/UBERON_0003012;flocculonodular lobe;posterior lobe-2 of cerebellum -http://purl.obolibrary.org/obo/UBERON_0003013;alar central lobule;ala centralis -http://purl.obolibrary.org/obo/UBERON_0003013;alar central lobule;alae of central lobule -http://purl.obolibrary.org/obo/UBERON_0003013;alar central lobule;lobules II, III of vermis -http://purl.obolibrary.org/obo/UBERON_0003015;anterior quadrangular lobule;anterior crescentic lobule of cerebellum -http://purl.obolibrary.org/obo/UBERON_0003015;anterior quadrangular lobule;anterior quadrangular lobule of cerebellum -http://purl.obolibrary.org/obo/UBERON_0003015;anterior quadrangular lobule;anterior quadrangular lobule of cerebellum [H IV et V] -http://purl.obolibrary.org/obo/UBERON_0003015;anterior quadrangular lobule;anterior semilunar lobule -http://purl.obolibrary.org/obo/UBERON_0003015;anterior quadrangular lobule;lobulus quadrangularis (pars rostralis) -http://purl.obolibrary.org/obo/UBERON_0003015;anterior quadrangular lobule;lobulus quadrangularis anterior cerebelli [h iv et v] -http://purl.obolibrary.org/obo/UBERON_0003015;anterior quadrangular lobule;semilunar lobule-1 (anterior) -http://purl.obolibrary.org/obo/UBERON_0003016;postcommissural fornix of brain;fornix (entering Corpus mamillare) -http://purl.obolibrary.org/obo/UBERON_0003016;postcommissural fornix of brain;postcommissural fornix -http://purl.obolibrary.org/obo/UBERON_0003017;substantia innominata;innominate substance -http://purl.obolibrary.org/obo/UBERON_0003017;substantia innominata;nucleus of substantia innominata -http://purl.obolibrary.org/obo/UBERON_0003017;substantia innominata;substantia innominata (Reil, Reichert) -http://purl.obolibrary.org/obo/UBERON_0003017;substantia innominata;substantia innominata of Meynert -http://purl.obolibrary.org/obo/UBERON_0003017;substantia innominata;substantia innominata of Reichert -http://purl.obolibrary.org/obo/UBERON_0003017;substantia innominata;substantia innominata of Reil -http://purl.obolibrary.org/obo/UBERON_0003017;substantia innominata;substriatal gray -http://purl.obolibrary.org/obo/UBERON_0003018;parvocellular part of ventral posteromedial nucleus;gustatory nucleus (thalamus) -http://purl.obolibrary.org/obo/UBERON_0003018;parvocellular part of ventral posteromedial nucleus;gustatory thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0003018;parvocellular part of ventral posteromedial nucleus;nucleus ventralis posterior medialis thalami, pars parvicellularis -http://purl.obolibrary.org/obo/UBERON_0003018;parvocellular part of ventral posteromedial nucleus;pars parvicellularis nuclei ventralis posteromedialis thalami -http://purl.obolibrary.org/obo/UBERON_0003018;parvocellular part of ventral posteromedial nucleus;parvicellular part of ventral posteromedial nucleus -http://purl.obolibrary.org/obo/UBERON_0003018;parvocellular part of ventral posteromedial nucleus;parvicellular part of ventral posteromedial nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0003018;parvocellular part of ventral posteromedial nucleus;ventral posteromedial nucleus of thalamus, parvicellular part -http://purl.obolibrary.org/obo/UBERON_0003018;parvocellular part of ventral posteromedial nucleus;ventral posteromedial nucleus, parvocellular part -http://purl.obolibrary.org/obo/UBERON_0003018;parvocellular part of ventral posteromedial nucleus;ventral posteromedial thalamic nucleus, parvicellular part -http://purl.obolibrary.org/obo/UBERON_0003018;parvocellular part of ventral posteromedial nucleus;ventroposteromedial nucleus of the thalamus, parvicellular part -http://purl.obolibrary.org/obo/UBERON_0003019;oral part of ventral posterolateral nucleus;nucleus lateralis intermedius lateralis -http://purl.obolibrary.org/obo/UBERON_0003019;oral part of ventral posterolateral nucleus;nucleus posteroventralis oralis -http://purl.obolibrary.org/obo/UBERON_0003019;oral part of ventral posterolateral nucleus;nucleus ventralis intermedius (dewulf) -http://purl.obolibrary.org/obo/UBERON_0003019;oral part of ventral posterolateral nucleus;nucleus ventralis intermedius (walker) -http://purl.obolibrary.org/obo/UBERON_0003019;oral part of ventral posterolateral nucleus;nucleus ventralis intermedius thalami -http://purl.obolibrary.org/obo/UBERON_0003019;oral part of ventral posterolateral nucleus;nucleus ventralis posterior lateralis, pars oralis -http://purl.obolibrary.org/obo/UBERON_0003019;oral part of ventral posterolateral nucleus;nucleus ventrointermedius -http://purl.obolibrary.org/obo/UBERON_0003019;oral part of ventral posterolateral nucleus;ventral part of ventral lateral posterior nucleus (jones) -http://purl.obolibrary.org/obo/UBERON_0003019;oral part of ventral posterolateral nucleus;ventral posterolateral nucleus, oral part -http://purl.obolibrary.org/obo/UBERON_0003019;oral part of ventral posterolateral nucleus;ventral posterolateral thalamic nucleus, oral part -http://purl.obolibrary.org/obo/UBERON_0003020;subcallosal area;adolfactory area -http://purl.obolibrary.org/obo/UBERON_0003020;subcallosal area;area paraolfactoria -http://purl.obolibrary.org/obo/UBERON_0003020;subcallosal area;paraolfactory area -http://purl.obolibrary.org/obo/UBERON_0003020;subcallosal area;parolfactory area -http://purl.obolibrary.org/obo/UBERON_0003021;central lobule;central lobule of cerebellum -http://purl.obolibrary.org/obo/UBERON_0003021;central lobule;central lobule of cerebellum [II and III] -http://purl.obolibrary.org/obo/UBERON_0003021;central lobule;lobulus centralis cerebelli [ii et iii] -http://purl.obolibrary.org/obo/UBERON_0003023;pontine tegmentum;dorsal pons -http://purl.obolibrary.org/obo/UBERON_0003023;pontine tegmentum;dorsal portion of pons -http://purl.obolibrary.org/obo/UBERON_0003023;pontine tegmentum;pars dorsalis pontis -http://purl.obolibrary.org/obo/UBERON_0003023;pontine tegmentum;pars posterior pontis -http://purl.obolibrary.org/obo/UBERON_0003023;pontine tegmentum;tegmental portion of pons -http://purl.obolibrary.org/obo/UBERON_0003023;pontine tegmentum;tegmentum of pons -http://purl.obolibrary.org/obo/UBERON_0003023;pontine tegmentum;tegmentum pontis -http://purl.obolibrary.org/obo/UBERON_0003024;principal part of ventral posteromedial nucleus;nucleus ventralis posteromedialis, pars prinicipalis -http://purl.obolibrary.org/obo/UBERON_0003025;brachium of inferior colliculus;brachium of medial geniculate -http://purl.obolibrary.org/obo/UBERON_0003025;brachium of inferior colliculus;inferior brachium -http://purl.obolibrary.org/obo/UBERON_0003025;brachium of inferior colliculus;inferior collicular brachium -http://purl.obolibrary.org/obo/UBERON_0003025;brachium of inferior colliculus;inferior colliculus brachium -http://purl.obolibrary.org/obo/UBERON_0003025;brachium of inferior colliculus;inferior quadrigeminal brachium -http://purl.obolibrary.org/obo/UBERON_0003025;brachium of inferior colliculus;peduncle of inferior colliculus -http://purl.obolibrary.org/obo/UBERON_0003026;limitans nucleus;limitans thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0003026;limitans nucleus;nucleus limitans -http://purl.obolibrary.org/obo/UBERON_0003026;limitans nucleus;nucleus limitans opticus (Hassler) -http://purl.obolibrary.org/obo/UBERON_0003026;limitans nucleus;nucleus limitans thalami -http://purl.obolibrary.org/obo/UBERON_0003027;cingulate cortex;cingulate neocortex -http://purl.obolibrary.org/obo/UBERON_0003028;commissure of inferior colliculus;caudal colliculus commissure -http://purl.obolibrary.org/obo/UBERON_0003028;commissure of inferior colliculus;commissure of caudal colliculus -http://purl.obolibrary.org/obo/UBERON_0003028;commissure of inferior colliculus;commissure of inferior colliculi -http://purl.obolibrary.org/obo/UBERON_0003028;commissure of inferior colliculus;commissure of posterior colliculus -http://purl.obolibrary.org/obo/UBERON_0003028;commissure of inferior colliculus;commissure of posterior corpus quadrigeminum -http://purl.obolibrary.org/obo/UBERON_0003028;commissure of inferior colliculus;inferior collicular commissure -http://purl.obolibrary.org/obo/UBERON_0003028;commissure of inferior colliculus;inferior colliculus commissure -http://purl.obolibrary.org/obo/UBERON_0003028;commissure of inferior colliculus;posterior colliculus commissure -http://purl.obolibrary.org/obo/UBERON_0003028;commissure of inferior colliculus;posterior corpus quadrigeminum commissure -http://purl.obolibrary.org/obo/UBERON_0003029;stria terminalis;semicircular stria -http://purl.obolibrary.org/obo/UBERON_0003029;stria terminalis;terminal stria -http://purl.obolibrary.org/obo/UBERON_0003030;posterior nucleus of thalamus;nucleus posterior thalami -http://purl.obolibrary.org/obo/UBERON_0003030;posterior nucleus of thalamus;nucleus thalami posterior -http://purl.obolibrary.org/obo/UBERON_0003031;submedial nucleus of thalamus;gelatinosus thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0003031;submedial nucleus of thalamus;nucleus submedialis thalami -http://purl.obolibrary.org/obo/UBERON_0003031;submedial nucleus of thalamus;nucleus submedius thalami -http://purl.obolibrary.org/obo/UBERON_0003031;submedial nucleus of thalamus;submedial nucleus -http://purl.obolibrary.org/obo/UBERON_0003031;submedial nucleus of thalamus;submedial nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0003031;submedial nucleus of thalamus;submedial nucleus thalamus -http://purl.obolibrary.org/obo/UBERON_0003031;submedial nucleus of thalamus;submedial thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0003033;suprageniculate nucleus of thalamus;nucleus suprageniculatus -http://purl.obolibrary.org/obo/UBERON_0003033;suprageniculate nucleus of thalamus;suprageniculate nucleus -http://purl.obolibrary.org/obo/UBERON_0003033;suprageniculate nucleus of thalamus;suprageniculate thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0003034;central dorsal nucleus of thalamus;central dorsal nucleus -http://purl.obolibrary.org/obo/UBERON_0003034;central dorsal nucleus of thalamus;central dorsal nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0003034;central dorsal nucleus of thalamus;nucleus centralis dorsalis thalami -http://purl.obolibrary.org/obo/UBERON_0003034;central dorsal nucleus of thalamus;nucleus centralis superior lateralis -http://purl.obolibrary.org/obo/UBERON_0003034;central dorsal nucleus of thalamus;nucleus centralis superior lateralis thalami -http://purl.obolibrary.org/obo/UBERON_0003036;central lateral nucleus;central lateral nucleus of thalamus -http://purl.obolibrary.org/obo/UBERON_0003036;central lateral nucleus;central lateral thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0003036;central lateral nucleus;centrolateral thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0003036;central lateral nucleus;nucleus centralis lateralis of thalamus -http://purl.obolibrary.org/obo/UBERON_0003036;central lateral nucleus;nucleus centralis lateralis thalami -http://purl.obolibrary.org/obo/UBERON_0003037;septum;septa -http://purl.obolibrary.org/obo/UBERON_0003038;thoracic spinal cord;pars thoracica medullae spinalis -http://purl.obolibrary.org/obo/UBERON_0003038;thoracic spinal cord;segmenta thoracica medullae spinalis [1-12] -http://purl.obolibrary.org/obo/UBERON_0003038;thoracic spinal cord;thoracic region of spinal cord -http://purl.obolibrary.org/obo/UBERON_0003038;thoracic spinal cord;thoracic segment of spinal cord -http://purl.obolibrary.org/obo/UBERON_0003038;thoracic spinal cord;thoracic segments of spinal cord [1-12] -http://purl.obolibrary.org/obo/UBERON_0003038;thoracic spinal cord;thoracic spinal cord -http://purl.obolibrary.org/obo/UBERON_0003039;anterior commissure anterior part;anterior commissure pars anterior -http://purl.obolibrary.org/obo/UBERON_0003039;anterior commissure anterior part;anterior commissure, anterior part -http://purl.obolibrary.org/obo/UBERON_0003039;anterior commissure anterior part;anterior part of anterior commissure -http://purl.obolibrary.org/obo/UBERON_0003039;anterior commissure anterior part;commissura anterior, crus anterius -http://purl.obolibrary.org/obo/UBERON_0003039;anterior commissure anterior part;commissura anterior, pars anterior -http://purl.obolibrary.org/obo/UBERON_0003039;anterior commissure anterior part;commissura anterior, pars olfactoria -http://purl.obolibrary.org/obo/UBERON_0003039;anterior commissure anterior part;commissura rostralis, pars anterior -http://purl.obolibrary.org/obo/UBERON_0003039;anterior commissure anterior part;olfactory limb of anterior commissure -http://purl.obolibrary.org/obo/UBERON_0003039;anterior commissure anterior part;olfactory part of anterior commissure -http://purl.obolibrary.org/obo/UBERON_0003039;anterior commissure anterior part;pars anterior commissurae anterioris -http://purl.obolibrary.org/obo/UBERON_0003039;anterior commissure anterior part;pars olfactoria commissurae anterioris -http://purl.obolibrary.org/obo/UBERON_0003040;Periaqueductal gray of midbrain;CGMB -http://purl.obolibrary.org/obo/UBERON_0003040;Periaqueductal gray of midbrain;anulus aquaeductus -http://purl.obolibrary.org/obo/UBERON_0003040;Periaqueductal gray of midbrain;anulus aqueductus cerebri -http://purl.obolibrary.org/obo/UBERON_0003040;Periaqueductal gray of midbrain;anulus of cerebral aqueduct -http://purl.obolibrary.org/obo/UBERON_0003040;Periaqueductal gray of midbrain;central (periaqueductal) gray -http://purl.obolibrary.org/obo/UBERON_0003040;Periaqueductal gray of midbrain;central gray -http://purl.obolibrary.org/obo/UBERON_0003040;Periaqueductal gray of midbrain;central gray of the midbrain -http://purl.obolibrary.org/obo/UBERON_0003040;Periaqueductal gray of midbrain;central gray substance of the midbrain -http://purl.obolibrary.org/obo/UBERON_0003040;Periaqueductal gray of midbrain;central grey -http://purl.obolibrary.org/obo/UBERON_0003040;Periaqueductal gray of midbrain;central grey substance of midbrain -http://purl.obolibrary.org/obo/UBERON_0003040;Periaqueductal gray of midbrain;griseum centrale -http://purl.obolibrary.org/obo/UBERON_0003040;Periaqueductal gray of midbrain;griseum centrale mesencephali -http://purl.obolibrary.org/obo/UBERON_0003040;Periaqueductal gray of midbrain;griseum periventriculare mesencephali -http://purl.obolibrary.org/obo/UBERON_0003040;Periaqueductal gray of midbrain;midbrain periaqueductal grey -http://purl.obolibrary.org/obo/UBERON_0003040;Periaqueductal gray of midbrain;pAG -http://purl.obolibrary.org/obo/UBERON_0003040;Periaqueductal gray of midbrain;periaquectuctal grey -http://purl.obolibrary.org/obo/UBERON_0003040;Periaqueductal gray of midbrain;periaqueductal gray -http://purl.obolibrary.org/obo/UBERON_0003040;Periaqueductal gray of midbrain;periaqueductal gray matter -http://purl.obolibrary.org/obo/UBERON_0003040;Periaqueductal gray of midbrain;periaqueductal gray of tegmentum -http://purl.obolibrary.org/obo/UBERON_0003040;Periaqueductal gray of midbrain;periaqueductal gray, proper -http://purl.obolibrary.org/obo/UBERON_0003040;Periaqueductal gray of midbrain;periaqueductal grey -http://purl.obolibrary.org/obo/UBERON_0003040;Periaqueductal gray of midbrain;periaqueductal grey matter -http://purl.obolibrary.org/obo/UBERON_0003040;Periaqueductal gray of midbrain;periaqueductal grey substance -http://purl.obolibrary.org/obo/UBERON_0003040;Periaqueductal gray of midbrain;s. grisea centralis -http://purl.obolibrary.org/obo/UBERON_0003040;Periaqueductal gray of midbrain;substantia grisea centralis -http://purl.obolibrary.org/obo/UBERON_0003040;Periaqueductal gray of midbrain;substantia grisea centralis mesencephali -http://purl.obolibrary.org/obo/UBERON_0003040;central gray substance of midbrain;CGMB -http://purl.obolibrary.org/obo/UBERON_0003040;central gray substance of midbrain;anulus aquaeductus -http://purl.obolibrary.org/obo/UBERON_0003040;central gray substance of midbrain;anulus aqueductus cerebri -http://purl.obolibrary.org/obo/UBERON_0003040;central gray substance of midbrain;anulus of cerebral aqueduct -http://purl.obolibrary.org/obo/UBERON_0003040;central gray substance of midbrain;central (periaqueductal) gray -http://purl.obolibrary.org/obo/UBERON_0003040;central gray substance of midbrain;central gray -http://purl.obolibrary.org/obo/UBERON_0003040;central gray substance of midbrain;central gray of the midbrain -http://purl.obolibrary.org/obo/UBERON_0003040;central gray substance of midbrain;central gray substance of the midbrain -http://purl.obolibrary.org/obo/UBERON_0003040;central gray substance of midbrain;central grey -http://purl.obolibrary.org/obo/UBERON_0003040;central gray substance of midbrain;central grey substance of midbrain -http://purl.obolibrary.org/obo/UBERON_0003040;central gray substance of midbrain;griseum centrale -http://purl.obolibrary.org/obo/UBERON_0003040;central gray substance of midbrain;griseum centrale mesencephali -http://purl.obolibrary.org/obo/UBERON_0003040;central gray substance of midbrain;griseum periventriculare mesencephali -http://purl.obolibrary.org/obo/UBERON_0003040;central gray substance of midbrain;midbrain periaqueductal grey -http://purl.obolibrary.org/obo/UBERON_0003040;central gray substance of midbrain;pAG -http://purl.obolibrary.org/obo/UBERON_0003040;central gray substance of midbrain;periaquectuctal grey -http://purl.obolibrary.org/obo/UBERON_0003040;central gray substance of midbrain;periaqueductal gray -http://purl.obolibrary.org/obo/UBERON_0003040;central gray substance of midbrain;periaqueductal gray matter -http://purl.obolibrary.org/obo/UBERON_0003040;central gray substance of midbrain;periaqueductal gray of tegmentum -http://purl.obolibrary.org/obo/UBERON_0003040;central gray substance of midbrain;periaqueductal gray, proper -http://purl.obolibrary.org/obo/UBERON_0003040;central gray substance of midbrain;periaqueductal grey -http://purl.obolibrary.org/obo/UBERON_0003040;central gray substance of midbrain;periaqueductal grey matter -http://purl.obolibrary.org/obo/UBERON_0003040;central gray substance of midbrain;periaqueductal grey substance -http://purl.obolibrary.org/obo/UBERON_0003040;central gray substance of midbrain;s. grisea centralis -http://purl.obolibrary.org/obo/UBERON_0003040;central gray substance of midbrain;substantia grisea centralis -http://purl.obolibrary.org/obo/UBERON_0003040;central gray substance of midbrain;substantia grisea centralis mesencephali -http://purl.obolibrary.org/obo/UBERON_0003041;trigeminal nerve fibers;central part of trigeminal nerve -http://purl.obolibrary.org/obo/UBERON_0003041;trigeminal nerve fibers;fibrae nervi trigemini -http://purl.obolibrary.org/obo/UBERON_0003041;trigeminal nerve fibers;trigeminal nerve fibers -http://purl.obolibrary.org/obo/UBERON_0003041;trigeminal nerve fibers;trigeminal nerve tract -http://purl.obolibrary.org/obo/UBERON_0003043;posterior part of anterior commissure;anterior commissure pars posterior -http://purl.obolibrary.org/obo/UBERON_0003043;posterior part of anterior commissure;anterior commissure temporal limb -http://purl.obolibrary.org/obo/UBERON_0003043;posterior part of anterior commissure;anterior commissure, posterior part -http://purl.obolibrary.org/obo/UBERON_0003043;posterior part of anterior commissure;commissura anterior, crus posterius -http://purl.obolibrary.org/obo/UBERON_0003043;posterior part of anterior commissure;commissura anterior, pars posterior -http://purl.obolibrary.org/obo/UBERON_0003043;posterior part of anterior commissure;commissura rostralis, pars posterior -http://purl.obolibrary.org/obo/UBERON_0003043;posterior part of anterior commissure;pars posterior commissurae anterioris -http://purl.obolibrary.org/obo/UBERON_0003043;posterior part of anterior commissure;temporal limb of anterior commissure -http://purl.obolibrary.org/obo/UBERON_0003044;uncinate fasciculus;cerebral uncinate fasciculus -http://purl.obolibrary.org/obo/UBERON_0003045;dorsal longitudinal fasciculus;bundle of Schutz -http://purl.obolibrary.org/obo/UBERON_0003045;dorsal longitudinal fasciculus;fasciculus longitudinalis posterior -http://purl.obolibrary.org/obo/UBERON_0003045;dorsal longitudinal fasciculus;fasciculus of Schutz -http://purl.obolibrary.org/obo/UBERON_0003045;dorsal longitudinal fasciculus;posterior longitudinal fasciculus -http://purl.obolibrary.org/obo/UBERON_0003046;ventral acoustic stria;anterior acoustic stria -http://purl.obolibrary.org/obo/UBERON_0003046;ventral acoustic stria;stria cochlearis anterior -http://purl.obolibrary.org/obo/UBERON_0003049;collagen and cuticulin-based cuticle; -http://purl.obolibrary.org/obo/UBERON_0003050;olfactory placode;olfactory placodes -http://purl.obolibrary.org/obo/UBERON_0003050;olfactory placode;placoda nasalis -http://purl.obolibrary.org/obo/UBERON_0003050;olfactory placode;placoda olfactoria -http://purl.obolibrary.org/obo/UBERON_0003051;ear vesicle;otic vesicle -http://purl.obolibrary.org/obo/UBERON_0003052;midbrain-hindbrain boundary;MHB -http://purl.obolibrary.org/obo/UBERON_0003052;midbrain-hindbrain boundary;mid-hindbrain boundary -http://purl.obolibrary.org/obo/UBERON_0003052;midbrain-hindbrain boundary;mid-hindbrain junction -http://purl.obolibrary.org/obo/UBERON_0003052;midbrain-hindbrain boundary;midbrain hindbrain boundary -http://purl.obolibrary.org/obo/UBERON_0003053;ventricular zone;VZ -http://purl.obolibrary.org/obo/UBERON_0003053;ventricular zone;brain ventricular zone -http://purl.obolibrary.org/obo/UBERON_0003053;ventricular zone;ventricular zone of brain -http://purl.obolibrary.org/obo/UBERON_0003054;roof plate;roof plate neural tube -http://purl.obolibrary.org/obo/UBERON_0003054;roof plate;roof plate neural tube region -http://purl.obolibrary.org/obo/UBERON_0003054;roof plate;roofplate -http://purl.obolibrary.org/obo/UBERON_0003055;periderm;skin periderm -http://purl.obolibrary.org/obo/UBERON_0003056;pre-chordal neural plate; -http://purl.obolibrary.org/obo/UBERON_0003057;chordal neural plate; -http://purl.obolibrary.org/obo/UBERON_0003058;hypochord;ipochord -http://purl.obolibrary.org/obo/UBERON_0003058;hypochord;subnotochordal rod -http://purl.obolibrary.org/obo/UBERON_0003059;presomitic mesoderm;segmental plate -http://purl.obolibrary.org/obo/UBERON_0003059;presomitic mesoderm;unsegmented paraxial mesoderm -http://purl.obolibrary.org/obo/UBERON_0003060;pronephric duct; -http://purl.obolibrary.org/obo/UBERON_0003061;blood island;blood islands -http://purl.obolibrary.org/obo/UBERON_0003062;primitive knot;Hensen node -http://purl.obolibrary.org/obo/UBERON_0003062;primitive knot;Hensen's node -http://purl.obolibrary.org/obo/UBERON_0003062;primitive knot;Spemann Mangold organizer -http://purl.obolibrary.org/obo/UBERON_0003062;primitive knot;Spemann's organizer -http://purl.obolibrary.org/obo/UBERON_0003062;primitive knot;embryo organizer -http://purl.obolibrary.org/obo/UBERON_0003062;primitive knot;embryonic organizer -http://purl.obolibrary.org/obo/UBERON_0003062;primitive knot;embryonic shield -http://purl.obolibrary.org/obo/UBERON_0003062;primitive knot;organizer -http://purl.obolibrary.org/obo/UBERON_0003062;primitive knot;primitive node -http://purl.obolibrary.org/obo/UBERON_0003062;primitive knot;shield -http://purl.obolibrary.org/obo/UBERON_0003063;prechordal plate; -http://purl.obolibrary.org/obo/UBERON_0003064;intermediate mesoderm; -http://purl.obolibrary.org/obo/UBERON_0003065;ciliary marginal zone;peripheral growth zone -http://purl.obolibrary.org/obo/UBERON_0003065;ciliary marginal zone;retinal ciliary marginal zone -http://purl.obolibrary.org/obo/UBERON_0003066;pharyngeal arch 2;2nd pharyngeal arch -http://purl.obolibrary.org/obo/UBERON_0003066;pharyngeal arch 2;arcus pharyngeus secundus -http://purl.obolibrary.org/obo/UBERON_0003066;pharyngeal arch 2;branchial arch 2 -http://purl.obolibrary.org/obo/UBERON_0003066;pharyngeal arch 2;hyoid arch -http://purl.obolibrary.org/obo/UBERON_0003066;pharyngeal arch 2;pharyngeal arch 2 -http://purl.obolibrary.org/obo/UBERON_0003066;pharyngeal arch 2;second branchial arch -http://purl.obolibrary.org/obo/UBERON_0003066;pharyngeal arch 2;second pharyngeal arch -http://purl.obolibrary.org/obo/UBERON_0003066;pharyngeal arch 2;second visceral arch -http://purl.obolibrary.org/obo/UBERON_0003066;pharyngeal arch 2;visceral arch 2 -http://purl.obolibrary.org/obo/UBERON_0003067;dorsolateral placode;dorsolateral placodes -http://purl.obolibrary.org/obo/UBERON_0003068;axial mesoderm; -http://purl.obolibrary.org/obo/UBERON_0003069;otic placode;placoda otica -http://purl.obolibrary.org/obo/UBERON_0003070;trigeminal placode complex;trigeminal V placode -http://purl.obolibrary.org/obo/UBERON_0003070;trigeminal placode complex;trigeminal placode -http://purl.obolibrary.org/obo/UBERON_0003071;eye primordium;eye placode -http://purl.obolibrary.org/obo/UBERON_0003071;eye primordium;occular primordium -http://purl.obolibrary.org/obo/UBERON_0003071;eye primordium;ocular primordium -http://purl.obolibrary.org/obo/UBERON_0003071;eye primordium;optic placode -http://purl.obolibrary.org/obo/UBERON_0003071;eye primordium;optic placode of camera-type eye -http://purl.obolibrary.org/obo/UBERON_0003071;eye primordium;optic primordium -http://purl.obolibrary.org/obo/UBERON_0003072;optic cup; -http://purl.obolibrary.org/obo/UBERON_0003073;lens placode; -http://purl.obolibrary.org/obo/UBERON_0003074;mesonephric duct;Wolffian duct -http://purl.obolibrary.org/obo/UBERON_0003075;neural plate; -http://purl.obolibrary.org/obo/UBERON_0003076;posterior neural tube; -http://purl.obolibrary.org/obo/UBERON_0003077;paraxial mesoderm;paraxial mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003077;paraxial mesoderm;somitic mesoderm -http://purl.obolibrary.org/obo/UBERON_0003078;epibranchial placode;epibranchial placodes -http://purl.obolibrary.org/obo/UBERON_0003079;floor plate;floorplate -http://purl.obolibrary.org/obo/UBERON_0003080;anterior neural tube; -http://purl.obolibrary.org/obo/UBERON_0003081;lateral plate mesoderm;LPM -http://purl.obolibrary.org/obo/UBERON_0003081;lateral plate mesoderm;lateral mesoderm -http://purl.obolibrary.org/obo/UBERON_0003082;myotome;myomeres -http://purl.obolibrary.org/obo/UBERON_0003083;trunk neural crest;TNC -http://purl.obolibrary.org/obo/UBERON_0003084;heart primordium; -http://purl.obolibrary.org/obo/UBERON_0003085;ventral aorta; -http://purl.obolibrary.org/obo/UBERON_0003086;caudal artery; -http://purl.obolibrary.org/obo/UBERON_0003087;anterior cardinal vein;rostral cardinal vein -http://purl.obolibrary.org/obo/UBERON_0003088;caudal vein; -http://purl.obolibrary.org/obo/UBERON_0003089;sclerotome;sclerotomes -http://purl.obolibrary.org/obo/UBERON_0003090;supraorbital lateral line;supraorbital line -http://purl.obolibrary.org/obo/UBERON_0003091;thyroid primordium; -http://purl.obolibrary.org/obo/UBERON_0003092;ultimobranchial body;corpus ultimopharyngeum -http://purl.obolibrary.org/obo/UBERON_0003092;ultimobranchial body;postbranchial body -http://purl.obolibrary.org/obo/UBERON_0003092;ultimobranchial body;telobranchial body -http://purl.obolibrary.org/obo/UBERON_0003092;ultimobranchial body;telopharyngeal body -http://purl.obolibrary.org/obo/UBERON_0003092;ultimobranchial body;ultimobranchial -http://purl.obolibrary.org/obo/UBERON_0003092;ultimobranchial body;ultimobranchial bodies -http://purl.obolibrary.org/obo/UBERON_0003092;ultimobranchial body;ultimobranchial gland -http://purl.obolibrary.org/obo/UBERON_0003092;ultimobranchial body;ultimopharyngeal body -http://purl.obolibrary.org/obo/UBERON_0003092;ultimobranchial body;ultimopharyngeal gland -http://purl.obolibrary.org/obo/UBERON_0003093;occipital lateral line; -http://purl.obolibrary.org/obo/UBERON_0003094;infraorbital lateral line;infraorbital line -http://purl.obolibrary.org/obo/UBERON_0003095;dorsal lateral line; -http://purl.obolibrary.org/obo/UBERON_0003096;middle lateral line; -http://purl.obolibrary.org/obo/UBERON_0003097;dorsal fin; -http://purl.obolibrary.org/obo/UBERON_0003098;optic stalk; -http://purl.obolibrary.org/obo/UBERON_0003099;cranial neural crest;CNC -http://purl.obolibrary.org/obo/UBERON_0003099;cranial neural crest;cephalic neural crest -http://purl.obolibrary.org/obo/UBERON_0003099;cranial neural crest;cranial NCC population -http://purl.obolibrary.org/obo/UBERON_0003099;cranial neural crest;head NCC population -http://purl.obolibrary.org/obo/UBERON_0003100;female organism;female -http://purl.obolibrary.org/obo/UBERON_0003100;female organism;female human body -http://purl.obolibrary.org/obo/UBERON_0003101;male organism;male -http://purl.obolibrary.org/obo/UBERON_0003101;male organism;male human body -http://purl.obolibrary.org/obo/UBERON_0003102;surface structure;anatomical surface feature -http://purl.obolibrary.org/obo/UBERON_0003103;compound organ;organ -http://purl.obolibrary.org/obo/UBERON_0003104;mesenchyme;mesenchymal tissue -http://purl.obolibrary.org/obo/UBERON_0003104;mesenchyme;mesenchyme tissue -http://purl.obolibrary.org/obo/UBERON_0003104;mesenchyme;portion of mesenchymal tissue -http://purl.obolibrary.org/obo/UBERON_0003104;mesenchyme;portion of mesenchyme tissue -http://purl.obolibrary.org/obo/UBERON_0003105;dorsal lateral plate region;DLP -http://purl.obolibrary.org/obo/UBERON_0003106;urostyle; -http://purl.obolibrary.org/obo/UBERON_0003107;Meckel's cartilage;Meckels cartilage -http://purl.obolibrary.org/obo/UBERON_0003107;Meckel's cartilage;cartilago arcus pharyngei primi -http://purl.obolibrary.org/obo/UBERON_0003107;Meckel's cartilage;primary mandinle -http://purl.obolibrary.org/obo/UBERON_0003107;Meckel's cartilage;ventral mandibular cartilage -http://purl.obolibrary.org/obo/UBERON_0003108;suspensorium;hyopalatine -http://purl.obolibrary.org/obo/UBERON_0003108;suspensorium;suspensoria -http://purl.obolibrary.org/obo/UBERON_0003109;parapophysis;lateral process of basiventral -http://purl.obolibrary.org/obo/UBERON_0003109;parapophysis;parapophyses -http://purl.obolibrary.org/obo/UBERON_0003109;parapophysis;transverse apophyses -http://purl.obolibrary.org/obo/UBERON_0003109;parapophysis;transverse apophysis -http://purl.obolibrary.org/obo/UBERON_0003110;otic region; -http://purl.obolibrary.org/obo/UBERON_0003111;sphenoid region; -http://purl.obolibrary.org/obo/UBERON_0003112;olfactory region; -http://purl.obolibrary.org/obo/UBERON_0003113;dermatocranium;dendrocranium -http://purl.obolibrary.org/obo/UBERON_0003113;dermatocranium;exocranium -http://purl.obolibrary.org/obo/UBERON_0003114;pharyngeal arch 3;3rd pharyngeal arch -http://purl.obolibrary.org/obo/UBERON_0003114;pharyngeal arch 3;first gill arch -http://purl.obolibrary.org/obo/UBERON_0003114;pharyngeal arch 3;gill arch 1 -http://purl.obolibrary.org/obo/UBERON_0003114;pharyngeal arch 3;third pharyngeal arch -http://purl.obolibrary.org/obo/UBERON_0003114;pharyngeal arch 3;third visceral arch -http://purl.obolibrary.org/obo/UBERON_0003114;pharyngeal arch 3;visceral arch 3 -http://purl.obolibrary.org/obo/UBERON_0003115;pharyngeal arch 4;4th branchial arch -http://purl.obolibrary.org/obo/UBERON_0003115;pharyngeal arch 4;4th pharyngeal arch -http://purl.obolibrary.org/obo/UBERON_0003115;pharyngeal arch 4;4th visceral arch -http://purl.obolibrary.org/obo/UBERON_0003115;pharyngeal arch 4;fourth pharyngeal arch -http://purl.obolibrary.org/obo/UBERON_0003115;pharyngeal arch 4;gill arch 2 -http://purl.obolibrary.org/obo/UBERON_0003115;pharyngeal arch 4;second gill arch -http://purl.obolibrary.org/obo/UBERON_0003115;pharyngeal arch 4;visceral arch 4 -http://purl.obolibrary.org/obo/UBERON_0003116;pharyngeal arch 5;fifth visceral arch -http://purl.obolibrary.org/obo/UBERON_0003116;pharyngeal arch 5;gill arch 3 -http://purl.obolibrary.org/obo/UBERON_0003116;pharyngeal arch 5;visceral arch 5 -http://purl.obolibrary.org/obo/UBERON_0003117;pharyngeal arch 6;6th arch -http://purl.obolibrary.org/obo/UBERON_0003117;pharyngeal arch 6;gill arch 4 -http://purl.obolibrary.org/obo/UBERON_0003117;pharyngeal arch 6;sixth branchial arch -http://purl.obolibrary.org/obo/UBERON_0003117;pharyngeal arch 6;visceral arch 6 -http://purl.obolibrary.org/obo/UBERON_0003118;pharyngeal arch artery 1;1st arch artery -http://purl.obolibrary.org/obo/UBERON_0003118;pharyngeal arch artery 1;AA1 -http://purl.obolibrary.org/obo/UBERON_0003118;pharyngeal arch artery 1;aortic arch 1 -http://purl.obolibrary.org/obo/UBERON_0003118;pharyngeal arch artery 1;first aortic arch -http://purl.obolibrary.org/obo/UBERON_0003118;pharyngeal arch artery 1;first branchial arch artery -http://purl.obolibrary.org/obo/UBERON_0003118;pharyngeal arch artery 1;mandibular aortic arch -http://purl.obolibrary.org/obo/UBERON_0003119;pharyngeal arch artery 2;2nd arch artery -http://purl.obolibrary.org/obo/UBERON_0003119;pharyngeal arch artery 2;AA2 -http://purl.obolibrary.org/obo/UBERON_0003119;pharyngeal arch artery 2;aortic arch 2 -http://purl.obolibrary.org/obo/UBERON_0003119;pharyngeal arch artery 2;hyoid aortic arch -http://purl.obolibrary.org/obo/UBERON_0003119;pharyngeal arch artery 2;second aortic arch -http://purl.obolibrary.org/obo/UBERON_0003119;pharyngeal arch artery 2;second branchial arch artery -http://purl.obolibrary.org/obo/UBERON_0003120;pharyngeal arch artery 3;3rd arch artery -http://purl.obolibrary.org/obo/UBERON_0003120;pharyngeal arch artery 3;AA3 -http://purl.obolibrary.org/obo/UBERON_0003120;pharyngeal arch artery 3;aortic arch 3 -http://purl.obolibrary.org/obo/UBERON_0003120;pharyngeal arch artery 3;carotid arch -http://purl.obolibrary.org/obo/UBERON_0003120;pharyngeal arch artery 3;third aortic arch -http://purl.obolibrary.org/obo/UBERON_0003120;pharyngeal arch artery 3;third branchial arch artery -http://purl.obolibrary.org/obo/UBERON_0003121;pharyngeal arch artery 4;4th arch artery -http://purl.obolibrary.org/obo/UBERON_0003121;pharyngeal arch artery 4;AA4 -http://purl.obolibrary.org/obo/UBERON_0003121;pharyngeal arch artery 4;aortic arch 4 -http://purl.obolibrary.org/obo/UBERON_0003121;pharyngeal arch artery 4;fourth aortic arch -http://purl.obolibrary.org/obo/UBERON_0003121;pharyngeal arch artery 4;fourth branchial arch artery -http://purl.obolibrary.org/obo/UBERON_0003122;pharyngeal arch artery 5;AA5 -http://purl.obolibrary.org/obo/UBERON_0003122;pharyngeal arch artery 5;aortic arch 5 -http://purl.obolibrary.org/obo/UBERON_0003122;pharyngeal arch artery 5;fifth aortic arch -http://purl.obolibrary.org/obo/UBERON_0003123;pharyngeal arch artery 6;6th arch artery -http://purl.obolibrary.org/obo/UBERON_0003123;pharyngeal arch artery 6;AA6 -http://purl.obolibrary.org/obo/UBERON_0003123;pharyngeal arch artery 6;aortic arch 6 -http://purl.obolibrary.org/obo/UBERON_0003123;pharyngeal arch artery 6;sixth aortic arch -http://purl.obolibrary.org/obo/UBERON_0003123;pharyngeal arch artery 6;sixth branchial arch artery -http://purl.obolibrary.org/obo/UBERON_0003124;chorion membrane;chorion -http://purl.obolibrary.org/obo/UBERON_0003124;chorion membrane;chorion (vertebrates) -http://purl.obolibrary.org/obo/UBERON_0003124;chorion membrane;embryonic chorion -http://purl.obolibrary.org/obo/UBERON_0003124;chorion membrane;fetal chorion -http://purl.obolibrary.org/obo/UBERON_0003124;chorion membrane;uterine chorion -http://purl.obolibrary.org/obo/UBERON_0003125;vitelline membrane; -http://purl.obolibrary.org/obo/UBERON_0003126;trachea;cartilaginous trachea -http://purl.obolibrary.org/obo/UBERON_0003126;trachea;tracheal tubule -http://purl.obolibrary.org/obo/UBERON_0003126;trachea;vertebrate trachea -http://purl.obolibrary.org/obo/UBERON_0003126;trachea;windpipe -http://purl.obolibrary.org/obo/UBERON_0003127;open tracheal system trachea;invertebrate trachea -http://purl.obolibrary.org/obo/UBERON_0003128;cranium;bones of cranium -http://purl.obolibrary.org/obo/UBERON_0003128;cranium;calvarium -http://purl.obolibrary.org/obo/UBERON_0003128;cranium;epicranial plate -http://purl.obolibrary.org/obo/UBERON_0003128;cranium;ossa cranii -http://purl.obolibrary.org/obo/UBERON_0003128;cranium;set of bones of cranium -http://purl.obolibrary.org/obo/UBERON_0003128;cranium;skeletal system of head -http://purl.obolibrary.org/obo/UBERON_0003128;cranium;skull minus mandible -http://purl.obolibrary.org/obo/UBERON_0003128;cranium;upper part of skull -http://purl.obolibrary.org/obo/UBERON_0003129;skull;cranial skeleton -http://purl.obolibrary.org/obo/UBERON_0003129;skull;skeletal system of head -http://purl.obolibrary.org/obo/UBERON_0003130;arthropod sternum; -http://purl.obolibrary.org/obo/UBERON_0003131;arthropod tibia; -http://purl.obolibrary.org/obo/UBERON_0003133;reproductive organ;genital organ -http://purl.obolibrary.org/obo/UBERON_0003133;reproductive organ;genitalia -http://purl.obolibrary.org/obo/UBERON_0003133;reproductive organ;reproductive system organ -http://purl.obolibrary.org/obo/UBERON_0003133;reproductive organ;sex organ -http://purl.obolibrary.org/obo/UBERON_0003134;female reproductive organ;female organism reproductive organ -http://purl.obolibrary.org/obo/UBERON_0003134;female reproductive organ;female organism reproductive structure -http://purl.obolibrary.org/obo/UBERON_0003134;female reproductive organ;female organism reproductive system organ -http://purl.obolibrary.org/obo/UBERON_0003134;female reproductive organ;female organism sex organ -http://purl.obolibrary.org/obo/UBERON_0003134;female reproductive organ;female reproductive gland/organ -http://purl.obolibrary.org/obo/UBERON_0003134;female reproductive organ;female reproductive system organ -http://purl.obolibrary.org/obo/UBERON_0003134;female reproductive organ;female sex organ -http://purl.obolibrary.org/obo/UBERON_0003134;female reproductive organ;reproductive organ of female organism -http://purl.obolibrary.org/obo/UBERON_0003134;female reproductive organ;reproductive structure of female organism -http://purl.obolibrary.org/obo/UBERON_0003134;female reproductive organ;reproductive system organ of female organism -http://purl.obolibrary.org/obo/UBERON_0003134;female reproductive organ;sex organ of female organism -http://purl.obolibrary.org/obo/UBERON_0003135;male reproductive organ;male genital -http://purl.obolibrary.org/obo/UBERON_0003135;male reproductive organ;male organism reproductive organ -http://purl.obolibrary.org/obo/UBERON_0003135;male reproductive organ;male organism reproductive structure -http://purl.obolibrary.org/obo/UBERON_0003135;male reproductive organ;male organism reproductive system organ -http://purl.obolibrary.org/obo/UBERON_0003135;male reproductive organ;male organism sex organ -http://purl.obolibrary.org/obo/UBERON_0003135;male reproductive organ;male reproductive gland/organ -http://purl.obolibrary.org/obo/UBERON_0003135;male reproductive organ;male reproductive system organ -http://purl.obolibrary.org/obo/UBERON_0003135;male reproductive organ;male sex organ -http://purl.obolibrary.org/obo/UBERON_0003135;male reproductive organ;reproductive organ of male organism -http://purl.obolibrary.org/obo/UBERON_0003135;male reproductive organ;reproductive structure of male organism -http://purl.obolibrary.org/obo/UBERON_0003135;male reproductive organ;reproductive system organ of male organism -http://purl.obolibrary.org/obo/UBERON_0003135;male reproductive organ;sex organ of male organism -http://purl.obolibrary.org/obo/UBERON_0003142;prepupa; -http://purl.obolibrary.org/obo/UBERON_0003143;pupa; -http://purl.obolibrary.org/obo/UBERON_0003153;insect head capsule; -http://purl.obolibrary.org/obo/UBERON_0003155;arthropod occiput; -http://purl.obolibrary.org/obo/UBERON_0003161;dorsal ocellus;ocellus -http://purl.obolibrary.org/obo/UBERON_0003162;lateral ocellus; -http://purl.obolibrary.org/obo/UBERON_0003194;imaginal disc-derived wing vein; -http://purl.obolibrary.org/obo/UBERON_0003199;egg chamber;germarium derived egg chamber -http://purl.obolibrary.org/obo/UBERON_0003201;exocuticle; -http://purl.obolibrary.org/obo/UBERON_0003202;endocuticle; -http://purl.obolibrary.org/obo/UBERON_0003209;blood nerve barrier;blood-nerve barrier -http://purl.obolibrary.org/obo/UBERON_0003210;blood-cerebrospinal fluid barrier;blood-CSF barrier -http://purl.obolibrary.org/obo/UBERON_0003211;median eye;medial ocellus -http://purl.obolibrary.org/obo/UBERON_0003211;median eye;median ocellus -http://purl.obolibrary.org/obo/UBERON_0003212;gustatory organ;gustatory organ system organ -http://purl.obolibrary.org/obo/UBERON_0003212;gustatory organ;gustatory system organ -http://purl.obolibrary.org/obo/UBERON_0003212;gustatory organ;organ of gustatory organ system -http://purl.obolibrary.org/obo/UBERON_0003212;gustatory organ;organ of gustatory system -http://purl.obolibrary.org/obo/UBERON_0003212;gustatory organ;organ of taste system -http://purl.obolibrary.org/obo/UBERON_0003212;gustatory organ;taste organ -http://purl.obolibrary.org/obo/UBERON_0003212;gustatory organ;taste system organ -http://purl.obolibrary.org/obo/UBERON_0003214;mammary gland alveolus;alveolus of lactiferous gland -http://purl.obolibrary.org/obo/UBERON_0003214;mammary gland alveolus;alveolus of lobe of breast -http://purl.obolibrary.org/obo/UBERON_0003214;mammary gland alveolus;alveolus of lobe of mammary gland -http://purl.obolibrary.org/obo/UBERON_0003214;mammary gland alveolus;alveolus of mammary gland -http://purl.obolibrary.org/obo/UBERON_0003214;mammary gland alveolus;lactiferous alveolus -http://purl.obolibrary.org/obo/UBERON_0003214;mammary gland alveolus;lactiferous gland alveolus -http://purl.obolibrary.org/obo/UBERON_0003214;mammary gland alveolus;lobe of breast alveolus -http://purl.obolibrary.org/obo/UBERON_0003214;mammary gland alveolus;lobe of mammary gland alveolus -http://purl.obolibrary.org/obo/UBERON_0003214;mammary gland alveolus;mammary alveolus -http://purl.obolibrary.org/obo/UBERON_0003215;alveolus; -http://purl.obolibrary.org/obo/UBERON_0003216;hard palate;hard palate -http://purl.obolibrary.org/obo/UBERON_0003216;hard palate;palatum durum -http://purl.obolibrary.org/obo/UBERON_0003217;neural lobe of neurohypophysis;lobus nervosus (Neurohypophysis) -http://purl.obolibrary.org/obo/UBERON_0003217;neural lobe of neurohypophysis;pars nervosa (hypophysis) -http://purl.obolibrary.org/obo/UBERON_0003217;neural lobe of neurohypophysis;pars nervosa (neurohypophysis) -http://purl.obolibrary.org/obo/UBERON_0003217;neural lobe of neurohypophysis;pars nervosa neurohypophysis -http://purl.obolibrary.org/obo/UBERON_0003217;neural lobe of neurohypophysis;pars nervosa of hypophysis -http://purl.obolibrary.org/obo/UBERON_0003217;neural lobe of neurohypophysis;pars nervosa of neurohypophysis -http://purl.obolibrary.org/obo/UBERON_0003217;neural lobe of neurohypophysis;pars nervosa of pituitary -http://purl.obolibrary.org/obo/UBERON_0003217;neural lobe of neurohypophysis;pars nervosa of posterior lobe of pituitary gland -http://purl.obolibrary.org/obo/UBERON_0003217;neural lobe of neurohypophysis;pars nervosa pituitary gland -http://purl.obolibrary.org/obo/UBERON_0003217;neural lobe of neurohypophysis;pars posterior -http://purl.obolibrary.org/obo/UBERON_0003217;neural lobe of neurohypophysis;pars posterior of hypophysis -http://purl.obolibrary.org/obo/UBERON_0003217;neural lobe of neurohypophysis;posterior lobe of neurohypophysis -http://purl.obolibrary.org/obo/UBERON_0003217;neural lobe of neurohypophysis;posterior lobe-3 -http://purl.obolibrary.org/obo/UBERON_0003218;ovary septum; -http://purl.obolibrary.org/obo/UBERON_0003219;shell septum; -http://purl.obolibrary.org/obo/UBERON_0003220;metanephric mesenchyme;metanephric blastema -http://purl.obolibrary.org/obo/UBERON_0003220;metanephric mesenchyme;metanephric mesoderm -http://purl.obolibrary.org/obo/UBERON_0003220;metanephric mesenchyme;metanephrogenic mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003220;metanephric mesenchyme;metanephros associated mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003221;phalanx;digit long bone -http://purl.obolibrary.org/obo/UBERON_0003221;phalanx;long bone of digit -http://purl.obolibrary.org/obo/UBERON_0003221;phalanx;phalange -http://purl.obolibrary.org/obo/UBERON_0003221;phalanx;phalanges -http://purl.obolibrary.org/obo/UBERON_0003221;phalanx;phalanx bone -http://purl.obolibrary.org/obo/UBERON_0003222;flexor digitorum superficialis;flexor digitorum superficialis muscle -http://purl.obolibrary.org/obo/UBERON_0003224;chorion syncytiotrophoblast; -http://purl.obolibrary.org/obo/UBERON_0003228;supinator muscle;supinator -http://purl.obolibrary.org/obo/UBERON_0003229;epithelium of elbow;cubital region epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003229;epithelium of elbow;cubital region epithelium -http://purl.obolibrary.org/obo/UBERON_0003229;epithelium of elbow;elbow epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003229;epithelium of elbow;elbow epithelium -http://purl.obolibrary.org/obo/UBERON_0003229;epithelium of elbow;epithelial tissue of cubital region -http://purl.obolibrary.org/obo/UBERON_0003229;epithelium of elbow;epithelial tissue of elbow -http://purl.obolibrary.org/obo/UBERON_0003229;epithelium of elbow;epithelium of cubital region -http://purl.obolibrary.org/obo/UBERON_0003230;epithelium of carpal region;carpal region epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003230;epithelium of carpal region;carpal region epithelium -http://purl.obolibrary.org/obo/UBERON_0003230;epithelium of carpal region;epithelial tissue of carpal region -http://purl.obolibrary.org/obo/UBERON_0003230;epithelium of carpal region;epithelial tissue of wrist -http://purl.obolibrary.org/obo/UBERON_0003230;epithelium of carpal region;epithelium of wrist -http://purl.obolibrary.org/obo/UBERON_0003230;epithelium of carpal region;wrist epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003230;epithelium of carpal region;wrist epithelium -http://purl.obolibrary.org/obo/UBERON_0003231;epithelium of hip;epithelial tissue of hip -http://purl.obolibrary.org/obo/UBERON_0003231;epithelium of hip;epithelial tissue of hip region -http://purl.obolibrary.org/obo/UBERON_0003231;epithelium of hip;epithelial tissue of regio coxae -http://purl.obolibrary.org/obo/UBERON_0003231;epithelium of hip;epithelium of hip region -http://purl.obolibrary.org/obo/UBERON_0003231;epithelium of hip;epithelium of regio coxae -http://purl.obolibrary.org/obo/UBERON_0003231;epithelium of hip;hip epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003231;epithelium of hip;hip epithelium -http://purl.obolibrary.org/obo/UBERON_0003231;epithelium of hip;hip region epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003231;epithelium of hip;hip region epithelium -http://purl.obolibrary.org/obo/UBERON_0003231;epithelium of hip;regio coxae epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003231;epithelium of hip;regio coxae epithelium -http://purl.obolibrary.org/obo/UBERON_0003232;epithelium of knee;epithelial tissue of knee -http://purl.obolibrary.org/obo/UBERON_0003232;epithelium of knee;knee epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003232;epithelium of knee;knee epithelium -http://purl.obolibrary.org/obo/UBERON_0003233;epithelium of shoulder;epithelial tissue of shoulder -http://purl.obolibrary.org/obo/UBERON_0003233;epithelium of shoulder;shoulder epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003233;epithelium of shoulder;shoulder epithelium -http://purl.obolibrary.org/obo/UBERON_0003234;extensor pollicis longus muscle;extensor pollicis longus -http://purl.obolibrary.org/obo/UBERON_0003235;epithelium of upper jaw;epithelial tissue of palatoquadrate arch -http://purl.obolibrary.org/obo/UBERON_0003235;epithelium of upper jaw;epithelial tissue of upper jaw -http://purl.obolibrary.org/obo/UBERON_0003235;epithelium of upper jaw;epithelium of palatoquadrate arch -http://purl.obolibrary.org/obo/UBERON_0003235;epithelium of upper jaw;palatoquadrate arch epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003235;epithelium of upper jaw;palatoquadrate arch epithelium -http://purl.obolibrary.org/obo/UBERON_0003235;epithelium of upper jaw;upper jaw epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003235;epithelium of upper jaw;upper jaw epithelium -http://purl.obolibrary.org/obo/UBERON_0003236;epithelium of lower jaw;epithelial tissue of lower jaw -http://purl.obolibrary.org/obo/UBERON_0003236;epithelium of lower jaw;epithelial tissue of ventral mandibular arch -http://purl.obolibrary.org/obo/UBERON_0003236;epithelium of lower jaw;epithelium of ventral mandibular arch -http://purl.obolibrary.org/obo/UBERON_0003236;epithelium of lower jaw;lower jaw epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003236;epithelium of lower jaw;lower jaw epithelium -http://purl.obolibrary.org/obo/UBERON_0003236;epithelium of lower jaw;ventral mandibular arch epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003236;epithelium of lower jaw;ventral mandibular arch epithelium -http://purl.obolibrary.org/obo/UBERON_0003238;epithelium of superior semicircular canal;anterior semicircular canal epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003238;epithelium of superior semicircular canal;anterior semicircular canal epithelium -http://purl.obolibrary.org/obo/UBERON_0003238;epithelium of superior semicircular canal;epithelial tissue of anterior semicircular canal -http://purl.obolibrary.org/obo/UBERON_0003238;epithelium of superior semicircular canal;epithelial tissue of superior semicircular canal -http://purl.obolibrary.org/obo/UBERON_0003238;epithelium of superior semicircular canal;epithelium of anterior semicircular canal -http://purl.obolibrary.org/obo/UBERON_0003238;epithelium of superior semicircular canal;superior semicircular canal epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003238;epithelium of superior semicircular canal;superior semicircular canal epithelium -http://purl.obolibrary.org/obo/UBERON_0003239;epithelium of posterior semicircular canal;epithelial tissue of posterior semicircular canal -http://purl.obolibrary.org/obo/UBERON_0003239;epithelium of posterior semicircular canal;posterior semicircular canal epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003239;epithelium of posterior semicircular canal;posterior semicircular canal epithelium -http://purl.obolibrary.org/obo/UBERON_0003240;epithelium of lateral semicircular canal;epithelial tissue of lateral semicircular canal -http://purl.obolibrary.org/obo/UBERON_0003240;epithelium of lateral semicircular canal;lateral semicircular canal epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003240;epithelium of lateral semicircular canal;lateral semicircular canal epithelium -http://purl.obolibrary.org/obo/UBERON_0003241;epithelium of utricle;epithelial tissue of membranous labyrinth utricle -http://purl.obolibrary.org/obo/UBERON_0003241;epithelium of utricle;epithelial tissue of utricle -http://purl.obolibrary.org/obo/UBERON_0003241;epithelium of utricle;epithelial tissue of utricle of membranous labyrinth -http://purl.obolibrary.org/obo/UBERON_0003241;epithelium of utricle;epithelial tissue of utriculus (labyrinthus vestibularis) -http://purl.obolibrary.org/obo/UBERON_0003241;epithelium of utricle;epithelium of membranous labyrinth utricle -http://purl.obolibrary.org/obo/UBERON_0003241;epithelium of utricle;epithelium of utricle of membranous labyrinth -http://purl.obolibrary.org/obo/UBERON_0003241;epithelium of utricle;epithelium of utriculus (labyrinthus vestibularis) -http://purl.obolibrary.org/obo/UBERON_0003241;epithelium of utricle;membranous labyrinth utricle epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003241;epithelium of utricle;membranous labyrinth utricle epithelium -http://purl.obolibrary.org/obo/UBERON_0003241;epithelium of utricle;utricle epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003241;epithelium of utricle;utricle epithelium -http://purl.obolibrary.org/obo/UBERON_0003241;epithelium of utricle;utricle of membranous labyrinth epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003241;epithelium of utricle;utricle of membranous labyrinth epithelium -http://purl.obolibrary.org/obo/UBERON_0003241;epithelium of utricle;utriculus (labyrinthus vestibularis) epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003241;epithelium of utricle;utriculus (labyrinthus vestibularis) epithelium -http://purl.obolibrary.org/obo/UBERON_0003242;epithelium of saccule;epithelial tissue of membranous labyrinth saccule -http://purl.obolibrary.org/obo/UBERON_0003242;epithelium of saccule;epithelial tissue of saccule -http://purl.obolibrary.org/obo/UBERON_0003242;epithelium of saccule;epithelial tissue of saccule of membranous labyrinth -http://purl.obolibrary.org/obo/UBERON_0003242;epithelium of saccule;epithelial tissue of sacculus (labyrinthus vestibularis) -http://purl.obolibrary.org/obo/UBERON_0003242;epithelium of saccule;epithelium of membranous labyrinth saccule -http://purl.obolibrary.org/obo/UBERON_0003242;epithelium of saccule;epithelium of saccule of membranous labyrinth -http://purl.obolibrary.org/obo/UBERON_0003242;epithelium of saccule;epithelium of sacculus (labyrinthus vestibularis) -http://purl.obolibrary.org/obo/UBERON_0003242;epithelium of saccule;membranous labyrinth saccule epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003242;epithelium of saccule;membranous labyrinth saccule epithelium -http://purl.obolibrary.org/obo/UBERON_0003242;epithelium of saccule;saccule epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003242;epithelium of saccule;saccule epithelium -http://purl.obolibrary.org/obo/UBERON_0003242;epithelium of saccule;saccule of membranous labyrinth epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003242;epithelium of saccule;saccule of membranous labyrinth epithelium -http://purl.obolibrary.org/obo/UBERON_0003242;epithelium of saccule;sacculus (labyrinthus vestibularis) epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003242;epithelium of saccule;sacculus (labyrinthus vestibularis) epithelium -http://purl.obolibrary.org/obo/UBERON_0003243;epithelium of cochlear duct;Reissner's canal epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003243;epithelium of cochlear duct;Reissner's canal epithelium -http://purl.obolibrary.org/obo/UBERON_0003243;epithelium of cochlear duct;cochlear duct epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003243;epithelium of cochlear duct;cochlear duct epithelium -http://purl.obolibrary.org/obo/UBERON_0003243;epithelium of cochlear duct;cochlear duct of membranous labyrinth epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003243;epithelium of cochlear duct;cochlear duct of membranous labyrinth epithelium -http://purl.obolibrary.org/obo/UBERON_0003243;epithelium of cochlear duct;epithelial tissue of Reissner's canal -http://purl.obolibrary.org/obo/UBERON_0003243;epithelium of cochlear duct;epithelial tissue of cochlear duct -http://purl.obolibrary.org/obo/UBERON_0003243;epithelium of cochlear duct;epithelial tissue of cochlear duct of membranous labyrinth -http://purl.obolibrary.org/obo/UBERON_0003243;epithelium of cochlear duct;epithelium of Reissner's canal -http://purl.obolibrary.org/obo/UBERON_0003243;epithelium of cochlear duct;epithelium of cochlear duct of membranous labyrinth -http://purl.obolibrary.org/obo/UBERON_0003244;epithelium of mammary gland;epithelium of lactiferous gland -http://purl.obolibrary.org/obo/UBERON_0003244;epithelium of mammary gland;lactiferous gland epithelium -http://purl.obolibrary.org/obo/UBERON_0003244;epithelium of mammary gland;mammary epithelium -http://purl.obolibrary.org/obo/UBERON_0003244;epithelium of mammary gland;mammary gland epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003244;epithelium of mammary gland;mammary gland epithelium -http://purl.obolibrary.org/obo/UBERON_0003246;epithelium of endolymphatic sac;endolymphatic sac epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003246;epithelium of endolymphatic sac;endolymphatic sac epithelium -http://purl.obolibrary.org/obo/UBERON_0003246;epithelium of endolymphatic sac;epithelial tissue of endolymphatic sac -http://purl.obolibrary.org/obo/UBERON_0003247;epithelium of forearm;forearm epithelium -http://purl.obolibrary.org/obo/UBERON_0003248;epithelium of footplate;foot plate epithelium -http://purl.obolibrary.org/obo/UBERON_0003248;epithelium of footplate;footplate epithelium -http://purl.obolibrary.org/obo/UBERON_0003249;epithelium of otic placode;epithelial tissue of otic placode -http://purl.obolibrary.org/obo/UBERON_0003249;epithelium of otic placode;otic epithelium -http://purl.obolibrary.org/obo/UBERON_0003249;epithelium of otic placode;otic placode epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003249;epithelium of otic placode;otic placode epithelium -http://purl.obolibrary.org/obo/UBERON_0003250;rectus capitis lateralis muscle;lateral rectus capitis -http://purl.obolibrary.org/obo/UBERON_0003250;rectus capitis lateralis muscle;musculus rectus capitis lateralis -http://purl.obolibrary.org/obo/UBERON_0003250;rectus capitis lateralis muscle;rectus capitis lateralis -http://purl.obolibrary.org/obo/UBERON_0003250;rectus capitis lateralis muscle;rectus capitus lateralis -http://purl.obolibrary.org/obo/UBERON_0003250;rectus capitis lateralis muscle;rectus capitus lateralis muscle -http://purl.obolibrary.org/obo/UBERON_0003251;temporal part of head; -http://purl.obolibrary.org/obo/UBERON_0003252;thoracic rib cage;cavea thoracis -http://purl.obolibrary.org/obo/UBERON_0003252;thoracic rib cage;rib cage -http://purl.obolibrary.org/obo/UBERON_0003252;thoracic rib cage;thoracic cage -http://purl.obolibrary.org/obo/UBERON_0003253;neck of rib;collum costae -http://purl.obolibrary.org/obo/UBERON_0003253;neck of rib;rib neck -http://purl.obolibrary.org/obo/UBERON_0003254;amniotic ectoderm;amnion ectoderm -http://purl.obolibrary.org/obo/UBERON_0003254;amniotic ectoderm;amnionic ectoderm -http://purl.obolibrary.org/obo/UBERON_0003257;yolk sac endoderm; -http://purl.obolibrary.org/obo/UBERON_0003258;endoderm of foregut;foregut endoderm -http://purl.obolibrary.org/obo/UBERON_0003259;endoderm of midgut;midgut endoderm -http://purl.obolibrary.org/obo/UBERON_0003260;endoderm of hindgut;hindgut endoderm -http://purl.obolibrary.org/obo/UBERON_0003261;thyroid primordium endoderm;endoderm of thyroid primordium -http://purl.obolibrary.org/obo/UBERON_0003262;amniotic mesoderm;amnion mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003262;amniotic mesoderm;amnion mesoderm -http://purl.obolibrary.org/obo/UBERON_0003262;amniotic mesoderm;amnionic mesoderm -http://purl.obolibrary.org/obo/UBERON_0003262;amniotic mesoderm;mesenchyme of amnion -http://purl.obolibrary.org/obo/UBERON_0003265;chorionic mesenchyme;chorion mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003265;chorionic mesenchyme;chorion mesoderm -http://purl.obolibrary.org/obo/UBERON_0003265;chorionic mesenchyme;chorionic mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003265;chorionic mesenchyme;mesenchyme of chorion -http://purl.obolibrary.org/obo/UBERON_0003265;chorionic mesenchyme;mesenchyme of chorion (vertebrates) -http://purl.obolibrary.org/obo/UBERON_0003267;tooth of upper jaw;upper jaw tooth -http://purl.obolibrary.org/obo/UBERON_0003268;tooth of lower jaw;calcareous tooth of lower jaw -http://purl.obolibrary.org/obo/UBERON_0003268;tooth of lower jaw;lower jaw calcareous tooth -http://purl.obolibrary.org/obo/UBERON_0003268;tooth of lower jaw;lower jaw dentine containing tooth -http://purl.obolibrary.org/obo/UBERON_0003268;tooth of lower jaw;lower jaw tooth -http://purl.obolibrary.org/obo/UBERON_0003268;tooth of lower jaw;lower jaw vertebrate tooth -http://purl.obolibrary.org/obo/UBERON_0003269;skeletal muscle tissue of eye;eye skeletal muscle -http://purl.obolibrary.org/obo/UBERON_0003269;skeletal muscle tissue of eye;eye skeletal muscle tissue -http://purl.obolibrary.org/obo/UBERON_0003269;skeletal muscle tissue of eye;skeletal muscle tissue of eye -http://purl.obolibrary.org/obo/UBERON_0003274;mesothelium of omental bursa;lesser sac mesothelium -http://purl.obolibrary.org/obo/UBERON_0003274;mesothelium of omental bursa;omental bursa mesothelium -http://purl.obolibrary.org/obo/UBERON_0003277;skeleton of upper jaw;upper jaw skeleton -http://purl.obolibrary.org/obo/UBERON_0003278;skeleton of lower jaw;lower jaw skeleton -http://purl.obolibrary.org/obo/UBERON_0003279;endothelium of trachea;endothelium of windpipe -http://purl.obolibrary.org/obo/UBERON_0003279;endothelium of trachea;trachea endothelium -http://purl.obolibrary.org/obo/UBERON_0003279;endothelium of trachea;windpipe endothelium -http://purl.obolibrary.org/obo/UBERON_0003280;endothelium of main bronchus;bronchus principalis endothelium -http://purl.obolibrary.org/obo/UBERON_0003280;endothelium of main bronchus;endothelium of bronchus principalis -http://purl.obolibrary.org/obo/UBERON_0003280;endothelium of main bronchus;endothelium of primary bronchus -http://purl.obolibrary.org/obo/UBERON_0003280;endothelium of main bronchus;endothelium of principal bronchus -http://purl.obolibrary.org/obo/UBERON_0003280;endothelium of main bronchus;main bronchus endothelium -http://purl.obolibrary.org/obo/UBERON_0003280;endothelium of main bronchus;primary bronchus endothelium -http://purl.obolibrary.org/obo/UBERON_0003280;endothelium of main bronchus;principal bronchus endothelium -http://purl.obolibrary.org/obo/UBERON_0003281;mesentery of stomach;mesentery of ventriculus -http://purl.obolibrary.org/obo/UBERON_0003281;mesentery of stomach;mesogaster -http://purl.obolibrary.org/obo/UBERON_0003281;mesentery of stomach;mesogastium -http://purl.obolibrary.org/obo/UBERON_0003281;mesentery of stomach;mesogastrium -http://purl.obolibrary.org/obo/UBERON_0003281;mesentery of stomach;stomach mesentery -http://purl.obolibrary.org/obo/UBERON_0003281;mesentery of stomach;ventriculus mesentery -http://purl.obolibrary.org/obo/UBERON_0003282;mesentery of heart;heart mesentery -http://purl.obolibrary.org/obo/UBERON_0003283;mesentery of oesophagus;esophagus mesentery -http://purl.obolibrary.org/obo/UBERON_0003283;mesentery of oesophagus;gullet mesentery -http://purl.obolibrary.org/obo/UBERON_0003283;mesentery of oesophagus;mesentery of esophagus -http://purl.obolibrary.org/obo/UBERON_0003283;mesentery of oesophagus;mesentery of gullet -http://purl.obolibrary.org/obo/UBERON_0003283;mesentery of oesophagus;meso-esophagus -http://purl.obolibrary.org/obo/UBERON_0003283;mesentery of oesophagus;oesophagus mesentery -http://purl.obolibrary.org/obo/UBERON_0003284;mesentery of midgut;midgut mesentery -http://purl.obolibrary.org/obo/UBERON_0003286;foregut region of duodenum;foregut duodenum -http://purl.obolibrary.org/obo/UBERON_0003287;midgut region of duodenum;midgut duodenum -http://purl.obolibrary.org/obo/UBERON_0003288;meninx of midbrain;meninges of midbrain -http://purl.obolibrary.org/obo/UBERON_0003288;meninx of midbrain;midbrain meninges -http://purl.obolibrary.org/obo/UBERON_0003288;meninx of midbrain;midbrain meninx -http://purl.obolibrary.org/obo/UBERON_0003289;meninx of telencephalon;meninges of telencephalon -http://purl.obolibrary.org/obo/UBERON_0003289;meninx of telencephalon;telencephalon meninges -http://purl.obolibrary.org/obo/UBERON_0003289;meninx of telencephalon;telencephalon meninx -http://purl.obolibrary.org/obo/UBERON_0003290;meninx of diencephalon;between brain meninges -http://purl.obolibrary.org/obo/UBERON_0003290;meninx of diencephalon;between brain meninx -http://purl.obolibrary.org/obo/UBERON_0003290;meninx of diencephalon;diencephalon meninges -http://purl.obolibrary.org/obo/UBERON_0003290;meninx of diencephalon;diencephalon meninx -http://purl.obolibrary.org/obo/UBERON_0003290;meninx of diencephalon;interbrain meninges -http://purl.obolibrary.org/obo/UBERON_0003290;meninx of diencephalon;interbrain meninx -http://purl.obolibrary.org/obo/UBERON_0003290;meninx of diencephalon;mature diencephalon meninges -http://purl.obolibrary.org/obo/UBERON_0003290;meninx of diencephalon;mature diencephalon meninx -http://purl.obolibrary.org/obo/UBERON_0003290;meninx of diencephalon;meninges of between brain -http://purl.obolibrary.org/obo/UBERON_0003290;meninx of diencephalon;meninges of diencephalon -http://purl.obolibrary.org/obo/UBERON_0003290;meninx of diencephalon;meninges of interbrain -http://purl.obolibrary.org/obo/UBERON_0003290;meninx of diencephalon;meninges of mature diencephalon -http://purl.obolibrary.org/obo/UBERON_0003290;meninx of diencephalon;meninx of between brain -http://purl.obolibrary.org/obo/UBERON_0003290;meninx of diencephalon;meninx of interbrain -http://purl.obolibrary.org/obo/UBERON_0003290;meninx of diencephalon;meninx of mature diencephalon -http://purl.obolibrary.org/obo/UBERON_0003291;meninx of hindbrain;hindbrain meninges -http://purl.obolibrary.org/obo/UBERON_0003291;meninx of hindbrain;hindbrain meninx -http://purl.obolibrary.org/obo/UBERON_0003291;meninx of hindbrain;meninges of hindbrain -http://purl.obolibrary.org/obo/UBERON_0003292;meninx of spinal cord;menines of spinal cord -http://purl.obolibrary.org/obo/UBERON_0003292;meninx of spinal cord;meninges of spinal cord -http://purl.obolibrary.org/obo/UBERON_0003292;meninx of spinal cord;spinal cord meninges -http://purl.obolibrary.org/obo/UBERON_0003292;meninx of spinal cord;spinal cord meninx -http://purl.obolibrary.org/obo/UBERON_0003292;meninx of spinal cord;spinal meninges -http://purl.obolibrary.org/obo/UBERON_0003292;meninx of spinal cord;spinal meninx -http://purl.obolibrary.org/obo/UBERON_0003294;gland of foregut;foregut gland -http://purl.obolibrary.org/obo/UBERON_0003295;pharyngeal gland;pharynx gland -http://purl.obolibrary.org/obo/UBERON_0003296;gland of diencephalon;diencephalon gland -http://purl.obolibrary.org/obo/UBERON_0003296;gland of diencephalon;interbrain gland -http://purl.obolibrary.org/obo/UBERON_0003297;gland of integumental system;integumental gland -http://purl.obolibrary.org/obo/UBERON_0003297;gland of integumental system;integumental system gland -http://purl.obolibrary.org/obo/UBERON_0003297;gland of integumental system;integumentary gland -http://purl.obolibrary.org/obo/UBERON_0003299;roof plate of midbrain;midbrain roof plate -http://purl.obolibrary.org/obo/UBERON_0003299;roof plate of midbrain;midbrain roofplate -http://purl.obolibrary.org/obo/UBERON_0003299;roof plate of midbrain;roof plate midbrain -http://purl.obolibrary.org/obo/UBERON_0003299;roof plate of midbrain;roof plate midbrain region -http://purl.obolibrary.org/obo/UBERON_0003299;roof plate of midbrain;roofplate of midbrain -http://purl.obolibrary.org/obo/UBERON_0003300;roof plate of telencephalon;roof plate telencephalon -http://purl.obolibrary.org/obo/UBERON_0003300;roof plate of telencephalon;roofplate of telencephalon -http://purl.obolibrary.org/obo/UBERON_0003300;roof plate of telencephalon;telencephalon roof plate -http://purl.obolibrary.org/obo/UBERON_0003300;roof plate of telencephalon;telencephalon roofplate -http://purl.obolibrary.org/obo/UBERON_0003301;roof plate of diencephalon;between brain roof plate -http://purl.obolibrary.org/obo/UBERON_0003301;roof plate of diencephalon;between brain roofplate -http://purl.obolibrary.org/obo/UBERON_0003301;roof plate of diencephalon;diencephalon roof plate -http://purl.obolibrary.org/obo/UBERON_0003301;roof plate of diencephalon;diencephalon roofplate -http://purl.obolibrary.org/obo/UBERON_0003301;roof plate of diencephalon;interbrain roof plate -http://purl.obolibrary.org/obo/UBERON_0003301;roof plate of diencephalon;interbrain roofplate -http://purl.obolibrary.org/obo/UBERON_0003301;roof plate of diencephalon;mature diencephalon roof plate -http://purl.obolibrary.org/obo/UBERON_0003301;roof plate of diencephalon;mature diencephalon roofplate -http://purl.obolibrary.org/obo/UBERON_0003301;roof plate of diencephalon;roof plate diencephalic region -http://purl.obolibrary.org/obo/UBERON_0003301;roof plate of diencephalon;roof plate diencephalon -http://purl.obolibrary.org/obo/UBERON_0003301;roof plate of diencephalon;roof plate of between brain -http://purl.obolibrary.org/obo/UBERON_0003301;roof plate of diencephalon;roof plate of interbrain -http://purl.obolibrary.org/obo/UBERON_0003301;roof plate of diencephalon;roof plate of mature diencephalon -http://purl.obolibrary.org/obo/UBERON_0003301;roof plate of diencephalon;roofplate of between brain -http://purl.obolibrary.org/obo/UBERON_0003301;roof plate of diencephalon;roofplate of diencephalon -http://purl.obolibrary.org/obo/UBERON_0003301;roof plate of diencephalon;roofplate of interbrain -http://purl.obolibrary.org/obo/UBERON_0003301;roof plate of diencephalon;roofplate of mature diencephalon -http://purl.obolibrary.org/obo/UBERON_0003302;roof plate of metencephalon;epencephalon-2 roof plate -http://purl.obolibrary.org/obo/UBERON_0003302;roof plate of metencephalon;epencephalon-2 roofplate -http://purl.obolibrary.org/obo/UBERON_0003302;roof plate of metencephalon;metencephalon roof plate -http://purl.obolibrary.org/obo/UBERON_0003302;roof plate of metencephalon;metencephalon roofplate -http://purl.obolibrary.org/obo/UBERON_0003302;roof plate of metencephalon;roof plate metencephalon -http://purl.obolibrary.org/obo/UBERON_0003302;roof plate of metencephalon;roof plate of epencephalon-2 -http://purl.obolibrary.org/obo/UBERON_0003302;roof plate of metencephalon;roofplate of epencephalon-2 -http://purl.obolibrary.org/obo/UBERON_0003302;roof plate of metencephalon;roofplate of metencephalon -http://purl.obolibrary.org/obo/UBERON_0003303;roof plate of medulla oblongata;bulb roof plate -http://purl.obolibrary.org/obo/UBERON_0003303;roof plate of medulla oblongata;bulb roofplate -http://purl.obolibrary.org/obo/UBERON_0003303;roof plate of medulla oblongata;medulla oblongata roof plate -http://purl.obolibrary.org/obo/UBERON_0003303;roof plate of medulla oblongata;medulla oblongata roofplate -http://purl.obolibrary.org/obo/UBERON_0003303;roof plate of medulla oblongata;medulla oblonmgata roof plate -http://purl.obolibrary.org/obo/UBERON_0003303;roof plate of medulla oblongata;medulla oblonmgata roofplate -http://purl.obolibrary.org/obo/UBERON_0003303;roof plate of medulla oblongata;metepencephalon roof plate -http://purl.obolibrary.org/obo/UBERON_0003303;roof plate of medulla oblongata;metepencephalon roofplate -http://purl.obolibrary.org/obo/UBERON_0003303;roof plate of medulla oblongata;roof plate medulla oblongata -http://purl.obolibrary.org/obo/UBERON_0003303;roof plate of medulla oblongata;roof plate of bulb -http://purl.obolibrary.org/obo/UBERON_0003303;roof plate of medulla oblongata;roof plate of medulla oblonmgata -http://purl.obolibrary.org/obo/UBERON_0003303;roof plate of medulla oblongata;roof plate of metepencephalon -http://purl.obolibrary.org/obo/UBERON_0003303;roof plate of medulla oblongata;roofplate of bulb -http://purl.obolibrary.org/obo/UBERON_0003303;roof plate of medulla oblongata;roofplate of medulla oblongata -http://purl.obolibrary.org/obo/UBERON_0003303;roof plate of medulla oblongata;roofplate of medulla oblonmgata -http://purl.obolibrary.org/obo/UBERON_0003303;roof plate of medulla oblongata;roofplate of metepencephalon -http://purl.obolibrary.org/obo/UBERON_0003304;mesoderm blood island;mesoderm blood islands -http://purl.obolibrary.org/obo/UBERON_0003306;floor plate of neural tube;floor plate neural tube -http://purl.obolibrary.org/obo/UBERON_0003306;floor plate of neural tube;floorplate of neural tube -http://purl.obolibrary.org/obo/UBERON_0003306;floor plate of neural tube;neural tube floor plate -http://purl.obolibrary.org/obo/UBERON_0003306;floor plate of neural tube;neural tube floorplate -http://purl.obolibrary.org/obo/UBERON_0003307;floor plate of midbrain;floor plate midbrain -http://purl.obolibrary.org/obo/UBERON_0003307;floor plate of midbrain;floor plate midbrain region -http://purl.obolibrary.org/obo/UBERON_0003307;floor plate of midbrain;floorplate of midbrain -http://purl.obolibrary.org/obo/UBERON_0003307;floor plate of midbrain;midbrain floor plate -http://purl.obolibrary.org/obo/UBERON_0003307;floor plate of midbrain;midbrain floorplate -http://purl.obolibrary.org/obo/UBERON_0003308;floor plate of telencephalon;floor plate telencephalic region -http://purl.obolibrary.org/obo/UBERON_0003308;floor plate of telencephalon;floor plate telencephalon -http://purl.obolibrary.org/obo/UBERON_0003308;floor plate of telencephalon;floorplate of telencephalon -http://purl.obolibrary.org/obo/UBERON_0003308;floor plate of telencephalon;floorplate telencephalon -http://purl.obolibrary.org/obo/UBERON_0003308;floor plate of telencephalon;telencephalon floor plate -http://purl.obolibrary.org/obo/UBERON_0003308;floor plate of telencephalon;telencephalon floorplate -http://purl.obolibrary.org/obo/UBERON_0003309;floor plate of diencephalon;between brain floor plate -http://purl.obolibrary.org/obo/UBERON_0003309;floor plate of diencephalon;between brain floorplate -http://purl.obolibrary.org/obo/UBERON_0003309;floor plate of diencephalon;diencephalon floor plate -http://purl.obolibrary.org/obo/UBERON_0003309;floor plate of diencephalon;diencephalon floorplate -http://purl.obolibrary.org/obo/UBERON_0003309;floor plate of diencephalon;floor plate diencephalic region -http://purl.obolibrary.org/obo/UBERON_0003309;floor plate of diencephalon;floor plate diencephalon -http://purl.obolibrary.org/obo/UBERON_0003309;floor plate of diencephalon;floor plate of between brain -http://purl.obolibrary.org/obo/UBERON_0003309;floor plate of diencephalon;floor plate of interbrain -http://purl.obolibrary.org/obo/UBERON_0003309;floor plate of diencephalon;floor plate of mature diencephalon -http://purl.obolibrary.org/obo/UBERON_0003309;floor plate of diencephalon;floorplate diencephalon -http://purl.obolibrary.org/obo/UBERON_0003309;floor plate of diencephalon;floorplate of between brain -http://purl.obolibrary.org/obo/UBERON_0003309;floor plate of diencephalon;floorplate of diencephalon -http://purl.obolibrary.org/obo/UBERON_0003309;floor plate of diencephalon;floorplate of interbrain -http://purl.obolibrary.org/obo/UBERON_0003309;floor plate of diencephalon;floorplate of mature diencephalon -http://purl.obolibrary.org/obo/UBERON_0003309;floor plate of diencephalon;interbrain floor plate -http://purl.obolibrary.org/obo/UBERON_0003309;floor plate of diencephalon;interbrain floorplate -http://purl.obolibrary.org/obo/UBERON_0003309;floor plate of diencephalon;mature diencephalon floor plate -http://purl.obolibrary.org/obo/UBERON_0003309;floor plate of diencephalon;mature diencephalon floorplate -http://purl.obolibrary.org/obo/UBERON_0003310;floor plate of metencephalon;epencephalon-2 floor plate -http://purl.obolibrary.org/obo/UBERON_0003310;floor plate of metencephalon;epencephalon-2 floorplate -http://purl.obolibrary.org/obo/UBERON_0003310;floor plate of metencephalon;floor plate metencephalon -http://purl.obolibrary.org/obo/UBERON_0003310;floor plate of metencephalon;floor plate of epencephalon-2 -http://purl.obolibrary.org/obo/UBERON_0003310;floor plate of metencephalon;floorplate of epencephalon-2 -http://purl.obolibrary.org/obo/UBERON_0003310;floor plate of metencephalon;floorplate of metencephalon -http://purl.obolibrary.org/obo/UBERON_0003310;floor plate of metencephalon;metencephalon floor plate -http://purl.obolibrary.org/obo/UBERON_0003310;floor plate of metencephalon;metencephalon floorplate -http://purl.obolibrary.org/obo/UBERON_0003311;floor plate of medulla oblongata;bulb floor plate -http://purl.obolibrary.org/obo/UBERON_0003311;floor plate of medulla oblongata;bulb floorplate -http://purl.obolibrary.org/obo/UBERON_0003311;floor plate of medulla oblongata;floor plate medulla oblongata -http://purl.obolibrary.org/obo/UBERON_0003311;floor plate of medulla oblongata;floor plate of bulb -http://purl.obolibrary.org/obo/UBERON_0003311;floor plate of medulla oblongata;floor plate of medulla oblonmgata -http://purl.obolibrary.org/obo/UBERON_0003311;floor plate of medulla oblongata;floor plate of metepencephalon -http://purl.obolibrary.org/obo/UBERON_0003311;floor plate of medulla oblongata;floorplate of bulb -http://purl.obolibrary.org/obo/UBERON_0003311;floor plate of medulla oblongata;floorplate of medulla oblongata -http://purl.obolibrary.org/obo/UBERON_0003311;floor plate of medulla oblongata;floorplate of medulla oblonmgata -http://purl.obolibrary.org/obo/UBERON_0003311;floor plate of medulla oblongata;floorplate of metepencephalon -http://purl.obolibrary.org/obo/UBERON_0003311;floor plate of medulla oblongata;medulla oblongata floor plate -http://purl.obolibrary.org/obo/UBERON_0003311;floor plate of medulla oblongata;medulla oblongata floorplate -http://purl.obolibrary.org/obo/UBERON_0003311;floor plate of medulla oblongata;medulla oblonmgata floor plate -http://purl.obolibrary.org/obo/UBERON_0003311;floor plate of medulla oblongata;medulla oblonmgata floorplate -http://purl.obolibrary.org/obo/UBERON_0003311;floor plate of medulla oblongata;metepencephalon floor plate -http://purl.obolibrary.org/obo/UBERON_0003311;floor plate of medulla oblongata;metepencephalon floorplate -http://purl.obolibrary.org/obo/UBERON_0003312;mesenchyme of testis;testis mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003314;eye mesenchyme;mesenchyme of eye -http://purl.obolibrary.org/obo/UBERON_0003315;mesenchyme of ovary;female reproductive system gonad mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003315;mesenchyme of ovary;female reproductive system gonada mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003315;mesenchyme of ovary;gonad of female reproductive system mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003315;mesenchyme of ovary;gonada of female reproductive system mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003315;mesenchyme of ovary;mesenchyme of female reproductive system gonad -http://purl.obolibrary.org/obo/UBERON_0003315;mesenchyme of ovary;mesenchyme of female reproductive system gonada -http://purl.obolibrary.org/obo/UBERON_0003315;mesenchyme of ovary;mesenchyme of gonad of female reproductive system -http://purl.obolibrary.org/obo/UBERON_0003315;mesenchyme of ovary;mesenchyme of gonada of female reproductive system -http://purl.obolibrary.org/obo/UBERON_0003315;mesenchyme of ovary;ovary mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003316;mesenchyme of yolk sac;yolk sac mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003317;odontogenic papilla of incisor;incisor dental papilla -http://purl.obolibrary.org/obo/UBERON_0003317;odontogenic papilla of incisor;incisor odontogenic papilla -http://purl.obolibrary.org/obo/UBERON_0003317;odontogenic papilla of incisor;incisor tooth odontogenic papilla -http://purl.obolibrary.org/obo/UBERON_0003317;odontogenic papilla of incisor;odontogenic papilla of incisor tooth -http://purl.obolibrary.org/obo/UBERON_0003318;mesenchyme of elbow;cubital region mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003318;mesenchyme of elbow;elbow mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003318;mesenchyme of elbow;mesenchyme of cubital region -http://purl.obolibrary.org/obo/UBERON_0003319;mesenchyme of carpal region;carpal region mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003319;mesenchyme of carpal region;carpus mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003319;mesenchyme of carpal region;mesenchyme of wrist -http://purl.obolibrary.org/obo/UBERON_0003319;mesenchyme of carpal region;wrist mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003320;mesenchyme of hip;hip mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003320;mesenchyme of hip;hip region mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003320;mesenchyme of hip;mesenchyme of hip region -http://purl.obolibrary.org/obo/UBERON_0003320;mesenchyme of hip;mesenchyme of regio coxae -http://purl.obolibrary.org/obo/UBERON_0003320;mesenchyme of hip;regio coxae mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003321;mesenchyme of knee;knee mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003322;mesenchyme of shoulder;shoulder mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003323;mesenchyme of upper jaw;mesenchyme of palatoquadrate arch -http://purl.obolibrary.org/obo/UBERON_0003323;mesenchyme of upper jaw;palatoquadrate arch mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003323;mesenchyme of upper jaw;upper jaw mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003324;mesenchyme of lower jaw;lower jaw mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003324;mesenchyme of lower jaw;mesenchyme of ventral mandibular arch -http://purl.obolibrary.org/obo/UBERON_0003324;mesenchyme of lower jaw;ventral mandibular arch mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003325;mesenchyme of pinna;auricle mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003325;mesenchyme of pinna;auricle of ear mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003325;mesenchyme of pinna;auricle of external ear mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003325;mesenchyme of pinna;auricula (auris externa) mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003325;mesenchyme of pinna;auricula mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003325;mesenchyme of pinna;mesenchyme of auricle -http://purl.obolibrary.org/obo/UBERON_0003325;mesenchyme of pinna;mesenchyme of auricle of ear -http://purl.obolibrary.org/obo/UBERON_0003325;mesenchyme of pinna;mesenchyme of auricle of external ear -http://purl.obolibrary.org/obo/UBERON_0003325;mesenchyme of pinna;mesenchyme of auricula -http://purl.obolibrary.org/obo/UBERON_0003325;mesenchyme of pinna;mesenchyme of auricula (auris externa) -http://purl.obolibrary.org/obo/UBERON_0003325;mesenchyme of pinna;mesenchyme of pinna of ear -http://purl.obolibrary.org/obo/UBERON_0003325;mesenchyme of pinna;pinna mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003325;mesenchyme of pinna;pinna of ear mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003326;mesenchyme of mammary gland;lactiferous gland mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003326;mesenchyme of mammary gland;lobe of breast mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003326;mesenchyme of mammary gland;lobe of mammary gland mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003326;mesenchyme of mammary gland;mammary gland mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003326;mesenchyme of mammary gland;mammary mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003326;mesenchyme of mammary gland;mesenchyme of lactiferous gland -http://purl.obolibrary.org/obo/UBERON_0003326;mesenchyme of mammary gland;mesenchyme of lobe of breast -http://purl.obolibrary.org/obo/UBERON_0003326;mesenchyme of mammary gland;mesenchyme of lobe of mammary gland -http://purl.obolibrary.org/obo/UBERON_0003327;mesenchyme of forearm; -http://purl.obolibrary.org/obo/UBERON_0003328;mesenchyme of footplate;foot plate mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003329;submucosa of anal canal;anal canal submucosa -http://purl.obolibrary.org/obo/UBERON_0003329;submucosa of anal canal;anal canal viewed anatomically submucosa -http://purl.obolibrary.org/obo/UBERON_0003329;submucosa of anal canal;anal region submucosa -http://purl.obolibrary.org/obo/UBERON_0003329;submucosa of anal canal;anatomical anal canal submucosa -http://purl.obolibrary.org/obo/UBERON_0003329;submucosa of anal canal;submucosa of anal canal viewed anatomically -http://purl.obolibrary.org/obo/UBERON_0003329;submucosa of anal canal;submucosa of anal region -http://purl.obolibrary.org/obo/UBERON_0003329;submucosa of anal canal;submucosa of anatomical anal canal -http://purl.obolibrary.org/obo/UBERON_0003330;submucosa of rectum;rectal submucosa -http://purl.obolibrary.org/obo/UBERON_0003330;submucosa of rectum;rectum submucosa -http://purl.obolibrary.org/obo/UBERON_0003330;submucosa of rectum;tela submucosa recti -http://purl.obolibrary.org/obo/UBERON_0003331;submucosa of colon;colon submucosa -http://purl.obolibrary.org/obo/UBERON_0003331;submucosa of colon;colonic submucosa -http://purl.obolibrary.org/obo/UBERON_0003331;submucosa of colon;large bowel submucosa -http://purl.obolibrary.org/obo/UBERON_0003331;submucosa of colon;submucosa of large bowel -http://purl.obolibrary.org/obo/UBERON_0003332;submucosa of duodenum;doudenal submucosa -http://purl.obolibrary.org/obo/UBERON_0003332;submucosa of duodenum;duodenal submucosa -http://purl.obolibrary.org/obo/UBERON_0003332;submucosa of duodenum;duodenum submucosa -http://purl.obolibrary.org/obo/UBERON_0003333;submucosa of jejunum;jejunal submucosa -http://purl.obolibrary.org/obo/UBERON_0003333;submucosa of jejunum;jejunum submucosa -http://purl.obolibrary.org/obo/UBERON_0003334;serosa of rectum;rectal serosa -http://purl.obolibrary.org/obo/UBERON_0003334;serosa of rectum;rectum serosa -http://purl.obolibrary.org/obo/UBERON_0003334;serosa of rectum;rectum serous membrane -http://purl.obolibrary.org/obo/UBERON_0003334;serosa of rectum;serous membrane of rectum -http://purl.obolibrary.org/obo/UBERON_0003334;serosa of rectum;visceral peritoneum of rectum -http://purl.obolibrary.org/obo/UBERON_0003335;serosa of colon;colon serosa -http://purl.obolibrary.org/obo/UBERON_0003335;serosa of colon;colon serous membrane -http://purl.obolibrary.org/obo/UBERON_0003335;serosa of colon;colonic serosa -http://purl.obolibrary.org/obo/UBERON_0003335;serosa of colon;large bowel serosa -http://purl.obolibrary.org/obo/UBERON_0003335;serosa of colon;large bowel serous membrane -http://purl.obolibrary.org/obo/UBERON_0003335;serosa of colon;serosa of large bowel -http://purl.obolibrary.org/obo/UBERON_0003335;serosa of colon;serous membrane of colon -http://purl.obolibrary.org/obo/UBERON_0003335;serosa of colon;serous membrane of large bowel -http://purl.obolibrary.org/obo/UBERON_0003335;serosa of colon;visceral peritoneum of colon -http://purl.obolibrary.org/obo/UBERON_0003336;serosa of duodenum;doudenal serosa -http://purl.obolibrary.org/obo/UBERON_0003336;serosa of duodenum;duodenal serosa -http://purl.obolibrary.org/obo/UBERON_0003336;serosa of duodenum;duodenum serosa -http://purl.obolibrary.org/obo/UBERON_0003336;serosa of duodenum;duodenum serous membrane -http://purl.obolibrary.org/obo/UBERON_0003336;serosa of duodenum;serous membrane of duodenum -http://purl.obolibrary.org/obo/UBERON_0003336;serosa of duodenum;visceral peritoneum of duodenum -http://purl.obolibrary.org/obo/UBERON_0003337;serosa of jejunum;jejunal serosa -http://purl.obolibrary.org/obo/UBERON_0003337;serosa of jejunum;jejunum serosa -http://purl.obolibrary.org/obo/UBERON_0003337;serosa of jejunum;jejunum serous membrane -http://purl.obolibrary.org/obo/UBERON_0003337;serosa of jejunum;serous membrane of jejunum -http://purl.obolibrary.org/obo/UBERON_0003337;serosa of jejunum;visceral peritoneum of jejunum -http://purl.obolibrary.org/obo/UBERON_0003338;ganglion of peripheral nervous system;peripheral nervous system ganglion -http://purl.obolibrary.org/obo/UBERON_0003339;ganglion of central nervous system;central nervous system ganglion -http://purl.obolibrary.org/obo/UBERON_0003339;ganglion of central nervous system;ganglion of neuraxis -http://purl.obolibrary.org/obo/UBERON_0003339;ganglion of central nervous system;neuraxis ganglion -http://purl.obolibrary.org/obo/UBERON_0003342;mucosa of anal canal;anal canal mucosa -http://purl.obolibrary.org/obo/UBERON_0003342;mucosa of anal canal;anal canal mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0003342;mucosa of anal canal;anal canal mucous membrane -http://purl.obolibrary.org/obo/UBERON_0003342;mucosa of anal canal;anal canal organ mucosa -http://purl.obolibrary.org/obo/UBERON_0003342;mucosa of anal canal;anal canal viewed anatomically mucosa -http://purl.obolibrary.org/obo/UBERON_0003342;mucosa of anal canal;anal canal viewed anatomically mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0003342;mucosa of anal canal;anal canal viewed anatomically mucous membrane -http://purl.obolibrary.org/obo/UBERON_0003342;mucosa of anal canal;anal canal viewed anatomically organ mucosa -http://purl.obolibrary.org/obo/UBERON_0003342;mucosa of anal canal;anal mucosa -http://purl.obolibrary.org/obo/UBERON_0003342;mucosa of anal canal;anal mucous membrane -http://purl.obolibrary.org/obo/UBERON_0003342;mucosa of anal canal;anal region mucosa -http://purl.obolibrary.org/obo/UBERON_0003342;mucosa of anal canal;anal region mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0003342;mucosa of anal canal;anal region mucous membrane -http://purl.obolibrary.org/obo/UBERON_0003342;mucosa of anal canal;anal region organ mucosa -http://purl.obolibrary.org/obo/UBERON_0003342;mucosa of anal canal;anatomical anal canal mucosa -http://purl.obolibrary.org/obo/UBERON_0003342;mucosa of anal canal;anatomical anal canal mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0003342;mucosa of anal canal;anatomical anal canal mucous membrane -http://purl.obolibrary.org/obo/UBERON_0003342;mucosa of anal canal;anatomical anal canal organ mucosa -http://purl.obolibrary.org/obo/UBERON_0003342;mucosa of anal canal;mucosa of anal canal viewed anatomically -http://purl.obolibrary.org/obo/UBERON_0003342;mucosa of anal canal;mucosa of anal region -http://purl.obolibrary.org/obo/UBERON_0003342;mucosa of anal canal;mucosa of anatomical anal canal -http://purl.obolibrary.org/obo/UBERON_0003342;mucosa of anal canal;mucosa of organ of anal canal -http://purl.obolibrary.org/obo/UBERON_0003342;mucosa of anal canal;mucosa of organ of anal canal viewed anatomically -http://purl.obolibrary.org/obo/UBERON_0003342;mucosa of anal canal;mucosa of organ of anal region -http://purl.obolibrary.org/obo/UBERON_0003342;mucosa of anal canal;mucosa of organ of anatomical anal canal -http://purl.obolibrary.org/obo/UBERON_0003342;mucosa of anal canal;mucous membrane of anal canal -http://purl.obolibrary.org/obo/UBERON_0003342;mucosa of anal canal;mucous membrane of anal canal viewed anatomically -http://purl.obolibrary.org/obo/UBERON_0003342;mucosa of anal canal;mucous membrane of anal region -http://purl.obolibrary.org/obo/UBERON_0003342;mucosa of anal canal;mucous membrane of anatomical anal canal -http://purl.obolibrary.org/obo/UBERON_0003342;mucosa of anal canal;organ mucosa of anal canal -http://purl.obolibrary.org/obo/UBERON_0003342;mucosa of anal canal;organ mucosa of anal canal viewed anatomically -http://purl.obolibrary.org/obo/UBERON_0003342;mucosa of anal canal;organ mucosa of anal region -http://purl.obolibrary.org/obo/UBERON_0003342;mucosa of anal canal;organ mucosa of anatomical anal canal -http://purl.obolibrary.org/obo/UBERON_0003343;mucosa of oral region;mucosa of oral opening -http://purl.obolibrary.org/obo/UBERON_0003343;mucosa of oral region;mucosa of oral part of face -http://purl.obolibrary.org/obo/UBERON_0003343;mucosa of oral region;mucosa of organ of oral opening -http://purl.obolibrary.org/obo/UBERON_0003343;mucosa of oral region;mucosa of organ of oral part of face -http://purl.obolibrary.org/obo/UBERON_0003343;mucosa of oral region;mucosa of organ of oral region -http://purl.obolibrary.org/obo/UBERON_0003343;mucosa of oral region;mucosa of organ of subdivision of mouth -http://purl.obolibrary.org/obo/UBERON_0003343;mucosa of oral region;mucosa of subdivision of mouth -http://purl.obolibrary.org/obo/UBERON_0003343;mucosa of oral region;mucous membrane of oral opening -http://purl.obolibrary.org/obo/UBERON_0003343;mucosa of oral region;mucous membrane of oral part of face -http://purl.obolibrary.org/obo/UBERON_0003343;mucosa of oral region;mucous membrane of oral region -http://purl.obolibrary.org/obo/UBERON_0003343;mucosa of oral region;mucous membrane of subdivision of mouth -http://purl.obolibrary.org/obo/UBERON_0003343;mucosa of oral region;oral opening mucosa -http://purl.obolibrary.org/obo/UBERON_0003343;mucosa of oral region;oral opening mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0003343;mucosa of oral region;oral opening mucous membrane -http://purl.obolibrary.org/obo/UBERON_0003343;mucosa of oral region;oral opening organ mucosa -http://purl.obolibrary.org/obo/UBERON_0003343;mucosa of oral region;oral part of face mucosa -http://purl.obolibrary.org/obo/UBERON_0003343;mucosa of oral region;oral part of face mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0003343;mucosa of oral region;oral part of face mucous membrane -http://purl.obolibrary.org/obo/UBERON_0003343;mucosa of oral region;oral part of face organ mucosa -http://purl.obolibrary.org/obo/UBERON_0003343;mucosa of oral region;oral region mucosa -http://purl.obolibrary.org/obo/UBERON_0003343;mucosa of oral region;oral region mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0003343;mucosa of oral region;oral region mucous membrane -http://purl.obolibrary.org/obo/UBERON_0003343;mucosa of oral region;oral region organ mucosa -http://purl.obolibrary.org/obo/UBERON_0003343;mucosa of oral region;organ mucosa of oral opening -http://purl.obolibrary.org/obo/UBERON_0003343;mucosa of oral region;organ mucosa of oral part of face -http://purl.obolibrary.org/obo/UBERON_0003343;mucosa of oral region;organ mucosa of oral region -http://purl.obolibrary.org/obo/UBERON_0003343;mucosa of oral region;organ mucosa of subdivision of mouth -http://purl.obolibrary.org/obo/UBERON_0003343;mucosa of oral region;subdivision of mouth mucosa -http://purl.obolibrary.org/obo/UBERON_0003343;mucosa of oral region;subdivision of mouth mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0003343;mucosa of oral region;subdivision of mouth mucous membrane -http://purl.obolibrary.org/obo/UBERON_0003343;mucosa of oral region;subdivision of mouth organ mucosa -http://purl.obolibrary.org/obo/UBERON_0003346;mucosa of rectum;mucosa of organ of rectum -http://purl.obolibrary.org/obo/UBERON_0003346;mucosa of rectum;mucous membrane of rectum -http://purl.obolibrary.org/obo/UBERON_0003346;mucosa of rectum;organ mucosa of rectum -http://purl.obolibrary.org/obo/UBERON_0003346;mucosa of rectum;rectal mucosa -http://purl.obolibrary.org/obo/UBERON_0003346;mucosa of rectum;rectal mucous membrane -http://purl.obolibrary.org/obo/UBERON_0003346;mucosa of rectum;rectum mucosa -http://purl.obolibrary.org/obo/UBERON_0003346;mucosa of rectum;rectum mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0003346;mucosa of rectum;rectum mucous membrane -http://purl.obolibrary.org/obo/UBERON_0003346;mucosa of rectum;rectum organ mucosa -http://purl.obolibrary.org/obo/UBERON_0003350;epithelium of mucosa;lamina epithelialis mucosa -http://purl.obolibrary.org/obo/UBERON_0003350;epithelium of mucosa;lamina epithelialis mucosae -http://purl.obolibrary.org/obo/UBERON_0003351;pharyngeal epithelium;epithelial tissue of pharynx -http://purl.obolibrary.org/obo/UBERON_0003351;pharyngeal epithelium;epithelium of pharynx -http://purl.obolibrary.org/obo/UBERON_0003351;pharyngeal epithelium;pharynx epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003351;pharyngeal epithelium;pharynx epithelium -http://purl.obolibrary.org/obo/UBERON_0003352;epithelium of midgut;epithelial tissue of midgut -http://purl.obolibrary.org/obo/UBERON_0003352;epithelium of midgut;midgut epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003352;epithelium of midgut;midgut epithelium -http://purl.obolibrary.org/obo/UBERON_0003353;epithelium of hindgut;epithelial tissue of hindgut -http://purl.obolibrary.org/obo/UBERON_0003353;epithelium of hindgut;hindgut epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003353;epithelium of hindgut;hindgut epithelium -http://purl.obolibrary.org/obo/UBERON_0003354;epithelium of rectum;epithelial tissue of rectum -http://purl.obolibrary.org/obo/UBERON_0003354;epithelium of rectum;rectal epithelium -http://purl.obolibrary.org/obo/UBERON_0003354;epithelium of rectum;rectum epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003354;epithelium of rectum;rectum epithelium -http://purl.obolibrary.org/obo/UBERON_0003355;epithelium of incisor;epithelial tissue of incisor -http://purl.obolibrary.org/obo/UBERON_0003355;epithelium of incisor;epithelial tissue of incisor tooth -http://purl.obolibrary.org/obo/UBERON_0003355;epithelium of incisor;epithelium of incisor tooth -http://purl.obolibrary.org/obo/UBERON_0003355;epithelium of incisor;incisor epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003355;epithelium of incisor;incisor epithelium -http://purl.obolibrary.org/obo/UBERON_0003355;epithelium of incisor;incisor tooth epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003355;epithelium of incisor;incisor tooth epithelium -http://purl.obolibrary.org/obo/UBERON_0003356;epithelium of nasal septum;epithelial tissue of nasal septum -http://purl.obolibrary.org/obo/UBERON_0003356;epithelium of nasal septum;nasal septum epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003356;epithelium of nasal septum;nasal septum epithelium -http://purl.obolibrary.org/obo/UBERON_0003357;epithelium of tongue;epithelial tissue of tongue -http://purl.obolibrary.org/obo/UBERON_0003357;epithelium of tongue;tongue epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003357;epithelium of tongue;tongue epithelium -http://purl.obolibrary.org/obo/UBERON_0003358;epithelium of soft palate;epithelial tissue of soft palate -http://purl.obolibrary.org/obo/UBERON_0003358;epithelium of soft palate;soft palate epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003358;epithelium of soft palate;soft palate epithelium -http://purl.obolibrary.org/obo/UBERON_0003359;epithelium of submandibular gland;epithelial tissue of submandibular gland -http://purl.obolibrary.org/obo/UBERON_0003359;epithelium of submandibular gland;submandibular gland epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003359;epithelium of submandibular gland;submandibular gland epithelium -http://purl.obolibrary.org/obo/UBERON_0003360;epithelium of parotid gland;epithelial tissue of parotid gland -http://purl.obolibrary.org/obo/UBERON_0003360;epithelium of parotid gland;epithelium of parotid -http://purl.obolibrary.org/obo/UBERON_0003360;epithelium of parotid gland;epithelium of parotid gland -http://purl.obolibrary.org/obo/UBERON_0003360;epithelium of parotid gland;parotid epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003360;epithelium of parotid gland;parotid epithelium -http://purl.obolibrary.org/obo/UBERON_0003360;epithelium of parotid gland;parotid gland epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003360;epithelium of parotid gland;parotid gland epithelium -http://purl.obolibrary.org/obo/UBERON_0003361;epithelium of sublingual gland;Rivinus'gland epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003361;epithelium of sublingual gland;Rivinus'gland epithelium -http://purl.obolibrary.org/obo/UBERON_0003361;epithelium of sublingual gland;ductus sublingualis epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003361;epithelium of sublingual gland;ductus sublingualis epithelium -http://purl.obolibrary.org/obo/UBERON_0003361;epithelium of sublingual gland;epithelial tissue of Rivinus'gland -http://purl.obolibrary.org/obo/UBERON_0003361;epithelium of sublingual gland;epithelial tissue of ductus sublingualis -http://purl.obolibrary.org/obo/UBERON_0003361;epithelium of sublingual gland;epithelial tissue of sublingual gland -http://purl.obolibrary.org/obo/UBERON_0003361;epithelium of sublingual gland;epithelium of Rivinus'gland -http://purl.obolibrary.org/obo/UBERON_0003361;epithelium of sublingual gland;epithelium of ductus sublingualis -http://purl.obolibrary.org/obo/UBERON_0003361;epithelium of sublingual gland;sublingual gland epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003361;epithelium of sublingual gland;sublingual gland epithelium -http://purl.obolibrary.org/obo/UBERON_0003362;epithelium of endolymphatic duct;endolymphatic duct epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003362;epithelium of endolymphatic duct;endolymphatic duct epithelium -http://purl.obolibrary.org/obo/UBERON_0003362;epithelium of endolymphatic duct;epithelial tissue of endolymphatic duct -http://purl.obolibrary.org/obo/UBERON_0003363;epithelium of ductus reuniens;ductus reuniens epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003363;epithelium of ductus reuniens;ductus reuniens epithelium -http://purl.obolibrary.org/obo/UBERON_0003363;epithelium of ductus reuniens;epithelial tissue of ductus reuniens -http://purl.obolibrary.org/obo/UBERON_0003364;epithelium of right lung;epithelial tissue of right lung -http://purl.obolibrary.org/obo/UBERON_0003364;epithelium of right lung;right lung epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003364;epithelium of right lung;right lung epithelium -http://purl.obolibrary.org/obo/UBERON_0003365;epithelium of left lung;epithelial tissue of left lung -http://purl.obolibrary.org/obo/UBERON_0003365;epithelium of left lung;left lung epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003365;epithelium of left lung;left lung epithelium -http://purl.obolibrary.org/obo/UBERON_0003366;epithelium of uterine horn;epithelial tissue of uterine horn -http://purl.obolibrary.org/obo/UBERON_0003366;epithelium of uterine horn;uterine horn epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003366;epithelium of uterine horn;uterine horn epithelium -http://purl.obolibrary.org/obo/UBERON_0003367;epithelium of vomeronasal organ;Jacobson's organ epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003367;epithelium of vomeronasal organ;Jacobson's organ epithelium -http://purl.obolibrary.org/obo/UBERON_0003367;epithelium of vomeronasal organ;epithelial tissue of Jacobson's organ -http://purl.obolibrary.org/obo/UBERON_0003367;epithelium of vomeronasal organ;epithelial tissue of vomeronasal organ -http://purl.obolibrary.org/obo/UBERON_0003367;epithelium of vomeronasal organ;epithelium of Jacobson's organ -http://purl.obolibrary.org/obo/UBERON_0003367;epithelium of vomeronasal organ;vomeronasal epithelium -http://purl.obolibrary.org/obo/UBERON_0003367;epithelium of vomeronasal organ;vomeronasal organ epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003367;epithelium of vomeronasal organ;vomeronasal organ epithelium -http://purl.obolibrary.org/obo/UBERON_0003367;epithelium of vomeronasal organ;vomeronasal organ sensory epithelium -http://purl.obolibrary.org/obo/UBERON_0003368;epithelium of hard palate;epithelial tissue of hard palate -http://purl.obolibrary.org/obo/UBERON_0003368;epithelium of hard palate;hard palate epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003368;epithelium of hard palate;hard palate epithelium -http://purl.obolibrary.org/obo/UBERON_0003369;fossa ovalis of heart;fossa ovalis -http://purl.obolibrary.org/obo/UBERON_0003369;fossa ovalis of heart;oval fossa -http://purl.obolibrary.org/obo/UBERON_0003371;pelvic appendage bud ectoderm;hindlimb ectoderm -http://purl.obolibrary.org/obo/UBERON_0003372;pectoral appendage bud ectoderm; -http://purl.obolibrary.org/obo/UBERON_0003373;ectoderm of footplate; -http://purl.obolibrary.org/obo/UBERON_0003374;chorionic ectoderm;chorion ectoderm -http://purl.obolibrary.org/obo/UBERON_0003378;cardiac muscle of auricular region;atrium auricular region cardiac muscle -http://purl.obolibrary.org/obo/UBERON_0003378;cardiac muscle of auricular region;auricular region heart muscle -http://purl.obolibrary.org/obo/UBERON_0003378;cardiac muscle of auricular region;cardiac muscle tissue of auricle -http://purl.obolibrary.org/obo/UBERON_0003379;cardiac muscle of right atrium;cardiac muscle of cardiac right atrium -http://purl.obolibrary.org/obo/UBERON_0003379;cardiac muscle of right atrium;cardiac muscle of heart right atrium -http://purl.obolibrary.org/obo/UBERON_0003379;cardiac muscle of right atrium;cardiac muscle tissue of heart right atrium -http://purl.obolibrary.org/obo/UBERON_0003379;cardiac muscle of right atrium;cardiac muscle tissue of right atrium -http://purl.obolibrary.org/obo/UBERON_0003379;cardiac muscle of right atrium;cardiac muscle tissue of right atrium of heart -http://purl.obolibrary.org/obo/UBERON_0003379;cardiac muscle of right atrium;myocardium of right atrium -http://purl.obolibrary.org/obo/UBERON_0003379;cardiac muscle of right atrium;right atrium heart muscle -http://purl.obolibrary.org/obo/UBERON_0003379;cardiac muscle of right atrium;right atrium myocardium -http://purl.obolibrary.org/obo/UBERON_0003379;cardiac muscle of right atrium;textus muscularis of myocardium of right atrium -http://purl.obolibrary.org/obo/UBERON_0003379;cardiac muscle of right atrium;textus muscularis of myocardium of right atrium of heart -http://purl.obolibrary.org/obo/UBERON_0003379;cardiac muscle of right atrium;textus muscularis of myocardium of right cardiac atrium -http://purl.obolibrary.org/obo/UBERON_0003380;cardiac muscle of left atrium;cardiac left atrium cardiac muscle -http://purl.obolibrary.org/obo/UBERON_0003380;cardiac muscle of left atrium;cardiac left atrium cardiac muscle tissue -http://purl.obolibrary.org/obo/UBERON_0003380;cardiac muscle of left atrium;cardiac muscle of cardiac left atrium -http://purl.obolibrary.org/obo/UBERON_0003380;cardiac muscle of left atrium;cardiac muscle of heart left atrium -http://purl.obolibrary.org/obo/UBERON_0003380;cardiac muscle of left atrium;cardiac muscle of left atrium of heart -http://purl.obolibrary.org/obo/UBERON_0003380;cardiac muscle of left atrium;left atrium heart muscle -http://purl.obolibrary.org/obo/UBERON_0003380;cardiac muscle of left atrium;left atrium myocardium -http://purl.obolibrary.org/obo/UBERON_0003380;cardiac muscle of left atrium;myocardium of left atrium -http://purl.obolibrary.org/obo/UBERON_0003380;cardiac muscle of left atrium;textus muscularis of myocardium of cardiac left atrium -http://purl.obolibrary.org/obo/UBERON_0003380;cardiac muscle of left atrium;textus muscularis of myocardium of heart left atrium -http://purl.obolibrary.org/obo/UBERON_0003380;cardiac muscle of left atrium;textus muscularis of myocardium of left atrium -http://purl.obolibrary.org/obo/UBERON_0003380;cardiac muscle of left atrium;textus muscularis of myocardium of left atrium of heart -http://purl.obolibrary.org/obo/UBERON_0003380;cardiac muscle of left atrium;textus muscularis of myocardium of left cardiac atrium -http://purl.obolibrary.org/obo/UBERON_0003381;cardiac muscle of right ventricle;cardiac muscle tissue of right ventricle -http://purl.obolibrary.org/obo/UBERON_0003381;cardiac muscle of right ventricle;right ventricular cardiac muscle tissue -http://purl.obolibrary.org/obo/UBERON_0003382;cardiac muscle of left ventricle;cardiac muscle tissue of left ventricle -http://purl.obolibrary.org/obo/UBERON_0003382;cardiac muscle of left ventricle;left ventricular cardiac muscle tissue -http://purl.obolibrary.org/obo/UBERON_0003383;cardiac muscle tissue of interventricular septum;cardiac muscle of interventricular septum -http://purl.obolibrary.org/obo/UBERON_0003383;cardiac muscle tissue of interventricular septum;cardiac muscle tissue of interventricular septum -http://purl.obolibrary.org/obo/UBERON_0003383;cardiac muscle tissue of interventricular septum;interventricular septum cardiac muscle -http://purl.obolibrary.org/obo/UBERON_0003383;cardiac muscle tissue of interventricular septum;interventricular septum heart muscle -http://purl.obolibrary.org/obo/UBERON_0003383;cardiac muscle tissue of interventricular septum;interventricular septum myocardium -http://purl.obolibrary.org/obo/UBERON_0003384;skeletal muscle tissue of pharynx;pharynx skeletal muscle -http://purl.obolibrary.org/obo/UBERON_0003384;skeletal muscle tissue of pharynx;pharynx skeletal muscle tissue -http://purl.obolibrary.org/obo/UBERON_0003384;skeletal muscle tissue of pharynx;skeletal muscle tissue of pharynx -http://purl.obolibrary.org/obo/UBERON_0003386;smooth muscle of eye;ocular smooth muscle -http://purl.obolibrary.org/obo/UBERON_0003387;smooth muscle of trachea;trachea smooth muscle -http://purl.obolibrary.org/obo/UBERON_0003387;smooth muscle of trachea;tracheal smooth muscle -http://purl.obolibrary.org/obo/UBERON_0003388;mesothelium of pericardial cavity;cavity of pericardial sac meso-epithelium -http://purl.obolibrary.org/obo/UBERON_0003388;mesothelium of pericardial cavity;cavity of pericardial sac mesothelium -http://purl.obolibrary.org/obo/UBERON_0003388;mesothelium of pericardial cavity;meso-epithelium of cavity of pericardial sac -http://purl.obolibrary.org/obo/UBERON_0003388;mesothelium of pericardial cavity;meso-epithelium of pericardial cavity -http://purl.obolibrary.org/obo/UBERON_0003388;mesothelium of pericardial cavity;mesothelium of cavity of pericardial sac -http://purl.obolibrary.org/obo/UBERON_0003388;mesothelium of pericardial cavity;pericardial cavity meso-epithelium -http://purl.obolibrary.org/obo/UBERON_0003388;mesothelium of pericardial cavity;pericardial cavity mesothelium -http://purl.obolibrary.org/obo/UBERON_0003389;mesothelium of diaphragm;diaphragm meso-epithelium -http://purl.obolibrary.org/obo/UBERON_0003389;mesothelium of diaphragm;diaphragm mesothelium -http://purl.obolibrary.org/obo/UBERON_0003389;mesothelium of diaphragm;meso-epithelium of diaphragm -http://purl.obolibrary.org/obo/UBERON_0003389;mesothelium of diaphragm;meso-epithelium of thoracic diaphragm -http://purl.obolibrary.org/obo/UBERON_0003389;mesothelium of diaphragm;mesothelium of thoracic diaphragm -http://purl.obolibrary.org/obo/UBERON_0003389;mesothelium of diaphragm;thoracic diaphragm meso-epithelium -http://purl.obolibrary.org/obo/UBERON_0003389;mesothelium of diaphragm;thoracic diaphragm mesothelium -http://purl.obolibrary.org/obo/UBERON_0003390;mesothelium of pleural cavity;meso-epithelium of pleural cavity -http://purl.obolibrary.org/obo/UBERON_0003390;mesothelium of pleural cavity;mesothelium of pleura -http://purl.obolibrary.org/obo/UBERON_0003390;mesothelium of pleural cavity;pleural cavity meso-epithelium -http://purl.obolibrary.org/obo/UBERON_0003390;mesothelium of pleural cavity;pleural cavity mesothelium -http://purl.obolibrary.org/obo/UBERON_0003390;mesothelium of pleural cavity;pleural mesothelium -http://purl.obolibrary.org/obo/UBERON_0003393;mesentery of urinary system;excretory system mesentery -http://purl.obolibrary.org/obo/UBERON_0003393;mesentery of urinary system;mesentery of excretory system -http://purl.obolibrary.org/obo/UBERON_0003393;mesentery of urinary system;mesentery of renal system -http://purl.obolibrary.org/obo/UBERON_0003393;mesentery of urinary system;mesentery of systema urinaria -http://purl.obolibrary.org/obo/UBERON_0003393;mesentery of urinary system;renal system mesentery -http://purl.obolibrary.org/obo/UBERON_0003393;mesentery of urinary system;systema urinaria mesentery -http://purl.obolibrary.org/obo/UBERON_0003393;mesentery of urinary system;urinary system mesentery -http://purl.obolibrary.org/obo/UBERON_0003394;mesentery of hindgut;hindgut mesentery -http://purl.obolibrary.org/obo/UBERON_0003395;mesentery of rectum;rectum mesentery -http://purl.obolibrary.org/obo/UBERON_0003396;mesentery of colon;colon mesentery -http://purl.obolibrary.org/obo/UBERON_0003396;mesentery of colon;large bowel mesentery -http://purl.obolibrary.org/obo/UBERON_0003396;mesentery of colon;large intestinal mesentery -http://purl.obolibrary.org/obo/UBERON_0003396;mesentery of colon;mesentery of large bowel -http://purl.obolibrary.org/obo/UBERON_0003396;mesentery of colon;mesentery of large intestine -http://purl.obolibrary.org/obo/UBERON_0003396;mesentery of colon;mesocolon -http://purl.obolibrary.org/obo/UBERON_0003397;mesentery of duodenum;duodenum mesentery -http://purl.obolibrary.org/obo/UBERON_0003398;mesentery of jejunum;jejunal mesentery -http://purl.obolibrary.org/obo/UBERON_0003398;mesentery of jejunum;jejunum mesentery -http://purl.obolibrary.org/obo/UBERON_0003398;mesentery of jejunum;mesojejunum -http://purl.obolibrary.org/obo/UBERON_0003403;skin of forearm;forearm skin -http://purl.obolibrary.org/obo/UBERON_0003403;skin of forearm;lower arm skin -http://purl.obolibrary.org/obo/UBERON_0003403;skin of forearm;lower segment of arm skin -http://purl.obolibrary.org/obo/UBERON_0003403;skin of forearm;skin of antebrachial region -http://purl.obolibrary.org/obo/UBERON_0003403;skin of forearm;skin of lower arm -http://purl.obolibrary.org/obo/UBERON_0003403;skin of forearm;skin of lower segment of arm -http://purl.obolibrary.org/obo/UBERON_0003403;skin of forearm;skin of zeugopod of arm -http://purl.obolibrary.org/obo/UBERON_0003404;lobar bronchus of right lung;right lobar bronchus -http://purl.obolibrary.org/obo/UBERON_0003404;lobar bronchus of right lung;right lung lobar bronchus -http://purl.obolibrary.org/obo/UBERON_0003404;lobar bronchus of right lung;right lung secondary bronchus -http://purl.obolibrary.org/obo/UBERON_0003404;lobar bronchus of right lung;secondary bronchus of right lung -http://purl.obolibrary.org/obo/UBERON_0003405;lobar bronchus of left lung;left lobar bronchus -http://purl.obolibrary.org/obo/UBERON_0003405;lobar bronchus of left lung;left lung lobar bronchus -http://purl.obolibrary.org/obo/UBERON_0003405;lobar bronchus of left lung;left lung secondary bronchus -http://purl.obolibrary.org/obo/UBERON_0003405;lobar bronchus of left lung;secondary bronchus of left lung -http://purl.obolibrary.org/obo/UBERON_0003406;cartilage of respiratory system;apparatus respiratorius cartilage -http://purl.obolibrary.org/obo/UBERON_0003406;cartilage of respiratory system;cartilage of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0003406;cartilage of respiratory system;respiratory system cartilage -http://purl.obolibrary.org/obo/UBERON_0003407;cartilage of nasal septum;cartilago septal nasi -http://purl.obolibrary.org/obo/UBERON_0003407;cartilage of nasal septum;nasal septum cartilage -http://purl.obolibrary.org/obo/UBERON_0003407;cartilage of nasal septum;septal nasal cartilage -http://purl.obolibrary.org/obo/UBERON_0003408;gland of digestive tract;digestive tract gland -http://purl.obolibrary.org/obo/UBERON_0003408;gland of digestive tract;gland of digestive tract -http://purl.obolibrary.org/obo/UBERON_0003408;gland of digestive tract;gland of lower gastrointestinal tract -http://purl.obolibrary.org/obo/UBERON_0003408;gland of digestive tract;gut gland -http://purl.obolibrary.org/obo/UBERON_0003408;gland of digestive tract;lower gastrointestinal tract gland -http://purl.obolibrary.org/obo/UBERON_0003409;gland of tongue;lingual gland -http://purl.obolibrary.org/obo/UBERON_0003409;gland of tongue;tongue gland -http://purl.obolibrary.org/obo/UBERON_0003410;oropharyngeal gland;gland of oral part of pharynx -http://purl.obolibrary.org/obo/UBERON_0003410;oropharyngeal gland;gland of oropharynx -http://purl.obolibrary.org/obo/UBERON_0003410;oropharyngeal gland;oral part of pharynx gland -http://purl.obolibrary.org/obo/UBERON_0003410;oropharyngeal gland;oropharynx gland -http://purl.obolibrary.org/obo/UBERON_0003412;pelvic appendage bud mesenchyme;leg mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003412;pelvic appendage bud mesenchyme;lower limb bud mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003413;pectoral appendage bud mesenchyme; -http://purl.obolibrary.org/obo/UBERON_0003414;mesenchyme of mandible;bone of lower jaw mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003414;mesenchyme of mandible;bone of ventral mandibular arch mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003414;mesenchyme of mandible;bone organ of lower jaw mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003414;mesenchyme of mandible;bone organ of ventral mandibular arch mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003414;mesenchyme of mandible;lower jaw bone mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003414;mesenchyme of mandible;lower jaw bone organ mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003414;mesenchyme of mandible;mandible mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003414;mesenchyme of mandible;mandibulla mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003414;mesenchyme of mandible;mesenchyme of bone of lower jaw -http://purl.obolibrary.org/obo/UBERON_0003414;mesenchyme of mandible;mesenchyme of bone of ventral mandibular arch -http://purl.obolibrary.org/obo/UBERON_0003414;mesenchyme of mandible;mesenchyme of bone organ of lower jaw -http://purl.obolibrary.org/obo/UBERON_0003414;mesenchyme of mandible;mesenchyme of bone organ of ventral mandibular arch -http://purl.obolibrary.org/obo/UBERON_0003414;mesenchyme of mandible;mesenchyme of lower jaw bone -http://purl.obolibrary.org/obo/UBERON_0003414;mesenchyme of mandible;mesenchyme of lower jaw bone organ -http://purl.obolibrary.org/obo/UBERON_0003414;mesenchyme of mandible;mesenchyme of mandibulla -http://purl.obolibrary.org/obo/UBERON_0003414;mesenchyme of mandible;mesenchyme of ventral mandibular arch bone -http://purl.obolibrary.org/obo/UBERON_0003414;mesenchyme of mandible;mesenchyme of ventral mandibular arch bone organ -http://purl.obolibrary.org/obo/UBERON_0003414;mesenchyme of mandible;ventral mandibular arch bone mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003414;mesenchyme of mandible;ventral mandibular arch bone organ mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003415;mesenchyme of nasal septum;nasal septum mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003416;mesenchyme of tongue;tongue mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003417;mesenchyme of soft palate;soft palate mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003418;mesenchyme of submandibular gland;submandibular gland mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003419;mesenchyme of parotid;mesenchyme of parotid gland -http://purl.obolibrary.org/obo/UBERON_0003419;mesenchyme of parotid;parotid gland mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003419;mesenchyme of parotid;parotid mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003420;mesenchyme of sublingual gland;Rivinus'gland mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003420;mesenchyme of sublingual gland;ductus sublingualis mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003420;mesenchyme of sublingual gland;mesenchyme of Rivinus'gland -http://purl.obolibrary.org/obo/UBERON_0003420;mesenchyme of sublingual gland;mesenchyme of ductus sublingualis -http://purl.obolibrary.org/obo/UBERON_0003420;mesenchyme of sublingual gland;sublingual gland mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003421;mesenchyme of vomeronasal organ;Jacobson's organ mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003421;mesenchyme of vomeronasal organ;mesenchyme of Jacobson's organ -http://purl.obolibrary.org/obo/UBERON_0003421;mesenchyme of vomeronasal organ;vomeronasal mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003421;mesenchyme of vomeronasal organ;vomeronasal organ mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003422;mesenchyme of umbilical cord;Wharton's jelly -http://purl.obolibrary.org/obo/UBERON_0003422;mesenchyme of umbilical cord;umbilical cord mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003424;mesenchyme of hard palate;hard palate mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003425;renal lymph node;kidney lymph node -http://purl.obolibrary.org/obo/UBERON_0003425;renal lymph node;lymph node of kidney -http://purl.obolibrary.org/obo/UBERON_0003426;dermis adipose tissue;adipose tissue of dermis -http://purl.obolibrary.org/obo/UBERON_0003426;dermis adipose tissue;dermis fat tissue -http://purl.obolibrary.org/obo/UBERON_0003426;dermis adipose tissue;dermis fatty tissue -http://purl.obolibrary.org/obo/UBERON_0003426;dermis adipose tissue;fat tissue of dermis -http://purl.obolibrary.org/obo/UBERON_0003426;dermis adipose tissue;fatty tissue of dermis -http://purl.obolibrary.org/obo/UBERON_0003427;abdominal fat pad;abdomen fat pad -http://purl.obolibrary.org/obo/UBERON_0003427;abdominal fat pad;abdominal fat depot -http://purl.obolibrary.org/obo/UBERON_0003427;abdominal fat pad;fat pad of abdomen -http://purl.obolibrary.org/obo/UBERON_0003428;gonadal fat pad;fat pad of gonad -http://purl.obolibrary.org/obo/UBERON_0003428;gonadal fat pad;fat pad of gonads -http://purl.obolibrary.org/obo/UBERON_0003428;gonadal fat pad;gonad fat pad -http://purl.obolibrary.org/obo/UBERON_0003428;gonadal fat pad;gonad-associated fat pad -http://purl.obolibrary.org/obo/UBERON_0003428;gonadal fat pad;gonadal fat depot -http://purl.obolibrary.org/obo/UBERON_0003428;gonadal fat pad;gonadal fat pad -http://purl.obolibrary.org/obo/UBERON_0003429;abdomen nerve;nerve of abdomen -http://purl.obolibrary.org/obo/UBERON_0003430;neck nerve;neck (volume) nerve -http://purl.obolibrary.org/obo/UBERON_0003430;neck nerve;nerve of neck -http://purl.obolibrary.org/obo/UBERON_0003430;neck nerve;nerve of neck (volume) -http://purl.obolibrary.org/obo/UBERON_0003431;leg nerve;nerve of leg -http://purl.obolibrary.org/obo/UBERON_0003432;chest nerve;anterior thoracic region nerve -http://purl.obolibrary.org/obo/UBERON_0003432;chest nerve;anterolateral part of thorax nerve -http://purl.obolibrary.org/obo/UBERON_0003432;chest nerve;front of thorax nerve -http://purl.obolibrary.org/obo/UBERON_0003432;chest nerve;nerve of anterior thoracic region -http://purl.obolibrary.org/obo/UBERON_0003432;chest nerve;nerve of anterolateral part of thorax -http://purl.obolibrary.org/obo/UBERON_0003432;chest nerve;nerve of chest -http://purl.obolibrary.org/obo/UBERON_0003432;chest nerve;nerve of front of thorax -http://purl.obolibrary.org/obo/UBERON_0003433;arm nerve;brachial region nerve -http://purl.obolibrary.org/obo/UBERON_0003433;arm nerve;nerve of arm -http://purl.obolibrary.org/obo/UBERON_0003433;arm nerve;nerve of brachial region -http://purl.obolibrary.org/obo/UBERON_0003434;wrist nerve;carpal region nerve -http://purl.obolibrary.org/obo/UBERON_0003434;wrist nerve;nerve of carpal region -http://purl.obolibrary.org/obo/UBERON_0003434;wrist nerve;nerve of wrist -http://purl.obolibrary.org/obo/UBERON_0003435;pedal digit nerve;digit of foot nerve -http://purl.obolibrary.org/obo/UBERON_0003435;pedal digit nerve;digit of terminal segment of free lower limb nerve -http://purl.obolibrary.org/obo/UBERON_0003435;pedal digit nerve;digitus pedis nerve -http://purl.obolibrary.org/obo/UBERON_0003435;pedal digit nerve;foot digit nerve -http://purl.obolibrary.org/obo/UBERON_0003435;pedal digit nerve;hind limb digit nerve -http://purl.obolibrary.org/obo/UBERON_0003435;pedal digit nerve;nerve of digit of foot -http://purl.obolibrary.org/obo/UBERON_0003435;pedal digit nerve;nerve of digit of terminal segment of free lower limb -http://purl.obolibrary.org/obo/UBERON_0003435;pedal digit nerve;nerve of digitus pedis -http://purl.obolibrary.org/obo/UBERON_0003435;pedal digit nerve;nerve of foot digit -http://purl.obolibrary.org/obo/UBERON_0003435;pedal digit nerve;nerve of terminal segment of free lower limb digit -http://purl.obolibrary.org/obo/UBERON_0003435;pedal digit nerve;nerve of toe -http://purl.obolibrary.org/obo/UBERON_0003435;pedal digit nerve;terminal segment of free lower limb digit nerve -http://purl.obolibrary.org/obo/UBERON_0003435;pedal digit nerve;toe nerve -http://purl.obolibrary.org/obo/UBERON_0003436;shoulder nerve;nerve of shoulder -http://purl.obolibrary.org/obo/UBERON_0003437;eyelid nerve;blepharon nerve -http://purl.obolibrary.org/obo/UBERON_0003437;eyelid nerve;nerve of blepharon -http://purl.obolibrary.org/obo/UBERON_0003437;eyelid nerve;nerve of eyelid -http://purl.obolibrary.org/obo/UBERON_0003437;eyelid nerve;palpebral nerve -http://purl.obolibrary.org/obo/UBERON_0003438;iris nerve;ciliary nerve -http://purl.obolibrary.org/obo/UBERON_0003438;iris nerve;nerve of iris -http://purl.obolibrary.org/obo/UBERON_0003439;nerve of trunk region;nerve of torso -http://purl.obolibrary.org/obo/UBERON_0003439;nerve of trunk region;nerve of trunk -http://purl.obolibrary.org/obo/UBERON_0003439;nerve of trunk region;torso nerve -http://purl.obolibrary.org/obo/UBERON_0003439;nerve of trunk region;trunk nerve -http://purl.obolibrary.org/obo/UBERON_0003440;limb nerve;nerve of limb -http://purl.obolibrary.org/obo/UBERON_0003441;forelimb nerve;fore limb nerve -http://purl.obolibrary.org/obo/UBERON_0003441;forelimb nerve;nerve of fore limb -http://purl.obolibrary.org/obo/UBERON_0003441;forelimb nerve;nerve of forelimb -http://purl.obolibrary.org/obo/UBERON_0003441;forelimb nerve;nerve of superior member -http://purl.obolibrary.org/obo/UBERON_0003441;forelimb nerve;nerve of upper extremity -http://purl.obolibrary.org/obo/UBERON_0003442;hindlimb nerve;hind limb nerve -http://purl.obolibrary.org/obo/UBERON_0003442;hindlimb nerve;nerve of hind limb -http://purl.obolibrary.org/obo/UBERON_0003442;hindlimb nerve;nerve of hindlimb -http://purl.obolibrary.org/obo/UBERON_0003442;hindlimb nerve;nerve of inferior member -http://purl.obolibrary.org/obo/UBERON_0003442;hindlimb nerve;nerve of lower extremity -http://purl.obolibrary.org/obo/UBERON_0003443;thoracic cavity nerve;cavity of chest nerve -http://purl.obolibrary.org/obo/UBERON_0003443;thoracic cavity nerve;cavity of thorax nerve -http://purl.obolibrary.org/obo/UBERON_0003443;thoracic cavity nerve;chest cavity nerve -http://purl.obolibrary.org/obo/UBERON_0003443;thoracic cavity nerve;nerve of cavity of chest -http://purl.obolibrary.org/obo/UBERON_0003443;thoracic cavity nerve;nerve of cavity of thorax -http://purl.obolibrary.org/obo/UBERON_0003443;thoracic cavity nerve;nerve of chest cavity -http://purl.obolibrary.org/obo/UBERON_0003443;thoracic cavity nerve;nerve of pectoral cavity -http://purl.obolibrary.org/obo/UBERON_0003443;thoracic cavity nerve;nerve of thoracic cavity -http://purl.obolibrary.org/obo/UBERON_0003443;thoracic cavity nerve;pectoral cavity nerve -http://purl.obolibrary.org/obo/UBERON_0003444;pelvis nerve;nerve of pelvis -http://purl.obolibrary.org/obo/UBERON_0003445;pes nerve;foot nerve -http://purl.obolibrary.org/obo/UBERON_0003445;pes nerve;nerve of foot -http://purl.obolibrary.org/obo/UBERON_0003446;ankle nerve;nerve of ankle -http://purl.obolibrary.org/obo/UBERON_0003446;ankle nerve;tarsal region nerve -http://purl.obolibrary.org/obo/UBERON_0003447;digit nerve of manus;digit of hand nerve -http://purl.obolibrary.org/obo/UBERON_0003447;digit nerve of manus;digit of terminal segment of free upper limb nerve -http://purl.obolibrary.org/obo/UBERON_0003447;digit nerve of manus;digitus manus nerve -http://purl.obolibrary.org/obo/UBERON_0003447;digit nerve of manus;finger nerve -http://purl.obolibrary.org/obo/UBERON_0003447;digit nerve of manus;hand digit nerve -http://purl.obolibrary.org/obo/UBERON_0003447;digit nerve of manus;nerve of digit of hand -http://purl.obolibrary.org/obo/UBERON_0003447;digit nerve of manus;nerve of digit of terminal segment of free upper limb -http://purl.obolibrary.org/obo/UBERON_0003447;digit nerve of manus;nerve of digitus manus -http://purl.obolibrary.org/obo/UBERON_0003447;digit nerve of manus;nerve of finger -http://purl.obolibrary.org/obo/UBERON_0003447;digit nerve of manus;nerve of hand digit -http://purl.obolibrary.org/obo/UBERON_0003447;digit nerve of manus;nerve of terminal segment of free upper limb digit -http://purl.obolibrary.org/obo/UBERON_0003447;digit nerve of manus;terminal segment of free upper limb digit nerve -http://purl.obolibrary.org/obo/UBERON_0003448;manus nerve;hand nerve -http://purl.obolibrary.org/obo/UBERON_0003448;manus nerve;nerve of hand -http://purl.obolibrary.org/obo/UBERON_0003448;manus nerve;nerve of manus -http://purl.obolibrary.org/obo/UBERON_0003449;tail intervertebral disc;intervertebral disc of post-ventral region -http://purl.obolibrary.org/obo/UBERON_0003449;tail intervertebral disc;intervertebral disc of tail -http://purl.obolibrary.org/obo/UBERON_0003449;tail intervertebral disc;intervertebral disk of post-ventral region -http://purl.obolibrary.org/obo/UBERON_0003449;tail intervertebral disc;intervertebral disk of tail -http://purl.obolibrary.org/obo/UBERON_0003449;tail intervertebral disc;tail intervertebral disk -http://purl.obolibrary.org/obo/UBERON_0003449;tail intervertebral disc;tail spinal disc -http://purl.obolibrary.org/obo/UBERON_0003450;upper jaw incisor;incisor of palatoquadrate arch -http://purl.obolibrary.org/obo/UBERON_0003450;upper jaw incisor;incisor of upper jaw -http://purl.obolibrary.org/obo/UBERON_0003450;upper jaw incisor;incisor tooth of palatoquadrate arch -http://purl.obolibrary.org/obo/UBERON_0003450;upper jaw incisor;incisor tooth of upper jaw -http://purl.obolibrary.org/obo/UBERON_0003450;upper jaw incisor;palatoquadrate arch incisor -http://purl.obolibrary.org/obo/UBERON_0003450;upper jaw incisor;palatoquadrate arch incisor tooth -http://purl.obolibrary.org/obo/UBERON_0003450;upper jaw incisor;upper incisor -http://purl.obolibrary.org/obo/UBERON_0003450;upper jaw incisor;upper jaw incisor tooth -http://purl.obolibrary.org/obo/UBERON_0003451;lower jaw incisor;incisor of lower jaw -http://purl.obolibrary.org/obo/UBERON_0003451;lower jaw incisor;incisor of ventral mandibular arch -http://purl.obolibrary.org/obo/UBERON_0003451;lower jaw incisor;incisor tooth of lower jaw -http://purl.obolibrary.org/obo/UBERON_0003451;lower jaw incisor;incisor tooth of ventral mandibular arch -http://purl.obolibrary.org/obo/UBERON_0003451;lower jaw incisor;lower incisor -http://purl.obolibrary.org/obo/UBERON_0003451;lower jaw incisor;lower jaw incisor tooth -http://purl.obolibrary.org/obo/UBERON_0003451;lower jaw incisor;mandibular incisor -http://purl.obolibrary.org/obo/UBERON_0003451;lower jaw incisor;ventral mandibular arch incisor -http://purl.obolibrary.org/obo/UBERON_0003451;lower jaw incisor;ventral mandibular arch incisor tooth -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;cardiac muscle muscle tissue of trabecula carnea -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;cardiac muscle of trabecula carnea -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;cardiac muscle textus muscularis of trabecula carnea -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;cardiac muscle tissue of trabecula carnea -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;heart muscle muscle tissue of trabecula carnea -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;heart muscle textus muscularis of trabecula carnea -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;heart myocardium muscle tissue of trabecula carnea -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;heart myocardium textus muscularis of trabecula carnea -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;muscle of heart muscle tissue of trabecula carnea -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;muscle of heart textus muscularis of trabecula carnea -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;muscle tissue of cardiac muscle of trabecula carnea -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;muscle tissue of heart muscle of trabecula carnea -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;muscle tissue of heart myocardium of trabecula carnea -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;muscle tissue of muscle of heart of trabecula carnea -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;muscle tissue of myocardium of trabecula carnea -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;myocardium muscle tissue of trabecula carnea -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;myocardium textus muscularis of trabecula carnea -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;textus muscularis of cardiac muscle of trabecula carnea -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;textus muscularis of heart muscle of trabecula carnea -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;textus muscularis of heart myocardium of trabecula carnea -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;textus muscularis of muscle of heart of trabecula carnea -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;textus muscularis of myocardium of trabecula carnea -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;trabecula carnea cardiac muscle -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;trabecula carnea cardiac muscle muscle tissue -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;trabecula carnea cardiac muscle textus muscularis -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;trabecula carnea heart muscle muscle tissue -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;trabecula carnea heart muscle textus muscularis -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;trabecula carnea heart myocardium muscle tissue -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;trabecula carnea heart myocardium textus muscularis -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;trabecula carnea muscle of heart muscle tissue -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;trabecula carnea muscle of heart textus muscularis -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;trabecula carnea muscle tissue of cardiac muscle -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;trabecula carnea muscle tissue of heart muscle -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;trabecula carnea muscle tissue of heart myocardium -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;trabecula carnea muscle tissue of muscle of heart -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;trabecula carnea muscle tissue of myocardium -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;trabecula carnea myocardium muscle tissue -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;trabecula carnea myocardium textus muscularis -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;trabecula carnea textus muscularis of cardiac muscle -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;trabecula carnea textus muscularis of heart muscle -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;trabecula carnea textus muscularis of heart myocardium -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;trabecula carnea textus muscularis of muscle of heart -http://purl.obolibrary.org/obo/UBERON_0003452;trabecula carnea cardiac muscle tissue;trabecula carnea textus muscularis of myocardium -http://purl.obolibrary.org/obo/UBERON_0003453;large intestine Peyer's patch;Peyer's patch of large intestine -http://purl.obolibrary.org/obo/UBERON_0003453;large intestine Peyer's patch;large intestine Peyer's patch -http://purl.obolibrary.org/obo/UBERON_0003454;small intestine Peyer's patch;Peyer's patch of small bowel -http://purl.obolibrary.org/obo/UBERON_0003454;small intestine Peyer's patch;Peyer's patch of small intestine -http://purl.obolibrary.org/obo/UBERON_0003454;small intestine Peyer's patch;aggregated lymphoid follicle of small intestine -http://purl.obolibrary.org/obo/UBERON_0003454;small intestine Peyer's patch;noduli lymphoidei aggregati intestini tenuis -http://purl.obolibrary.org/obo/UBERON_0003454;small intestine Peyer's patch;small bowel Peyer's patch -http://purl.obolibrary.org/obo/UBERON_0003454;small intestine Peyer's patch;small intestine Peyer's patch -http://purl.obolibrary.org/obo/UBERON_0003455;inner renal medulla loop of Henle;kidney inner medulla loop of Henle -http://purl.obolibrary.org/obo/UBERON_0003455;inner renal medulla loop of Henle;loop of Henle, inner medullary portion -http://purl.obolibrary.org/obo/UBERON_0003456;respiratory system lymphatic vessel;apparatus respiratorius lymph vessel -http://purl.obolibrary.org/obo/UBERON_0003456;respiratory system lymphatic vessel;apparatus respiratorius lymphatic vessel -http://purl.obolibrary.org/obo/UBERON_0003456;respiratory system lymphatic vessel;lymph vessel of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0003456;respiratory system lymphatic vessel;lymph vessel of respiratory system -http://purl.obolibrary.org/obo/UBERON_0003456;respiratory system lymphatic vessel;lymphatic vessel of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0003456;respiratory system lymphatic vessel;lymphatic vessel of respiratory system -http://purl.obolibrary.org/obo/UBERON_0003456;respiratory system lymphatic vessel;respiratory system lymph vessel -http://purl.obolibrary.org/obo/UBERON_0003457;head bone;adult head bone -http://purl.obolibrary.org/obo/UBERON_0003457;head bone;adult head bone organ -http://purl.obolibrary.org/obo/UBERON_0003457;head bone;bone of adult head -http://purl.obolibrary.org/obo/UBERON_0003457;head bone;bone of head -http://purl.obolibrary.org/obo/UBERON_0003457;head bone;bone organ of adult head -http://purl.obolibrary.org/obo/UBERON_0003457;head bone;bone organ of head -http://purl.obolibrary.org/obo/UBERON_0003457;head bone;head bone organ -http://purl.obolibrary.org/obo/UBERON_0003458;neck bone;bone of neck -http://purl.obolibrary.org/obo/UBERON_0003458;neck bone;bone of neck (volume) -http://purl.obolibrary.org/obo/UBERON_0003458;neck bone;bone organ of neck -http://purl.obolibrary.org/obo/UBERON_0003458;neck bone;bone organ of neck (volume) -http://purl.obolibrary.org/obo/UBERON_0003458;neck bone;neck (volume) bone -http://purl.obolibrary.org/obo/UBERON_0003458;neck bone;neck (volume) bone organ -http://purl.obolibrary.org/obo/UBERON_0003458;neck bone;neck bone organ -http://purl.obolibrary.org/obo/UBERON_0003459;chest bone;anterior thoracic region bone -http://purl.obolibrary.org/obo/UBERON_0003459;chest bone;anterior thoracic region bone organ -http://purl.obolibrary.org/obo/UBERON_0003459;chest bone;anterolateral part of thorax bone -http://purl.obolibrary.org/obo/UBERON_0003459;chest bone;anterolateral part of thorax bone organ -http://purl.obolibrary.org/obo/UBERON_0003459;chest bone;bone of anterior thoracic region -http://purl.obolibrary.org/obo/UBERON_0003459;chest bone;bone of anterolateral part of thorax -http://purl.obolibrary.org/obo/UBERON_0003459;chest bone;bone of chest -http://purl.obolibrary.org/obo/UBERON_0003459;chest bone;bone of front of thorax -http://purl.obolibrary.org/obo/UBERON_0003459;chest bone;bone organ of anterior thoracic region -http://purl.obolibrary.org/obo/UBERON_0003459;chest bone;bone organ of anterolateral part of thorax -http://purl.obolibrary.org/obo/UBERON_0003459;chest bone;bone organ of chest -http://purl.obolibrary.org/obo/UBERON_0003459;chest bone;bone organ of front of thorax -http://purl.obolibrary.org/obo/UBERON_0003459;chest bone;chest bone organ -http://purl.obolibrary.org/obo/UBERON_0003459;chest bone;front of thorax bone -http://purl.obolibrary.org/obo/UBERON_0003459;chest bone;front of thorax bone organ -http://purl.obolibrary.org/obo/UBERON_0003460;arm bone;arm bone organ -http://purl.obolibrary.org/obo/UBERON_0003460;arm bone;bone of arm -http://purl.obolibrary.org/obo/UBERON_0003460;arm bone;bone organ of arm -http://purl.obolibrary.org/obo/UBERON_0003461;shoulder bone;bone of shoulder -http://purl.obolibrary.org/obo/UBERON_0003461;shoulder bone;shoulder-articulating bone -http://purl.obolibrary.org/obo/UBERON_0003462;facial bone;bone of facial skeleton -http://purl.obolibrary.org/obo/UBERON_0003462;facial bone;facial bone -http://purl.obolibrary.org/obo/UBERON_0003462;facial bone;facial skeleton bone -http://purl.obolibrary.org/obo/UBERON_0003463;trunk bone;bone of torso -http://purl.obolibrary.org/obo/UBERON_0003463;trunk bone;bone of trunk -http://purl.obolibrary.org/obo/UBERON_0003463;trunk bone;bone organ of torso -http://purl.obolibrary.org/obo/UBERON_0003463;trunk bone;bone organ of trunk -http://purl.obolibrary.org/obo/UBERON_0003463;trunk bone;torso bone -http://purl.obolibrary.org/obo/UBERON_0003463;trunk bone;torso bone organ -http://purl.obolibrary.org/obo/UBERON_0003463;trunk bone;trunk bone organ -http://purl.obolibrary.org/obo/UBERON_0003464;hindlimb bone;bone of hind limb -http://purl.obolibrary.org/obo/UBERON_0003464;hindlimb bone;bone of hindlimb -http://purl.obolibrary.org/obo/UBERON_0003464;hindlimb bone;bone of inferior member -http://purl.obolibrary.org/obo/UBERON_0003464;hindlimb bone;bone of lower extremity -http://purl.obolibrary.org/obo/UBERON_0003464;hindlimb bone;bone organ of hind limb -http://purl.obolibrary.org/obo/UBERON_0003464;hindlimb bone;bone organ of hindlimb -http://purl.obolibrary.org/obo/UBERON_0003464;hindlimb bone;bone organ of lower extremity -http://purl.obolibrary.org/obo/UBERON_0003464;hindlimb bone;hind limb bone -http://purl.obolibrary.org/obo/UBERON_0003464;hindlimb bone;hind limb bone organ -http://purl.obolibrary.org/obo/UBERON_0003464;hindlimb bone;hindlimb bone organ -http://purl.obolibrary.org/obo/UBERON_0003466;forelimb zeugopod bone;antebrachial region bone -http://purl.obolibrary.org/obo/UBERON_0003466;forelimb zeugopod bone;antebrachial region bone organ -http://purl.obolibrary.org/obo/UBERON_0003466;forelimb zeugopod bone;arm zeugopod bone -http://purl.obolibrary.org/obo/UBERON_0003466;forelimb zeugopod bone;arm zeugopod bone organ -http://purl.obolibrary.org/obo/UBERON_0003466;forelimb zeugopod bone;lower arm bone -http://purl.obolibrary.org/obo/UBERON_0003466;forelimb zeugopod bone;zeugopod bone, forelimb -http://purl.obolibrary.org/obo/UBERON_0003466;forelimb zeugopod bone;zeugopod bone, upper -http://purl.obolibrary.org/obo/UBERON_0003467;sesamoid bone of gastrocnemius;gastrocnemius sesamoid bone -http://purl.obolibrary.org/obo/UBERON_0003467;sesamoid bone of gastrocnemius;m. gastrocnemius sesamoid bone -http://purl.obolibrary.org/obo/UBERON_0003467;sesamoid bone of gastrocnemius;ossa sessamoidea m. gastrocnemii -http://purl.obolibrary.org/obo/UBERON_0003467;sesamoid bone of gastrocnemius;sesamoid bone of m. gastrocnemius -http://purl.obolibrary.org/obo/UBERON_0003468;ureteric segment of renal artery; -http://purl.obolibrary.org/obo/UBERON_0003469;respiratory system artery; -http://purl.obolibrary.org/obo/UBERON_0003470;artery of upper lip;arteria labialis superior -http://purl.obolibrary.org/obo/UBERON_0003470;artery of upper lip;ramus labialis superior arteriae facialis -http://purl.obolibrary.org/obo/UBERON_0003470;artery of upper lip;superior labial artery -http://purl.obolibrary.org/obo/UBERON_0003470;artery of upper lip;superior labial branch of facial artery -http://purl.obolibrary.org/obo/UBERON_0003471;artery of lower lip;arteria labialis inferior -http://purl.obolibrary.org/obo/UBERON_0003471;artery of lower lip;inferior labial artery -http://purl.obolibrary.org/obo/UBERON_0003471;artery of lower lip;inferior labial branch of facial artery -http://purl.obolibrary.org/obo/UBERON_0003471;artery of lower lip;ramus labialis inferior (arteria facialis) -http://purl.obolibrary.org/obo/UBERON_0003471;artery of lower lip;ramus labialis inferior arteriae facialis -http://purl.obolibrary.org/obo/UBERON_0003472;cerebellar artery; -http://purl.obolibrary.org/obo/UBERON_0003473;thoracic cavity artery; -http://purl.obolibrary.org/obo/UBERON_0003474;meningeal artery; -http://purl.obolibrary.org/obo/UBERON_0003475;ureteric vein;ureter vein -http://purl.obolibrary.org/obo/UBERON_0003475;ureteric vein;vein of ureter -http://purl.obolibrary.org/obo/UBERON_0003476;respiratory system venous blood vessel;apparatus respiratorius vein -http://purl.obolibrary.org/obo/UBERON_0003476;respiratory system venous blood vessel;respiratory system vein -http://purl.obolibrary.org/obo/UBERON_0003476;respiratory system venous blood vessel;vein of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0003476;respiratory system venous blood vessel;vein of respiratory system -http://purl.obolibrary.org/obo/UBERON_0003477;vein of upper lip;superior labial vein -http://purl.obolibrary.org/obo/UBERON_0003477;vein of upper lip;upper lip vein -http://purl.obolibrary.org/obo/UBERON_0003477;vein of upper lip;vena labialis superior -http://purl.obolibrary.org/obo/UBERON_0003478;vein of lower lip;inferior labial vein -http://purl.obolibrary.org/obo/UBERON_0003478;vein of lower lip;lower lip vein -http://purl.obolibrary.org/obo/UBERON_0003478;vein of lower lip;vena labialis inferior -http://purl.obolibrary.org/obo/UBERON_0003479;thoracic cavity vein;cavity of chest vein -http://purl.obolibrary.org/obo/UBERON_0003479;thoracic cavity vein;cavity of thorax vein -http://purl.obolibrary.org/obo/UBERON_0003479;thoracic cavity vein;chest cavity vein -http://purl.obolibrary.org/obo/UBERON_0003479;thoracic cavity vein;pectoral cavity vein -http://purl.obolibrary.org/obo/UBERON_0003479;thoracic cavity vein;vein of cavity of chest -http://purl.obolibrary.org/obo/UBERON_0003479;thoracic cavity vein;vein of cavity of thorax -http://purl.obolibrary.org/obo/UBERON_0003479;thoracic cavity vein;vein of chest cavity -http://purl.obolibrary.org/obo/UBERON_0003479;thoracic cavity vein;vein of pectoral cavity -http://purl.obolibrary.org/obo/UBERON_0003479;thoracic cavity vein;vein of thoracic cavity -http://purl.obolibrary.org/obo/UBERON_0003480;vein of clitoris;clitoris vein -http://purl.obolibrary.org/obo/UBERON_0003481;tail vein;post-vent region vein -http://purl.obolibrary.org/obo/UBERON_0003481;tail vein;vein of post-vent region -http://purl.obolibrary.org/obo/UBERON_0003481;tail vein;vein of tail -http://purl.obolibrary.org/obo/UBERON_0003482;vein of trabecular bone;spongy bone vein -http://purl.obolibrary.org/obo/UBERON_0003482;vein of trabecular bone;trabecular bone tissue vein -http://purl.obolibrary.org/obo/UBERON_0003482;vein of trabecular bone;trabecular bone vein -http://purl.obolibrary.org/obo/UBERON_0003482;vein of trabecular bone;vein of spongy bone -http://purl.obolibrary.org/obo/UBERON_0003482;vein of trabecular bone;vein of trabecular bone tissue -http://purl.obolibrary.org/obo/UBERON_0003483;thymus lymphoid tissue;lymphoid tissue of thymus -http://purl.obolibrary.org/obo/UBERON_0003483;thymus lymphoid tissue;lymphoid tissue of thymus gland -http://purl.obolibrary.org/obo/UBERON_0003483;thymus lymphoid tissue;thymus gland lymphoid tissue -http://purl.obolibrary.org/obo/UBERON_0003484;eye sebaceous gland;camera-type eye sebaceous gland -http://purl.obolibrary.org/obo/UBERON_0003484;eye sebaceous gland;sebaceous gland of camera-type eye -http://purl.obolibrary.org/obo/UBERON_0003484;eye sebaceous gland;sebaceous gland of vertebrate eye -http://purl.obolibrary.org/obo/UBERON_0003484;eye sebaceous gland;vertebrate eye sebaceous gland -http://purl.obolibrary.org/obo/UBERON_0003485;vagina sebaceous gland;sebaceous gland of vagina -http://purl.obolibrary.org/obo/UBERON_0003487;skin sebaceous gland;cutaneous sebaceous gland -http://purl.obolibrary.org/obo/UBERON_0003487;skin sebaceous gland;sebaceous gland of skin -http://purl.obolibrary.org/obo/UBERON_0003488;abdominal mammary gland;abdomen lactiferous gland -http://purl.obolibrary.org/obo/UBERON_0003488;abdominal mammary gland;abdomen lobe of breast -http://purl.obolibrary.org/obo/UBERON_0003488;abdominal mammary gland;abdomen lobe of mammary gland -http://purl.obolibrary.org/obo/UBERON_0003488;abdominal mammary gland;abdomen mammary gland -http://purl.obolibrary.org/obo/UBERON_0003488;abdominal mammary gland;lactiferous gland of abdomen -http://purl.obolibrary.org/obo/UBERON_0003488;abdominal mammary gland;lobe of breast of abdomen -http://purl.obolibrary.org/obo/UBERON_0003488;abdominal mammary gland;lobe of mammary gland of abdomen -http://purl.obolibrary.org/obo/UBERON_0003488;abdominal mammary gland;mammary gland of abdomen -http://purl.obolibrary.org/obo/UBERON_0003489;respiratory system capillary endothelium;apparatus respiratorius blood capillary endothelium -http://purl.obolibrary.org/obo/UBERON_0003489;respiratory system capillary endothelium;apparatus respiratorius capillary endothelium -http://purl.obolibrary.org/obo/UBERON_0003489;respiratory system capillary endothelium;apparatus respiratorius capillary vessel endothelium -http://purl.obolibrary.org/obo/UBERON_0003489;respiratory system capillary endothelium;apparatus respiratorius endothelium of blood capillary -http://purl.obolibrary.org/obo/UBERON_0003489;respiratory system capillary endothelium;apparatus respiratorius endothelium of capillary -http://purl.obolibrary.org/obo/UBERON_0003489;respiratory system capillary endothelium;apparatus respiratorius endothelium of capillary vessel -http://purl.obolibrary.org/obo/UBERON_0003489;respiratory system capillary endothelium;blood capillary endothelium of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0003489;respiratory system capillary endothelium;blood capillary endothelium of respiratory system -http://purl.obolibrary.org/obo/UBERON_0003489;respiratory system capillary endothelium;capillary endothelium of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0003489;respiratory system capillary endothelium;capillary endothelium of respiratory system -http://purl.obolibrary.org/obo/UBERON_0003489;respiratory system capillary endothelium;capillary vessel endothelium of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0003489;respiratory system capillary endothelium;capillary vessel endothelium of respiratory system -http://purl.obolibrary.org/obo/UBERON_0003489;respiratory system capillary endothelium;endothelium of blood capillary of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0003489;respiratory system capillary endothelium;endothelium of blood capillary of respiratory system -http://purl.obolibrary.org/obo/UBERON_0003489;respiratory system capillary endothelium;endothelium of capillary of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0003489;respiratory system capillary endothelium;endothelium of capillary of respiratory system -http://purl.obolibrary.org/obo/UBERON_0003489;respiratory system capillary endothelium;endothelium of capillary vessel of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0003489;respiratory system capillary endothelium;endothelium of capillary vessel of respiratory system -http://purl.obolibrary.org/obo/UBERON_0003489;respiratory system capillary endothelium;respiratory system blood capillary endothelium -http://purl.obolibrary.org/obo/UBERON_0003489;respiratory system capillary endothelium;respiratory system capillary vessel endothelium -http://purl.obolibrary.org/obo/UBERON_0003489;respiratory system capillary endothelium;respiratory system endothelium of blood capillary -http://purl.obolibrary.org/obo/UBERON_0003489;respiratory system capillary endothelium;respiratory system endothelium of capillary -http://purl.obolibrary.org/obo/UBERON_0003489;respiratory system capillary endothelium;respiratory system endothelium of capillary vessel -http://purl.obolibrary.org/obo/UBERON_0003490;respiratory system reticular lamina;apparatus respiratorius fibroreticular lamina -http://purl.obolibrary.org/obo/UBERON_0003490;respiratory system reticular lamina;apparatus respiratorius lamina fibroreticularis -http://purl.obolibrary.org/obo/UBERON_0003490;respiratory system reticular lamina;apparatus respiratorius reticular lamina -http://purl.obolibrary.org/obo/UBERON_0003490;respiratory system reticular lamina;fibroreticular lamina of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0003490;respiratory system reticular lamina;fibroreticular lamina of respiratory system -http://purl.obolibrary.org/obo/UBERON_0003490;respiratory system reticular lamina;lamina fibroreticularis of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0003490;respiratory system reticular lamina;lamina fibroreticularis of respiratory system -http://purl.obolibrary.org/obo/UBERON_0003490;respiratory system reticular lamina;respiratory system fibroreticular lamina -http://purl.obolibrary.org/obo/UBERON_0003490;respiratory system reticular lamina;respiratory system lamina fibroreticularis -http://purl.obolibrary.org/obo/UBERON_0003490;respiratory system reticular lamina;reticular lamina of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0003490;respiratory system reticular lamina;reticular lamina of respiratory system -http://purl.obolibrary.org/obo/UBERON_0003492;bronchus reticular lamina;bronchi fibroreticular lamina -http://purl.obolibrary.org/obo/UBERON_0003492;bronchus reticular lamina;bronchi lamina fibroreticularis -http://purl.obolibrary.org/obo/UBERON_0003492;bronchus reticular lamina;bronchi reticular lamina -http://purl.obolibrary.org/obo/UBERON_0003492;bronchus reticular lamina;bronchial trunk fibroreticular lamina -http://purl.obolibrary.org/obo/UBERON_0003492;bronchus reticular lamina;bronchial trunk lamina fibroreticularis -http://purl.obolibrary.org/obo/UBERON_0003492;bronchus reticular lamina;bronchial trunk reticular lamina -http://purl.obolibrary.org/obo/UBERON_0003492;bronchus reticular lamina;bronchus fibroreticular lamina -http://purl.obolibrary.org/obo/UBERON_0003492;bronchus reticular lamina;bronchus lamina fibroreticularis -http://purl.obolibrary.org/obo/UBERON_0003492;bronchus reticular lamina;fibroreticular lamina of bronchi -http://purl.obolibrary.org/obo/UBERON_0003492;bronchus reticular lamina;fibroreticular lamina of bronchial trunk -http://purl.obolibrary.org/obo/UBERON_0003492;bronchus reticular lamina;fibroreticular lamina of bronchus -http://purl.obolibrary.org/obo/UBERON_0003492;bronchus reticular lamina;lamina fibroreticularis of bronchi -http://purl.obolibrary.org/obo/UBERON_0003492;bronchus reticular lamina;lamina fibroreticularis of bronchial trunk -http://purl.obolibrary.org/obo/UBERON_0003492;bronchus reticular lamina;lamina fibroreticularis of bronchus -http://purl.obolibrary.org/obo/UBERON_0003492;bronchus reticular lamina;reticular lamina of bronchi -http://purl.obolibrary.org/obo/UBERON_0003492;bronchus reticular lamina;reticular lamina of bronchial trunk -http://purl.obolibrary.org/obo/UBERON_0003492;bronchus reticular lamina;reticular lamina of bronchus -http://purl.obolibrary.org/obo/UBERON_0003493;trachea reticular lamina;fibroreticular lamina of cartilaginous trachea -http://purl.obolibrary.org/obo/UBERON_0003493;trachea reticular lamina;fibroreticular lamina of windpipe -http://purl.obolibrary.org/obo/UBERON_0003493;trachea reticular lamina;lamina fibroreticularis of cartilaginous trachea -http://purl.obolibrary.org/obo/UBERON_0003493;trachea reticular lamina;lamina fibroreticularis of windpipe -http://purl.obolibrary.org/obo/UBERON_0003493;trachea reticular lamina;reticular lamina of cartilaginous trachea -http://purl.obolibrary.org/obo/UBERON_0003493;trachea reticular lamina;reticular lamina of windpipe -http://purl.obolibrary.org/obo/UBERON_0003493;trachea reticular lamina;windpipe fibroreticular lamina -http://purl.obolibrary.org/obo/UBERON_0003493;trachea reticular lamina;windpipe lamina fibroreticularis -http://purl.obolibrary.org/obo/UBERON_0003493;trachea reticular lamina;windpipe reticular lamina -http://purl.obolibrary.org/obo/UBERON_0003494;respiratory system venule;apparatus respiratorius venule -http://purl.obolibrary.org/obo/UBERON_0003494;respiratory system venule;venule of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0003494;respiratory system venule;venule of respiratory system -http://purl.obolibrary.org/obo/UBERON_0003495;respiratory system arteriole; -http://purl.obolibrary.org/obo/UBERON_0003496;head blood vessel;adult head blood vessel -http://purl.obolibrary.org/obo/UBERON_0003496;head blood vessel;blood vessel of adult head -http://purl.obolibrary.org/obo/UBERON_0003496;head blood vessel;blood vessel of head -http://purl.obolibrary.org/obo/UBERON_0003497;abdomen blood vessel;blood vessel of abdomen -http://purl.obolibrary.org/obo/UBERON_0003498;heart blood vessel;blood vessel of heart -http://purl.obolibrary.org/obo/UBERON_0003499;brain blood vessel;blood vessel of brain -http://purl.obolibrary.org/obo/UBERON_0003500;corneal blood vessel;blood vessel of cornea -http://purl.obolibrary.org/obo/UBERON_0003500;corneal blood vessel;cornea blood vessel -http://purl.obolibrary.org/obo/UBERON_0003501;retina blood vessel;blood vessel of inner layer of eyeball -http://purl.obolibrary.org/obo/UBERON_0003501;retina blood vessel;blood vessel of retina -http://purl.obolibrary.org/obo/UBERON_0003501;retina blood vessel;blood vessel of tunica interna of eyeball -http://purl.obolibrary.org/obo/UBERON_0003501;retina blood vessel;inner layer of eyeball blood vessel -http://purl.obolibrary.org/obo/UBERON_0003501;retina blood vessel;retinal blood vessel -http://purl.obolibrary.org/obo/UBERON_0003501;retina blood vessel;tunica interna of eyeball blood vessel -http://purl.obolibrary.org/obo/UBERON_0003502;neck blood vessel;blood vessel of neck -http://purl.obolibrary.org/obo/UBERON_0003502;neck blood vessel;blood vessel of neck (volume) -http://purl.obolibrary.org/obo/UBERON_0003502;neck blood vessel;neck (volume) blood vessel -http://purl.obolibrary.org/obo/UBERON_0003503;leg blood vessel;blood vessel of leg -http://purl.obolibrary.org/obo/UBERON_0003504;respiratory system blood vessel;apparatus respiratorius blood vessel -http://purl.obolibrary.org/obo/UBERON_0003504;respiratory system blood vessel;blood vessel of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0003504;respiratory system blood vessel;blood vessel of respiratory system -http://purl.obolibrary.org/obo/UBERON_0003505;trachea blood vessel;blood vessel of trachea -http://purl.obolibrary.org/obo/UBERON_0003506;chest blood vessel;anterior thoracic region blood vessel -http://purl.obolibrary.org/obo/UBERON_0003506;chest blood vessel;anterolateral part of thorax blood vessel -http://purl.obolibrary.org/obo/UBERON_0003506;chest blood vessel;blood vessel of anterior thoracic region -http://purl.obolibrary.org/obo/UBERON_0003506;chest blood vessel;blood vessel of anterolateral part of thorax -http://purl.obolibrary.org/obo/UBERON_0003506;chest blood vessel;blood vessel of chest -http://purl.obolibrary.org/obo/UBERON_0003506;chest blood vessel;blood vessel of front of thorax -http://purl.obolibrary.org/obo/UBERON_0003506;chest blood vessel;front of thorax blood vessel -http://purl.obolibrary.org/obo/UBERON_0003507;arm blood vessel;blood vessel of arm -http://purl.obolibrary.org/obo/UBERON_0003508;pedal digit blood vessel;blood vessel of digit of foot -http://purl.obolibrary.org/obo/UBERON_0003508;pedal digit blood vessel;blood vessel of digit of terminal segment of free lower limb -http://purl.obolibrary.org/obo/UBERON_0003508;pedal digit blood vessel;blood vessel of digitus pedis -http://purl.obolibrary.org/obo/UBERON_0003508;pedal digit blood vessel;blood vessel of foot digit -http://purl.obolibrary.org/obo/UBERON_0003508;pedal digit blood vessel;blood vessel of terminal segment of free lower limb digit -http://purl.obolibrary.org/obo/UBERON_0003508;pedal digit blood vessel;blood vessel of toe -http://purl.obolibrary.org/obo/UBERON_0003508;pedal digit blood vessel;digit of foot blood vessel -http://purl.obolibrary.org/obo/UBERON_0003508;pedal digit blood vessel;digit of terminal segment of free lower limb blood vessel -http://purl.obolibrary.org/obo/UBERON_0003508;pedal digit blood vessel;digitus pedis blood vessel -http://purl.obolibrary.org/obo/UBERON_0003508;pedal digit blood vessel;foot digit blood vessel -http://purl.obolibrary.org/obo/UBERON_0003508;pedal digit blood vessel;hind limb digit blood vessel -http://purl.obolibrary.org/obo/UBERON_0003508;pedal digit blood vessel;terminal segment of free lower limb digit blood vessel -http://purl.obolibrary.org/obo/UBERON_0003508;pedal digit blood vessel;toe blood vessel -http://purl.obolibrary.org/obo/UBERON_0003509;arterial blood vessel; -http://purl.obolibrary.org/obo/UBERON_0003510;eyelid blood vessel;blepharon blood vessel -http://purl.obolibrary.org/obo/UBERON_0003510;eyelid blood vessel;blood vessel of blepharon -http://purl.obolibrary.org/obo/UBERON_0003510;eyelid blood vessel;blood vessel of eyelid -http://purl.obolibrary.org/obo/UBERON_0003511;iris blood vessel;blood vessel of iris -http://purl.obolibrary.org/obo/UBERON_0003512;lung blood vessel;blood vessel of lung -http://purl.obolibrary.org/obo/UBERON_0003513;trunk blood vessel;blood vessel of torso -http://purl.obolibrary.org/obo/UBERON_0003513;trunk blood vessel;blood vessel of trunk -http://purl.obolibrary.org/obo/UBERON_0003513;trunk blood vessel;torso blood vessel -http://purl.obolibrary.org/obo/UBERON_0003514;limb blood vessel;blood vessel of limb -http://purl.obolibrary.org/obo/UBERON_0003515;forelimb blood vessel;anteriormost limb blood vessel -http://purl.obolibrary.org/obo/UBERON_0003515;forelimb blood vessel;blood vessel of anteriormost limb -http://purl.obolibrary.org/obo/UBERON_0003515;forelimb blood vessel;blood vessel of fore limb -http://purl.obolibrary.org/obo/UBERON_0003515;forelimb blood vessel;blood vessel of forelimb -http://purl.obolibrary.org/obo/UBERON_0003515;forelimb blood vessel;blood vessel of upper extremity -http://purl.obolibrary.org/obo/UBERON_0003515;forelimb blood vessel;fore limb blood vessel -http://purl.obolibrary.org/obo/UBERON_0003516;hindlimb blood vessel;blood vessel of hind limb -http://purl.obolibrary.org/obo/UBERON_0003516;hindlimb blood vessel;blood vessel of hindlimb -http://purl.obolibrary.org/obo/UBERON_0003516;hindlimb blood vessel;blood vessel of lower extremity -http://purl.obolibrary.org/obo/UBERON_0003516;hindlimb blood vessel;hind limb blood vessel -http://purl.obolibrary.org/obo/UBERON_0003517;kidney blood vessel;blood vessel of kidney -http://purl.obolibrary.org/obo/UBERON_0003517;kidney blood vessel;renal blood vessel -http://purl.obolibrary.org/obo/UBERON_0003518;main bronchus blood vessel;blood vessel of bronchus principalis -http://purl.obolibrary.org/obo/UBERON_0003518;main bronchus blood vessel;blood vessel of main bronchus -http://purl.obolibrary.org/obo/UBERON_0003518;main bronchus blood vessel;blood vessel of primary bronchus -http://purl.obolibrary.org/obo/UBERON_0003518;main bronchus blood vessel;blood vessel of principal bronchus -http://purl.obolibrary.org/obo/UBERON_0003518;main bronchus blood vessel;bronchus principalis blood vessel -http://purl.obolibrary.org/obo/UBERON_0003518;main bronchus blood vessel;primary bronchus blood vessel -http://purl.obolibrary.org/obo/UBERON_0003518;main bronchus blood vessel;principal bronchus blood vessel -http://purl.obolibrary.org/obo/UBERON_0003519;thoracic cavity blood vessel;blood vessel of cavity of chest -http://purl.obolibrary.org/obo/UBERON_0003519;thoracic cavity blood vessel;blood vessel of cavity of thorax -http://purl.obolibrary.org/obo/UBERON_0003519;thoracic cavity blood vessel;blood vessel of chest cavity -http://purl.obolibrary.org/obo/UBERON_0003519;thoracic cavity blood vessel;blood vessel of pectoral cavity -http://purl.obolibrary.org/obo/UBERON_0003519;thoracic cavity blood vessel;blood vessel of thoracic cavity -http://purl.obolibrary.org/obo/UBERON_0003519;thoracic cavity blood vessel;cavity of chest blood vessel -http://purl.obolibrary.org/obo/UBERON_0003519;thoracic cavity blood vessel;cavity of thorax blood vessel -http://purl.obolibrary.org/obo/UBERON_0003519;thoracic cavity blood vessel;chest cavity blood vessel -http://purl.obolibrary.org/obo/UBERON_0003519;thoracic cavity blood vessel;pectoral cavity blood vessel -http://purl.obolibrary.org/obo/UBERON_0003520;pelvis blood vessel;blood vessel of pelvis -http://purl.obolibrary.org/obo/UBERON_0003521;pes blood vessel;blood vessel of foot -http://purl.obolibrary.org/obo/UBERON_0003521;pes blood vessel;foot blood vessel -http://purl.obolibrary.org/obo/UBERON_0003522;manual digit blood vessel;blood vessel of digit of terminal segment of free upper limb -http://purl.obolibrary.org/obo/UBERON_0003522;manual digit blood vessel;blood vessel of terminal segment of free upper limb digit -http://purl.obolibrary.org/obo/UBERON_0003522;manual digit blood vessel;digit of terminal segment of free upper limb blood vessel -http://purl.obolibrary.org/obo/UBERON_0003522;manual digit blood vessel;finger blood vessel -http://purl.obolibrary.org/obo/UBERON_0003522;manual digit blood vessel;hand digit blood vessel -http://purl.obolibrary.org/obo/UBERON_0003522;manual digit blood vessel;terminal segment of free upper limb digit blood vessel -http://purl.obolibrary.org/obo/UBERON_0003523;manus blood vessel;blood vessel of hand -http://purl.obolibrary.org/obo/UBERON_0003523;manus blood vessel;blood vessel of manus -http://purl.obolibrary.org/obo/UBERON_0003523;manus blood vessel;hand blood vessel -http://purl.obolibrary.org/obo/UBERON_0003524;tail blood vessel;blood vessel of post-vent region -http://purl.obolibrary.org/obo/UBERON_0003524;tail blood vessel;blood vessel of tail -http://purl.obolibrary.org/obo/UBERON_0003524;tail blood vessel;post-vent region blood vessel -http://purl.obolibrary.org/obo/UBERON_0003526;respiratory system capillary;apparatus respiratorius blood capillary -http://purl.obolibrary.org/obo/UBERON_0003526;respiratory system capillary;apparatus respiratorius capillary -http://purl.obolibrary.org/obo/UBERON_0003526;respiratory system capillary;apparatus respiratorius capillary vessel -http://purl.obolibrary.org/obo/UBERON_0003526;respiratory system capillary;blood capillary of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0003526;respiratory system capillary;blood capillary of respiratory system -http://purl.obolibrary.org/obo/UBERON_0003526;respiratory system capillary;capillary of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0003526;respiratory system capillary;capillary of respiratory system -http://purl.obolibrary.org/obo/UBERON_0003526;respiratory system capillary;capillary vessel of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0003526;respiratory system capillary;capillary vessel of respiratory system -http://purl.obolibrary.org/obo/UBERON_0003526;respiratory system capillary;respiratory system blood capillary -http://purl.obolibrary.org/obo/UBERON_0003526;respiratory system capillary;respiratory system capillary vessel -http://purl.obolibrary.org/obo/UBERON_0003527;kidney capillary;blood capillary of kidney -http://purl.obolibrary.org/obo/UBERON_0003527;kidney capillary;capillary of kidney -http://purl.obolibrary.org/obo/UBERON_0003527;kidney capillary;capillary vessel of kidney -http://purl.obolibrary.org/obo/UBERON_0003527;kidney capillary;kidney blood capillary -http://purl.obolibrary.org/obo/UBERON_0003527;kidney capillary;kidney capillary vessel -http://purl.obolibrary.org/obo/UBERON_0003527;kidney capillary;renal capillary -http://purl.obolibrary.org/obo/UBERON_0003528;brain gray matter;brain grey matter -http://purl.obolibrary.org/obo/UBERON_0003528;brain gray matter;brain grey substance -http://purl.obolibrary.org/obo/UBERON_0003528;brain gray matter;gray matter of brain -http://purl.obolibrary.org/obo/UBERON_0003528;brain gray matter;grey matter of brain -http://purl.obolibrary.org/obo/UBERON_0003528;brain gray matter;grey substance of brain -http://purl.obolibrary.org/obo/UBERON_0003529;respiratory system lymphatic vessel endothelium;apparatus respiratorius endothelium of lymph vessel -http://purl.obolibrary.org/obo/UBERON_0003529;respiratory system lymphatic vessel endothelium;apparatus respiratorius lymph vessel endothelium -http://purl.obolibrary.org/obo/UBERON_0003529;respiratory system lymphatic vessel endothelium;apparatus respiratorius lymphatic vessel endothelium -http://purl.obolibrary.org/obo/UBERON_0003529;respiratory system lymphatic vessel endothelium;endothelium of lymph vessel of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0003529;respiratory system lymphatic vessel endothelium;endothelium of lymph vessel of respiratory system -http://purl.obolibrary.org/obo/UBERON_0003529;respiratory system lymphatic vessel endothelium;lymph vessel endothelium of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0003529;respiratory system lymphatic vessel endothelium;lymph vessel endothelium of respiratory system -http://purl.obolibrary.org/obo/UBERON_0003529;respiratory system lymphatic vessel endothelium;lymphatic vessel endothelium of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0003529;respiratory system lymphatic vessel endothelium;lymphatic vessel endothelium of respiratory system -http://purl.obolibrary.org/obo/UBERON_0003529;respiratory system lymphatic vessel endothelium;respiratory system endothelium of lymph vessel -http://purl.obolibrary.org/obo/UBERON_0003529;respiratory system lymphatic vessel endothelium;respiratory system lymph vessel endothelium -http://purl.obolibrary.org/obo/UBERON_0003529;respiratory system lymphatic vessel endothelium;respiratory system lymphatic vessel endothelium -http://purl.obolibrary.org/obo/UBERON_0003530;pedal digit skin;digit of foot skin -http://purl.obolibrary.org/obo/UBERON_0003530;pedal digit skin;digit of terminal segment of free lower limb skin -http://purl.obolibrary.org/obo/UBERON_0003530;pedal digit skin;digitus pedis skin -http://purl.obolibrary.org/obo/UBERON_0003530;pedal digit skin;foot digit skin -http://purl.obolibrary.org/obo/UBERON_0003530;pedal digit skin;hind limb digit skin -http://purl.obolibrary.org/obo/UBERON_0003530;pedal digit skin;skin of digit of foot -http://purl.obolibrary.org/obo/UBERON_0003530;pedal digit skin;skin of digit of terminal segment of free lower limb -http://purl.obolibrary.org/obo/UBERON_0003530;pedal digit skin;skin of digitus pedis -http://purl.obolibrary.org/obo/UBERON_0003530;pedal digit skin;skin of foot digit -http://purl.obolibrary.org/obo/UBERON_0003530;pedal digit skin;skin of terminal segment of free lower limb digit -http://purl.obolibrary.org/obo/UBERON_0003530;pedal digit skin;skin of toe -http://purl.obolibrary.org/obo/UBERON_0003530;pedal digit skin;terminal segment of free lower limb digit skin -http://purl.obolibrary.org/obo/UBERON_0003530;pedal digit skin;toe skin -http://purl.obolibrary.org/obo/UBERON_0003531;forelimb skin;anteriormost limb skin -http://purl.obolibrary.org/obo/UBERON_0003531;forelimb skin;fore limb skin -http://purl.obolibrary.org/obo/UBERON_0003531;forelimb skin;skin of fore limb -http://purl.obolibrary.org/obo/UBERON_0003531;forelimb skin;skin of forelimb -http://purl.obolibrary.org/obo/UBERON_0003531;forelimb skin;skin of upper limb -http://purl.obolibrary.org/obo/UBERON_0003531;forelimb skin;upper limb skin -http://purl.obolibrary.org/obo/UBERON_0003532;hindlimb skin;hind limb skin -http://purl.obolibrary.org/obo/UBERON_0003532;hindlimb skin;lower limb skin -http://purl.obolibrary.org/obo/UBERON_0003532;hindlimb skin;skin of hind limb -http://purl.obolibrary.org/obo/UBERON_0003532;hindlimb skin;skin of hindlimb -http://purl.obolibrary.org/obo/UBERON_0003532;hindlimb skin;skin of lower extremity -http://purl.obolibrary.org/obo/UBERON_0003532;hindlimb skin;skin of lower limb -http://purl.obolibrary.org/obo/UBERON_0003533;manual digit skin;digit of hand skin -http://purl.obolibrary.org/obo/UBERON_0003533;manual digit skin;digit of terminal segment of free upper limb skin -http://purl.obolibrary.org/obo/UBERON_0003533;manual digit skin;digitus manus skin -http://purl.obolibrary.org/obo/UBERON_0003533;manual digit skin;finger skin -http://purl.obolibrary.org/obo/UBERON_0003533;manual digit skin;fore limb digit skin -http://purl.obolibrary.org/obo/UBERON_0003533;manual digit skin;hand digit skin -http://purl.obolibrary.org/obo/UBERON_0003533;manual digit skin;skin of digit of hand -http://purl.obolibrary.org/obo/UBERON_0003533;manual digit skin;skin of digit of terminal segment of free upper limb -http://purl.obolibrary.org/obo/UBERON_0003533;manual digit skin;skin of digitus manus -http://purl.obolibrary.org/obo/UBERON_0003533;manual digit skin;skin of finger -http://purl.obolibrary.org/obo/UBERON_0003533;manual digit skin;skin of hand digit -http://purl.obolibrary.org/obo/UBERON_0003533;manual digit skin;skin of terminal segment of free upper limb digit -http://purl.obolibrary.org/obo/UBERON_0003533;manual digit skin;terminal segment of free upper limb digit skin -http://purl.obolibrary.org/obo/UBERON_0003534;tail skin;post-vent region skin -http://purl.obolibrary.org/obo/UBERON_0003534;tail skin;skin of post-vent region -http://purl.obolibrary.org/obo/UBERON_0003534;tail skin;skin of tail -http://purl.obolibrary.org/obo/UBERON_0003535;vagus X nerve trunk;trunk of vagal nerve -http://purl.obolibrary.org/obo/UBERON_0003535;vagus X nerve trunk;trunk of vagus nerve -http://purl.obolibrary.org/obo/UBERON_0003535;vagus X nerve trunk;vagal X nerve trunk -http://purl.obolibrary.org/obo/UBERON_0003535;vagus X nerve trunk;vagal nerve trunk -http://purl.obolibrary.org/obo/UBERON_0003535;vagus X nerve trunk;vagus nerve trunk -http://purl.obolibrary.org/obo/UBERON_0003535;vagus X nerve trunk;vagus neural trunk -http://purl.obolibrary.org/obo/UBERON_0003536;right lung alveolar duct;alveolar duct of right lung -http://purl.obolibrary.org/obo/UBERON_0003537;left lung alveolar duct;alveolar duct of left lung -http://purl.obolibrary.org/obo/UBERON_0003538;right lung bronchiole;bronchiole of right lung -http://purl.obolibrary.org/obo/UBERON_0003539;left lung bronchiole;bronchiole of left lung -http://purl.obolibrary.org/obo/UBERON_0003540;right lung terminal bronchiole;bronchiolus terminalis of right lung -http://purl.obolibrary.org/obo/UBERON_0003540;right lung terminal bronchiole;right lung bronchiolus terminalis -http://purl.obolibrary.org/obo/UBERON_0003540;right lung terminal bronchiole;terminal bronchiole of right lung -http://purl.obolibrary.org/obo/UBERON_0003541;left lung terminal bronchiole;bronchiolus terminalis of left lung -http://purl.obolibrary.org/obo/UBERON_0003541;left lung terminal bronchiole;left lung bronchiolus terminalis -http://purl.obolibrary.org/obo/UBERON_0003541;left lung terminal bronchiole;terminal bronchiole of left lung -http://purl.obolibrary.org/obo/UBERON_0003542;right lung respiratory bronchiole;bronchiolus respiratorius of right lung -http://purl.obolibrary.org/obo/UBERON_0003542;right lung respiratory bronchiole;respiratory bronchiole of right lung -http://purl.obolibrary.org/obo/UBERON_0003542;right lung respiratory bronchiole;right lung bronchiolus respiratorius -http://purl.obolibrary.org/obo/UBERON_0003543;left lung respiratory bronchiole;bronchiolus respiratorius of left lung -http://purl.obolibrary.org/obo/UBERON_0003543;left lung respiratory bronchiole;left lung bronchiolus respiratorius -http://purl.obolibrary.org/obo/UBERON_0003543;left lung respiratory bronchiole;respiratory bronchiole of left lung -http://purl.obolibrary.org/obo/UBERON_0003544;brain white matter;brain white matter of neuraxis -http://purl.obolibrary.org/obo/UBERON_0003544;brain white matter;brain white substance -http://purl.obolibrary.org/obo/UBERON_0003544;brain white matter;white matter of brain -http://purl.obolibrary.org/obo/UBERON_0003544;brain white matter;white matter of neuraxis of brain -http://purl.obolibrary.org/obo/UBERON_0003544;brain white matter;white substance of brain -http://purl.obolibrary.org/obo/UBERON_0003546;distal convoluted tubule macula densa; -http://purl.obolibrary.org/obo/UBERON_0003547;brain meninx;brain meninges -http://purl.obolibrary.org/obo/UBERON_0003547;brain meninx;meninges of brain -http://purl.obolibrary.org/obo/UBERON_0003547;brain meninx;meninx of brain -http://purl.obolibrary.org/obo/UBERON_0003548;forebrain meninges;forebrain meninx -http://purl.obolibrary.org/obo/UBERON_0003548;forebrain meninges;meninges of forebrain -http://purl.obolibrary.org/obo/UBERON_0003548;forebrain meninges;meninx of forebrain -http://purl.obolibrary.org/obo/UBERON_0003549;brain pia mater;brain pia mater of neuraxis -http://purl.obolibrary.org/obo/UBERON_0003549;brain pia mater;pia mater of brain -http://purl.obolibrary.org/obo/UBERON_0003549;brain pia mater;pia mater of neuraxis of brain -http://purl.obolibrary.org/obo/UBERON_0003550;forebrain pia mater;forebrain pia mater of neuraxis -http://purl.obolibrary.org/obo/UBERON_0003550;forebrain pia mater;pia mater of forebrain -http://purl.obolibrary.org/obo/UBERON_0003550;forebrain pia mater;pia mater of neuraxis of forebrain -http://purl.obolibrary.org/obo/UBERON_0003551;midbrain pia mater;midbrain pia mater of neuraxis -http://purl.obolibrary.org/obo/UBERON_0003551;midbrain pia mater;pia mater of midbrain -http://purl.obolibrary.org/obo/UBERON_0003551;midbrain pia mater;pia mater of neuraxis of midbrain -http://purl.obolibrary.org/obo/UBERON_0003552;telencephalon pia mater;pia mater of neuraxis of telencephalon -http://purl.obolibrary.org/obo/UBERON_0003552;telencephalon pia mater;pia mater of telencephalon -http://purl.obolibrary.org/obo/UBERON_0003552;telencephalon pia mater;telencephalon pia mater of neuraxis -http://purl.obolibrary.org/obo/UBERON_0003553;diencephalon pia mater;between brain pia mater -http://purl.obolibrary.org/obo/UBERON_0003553;diencephalon pia mater;between brain pia mater of neuraxis -http://purl.obolibrary.org/obo/UBERON_0003553;diencephalon pia mater;diencephalon pia mater of neuraxis -http://purl.obolibrary.org/obo/UBERON_0003553;diencephalon pia mater;interbrain pia mater -http://purl.obolibrary.org/obo/UBERON_0003553;diencephalon pia mater;interbrain pia mater of neuraxis -http://purl.obolibrary.org/obo/UBERON_0003553;diencephalon pia mater;mature diencephalon pia mater -http://purl.obolibrary.org/obo/UBERON_0003553;diencephalon pia mater;mature diencephalon pia mater of neuraxis -http://purl.obolibrary.org/obo/UBERON_0003553;diencephalon pia mater;pia mater of between brain -http://purl.obolibrary.org/obo/UBERON_0003553;diencephalon pia mater;pia mater of diencephalon -http://purl.obolibrary.org/obo/UBERON_0003553;diencephalon pia mater;pia mater of interbrain -http://purl.obolibrary.org/obo/UBERON_0003553;diencephalon pia mater;pia mater of mature diencephalon -http://purl.obolibrary.org/obo/UBERON_0003553;diencephalon pia mater;pia mater of neuraxis of between brain -http://purl.obolibrary.org/obo/UBERON_0003553;diencephalon pia mater;pia mater of neuraxis of diencephalon -http://purl.obolibrary.org/obo/UBERON_0003553;diencephalon pia mater;pia mater of neuraxis of interbrain -http://purl.obolibrary.org/obo/UBERON_0003553;diencephalon pia mater;pia mater of neuraxis of mature diencephalon -http://purl.obolibrary.org/obo/UBERON_0003554;hindbrain pia mater;hindbrain pia mater of neuraxis -http://purl.obolibrary.org/obo/UBERON_0003554;hindbrain pia mater;pia mater of hindbrain -http://purl.obolibrary.org/obo/UBERON_0003554;hindbrain pia mater;pia mater of neuraxis of hindbrain -http://purl.obolibrary.org/obo/UBERON_0003555;spinal cord pia mater;pia mater of neuraxis of spinal cord -http://purl.obolibrary.org/obo/UBERON_0003555;spinal cord pia mater;pia mater of spinal cord -http://purl.obolibrary.org/obo/UBERON_0003555;spinal cord pia mater;spinal cord pia mater of neuraxis -http://purl.obolibrary.org/obo/UBERON_0003556;forebrain arachnoid mater;arachnoid mater of forebrain -http://purl.obolibrary.org/obo/UBERON_0003556;forebrain arachnoid mater;arachnoid mater of neuraxis of forebrain -http://purl.obolibrary.org/obo/UBERON_0003556;forebrain arachnoid mater;arachnoid of forebrain -http://purl.obolibrary.org/obo/UBERON_0003556;forebrain arachnoid mater;forebrain arachnoid -http://purl.obolibrary.org/obo/UBERON_0003556;forebrain arachnoid mater;forebrain arachnoid mater of neuraxis -http://purl.obolibrary.org/obo/UBERON_0003557;midbrain arachnoid mater;arachnoid mater of midbrain -http://purl.obolibrary.org/obo/UBERON_0003557;midbrain arachnoid mater;arachnoid mater of neuraxis of midbrain -http://purl.obolibrary.org/obo/UBERON_0003557;midbrain arachnoid mater;arachnoid of midbrain -http://purl.obolibrary.org/obo/UBERON_0003557;midbrain arachnoid mater;midbrain arachnoid -http://purl.obolibrary.org/obo/UBERON_0003557;midbrain arachnoid mater;midbrain arachnoid mater of neuraxis -http://purl.obolibrary.org/obo/UBERON_0003558;diencephalon arachnoid mater;arachnoid mater of between brain -http://purl.obolibrary.org/obo/UBERON_0003558;diencephalon arachnoid mater;arachnoid mater of diencephalon -http://purl.obolibrary.org/obo/UBERON_0003558;diencephalon arachnoid mater;arachnoid mater of interbrain -http://purl.obolibrary.org/obo/UBERON_0003558;diencephalon arachnoid mater;arachnoid mater of mature diencephalon -http://purl.obolibrary.org/obo/UBERON_0003558;diencephalon arachnoid mater;arachnoid mater of neuraxis of between brain -http://purl.obolibrary.org/obo/UBERON_0003558;diencephalon arachnoid mater;arachnoid mater of neuraxis of diencephalon -http://purl.obolibrary.org/obo/UBERON_0003558;diencephalon arachnoid mater;arachnoid mater of neuraxis of interbrain -http://purl.obolibrary.org/obo/UBERON_0003558;diencephalon arachnoid mater;arachnoid mater of neuraxis of mature diencephalon -http://purl.obolibrary.org/obo/UBERON_0003558;diencephalon arachnoid mater;arachnoid of between brain -http://purl.obolibrary.org/obo/UBERON_0003558;diencephalon arachnoid mater;arachnoid of diencephalon -http://purl.obolibrary.org/obo/UBERON_0003558;diencephalon arachnoid mater;arachnoid of interbrain -http://purl.obolibrary.org/obo/UBERON_0003558;diencephalon arachnoid mater;arachnoid of mature diencephalon -http://purl.obolibrary.org/obo/UBERON_0003558;diencephalon arachnoid mater;between brain arachnoid -http://purl.obolibrary.org/obo/UBERON_0003558;diencephalon arachnoid mater;between brain arachnoid mater -http://purl.obolibrary.org/obo/UBERON_0003558;diencephalon arachnoid mater;between brain arachnoid mater of neuraxis -http://purl.obolibrary.org/obo/UBERON_0003558;diencephalon arachnoid mater;diencephalon arachnoid -http://purl.obolibrary.org/obo/UBERON_0003558;diencephalon arachnoid mater;diencephalon arachnoid mater of neuraxis -http://purl.obolibrary.org/obo/UBERON_0003558;diencephalon arachnoid mater;interbrain arachnoid -http://purl.obolibrary.org/obo/UBERON_0003558;diencephalon arachnoid mater;interbrain arachnoid mater -http://purl.obolibrary.org/obo/UBERON_0003558;diencephalon arachnoid mater;interbrain arachnoid mater of neuraxis -http://purl.obolibrary.org/obo/UBERON_0003558;diencephalon arachnoid mater;mature diencephalon arachnoid -http://purl.obolibrary.org/obo/UBERON_0003558;diencephalon arachnoid mater;mature diencephalon arachnoid mater -http://purl.obolibrary.org/obo/UBERON_0003558;diencephalon arachnoid mater;mature diencephalon arachnoid mater of neuraxis -http://purl.obolibrary.org/obo/UBERON_0003559;hindbrain arachnoid mater;arachnoid mater of hindbrain -http://purl.obolibrary.org/obo/UBERON_0003559;hindbrain arachnoid mater;arachnoid mater of neuraxis of hindbrain -http://purl.obolibrary.org/obo/UBERON_0003559;hindbrain arachnoid mater;arachnoid of hindbrain -http://purl.obolibrary.org/obo/UBERON_0003559;hindbrain arachnoid mater;hindbrain arachnoid -http://purl.obolibrary.org/obo/UBERON_0003559;hindbrain arachnoid mater;hindbrain arachnoid mater of neuraxis -http://purl.obolibrary.org/obo/UBERON_0003560;spinal cord arachnoid mater;arachnoid mater of neuraxis of spinal cord -http://purl.obolibrary.org/obo/UBERON_0003560;spinal cord arachnoid mater;arachnoid mater of spinal cord -http://purl.obolibrary.org/obo/UBERON_0003560;spinal cord arachnoid mater;arachnoid of spinal cord -http://purl.obolibrary.org/obo/UBERON_0003560;spinal cord arachnoid mater;spinal cord arachnoid -http://purl.obolibrary.org/obo/UBERON_0003560;spinal cord arachnoid mater;spinal cord arachnoid mater of neuraxis -http://purl.obolibrary.org/obo/UBERON_0003561;forebrain dura mater;dura mater of forebrain -http://purl.obolibrary.org/obo/UBERON_0003561;forebrain dura mater;dura mater of neuraxis of forebrain -http://purl.obolibrary.org/obo/UBERON_0003561;forebrain dura mater;forebrain dura mater of neuraxis -http://purl.obolibrary.org/obo/UBERON_0003562;midbrain dura mater;dura mater of midbrain -http://purl.obolibrary.org/obo/UBERON_0003562;midbrain dura mater;dura mater of neuraxis of midbrain -http://purl.obolibrary.org/obo/UBERON_0003562;midbrain dura mater;midbrain dura mater of neuraxis -http://purl.obolibrary.org/obo/UBERON_0003563;telencephalon dura mater;dura mater of neuraxis of telencephalon -http://purl.obolibrary.org/obo/UBERON_0003563;telencephalon dura mater;dura mater of telencephalon -http://purl.obolibrary.org/obo/UBERON_0003563;telencephalon dura mater;telencephalon dura mater of neuraxis -http://purl.obolibrary.org/obo/UBERON_0003564;diencephalon dura mater;between brain dura mater -http://purl.obolibrary.org/obo/UBERON_0003564;diencephalon dura mater;between brain dura mater of neuraxis -http://purl.obolibrary.org/obo/UBERON_0003564;diencephalon dura mater;diencephalon dura mater of neuraxis -http://purl.obolibrary.org/obo/UBERON_0003564;diencephalon dura mater;dura mater of between brain -http://purl.obolibrary.org/obo/UBERON_0003564;diencephalon dura mater;dura mater of diencephalon -http://purl.obolibrary.org/obo/UBERON_0003564;diencephalon dura mater;dura mater of interbrain -http://purl.obolibrary.org/obo/UBERON_0003564;diencephalon dura mater;dura mater of mature diencephalon -http://purl.obolibrary.org/obo/UBERON_0003564;diencephalon dura mater;dura mater of neuraxis of between brain -http://purl.obolibrary.org/obo/UBERON_0003564;diencephalon dura mater;dura mater of neuraxis of diencephalon -http://purl.obolibrary.org/obo/UBERON_0003564;diencephalon dura mater;dura mater of neuraxis of interbrain -http://purl.obolibrary.org/obo/UBERON_0003564;diencephalon dura mater;dura mater of neuraxis of mature diencephalon -http://purl.obolibrary.org/obo/UBERON_0003564;diencephalon dura mater;interbrain dura mater -http://purl.obolibrary.org/obo/UBERON_0003564;diencephalon dura mater;interbrain dura mater of neuraxis -http://purl.obolibrary.org/obo/UBERON_0003564;diencephalon dura mater;mature diencephalon dura mater -http://purl.obolibrary.org/obo/UBERON_0003564;diencephalon dura mater;mature diencephalon dura mater of neuraxis -http://purl.obolibrary.org/obo/UBERON_0003565;hindbrain dura mater;dura mater of hindbrain -http://purl.obolibrary.org/obo/UBERON_0003565;hindbrain dura mater;dura mater of neuraxis of hindbrain -http://purl.obolibrary.org/obo/UBERON_0003565;hindbrain dura mater;hindbrain dura mater of neuraxis -http://purl.obolibrary.org/obo/UBERON_0003566;head connective tissue;adult head connective tissue -http://purl.obolibrary.org/obo/UBERON_0003566;head connective tissue;adult head portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0003566;head connective tissue;adult head textus connectivus -http://purl.obolibrary.org/obo/UBERON_0003566;head connective tissue;connective tissue of adult head -http://purl.obolibrary.org/obo/UBERON_0003566;head connective tissue;connective tissue of head -http://purl.obolibrary.org/obo/UBERON_0003566;head connective tissue;head portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0003566;head connective tissue;head textus connectivus -http://purl.obolibrary.org/obo/UBERON_0003566;head connective tissue;portion of connective tissue of adult head -http://purl.obolibrary.org/obo/UBERON_0003566;head connective tissue;portion of connective tissue of head -http://purl.obolibrary.org/obo/UBERON_0003566;head connective tissue;textus connectivus of adult head -http://purl.obolibrary.org/obo/UBERON_0003566;head connective tissue;textus connectivus of head -http://purl.obolibrary.org/obo/UBERON_0003567;abdomen connective tissue;abdomen portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0003567;abdomen connective tissue;abdomen textus connectivus -http://purl.obolibrary.org/obo/UBERON_0003567;abdomen connective tissue;connective tissue of abdomen -http://purl.obolibrary.org/obo/UBERON_0003567;abdomen connective tissue;portion of connective tissue of abdomen -http://purl.obolibrary.org/obo/UBERON_0003567;abdomen connective tissue;textus connectivus of abdomen -http://purl.obolibrary.org/obo/UBERON_0003568;neck connective tissue;connective tissue of neck -http://purl.obolibrary.org/obo/UBERON_0003568;neck connective tissue;connective tissue of neck (volume) -http://purl.obolibrary.org/obo/UBERON_0003568;neck connective tissue;neck (volume) connective tissue -http://purl.obolibrary.org/obo/UBERON_0003568;neck connective tissue;neck (volume) portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0003568;neck connective tissue;neck (volume) textus connectivus -http://purl.obolibrary.org/obo/UBERON_0003568;neck connective tissue;neck portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0003568;neck connective tissue;neck textus connectivus -http://purl.obolibrary.org/obo/UBERON_0003568;neck connective tissue;portion of connective tissue of neck -http://purl.obolibrary.org/obo/UBERON_0003568;neck connective tissue;portion of connective tissue of neck (volume) -http://purl.obolibrary.org/obo/UBERON_0003568;neck connective tissue;textus connectivus of neck -http://purl.obolibrary.org/obo/UBERON_0003568;neck connective tissue;textus connectivus of neck (volume) -http://purl.obolibrary.org/obo/UBERON_0003569;leg connective tissue;connective tissue of leg -http://purl.obolibrary.org/obo/UBERON_0003569;leg connective tissue;leg portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0003569;leg connective tissue;leg textus connectivus -http://purl.obolibrary.org/obo/UBERON_0003569;leg connective tissue;portion of connective tissue of leg -http://purl.obolibrary.org/obo/UBERON_0003569;leg connective tissue;textus connectivus of leg -http://purl.obolibrary.org/obo/UBERON_0003570;respiratory system connective tissue;apparatus respiratorius connective tissue -http://purl.obolibrary.org/obo/UBERON_0003570;respiratory system connective tissue;apparatus respiratorius portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0003570;respiratory system connective tissue;apparatus respiratorius textus connectivus -http://purl.obolibrary.org/obo/UBERON_0003570;respiratory system connective tissue;connective tissue of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0003570;respiratory system connective tissue;connective tissue of respiratory system -http://purl.obolibrary.org/obo/UBERON_0003570;respiratory system connective tissue;portion of connective tissue of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0003570;respiratory system connective tissue;portion of connective tissue of respiratory system -http://purl.obolibrary.org/obo/UBERON_0003570;respiratory system connective tissue;respiratory system portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0003570;respiratory system connective tissue;respiratory system textus connectivus -http://purl.obolibrary.org/obo/UBERON_0003570;respiratory system connective tissue;textus connectivus of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0003570;respiratory system connective tissue;textus connectivus of respiratory system -http://purl.obolibrary.org/obo/UBERON_0003571;trachea connective tissue;connective tissue of trachea -http://purl.obolibrary.org/obo/UBERON_0003571;trachea connective tissue;connective tissue of windpipe -http://purl.obolibrary.org/obo/UBERON_0003572;chest connective tissue;anterior thoracic region connective tissue -http://purl.obolibrary.org/obo/UBERON_0003572;chest connective tissue;anterior thoracic region portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0003572;chest connective tissue;anterior thoracic region textus connectivus -http://purl.obolibrary.org/obo/UBERON_0003572;chest connective tissue;anterolateral part of thorax connective tissue -http://purl.obolibrary.org/obo/UBERON_0003572;chest connective tissue;anterolateral part of thorax portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0003572;chest connective tissue;anterolateral part of thorax textus connectivus -http://purl.obolibrary.org/obo/UBERON_0003572;chest connective tissue;chest portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0003572;chest connective tissue;chest textus connectivus -http://purl.obolibrary.org/obo/UBERON_0003572;chest connective tissue;connective tissue of anterior thoracic region -http://purl.obolibrary.org/obo/UBERON_0003572;chest connective tissue;connective tissue of anterolateral part of thorax -http://purl.obolibrary.org/obo/UBERON_0003572;chest connective tissue;connective tissue of chest -http://purl.obolibrary.org/obo/UBERON_0003572;chest connective tissue;connective tissue of front of thorax -http://purl.obolibrary.org/obo/UBERON_0003572;chest connective tissue;front of thorax connective tissue -http://purl.obolibrary.org/obo/UBERON_0003572;chest connective tissue;front of thorax portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0003572;chest connective tissue;front of thorax textus connectivus -http://purl.obolibrary.org/obo/UBERON_0003572;chest connective tissue;portion of connective tissue of anterior thoracic region -http://purl.obolibrary.org/obo/UBERON_0003572;chest connective tissue;portion of connective tissue of anterolateral part of thorax -http://purl.obolibrary.org/obo/UBERON_0003572;chest connective tissue;portion of connective tissue of chest -http://purl.obolibrary.org/obo/UBERON_0003572;chest connective tissue;portion of connective tissue of front of thorax -http://purl.obolibrary.org/obo/UBERON_0003572;chest connective tissue;textus connectivus of anterior thoracic region -http://purl.obolibrary.org/obo/UBERON_0003572;chest connective tissue;textus connectivus of anterolateral part of thorax -http://purl.obolibrary.org/obo/UBERON_0003572;chest connective tissue;textus connectivus of chest -http://purl.obolibrary.org/obo/UBERON_0003572;chest connective tissue;textus connectivus of front of thorax -http://purl.obolibrary.org/obo/UBERON_0003573;arm connective tissue; -http://purl.obolibrary.org/obo/UBERON_0003574;elbow connective tissue;connective tissue of cubital region -http://purl.obolibrary.org/obo/UBERON_0003574;elbow connective tissue;connective tissue of elbow -http://purl.obolibrary.org/obo/UBERON_0003574;elbow connective tissue;textus connectivus of cubital region -http://purl.obolibrary.org/obo/UBERON_0003575;wrist connective tissue;carpal region connective tissue -http://purl.obolibrary.org/obo/UBERON_0003575;wrist connective tissue;connective tissue of carpal region -http://purl.obolibrary.org/obo/UBERON_0003575;wrist connective tissue;connective tissue of wrist -http://purl.obolibrary.org/obo/UBERON_0003576;hip connective tissue;connective tissue of hip -http://purl.obolibrary.org/obo/UBERON_0003576;hip connective tissue;connective tissue of hip region -http://purl.obolibrary.org/obo/UBERON_0003576;hip connective tissue;connective tissue of regio coxae -http://purl.obolibrary.org/obo/UBERON_0003577;knee connective tissue;connective tissue of knee -http://purl.obolibrary.org/obo/UBERON_0003577;knee connective tissue;knee portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0003578;pedal digit connective tissue;connective tissue of digit of foot -http://purl.obolibrary.org/obo/UBERON_0003578;pedal digit connective tissue;connective tissue of digitus pedis -http://purl.obolibrary.org/obo/UBERON_0003578;pedal digit connective tissue;connective tissue of foot digit -http://purl.obolibrary.org/obo/UBERON_0003578;pedal digit connective tissue;connective tissue of toe -http://purl.obolibrary.org/obo/UBERON_0003578;pedal digit connective tissue;digitus pedis textus connectivus -http://purl.obolibrary.org/obo/UBERON_0003578;pedal digit connective tissue;foot digit connective tissue -http://purl.obolibrary.org/obo/UBERON_0003578;pedal digit connective tissue;hind limb digit connective tissue -http://purl.obolibrary.org/obo/UBERON_0003579;shoulder connective tissue;connective tissue of shoulder -http://purl.obolibrary.org/obo/UBERON_0003579;shoulder connective tissue;portion of connective tissue of shoulder -http://purl.obolibrary.org/obo/UBERON_0003579;shoulder connective tissue;shoulder portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0003579;shoulder connective tissue;shoulder textus connectivus -http://purl.obolibrary.org/obo/UBERON_0003579;shoulder connective tissue;textus connectivus of shoulder -http://purl.obolibrary.org/obo/UBERON_0003580;lower respiratory tract connective tissue;connective tissue of lower respiratory tract -http://purl.obolibrary.org/obo/UBERON_0003580;lower respiratory tract connective tissue;lower respiratory tract portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0003580;lower respiratory tract connective tissue;lower respiratory tract textus connectivus -http://purl.obolibrary.org/obo/UBERON_0003580;lower respiratory tract connective tissue;portion of connective tissue of lower respiratory tract -http://purl.obolibrary.org/obo/UBERON_0003580;lower respiratory tract connective tissue;textus connectivus of lower respiratory tract -http://purl.obolibrary.org/obo/UBERON_0003581;eyelid connective tissue;blepharon connective tissue -http://purl.obolibrary.org/obo/UBERON_0003581;eyelid connective tissue;connective tissue of blepharon -http://purl.obolibrary.org/obo/UBERON_0003581;eyelid connective tissue;connective tissue of eyelid -http://purl.obolibrary.org/obo/UBERON_0003582;nasopharynx connective tissue;connective tissue of nasal part of pharynx -http://purl.obolibrary.org/obo/UBERON_0003582;nasopharynx connective tissue;connective tissue of nasopharynx -http://purl.obolibrary.org/obo/UBERON_0003582;nasopharynx connective tissue;connective tissue of rhinopharynx -http://purl.obolibrary.org/obo/UBERON_0003582;nasopharynx connective tissue;nasal part of pharynx connective tissue -http://purl.obolibrary.org/obo/UBERON_0003582;nasopharynx connective tissue;nasal part of pharynx portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0003582;nasopharynx connective tissue;nasal part of pharynx textus connectivus -http://purl.obolibrary.org/obo/UBERON_0003582;nasopharynx connective tissue;nasopharynx portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0003582;nasopharynx connective tissue;nasopharynx textus connectivus -http://purl.obolibrary.org/obo/UBERON_0003582;nasopharynx connective tissue;portion of connective tissue of nasal part of pharynx -http://purl.obolibrary.org/obo/UBERON_0003582;nasopharynx connective tissue;portion of connective tissue of nasopharynx -http://purl.obolibrary.org/obo/UBERON_0003582;nasopharynx connective tissue;portion of connective tissue of rhinopharynx -http://purl.obolibrary.org/obo/UBERON_0003582;nasopharynx connective tissue;rhinopharynx connective tissue -http://purl.obolibrary.org/obo/UBERON_0003582;nasopharynx connective tissue;rhinopharynx portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0003582;nasopharynx connective tissue;rhinopharynx textus connectivus -http://purl.obolibrary.org/obo/UBERON_0003582;nasopharynx connective tissue;textus connectivus of nasal part of pharynx -http://purl.obolibrary.org/obo/UBERON_0003582;nasopharynx connective tissue;textus connectivus of nasopharynx -http://purl.obolibrary.org/obo/UBERON_0003582;nasopharynx connective tissue;textus connectivus of rhinopharynx -http://purl.obolibrary.org/obo/UBERON_0003583;larynx connective tissue;connective tissue of larynx -http://purl.obolibrary.org/obo/UBERON_0003583;larynx connective tissue;larynx portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0003583;larynx connective tissue;larynx textus connectivus -http://purl.obolibrary.org/obo/UBERON_0003583;larynx connective tissue;portion of connective tissue of larynx -http://purl.obolibrary.org/obo/UBERON_0003583;larynx connective tissue;textus connectivus of larynx -http://purl.obolibrary.org/obo/UBERON_0003584;mammary gland connective tissue;connective tissue of lactiferous gland -http://purl.obolibrary.org/obo/UBERON_0003584;mammary gland connective tissue;connective tissue of lobe of breast -http://purl.obolibrary.org/obo/UBERON_0003584;mammary gland connective tissue;connective tissue of lobe of mammary gland -http://purl.obolibrary.org/obo/UBERON_0003584;mammary gland connective tissue;connective tissue of mammary gland -http://purl.obolibrary.org/obo/UBERON_0003584;mammary gland connective tissue;lactiferous gland connective tissue -http://purl.obolibrary.org/obo/UBERON_0003584;mammary gland connective tissue;lactiferous gland portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0003584;mammary gland connective tissue;lactiferous gland stroma -http://purl.obolibrary.org/obo/UBERON_0003584;mammary gland connective tissue;mammary gland stroma -http://purl.obolibrary.org/obo/UBERON_0003584;mammary gland connective tissue;mammary stroma -http://purl.obolibrary.org/obo/UBERON_0003584;mammary gland connective tissue;stroma of lactiferous gland -http://purl.obolibrary.org/obo/UBERON_0003585;dermis connective tissue;connective tissue of dermis -http://purl.obolibrary.org/obo/UBERON_0003585;dermis connective tissue;dermis portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0003585;dermis connective tissue;dermis textus connectivus -http://purl.obolibrary.org/obo/UBERON_0003585;dermis connective tissue;portion of connective tissue of dermis -http://purl.obolibrary.org/obo/UBERON_0003585;dermis connective tissue;textus connectivus of dermis -http://purl.obolibrary.org/obo/UBERON_0003586;trunk connective tissue;connective tissue of torso -http://purl.obolibrary.org/obo/UBERON_0003586;trunk connective tissue;connective tissue of trunk -http://purl.obolibrary.org/obo/UBERON_0003586;trunk connective tissue;portion of connective tissue of torso -http://purl.obolibrary.org/obo/UBERON_0003586;trunk connective tissue;portion of connective tissue of trunk -http://purl.obolibrary.org/obo/UBERON_0003586;trunk connective tissue;textus connectivus of torso -http://purl.obolibrary.org/obo/UBERON_0003586;trunk connective tissue;textus connectivus of trunk -http://purl.obolibrary.org/obo/UBERON_0003586;trunk connective tissue;torso connective tissue -http://purl.obolibrary.org/obo/UBERON_0003586;trunk connective tissue;torso portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0003586;trunk connective tissue;torso textus connectivus -http://purl.obolibrary.org/obo/UBERON_0003586;trunk connective tissue;trunk portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0003586;trunk connective tissue;trunk textus connectivus -http://purl.obolibrary.org/obo/UBERON_0003587;limb connective tissue;connective tissue of limb -http://purl.obolibrary.org/obo/UBERON_0003587;limb connective tissue;limb portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0003587;limb connective tissue;limb textus connectivus -http://purl.obolibrary.org/obo/UBERON_0003587;limb connective tissue;portion of connective tissue of limb -http://purl.obolibrary.org/obo/UBERON_0003587;limb connective tissue;textus connectivus of limb -http://purl.obolibrary.org/obo/UBERON_0003588;forelimb connective tissue;connective tissue of anteriormost limb -http://purl.obolibrary.org/obo/UBERON_0003588;forelimb connective tissue;connective tissue of fore limb -http://purl.obolibrary.org/obo/UBERON_0003588;forelimb connective tissue;connective tissue of forelimb -http://purl.obolibrary.org/obo/UBERON_0003588;forelimb connective tissue;connective tissue of superior member -http://purl.obolibrary.org/obo/UBERON_0003588;forelimb connective tissue;connective tissue of upper extremity -http://purl.obolibrary.org/obo/UBERON_0003589;hindlimb connective tissue;connective tissue of hind limb -http://purl.obolibrary.org/obo/UBERON_0003589;hindlimb connective tissue;connective tissue of hindlimb -http://purl.obolibrary.org/obo/UBERON_0003589;hindlimb connective tissue;connective tissue of inferior member -http://purl.obolibrary.org/obo/UBERON_0003589;hindlimb connective tissue;connective tissue of lower extremity -http://purl.obolibrary.org/obo/UBERON_0003589;hindlimb connective tissue;hind limb connective tissue -http://purl.obolibrary.org/obo/UBERON_0003590;main bronchus connective tissue;bronchus principalis connective tissue -http://purl.obolibrary.org/obo/UBERON_0003590;main bronchus connective tissue;bronchus principalis portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0003590;main bronchus connective tissue;bronchus principalis textus connectivus -http://purl.obolibrary.org/obo/UBERON_0003590;main bronchus connective tissue;connective tissue of bronchus principalis -http://purl.obolibrary.org/obo/UBERON_0003590;main bronchus connective tissue;connective tissue of main bronchus -http://purl.obolibrary.org/obo/UBERON_0003590;main bronchus connective tissue;connective tissue of primary bronchus -http://purl.obolibrary.org/obo/UBERON_0003590;main bronchus connective tissue;connective tissue of principal bronchus -http://purl.obolibrary.org/obo/UBERON_0003591;lobar bronchus connective tissue;connective tissue of lobar bronchus -http://purl.obolibrary.org/obo/UBERON_0003591;lobar bronchus connective tissue;connective tissue of secondary bronchus -http://purl.obolibrary.org/obo/UBERON_0003592;bronchus connective tissue;bronchi connective tissue -http://purl.obolibrary.org/obo/UBERON_0003592;bronchus connective tissue;bronchi portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0003592;bronchus connective tissue;bronchi textus connectivus -http://purl.obolibrary.org/obo/UBERON_0003592;bronchus connective tissue;bronchial trunk connective tissue -http://purl.obolibrary.org/obo/UBERON_0003592;bronchus connective tissue;bronchial trunk portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0003592;bronchus connective tissue;bronchial trunk textus connectivus -http://purl.obolibrary.org/obo/UBERON_0003592;bronchus connective tissue;bronchus portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0003592;bronchus connective tissue;bronchus textus connectivus -http://purl.obolibrary.org/obo/UBERON_0003592;bronchus connective tissue;connective tissue of bronchi -http://purl.obolibrary.org/obo/UBERON_0003592;bronchus connective tissue;connective tissue of bronchial trunk -http://purl.obolibrary.org/obo/UBERON_0003592;bronchus connective tissue;connective tissue of bronchus -http://purl.obolibrary.org/obo/UBERON_0003592;bronchus connective tissue;portion of connective tissue of bronchi -http://purl.obolibrary.org/obo/UBERON_0003592;bronchus connective tissue;portion of connective tissue of bronchial trunk -http://purl.obolibrary.org/obo/UBERON_0003592;bronchus connective tissue;portion of connective tissue of bronchus -http://purl.obolibrary.org/obo/UBERON_0003592;bronchus connective tissue;textus connectivus of bronchi -http://purl.obolibrary.org/obo/UBERON_0003592;bronchus connective tissue;textus connectivus of bronchial trunk -http://purl.obolibrary.org/obo/UBERON_0003592;bronchus connective tissue;textus connectivus of bronchus -http://purl.obolibrary.org/obo/UBERON_0003593;thoracic cavity connective tissue;cavity of chest connective tissue -http://purl.obolibrary.org/obo/UBERON_0003593;thoracic cavity connective tissue;cavity of chest portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0003593;thoracic cavity connective tissue;cavity of chest textus connectivus -http://purl.obolibrary.org/obo/UBERON_0003593;thoracic cavity connective tissue;cavity of thorax connective tissue -http://purl.obolibrary.org/obo/UBERON_0003593;thoracic cavity connective tissue;cavity of thorax portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0003593;thoracic cavity connective tissue;cavity of thorax textus connectivus -http://purl.obolibrary.org/obo/UBERON_0003593;thoracic cavity connective tissue;chest cavity connective tissue -http://purl.obolibrary.org/obo/UBERON_0003593;thoracic cavity connective tissue;chest cavity portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0003593;thoracic cavity connective tissue;chest cavity textus connectivus -http://purl.obolibrary.org/obo/UBERON_0003593;thoracic cavity connective tissue;connective tissue of cavity of chest -http://purl.obolibrary.org/obo/UBERON_0003593;thoracic cavity connective tissue;connective tissue of cavity of thorax -http://purl.obolibrary.org/obo/UBERON_0003593;thoracic cavity connective tissue;connective tissue of chest cavity -http://purl.obolibrary.org/obo/UBERON_0003593;thoracic cavity connective tissue;connective tissue of pectoral cavity -http://purl.obolibrary.org/obo/UBERON_0003593;thoracic cavity connective tissue;connective tissue of thoracic cavity -http://purl.obolibrary.org/obo/UBERON_0003593;thoracic cavity connective tissue;pectoral cavity connective tissue -http://purl.obolibrary.org/obo/UBERON_0003593;thoracic cavity connective tissue;pectoral cavity portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0003593;thoracic cavity connective tissue;pectoral cavity textus connectivus -http://purl.obolibrary.org/obo/UBERON_0003593;thoracic cavity connective tissue;portion of connective tissue of cavity of chest -http://purl.obolibrary.org/obo/UBERON_0003593;thoracic cavity connective tissue;portion of connective tissue of cavity of thorax -http://purl.obolibrary.org/obo/UBERON_0003593;thoracic cavity connective tissue;portion of connective tissue of chest cavity -http://purl.obolibrary.org/obo/UBERON_0003593;thoracic cavity connective tissue;portion of connective tissue of pectoral cavity -http://purl.obolibrary.org/obo/UBERON_0003593;thoracic cavity connective tissue;portion of connective tissue of thoracic cavity -http://purl.obolibrary.org/obo/UBERON_0003593;thoracic cavity connective tissue;textus connectivus of cavity of chest -http://purl.obolibrary.org/obo/UBERON_0003593;thoracic cavity connective tissue;textus connectivus of cavity of thorax -http://purl.obolibrary.org/obo/UBERON_0003593;thoracic cavity connective tissue;textus connectivus of chest cavity -http://purl.obolibrary.org/obo/UBERON_0003593;thoracic cavity connective tissue;textus connectivus of pectoral cavity -http://purl.obolibrary.org/obo/UBERON_0003593;thoracic cavity connective tissue;textus connectivus of thoracic cavity -http://purl.obolibrary.org/obo/UBERON_0003593;thoracic cavity connective tissue;thoracic cavity portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0003593;thoracic cavity connective tissue;thoracic cavity textus connectivus -http://purl.obolibrary.org/obo/UBERON_0003594;pelvis connective tissue;connective tissue of pelvis -http://purl.obolibrary.org/obo/UBERON_0003594;pelvis connective tissue;pelvis portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0003594;pelvis connective tissue;pelvis textus connectivus -http://purl.obolibrary.org/obo/UBERON_0003594;pelvis connective tissue;portion of connective tissue of pelvis -http://purl.obolibrary.org/obo/UBERON_0003594;pelvis connective tissue;textus connectivus of pelvis -http://purl.obolibrary.org/obo/UBERON_0003595;pes connective tissue;connective tissue of foot -http://purl.obolibrary.org/obo/UBERON_0003595;pes connective tissue;connective tissue of terminal segment of free lower limb -http://purl.obolibrary.org/obo/UBERON_0003595;pes connective tissue;foot connective tissue -http://purl.obolibrary.org/obo/UBERON_0003595;pes connective tissue;textus connectivus of pes -http://purl.obolibrary.org/obo/UBERON_0003596;ankle connective tissue;connective tissue of ankle -http://purl.obolibrary.org/obo/UBERON_0003596;ankle connective tissue;tarsal region connective tissue -http://purl.obolibrary.org/obo/UBERON_0003597;manual digit connective tissue;connective tissue of digit of hand -http://purl.obolibrary.org/obo/UBERON_0003597;manual digit connective tissue;connective tissue of digitus manus -http://purl.obolibrary.org/obo/UBERON_0003597;manual digit connective tissue;connective tissue of finger -http://purl.obolibrary.org/obo/UBERON_0003597;manual digit connective tissue;connective tissue of hand digit -http://purl.obolibrary.org/obo/UBERON_0003597;manual digit connective tissue;fore limb digit connective tissue -http://purl.obolibrary.org/obo/UBERON_0003597;manual digit connective tissue;hand digit connective tissue -http://purl.obolibrary.org/obo/UBERON_0003598;manus connective tissue;connective tissue of hand -http://purl.obolibrary.org/obo/UBERON_0003598;manus connective tissue;connective tissue of terminal segment of free upper limb -http://purl.obolibrary.org/obo/UBERON_0003598;manus connective tissue;hand connective tissue -http://purl.obolibrary.org/obo/UBERON_0003599;tail connective tissue;connective tissue of post-vent region -http://purl.obolibrary.org/obo/UBERON_0003599;tail connective tissue;connective tissue of tail -http://purl.obolibrary.org/obo/UBERON_0003599;tail connective tissue;portion of connective tissue of post-vent region -http://purl.obolibrary.org/obo/UBERON_0003599;tail connective tissue;portion of connective tissue of tail -http://purl.obolibrary.org/obo/UBERON_0003599;tail connective tissue;post-vent region connective tissue -http://purl.obolibrary.org/obo/UBERON_0003599;tail connective tissue;post-vent region portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0003599;tail connective tissue;post-vent region textus connectivus -http://purl.obolibrary.org/obo/UBERON_0003599;tail connective tissue;tail portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0003599;tail connective tissue;tail textus connectivus -http://purl.obolibrary.org/obo/UBERON_0003599;tail connective tissue;textus connectivus of post-vent region -http://purl.obolibrary.org/obo/UBERON_0003599;tail connective tissue;textus connectivus of tail -http://purl.obolibrary.org/obo/UBERON_0003601;neck cartilage;cartilage of neck -http://purl.obolibrary.org/obo/UBERON_0003601;neck cartilage;cartilage of neck (volume) -http://purl.obolibrary.org/obo/UBERON_0003601;neck cartilage;neck (volume) cartilage -http://purl.obolibrary.org/obo/UBERON_0003603;lower respiratory tract cartilage;cartilage of lower respiratory tract -http://purl.obolibrary.org/obo/UBERON_0003604;trachea cartilage;cartilage of trachea -http://purl.obolibrary.org/obo/UBERON_0003604;trachea cartilage;cartilage of windpipe -http://purl.obolibrary.org/obo/UBERON_0003604;trachea cartilage;cartilaginous ring of trachea -http://purl.obolibrary.org/obo/UBERON_0003604;trachea cartilage;cartilaginous trachea cartilage -http://purl.obolibrary.org/obo/UBERON_0003604;trachea cartilage;cartilago trachealis -http://purl.obolibrary.org/obo/UBERON_0003604;trachea cartilage;tracheal cartilage -http://purl.obolibrary.org/obo/UBERON_0003604;trachea cartilage;windpipe cartilage -http://purl.obolibrary.org/obo/UBERON_0003605;eye skin gland;camera-type eye skin gland -http://purl.obolibrary.org/obo/UBERON_0003605;eye skin gland;camera-type eye skin glands -http://purl.obolibrary.org/obo/UBERON_0003605;eye skin gland;camera-type eye skin glands set -http://purl.obolibrary.org/obo/UBERON_0003605;eye skin gland;skin gland of camera-type eye -http://purl.obolibrary.org/obo/UBERON_0003605;eye skin gland;skin gland of vertebrate eye -http://purl.obolibrary.org/obo/UBERON_0003605;eye skin gland;skin glands of camera-type eye -http://purl.obolibrary.org/obo/UBERON_0003605;eye skin gland;skin glands of vertebrate eye -http://purl.obolibrary.org/obo/UBERON_0003605;eye skin gland;skin glands set of camera-type eye -http://purl.obolibrary.org/obo/UBERON_0003605;eye skin gland;skin glands set of vertebrate eye -http://purl.obolibrary.org/obo/UBERON_0003605;eye skin gland;vertebrate eye skin gland -http://purl.obolibrary.org/obo/UBERON_0003605;eye skin gland;vertebrate eye skin glands -http://purl.obolibrary.org/obo/UBERON_0003605;eye skin gland;vertebrate eye skin glands set -http://purl.obolibrary.org/obo/UBERON_0003606;limb long bone;long bone of limb -http://purl.obolibrary.org/obo/UBERON_0003607;forelimb long bone;anteriormost limb long bone -http://purl.obolibrary.org/obo/UBERON_0003607;forelimb long bone;fore limb long bone -http://purl.obolibrary.org/obo/UBERON_0003607;forelimb long bone;long bone of anteriormost limb -http://purl.obolibrary.org/obo/UBERON_0003607;forelimb long bone;long bone of fore limb -http://purl.obolibrary.org/obo/UBERON_0003607;forelimb long bone;long bone of forelimb -http://purl.obolibrary.org/obo/UBERON_0003607;forelimb long bone;long bone of superior member -http://purl.obolibrary.org/obo/UBERON_0003607;forelimb long bone;long bone of upper extremity -http://purl.obolibrary.org/obo/UBERON_0003607;forelimb long bone;superior member long bone -http://purl.obolibrary.org/obo/UBERON_0003607;forelimb long bone;upper extremity long bone -http://purl.obolibrary.org/obo/UBERON_0003608;hindlimb long bone;hind limb long bone -http://purl.obolibrary.org/obo/UBERON_0003608;hindlimb long bone;inferior member long bone -http://purl.obolibrary.org/obo/UBERON_0003608;hindlimb long bone;long bone of hind limb -http://purl.obolibrary.org/obo/UBERON_0003608;hindlimb long bone;long bone of hindlimb -http://purl.obolibrary.org/obo/UBERON_0003608;hindlimb long bone;long bone of inferior member -http://purl.obolibrary.org/obo/UBERON_0003608;hindlimb long bone;long bone of lower extremity -http://purl.obolibrary.org/obo/UBERON_0003608;hindlimb long bone;lower extremity long bone -http://purl.obolibrary.org/obo/UBERON_0003609;aorta elastic tissue;adult aorta elastic connective tissue -http://purl.obolibrary.org/obo/UBERON_0003609;aorta elastic tissue;adult aorta elastic tissue -http://purl.obolibrary.org/obo/UBERON_0003609;aorta elastic tissue;adult aorta textus connectivus elasticus -http://purl.obolibrary.org/obo/UBERON_0003609;aorta elastic tissue;aorta elastic connective tissue -http://purl.obolibrary.org/obo/UBERON_0003609;aorta elastic tissue;aorta elastic lamina -http://purl.obolibrary.org/obo/UBERON_0003609;aorta elastic tissue;aorta elastic laminae -http://purl.obolibrary.org/obo/UBERON_0003609;aorta elastic tissue;aorta textus connectivus elasticus -http://purl.obolibrary.org/obo/UBERON_0003609;aorta elastic tissue;dorsal aorta elastic connective tissue -http://purl.obolibrary.org/obo/UBERON_0003609;aorta elastic tissue;dorsal aorta elastic tissue -http://purl.obolibrary.org/obo/UBERON_0003609;aorta elastic tissue;dorsal aorta textus connectivus elasticus -http://purl.obolibrary.org/obo/UBERON_0003609;aorta elastic tissue;elastic connective tissue of adult aorta -http://purl.obolibrary.org/obo/UBERON_0003609;aorta elastic tissue;elastic connective tissue of aorta -http://purl.obolibrary.org/obo/UBERON_0003609;aorta elastic tissue;elastic connective tissue of dorsal aorta -http://purl.obolibrary.org/obo/UBERON_0003609;aorta elastic tissue;elastic connective tissue of trunk of aortic tree -http://purl.obolibrary.org/obo/UBERON_0003609;aorta elastic tissue;elastic tissue of adult aorta -http://purl.obolibrary.org/obo/UBERON_0003609;aorta elastic tissue;elastic tissue of aorta -http://purl.obolibrary.org/obo/UBERON_0003609;aorta elastic tissue;elastic tissue of dorsal aorta -http://purl.obolibrary.org/obo/UBERON_0003609;aorta elastic tissue;elastic tissue of trunk of aortic tree -http://purl.obolibrary.org/obo/UBERON_0003609;aorta elastic tissue;textus connectivus elasticus of adult aorta -http://purl.obolibrary.org/obo/UBERON_0003609;aorta elastic tissue;textus connectivus elasticus of aorta -http://purl.obolibrary.org/obo/UBERON_0003609;aorta elastic tissue;textus connectivus elasticus of dorsal aorta -http://purl.obolibrary.org/obo/UBERON_0003609;aorta elastic tissue;textus connectivus elasticus of trunk of aortic tree -http://purl.obolibrary.org/obo/UBERON_0003609;aorta elastic tissue;trunk of aortic tree elastic connective tissue -http://purl.obolibrary.org/obo/UBERON_0003609;aorta elastic tissue;trunk of aortic tree elastic tissue -http://purl.obolibrary.org/obo/UBERON_0003609;aorta elastic tissue;trunk of aortic tree textus connectivus elasticus -http://purl.obolibrary.org/obo/UBERON_0003610;heart elastic tissue;cardiac elastic tissue -http://purl.obolibrary.org/obo/UBERON_0003610;heart elastic tissue;elastic connective tissue of heart -http://purl.obolibrary.org/obo/UBERON_0003610;heart elastic tissue;elastic tissue of heart -http://purl.obolibrary.org/obo/UBERON_0003610;heart elastic tissue;heart elastic connective tissue -http://purl.obolibrary.org/obo/UBERON_0003610;heart elastic tissue;heart textus connectivus elasticus -http://purl.obolibrary.org/obo/UBERON_0003610;heart elastic tissue;textus connectivus elasticus of heart -http://purl.obolibrary.org/obo/UBERON_0003611;respiratory system elastic tissue;apparatus respiratorius elastic connective tissue -http://purl.obolibrary.org/obo/UBERON_0003611;respiratory system elastic tissue;apparatus respiratorius elastic tissue -http://purl.obolibrary.org/obo/UBERON_0003611;respiratory system elastic tissue;apparatus respiratorius textus connectivus elasticus -http://purl.obolibrary.org/obo/UBERON_0003611;respiratory system elastic tissue;elastic connective tissue of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0003611;respiratory system elastic tissue;elastic connective tissue of respiratory system -http://purl.obolibrary.org/obo/UBERON_0003611;respiratory system elastic tissue;elastic tissue of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0003611;respiratory system elastic tissue;elastic tissue of respiratory system -http://purl.obolibrary.org/obo/UBERON_0003611;respiratory system elastic tissue;respiratory system elastic connective tissue -http://purl.obolibrary.org/obo/UBERON_0003611;respiratory system elastic tissue;respiratory system textus connectivus elasticus -http://purl.obolibrary.org/obo/UBERON_0003611;respiratory system elastic tissue;textus connectivus elasticus of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0003611;respiratory system elastic tissue;textus connectivus elasticus of respiratory system -http://purl.obolibrary.org/obo/UBERON_0003613;cardiovascular system elastic tissue;cardiovascular system elastic connective tissue -http://purl.obolibrary.org/obo/UBERON_0003613;cardiovascular system elastic tissue;cardiovascular system textus connectivus elasticus -http://purl.obolibrary.org/obo/UBERON_0003613;cardiovascular system elastic tissue;circulatory system elastic connective tissue -http://purl.obolibrary.org/obo/UBERON_0003613;cardiovascular system elastic tissue;circulatory system elastic tissue -http://purl.obolibrary.org/obo/UBERON_0003613;cardiovascular system elastic tissue;circulatory system textus connectivus elasticus -http://purl.obolibrary.org/obo/UBERON_0003613;cardiovascular system elastic tissue;elastic connective tissue of cardiovascular system -http://purl.obolibrary.org/obo/UBERON_0003613;cardiovascular system elastic tissue;elastic connective tissue of circulatory system -http://purl.obolibrary.org/obo/UBERON_0003613;cardiovascular system elastic tissue;elastic tissue of cardiovascular system -http://purl.obolibrary.org/obo/UBERON_0003613;cardiovascular system elastic tissue;elastic tissue of circulatory system -http://purl.obolibrary.org/obo/UBERON_0003613;cardiovascular system elastic tissue;textus connectivus elasticus of cardiovascular system -http://purl.obolibrary.org/obo/UBERON_0003613;cardiovascular system elastic tissue;textus connectivus elasticus of circulatory system -http://purl.obolibrary.org/obo/UBERON_0003614;blood vessel elastic tissue;blood vessel elastic connective tissue -http://purl.obolibrary.org/obo/UBERON_0003614;blood vessel elastic tissue;blood vessel textus connectivus elasticus -http://purl.obolibrary.org/obo/UBERON_0003614;blood vessel elastic tissue;elastic connective tissue of blood vessel -http://purl.obolibrary.org/obo/UBERON_0003614;blood vessel elastic tissue;elastic tissue of blood vessel -http://purl.obolibrary.org/obo/UBERON_0003614;blood vessel elastic tissue;textus connectivus elasticus of blood vessel -http://purl.obolibrary.org/obo/UBERON_0003614;blood vessel elastic tissue;vascular elastic lamina -http://purl.obolibrary.org/obo/UBERON_0003614;blood vessel elastic tissue;vascular elastic laminae -http://purl.obolibrary.org/obo/UBERON_0003614;blood vessel elastic tissue;vascular elastic tissue -http://purl.obolibrary.org/obo/UBERON_0003615;lung elastic tissue;elastic connective tissue of lung -http://purl.obolibrary.org/obo/UBERON_0003615;lung elastic tissue;elastic tissue of lung -http://purl.obolibrary.org/obo/UBERON_0003615;lung elastic tissue;lung elastic connective tissue -http://purl.obolibrary.org/obo/UBERON_0003615;lung elastic tissue;lung textus connectivus elasticus -http://purl.obolibrary.org/obo/UBERON_0003615;lung elastic tissue;textus connectivus elasticus of lung -http://purl.obolibrary.org/obo/UBERON_0003616;bronchus elastic tissue;bronchi elastic connective tissue -http://purl.obolibrary.org/obo/UBERON_0003616;bronchus elastic tissue;bronchi elastic tissue -http://purl.obolibrary.org/obo/UBERON_0003616;bronchus elastic tissue;bronchi textus connectivus elasticus -http://purl.obolibrary.org/obo/UBERON_0003616;bronchus elastic tissue;bronchial trunk elastic connective tissue -http://purl.obolibrary.org/obo/UBERON_0003616;bronchus elastic tissue;bronchial trunk elastic tissue -http://purl.obolibrary.org/obo/UBERON_0003616;bronchus elastic tissue;bronchial trunk textus connectivus elasticus -http://purl.obolibrary.org/obo/UBERON_0003616;bronchus elastic tissue;bronchus elastic connective tissue -http://purl.obolibrary.org/obo/UBERON_0003616;bronchus elastic tissue;bronchus textus connectivus elasticus -http://purl.obolibrary.org/obo/UBERON_0003616;bronchus elastic tissue;elastic connective tissue of bronchi -http://purl.obolibrary.org/obo/UBERON_0003616;bronchus elastic tissue;elastic connective tissue of bronchial trunk -http://purl.obolibrary.org/obo/UBERON_0003616;bronchus elastic tissue;elastic connective tissue of bronchus -http://purl.obolibrary.org/obo/UBERON_0003616;bronchus elastic tissue;elastic tissue of bronchi -http://purl.obolibrary.org/obo/UBERON_0003616;bronchus elastic tissue;elastic tissue of bronchial trunk -http://purl.obolibrary.org/obo/UBERON_0003616;bronchus elastic tissue;elastic tissue of bronchus -http://purl.obolibrary.org/obo/UBERON_0003616;bronchus elastic tissue;textus connectivus elasticus of bronchi -http://purl.obolibrary.org/obo/UBERON_0003616;bronchus elastic tissue;textus connectivus elasticus of bronchial trunk -http://purl.obolibrary.org/obo/UBERON_0003616;bronchus elastic tissue;textus connectivus elasticus of bronchus -http://purl.obolibrary.org/obo/UBERON_0003617;trachea elastic tissue;cartilaginous trachea elastic connective tissue -http://purl.obolibrary.org/obo/UBERON_0003617;trachea elastic tissue;cartilaginous trachea elastic tissue -http://purl.obolibrary.org/obo/UBERON_0003617;trachea elastic tissue;cartilaginous trachea textus connectivus elasticus -http://purl.obolibrary.org/obo/UBERON_0003617;trachea elastic tissue;elastic connective tissue of cartilaginous trachea -http://purl.obolibrary.org/obo/UBERON_0003617;trachea elastic tissue;elastic connective tissue of vertebrate trachea -http://purl.obolibrary.org/obo/UBERON_0003617;trachea elastic tissue;elastic connective tissue of windpipe -http://purl.obolibrary.org/obo/UBERON_0003617;trachea elastic tissue;elastic tissue of cartilaginous trachea -http://purl.obolibrary.org/obo/UBERON_0003617;trachea elastic tissue;elastic tissue of vertebrate trachea -http://purl.obolibrary.org/obo/UBERON_0003617;trachea elastic tissue;elastic tissue of windpipe -http://purl.obolibrary.org/obo/UBERON_0003617;trachea elastic tissue;textus connectivus elasticus of cartilaginous trachea -http://purl.obolibrary.org/obo/UBERON_0003617;trachea elastic tissue;textus connectivus elasticus of vertebrate trachea -http://purl.obolibrary.org/obo/UBERON_0003617;trachea elastic tissue;textus connectivus elasticus of windpipe -http://purl.obolibrary.org/obo/UBERON_0003617;trachea elastic tissue;vertebrate trachea elastic connective tissue -http://purl.obolibrary.org/obo/UBERON_0003617;trachea elastic tissue;vertebrate trachea elastic tissue -http://purl.obolibrary.org/obo/UBERON_0003617;trachea elastic tissue;vertebrate trachea textus connectivus elasticus -http://purl.obolibrary.org/obo/UBERON_0003617;trachea elastic tissue;windpipe elastic connective tissue -http://purl.obolibrary.org/obo/UBERON_0003617;trachea elastic tissue;windpipe elastic tissue -http://purl.obolibrary.org/obo/UBERON_0003617;trachea elastic tissue;windpipe textus connectivus elasticus -http://purl.obolibrary.org/obo/UBERON_0003618;aorta tunica media;adult aorta tunica media -http://purl.obolibrary.org/obo/UBERON_0003618;aorta tunica media;dorsal aorta tunica media -http://purl.obolibrary.org/obo/UBERON_0003618;aorta tunica media;trunk of aortic tree tunica media -http://purl.obolibrary.org/obo/UBERON_0003618;aorta tunica media;tunica media of adult aorta -http://purl.obolibrary.org/obo/UBERON_0003618;aorta tunica media;tunica media of aorta -http://purl.obolibrary.org/obo/UBERON_0003618;aorta tunica media;tunica media of dorsal aorta -http://purl.obolibrary.org/obo/UBERON_0003618;aorta tunica media;tunica media of trunk of aortic tree -http://purl.obolibrary.org/obo/UBERON_0003619;aorta tunica intima;adult aorta tunica intima -http://purl.obolibrary.org/obo/UBERON_0003619;aorta tunica intima;dorsal aorta tunica intima -http://purl.obolibrary.org/obo/UBERON_0003619;aorta tunica intima;trunk of aortic tree tunica intima -http://purl.obolibrary.org/obo/UBERON_0003619;aorta tunica intima;tunica intima of adult aorta -http://purl.obolibrary.org/obo/UBERON_0003619;aorta tunica intima;tunica intima of aorta -http://purl.obolibrary.org/obo/UBERON_0003619;aorta tunica intima;tunica intima of dorsal aorta -http://purl.obolibrary.org/obo/UBERON_0003619;aorta tunica intima;tunica intima of trunk of aortic tree -http://purl.obolibrary.org/obo/UBERON_0003620;manual digit 1 phalanx;fore limb digit 1 phalanx -http://purl.obolibrary.org/obo/UBERON_0003620;manual digit 1 phalanx;hand digit 1 phalanx -http://purl.obolibrary.org/obo/UBERON_0003620;manual digit 1 phalanx;manual digit I phalanx -http://purl.obolibrary.org/obo/UBERON_0003620;manual digit 1 phalanx;phalanx of hand digit 1 -http://purl.obolibrary.org/obo/UBERON_0003620;manual digit 1 phalanx;phalanx of thumb -http://purl.obolibrary.org/obo/UBERON_0003620;manual digit 1 phalanx;thumb phalanx -http://purl.obolibrary.org/obo/UBERON_0003622;manual digit 2;2nd digit of hand -http://purl.obolibrary.org/obo/UBERON_0003622;manual digit 2;2nd finger -http://purl.obolibrary.org/obo/UBERON_0003622;manual digit 2;digit 2 of fore-paw -http://purl.obolibrary.org/obo/UBERON_0003622;manual digit 2;finger 2 -http://purl.obolibrary.org/obo/UBERON_0003622;manual digit 2;fore digit II -http://purl.obolibrary.org/obo/UBERON_0003622;manual digit 2;fore limb digit 2 -http://purl.obolibrary.org/obo/UBERON_0003622;manual digit 2;hand digit 2 -http://purl.obolibrary.org/obo/UBERON_0003622;manual digit 2;manual digit II -http://purl.obolibrary.org/obo/UBERON_0003622;manual digit 2;second digit of hand -http://purl.obolibrary.org/obo/UBERON_0003622;manual digit 2;second finger -http://purl.obolibrary.org/obo/UBERON_0003623;manual digit 3;3rd digit of hand -http://purl.obolibrary.org/obo/UBERON_0003623;manual digit 3;3rd finger -http://purl.obolibrary.org/obo/UBERON_0003623;manual digit 3;digit 3 of fore-paw -http://purl.obolibrary.org/obo/UBERON_0003623;manual digit 3;finger 3 -http://purl.obolibrary.org/obo/UBERON_0003623;manual digit 3;fore digit III -http://purl.obolibrary.org/obo/UBERON_0003623;manual digit 3;fore limb digit 3 -http://purl.obolibrary.org/obo/UBERON_0003623;manual digit 3;hand digit 3 -http://purl.obolibrary.org/obo/UBERON_0003623;manual digit 3;manual digit III -http://purl.obolibrary.org/obo/UBERON_0003623;manual digit 3;third digit of hand -http://purl.obolibrary.org/obo/UBERON_0003623;manual digit 3;third finger -http://purl.obolibrary.org/obo/UBERON_0003624;manual digit 4;4th digit of hand -http://purl.obolibrary.org/obo/UBERON_0003624;manual digit 4;4th finger -http://purl.obolibrary.org/obo/UBERON_0003624;manual digit 4;digit 4 of fore-paw -http://purl.obolibrary.org/obo/UBERON_0003624;manual digit 4;finger 4 -http://purl.obolibrary.org/obo/UBERON_0003624;manual digit 4;fore digit IV -http://purl.obolibrary.org/obo/UBERON_0003624;manual digit 4;fore limb digit 4 -http://purl.obolibrary.org/obo/UBERON_0003624;manual digit 4;fourth digit of hand -http://purl.obolibrary.org/obo/UBERON_0003624;manual digit 4;fourth finger -http://purl.obolibrary.org/obo/UBERON_0003624;manual digit 4;hand digit 4 -http://purl.obolibrary.org/obo/UBERON_0003624;manual digit 4;manual digit IV -http://purl.obolibrary.org/obo/UBERON_0003625;manual digit 5;5th digit of hand -http://purl.obolibrary.org/obo/UBERON_0003625;manual digit 5;5th finger -http://purl.obolibrary.org/obo/UBERON_0003625;manual digit 5;digit 5 of fore-paw -http://purl.obolibrary.org/obo/UBERON_0003625;manual digit 5;fifth digit of hand -http://purl.obolibrary.org/obo/UBERON_0003625;manual digit 5;fifth finger -http://purl.obolibrary.org/obo/UBERON_0003625;manual digit 5;finger 5 -http://purl.obolibrary.org/obo/UBERON_0003625;manual digit 5;fore digit V -http://purl.obolibrary.org/obo/UBERON_0003625;manual digit 5;fore limb digit 5 -http://purl.obolibrary.org/obo/UBERON_0003625;manual digit 5;hand digit 5 -http://purl.obolibrary.org/obo/UBERON_0003625;manual digit 5;manual digit V -http://purl.obolibrary.org/obo/UBERON_0003631;pedal digit 1;digit 1 of hind-paw -http://purl.obolibrary.org/obo/UBERON_0003631;pedal digit 1;digit 1 of pes -http://purl.obolibrary.org/obo/UBERON_0003631;pedal digit 1;digitus primus pedis -http://purl.obolibrary.org/obo/UBERON_0003631;pedal digit 1;foot digit 1 -http://purl.obolibrary.org/obo/UBERON_0003631;pedal digit 1;great toe -http://purl.obolibrary.org/obo/UBERON_0003631;pedal digit 1;hallex -http://purl.obolibrary.org/obo/UBERON_0003631;pedal digit 1;hallux -http://purl.obolibrary.org/obo/UBERON_0003631;pedal digit 1;"hallux; digitus primus [I]" -http://purl.obolibrary.org/obo/UBERON_0003631;pedal digit 1;hind digit 1 -http://purl.obolibrary.org/obo/UBERON_0003631;pedal digit 1;hind digit I -http://purl.obolibrary.org/obo/UBERON_0003631;pedal digit 1;hind limb digit 1 -http://purl.obolibrary.org/obo/UBERON_0003631;pedal digit 1;pedal digit 1 -http://purl.obolibrary.org/obo/UBERON_0003631;pedal digit 1;pedal digit I -http://purl.obolibrary.org/obo/UBERON_0003631;pedal digit 1;pes digit I -http://purl.obolibrary.org/obo/UBERON_0003631;pedal digit 1;preaxial digit of hindlimb -http://purl.obolibrary.org/obo/UBERON_0003631;pedal digit 1;toe 1 -http://purl.obolibrary.org/obo/UBERON_0003632;pedal digit 2;2nd toe -http://purl.obolibrary.org/obo/UBERON_0003632;pedal digit 2;digit 2 of hind-paw -http://purl.obolibrary.org/obo/UBERON_0003632;pedal digit 2;digitus secundus [ii] -http://purl.obolibrary.org/obo/UBERON_0003632;pedal digit 2;digitus secundus pedis -http://purl.obolibrary.org/obo/UBERON_0003632;pedal digit 2;foot digit 2 -http://purl.obolibrary.org/obo/UBERON_0003632;pedal digit 2;hind digit 2 -http://purl.obolibrary.org/obo/UBERON_0003632;pedal digit 2;hind digit II -http://purl.obolibrary.org/obo/UBERON_0003632;pedal digit 2;hind limb digit 2 -http://purl.obolibrary.org/obo/UBERON_0003632;pedal digit 2;pedal digit II -http://purl.obolibrary.org/obo/UBERON_0003632;pedal digit 2;pes digit II -http://purl.obolibrary.org/obo/UBERON_0003632;pedal digit 2;second digit of foot -http://purl.obolibrary.org/obo/UBERON_0003632;pedal digit 2;second toe -http://purl.obolibrary.org/obo/UBERON_0003632;pedal digit 2;toe 2 -http://purl.obolibrary.org/obo/UBERON_0003633;pedal digit 3;3rd toe -http://purl.obolibrary.org/obo/UBERON_0003633;pedal digit 3;digit 3 of hind-paw -http://purl.obolibrary.org/obo/UBERON_0003633;pedal digit 3;digitus tertius (III) pedis -http://purl.obolibrary.org/obo/UBERON_0003633;pedal digit 3;digitus tertius [iii] -http://purl.obolibrary.org/obo/UBERON_0003633;pedal digit 3;digitus tertius pedis -http://purl.obolibrary.org/obo/UBERON_0003633;pedal digit 3;foot digit 3 -http://purl.obolibrary.org/obo/UBERON_0003633;pedal digit 3;hind digit 3 -http://purl.obolibrary.org/obo/UBERON_0003633;pedal digit 3;hind digit III -http://purl.obolibrary.org/obo/UBERON_0003633;pedal digit 3;hind limb digit 3 -http://purl.obolibrary.org/obo/UBERON_0003633;pedal digit 3;pedal digit III -http://purl.obolibrary.org/obo/UBERON_0003633;pedal digit 3;pes digit III -http://purl.obolibrary.org/obo/UBERON_0003633;pedal digit 3;third digit of foot -http://purl.obolibrary.org/obo/UBERON_0003633;pedal digit 3;third toe -http://purl.obolibrary.org/obo/UBERON_0003633;pedal digit 3;toe 3 -http://purl.obolibrary.org/obo/UBERON_0003634;pedal digit 4;4th toe -http://purl.obolibrary.org/obo/UBERON_0003634;pedal digit 4;digit 4 of hind-paw -http://purl.obolibrary.org/obo/UBERON_0003634;pedal digit 4;digitus quartis pedis -http://purl.obolibrary.org/obo/UBERON_0003634;pedal digit 4;digitus quartus [iv] -http://purl.obolibrary.org/obo/UBERON_0003634;pedal digit 4;foot digit 4 -http://purl.obolibrary.org/obo/UBERON_0003634;pedal digit 4;fourth digit of foot -http://purl.obolibrary.org/obo/UBERON_0003634;pedal digit 4;fourth toe -http://purl.obolibrary.org/obo/UBERON_0003634;pedal digit 4;hind digit 4 -http://purl.obolibrary.org/obo/UBERON_0003634;pedal digit 4;hind digit IV -http://purl.obolibrary.org/obo/UBERON_0003634;pedal digit 4;hind limb digit 4 -http://purl.obolibrary.org/obo/UBERON_0003634;pedal digit 4;pedal digit IV -http://purl.obolibrary.org/obo/UBERON_0003634;pedal digit 4;pes digit IV -http://purl.obolibrary.org/obo/UBERON_0003634;pedal digit 4;toe 4 -http://purl.obolibrary.org/obo/UBERON_0003635;pedal digit 5;5th toe -http://purl.obolibrary.org/obo/UBERON_0003635;pedal digit 5;digit 5 of hind-paw -http://purl.obolibrary.org/obo/UBERON_0003635;pedal digit 5;digitus V of pes -http://purl.obolibrary.org/obo/UBERON_0003635;pedal digit 5;digitus minimus pedis -http://purl.obolibrary.org/obo/UBERON_0003635;pedal digit 5;"digitus minimus; digitus quintus [v]" -http://purl.obolibrary.org/obo/UBERON_0003635;pedal digit 5;digitus quintus [V] -http://purl.obolibrary.org/obo/UBERON_0003635;pedal digit 5;digitus quintus [V] pedis -http://purl.obolibrary.org/obo/UBERON_0003635;pedal digit 5;digitus quintus of pes -http://purl.obolibrary.org/obo/UBERON_0003635;pedal digit 5;digitus quintus pedis -http://purl.obolibrary.org/obo/UBERON_0003635;pedal digit 5;fifth digit of foot -http://purl.obolibrary.org/obo/UBERON_0003635;pedal digit 5;fifth toe -http://purl.obolibrary.org/obo/UBERON_0003635;pedal digit 5;foot digit 5 -http://purl.obolibrary.org/obo/UBERON_0003635;pedal digit 5;hind digit 5 -http://purl.obolibrary.org/obo/UBERON_0003635;pedal digit 5;hind digit V -http://purl.obolibrary.org/obo/UBERON_0003635;pedal digit 5;hind limb digit 5 -http://purl.obolibrary.org/obo/UBERON_0003635;pedal digit 5;pedal digit V -http://purl.obolibrary.org/obo/UBERON_0003635;pedal digit 5;pedal digitus minimus -http://purl.obolibrary.org/obo/UBERON_0003635;pedal digit 5;pes digit V -http://purl.obolibrary.org/obo/UBERON_0003635;pedal digit 5;toe 5 -http://purl.obolibrary.org/obo/UBERON_0003636;manual digit 2 phalanx;2 nd digit of hand digit long bone -http://purl.obolibrary.org/obo/UBERON_0003636;manual digit 2 phalanx;2 nd digit of hand long bone of digit -http://purl.obolibrary.org/obo/UBERON_0003636;manual digit 2 phalanx;2 nd digit of hand phalanx -http://purl.obolibrary.org/obo/UBERON_0003636;manual digit 2 phalanx;2 nd finger digit long bone -http://purl.obolibrary.org/obo/UBERON_0003636;manual digit 2 phalanx;2 nd finger long bone of digit -http://purl.obolibrary.org/obo/UBERON_0003636;manual digit 2 phalanx;2 nd finger phalanx -http://purl.obolibrary.org/obo/UBERON_0003636;manual digit 2 phalanx;digit long bone of 2 nd digit of hand -http://purl.obolibrary.org/obo/UBERON_0003636;manual digit 2 phalanx;digit long bone of 2 nd finger -http://purl.obolibrary.org/obo/UBERON_0003636;manual digit 2 phalanx;digit long bone of hand digit 2 -http://purl.obolibrary.org/obo/UBERON_0003636;manual digit 2 phalanx;digit long bone of second finger -http://purl.obolibrary.org/obo/UBERON_0003636;manual digit 2 phalanx;fore limb digit 2 phalanx -http://purl.obolibrary.org/obo/UBERON_0003636;manual digit 2 phalanx;hand digit 2 digit long bone -http://purl.obolibrary.org/obo/UBERON_0003636;manual digit 2 phalanx;hand digit 2 long bone of digit -http://purl.obolibrary.org/obo/UBERON_0003636;manual digit 2 phalanx;hand digit 2 phalanx -http://purl.obolibrary.org/obo/UBERON_0003636;manual digit 2 phalanx;index finger phalanx -http://purl.obolibrary.org/obo/UBERON_0003636;manual digit 2 phalanx;long bone of digit of 2 nd digit of hand -http://purl.obolibrary.org/obo/UBERON_0003636;manual digit 2 phalanx;long bone of digit of 2 nd finger -http://purl.obolibrary.org/obo/UBERON_0003636;manual digit 2 phalanx;long bone of digit of hand digit 2 -http://purl.obolibrary.org/obo/UBERON_0003636;manual digit 2 phalanx;long bone of digit of second finger -http://purl.obolibrary.org/obo/UBERON_0003636;manual digit 2 phalanx;manual digit II phalanx -http://purl.obolibrary.org/obo/UBERON_0003636;manual digit 2 phalanx;phalanx of 2 nd digit of hand -http://purl.obolibrary.org/obo/UBERON_0003636;manual digit 2 phalanx;phalanx of 2 nd finger -http://purl.obolibrary.org/obo/UBERON_0003636;manual digit 2 phalanx;phalanx of hand digit 2 -http://purl.obolibrary.org/obo/UBERON_0003636;manual digit 2 phalanx;phalanx of index finger -http://purl.obolibrary.org/obo/UBERON_0003636;manual digit 2 phalanx;phalanx of manual digit 2 -http://purl.obolibrary.org/obo/UBERON_0003636;manual digit 2 phalanx;phalanx of second finger -http://purl.obolibrary.org/obo/UBERON_0003636;manual digit 2 phalanx;second finger digit long bone -http://purl.obolibrary.org/obo/UBERON_0003636;manual digit 2 phalanx;second finger long bone of digit -http://purl.obolibrary.org/obo/UBERON_0003636;manual digit 2 phalanx;second finger phalanx -http://purl.obolibrary.org/obo/UBERON_0003637;manual digit 3 phalanx;3 rd digit of hand digit long bone -http://purl.obolibrary.org/obo/UBERON_0003637;manual digit 3 phalanx;3 rd digit of hand long bone of digit -http://purl.obolibrary.org/obo/UBERON_0003637;manual digit 3 phalanx;3 rd digit of hand phalanx -http://purl.obolibrary.org/obo/UBERON_0003637;manual digit 3 phalanx;3 rd finger digit long bone -http://purl.obolibrary.org/obo/UBERON_0003637;manual digit 3 phalanx;3 rd finger long bone of digit -http://purl.obolibrary.org/obo/UBERON_0003637;manual digit 3 phalanx;3 rd finger phalanx -http://purl.obolibrary.org/obo/UBERON_0003637;manual digit 3 phalanx;digit long bone of 3 rd digit of hand -http://purl.obolibrary.org/obo/UBERON_0003637;manual digit 3 phalanx;digit long bone of 3 rd finger -http://purl.obolibrary.org/obo/UBERON_0003637;manual digit 3 phalanx;digit long bone of hand digit 3 -http://purl.obolibrary.org/obo/UBERON_0003637;manual digit 3 phalanx;digit long bone of third finger -http://purl.obolibrary.org/obo/UBERON_0003637;manual digit 3 phalanx;fore limb digit 3 phalanx -http://purl.obolibrary.org/obo/UBERON_0003637;manual digit 3 phalanx;hand digit 3 digit long bone -http://purl.obolibrary.org/obo/UBERON_0003637;manual digit 3 phalanx;hand digit 3 long bone of digit -http://purl.obolibrary.org/obo/UBERON_0003637;manual digit 3 phalanx;hand digit 3 phalanx -http://purl.obolibrary.org/obo/UBERON_0003637;manual digit 3 phalanx;long bone of digit of 3 rd digit of hand -http://purl.obolibrary.org/obo/UBERON_0003637;manual digit 3 phalanx;long bone of digit of 3 rd finger -http://purl.obolibrary.org/obo/UBERON_0003637;manual digit 3 phalanx;long bone of digit of hand digit 3 -http://purl.obolibrary.org/obo/UBERON_0003637;manual digit 3 phalanx;long bone of digit of third finger -http://purl.obolibrary.org/obo/UBERON_0003637;manual digit 3 phalanx;manual digit III phalanx -http://purl.obolibrary.org/obo/UBERON_0003637;manual digit 3 phalanx;middle finger phalanx -http://purl.obolibrary.org/obo/UBERON_0003637;manual digit 3 phalanx;phalanx of 3 rd digit of hand -http://purl.obolibrary.org/obo/UBERON_0003637;manual digit 3 phalanx;phalanx of 3 rd finger -http://purl.obolibrary.org/obo/UBERON_0003637;manual digit 3 phalanx;phalanx of hand digit 3 -http://purl.obolibrary.org/obo/UBERON_0003637;manual digit 3 phalanx;phalanx of middle finger -http://purl.obolibrary.org/obo/UBERON_0003637;manual digit 3 phalanx;phalanx of third finger -http://purl.obolibrary.org/obo/UBERON_0003637;manual digit 3 phalanx;third finger digit long bone -http://purl.obolibrary.org/obo/UBERON_0003637;manual digit 3 phalanx;third finger long bone of digit -http://purl.obolibrary.org/obo/UBERON_0003637;manual digit 3 phalanx;third finger phalanx -http://purl.obolibrary.org/obo/UBERON_0003638;manual digit 4 phalanx;4 th digit of hand digit long bone -http://purl.obolibrary.org/obo/UBERON_0003638;manual digit 4 phalanx;4 th digit of hand long bone of digit -http://purl.obolibrary.org/obo/UBERON_0003638;manual digit 4 phalanx;4 th digit of hand phalanx -http://purl.obolibrary.org/obo/UBERON_0003638;manual digit 4 phalanx;4 th finger digit long bone -http://purl.obolibrary.org/obo/UBERON_0003638;manual digit 4 phalanx;4 th finger long bone of digit -http://purl.obolibrary.org/obo/UBERON_0003638;manual digit 4 phalanx;4 th finger phalanx -http://purl.obolibrary.org/obo/UBERON_0003638;manual digit 4 phalanx;digit long bone of 4 th digit of hand -http://purl.obolibrary.org/obo/UBERON_0003638;manual digit 4 phalanx;digit long bone of 4 th finger -http://purl.obolibrary.org/obo/UBERON_0003638;manual digit 4 phalanx;digit long bone of fourth finger -http://purl.obolibrary.org/obo/UBERON_0003638;manual digit 4 phalanx;digit long bone of hand digit 4 -http://purl.obolibrary.org/obo/UBERON_0003638;manual digit 4 phalanx;fore limb digit 4 phalanx -http://purl.obolibrary.org/obo/UBERON_0003638;manual digit 4 phalanx;fourth finger digit long bone -http://purl.obolibrary.org/obo/UBERON_0003638;manual digit 4 phalanx;fourth finger long bone of digit -http://purl.obolibrary.org/obo/UBERON_0003638;manual digit 4 phalanx;fourth finger phalanx -http://purl.obolibrary.org/obo/UBERON_0003638;manual digit 4 phalanx;hand digit 4 digit long bone -http://purl.obolibrary.org/obo/UBERON_0003638;manual digit 4 phalanx;hand digit 4 long bone of digit -http://purl.obolibrary.org/obo/UBERON_0003638;manual digit 4 phalanx;hand digit 4 phalanx -http://purl.obolibrary.org/obo/UBERON_0003638;manual digit 4 phalanx;long bone of digit of 4 th digit of hand -http://purl.obolibrary.org/obo/UBERON_0003638;manual digit 4 phalanx;long bone of digit of 4 th finger -http://purl.obolibrary.org/obo/UBERON_0003638;manual digit 4 phalanx;long bone of digit of fourth finger -http://purl.obolibrary.org/obo/UBERON_0003638;manual digit 4 phalanx;long bone of digit of hand digit 4 -http://purl.obolibrary.org/obo/UBERON_0003638;manual digit 4 phalanx;manual digit IV phalanx -http://purl.obolibrary.org/obo/UBERON_0003638;manual digit 4 phalanx;phalanx of 4 th digit of hand -http://purl.obolibrary.org/obo/UBERON_0003638;manual digit 4 phalanx;phalanx of 4 th finger -http://purl.obolibrary.org/obo/UBERON_0003638;manual digit 4 phalanx;phalanx of fourth finger -http://purl.obolibrary.org/obo/UBERON_0003638;manual digit 4 phalanx;phalanx of hand digit 4 -http://purl.obolibrary.org/obo/UBERON_0003638;manual digit 4 phalanx;phalanx of ring finger -http://purl.obolibrary.org/obo/UBERON_0003638;manual digit 4 phalanx;ring finger phalanx -http://purl.obolibrary.org/obo/UBERON_0003639;manual digit 5 phalanx;5 th digit of hand digit long bone -http://purl.obolibrary.org/obo/UBERON_0003639;manual digit 5 phalanx;5 th digit of hand long bone of digit -http://purl.obolibrary.org/obo/UBERON_0003639;manual digit 5 phalanx;5 th digit of hand phalanx -http://purl.obolibrary.org/obo/UBERON_0003639;manual digit 5 phalanx;5 th finger digit long bone -http://purl.obolibrary.org/obo/UBERON_0003639;manual digit 5 phalanx;5 th finger long bone of digit -http://purl.obolibrary.org/obo/UBERON_0003639;manual digit 5 phalanx;5 th finger phalanx -http://purl.obolibrary.org/obo/UBERON_0003639;manual digit 5 phalanx;digit long bone of 5 th digit of hand -http://purl.obolibrary.org/obo/UBERON_0003639;manual digit 5 phalanx;digit long bone of 5 th finger -http://purl.obolibrary.org/obo/UBERON_0003639;manual digit 5 phalanx;digit long bone of fifth finger -http://purl.obolibrary.org/obo/UBERON_0003639;manual digit 5 phalanx;digit long bone of hand digit 5 -http://purl.obolibrary.org/obo/UBERON_0003639;manual digit 5 phalanx;fifth finger digit long bone -http://purl.obolibrary.org/obo/UBERON_0003639;manual digit 5 phalanx;fifth finger long bone of digit -http://purl.obolibrary.org/obo/UBERON_0003639;manual digit 5 phalanx;fifth finger phalanx -http://purl.obolibrary.org/obo/UBERON_0003639;manual digit 5 phalanx;fore limb digit 5 phalanx -http://purl.obolibrary.org/obo/UBERON_0003639;manual digit 5 phalanx;hand digit 5 digit long bone -http://purl.obolibrary.org/obo/UBERON_0003639;manual digit 5 phalanx;hand digit 5 long bone of digit -http://purl.obolibrary.org/obo/UBERON_0003639;manual digit 5 phalanx;hand digit 5 phalanx -http://purl.obolibrary.org/obo/UBERON_0003639;manual digit 5 phalanx;little finger phalanx -http://purl.obolibrary.org/obo/UBERON_0003639;manual digit 5 phalanx;long bone of digit of 5 th digit of hand -http://purl.obolibrary.org/obo/UBERON_0003639;manual digit 5 phalanx;long bone of digit of 5 th finger -http://purl.obolibrary.org/obo/UBERON_0003639;manual digit 5 phalanx;long bone of digit of fifth finger -http://purl.obolibrary.org/obo/UBERON_0003639;manual digit 5 phalanx;long bone of digit of hand digit 5 -http://purl.obolibrary.org/obo/UBERON_0003639;manual digit 5 phalanx;manual digit V phalanx -http://purl.obolibrary.org/obo/UBERON_0003639;manual digit 5 phalanx;phalanx of 5 th digit of hand -http://purl.obolibrary.org/obo/UBERON_0003639;manual digit 5 phalanx;phalanx of 5 th finger -http://purl.obolibrary.org/obo/UBERON_0003639;manual digit 5 phalanx;phalanx of 5th finger -http://purl.obolibrary.org/obo/UBERON_0003639;manual digit 5 phalanx;phalanx of fifth digit of hand -http://purl.obolibrary.org/obo/UBERON_0003639;manual digit 5 phalanx;phalanx of fifth finger -http://purl.obolibrary.org/obo/UBERON_0003639;manual digit 5 phalanx;phalanx of hand digit 5 -http://purl.obolibrary.org/obo/UBERON_0003639;manual digit 5 phalanx;phalanx of little finger -http://purl.obolibrary.org/obo/UBERON_0003639;manual digit 5 phalanx;phalanx of manual digitus minimus -http://purl.obolibrary.org/obo/UBERON_0003640;pedal digit 1 phalanx;big toe phalanx -http://purl.obolibrary.org/obo/UBERON_0003640;pedal digit 1 phalanx;digit long bone of foot digit 1 -http://purl.obolibrary.org/obo/UBERON_0003640;pedal digit 1 phalanx;digit long bone of hallux -http://purl.obolibrary.org/obo/UBERON_0003640;pedal digit 1 phalanx;foot digit 1 digit long bone -http://purl.obolibrary.org/obo/UBERON_0003640;pedal digit 1 phalanx;foot digit 1 long bone of digit -http://purl.obolibrary.org/obo/UBERON_0003640;pedal digit 1 phalanx;foot digit 1 phalanx -http://purl.obolibrary.org/obo/UBERON_0003640;pedal digit 1 phalanx;hallux digit long bone -http://purl.obolibrary.org/obo/UBERON_0003640;pedal digit 1 phalanx;hallux long bone of digit -http://purl.obolibrary.org/obo/UBERON_0003640;pedal digit 1 phalanx;hallux phalanx -http://purl.obolibrary.org/obo/UBERON_0003640;pedal digit 1 phalanx;hind limb digit 1 phalanx -http://purl.obolibrary.org/obo/UBERON_0003640;pedal digit 1 phalanx;long bone of digit of foot digit 1 -http://purl.obolibrary.org/obo/UBERON_0003640;pedal digit 1 phalanx;long bone of digit of hallux -http://purl.obolibrary.org/obo/UBERON_0003640;pedal digit 1 phalanx;pedal digit I phalanx -http://purl.obolibrary.org/obo/UBERON_0003640;pedal digit 1 phalanx;phalanx of big toe -http://purl.obolibrary.org/obo/UBERON_0003640;pedal digit 1 phalanx;phalanx of first digit of foot -http://purl.obolibrary.org/obo/UBERON_0003640;pedal digit 1 phalanx;phalanx of foot digit 1 -http://purl.obolibrary.org/obo/UBERON_0003640;pedal digit 1 phalanx;phalanx of great toe -http://purl.obolibrary.org/obo/UBERON_0003640;pedal digit 1 phalanx;phalanx of hallux -http://purl.obolibrary.org/obo/UBERON_0003641;pedal digit 2 phalanx;digit long bone of foot digit 2 -http://purl.obolibrary.org/obo/UBERON_0003641;pedal digit 2 phalanx;foot digit 2 digit long bone -http://purl.obolibrary.org/obo/UBERON_0003641;pedal digit 2 phalanx;foot digit 2 long bone of digit -http://purl.obolibrary.org/obo/UBERON_0003641;pedal digit 2 phalanx;foot digit 2 phalanx -http://purl.obolibrary.org/obo/UBERON_0003641;pedal digit 2 phalanx;hind limb digit 2 phalanx -http://purl.obolibrary.org/obo/UBERON_0003641;pedal digit 2 phalanx;long bone of digit of foot digit 2 -http://purl.obolibrary.org/obo/UBERON_0003641;pedal digit 2 phalanx;pedal digit II phalanx -http://purl.obolibrary.org/obo/UBERON_0003641;pedal digit 2 phalanx;phalanx of foot digit 2 -http://purl.obolibrary.org/obo/UBERON_0003641;pedal digit 2 phalanx;phalanx of second toe -http://purl.obolibrary.org/obo/UBERON_0003641;pedal digit 2 phalanx;second toe phalanx -http://purl.obolibrary.org/obo/UBERON_0003642;pedal digit 3 phalanx;digit long bone of foot digit 3 -http://purl.obolibrary.org/obo/UBERON_0003642;pedal digit 3 phalanx;foot digit 3 digit long bone -http://purl.obolibrary.org/obo/UBERON_0003642;pedal digit 3 phalanx;foot digit 3 long bone of digit -http://purl.obolibrary.org/obo/UBERON_0003642;pedal digit 3 phalanx;foot digit 3 phalanx -http://purl.obolibrary.org/obo/UBERON_0003642;pedal digit 3 phalanx;hind limb digit 3 phalanx -http://purl.obolibrary.org/obo/UBERON_0003642;pedal digit 3 phalanx;long bone of digit of foot digit 3 -http://purl.obolibrary.org/obo/UBERON_0003642;pedal digit 3 phalanx;pedal digit III phalanx -http://purl.obolibrary.org/obo/UBERON_0003642;pedal digit 3 phalanx;phalanx of foot digit 3 -http://purl.obolibrary.org/obo/UBERON_0003642;pedal digit 3 phalanx;phalanx of third toe -http://purl.obolibrary.org/obo/UBERON_0003642;pedal digit 3 phalanx;third toe phalanx -http://purl.obolibrary.org/obo/UBERON_0003643;respiratory system arterial blood vessel; -http://purl.obolibrary.org/obo/UBERON_0003644;kidney arterial blood vessel; -http://purl.obolibrary.org/obo/UBERON_0003645;metacarpal bone of digit 1;finger 1 metacarpus -http://purl.obolibrary.org/obo/UBERON_0003645;metacarpal bone of digit 1;first digit of hand metacarpal -http://purl.obolibrary.org/obo/UBERON_0003645;metacarpal bone of digit 1;first digit of hand metacarpal bone -http://purl.obolibrary.org/obo/UBERON_0003645;metacarpal bone of digit 1;first metacarpal bone -http://purl.obolibrary.org/obo/UBERON_0003645;metacarpal bone of digit 1;hand digit 1 metacarpal -http://purl.obolibrary.org/obo/UBERON_0003645;metacarpal bone of digit 1;hand digit 1 metacarpal bone -http://purl.obolibrary.org/obo/UBERON_0003645;metacarpal bone of digit 1;manual digit 1 metacarpus -http://purl.obolibrary.org/obo/UBERON_0003645;metacarpal bone of digit 1;metacarpal 1 -http://purl.obolibrary.org/obo/UBERON_0003645;metacarpal bone of digit 1;metacarpal I -http://purl.obolibrary.org/obo/UBERON_0003645;metacarpal bone of digit 1;metacarpal bone digit 1 -http://purl.obolibrary.org/obo/UBERON_0003645;metacarpal bone of digit 1;metacarpal bone of digit I -http://purl.obolibrary.org/obo/UBERON_0003645;metacarpal bone of digit 1;metacarpal bone of first digit of hand -http://purl.obolibrary.org/obo/UBERON_0003645;metacarpal bone of digit 1;metacarpal bone of hand digit 1 -http://purl.obolibrary.org/obo/UBERON_0003645;metacarpal bone of digit 1;metacarpal bone of thumb -http://purl.obolibrary.org/obo/UBERON_0003645;metacarpal bone of digit 1;metacarpal of first digit of hand -http://purl.obolibrary.org/obo/UBERON_0003645;metacarpal bone of digit 1;metacarpal of hand digit 1 -http://purl.obolibrary.org/obo/UBERON_0003645;metacarpal bone of digit 1;metacarpal of thumb -http://purl.obolibrary.org/obo/UBERON_0003645;metacarpal bone of digit 1;thumb metacarpal -http://purl.obolibrary.org/obo/UBERON_0003645;metacarpal bone of digit 1;thumb metacarpal bone -http://purl.obolibrary.org/obo/UBERON_0003646;metacarpal bone of digit 2;2 nd digit of hand metacarpal -http://purl.obolibrary.org/obo/UBERON_0003646;metacarpal bone of digit 2;2 nd digit of hand metacarpal bone -http://purl.obolibrary.org/obo/UBERON_0003646;metacarpal bone of digit 2;2 nd finger metacarpal -http://purl.obolibrary.org/obo/UBERON_0003646;metacarpal bone of digit 2;2 nd finger metacarpal bone -http://purl.obolibrary.org/obo/UBERON_0003646;metacarpal bone of digit 2;finger 2 metacarpus -http://purl.obolibrary.org/obo/UBERON_0003646;metacarpal bone of digit 2;hand digit 2 metacarpal -http://purl.obolibrary.org/obo/UBERON_0003646;metacarpal bone of digit 2;hand digit 2 metacarpal bone -http://purl.obolibrary.org/obo/UBERON_0003646;metacarpal bone of digit 2;manual digit 2 metacarpus -http://purl.obolibrary.org/obo/UBERON_0003646;metacarpal bone of digit 2;metacarpal 2 -http://purl.obolibrary.org/obo/UBERON_0003646;metacarpal bone of digit 2;metacarpal II -http://purl.obolibrary.org/obo/UBERON_0003646;metacarpal bone of digit 2;metacarpal bone digit 2 -http://purl.obolibrary.org/obo/UBERON_0003646;metacarpal bone of digit 2;metacarpal bone of 2 nd digit of hand -http://purl.obolibrary.org/obo/UBERON_0003646;metacarpal bone of digit 2;metacarpal bone of 2 nd finger -http://purl.obolibrary.org/obo/UBERON_0003646;metacarpal bone of digit 2;metacarpal bone of digit II -http://purl.obolibrary.org/obo/UBERON_0003646;metacarpal bone of digit 2;metacarpal bone of hand digit 2 -http://purl.obolibrary.org/obo/UBERON_0003646;metacarpal bone of digit 2;metacarpal bone of second finger -http://purl.obolibrary.org/obo/UBERON_0003646;metacarpal bone of digit 2;metacarpal of 2 nd digit of hand -http://purl.obolibrary.org/obo/UBERON_0003646;metacarpal bone of digit 2;metacarpal of 2 nd finger -http://purl.obolibrary.org/obo/UBERON_0003646;metacarpal bone of digit 2;metacarpal of hand digit 2 -http://purl.obolibrary.org/obo/UBERON_0003646;metacarpal bone of digit 2;metacarpal of second finger -http://purl.obolibrary.org/obo/UBERON_0003646;metacarpal bone of digit 2;second finger metacarpal -http://purl.obolibrary.org/obo/UBERON_0003646;metacarpal bone of digit 2;second finger metacarpal bone -http://purl.obolibrary.org/obo/UBERON_0003646;metacarpal bone of digit 2;second metacarpal bone -http://purl.obolibrary.org/obo/UBERON_0003647;metacarpal bone of digit 3;3 rd digit of hand metacarpal -http://purl.obolibrary.org/obo/UBERON_0003647;metacarpal bone of digit 3;3 rd digit of hand metacarpal bone -http://purl.obolibrary.org/obo/UBERON_0003647;metacarpal bone of digit 3;3 rd finger metacarpal -http://purl.obolibrary.org/obo/UBERON_0003647;metacarpal bone of digit 3;3 rd finger metacarpal bone -http://purl.obolibrary.org/obo/UBERON_0003647;metacarpal bone of digit 3;finger 3 metacarpus -http://purl.obolibrary.org/obo/UBERON_0003647;metacarpal bone of digit 3;hand digit 3 metacarpal -http://purl.obolibrary.org/obo/UBERON_0003647;metacarpal bone of digit 3;hand digit 3 metacarpal bone -http://purl.obolibrary.org/obo/UBERON_0003647;metacarpal bone of digit 3;manual digit 3 metacarpus -http://purl.obolibrary.org/obo/UBERON_0003647;metacarpal bone of digit 3;metacarpal 3 -http://purl.obolibrary.org/obo/UBERON_0003647;metacarpal bone of digit 3;metacarpal III -http://purl.obolibrary.org/obo/UBERON_0003647;metacarpal bone of digit 3;metacarpal bone digit 3 -http://purl.obolibrary.org/obo/UBERON_0003647;metacarpal bone of digit 3;metacarpal bone of 3 rd digit of hand -http://purl.obolibrary.org/obo/UBERON_0003647;metacarpal bone of digit 3;metacarpal bone of 3 rd finger -http://purl.obolibrary.org/obo/UBERON_0003647;metacarpal bone of digit 3;metacarpal bone of digit III -http://purl.obolibrary.org/obo/UBERON_0003647;metacarpal bone of digit 3;metacarpal bone of hand digit 3 -http://purl.obolibrary.org/obo/UBERON_0003647;metacarpal bone of digit 3;metacarpal bone of third finger -http://purl.obolibrary.org/obo/UBERON_0003647;metacarpal bone of digit 3;metacarpal of 3 rd digit of hand -http://purl.obolibrary.org/obo/UBERON_0003647;metacarpal bone of digit 3;metacarpal of 3 rd finger -http://purl.obolibrary.org/obo/UBERON_0003647;metacarpal bone of digit 3;metacarpal of hand digit 3 -http://purl.obolibrary.org/obo/UBERON_0003647;metacarpal bone of digit 3;metacarpal of third finger -http://purl.obolibrary.org/obo/UBERON_0003647;metacarpal bone of digit 3;third finger metacarpal -http://purl.obolibrary.org/obo/UBERON_0003647;metacarpal bone of digit 3;third finger metacarpal bone -http://purl.obolibrary.org/obo/UBERON_0003647;metacarpal bone of digit 3;third metacarpal bone -http://purl.obolibrary.org/obo/UBERON_0003648;metacarpal bone of digit 4;4 th digit of hand metacarpal -http://purl.obolibrary.org/obo/UBERON_0003648;metacarpal bone of digit 4;4 th digit of hand metacarpal bone -http://purl.obolibrary.org/obo/UBERON_0003648;metacarpal bone of digit 4;4 th finger metacarpal -http://purl.obolibrary.org/obo/UBERON_0003648;metacarpal bone of digit 4;4 th finger metacarpal bone -http://purl.obolibrary.org/obo/UBERON_0003648;metacarpal bone of digit 4;finger 4 metacarpus -http://purl.obolibrary.org/obo/UBERON_0003648;metacarpal bone of digit 4;fourth finger metacarpal -http://purl.obolibrary.org/obo/UBERON_0003648;metacarpal bone of digit 4;fourth finger metacarpal bone -http://purl.obolibrary.org/obo/UBERON_0003648;metacarpal bone of digit 4;fourth metacarpal bone -http://purl.obolibrary.org/obo/UBERON_0003648;metacarpal bone of digit 4;hand digit 4 metacarpal -http://purl.obolibrary.org/obo/UBERON_0003648;metacarpal bone of digit 4;hand digit 4 metacarpal bone -http://purl.obolibrary.org/obo/UBERON_0003648;metacarpal bone of digit 4;manual digit 4 metacarpus -http://purl.obolibrary.org/obo/UBERON_0003648;metacarpal bone of digit 4;metacarpal 4 -http://purl.obolibrary.org/obo/UBERON_0003648;metacarpal bone of digit 4;metacarpal IV -http://purl.obolibrary.org/obo/UBERON_0003648;metacarpal bone of digit 4;metacarpal bone digit 4 -http://purl.obolibrary.org/obo/UBERON_0003648;metacarpal bone of digit 4;metacarpal bone of 4 th digit of hand -http://purl.obolibrary.org/obo/UBERON_0003648;metacarpal bone of digit 4;metacarpal bone of 4 th finger -http://purl.obolibrary.org/obo/UBERON_0003648;metacarpal bone of digit 4;metacarpal bone of digit IV -http://purl.obolibrary.org/obo/UBERON_0003648;metacarpal bone of digit 4;metacarpal bone of fourth finger -http://purl.obolibrary.org/obo/UBERON_0003648;metacarpal bone of digit 4;metacarpal bone of hand digit 4 -http://purl.obolibrary.org/obo/UBERON_0003648;metacarpal bone of digit 4;metacarpal of 4 th digit of hand -http://purl.obolibrary.org/obo/UBERON_0003648;metacarpal bone of digit 4;metacarpal of 4 th finger -http://purl.obolibrary.org/obo/UBERON_0003648;metacarpal bone of digit 4;metacarpal of fourth finger -http://purl.obolibrary.org/obo/UBERON_0003648;metacarpal bone of digit 4;metacarpal of hand digit 4 -http://purl.obolibrary.org/obo/UBERON_0003649;metacarpal bone of digit 5;5 th digit of hand metacarpal -http://purl.obolibrary.org/obo/UBERON_0003649;metacarpal bone of digit 5;5 th digit of hand metacarpal bone -http://purl.obolibrary.org/obo/UBERON_0003649;metacarpal bone of digit 5;5 th finger metacarpal -http://purl.obolibrary.org/obo/UBERON_0003649;metacarpal bone of digit 5;5 th finger metacarpal bone -http://purl.obolibrary.org/obo/UBERON_0003649;metacarpal bone of digit 5;fifth finger metacarpal -http://purl.obolibrary.org/obo/UBERON_0003649;metacarpal bone of digit 5;fifth finger metacarpal bone -http://purl.obolibrary.org/obo/UBERON_0003649;metacarpal bone of digit 5;fifth metacarpal bone -http://purl.obolibrary.org/obo/UBERON_0003649;metacarpal bone of digit 5;finger 5 metacarpus -http://purl.obolibrary.org/obo/UBERON_0003649;metacarpal bone of digit 5;hand digit 5 metacarpal -http://purl.obolibrary.org/obo/UBERON_0003649;metacarpal bone of digit 5;hand digit 5 metacarpal bone -http://purl.obolibrary.org/obo/UBERON_0003649;metacarpal bone of digit 5;manual digit 5 metacarpus -http://purl.obolibrary.org/obo/UBERON_0003649;metacarpal bone of digit 5;metacarpal 5 -http://purl.obolibrary.org/obo/UBERON_0003649;metacarpal bone of digit 5;metacarpal V -http://purl.obolibrary.org/obo/UBERON_0003649;metacarpal bone of digit 5;metacarpal bone digit 5 -http://purl.obolibrary.org/obo/UBERON_0003649;metacarpal bone of digit 5;metacarpal bone of 5 th digit of hand -http://purl.obolibrary.org/obo/UBERON_0003649;metacarpal bone of digit 5;metacarpal bone of 5 th finger -http://purl.obolibrary.org/obo/UBERON_0003649;metacarpal bone of digit 5;metacarpal bone of digit V -http://purl.obolibrary.org/obo/UBERON_0003649;metacarpal bone of digit 5;metacarpal bone of fifth finger -http://purl.obolibrary.org/obo/UBERON_0003649;metacarpal bone of digit 5;metacarpal bone of hand digit 5 -http://purl.obolibrary.org/obo/UBERON_0003649;metacarpal bone of digit 5;metacarpal of 5 th digit of hand -http://purl.obolibrary.org/obo/UBERON_0003649;metacarpal bone of digit 5;metacarpal of 5 th finger -http://purl.obolibrary.org/obo/UBERON_0003649;metacarpal bone of digit 5;metacarpal of fifth finger -http://purl.obolibrary.org/obo/UBERON_0003649;metacarpal bone of digit 5;metacarpal of hand digit 5 -http://purl.obolibrary.org/obo/UBERON_0003650;metatarsal bone of digit 1;first metatarsal bone -http://purl.obolibrary.org/obo/UBERON_0003650;metatarsal bone of digit 1;foot digit 1 metatarsal bone -http://purl.obolibrary.org/obo/UBERON_0003650;metatarsal bone of digit 1;hallux metatarsal bone -http://purl.obolibrary.org/obo/UBERON_0003650;metatarsal bone of digit 1;metatarsal 1 -http://purl.obolibrary.org/obo/UBERON_0003650;metatarsal bone of digit 1;metatarsal I -http://purl.obolibrary.org/obo/UBERON_0003650;metatarsal bone of digit 1;metatarsal bone digit 1 -http://purl.obolibrary.org/obo/UBERON_0003650;metatarsal bone of digit 1;metatarsal bone of digit I -http://purl.obolibrary.org/obo/UBERON_0003650;metatarsal bone of digit 1;metatarsal bone of foot digit 1 -http://purl.obolibrary.org/obo/UBERON_0003650;metatarsal bone of digit 1;metatarsal bone of hallux -http://purl.obolibrary.org/obo/UBERON_0003650;metatarsal bone of digit 1;toe 1 metatarsal -http://purl.obolibrary.org/obo/UBERON_0003650;metatarsal bone of digit 1;toe 1 metatarsus -http://purl.obolibrary.org/obo/UBERON_0003651;metatarsal bone of digit 2;foot digit 2 metatarsal bone -http://purl.obolibrary.org/obo/UBERON_0003651;metatarsal bone of digit 2;metatarsal 2 -http://purl.obolibrary.org/obo/UBERON_0003651;metatarsal bone of digit 2;metatarsal II -http://purl.obolibrary.org/obo/UBERON_0003651;metatarsal bone of digit 2;metatarsal bone digit 2 -http://purl.obolibrary.org/obo/UBERON_0003651;metatarsal bone of digit 2;metatarsal bone of digit II -http://purl.obolibrary.org/obo/UBERON_0003651;metatarsal bone of digit 2;metatarsal bone of foot digit 2 -http://purl.obolibrary.org/obo/UBERON_0003651;metatarsal bone of digit 2;second metatarsal bone -http://purl.obolibrary.org/obo/UBERON_0003651;metatarsal bone of digit 2;toe 2 metatarsal -http://purl.obolibrary.org/obo/UBERON_0003651;metatarsal bone of digit 2;toe 2 metatarsus -http://purl.obolibrary.org/obo/UBERON_0003652;metatarsal bone of digit 3;foot digit 3 metatarsal bone -http://purl.obolibrary.org/obo/UBERON_0003652;metatarsal bone of digit 3;metatarsal 3 -http://purl.obolibrary.org/obo/UBERON_0003652;metatarsal bone of digit 3;metatarsal III -http://purl.obolibrary.org/obo/UBERON_0003652;metatarsal bone of digit 3;metatarsal bone digit 3 -http://purl.obolibrary.org/obo/UBERON_0003652;metatarsal bone of digit 3;metatarsal bone of digit III -http://purl.obolibrary.org/obo/UBERON_0003652;metatarsal bone of digit 3;metatarsal bone of foot digit 3 -http://purl.obolibrary.org/obo/UBERON_0003652;metatarsal bone of digit 3;third metatarsal bone -http://purl.obolibrary.org/obo/UBERON_0003652;metatarsal bone of digit 3;toe 3 metatarsal -http://purl.obolibrary.org/obo/UBERON_0003652;metatarsal bone of digit 3;toe 3 metatarsus -http://purl.obolibrary.org/obo/UBERON_0003653;metatarsal bone of digit 4;foot digit 4 metatarsal bone -http://purl.obolibrary.org/obo/UBERON_0003653;metatarsal bone of digit 4;fourth metatarsal bone -http://purl.obolibrary.org/obo/UBERON_0003653;metatarsal bone of digit 4;metatarsal 4 -http://purl.obolibrary.org/obo/UBERON_0003653;metatarsal bone of digit 4;metatarsal IV -http://purl.obolibrary.org/obo/UBERON_0003653;metatarsal bone of digit 4;metatarsal bone digit 4 -http://purl.obolibrary.org/obo/UBERON_0003653;metatarsal bone of digit 4;metatarsal bone of digit IV -http://purl.obolibrary.org/obo/UBERON_0003653;metatarsal bone of digit 4;metatarsal bone of foot digit 4 -http://purl.obolibrary.org/obo/UBERON_0003653;metatarsal bone of digit 4;toe 4 metatarsal -http://purl.obolibrary.org/obo/UBERON_0003653;metatarsal bone of digit 4;toe 4 metatarsus -http://purl.obolibrary.org/obo/UBERON_0003654;metatarsal bone of digit 5;fifth metatarsal bone -http://purl.obolibrary.org/obo/UBERON_0003654;metatarsal bone of digit 5;foot digit 5 metatarsal bone -http://purl.obolibrary.org/obo/UBERON_0003654;metatarsal bone of digit 5;metatarsal 5 -http://purl.obolibrary.org/obo/UBERON_0003654;metatarsal bone of digit 5;metatarsal V -http://purl.obolibrary.org/obo/UBERON_0003654;metatarsal bone of digit 5;metatarsal bone digit 5 -http://purl.obolibrary.org/obo/UBERON_0003654;metatarsal bone of digit 5;metatarsal bone of digit V -http://purl.obolibrary.org/obo/UBERON_0003654;metatarsal bone of digit 5;metatarsal bone of foot digit 5 -http://purl.obolibrary.org/obo/UBERON_0003654;metatarsal bone of digit 5;toe 5 metatarsal -http://purl.obolibrary.org/obo/UBERON_0003654;metatarsal bone of digit 5;toe 5 metatarsus -http://purl.obolibrary.org/obo/UBERON_0003655;molar tooth;dens molaris -http://purl.obolibrary.org/obo/UBERON_0003655;molar tooth;molaris -http://purl.obolibrary.org/obo/UBERON_0003656;mesopodium bone;basipodium bone -http://purl.obolibrary.org/obo/UBERON_0003656;mesopodium bone;carpal/tarsal bone -http://purl.obolibrary.org/obo/UBERON_0003656;mesopodium bone;mesopod bone -http://purl.obolibrary.org/obo/UBERON_0003656;mesopodium bone;mesopodial bone -http://purl.obolibrary.org/obo/UBERON_0003657;limb joint;joint of limb -http://purl.obolibrary.org/obo/UBERON_0003657;limb joint;joint of limb skeletal system -http://purl.obolibrary.org/obo/UBERON_0003657;limb joint;skeletal limb joint -http://purl.obolibrary.org/obo/UBERON_0003658;hip muscle;hip muscle organ -http://purl.obolibrary.org/obo/UBERON_0003658;hip muscle;hip region muscle organ -http://purl.obolibrary.org/obo/UBERON_0003658;hip muscle;muscle organ of hip -http://purl.obolibrary.org/obo/UBERON_0003658;hip muscle;muscle organ of hip region -http://purl.obolibrary.org/obo/UBERON_0003658;hip muscle;muscle organ of regio coxae -http://purl.obolibrary.org/obo/UBERON_0003658;hip muscle;regio coxae muscle organ -http://purl.obolibrary.org/obo/UBERON_0003659;pedal digit muscle;digit of foot muscle organ -http://purl.obolibrary.org/obo/UBERON_0003659;pedal digit muscle;digit of terminal segment of free lower limb muscle organ -http://purl.obolibrary.org/obo/UBERON_0003659;pedal digit muscle;digitus pedis muscle organ -http://purl.obolibrary.org/obo/UBERON_0003659;pedal digit muscle;foot digit muscle -http://purl.obolibrary.org/obo/UBERON_0003659;pedal digit muscle;foot digit muscle organ -http://purl.obolibrary.org/obo/UBERON_0003659;pedal digit muscle;hind limb digit muscle -http://purl.obolibrary.org/obo/UBERON_0003659;pedal digit muscle;muscle organ of digit of foot -http://purl.obolibrary.org/obo/UBERON_0003659;pedal digit muscle;muscle organ of digit of terminal segment of free lower limb -http://purl.obolibrary.org/obo/UBERON_0003659;pedal digit muscle;muscle organ of digitus pedis -http://purl.obolibrary.org/obo/UBERON_0003659;pedal digit muscle;muscle organ of foot digit -http://purl.obolibrary.org/obo/UBERON_0003659;pedal digit muscle;muscle organ of terminal segment of free lower limb digit -http://purl.obolibrary.org/obo/UBERON_0003659;pedal digit muscle;muscle organ of toe -http://purl.obolibrary.org/obo/UBERON_0003659;pedal digit muscle;terminal segment of free lower limb digit muscle organ -http://purl.obolibrary.org/obo/UBERON_0003659;pedal digit muscle;toe muscle organ -http://purl.obolibrary.org/obo/UBERON_0003660;eyelid muscle;blepharon muscle organ -http://purl.obolibrary.org/obo/UBERON_0003660;eyelid muscle;eyelid muscle organ -http://purl.obolibrary.org/obo/UBERON_0003660;eyelid muscle;muscle organ of blepharon -http://purl.obolibrary.org/obo/UBERON_0003660;eyelid muscle;muscle organ of eyelid -http://purl.obolibrary.org/obo/UBERON_0003661;limb muscle;limb muscle organ -http://purl.obolibrary.org/obo/UBERON_0003661;limb muscle;limb skeletal muscle -http://purl.obolibrary.org/obo/UBERON_0003661;limb muscle;muscle organ of limb -http://purl.obolibrary.org/obo/UBERON_0003662;forelimb muscle;fore limb muscle organ -http://purl.obolibrary.org/obo/UBERON_0003662;forelimb muscle;forelimb muscle organ -http://purl.obolibrary.org/obo/UBERON_0003662;forelimb muscle;free upper limb muscle -http://purl.obolibrary.org/obo/UBERON_0003662;forelimb muscle;muscle of free upper limb -http://purl.obolibrary.org/obo/UBERON_0003662;forelimb muscle;muscle of upper limb -http://purl.obolibrary.org/obo/UBERON_0003662;forelimb muscle;upper limb skeletal muscle -http://purl.obolibrary.org/obo/UBERON_0003663;hindlimb muscle;free lower limb muscle -http://purl.obolibrary.org/obo/UBERON_0003663;hindlimb muscle;hind limb muscle organ -http://purl.obolibrary.org/obo/UBERON_0003663;hindlimb muscle;hindlimb muscle organ -http://purl.obolibrary.org/obo/UBERON_0003663;hindlimb muscle;inferior member muscle organ -http://purl.obolibrary.org/obo/UBERON_0003663;hindlimb muscle;lower extremity muscle organ -http://purl.obolibrary.org/obo/UBERON_0003663;hindlimb muscle;lower limb skeletal muscle -http://purl.obolibrary.org/obo/UBERON_0003663;hindlimb muscle;muscle of free lower limb -http://purl.obolibrary.org/obo/UBERON_0003663;hindlimb muscle;muscle of posterior limb -http://purl.obolibrary.org/obo/UBERON_0003663;hindlimb muscle;muscle organ of hind limb -http://purl.obolibrary.org/obo/UBERON_0003663;hindlimb muscle;muscle organ of hindlimb -http://purl.obolibrary.org/obo/UBERON_0003663;hindlimb muscle;muscle organ of inferior member -http://purl.obolibrary.org/obo/UBERON_0003663;hindlimb muscle;muscle organ of lower extremity -http://purl.obolibrary.org/obo/UBERON_0003664;manual digit muscle;digit of hand muscle organ -http://purl.obolibrary.org/obo/UBERON_0003664;manual digit muscle;digit of terminal segment of free upper limb muscle organ -http://purl.obolibrary.org/obo/UBERON_0003664;manual digit muscle;digitus manus muscle organ -http://purl.obolibrary.org/obo/UBERON_0003664;manual digit muscle;finger muscle organ -http://purl.obolibrary.org/obo/UBERON_0003664;manual digit muscle;fore limb digit muscle -http://purl.obolibrary.org/obo/UBERON_0003664;manual digit muscle;hand digit muscle -http://purl.obolibrary.org/obo/UBERON_0003664;manual digit muscle;hand digit muscle organ -http://purl.obolibrary.org/obo/UBERON_0003664;manual digit muscle;muscle organ of digit of hand -http://purl.obolibrary.org/obo/UBERON_0003664;manual digit muscle;muscle organ of digit of terminal segment of free upper limb -http://purl.obolibrary.org/obo/UBERON_0003664;manual digit muscle;muscle organ of digitus manus -http://purl.obolibrary.org/obo/UBERON_0003664;manual digit muscle;muscle organ of finger -http://purl.obolibrary.org/obo/UBERON_0003664;manual digit muscle;muscle organ of hand digit -http://purl.obolibrary.org/obo/UBERON_0003664;manual digit muscle;muscle organ of terminal segment of free upper limb digit -http://purl.obolibrary.org/obo/UBERON_0003664;manual digit muscle;terminal segment of free upper limb digit muscle organ -http://purl.obolibrary.org/obo/UBERON_0003665;post-anal tail muscle;caudal muscle -http://purl.obolibrary.org/obo/UBERON_0003665;post-anal tail muscle;muscle organ of post-vent region -http://purl.obolibrary.org/obo/UBERON_0003665;post-anal tail muscle;muscle organ of tail -http://purl.obolibrary.org/obo/UBERON_0003665;post-anal tail muscle;post-vent region muscle organ -http://purl.obolibrary.org/obo/UBERON_0003665;post-anal tail muscle;tail muscle -http://purl.obolibrary.org/obo/UBERON_0003665;post-anal tail muscle;tail muscle organ -http://purl.obolibrary.org/obo/UBERON_0003666;upper jaw molar;molar tooth of upper jaw -http://purl.obolibrary.org/obo/UBERON_0003666;upper jaw molar;upper jaw molar tooth -http://purl.obolibrary.org/obo/UBERON_0003666;upper jaw molar;upper molar tooth -http://purl.obolibrary.org/obo/UBERON_0003667;lower jaw molar;lower jaw molar tooth -http://purl.obolibrary.org/obo/UBERON_0003667;lower jaw molar;lower molar tooth -http://purl.obolibrary.org/obo/UBERON_0003667;lower jaw molar;molar tooth of lower jaw -http://purl.obolibrary.org/obo/UBERON_0003668;synovial bursa; -http://purl.obolibrary.org/obo/UBERON_0003669;fascia lata; -http://purl.obolibrary.org/obo/UBERON_0003670;smegma; -http://purl.obolibrary.org/obo/UBERON_0003671;anterior cruciate ligament of knee joint;anterior cruciate ligament -http://purl.obolibrary.org/obo/UBERON_0003672;dentition;dentes -http://purl.obolibrary.org/obo/UBERON_0003672;dentition;set of teeth -http://purl.obolibrary.org/obo/UBERON_0003672;dentition;teeth -http://purl.obolibrary.org/obo/UBERON_0003672;dentition;teeth set -http://purl.obolibrary.org/obo/UBERON_0003673;ligamentum flavum; -http://purl.obolibrary.org/obo/UBERON_0003674;cuspid;canine tooth -http://purl.obolibrary.org/obo/UBERON_0003674;cuspid;cuspis dentis -http://purl.obolibrary.org/obo/UBERON_0003675;tooth crown;anatomical crown -http://purl.obolibrary.org/obo/UBERON_0003675;tooth crown;corona dentis -http://purl.obolibrary.org/obo/UBERON_0003675;tooth crown;crown of tooth -http://purl.obolibrary.org/obo/UBERON_0003675;tooth crown;tooth crown -http://purl.obolibrary.org/obo/UBERON_0003676;patellar ligament;central band of tendon of quadriceps femoris -http://purl.obolibrary.org/obo/UBERON_0003676;patellar ligament;ligamentum patella -http://purl.obolibrary.org/obo/UBERON_0003677;tooth root;radix corona -http://purl.obolibrary.org/obo/UBERON_0003677;tooth root;root of tooth -http://purl.obolibrary.org/obo/UBERON_0003677;tooth root;tooth root -http://purl.obolibrary.org/obo/UBERON_0003678;tooth apex;apex of tooth -http://purl.obolibrary.org/obo/UBERON_0003678;tooth apex;tooth apex -http://purl.obolibrary.org/obo/UBERON_0003679;mouth floor;floor of mouth -http://purl.obolibrary.org/obo/UBERON_0003679;mouth floor;floor of oval cavity -http://purl.obolibrary.org/obo/UBERON_0003679;mouth floor;floor of the oval cavity -http://purl.obolibrary.org/obo/UBERON_0003680;posterior cruciate ligament of knee joint;posterior cruciate ligament -http://purl.obolibrary.org/obo/UBERON_0003681;masticatory muscle;muscle of mastication -http://purl.obolibrary.org/obo/UBERON_0003682;palatal muscle;muscle of palate -http://purl.obolibrary.org/obo/UBERON_0003682;palatal muscle;musculi palati mollis et faucium -http://purl.obolibrary.org/obo/UBERON_0003682;palatal muscle;palatal muscle -http://purl.obolibrary.org/obo/UBERON_0003682;palatal muscle;palate muscle -http://purl.obolibrary.org/obo/UBERON_0003682;palatal muscle;palatine muscle -http://purl.obolibrary.org/obo/UBERON_0003683;rotator cuff;musculotendinous cuff -http://purl.obolibrary.org/obo/UBERON_0003683;rotator cuff;rotator cuff -http://purl.obolibrary.org/obo/UBERON_0003683;rotator cuff;tendinous cuff -http://purl.obolibrary.org/obo/UBERON_0003684;abdominal cavity;cavity of abdominal compartment -http://purl.obolibrary.org/obo/UBERON_0003684;abdominal cavity;cavity of compartment of abdomen -http://purl.obolibrary.org/obo/UBERON_0003684;abdominal cavity;space of abdominal compartment -http://purl.obolibrary.org/obo/UBERON_0003685;cranial suture;cranium suture -http://purl.obolibrary.org/obo/UBERON_0003685;cranial suture;suture joint of skull -http://purl.obolibrary.org/obo/UBERON_0003685;cranial suture;suture of cranium -http://purl.obolibrary.org/obo/UBERON_0003686;tooth socket;dental alveolus -http://purl.obolibrary.org/obo/UBERON_0003687;foramen magnum; -http://purl.obolibrary.org/obo/UBERON_0003688;omentum; -http://purl.obolibrary.org/obo/UBERON_0003689;sella turcica; -http://purl.obolibrary.org/obo/UBERON_0003690;fused sacrum;os sacrum [vertebrae sacrales I - V] -http://purl.obolibrary.org/obo/UBERON_0003690;fused sacrum;sacrum -http://purl.obolibrary.org/obo/UBERON_0003690;fused sacrum;sacrum [sacral vertebrae I - V] -http://purl.obolibrary.org/obo/UBERON_0003690;fused sacrum;sacrum [sacral vertebrae I-V] -http://purl.obolibrary.org/obo/UBERON_0003691;epidural space;cavum epidurale -http://purl.obolibrary.org/obo/UBERON_0003691;epidural space;cavum extradurale -http://purl.obolibrary.org/obo/UBERON_0003691;epidural space;extradural space -http://purl.obolibrary.org/obo/UBERON_0003691;epidural space;spatium epidurale -http://purl.obolibrary.org/obo/UBERON_0003691;epidural space;spatium extradurale -http://purl.obolibrary.org/obo/UBERON_0003692;acromioclavicular joint; -http://purl.obolibrary.org/obo/UBERON_0003693;retroperitoneal space;retroperitoneum -http://purl.obolibrary.org/obo/UBERON_0003693;retroperitoneal space;spatium retroperitoneale -http://purl.obolibrary.org/obo/UBERON_0003694;atlanto-axial joint;atlanto axial joint -http://purl.obolibrary.org/obo/UBERON_0003694;atlanto-axial joint;atlantoaxial joint -http://purl.obolibrary.org/obo/UBERON_0003695;metacarpophalangeal joint;MP joint -http://purl.obolibrary.org/obo/UBERON_0003695;metacarpophalangeal joint;knuckle -http://purl.obolibrary.org/obo/UBERON_0003695;metacarpophalangeal joint;knuckles -http://purl.obolibrary.org/obo/UBERON_0003695;metacarpophalangeal joint;metacarpo-phalangeal joint -http://purl.obolibrary.org/obo/UBERON_0003696;metatarsophalangeal joint;metatarsal-phalangeal joint -http://purl.obolibrary.org/obo/UBERON_0003697;abdominal wall;abdominal wall proper -http://purl.obolibrary.org/obo/UBERON_0003697;abdominal wall;layers of the abdominal wall -http://purl.obolibrary.org/obo/UBERON_0003697;abdominal wall;paries abdominalis -http://purl.obolibrary.org/obo/UBERON_0003697;abdominal wall;wall of abdomen -http://purl.obolibrary.org/obo/UBERON_0003697;abdominal wall;wall of abdomen proper -http://purl.obolibrary.org/obo/UBERON_0003698;subtalar joint;articulatio subtalaris -http://purl.obolibrary.org/obo/UBERON_0003698;subtalar joint;articulatio talocalcanea -http://purl.obolibrary.org/obo/UBERON_0003698;subtalar joint;subtalar joint -http://purl.obolibrary.org/obo/UBERON_0003699;pubic symphysis;symphysis pubis -http://purl.obolibrary.org/obo/UBERON_0003700;temporomandibular joint;TMJ -http://purl.obolibrary.org/obo/UBERON_0003700;temporomandibular joint;temperomandibular joint -http://purl.obolibrary.org/obo/UBERON_0003701;calcaneal tendon;Achille's tendon -http://purl.obolibrary.org/obo/UBERON_0003701;calcaneal tendon;Achilles tendon -http://purl.obolibrary.org/obo/UBERON_0003701;calcaneal tendon;Achilles' tendon -http://purl.obolibrary.org/obo/UBERON_0003701;calcaneal tendon;calcaneal tendon -http://purl.obolibrary.org/obo/UBERON_0003701;calcaneal tendon;tendo Achillis -http://purl.obolibrary.org/obo/UBERON_0003701;calcaneal tendon;tendo calcaneus -http://purl.obolibrary.org/obo/UBERON_0003702;inguinal canal; -http://purl.obolibrary.org/obo/UBERON_0003703;extrahepatic bile duct; -http://purl.obolibrary.org/obo/UBERON_0003704;intrahepatic bile duct;bile duct intrahepatic part -http://purl.obolibrary.org/obo/UBERON_0003705;Meckel's diverticulum;Meckel's diverticulum -http://purl.obolibrary.org/obo/UBERON_0003705;Meckel's diverticulum;diverticulum of Meckel -http://purl.obolibrary.org/obo/UBERON_0003705;Meckel's diverticulum;ileal diverticulum -http://purl.obolibrary.org/obo/UBERON_0003706;laryngeal vocal fold;true vocal cord -http://purl.obolibrary.org/obo/UBERON_0003706;laryngeal vocal fold;vocal cord -http://purl.obolibrary.org/obo/UBERON_0003707;sinus of Valsalva;Petit sinus -http://purl.obolibrary.org/obo/UBERON_0003707;sinus of Valsalva;Petit's sinus -http://purl.obolibrary.org/obo/UBERON_0003707;sinus of Valsalva;Valsalva sinus -http://purl.obolibrary.org/obo/UBERON_0003707;sinus of Valsalva;aortic sinus -http://purl.obolibrary.org/obo/UBERON_0003708;carotid sinus;carotid bulb -http://purl.obolibrary.org/obo/UBERON_0003708;carotid sinus;sinus caroticus -http://purl.obolibrary.org/obo/UBERON_0003709;circle of Willis;arterial circle of Willis -http://purl.obolibrary.org/obo/UBERON_0003709;circle of Willis;cerebral arterial circle -http://purl.obolibrary.org/obo/UBERON_0003710;vasa vasorum;vas vasorum -http://purl.obolibrary.org/obo/UBERON_0003711;brachiocephalic vein;brachiocephalic venous tree -http://purl.obolibrary.org/obo/UBERON_0003711;brachiocephalic vein;innomiate vein -http://purl.obolibrary.org/obo/UBERON_0003711;brachiocephalic vein;innominate trunk -http://purl.obolibrary.org/obo/UBERON_0003711;brachiocephalic vein;innominate vein -http://purl.obolibrary.org/obo/UBERON_0003711;brachiocephalic vein;innominate veins -http://purl.obolibrary.org/obo/UBERON_0003711;brachiocephalic vein;vena brachiocephalica -http://purl.obolibrary.org/obo/UBERON_0003711;brachiocephalic vein;venae anonyma -http://purl.obolibrary.org/obo/UBERON_0003712;cavernous sinus;cavernous -http://purl.obolibrary.org/obo/UBERON_0003712;cavernous sinus;cavernous sinus syndrome -http://purl.obolibrary.org/obo/UBERON_0003712;cavernous sinus;cavernous sinuses -http://purl.obolibrary.org/obo/UBERON_0003712;cavernous sinus;cavernus sinus vein -http://purl.obolibrary.org/obo/UBERON_0003712;cavernous sinus;parasellar syndrome -http://purl.obolibrary.org/obo/UBERON_0003712;cavernous sinus;sinus cavernosus -http://purl.obolibrary.org/obo/UBERON_0003713;splenic vein;vena splenica -http://purl.obolibrary.org/obo/UBERON_0003714;neural tissue;nerve tissue -http://purl.obolibrary.org/obo/UBERON_0003714;neural tissue;nervous tissue -http://purl.obolibrary.org/obo/UBERON_0003714;neural tissue;portion of neural tissue -http://purl.obolibrary.org/obo/UBERON_0003715;splanchnic nerve;splanchnic nerves -http://purl.obolibrary.org/obo/UBERON_0003715;splanchnic nerve;visceral nerve -http://purl.obolibrary.org/obo/UBERON_0003716;Inferior laryngeal nerve;inferior laryngeal nerve -http://purl.obolibrary.org/obo/UBERON_0003716;Inferior laryngeal nerve;nervus laryngeus recurrens -http://purl.obolibrary.org/obo/UBERON_0003716;Inferior laryngeal nerve;ramus recurrens -http://purl.obolibrary.org/obo/UBERON_0003716;Inferior laryngeal nerve;recurrent laryngeal nerve from vagus nerve -http://purl.obolibrary.org/obo/UBERON_0003716;Inferior laryngeal nerve;recurrent nerve -http://purl.obolibrary.org/obo/UBERON_0003716;Inferior laryngeal nerve;vagus X nerve recurrent laryngeal branch -http://purl.obolibrary.org/obo/UBERON_0003716;recurrent laryngeal nerve;inferior laryngeal nerve -http://purl.obolibrary.org/obo/UBERON_0003716;recurrent laryngeal nerve;nervus laryngeus recurrens -http://purl.obolibrary.org/obo/UBERON_0003716;recurrent laryngeal nerve;ramus recurrens -http://purl.obolibrary.org/obo/UBERON_0003716;recurrent laryngeal nerve;recurrent laryngeal nerve from vagus nerve -http://purl.obolibrary.org/obo/UBERON_0003716;recurrent laryngeal nerve;recurrent nerve -http://purl.obolibrary.org/obo/UBERON_0003716;recurrent laryngeal nerve;vagus X nerve recurrent laryngeal branch -http://purl.obolibrary.org/obo/UBERON_0003718;muscle spindle;neuromuscular spindle -http://purl.obolibrary.org/obo/UBERON_0003719;Pacinian corpuscle;Pacinian corpuscle -http://purl.obolibrary.org/obo/UBERON_0003719;Pacinian corpuscle;corpuscle of golgi-mazzoni -http://purl.obolibrary.org/obo/UBERON_0003719;Pacinian corpuscle;corpusculum lamellosum -http://purl.obolibrary.org/obo/UBERON_0003719;Pacinian corpuscle;golgi-mazzoni corpuscle -http://purl.obolibrary.org/obo/UBERON_0003719;Pacinian corpuscle;lamellar corpuscle -http://purl.obolibrary.org/obo/UBERON_0003720;anterior cranial fossa; -http://purl.obolibrary.org/obo/UBERON_0003721;lingual nerve;lingual branch of trigeminal nerve -http://purl.obolibrary.org/obo/UBERON_0003721;lingual nerve;trigeminal V nerve lingual branch -http://purl.obolibrary.org/obo/UBERON_0003721;lingual nerve;trigeminal nerve lingual branch -http://purl.obolibrary.org/obo/UBERON_0003722;middle cranial fossa; -http://purl.obolibrary.org/obo/UBERON_0003723;vestibular nerve;vestibular root of acoustic nerve -http://purl.obolibrary.org/obo/UBERON_0003723;vestibular nerve;vestibular root of eighth cranial nerve -http://purl.obolibrary.org/obo/UBERON_0003723;vestibular nerve;vestibulocochlear VIII nerve vestibular component -http://purl.obolibrary.org/obo/UBERON_0003724;musculocutaneous nerve;casserio's nerve -http://purl.obolibrary.org/obo/UBERON_0003725;cervical nerve plexus;cervical nerve plexus -http://purl.obolibrary.org/obo/UBERON_0003725;cervical nerve plexus;cervical plexus -http://purl.obolibrary.org/obo/UBERON_0003725;cervical nerve plexus;plexus cervicalis -http://purl.obolibrary.org/obo/UBERON_0003726;thoracic nerve;nervus thoracis -http://purl.obolibrary.org/obo/UBERON_0003726;thoracic nerve;thoracic spinal nerve -http://purl.obolibrary.org/obo/UBERON_0003727;intercostal nerve;anterior ramus of thoracic nerve -http://purl.obolibrary.org/obo/UBERON_0003727;intercostal nerve;anterior ramus of thoracic spinal nerve -http://purl.obolibrary.org/obo/UBERON_0003727;intercostal nerve;ramus anterior, nervus thoracicus -http://purl.obolibrary.org/obo/UBERON_0003727;intercostal nerve;thoracic anterior ramus -http://purl.obolibrary.org/obo/UBERON_0003727;intercostal nerve;ventral ramus of thoracic spinal nerve -http://purl.obolibrary.org/obo/UBERON_0003728;mediastinum;mediastinal part of chest -http://purl.obolibrary.org/obo/UBERON_0003729;mouth mucosa;buccal mucosa -http://purl.obolibrary.org/obo/UBERON_0003729;mouth mucosa;mouth mucosa -http://purl.obolibrary.org/obo/UBERON_0003729;mouth mucosa;mouth mucous membrane -http://purl.obolibrary.org/obo/UBERON_0003729;mouth mucosa;mouth organ mucosa -http://purl.obolibrary.org/obo/UBERON_0003729;mouth mucosa;mucosa of mouth -http://purl.obolibrary.org/obo/UBERON_0003729;mouth mucosa;mucosal lining of mouth -http://purl.obolibrary.org/obo/UBERON_0003729;mouth mucosa;mucous membrane of mouth -http://purl.obolibrary.org/obo/UBERON_0003729;mouth mucosa;oral mucosa -http://purl.obolibrary.org/obo/UBERON_0003729;mouth mucosa;oral mucous membrane -http://purl.obolibrary.org/obo/UBERON_0003729;mouth mucosa;oral part of viscerocranial mucosa -http://purl.obolibrary.org/obo/UBERON_0003729;mouth mucosa;tunica mucosa oris -http://purl.obolibrary.org/obo/UBERON_0003820;prostate bud;prostate ductal progenitor -http://purl.obolibrary.org/obo/UBERON_0003820;prostate bud;prostatic bud -http://purl.obolibrary.org/obo/UBERON_0003821;metapodium bone;metacarpal or metatarsal bone -http://purl.obolibrary.org/obo/UBERON_0003821;metapodium bone;metacarpal/metatarsal -http://purl.obolibrary.org/obo/UBERON_0003821;metapodium bone;metacarpal/metatarsal bone -http://purl.obolibrary.org/obo/UBERON_0003821;metapodium bone;metapodi bone -http://purl.obolibrary.org/obo/UBERON_0003821;metapodium bone;metapodial bone -http://purl.obolibrary.org/obo/UBERON_0003821;metapodium bone;metapodium bone -http://purl.obolibrary.org/obo/UBERON_0003822;forelimb stylopod;brachial region -http://purl.obolibrary.org/obo/UBERON_0003822;forelimb stylopod;brachium -http://purl.obolibrary.org/obo/UBERON_0003822;forelimb stylopod;fore propodium -http://purl.obolibrary.org/obo/UBERON_0003822;forelimb stylopod;forelimb propodium -http://purl.obolibrary.org/obo/UBERON_0003822;forelimb stylopod;forelimb stylopodial element -http://purl.obolibrary.org/obo/UBERON_0003822;forelimb stylopod;forelimb stylopodium -http://purl.obolibrary.org/obo/UBERON_0003822;forelimb stylopod;proximal segment of free upper limb -http://purl.obolibrary.org/obo/UBERON_0003822;forelimb stylopod;regio brachialis -http://purl.obolibrary.org/obo/UBERON_0003822;forelimb stylopod;stylopod of arm -http://purl.obolibrary.org/obo/UBERON_0003822;forelimb stylopod;stylopod of forelimb -http://purl.obolibrary.org/obo/UBERON_0003822;forelimb stylopod;upper arm -http://purl.obolibrary.org/obo/UBERON_0003823;hindlimb zeugopod;crus -http://purl.obolibrary.org/obo/UBERON_0003823;hindlimb zeugopod;crus of hindlimb -http://purl.obolibrary.org/obo/UBERON_0003823;hindlimb zeugopod;hind limb middle limb segment -http://purl.obolibrary.org/obo/UBERON_0003823;hindlimb zeugopod;hind limb zeudopodium -http://purl.obolibrary.org/obo/UBERON_0003823;hindlimb zeugopod;hind limb zeugopod -http://purl.obolibrary.org/obo/UBERON_0003823;hindlimb zeugopod;hindlimb epipodium -http://purl.obolibrary.org/obo/UBERON_0003823;hindlimb zeugopod;hindlimb middle limb segment -http://purl.obolibrary.org/obo/UBERON_0003823;hindlimb zeugopod;hindlimb zeudopodium -http://purl.obolibrary.org/obo/UBERON_0003823;hindlimb zeugopod;hindlimb zeugopod -http://purl.obolibrary.org/obo/UBERON_0003823;hindlimb zeugopod;hindlimb zeugopodium -http://purl.obolibrary.org/obo/UBERON_0003823;hindlimb zeugopod;intermediate segment of free lower limb -http://purl.obolibrary.org/obo/UBERON_0003823;hindlimb zeugopod;lower extremity middle limb segment -http://purl.obolibrary.org/obo/UBERON_0003823;hindlimb zeugopod;lower extremity zeugopod -http://purl.obolibrary.org/obo/UBERON_0003823;hindlimb zeugopod;lower leg -http://purl.obolibrary.org/obo/UBERON_0003823;hindlimb zeugopod;middle limb segment of hind limb -http://purl.obolibrary.org/obo/UBERON_0003823;hindlimb zeugopod;middle limb segment of hindlimb -http://purl.obolibrary.org/obo/UBERON_0003823;hindlimb zeugopod;shank -http://purl.obolibrary.org/obo/UBERON_0003823;hindlimb zeugopod;zeugopod of hind limb -http://purl.obolibrary.org/obo/UBERON_0003823;hindlimb zeugopod;zeugopod of hindlimb -http://purl.obolibrary.org/obo/UBERON_0003824;nerve of thoracic segment;nerve of thorax -http://purl.obolibrary.org/obo/UBERON_0003824;nerve of thoracic segment;thoracic segment nerve -http://purl.obolibrary.org/obo/UBERON_0003824;nerve of thoracic segment;thorax nerve -http://purl.obolibrary.org/obo/UBERON_0003824;nerve of thoracic segment;upper body nerve -http://purl.obolibrary.org/obo/UBERON_0003825;nerve of abdominal segment;abdominal segment nerve -http://purl.obolibrary.org/obo/UBERON_0003826;upper leg bone; -http://purl.obolibrary.org/obo/UBERON_0003827;thoracic segment bone;bone of thorax -http://purl.obolibrary.org/obo/UBERON_0003827;thoracic segment bone;bone organ of thorax -http://purl.obolibrary.org/obo/UBERON_0003827;thoracic segment bone;thorax bone -http://purl.obolibrary.org/obo/UBERON_0003827;thoracic segment bone;thorax bone organ -http://purl.obolibrary.org/obo/UBERON_0003828;abdominal segment bone;abdominal segment of trunk bone -http://purl.obolibrary.org/obo/UBERON_0003828;abdominal segment bone;abdominal segment of trunk bone organ -http://purl.obolibrary.org/obo/UBERON_0003828;abdominal segment bone;bone of abdominal segment of trunk -http://purl.obolibrary.org/obo/UBERON_0003828;abdominal segment bone;bone organ of abdominal segment of trunk -http://purl.obolibrary.org/obo/UBERON_0003829;urethra muscle tissue;urethral muscle layer -http://purl.obolibrary.org/obo/UBERON_0003830;thoracic segment muscle;muscle organ of thorax -http://purl.obolibrary.org/obo/UBERON_0003830;thoracic segment muscle;thorax muscle organ -http://purl.obolibrary.org/obo/UBERON_0003830;thoracic segment muscle;upper body muscle -http://purl.obolibrary.org/obo/UBERON_0003831;respiratory system muscle;apparatus respiratorius muscle organ -http://purl.obolibrary.org/obo/UBERON_0003831;respiratory system muscle;muscle organ of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0003831;respiratory system muscle;muscle organ of respiratory system -http://purl.obolibrary.org/obo/UBERON_0003831;respiratory system muscle;respiratory system muscle organ -http://purl.obolibrary.org/obo/UBERON_0003832;esophagus muscle;esophageal muscle -http://purl.obolibrary.org/obo/UBERON_0003832;esophagus muscle;esophagus muscle organ -http://purl.obolibrary.org/obo/UBERON_0003832;esophagus muscle;gullet muscle organ -http://purl.obolibrary.org/obo/UBERON_0003832;esophagus muscle;muscle organ of esophagus -http://purl.obolibrary.org/obo/UBERON_0003832;esophagus muscle;muscle organ of gullet -http://purl.obolibrary.org/obo/UBERON_0003832;esophagus muscle;muscle organ of oesophagus -http://purl.obolibrary.org/obo/UBERON_0003832;esophagus muscle;oesophagus muscle organ -http://purl.obolibrary.org/obo/UBERON_0003833;abdominal segment muscle;abdominal segment of trunk muscle organ -http://purl.obolibrary.org/obo/UBERON_0003833;abdominal segment muscle;muscle organ of abdominal segment of trunk -http://purl.obolibrary.org/obo/UBERON_0003834;thoracic segment blood vessel;blood vessel of thorax -http://purl.obolibrary.org/obo/UBERON_0003834;thoracic segment blood vessel;thorax blood vessel -http://purl.obolibrary.org/obo/UBERON_0003835;abdominal segment blood vessel;abdominal segment of trunk blood vessel -http://purl.obolibrary.org/obo/UBERON_0003835;abdominal segment blood vessel;blood vessel of abdominal segment of trunk -http://purl.obolibrary.org/obo/UBERON_0003836;abdominal segment skin;abdominal segment of trunk skin -http://purl.obolibrary.org/obo/UBERON_0003836;abdominal segment skin;skin of abdominal segment of trunk -http://purl.obolibrary.org/obo/UBERON_0003837;thoracic segment connective tissue;connective tissue of thorax -http://purl.obolibrary.org/obo/UBERON_0003837;thoracic segment connective tissue;portion of connective tissue of thorax -http://purl.obolibrary.org/obo/UBERON_0003837;thoracic segment connective tissue;textus connectivus of thorax -http://purl.obolibrary.org/obo/UBERON_0003837;thoracic segment connective tissue;thorax connective tissue -http://purl.obolibrary.org/obo/UBERON_0003837;thoracic segment connective tissue;thorax portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0003837;thoracic segment connective tissue;thorax textus connectivus -http://purl.obolibrary.org/obo/UBERON_0003838;abdominal segment connective tissue;abdominal segment of trunk connective tissue -http://purl.obolibrary.org/obo/UBERON_0003838;abdominal segment connective tissue;abdominal segment of trunk portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0003838;abdominal segment connective tissue;abdominal segment of trunk textus connectivus -http://purl.obolibrary.org/obo/UBERON_0003838;abdominal segment connective tissue;connective tissue of abdominal segment of trunk -http://purl.obolibrary.org/obo/UBERON_0003838;abdominal segment connective tissue;portion of connective tissue of abdominal segment of trunk -http://purl.obolibrary.org/obo/UBERON_0003838;abdominal segment connective tissue;textus connectivus of abdominal segment of trunk -http://purl.obolibrary.org/obo/UBERON_0003839;forelimb joint;anteriormost limb joint of limb -http://purl.obolibrary.org/obo/UBERON_0003839;forelimb joint;anteriormost limb limb joint -http://purl.obolibrary.org/obo/UBERON_0003839;forelimb joint;fore limb joint of limb -http://purl.obolibrary.org/obo/UBERON_0003839;forelimb joint;fore limb limb joint -http://purl.obolibrary.org/obo/UBERON_0003839;forelimb joint;forelimb joint of limb -http://purl.obolibrary.org/obo/UBERON_0003839;forelimb joint;forelimb limb joint -http://purl.obolibrary.org/obo/UBERON_0003839;forelimb joint;joint of free upper limb -http://purl.obolibrary.org/obo/UBERON_0003839;forelimb joint;joint of limb of anteriormost limb -http://purl.obolibrary.org/obo/UBERON_0003839;forelimb joint;joint of limb of fore limb -http://purl.obolibrary.org/obo/UBERON_0003839;forelimb joint;joint of limb of forelimb -http://purl.obolibrary.org/obo/UBERON_0003839;forelimb joint;joint of limb of superior member -http://purl.obolibrary.org/obo/UBERON_0003839;forelimb joint;joint of limb of upper extremity -http://purl.obolibrary.org/obo/UBERON_0003839;forelimb joint;limb joint of anteriormost limb -http://purl.obolibrary.org/obo/UBERON_0003839;forelimb joint;limb joint of fore limb -http://purl.obolibrary.org/obo/UBERON_0003839;forelimb joint;limb joint of forelimb -http://purl.obolibrary.org/obo/UBERON_0003839;forelimb joint;limb joint of superior member -http://purl.obolibrary.org/obo/UBERON_0003839;forelimb joint;limb joint of upper extremity -http://purl.obolibrary.org/obo/UBERON_0003839;forelimb joint;superior member joint of limb -http://purl.obolibrary.org/obo/UBERON_0003839;forelimb joint;superior member limb joint -http://purl.obolibrary.org/obo/UBERON_0003839;forelimb joint;upper extremity joint of limb -http://purl.obolibrary.org/obo/UBERON_0003839;forelimb joint;upper extremity limb joint -http://purl.obolibrary.org/obo/UBERON_0003840;hindlimb joint;hind limb joint of limb -http://purl.obolibrary.org/obo/UBERON_0003840;hindlimb joint;hind limb limb joint -http://purl.obolibrary.org/obo/UBERON_0003840;hindlimb joint;hindlimb joint of limb -http://purl.obolibrary.org/obo/UBERON_0003840;hindlimb joint;hindlimb limb joint -http://purl.obolibrary.org/obo/UBERON_0003840;hindlimb joint;inferior member joint of limb -http://purl.obolibrary.org/obo/UBERON_0003840;hindlimb joint;inferior member limb joint -http://purl.obolibrary.org/obo/UBERON_0003840;hindlimb joint;joint of free lower limb -http://purl.obolibrary.org/obo/UBERON_0003840;hindlimb joint;joint of limb of hind limb -http://purl.obolibrary.org/obo/UBERON_0003840;hindlimb joint;joint of limb of hindlimb -http://purl.obolibrary.org/obo/UBERON_0003840;hindlimb joint;joint of limb of inferior member -http://purl.obolibrary.org/obo/UBERON_0003840;hindlimb joint;joint of limb of lower extremity -http://purl.obolibrary.org/obo/UBERON_0003840;hindlimb joint;joint of lower limb -http://purl.obolibrary.org/obo/UBERON_0003840;hindlimb joint;limb joint of hind limb -http://purl.obolibrary.org/obo/UBERON_0003840;hindlimb joint;limb joint of hindlimb -http://purl.obolibrary.org/obo/UBERON_0003840;hindlimb joint;limb joint of inferior member -http://purl.obolibrary.org/obo/UBERON_0003840;hindlimb joint;limb joint of lower extremity -http://purl.obolibrary.org/obo/UBERON_0003840;hindlimb joint;lower extremity joint of limb -http://purl.obolibrary.org/obo/UBERON_0003840;hindlimb joint;lower extremity limb joint -http://purl.obolibrary.org/obo/UBERON_0003841;autopod joint;autopod joint of limb -http://purl.obolibrary.org/obo/UBERON_0003841;autopod joint;autopod limb joint -http://purl.obolibrary.org/obo/UBERON_0003841;autopod joint;distal free limb segment joint of limb -http://purl.obolibrary.org/obo/UBERON_0003841;autopod joint;distal free limb segment limb joint -http://purl.obolibrary.org/obo/UBERON_0003841;autopod joint;joint of limb of autopod -http://purl.obolibrary.org/obo/UBERON_0003841;autopod joint;joint of limb of distal free limb segment -http://purl.obolibrary.org/obo/UBERON_0003841;autopod joint;limb joint of autopod -http://purl.obolibrary.org/obo/UBERON_0003841;autopod joint;limb joint of distal free limb segment -http://purl.obolibrary.org/obo/UBERON_0003842;neural tube lumen;cavity of neural tube -http://purl.obolibrary.org/obo/UBERON_0003842;neural tube lumen;lumen of neural tube -http://purl.obolibrary.org/obo/UBERON_0003842;neural tube lumen;neural tube neural lumen -http://purl.obolibrary.org/obo/UBERON_0003843;dental epithelium;dental epithelia -http://purl.obolibrary.org/obo/UBERON_0003843;dental epithelium;dental epithelium -http://purl.obolibrary.org/obo/UBERON_0003843;dental epithelium;odontogenic epithelium -http://purl.obolibrary.org/obo/UBERON_0003843;dental epithelium;tooth epithelium -http://purl.obolibrary.org/obo/UBERON_0003844;upper eyelid epithelium;epithelial tissue of superior eyelid -http://purl.obolibrary.org/obo/UBERON_0003844;upper eyelid epithelium;epithelial tissue of upper eyelid -http://purl.obolibrary.org/obo/UBERON_0003844;upper eyelid epithelium;epithelium of superior eyelid -http://purl.obolibrary.org/obo/UBERON_0003844;upper eyelid epithelium;epithelium of upper eyelid -http://purl.obolibrary.org/obo/UBERON_0003844;upper eyelid epithelium;superior eyelid epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003844;upper eyelid epithelium;superior eyelid epithelium -http://purl.obolibrary.org/obo/UBERON_0003844;upper eyelid epithelium;upper eyelid epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003845;lower eyelid epithelium;epithelial tissue of inferior eyelid -http://purl.obolibrary.org/obo/UBERON_0003845;lower eyelid epithelium;epithelial tissue of lower eyelid -http://purl.obolibrary.org/obo/UBERON_0003845;lower eyelid epithelium;epithelium of inferior eyelid -http://purl.obolibrary.org/obo/UBERON_0003845;lower eyelid epithelium;epithelium of lower eyelid -http://purl.obolibrary.org/obo/UBERON_0003845;lower eyelid epithelium;inferior eyelid epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003845;lower eyelid epithelium;inferior eyelid epithelium -http://purl.obolibrary.org/obo/UBERON_0003845;lower eyelid epithelium;lower eyelid epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003846;thymus epithelium;epithelial tissue of thymus -http://purl.obolibrary.org/obo/UBERON_0003846;thymus epithelium;epithelial tissue of thymus gland -http://purl.obolibrary.org/obo/UBERON_0003846;thymus epithelium;epithelium of thymus -http://purl.obolibrary.org/obo/UBERON_0003846;thymus epithelium;epithelium of thymus gland -http://purl.obolibrary.org/obo/UBERON_0003846;thymus epithelium;thymic epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003846;thymus epithelium;thymic epithelium -http://purl.obolibrary.org/obo/UBERON_0003846;thymus epithelium;thymus epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003846;thymus epithelium;thymus gland epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003846;thymus epithelium;thymus gland epithelium -http://purl.obolibrary.org/obo/UBERON_0003847;thyroid artery; -http://purl.obolibrary.org/obo/UBERON_0003848;gonadal vein;gonad vein -http://purl.obolibrary.org/obo/UBERON_0003848;gonadal vein;gonada vein -http://purl.obolibrary.org/obo/UBERON_0003848;gonadal vein;vein of gonad -http://purl.obolibrary.org/obo/UBERON_0003848;gonadal vein;vein of gonada -http://purl.obolibrary.org/obo/UBERON_0003849;mesencephalic neural crest;mesencephalic neural crest -http://purl.obolibrary.org/obo/UBERON_0003849;mesencephalic neural crest;neural crest midbrain -http://purl.obolibrary.org/obo/UBERON_0003850;telencephalon neural crest;neural crest telencephalon -http://purl.obolibrary.org/obo/UBERON_0003851;diencephalon neural crest;diencephalic neural crest -http://purl.obolibrary.org/obo/UBERON_0003851;diencephalon neural crest;future diencephalon neural crest -http://purl.obolibrary.org/obo/UBERON_0003851;diencephalon neural crest;neural crest diencephalon -http://purl.obolibrary.org/obo/UBERON_0003851;diencephalon neural crest;neural crest of future diencephalon -http://purl.obolibrary.org/obo/UBERON_0003852;rhombencephalon neural crest;neural crest hindbrain -http://purl.obolibrary.org/obo/UBERON_0003852;rhombencephalon neural crest;rhombencephalic neural crest -http://purl.obolibrary.org/obo/UBERON_0003853;spinal cord neural crest;neural crest spinal cord -http://purl.obolibrary.org/obo/UBERON_0003854;spinal cord neural plate;neural plate of spinal cord -http://purl.obolibrary.org/obo/UBERON_0003855;gonad mesenchyme;gonada mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003855;gonad mesenchyme;mesenchyme of gonad -http://purl.obolibrary.org/obo/UBERON_0003855;gonad mesenchyme;mesenchyme of gonada -http://purl.obolibrary.org/obo/UBERON_0003856;uncondensed odontogenic mesenchyme;dental mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003856;uncondensed odontogenic mesenchyme;dental organ mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003856;uncondensed odontogenic mesenchyme;enamel organ mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003856;uncondensed odontogenic mesenchyme;tooth enamel organ mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003856;uncondensed odontogenic mesenchyme;tooth mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003857;upper eyelid mesenchyme;mesenchyme of superior eyelid -http://purl.obolibrary.org/obo/UBERON_0003857;upper eyelid mesenchyme;mesenchyme of upper eyelid -http://purl.obolibrary.org/obo/UBERON_0003857;upper eyelid mesenchyme;superior eyelid mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003858;lower eyelid mesenchyme;inferior eyelid mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003858;lower eyelid mesenchyme;mesenchyme of inferior eyelid -http://purl.obolibrary.org/obo/UBERON_0003858;lower eyelid mesenchyme;mesenchyme of lower eyelid -http://purl.obolibrary.org/obo/UBERON_0003859;forelimb mesenchyme;anteriormost limb mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003859;forelimb mesenchyme;fore limb mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003859;forelimb mesenchyme;mesenchyme of anteriormost limb -http://purl.obolibrary.org/obo/UBERON_0003859;forelimb mesenchyme;mesenchyme of fore limb -http://purl.obolibrary.org/obo/UBERON_0003859;forelimb mesenchyme;mesenchyme of forelimb -http://purl.obolibrary.org/obo/UBERON_0003859;forelimb mesenchyme;mesenchyme of superior member -http://purl.obolibrary.org/obo/UBERON_0003859;forelimb mesenchyme;mesenchyme of upper extremity -http://purl.obolibrary.org/obo/UBERON_0003859;forelimb mesenchyme;superior member mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003859;forelimb mesenchyme;upper extremity mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003860;hindlimb mesenchyme;hind limb mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003860;hindlimb mesenchyme;inferior member mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003860;hindlimb mesenchyme;lower extremity mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003860;hindlimb mesenchyme;mesenchyme of hind limb -http://purl.obolibrary.org/obo/UBERON_0003860;hindlimb mesenchyme;mesenchyme of hindlimb -http://purl.obolibrary.org/obo/UBERON_0003860;hindlimb mesenchyme;mesenchyme of inferior member -http://purl.obolibrary.org/obo/UBERON_0003860;hindlimb mesenchyme;mesenchyme of lower extremity -http://purl.obolibrary.org/obo/UBERON_0003861;neural arch;arcus vertebra -http://purl.obolibrary.org/obo/UBERON_0003861;neural arch;arcus vertebrae -http://purl.obolibrary.org/obo/UBERON_0003861;neural arch;arcus vertebrae (vertebralis) -http://purl.obolibrary.org/obo/UBERON_0003861;neural arch;dorsal arcocentrum -http://purl.obolibrary.org/obo/UBERON_0003862;pedal digit 4 phalanx;digit long bone of foot digit 4 -http://purl.obolibrary.org/obo/UBERON_0003862;pedal digit 4 phalanx;foot digit 4 digit long bone -http://purl.obolibrary.org/obo/UBERON_0003862;pedal digit 4 phalanx;foot digit 4 long bone of digit -http://purl.obolibrary.org/obo/UBERON_0003862;pedal digit 4 phalanx;foot digit 4 phalanx -http://purl.obolibrary.org/obo/UBERON_0003862;pedal digit 4 phalanx;fourth toe phalanx -http://purl.obolibrary.org/obo/UBERON_0003862;pedal digit 4 phalanx;hind limb digit 4 phalanx -http://purl.obolibrary.org/obo/UBERON_0003862;pedal digit 4 phalanx;long bone of digit of foot digit 4 -http://purl.obolibrary.org/obo/UBERON_0003862;pedal digit 4 phalanx;pedal digit IV phalanx -http://purl.obolibrary.org/obo/UBERON_0003862;pedal digit 4 phalanx;phalanx of foot digit 4 -http://purl.obolibrary.org/obo/UBERON_0003862;pedal digit 4 phalanx;phalanx of fourth toe -http://purl.obolibrary.org/obo/UBERON_0003863;pedal digit 5 phalanx;digit long bone of foot digit 5 -http://purl.obolibrary.org/obo/UBERON_0003863;pedal digit 5 phalanx;foot digit 5 digit long bone -http://purl.obolibrary.org/obo/UBERON_0003863;pedal digit 5 phalanx;foot digit 5 long bone of digit -http://purl.obolibrary.org/obo/UBERON_0003863;pedal digit 5 phalanx;foot digit 5 phalanx -http://purl.obolibrary.org/obo/UBERON_0003863;pedal digit 5 phalanx;hind limb digit 5 phalanx -http://purl.obolibrary.org/obo/UBERON_0003863;pedal digit 5 phalanx;little toe phalanx -http://purl.obolibrary.org/obo/UBERON_0003863;pedal digit 5 phalanx;long bone of digit of foot digit 5 -http://purl.obolibrary.org/obo/UBERON_0003863;pedal digit 5 phalanx;pedal digit V phalanx -http://purl.obolibrary.org/obo/UBERON_0003863;pedal digit 5 phalanx;phalanx of fifth digit of foot -http://purl.obolibrary.org/obo/UBERON_0003863;pedal digit 5 phalanx;phalanx of fifth toe -http://purl.obolibrary.org/obo/UBERON_0003863;pedal digit 5 phalanx;phalanx of foot digit 5 -http://purl.obolibrary.org/obo/UBERON_0003863;pedal digit 5 phalanx;phalanx of little toe -http://purl.obolibrary.org/obo/UBERON_0003864;middle phalanx of manus;hand middle phalanx -http://purl.obolibrary.org/obo/UBERON_0003864;middle phalanx of manus;middle manual phalanx -http://purl.obolibrary.org/obo/UBERON_0003864;middle phalanx of manus;middle phalanx of finger -http://purl.obolibrary.org/obo/UBERON_0003864;middle phalanx of manus;middle phalanx of hand -http://purl.obolibrary.org/obo/UBERON_0003864;middle phalanx of manus;middle phalanx of manual digit -http://purl.obolibrary.org/obo/UBERON_0003864;middle phalanx of manus;phalanx media manus -http://purl.obolibrary.org/obo/UBERON_0003865;distal phalanx of manus;distal manual phalanx -http://purl.obolibrary.org/obo/UBERON_0003865;distal phalanx of manus;distal phalanx of finger -http://purl.obolibrary.org/obo/UBERON_0003865;distal phalanx of manus;distal phalanx of hand -http://purl.obolibrary.org/obo/UBERON_0003865;distal phalanx of manus;distal phalanx of manual digit -http://purl.obolibrary.org/obo/UBERON_0003865;distal phalanx of manus;hand distal phalanx -http://purl.obolibrary.org/obo/UBERON_0003865;distal phalanx of manus;phalanx distalis manus -http://purl.obolibrary.org/obo/UBERON_0003865;distal phalanx of manus;terminal phalanx of hand -http://purl.obolibrary.org/obo/UBERON_0003865;distal phalanx of manus;ungual phalanx of hand -http://purl.obolibrary.org/obo/UBERON_0003866;middle phalanx of pes;foot middle phalanx -http://purl.obolibrary.org/obo/UBERON_0003866;middle phalanx of pes;middle pedal phalanx -http://purl.obolibrary.org/obo/UBERON_0003866;middle phalanx of pes;middle phalanx of foot -http://purl.obolibrary.org/obo/UBERON_0003866;middle phalanx of pes;middle phalanx of toe -http://purl.obolibrary.org/obo/UBERON_0003866;middle phalanx of pes;phalanx media pedis -http://purl.obolibrary.org/obo/UBERON_0003867;distal phalanx of pes;distal pedal phalanx -http://purl.obolibrary.org/obo/UBERON_0003867;distal phalanx of pes;distal phalanx of foot -http://purl.obolibrary.org/obo/UBERON_0003867;distal phalanx of pes;distal phalanx of toe -http://purl.obolibrary.org/obo/UBERON_0003867;distal phalanx of pes;foot distal phalanx -http://purl.obolibrary.org/obo/UBERON_0003867;distal phalanx of pes;phalanx distalis pedis -http://purl.obolibrary.org/obo/UBERON_0003867;distal phalanx of pes;terminal phalanx of foot -http://purl.obolibrary.org/obo/UBERON_0003867;distal phalanx of pes;terminal phalanx of hindlimb -http://purl.obolibrary.org/obo/UBERON_0003867;distal phalanx of pes;ungual phalanx of foot -http://purl.obolibrary.org/obo/UBERON_0003867;distal phalanx of pes;ungual phalanx of hindlimb -http://purl.obolibrary.org/obo/UBERON_0003868;proximal phalanx of pes;foot proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0003868;proximal phalanx of pes;phalanx proximalis pedis -http://purl.obolibrary.org/obo/UBERON_0003868;proximal phalanx of pes;proximal pedal phalanx -http://purl.obolibrary.org/obo/UBERON_0003868;proximal phalanx of pes;proximal phalanx of foot -http://purl.obolibrary.org/obo/UBERON_0003868;proximal phalanx of pes;proximal phalanx of foot digit -http://purl.obolibrary.org/obo/UBERON_0003868;proximal phalanx of pes;proximal phalanx of hind digit -http://purl.obolibrary.org/obo/UBERON_0003868;proximal phalanx of pes;proximal phalanx of pes -http://purl.obolibrary.org/obo/UBERON_0003868;proximal phalanx of pes;proximal phalanx of toe -http://purl.obolibrary.org/obo/UBERON_0003869;presumptive ganglion; -http://purl.obolibrary.org/obo/UBERON_0003876;hippocampal field;hippocampal region -http://purl.obolibrary.org/obo/UBERON_0003876;hippocampal field;hippocampus region -http://purl.obolibrary.org/obo/UBERON_0003876;hippocampal field;hippocampus subdivision -http://purl.obolibrary.org/obo/UBERON_0003876;hippocampal field;subdivision of hippocampus -http://purl.obolibrary.org/obo/UBERON_0003881;CA1 field of hippocampus;CA1 -http://purl.obolibrary.org/obo/UBERON_0003881;CA1 field of hippocampus;CA1 field -http://purl.obolibrary.org/obo/UBERON_0003881;CA1 field of hippocampus;CA1 field of Ammon's horn -http://purl.obolibrary.org/obo/UBERON_0003881;CA1 field of hippocampus;CA1 field of cornu ammonis -http://purl.obolibrary.org/obo/UBERON_0003881;CA1 field of hippocampus;CA1 field of hippocampus -http://purl.obolibrary.org/obo/UBERON_0003881;CA1 field of hippocampus;CA1 field of the Ammon horn -http://purl.obolibrary.org/obo/UBERON_0003881;CA1 field of hippocampus;CA1 field of the hippocampus -http://purl.obolibrary.org/obo/UBERON_0003881;CA1 field of hippocampus;cornu ammonis 1 -http://purl.obolibrary.org/obo/UBERON_0003881;CA1 field of hippocampus;field CA1 -http://purl.obolibrary.org/obo/UBERON_0003881;CA1 field of hippocampus;field CA1 of hippocampus -http://purl.obolibrary.org/obo/UBERON_0003881;CA1 field of hippocampus;field CA1, Ammon's horn (Lorente de Ns) -http://purl.obolibrary.org/obo/UBERON_0003881;CA1 field of hippocampus;hippocampus CA1 -http://purl.obolibrary.org/obo/UBERON_0003881;CA1 field of hippocampus;prosubiculum = distal ca1 -http://purl.obolibrary.org/obo/UBERON_0003881;CA1 field of hippocampus;regio i cornus ammonis -http://purl.obolibrary.org/obo/UBERON_0003881;CA1 field of hippocampus;regio i hippocampi proprii -http://purl.obolibrary.org/obo/UBERON_0003881;CA1 field of hippocampus;regio superior -http://purl.obolibrary.org/obo/UBERON_0003881;CA1 field of hippocampus;regio superior of the hippocampus -http://purl.obolibrary.org/obo/UBERON_0003881;CA1 field of hippocampus;region 1 of Ammon's horn -http://purl.obolibrary.org/obo/UBERON_0003881;CA1 field of hippocampus;region CA1 -http://purl.obolibrary.org/obo/UBERON_0003881;CA1 field of hippocampus;region i of ammon's horn -http://purl.obolibrary.org/obo/UBERON_0003881;CA1 field of hippocampus;region i of hippocampus proper -http://purl.obolibrary.org/obo/UBERON_0003882;CA2 field of hippocampus;CA2 -http://purl.obolibrary.org/obo/UBERON_0003882;CA2 field of hippocampus;CA2 field -http://purl.obolibrary.org/obo/UBERON_0003882;CA2 field of hippocampus;CA2 field of Ammon's horn -http://purl.obolibrary.org/obo/UBERON_0003882;CA2 field of hippocampus;CA2 field of cornu ammonis -http://purl.obolibrary.org/obo/UBERON_0003882;CA2 field of hippocampus;CA2 field of hippocampus -http://purl.obolibrary.org/obo/UBERON_0003882;CA2 field of hippocampus;CA2 field of the Ammon horn -http://purl.obolibrary.org/obo/UBERON_0003882;CA2 field of hippocampus;CA2 field of the hippocampus -http://purl.obolibrary.org/obo/UBERON_0003882;CA2 field of hippocampus;cornu Ammonis 2 -http://purl.obolibrary.org/obo/UBERON_0003882;CA2 field of hippocampus;field CA2 -http://purl.obolibrary.org/obo/UBERON_0003882;CA2 field of hippocampus;field CA2 of hippocampus -http://purl.obolibrary.org/obo/UBERON_0003882;CA2 field of hippocampus;field CA2, Ammon's horn (Lorente de Ns) -http://purl.obolibrary.org/obo/UBERON_0003882;CA2 field of hippocampus;hippocampus CA2 -http://purl.obolibrary.org/obo/UBERON_0003882;CA2 field of hippocampus;regio ii cornus ammonis -http://purl.obolibrary.org/obo/UBERON_0003882;CA2 field of hippocampus;regio ii hippocampi proprii -http://purl.obolibrary.org/obo/UBERON_0003882;CA2 field of hippocampus;region 2 of Ammon's horn -http://purl.obolibrary.org/obo/UBERON_0003882;CA2 field of hippocampus;region CA2 -http://purl.obolibrary.org/obo/UBERON_0003882;CA2 field of hippocampus;region II of ammon's horn -http://purl.obolibrary.org/obo/UBERON_0003882;CA2 field of hippocampus;region II of hippocampus proper -http://purl.obolibrary.org/obo/UBERON_0003883;CA3 field of hippocampus;CA3 -http://purl.obolibrary.org/obo/UBERON_0003883;CA3 field of hippocampus;CA3 field -http://purl.obolibrary.org/obo/UBERON_0003883;CA3 field of hippocampus;CA3 field of Ammon's horn -http://purl.obolibrary.org/obo/UBERON_0003883;CA3 field of hippocampus;CA3 field of cornu ammonis -http://purl.obolibrary.org/obo/UBERON_0003883;CA3 field of hippocampus;CA3 field of hippocampus -http://purl.obolibrary.org/obo/UBERON_0003883;CA3 field of hippocampus;CA3 field of the Ammon horn -http://purl.obolibrary.org/obo/UBERON_0003883;CA3 field of hippocampus;CA3 field of the hippocampus -http://purl.obolibrary.org/obo/UBERON_0003883;CA3 field of hippocampus;cornu Ammonis 3 -http://purl.obolibrary.org/obo/UBERON_0003883;CA3 field of hippocampus;field CA3 -http://purl.obolibrary.org/obo/UBERON_0003883;CA3 field of hippocampus;field CA3 of hippocampus -http://purl.obolibrary.org/obo/UBERON_0003883;CA3 field of hippocampus;field CA3, Ammon's horn (Lorente de Ns) -http://purl.obolibrary.org/obo/UBERON_0003883;CA3 field of hippocampus;hippocampus CA3 -http://purl.obolibrary.org/obo/UBERON_0003883;CA3 field of hippocampus;regio III cornus ammonis -http://purl.obolibrary.org/obo/UBERON_0003883;CA3 field of hippocampus;regio III hippocampi proprii -http://purl.obolibrary.org/obo/UBERON_0003883;CA3 field of hippocampus;regio hippocampi proprii III -http://purl.obolibrary.org/obo/UBERON_0003883;CA3 field of hippocampus;regio inferior -http://purl.obolibrary.org/obo/UBERON_0003883;CA3 field of hippocampus;region 3 of Ammon's horn -http://purl.obolibrary.org/obo/UBERON_0003883;CA3 field of hippocampus;region CA3 -http://purl.obolibrary.org/obo/UBERON_0003883;CA3 field of hippocampus;region III of ammon's horn -http://purl.obolibrary.org/obo/UBERON_0003883;CA3 field of hippocampus;region III of hippocampus proper -http://purl.obolibrary.org/obo/UBERON_0003884;CA4 field of hippocampus;CA4 -http://purl.obolibrary.org/obo/UBERON_0003884;CA4 field of hippocampus;CA4 field -http://purl.obolibrary.org/obo/UBERON_0003884;CA4 field of hippocampus;CA4 field of Ammon's horn -http://purl.obolibrary.org/obo/UBERON_0003884;CA4 field of hippocampus;CA4 field of cornu ammonis -http://purl.obolibrary.org/obo/UBERON_0003884;CA4 field of hippocampus;hippocampus CA4 -http://purl.obolibrary.org/obo/UBERON_0003884;CA4 field of hippocampus;regio IV cornus ammonis -http://purl.obolibrary.org/obo/UBERON_0003884;CA4 field of hippocampus;regio IV hippocampi proprii -http://purl.obolibrary.org/obo/UBERON_0003884;CA4 field of hippocampus;region 4 of Ammon's horn -http://purl.obolibrary.org/obo/UBERON_0003884;CA4 field of hippocampus;region IV of ammon's horn -http://purl.obolibrary.org/obo/UBERON_0003884;CA4 field of hippocampus;region IV of hippocampus proper -http://purl.obolibrary.org/obo/UBERON_0003885;mesometrium; -http://purl.obolibrary.org/obo/UBERON_0003886;future coelemic cavity lumen;future coelomic cavity lumen -http://purl.obolibrary.org/obo/UBERON_0003887;intraembryonic coelom;somatic coelom -http://purl.obolibrary.org/obo/UBERON_0003888;extraembryonic coelomic cavity;chorion cavity -http://purl.obolibrary.org/obo/UBERON_0003888;extraembryonic coelomic cavity;chorionic cavity -http://purl.obolibrary.org/obo/UBERON_0003888;extraembryonic coelomic cavity;exocoelomic cavity -http://purl.obolibrary.org/obo/UBERON_0003888;extraembryonic coelomic cavity;extraembryonic celom -http://purl.obolibrary.org/obo/UBERON_0003889;fallopian tube;mammalian oviduct -http://purl.obolibrary.org/obo/UBERON_0003889;fallopian tube;uterine tube (sensu Mammalia) -http://purl.obolibrary.org/obo/UBERON_0003890;Mullerian duct;Muellerian duct -http://purl.obolibrary.org/obo/UBERON_0003890;Mullerian duct;Müllerian duct -http://purl.obolibrary.org/obo/UBERON_0003890;Mullerian duct;ductus paramesonephricus -http://purl.obolibrary.org/obo/UBERON_0003890;Mullerian duct;paramesonephric duct -http://purl.obolibrary.org/obo/UBERON_0003891;stroma; -http://purl.obolibrary.org/obo/UBERON_0003893;capsule; -http://purl.obolibrary.org/obo/UBERON_0003894;liver primordium;embryological hepatic plate -http://purl.obolibrary.org/obo/UBERON_0003894;liver primordium;primordium of the liver -http://purl.obolibrary.org/obo/UBERON_0003895;hypaxial myotome region;hypaxial myotome region -http://purl.obolibrary.org/obo/UBERON_0003897;axial muscle; -http://purl.obolibrary.org/obo/UBERON_0003898;skeletal muscle tissue of trunk;skeletal muscle of torso -http://purl.obolibrary.org/obo/UBERON_0003898;skeletal muscle tissue of trunk;skeletal muscle tissue of torso -http://purl.obolibrary.org/obo/UBERON_0003898;skeletal muscle tissue of trunk;skeletal muscle tissue of trunk -http://purl.obolibrary.org/obo/UBERON_0003898;skeletal muscle tissue of trunk;torso skeletal muscle -http://purl.obolibrary.org/obo/UBERON_0003898;skeletal muscle tissue of trunk;torso skeletal muscle tissue -http://purl.obolibrary.org/obo/UBERON_0003898;skeletal muscle tissue of trunk;trunk skeletal muscle -http://purl.obolibrary.org/obo/UBERON_0003898;skeletal muscle tissue of trunk;trunk skeletal muscle tissue -http://purl.obolibrary.org/obo/UBERON_0003900;epaxial myotome region;epaxial myotome regions -http://purl.obolibrary.org/obo/UBERON_0003901;horizontal septum;horizontal myoseptum -http://purl.obolibrary.org/obo/UBERON_0003902;retinal neural layer;neural layer of retina -http://purl.obolibrary.org/obo/UBERON_0003902;retinal neural layer;neural retina -http://purl.obolibrary.org/obo/UBERON_0003902;retinal neural layer;neural retinal epithelium -http://purl.obolibrary.org/obo/UBERON_0003902;retinal neural layer;neuroretina -http://purl.obolibrary.org/obo/UBERON_0003902;retinal neural layer;stratum nervosum (retina) -http://purl.obolibrary.org/obo/UBERON_0003902;retinal neural layer;stratum nervosum retinae -http://purl.obolibrary.org/obo/UBERON_0003903;bursa of Fabricius; -http://purl.obolibrary.org/obo/UBERON_0003904;bursal plica;bursal fold -http://purl.obolibrary.org/obo/UBERON_0003904;bursal plica;bursal plicae -http://purl.obolibrary.org/obo/UBERON_0003905;bursal follicle; -http://purl.obolibrary.org/obo/UBERON_0003906;cardiac jelly;heart cardiac jelly -http://purl.obolibrary.org/obo/UBERON_0003907;left atrioventricular canal;left AVC -http://purl.obolibrary.org/obo/UBERON_0003907;left atrioventricular canal;left atrio-ventricular canal -http://purl.obolibrary.org/obo/UBERON_0003908;right atrioventricular canal;right AVC -http://purl.obolibrary.org/obo/UBERON_0003908;right atrioventricular canal;right atrio-ventricular canal -http://purl.obolibrary.org/obo/UBERON_0003909;sinusoid;sinusoidal blood vessel -http://purl.obolibrary.org/obo/UBERON_0003909;sinusoid;sinusoidal blood vessel endothelium -http://purl.obolibrary.org/obo/UBERON_0003910;splenic sinusoid;sinusoidal blood vessel of spleen -http://purl.obolibrary.org/obo/UBERON_0003911;choroid plexus epithelium;choroid plexus epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003911;choroid plexus epithelium;epithelial tissue of chorioid plexus of cerebral hemisphere -http://purl.obolibrary.org/obo/UBERON_0003911;choroid plexus epithelium;epithelial tissue of choroid plexus -http://purl.obolibrary.org/obo/UBERON_0003911;choroid plexus epithelium;epithelium of choroid plexus -http://purl.obolibrary.org/obo/UBERON_0003912;chitinous tooth; -http://purl.obolibrary.org/obo/UBERON_0003913;tooth-like structure;tooth-like organ -http://purl.obolibrary.org/obo/UBERON_0003914;epithelial tube;epithelial or endothelial tube -http://purl.obolibrary.org/obo/UBERON_0003915;endothelial tube; -http://purl.obolibrary.org/obo/UBERON_0003916;fat pad; -http://purl.obolibrary.org/obo/UBERON_0003917;arthropod fat body;fat body -http://purl.obolibrary.org/obo/UBERON_0003918;kidney mesenchyme;mesenchyme of kidney -http://purl.obolibrary.org/obo/UBERON_0003920;venous blood vessel;segment of venous tree organ -http://purl.obolibrary.org/obo/UBERON_0003920;venous blood vessel;venous tree organ segment -http://purl.obolibrary.org/obo/UBERON_0003921;pancreas primordium;pancreatic primordium -http://purl.obolibrary.org/obo/UBERON_0003922;pancreatic epithelial bud;pancreatic bud -http://purl.obolibrary.org/obo/UBERON_0003922;pancreatic epithelial bud;pancreatic buds -http://purl.obolibrary.org/obo/UBERON_0003923;dorsal pancreatic bud;pancreas dorsal primordium duct bud -http://purl.obolibrary.org/obo/UBERON_0003923;dorsal pancreatic bud;pancreas primordium dorsal bud -http://purl.obolibrary.org/obo/UBERON_0003923;dorsal pancreatic bud;primary pancreatic bud -http://purl.obolibrary.org/obo/UBERON_0003924;ventral pancreatic bud;pancreas primordium ventral bud -http://purl.obolibrary.org/obo/UBERON_0003924;ventral pancreatic bud;pancreas ventral primordium duct bud -http://purl.obolibrary.org/obo/UBERON_0003925;photoreceptor inner segment layer;retina photoreceptor layer inner segment -http://purl.obolibrary.org/obo/UBERON_0003926;photoreceptor outer segment layer;retina photoreceptor layer outer segment -http://purl.obolibrary.org/obo/UBERON_0003928;digestive system duct;duct of digestive system -http://purl.obolibrary.org/obo/UBERON_0003928;digestive system duct;duct of gastrointestinal system -http://purl.obolibrary.org/obo/UBERON_0003928;digestive system duct;gastrointestinal system duct -http://purl.obolibrary.org/obo/UBERON_0003929;digestive tract epithelium;alimentary tract epithelium -http://purl.obolibrary.org/obo/UBERON_0003929;digestive tract epithelium;digestive tract epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003929;digestive tract epithelium;epithelial tissue of digestive tract -http://purl.obolibrary.org/obo/UBERON_0003929;digestive tract epithelium;epithelial tissue of gut -http://purl.obolibrary.org/obo/UBERON_0003929;digestive tract epithelium;epithelium of digestive tract -http://purl.obolibrary.org/obo/UBERON_0003929;digestive tract epithelium;epithelium of gut -http://purl.obolibrary.org/obo/UBERON_0003929;digestive tract epithelium;gastrodermis -http://purl.obolibrary.org/obo/UBERON_0003929;digestive tract epithelium;gut epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0003929;digestive tract epithelium;gut epithelium -http://purl.obolibrary.org/obo/UBERON_0003930;atrioventricular canal endocardium;AV canal endocardium -http://purl.obolibrary.org/obo/UBERON_0003930;atrioventricular canal endocardium;AVC endocardium -http://purl.obolibrary.org/obo/UBERON_0003930;atrioventricular canal endocardium;endocardium of AV canal -http://purl.obolibrary.org/obo/UBERON_0003930;atrioventricular canal endocardium;endocardium of atrioventricular canal -http://purl.obolibrary.org/obo/UBERON_0003931;diencephalic white matter;diencephalic tract/commissure -http://purl.obolibrary.org/obo/UBERON_0003931;diencephalic white matter;diencephalic tracts and commissures -http://purl.obolibrary.org/obo/UBERON_0003931;diencephalic white matter;predominantly white regional part of diencephalon -http://purl.obolibrary.org/obo/UBERON_0003931;diencephalic white matter;white matter of diencephalon -http://purl.obolibrary.org/obo/UBERON_0003932;cartilage element of chondrocranium;cartilage of chondrocranium -http://purl.obolibrary.org/obo/UBERON_0003932;cartilage element of chondrocranium;cartilaginous element of chondrocranium -http://purl.obolibrary.org/obo/UBERON_0003932;cartilage element of chondrocranium;chondrocranium cartilage -http://purl.obolibrary.org/obo/UBERON_0003932;cartilage element of chondrocranium;neurocranium cartilage -http://purl.obolibrary.org/obo/UBERON_0003933;cranial cartilage;cartilage of cranium -http://purl.obolibrary.org/obo/UBERON_0003933;cranial cartilage;cranium cartilage -http://purl.obolibrary.org/obo/UBERON_0003934;mesenchyme pectoral fin;mesenchyme of pectoral fin -http://purl.obolibrary.org/obo/UBERON_0003934;mesenchyme pectoral fin;pectoral fin mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003935;mesenchyme pelvic fin;mesenchyme of pelvic fin -http://purl.obolibrary.org/obo/UBERON_0003935;mesenchyme pelvic fin;pelvic fin mesenchyme -http://purl.obolibrary.org/obo/UBERON_0003936;postoptic commissure;POC -http://purl.obolibrary.org/obo/UBERON_0003936;postoptic commissure;post optic commissure -http://purl.obolibrary.org/obo/UBERON_0003936;postoptic commissure;post-optic commissure -http://purl.obolibrary.org/obo/UBERON_0003937;reproductive gland;genitalia gland -http://purl.obolibrary.org/obo/UBERON_0003937;reproductive gland;gland of genitalia -http://purl.obolibrary.org/obo/UBERON_0003937;reproductive gland;gland of reproductive system -http://purl.obolibrary.org/obo/UBERON_0003937;reproductive gland;reproductive gland -http://purl.obolibrary.org/obo/UBERON_0003937;reproductive gland;reproductive system gland -http://purl.obolibrary.org/obo/UBERON_0003937;reproductive gland;sex gland -http://purl.obolibrary.org/obo/UBERON_0003938;sensory dissociation area; -http://purl.obolibrary.org/obo/UBERON_0003939;transverse gyrus of Heschl;Heshl's gyrus -http://purl.obolibrary.org/obo/UBERON_0003939;transverse gyrus of Heschl;transverse temporal gyrus -http://purl.obolibrary.org/obo/UBERON_0003941;cerebellum anterior vermis;anterior cerebellum vermis -http://purl.obolibrary.org/obo/UBERON_0003941;cerebellum anterior vermis;anterior vermis of cerebellum -http://purl.obolibrary.org/obo/UBERON_0003941;cerebellum anterior vermis;part of vermal region -http://purl.obolibrary.org/obo/UBERON_0003941;cerebellum anterior vermis;vermis lobus anterior -http://purl.obolibrary.org/obo/UBERON_0003941;cerebellum anterior vermis;vermis of anterior lobe -http://purl.obolibrary.org/obo/UBERON_0003941;cerebellum anterior vermis;vermis of anterior lobe of cerebellum -http://purl.obolibrary.org/obo/UBERON_0003941;cerebellum anterior vermis;vermis of the anterior lobe of the cerebellum -http://purl.obolibrary.org/obo/UBERON_0003942;somatosensory system;somatic sensory system -http://purl.obolibrary.org/obo/UBERON_0003942;somatosensory system;system for detection of somatic senses -http://purl.obolibrary.org/obo/UBERON_0003943;fourth lumbar dorsal root ganglion;L4 dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0003943;fourth lumbar dorsal root ganglion;L4 ganglion -http://purl.obolibrary.org/obo/UBERON_0003943;fourth lumbar dorsal root ganglion;forth lumbar dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0003943;fourth lumbar dorsal root ganglion;fourth lumbar dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0003943;fourth lumbar dorsal root ganglion;fourth lumbar spinal ganglion -http://purl.obolibrary.org/obo/UBERON_0003945;somatic motor system; -http://purl.obolibrary.org/obo/UBERON_0003946;placenta labyrinth;labyrinthine layer -http://purl.obolibrary.org/obo/UBERON_0003946;placenta labyrinth;labyrinthine layer of placenta -http://purl.obolibrary.org/obo/UBERON_0003946;placenta labyrinth;placental labyrinth -http://purl.obolibrary.org/obo/UBERON_0003947;brain ventricle/choroid plexus; -http://purl.obolibrary.org/obo/UBERON_0003948;blood-air barrier; -http://purl.obolibrary.org/obo/UBERON_0003949;tubal tonsil;Gerlach's tonsil -http://purl.obolibrary.org/obo/UBERON_0003949;tubal tonsil;Gerlach's tubal tonsil -http://purl.obolibrary.org/obo/UBERON_0003949;tubal tonsil;auditory tube lymph gland -http://purl.obolibrary.org/obo/UBERON_0003949;tubal tonsil;eustachian amygdala -http://purl.obolibrary.org/obo/UBERON_0003950;inner ear canal; -http://purl.obolibrary.org/obo/UBERON_0003951;ocular fundus;eye fundus -http://purl.obolibrary.org/obo/UBERON_0003951;ocular fundus;fundus -http://purl.obolibrary.org/obo/UBERON_0003951;ocular fundus;fundus oculi -http://purl.obolibrary.org/obo/UBERON_0003951;ocular fundus;fundus of eye -http://purl.obolibrary.org/obo/UBERON_0003952;anterior stroma of cornea;cornea anterior stroma -http://purl.obolibrary.org/obo/UBERON_0003953;posterior stroma of cornea;cornea posterior stroma -http://purl.obolibrary.org/obo/UBERON_0003954;squamoparietal suture;squamo-parietal suture -http://purl.obolibrary.org/obo/UBERON_0003954;squamoparietal suture;squamoparietal suture of skull -http://purl.obolibrary.org/obo/UBERON_0003954;squamoparietal suture;sutura squamosa cranii -http://purl.obolibrary.org/obo/UBERON_0003955;molar crown;crown of molar tooth -http://purl.obolibrary.org/obo/UBERON_0003955;molar crown;molar tooth crown -http://purl.obolibrary.org/obo/UBERON_0003955;molar crown;molar tooth tooth crown -http://purl.obolibrary.org/obo/UBERON_0003955;molar crown;tooth crown of molar tooth -http://purl.obolibrary.org/obo/UBERON_0003956;aqueous drainage system; -http://purl.obolibrary.org/obo/UBERON_0003957;Bruch's membrane;Bruch membrane -http://purl.obolibrary.org/obo/UBERON_0003957;Bruch's membrane;Bruch's basal membrane -http://purl.obolibrary.org/obo/UBERON_0003957;Bruch's membrane;lamina basalis (choroid) -http://purl.obolibrary.org/obo/UBERON_0003957;Bruch's membrane;lamina choroideae basalis -http://purl.obolibrary.org/obo/UBERON_0003957;Bruch's membrane;vitreous lamina -http://purl.obolibrary.org/obo/UBERON_0003958;long bone epiphyseal ossification zone; -http://purl.obolibrary.org/obo/UBERON_0003959;rete testis;Haller's rete -http://purl.obolibrary.org/obo/UBERON_0003960;styloid process of temporal bone;processus styloideus -http://purl.obolibrary.org/obo/UBERON_0003960;styloid process of temporal bone;processus styloideus ossis temporalis -http://purl.obolibrary.org/obo/UBERON_0003960;styloid process of temporal bone;styloid process -http://purl.obolibrary.org/obo/UBERON_0003960;styloid process of temporal bone;styloid process of petrous part of temporal bone -http://purl.obolibrary.org/obo/UBERON_0003960;styloid process of temporal bone;temporal styloid process -http://purl.obolibrary.org/obo/UBERON_0003961;cingulum of brain;cingulum bundle -http://purl.obolibrary.org/obo/UBERON_0003962;pterygopalatine ganglion;Meckel ganglion -http://purl.obolibrary.org/obo/UBERON_0003962;pterygopalatine ganglion;Meckel's ganglion -http://purl.obolibrary.org/obo/UBERON_0003962;pterygopalatine ganglion;g. pterygopalatinum -http://purl.obolibrary.org/obo/UBERON_0003962;pterygopalatine ganglion;nasal ganglion -http://purl.obolibrary.org/obo/UBERON_0003962;pterygopalatine ganglion;palatine ganglion -http://purl.obolibrary.org/obo/UBERON_0003962;pterygopalatine ganglion;pterygopalatine ganglia -http://purl.obolibrary.org/obo/UBERON_0003962;pterygopalatine ganglion;sphenopalatine ganglion -http://purl.obolibrary.org/obo/UBERON_0003962;pterygopalatine ganglion;sphenopalatine parasympathetic ganglion -http://purl.obolibrary.org/obo/UBERON_0003963;otic ganglion;Arnold's ganglion -http://purl.obolibrary.org/obo/UBERON_0003963;otic ganglion;ganglion oticum -http://purl.obolibrary.org/obo/UBERON_0003963;otic ganglion;otic parasympathetic ganglion -http://purl.obolibrary.org/obo/UBERON_0003964;prevertebral ganglion;collateral ganglia -http://purl.obolibrary.org/obo/UBERON_0003964;prevertebral ganglion;collateral ganglion -http://purl.obolibrary.org/obo/UBERON_0003964;prevertebral ganglion;pre-aortic ganglia -http://purl.obolibrary.org/obo/UBERON_0003964;prevertebral ganglion;preaortic ganglia -http://purl.obolibrary.org/obo/UBERON_0003964;prevertebral ganglion;prevertebral ganglion -http://purl.obolibrary.org/obo/UBERON_0003964;prevertebral ganglion;prevertebral plexuses -http://purl.obolibrary.org/obo/UBERON_0003964;prevertebral ganglion;previsceral ganglion -http://purl.obolibrary.org/obo/UBERON_0003964;prevertebral ganglion;three great gangliated plexuses -http://purl.obolibrary.org/obo/UBERON_0003965;sympathetic afferent fiber; -http://purl.obolibrary.org/obo/UBERON_0003966;gonial bone;gonium -http://purl.obolibrary.org/obo/UBERON_0003967;cutaneous elastic tissue; -http://purl.obolibrary.org/obo/UBERON_0003968;peripheral lymph node; -http://purl.obolibrary.org/obo/UBERON_0003970;placental labyrinth vasculature;placental labyrinth vascular network -http://purl.obolibrary.org/obo/UBERON_0003970;placental labyrinth vasculature;vasculature of placenta labyrinth -http://purl.obolibrary.org/obo/UBERON_0003971;interfrontal bone; -http://purl.obolibrary.org/obo/UBERON_0003972;placenta junctional zone; -http://purl.obolibrary.org/obo/UBERON_0003973;nasal concha of ethmoid bone;ethmo-turbinate -http://purl.obolibrary.org/obo/UBERON_0003973;nasal concha of ethmoid bone;ethmoturbinal -http://purl.obolibrary.org/obo/UBERON_0003973;nasal concha of ethmoid bone;ethmoturbinate -http://purl.obolibrary.org/obo/UBERON_0003973;nasal concha of ethmoid bone;nasal turbinate of ethmoid bone -http://purl.obolibrary.org/obo/UBERON_0003973;nasal concha of ethmoid bone;turbinate of ethmoid bone -http://purl.obolibrary.org/obo/UBERON_0003974;upper part of vagina;cranial vagina -http://purl.obolibrary.org/obo/UBERON_0003974;upper part of vagina;pelvic part of vagina -http://purl.obolibrary.org/obo/UBERON_0003974;upper part of vagina;vagina upper part -http://purl.obolibrary.org/obo/UBERON_0003975;internal female genitalia;female internal genitalia -http://purl.obolibrary.org/obo/UBERON_0003975;internal female genitalia;internal female genital organ -http://purl.obolibrary.org/obo/UBERON_0003975;internal female genitalia;internal genitalia of female reproductive system -http://purl.obolibrary.org/obo/UBERON_0003976;saccule duct;saccular duct -http://purl.obolibrary.org/obo/UBERON_0003976;saccule duct;saccular part of utriculosaccular duct -http://purl.obolibrary.org/obo/UBERON_0003977;utricle duct;utricular duct -http://purl.obolibrary.org/obo/UBERON_0003977;utricle duct;utricular part of utriculosaccular duct -http://purl.obolibrary.org/obo/UBERON_0003978;valve;anatomical valve -http://purl.obolibrary.org/obo/UBERON_0003979;utricle valve; -http://purl.obolibrary.org/obo/UBERON_0003980;cerebellum fissure;cerebellar fissure -http://purl.obolibrary.org/obo/UBERON_0003980;cerebellum fissure;fissurae cerebelli -http://purl.obolibrary.org/obo/UBERON_0003981;primordial ovarian follicle;ovary primordial follicle -http://purl.obolibrary.org/obo/UBERON_0003981;primordial ovarian follicle;primordial follicle -http://purl.obolibrary.org/obo/UBERON_0003982;mature ovarian follicle;ovarian follicle stage IV -http://purl.obolibrary.org/obo/UBERON_0003982;mature ovarian follicle;ovary mature follicle -http://purl.obolibrary.org/obo/UBERON_0003983;conus arteriosus; -http://purl.obolibrary.org/obo/UBERON_0003984;uterine tube infundibulum;infundibulum of oviduct -http://purl.obolibrary.org/obo/UBERON_0003984;uterine tube infundibulum;infundibulum of uterine tube -http://purl.obolibrary.org/obo/UBERON_0003985;major sublingual duct; -http://purl.obolibrary.org/obo/UBERON_0003986;minor sublingual duct;duct of Rivinus -http://purl.obolibrary.org/obo/UBERON_0003987;Hassall's corpuscle;capsule of Hassal's corpuscle -http://purl.obolibrary.org/obo/UBERON_0003987;Hassall's corpuscle;thymic corpuscle -http://purl.obolibrary.org/obo/UBERON_0003988;thymus corticomedullary boundary;thymic cortico-medullary boundary -http://purl.obolibrary.org/obo/UBERON_0003988;thymus corticomedullary boundary;thymic corticomedullary boundary -http://purl.obolibrary.org/obo/UBERON_0003988;thymus corticomedullary boundary;thymic corticomedullary junction -http://purl.obolibrary.org/obo/UBERON_0003988;thymus corticomedullary boundary;thymic corticomedullary zone -http://purl.obolibrary.org/obo/UBERON_0003988;thymus corticomedullary boundary;thymus CMZ -http://purl.obolibrary.org/obo/UBERON_0003988;thymus corticomedullary boundary;thymus cortico-medullary boundary -http://purl.obolibrary.org/obo/UBERON_0003988;thymus corticomedullary boundary;thymus corticomedullary junction -http://purl.obolibrary.org/obo/UBERON_0003988;thymus corticomedullary boundary;thymus corticomedullary zone -http://purl.obolibrary.org/obo/UBERON_0003989;medulla oblongata anterior median fissure;anterior median fissure -http://purl.obolibrary.org/obo/UBERON_0003989;medulla oblongata anterior median fissure;anterior median fissure of medulla -http://purl.obolibrary.org/obo/UBERON_0003989;medulla oblongata anterior median fissure;anterior median fissure of medulla oblongata -http://purl.obolibrary.org/obo/UBERON_0003989;medulla oblongata anterior median fissure;fissura mediana anterior medullae oblongatae -http://purl.obolibrary.org/obo/UBERON_0003989;medulla oblongata anterior median fissure;ventral median fissure of medulla -http://purl.obolibrary.org/obo/UBERON_0003989;medulla oblongata anterior median fissure;ventral median sulcus -http://purl.obolibrary.org/obo/UBERON_0003990;spinal cord motor column; -http://purl.obolibrary.org/obo/UBERON_0003991;fourth ventricle median aperture;apertura mediana -http://purl.obolibrary.org/obo/UBERON_0003991;fourth ventricle median aperture;foramen of Magendie -http://purl.obolibrary.org/obo/UBERON_0003991;fourth ventricle median aperture;foramen of Majendie -http://purl.obolibrary.org/obo/UBERON_0003991;fourth ventricle median aperture;fourth ventricle median aperture -http://purl.obolibrary.org/obo/UBERON_0003991;fourth ventricle median aperture;median aperture of fourth ventricle -http://purl.obolibrary.org/obo/UBERON_0003992;fourth ventricle lateral aperture;apertura lateralis -http://purl.obolibrary.org/obo/UBERON_0003992;fourth ventricle lateral aperture;foramen of Key-Retzius -http://purl.obolibrary.org/obo/UBERON_0003992;fourth ventricle lateral aperture;foramen of Luschka -http://purl.obolibrary.org/obo/UBERON_0003992;fourth ventricle lateral aperture;foramen of Retzius -http://purl.obolibrary.org/obo/UBERON_0003992;fourth ventricle lateral aperture;foramen of key and retzius -http://purl.obolibrary.org/obo/UBERON_0003992;fourth ventricle lateral aperture;lateral aperture of fourth ventricle -http://purl.obolibrary.org/obo/UBERON_0003993;interventricular foramen of CNS;foramen Monroi -http://purl.obolibrary.org/obo/UBERON_0003993;interventricular foramen of CNS;foramen interventriculare -http://purl.obolibrary.org/obo/UBERON_0003993;interventricular foramen of CNS;interventricular foramen -http://purl.obolibrary.org/obo/UBERON_0003993;interventricular foramen of CNS;interventricular foramina -http://purl.obolibrary.org/obo/UBERON_0003994;pelvic ligament;pelvis ligament -http://purl.obolibrary.org/obo/UBERON_0003995;subarcuate fossa;fossa subarcuata -http://purl.obolibrary.org/obo/UBERON_0003996;cervical vertebra 1 arcus anterior;anterior arch of atlas -http://purl.obolibrary.org/obo/UBERON_0003996;cervical vertebra 1 arcus anterior;arcus anterior -http://purl.obolibrary.org/obo/UBERON_0003996;cervical vertebra 1 arcus anterior;arcus anterior atlantis -http://purl.obolibrary.org/obo/UBERON_0003996;cervical vertebra 1 arcus anterior;cervical vertebra 1 arcus anterior -http://purl.obolibrary.org/obo/UBERON_0003997;hyoid bone greater horn;cornu majus -http://purl.obolibrary.org/obo/UBERON_0003997;hyoid bone greater horn;cornu majus ossis hyoidei -http://purl.obolibrary.org/obo/UBERON_0003997;hyoid bone greater horn;cornua majora -http://purl.obolibrary.org/obo/UBERON_0003997;hyoid bone greater horn;greater cornu -http://purl.obolibrary.org/obo/UBERON_0003997;hyoid bone greater horn;greater cornua -http://purl.obolibrary.org/obo/UBERON_0003997;hyoid bone greater horn;greater horn -http://purl.obolibrary.org/obo/UBERON_0003997;hyoid bone greater horn;greater horn of hyoid -http://purl.obolibrary.org/obo/UBERON_0003997;hyoid bone greater horn;greater horn of hyoid bone -http://purl.obolibrary.org/obo/UBERON_0003997;hyoid bone greater horn;tyrohal -http://purl.obolibrary.org/obo/UBERON_0003997;hyoid bone greater horn;tyrohals -http://purl.obolibrary.org/obo/UBERON_0003998;hyoid bone lesser horn;cornu minus -http://purl.obolibrary.org/obo/UBERON_0003998;hyoid bone lesser horn;cornu minus ossis hyoidei -http://purl.obolibrary.org/obo/UBERON_0003998;hyoid bone lesser horn;lesser cornu -http://purl.obolibrary.org/obo/UBERON_0003998;hyoid bone lesser horn;lesser cornu of hyoid -http://purl.obolibrary.org/obo/UBERON_0003998;hyoid bone lesser horn;lesser cornua -http://purl.obolibrary.org/obo/UBERON_0003998;hyoid bone lesser horn;lesser horn -http://purl.obolibrary.org/obo/UBERON_0003998;hyoid bone lesser horn;lesser horn of hyoid -http://purl.obolibrary.org/obo/UBERON_0003998;hyoid bone lesser horn;lesser horn of hyoid bone -http://purl.obolibrary.org/obo/UBERON_0003998;hyoid bone lesser horn;lesser horn of the hyoid -http://purl.obolibrary.org/obo/UBERON_0003999;hyoid bone body; -http://purl.obolibrary.org/obo/UBERON_0004000;tarsal gland acinus;Meibomian gland acinus -http://purl.obolibrary.org/obo/UBERON_0004000;tarsal gland acinus;acinus of tarsal gland -http://purl.obolibrary.org/obo/UBERON_0004001;olfactory bulb layer;cytoarchitectural part of olfactory bulb -http://purl.obolibrary.org/obo/UBERON_0004002;posterior lobe of cerebellum;cerebellar posterior lobe -http://purl.obolibrary.org/obo/UBERON_0004002;posterior lobe of cerebellum;cerebellum posterior lobe -http://purl.obolibrary.org/obo/UBERON_0004002;posterior lobe of cerebellum;middle lobe-1 of cerebellum -http://purl.obolibrary.org/obo/UBERON_0004002;posterior lobe of cerebellum;posterior cerebellar lobe -http://purl.obolibrary.org/obo/UBERON_0004002;posterior lobe of cerebellum;posterior lobe of cerebellum -http://purl.obolibrary.org/obo/UBERON_0004002;posterior lobe of cerebellum;posterior lobe of the cerebellum -http://purl.obolibrary.org/obo/UBERON_0004002;posterior lobe of cerebellum;posterior lobe-1 of cerebellum -http://purl.obolibrary.org/obo/UBERON_0004003;cerebellum hemisphere lobule;cerebellar hemisphere lobule -http://purl.obolibrary.org/obo/UBERON_0004003;cerebellum hemisphere lobule;lobule of cerebellar hemisphere -http://purl.obolibrary.org/obo/UBERON_0004003;cerebellum hemisphere lobule;lobule of hemisphere of cerebellum -http://purl.obolibrary.org/obo/UBERON_0004004;cerebellum lobule;lobular parts of the cerebellar cortex -http://purl.obolibrary.org/obo/UBERON_0004006;cerebellum intermediate zone;cerebellar paravermis -http://purl.obolibrary.org/obo/UBERON_0004006;cerebellum intermediate zone;cerebellum intermediate hemisphere -http://purl.obolibrary.org/obo/UBERON_0004006;cerebellum intermediate zone;intermediate part of spinocerebellum -http://purl.obolibrary.org/obo/UBERON_0004006;cerebellum intermediate zone;intermediate zone -http://purl.obolibrary.org/obo/UBERON_0004006;cerebellum intermediate zone;paravermis -http://purl.obolibrary.org/obo/UBERON_0004008;cerebellar plate;cerebellum plate -http://purl.obolibrary.org/obo/UBERON_0004009;cerebellum posterior vermis;posterior cerebellum vermis -http://purl.obolibrary.org/obo/UBERON_0004009;cerebellum posterior vermis;vermis lobus posterior -http://purl.obolibrary.org/obo/UBERON_0004009;cerebellum posterior vermis;vermis of posterior lobe -http://purl.obolibrary.org/obo/UBERON_0004009;cerebellum posterior vermis;vermis of posterior lobe of cerebellum -http://purl.obolibrary.org/obo/UBERON_0004009;cerebellum posterior vermis;vermis of the posterior lobe of the cerebellum -http://purl.obolibrary.org/obo/UBERON_0004010;primary muscle spindle; -http://purl.obolibrary.org/obo/UBERON_0004011;secondary muscle spindle; -http://purl.obolibrary.org/obo/UBERON_0004012;golgi tendon organ;neurotendinous ending -http://purl.obolibrary.org/obo/UBERON_0004012;golgi tendon organ;neurotendinous organ of golgi -http://purl.obolibrary.org/obo/UBERON_0004013;egg cylinder; -http://purl.obolibrary.org/obo/UBERON_0004014;labium minora;labia minorum -http://purl.obolibrary.org/obo/UBERON_0004014;labium minora;labium minora -http://purl.obolibrary.org/obo/UBERON_0004014;labium minora;labium minorum -http://purl.obolibrary.org/obo/UBERON_0004014;labium minora;labium minus -http://purl.obolibrary.org/obo/UBERON_0004014;labium minora;labium minus pudendi -http://purl.obolibrary.org/obo/UBERON_0004015;embryonic-extraembryonic boundary; -http://purl.obolibrary.org/obo/UBERON_0004016;dermatome;cutis plate -http://purl.obolibrary.org/obo/UBERON_0004016;dermatome;dermatomal mesenchyme -http://purl.obolibrary.org/obo/UBERON_0004017;periocular mesenchyme; -http://purl.obolibrary.org/obo/UBERON_0004019;baroreceptor; -http://purl.obolibrary.org/obo/UBERON_0004021;spongiotrophoblast layer;spongiotrophoblast layer of placenta -http://purl.obolibrary.org/obo/UBERON_0004022;germinal neuroepithelium;germinal neuroepithelial layer -http://purl.obolibrary.org/obo/UBERON_0004022;germinal neuroepithelium;germinal neuroepithelium -http://purl.obolibrary.org/obo/UBERON_0004022;germinal neuroepithelium;original neural tube -http://purl.obolibrary.org/obo/UBERON_0004023;ganglionic eminence;embryonic subventricular zone -http://purl.obolibrary.org/obo/UBERON_0004023;ganglionic eminence;embryonic/fetal subventricular zone -http://purl.obolibrary.org/obo/UBERON_0004023;ganglionic eminence;fetal subventricular zone -http://purl.obolibrary.org/obo/UBERON_0004023;ganglionic eminence;subependymal layer -http://purl.obolibrary.org/obo/UBERON_0004024;medial ganglionic eminence; -http://purl.obolibrary.org/obo/UBERON_0004025;lateral ganglionic eminence; -http://purl.obolibrary.org/obo/UBERON_0004026;caudal ganglionic eminence; -http://purl.obolibrary.org/obo/UBERON_0004027;chorionic plate; -http://purl.obolibrary.org/obo/UBERON_0004029;canal of Schlemm;Schlemm's canal -http://purl.obolibrary.org/obo/UBERON_0004029;canal of Schlemm;scleral sinus -http://purl.obolibrary.org/obo/UBERON_0004029;canal of Schlemm;scleral venous sinus -http://purl.obolibrary.org/obo/UBERON_0004029;canal of Schlemm;sinus venosus of sclera -http://purl.obolibrary.org/obo/UBERON_0004029;canal of Schlemm;sinus venosus sclerae -http://purl.obolibrary.org/obo/UBERON_0004030;aqueous vein; -http://purl.obolibrary.org/obo/UBERON_0004031;head ectomesenchyme;ectomesenchyme -http://purl.obolibrary.org/obo/UBERON_0004032;podocyte slit diaphragm; -http://purl.obolibrary.org/obo/UBERON_0004033;podocyte slit junction; -http://purl.obolibrary.org/obo/UBERON_0004034;cutaneous microfibril; -http://purl.obolibrary.org/obo/UBERON_0004035;cortical subplate;cerebral cortex subplate -http://purl.obolibrary.org/obo/UBERON_0004035;cortical subplate;subplate -http://purl.obolibrary.org/obo/UBERON_0004035;cortical subplate;subplate zone -http://purl.obolibrary.org/obo/UBERON_0004040;cortical intermediate zone; -http://purl.obolibrary.org/obo/UBERON_0004041;spleen primary B follicle;primary spleen B cell follicle -http://purl.obolibrary.org/obo/UBERON_0004042;spleen secondary B follicle;secondary spleen B cell follicle -http://purl.obolibrary.org/obo/UBERON_0004042;spleen secondary B follicle;splenic secondary B cell follicle -http://purl.obolibrary.org/obo/UBERON_0004043;semicircular canal ampulla; -http://purl.obolibrary.org/obo/UBERON_0004044;anterior visceral endoderm; -http://purl.obolibrary.org/obo/UBERON_0004045;tailgut; -http://purl.obolibrary.org/obo/UBERON_0004046;anterior definitive endoderm; -http://purl.obolibrary.org/obo/UBERON_0004047;basal cistern; -http://purl.obolibrary.org/obo/UBERON_0004048;pontine cistern;cisterna pontis -http://purl.obolibrary.org/obo/UBERON_0004049;cerebellomedullary cistern;great cistern -http://purl.obolibrary.org/obo/UBERON_0004050;subarachnoid cistern; -http://purl.obolibrary.org/obo/UBERON_0004051;lateral cerebellomedullary cistern;cisterna cerebellomedullaris lateralis -http://purl.obolibrary.org/obo/UBERON_0004052;quadrigeminal cistern;ambient cistern -http://purl.obolibrary.org/obo/UBERON_0004052;quadrigeminal cistern;cistern of great cerebral vein -http://purl.obolibrary.org/obo/UBERON_0004052;quadrigeminal cistern;cisterna ambiens -http://purl.obolibrary.org/obo/UBERON_0004052;quadrigeminal cistern;cisterna quadrigeminalis -http://purl.obolibrary.org/obo/UBERON_0004052;quadrigeminal cistern;cisterna venae magnae cerebri -http://purl.obolibrary.org/obo/UBERON_0004052;quadrigeminal cistern;superior cistern -http://purl.obolibrary.org/obo/UBERON_0004053;external male genitalia;external male genital organ -http://purl.obolibrary.org/obo/UBERON_0004053;external male genitalia;male external genitalia -http://purl.obolibrary.org/obo/UBERON_0004053;external male genitalia;organa genitalia masculina externa -http://purl.obolibrary.org/obo/UBERON_0004054;internal male genitalia;internal male genital organ -http://purl.obolibrary.org/obo/UBERON_0004054;internal male genitalia;male internal genitalia -http://purl.obolibrary.org/obo/UBERON_0004054;internal male genitalia;organa genitalia masculina interna -http://purl.obolibrary.org/obo/UBERON_0004055;primitive pit; -http://purl.obolibrary.org/obo/UBERON_0004056;primitive groove; -http://purl.obolibrary.org/obo/UBERON_0004057;skeletal muscle fiber triad; -http://purl.obolibrary.org/obo/UBERON_0004058;biliary ductule;bile ductule -http://purl.obolibrary.org/obo/UBERON_0004058;biliary ductule;biliary ductule -http://purl.obolibrary.org/obo/UBERON_0004058;biliary ductule;ductuli biliferi -http://purl.obolibrary.org/obo/UBERON_0004059;spinal cord medial motor column; -http://purl.obolibrary.org/obo/UBERON_0004060;neural tube ventricular layer;neural tube ependymal layer -http://purl.obolibrary.org/obo/UBERON_0004060;neural tube ventricular layer;neural tube ventricular germinal zone -http://purl.obolibrary.org/obo/UBERON_0004060;neural tube ventricular layer;neural tube ventricular zone -http://purl.obolibrary.org/obo/UBERON_0004061;neural tube mantle layer;neural tube intermediate zone -http://purl.obolibrary.org/obo/UBERON_0004062;neural tube marginal layer;neural tube marginal zone -http://purl.obolibrary.org/obo/UBERON_0004063;spinal cord alar plate;alar column spinal cord -http://purl.obolibrary.org/obo/UBERON_0004063;spinal cord alar plate;spinal cord alar column -http://purl.obolibrary.org/obo/UBERON_0004063;spinal cord alar plate;spinal cord alar lamina -http://purl.obolibrary.org/obo/UBERON_0004064;neural tube basal plate;basal plate -http://purl.obolibrary.org/obo/UBERON_0004064;neural tube basal plate;basal plate of neural tube -http://purl.obolibrary.org/obo/UBERON_0004066;frontonasal prominence;embryonic frontonasal prominence -http://purl.obolibrary.org/obo/UBERON_0004067;lateral nasal prominence;lateral nasal process -http://purl.obolibrary.org/obo/UBERON_0004067;lateral nasal prominence;latero-nasal process -http://purl.obolibrary.org/obo/UBERON_0004068;medial nasal prominence;medial nasal process -http://purl.obolibrary.org/obo/UBERON_0004068;medial nasal prominence;medial-nasal process -http://purl.obolibrary.org/obo/UBERON_0004068;medial nasal prominence;prominentia nasalis medialis -http://purl.obolibrary.org/obo/UBERON_0004069;Olfactory bulb accessory nucleus;accessory (vomeronasal) bulb -http://purl.obolibrary.org/obo/UBERON_0004069;Olfactory bulb accessory nucleus;accessory olfactory formation -http://purl.obolibrary.org/obo/UBERON_0004069;Olfactory bulb accessory nucleus;olfactory bulb accessory nucleus -http://purl.obolibrary.org/obo/UBERON_0004069;accessory olfactory bulb;accessory (vomeronasal) bulb -http://purl.obolibrary.org/obo/UBERON_0004069;accessory olfactory bulb;accessory olfactory formation -http://purl.obolibrary.org/obo/UBERON_0004069;accessory olfactory bulb;olfactory bulb accessory nucleus -http://purl.obolibrary.org/obo/UBERON_0004070;cerebellum vermis lobule;lobule of vermis -http://purl.obolibrary.org/obo/UBERON_0004073;cerebellum interpositus nucleus;interposed nucleus of cerebellum -http://purl.obolibrary.org/obo/UBERON_0004073;cerebellum interpositus nucleus;interposed nucleus of the cerebellum -http://purl.obolibrary.org/obo/UBERON_0004074;cerebellum vermis lobule I;lingula (I) -http://purl.obolibrary.org/obo/UBERON_0004074;cerebellum vermis lobule I;lingula of anterior cerebellum vermis -http://purl.obolibrary.org/obo/UBERON_0004074;cerebellum vermis lobule I;lingula of cerebellum -http://purl.obolibrary.org/obo/UBERON_0004074;cerebellum vermis lobule I;lobule I of cerebellum vermis -http://purl.obolibrary.org/obo/UBERON_0004074;cerebellum vermis lobule I;neuraxis lingula -http://purl.obolibrary.org/obo/UBERON_0004074;cerebellum vermis lobule I;vermic lobule I -http://purl.obolibrary.org/obo/UBERON_0004075;cerebellum vermis lobule II;lobule II -http://purl.obolibrary.org/obo/UBERON_0004075;cerebellum vermis lobule II;lobule II of cerebellum vermis -http://purl.obolibrary.org/obo/UBERON_0004075;cerebellum vermis lobule II;vermic lobule II -http://purl.obolibrary.org/obo/UBERON_0004076;cerebellum vermis lobule III;lobule III -http://purl.obolibrary.org/obo/UBERON_0004076;cerebellum vermis lobule III;lobule III of cerebellum vermis -http://purl.obolibrary.org/obo/UBERON_0004076;cerebellum vermis lobule III;vermic lobule III -http://purl.obolibrary.org/obo/UBERON_0004077;cerebellum vermis lobule IV;lobule IV of cerebellum vermis -http://purl.obolibrary.org/obo/UBERON_0004077;cerebellum vermis lobule IV;vermic lobule IV -http://purl.obolibrary.org/obo/UBERON_0004078;cerebellum vermis lobule IX;cerebellar posterior vermis lobule IX -http://purl.obolibrary.org/obo/UBERON_0004078;cerebellum vermis lobule IX;lobule IX of cerebellar posterior vermis -http://purl.obolibrary.org/obo/UBERON_0004078;cerebellum vermis lobule IX;lobule IX of cerebellum vermis -http://purl.obolibrary.org/obo/UBERON_0004078;cerebellum vermis lobule IX;neuraxis uvula -http://purl.obolibrary.org/obo/UBERON_0004078;cerebellum vermis lobule IX;uvula (IX) -http://purl.obolibrary.org/obo/UBERON_0004078;cerebellum vermis lobule IX;uvula [vermis] -http://purl.obolibrary.org/obo/UBERON_0004078;cerebellum vermis lobule IX;uvula of cerebellum -http://purl.obolibrary.org/obo/UBERON_0004078;cerebellum vermis lobule IX;uvula of vermis of cerebellum -http://purl.obolibrary.org/obo/UBERON_0004078;cerebellum vermis lobule IX;vermic lobule IX -http://purl.obolibrary.org/obo/UBERON_0004079;cerebellum vermis lobule V;lobule V -http://purl.obolibrary.org/obo/UBERON_0004079;cerebellum vermis lobule V;lobule V (culmen and quadrangular lobule, posterior part) -http://purl.obolibrary.org/obo/UBERON_0004079;cerebellum vermis lobule V;lobule V of cerebellum vermis -http://purl.obolibrary.org/obo/UBERON_0004079;cerebellum vermis lobule V;vermic lobule V -http://purl.obolibrary.org/obo/UBERON_0004080;cerebellum vermis lobule VI;declive (VI) -http://purl.obolibrary.org/obo/UBERON_0004080;cerebellum vermis lobule VI;declive of cerebellum -http://purl.obolibrary.org/obo/UBERON_0004080;cerebellum vermis lobule VI;declive of vermis of cerebellum -http://purl.obolibrary.org/obo/UBERON_0004080;cerebellum vermis lobule VI;lobule VI (declive and simplex lobule) -http://purl.obolibrary.org/obo/UBERON_0004080;cerebellum vermis lobule VI;lobule VI of cerebellum vermis -http://purl.obolibrary.org/obo/UBERON_0004080;cerebellum vermis lobule VI;neuraxis declive -http://purl.obolibrary.org/obo/UBERON_0004080;cerebellum vermis lobule VI;vermic lobule vi -http://purl.obolibrary.org/obo/UBERON_0004081;cerebellum vermis lobule VII;folium-tuber vermis (VII) -http://purl.obolibrary.org/obo/UBERON_0004081;cerebellum vermis lobule VII;lobule VII of cerebellum vermis -http://purl.obolibrary.org/obo/UBERON_0004081;cerebellum vermis lobule VII;vermic lobule VII -http://purl.obolibrary.org/obo/UBERON_0004082;cerebellum vermis lobule VIII;cerebellum lobule VIII -http://purl.obolibrary.org/obo/UBERON_0004082;cerebellum vermis lobule VIII;lobule VIII of cerebellum vermis -http://purl.obolibrary.org/obo/UBERON_0004082;cerebellum vermis lobule VIII;neuraxis pyramis -http://purl.obolibrary.org/obo/UBERON_0004082;cerebellum vermis lobule VIII;neuraxis pyramus -http://purl.obolibrary.org/obo/UBERON_0004082;cerebellum vermis lobule VIII;pyramis -http://purl.obolibrary.org/obo/UBERON_0004082;cerebellum vermis lobule VIII;pyramis of vermis of cerebellum -http://purl.obolibrary.org/obo/UBERON_0004082;cerebellum vermis lobule VIII;pyramus (VIII) -http://purl.obolibrary.org/obo/UBERON_0004082;cerebellum vermis lobule VIII;pyramus of cerebellum -http://purl.obolibrary.org/obo/UBERON_0004082;cerebellum vermis lobule VIII;pyramus of vermis of cerebellum -http://purl.obolibrary.org/obo/UBERON_0004082;cerebellum vermis lobule VIII;vermic lobule VIII -http://purl.obolibrary.org/obo/UBERON_0004083;cerebellum vermis lobule X;lobule X of cerebellum vermis -http://purl.obolibrary.org/obo/UBERON_0004083;cerebellum vermis lobule X;neuraxis nodule -http://purl.obolibrary.org/obo/UBERON_0004083;cerebellum vermis lobule X;neuraxis nodulus -http://purl.obolibrary.org/obo/UBERON_0004083;cerebellum vermis lobule X;nodulus (X) -http://purl.obolibrary.org/obo/UBERON_0004083;cerebellum vermis lobule X;nodulus of cerebellum -http://purl.obolibrary.org/obo/UBERON_0004083;cerebellum vermis lobule X;nodulus of vermis of cerebellum -http://purl.obolibrary.org/obo/UBERON_0004083;cerebellum vermis lobule X;vermic lobule X -http://purl.obolibrary.org/obo/UBERON_0004084;genital labium;genital labia -http://purl.obolibrary.org/obo/UBERON_0004084;genital labium;labia -http://purl.obolibrary.org/obo/UBERON_0004084;genital labium;labium -http://purl.obolibrary.org/obo/UBERON_0004085;labium majora;labia majorum -http://purl.obolibrary.org/obo/UBERON_0004085;labium majora;labium majora -http://purl.obolibrary.org/obo/UBERON_0004085;labium majora;labium majorum -http://purl.obolibrary.org/obo/UBERON_0004085;labium majora;labium majus -http://purl.obolibrary.org/obo/UBERON_0004085;labium majora;labium majus pudendi -http://purl.obolibrary.org/obo/UBERON_0004086;brain ventricle;brain ventricles -http://purl.obolibrary.org/obo/UBERON_0004086;brain ventricle;cerebral ventricle -http://purl.obolibrary.org/obo/UBERON_0004086;brain ventricle;region of ventricular system of brain -http://purl.obolibrary.org/obo/UBERON_0004087;vena cava; -http://purl.obolibrary.org/obo/UBERON_0004088;orbital region;content of orbital part of eye -http://purl.obolibrary.org/obo/UBERON_0004088;orbital region;eye region -http://purl.obolibrary.org/obo/UBERON_0004088;orbital region;ocular and peri-ocular region -http://purl.obolibrary.org/obo/UBERON_0004088;orbital region;ocular region -http://purl.obolibrary.org/obo/UBERON_0004088;orbital region;orbital content -http://purl.obolibrary.org/obo/UBERON_0004088;orbital region;orbital part of eye -http://purl.obolibrary.org/obo/UBERON_0004088;orbital region;orbital part of face -http://purl.obolibrary.org/obo/UBERON_0004089;midface;lower face -http://purl.obolibrary.org/obo/UBERON_0004089;midface;midface/lower face -http://purl.obolibrary.org/obo/UBERON_0004089;midface;snout -http://purl.obolibrary.org/obo/UBERON_0004090;periorbital region;periorbita -http://purl.obolibrary.org/obo/UBERON_0004090;periorbital region;periorbital area -http://purl.obolibrary.org/obo/UBERON_0004092;hypothalamus-pituitary axis; -http://purl.obolibrary.org/obo/UBERON_0004096;odontoid process of cervical vertebra 2;axis dens -http://purl.obolibrary.org/obo/UBERON_0004096;odontoid process of cervical vertebra 2;axis odontoid process -http://purl.obolibrary.org/obo/UBERON_0004096;odontoid process of cervical vertebra 2;cervical vertebra 2 odontoid process -http://purl.obolibrary.org/obo/UBERON_0004096;odontoid process of cervical vertebra 2;dens -http://purl.obolibrary.org/obo/UBERON_0004096;odontoid process of cervical vertebra 2;dens axis -http://purl.obolibrary.org/obo/UBERON_0004096;odontoid process of cervical vertebra 2;dens of axis -http://purl.obolibrary.org/obo/UBERON_0004096;odontoid process of cervical vertebra 2;odontoid process -http://purl.obolibrary.org/obo/UBERON_0004096;odontoid process of cervical vertebra 2;odontoid process of axis -http://purl.obolibrary.org/obo/UBERON_0004098;tibial plateaux; -http://purl.obolibrary.org/obo/UBERON_0004099;joint space of elbow;synovial cavity of elbow joint -http://purl.obolibrary.org/obo/UBERON_0004100;renal collecting system;collecting duct system -http://purl.obolibrary.org/obo/UBERON_0004100;renal collecting system;kidney collecting duct system -http://purl.obolibrary.org/obo/UBERON_0004101;nasolabial region; -http://purl.obolibrary.org/obo/UBERON_0004103;alveolar ridge;alveolar body -http://purl.obolibrary.org/obo/UBERON_0004103;alveolar ridge;alveolar bone -http://purl.obolibrary.org/obo/UBERON_0004103;alveolar ridge;alveolar margin -http://purl.obolibrary.org/obo/UBERON_0004103;alveolar ridge;alveolar process -http://purl.obolibrary.org/obo/UBERON_0004103;alveolar ridge;margo alveolaris -http://purl.obolibrary.org/obo/UBERON_0004104;hairline; -http://purl.obolibrary.org/obo/UBERON_0004105;subungual region; -http://purl.obolibrary.org/obo/UBERON_0004106;crus of ear;crus helicis -http://purl.obolibrary.org/obo/UBERON_0004106;crus of ear;crus of helical part of auricular cartilage -http://purl.obolibrary.org/obo/UBERON_0004106;crus of ear;crus of helix -http://purl.obolibrary.org/obo/UBERON_0004108;clivus of occipital bone;clivus -http://purl.obolibrary.org/obo/UBERON_0004108;clivus of occipital bone;occipital bone clivus -http://purl.obolibrary.org/obo/UBERON_0004109;cortex of humerus;compact bone of humerus -http://purl.obolibrary.org/obo/UBERON_0004109;cortex of humerus;cortex of the humerus -http://purl.obolibrary.org/obo/UBERON_0004109;cortex of humerus;humerus compact bone -http://purl.obolibrary.org/obo/UBERON_0004109;cortex of humerus;humerus cortical bone -http://purl.obolibrary.org/obo/UBERON_0004110;midnasal cavity; -http://purl.obolibrary.org/obo/UBERON_0004111;anatomical conduit;foramen -http://purl.obolibrary.org/obo/UBERON_0004111;anatomical conduit;foramina -http://purl.obolibrary.org/obo/UBERON_0004111;anatomical conduit;opening -http://purl.obolibrary.org/obo/UBERON_0004111;anatomical conduit;ostia -http://purl.obolibrary.org/obo/UBERON_0004111;anatomical conduit;ostium -http://purl.obolibrary.org/obo/UBERON_0004113;muscle of auditory ossicle;auditory ossicles muscle -http://purl.obolibrary.org/obo/UBERON_0004113;muscle of auditory ossicle;muscle of auditory ossicles -http://purl.obolibrary.org/obo/UBERON_0004113;muscle of auditory ossicle;muscle of tympanic cavity -http://purl.obolibrary.org/obo/UBERON_0004113;muscle of auditory ossicle;ossicular muscle -http://purl.obolibrary.org/obo/UBERON_0004113;muscle of auditory ossicle;tympanic cavity muscle -http://purl.obolibrary.org/obo/UBERON_0004114;tympanic cavity;anatomical cavity of middle ear -http://purl.obolibrary.org/obo/UBERON_0004114;tympanic cavity;cavitas tympani -http://purl.obolibrary.org/obo/UBERON_0004114;tympanic cavity;cavity of middle ear -http://purl.obolibrary.org/obo/UBERON_0004114;tympanic cavity;middle ear cavity -http://purl.obolibrary.org/obo/UBERON_0004114;tympanic cavity;middle-ear cavity -http://purl.obolibrary.org/obo/UBERON_0004115;blood vessel of tympanic cavity;anatomical cavity of middle ear blood vessel -http://purl.obolibrary.org/obo/UBERON_0004115;blood vessel of tympanic cavity;blood vessel of anatomical cavity of middle ear -http://purl.obolibrary.org/obo/UBERON_0004115;blood vessel of tympanic cavity;blood vessel of cavity of middle ear -http://purl.obolibrary.org/obo/UBERON_0004115;blood vessel of tympanic cavity;blood vessel of middle ear anatomical cavity -http://purl.obolibrary.org/obo/UBERON_0004115;blood vessel of tympanic cavity;blood vessel of middle ear cavity -http://purl.obolibrary.org/obo/UBERON_0004115;blood vessel of tympanic cavity;cavity of middle ear blood vessel -http://purl.obolibrary.org/obo/UBERON_0004115;blood vessel of tympanic cavity;middle ear anatomical cavity blood vessel -http://purl.obolibrary.org/obo/UBERON_0004115;blood vessel of tympanic cavity;middle ear blood vessel -http://purl.obolibrary.org/obo/UBERON_0004115;blood vessel of tympanic cavity;middle ear cavity blood vessel -http://purl.obolibrary.org/obo/UBERON_0004115;blood vessel of tympanic cavity;tympanic cavity blood vessel -http://purl.obolibrary.org/obo/UBERON_0004116;nerve of tympanic cavity;anatomical cavity of middle ear nerve -http://purl.obolibrary.org/obo/UBERON_0004116;nerve of tympanic cavity;cavity of middle ear nerve -http://purl.obolibrary.org/obo/UBERON_0004116;nerve of tympanic cavity;middle ear anatomical cavity nerve -http://purl.obolibrary.org/obo/UBERON_0004116;nerve of tympanic cavity;middle ear cavity nerve -http://purl.obolibrary.org/obo/UBERON_0004116;nerve of tympanic cavity;nerve of anatomical cavity of middle ear -http://purl.obolibrary.org/obo/UBERON_0004116;nerve of tympanic cavity;nerve of cavity of middle ear -http://purl.obolibrary.org/obo/UBERON_0004116;nerve of tympanic cavity;nerve of middle ear anatomical cavity -http://purl.obolibrary.org/obo/UBERON_0004116;nerve of tympanic cavity;nerve of middle ear cavity -http://purl.obolibrary.org/obo/UBERON_0004116;nerve of tympanic cavity;tympanic cavity nerve -http://purl.obolibrary.org/obo/UBERON_0004116;nerve of tympanic cavity;tympanic cavity nerves -http://purl.obolibrary.org/obo/UBERON_0004117;pharyngeal pouch;branchial pouch -http://purl.obolibrary.org/obo/UBERON_0004117;pharyngeal pouch;visceral pouch -http://purl.obolibrary.org/obo/UBERON_0004118;vasculature of iris;iris blood vessels -http://purl.obolibrary.org/obo/UBERON_0004118;vasculature of iris;iris vascular network -http://purl.obolibrary.org/obo/UBERON_0004118;vasculature of iris;iris vasculature -http://purl.obolibrary.org/obo/UBERON_0004118;vasculature of iris;vascular network of iris -http://purl.obolibrary.org/obo/UBERON_0004119;endoderm-derived structure; -http://purl.obolibrary.org/obo/UBERON_0004120;mesoderm-derived structure;mesodermal derivative -http://purl.obolibrary.org/obo/UBERON_0004121;ectoderm-derived structure;ectodermal deriviative -http://purl.obolibrary.org/obo/UBERON_0004122;genitourinary system;GU tract -http://purl.obolibrary.org/obo/UBERON_0004122;genitourinary system;UG tract -http://purl.obolibrary.org/obo/UBERON_0004122;genitourinary system;Urogenitalsystem -http://purl.obolibrary.org/obo/UBERON_0004122;genitourinary system;genito-urinary system -http://purl.obolibrary.org/obo/UBERON_0004122;genitourinary system;genitourinary tract -http://purl.obolibrary.org/obo/UBERON_0004122;genitourinary system;urogenital system -http://purl.obolibrary.org/obo/UBERON_0004122;genitourinary system;urogenital tract -http://purl.obolibrary.org/obo/UBERON_0004123;myocardial layer;layer of myocardium -http://purl.obolibrary.org/obo/UBERON_0004123;myocardial layer;myocardium layer -http://purl.obolibrary.org/obo/UBERON_0004124;myocardium trabecular layer;myocardial trabecular layer -http://purl.obolibrary.org/obo/UBERON_0004124;myocardium trabecular layer;trabecular layer -http://purl.obolibrary.org/obo/UBERON_0004125;myocardial compact layer;compact subepicardial layer -http://purl.obolibrary.org/obo/UBERON_0004125;myocardial compact layer;heart compact layer -http://purl.obolibrary.org/obo/UBERON_0004125;myocardial compact layer;myocardial compact layer -http://purl.obolibrary.org/obo/UBERON_0004125;myocardial compact layer;myocardium compact layer -http://purl.obolibrary.org/obo/UBERON_0004125;myocardial compact layer;subepicardial layer -http://purl.obolibrary.org/obo/UBERON_0004125;myocardial compact layer;subepicardium -http://purl.obolibrary.org/obo/UBERON_0004126;trabecular layer of ventricle;myocardium of region of ventricle -http://purl.obolibrary.org/obo/UBERON_0004126;trabecular layer of ventricle;trabecular cardiac ventricle muscle -http://purl.obolibrary.org/obo/UBERON_0004126;trabecular layer of ventricle;ventricular trabecular myocardium -http://purl.obolibrary.org/obo/UBERON_0004127;compact layer of ventricle;compact cardiac ventricle muscle -http://purl.obolibrary.org/obo/UBERON_0004127;compact layer of ventricle;ventricle myocardium compact zone -http://purl.obolibrary.org/obo/UBERON_0004127;compact layer of ventricle;ventricular compact myocardium -http://purl.obolibrary.org/obo/UBERON_0004127;compact layer of ventricle;ventricular myocardial compact layer -http://purl.obolibrary.org/obo/UBERON_0004127;compact layer of ventricle;ventricular myocardial compact zone -http://purl.obolibrary.org/obo/UBERON_0004128;optic vesicle; -http://purl.obolibrary.org/obo/UBERON_0004129;growth plate cartilage; -http://purl.obolibrary.org/obo/UBERON_0004130;cerebellar layer;cell layer of cerebellar cortex -http://purl.obolibrary.org/obo/UBERON_0004130;cerebellar layer;cytoarchitectural part of the cerebellar cortex -http://purl.obolibrary.org/obo/UBERON_0004130;cerebellar layer;gray matter layer of cerebellum -http://purl.obolibrary.org/obo/UBERON_0004130;cerebellar layer;layer of cerebellar cortex -http://purl.obolibrary.org/obo/UBERON_0004130;cerebellar layer;layer of cerebellum -http://purl.obolibrary.org/obo/UBERON_0004132;trigeminal sensory nucleus;sensory trigeminal V nucleus -http://purl.obolibrary.org/obo/UBERON_0004132;trigeminal sensory nucleus;sensory trigeminal nuclei -http://purl.obolibrary.org/obo/UBERON_0004132;trigeminal sensory nucleus;sensory trigeminal nucleus -http://purl.obolibrary.org/obo/UBERON_0004132;trigeminal sensory nucleus;trigeminal V sensory nucleus -http://purl.obolibrary.org/obo/UBERON_0004132;trigeminal sensory nucleus;trigeminal sensory nucleus -http://purl.obolibrary.org/obo/UBERON_0004133;salivatory nucleus;salivary nucleus -http://purl.obolibrary.org/obo/UBERON_0004134;proximal tubule;kidney proximal tubule -http://purl.obolibrary.org/obo/UBERON_0004134;proximal tubule;proximal kidney tubule -http://purl.obolibrary.org/obo/UBERON_0004134;proximal tubule;renal proximal tubule -http://purl.obolibrary.org/obo/UBERON_0004135;distal tubule;kidney distal tubule -http://purl.obolibrary.org/obo/UBERON_0004135;distal tubule;renal distal tubule -http://purl.obolibrary.org/obo/UBERON_0004136;intermediate tubule;renal intermediate tubule -http://purl.obolibrary.org/obo/UBERON_0004136;intermediate tubule;tubulus attenuatus -http://purl.obolibrary.org/obo/UBERON_0004138;somitomeric trunk muscle; -http://purl.obolibrary.org/obo/UBERON_0004139;cardiogenic plate;myocardial plate -http://purl.obolibrary.org/obo/UBERON_0004140;primary heart field;first heart field -http://purl.obolibrary.org/obo/UBERON_0004140;primary heart field;primary heart field -http://purl.obolibrary.org/obo/UBERON_0004141;heart tube;embryonic heart tube -http://purl.obolibrary.org/obo/UBERON_0004141;heart tube;endocardial heart tube -http://purl.obolibrary.org/obo/UBERON_0004141;heart tube;endocardial tube -http://purl.obolibrary.org/obo/UBERON_0004142;outflow tract septum; -http://purl.obolibrary.org/obo/UBERON_0004145;outflow tract;cardiac outflow tract -http://purl.obolibrary.org/obo/UBERON_0004145;outflow tract;heart outflow tract -http://purl.obolibrary.org/obo/UBERON_0004146;His-Purkinje system;HPS -http://purl.obolibrary.org/obo/UBERON_0004146;His-Purkinje system;His-Purkinji network -http://purl.obolibrary.org/obo/UBERON_0004146;His-Purkinje system;VCS -http://purl.obolibrary.org/obo/UBERON_0004146;His-Purkinje system;ventricular conduction system -http://purl.obolibrary.org/obo/UBERON_0004148;cardiac vein;cardiac vein -http://purl.obolibrary.org/obo/UBERON_0004148;cardiac vein;coronary vein -http://purl.obolibrary.org/obo/UBERON_0004148;cardiac vein;heart vein -http://purl.obolibrary.org/obo/UBERON_0004148;cardiac vein;vein of heart -http://purl.obolibrary.org/obo/UBERON_0004149;ventriculo bulbo valve;bulboventricular valve -http://purl.obolibrary.org/obo/UBERON_0004150;coronary sinus valve;thebesian valve -http://purl.obolibrary.org/obo/UBERON_0004150;coronary sinus valve;thebesius valve -http://purl.obolibrary.org/obo/UBERON_0004150;coronary sinus valve;valve of coronary sinus -http://purl.obolibrary.org/obo/UBERON_0004151;cardiac chamber;chamber of heart -http://purl.obolibrary.org/obo/UBERON_0004151;cardiac chamber;heart chamber -http://purl.obolibrary.org/obo/UBERON_0004152;bulbus arteriosus;truncus -http://purl.obolibrary.org/obo/UBERON_0004153;ventricular septum intermedium;septum intermedium -http://purl.obolibrary.org/obo/UBERON_0004154;atrial septum primum;atrial septum primum -http://purl.obolibrary.org/obo/UBERON_0004154;atrial septum primum;interatrial septum primum -http://purl.obolibrary.org/obo/UBERON_0004154;atrial septum primum;septum primum -http://purl.obolibrary.org/obo/UBERON_0004155;atrial septum secundum;interatrial septum secundum -http://purl.obolibrary.org/obo/UBERON_0004155;atrial septum secundum;septum secundum -http://purl.obolibrary.org/obo/UBERON_0004159;atrial septum intermedium; -http://purl.obolibrary.org/obo/UBERON_0004160;proepicardium;proepicardial cluster -http://purl.obolibrary.org/obo/UBERON_0004160;proepicardium;proepicardial organ -http://purl.obolibrary.org/obo/UBERON_0004161;septum transversum;transverse septum -http://purl.obolibrary.org/obo/UBERON_0004162;pulmonary myocardium; -http://purl.obolibrary.org/obo/UBERON_0004163;anterior ectodermal midgut; -http://purl.obolibrary.org/obo/UBERON_0004164;branchiomeric muscle;branchial head muscle -http://purl.obolibrary.org/obo/UBERON_0004164;branchiomeric muscle;branchiomeric skeletal muscle -http://purl.obolibrary.org/obo/UBERON_0004166;superior reticular formation; -http://purl.obolibrary.org/obo/UBERON_0004167;orbitofrontal cortex;fronto-orbital cortex -http://purl.obolibrary.org/obo/UBERON_0004167;orbitofrontal cortex;orbital frontal cortex -http://purl.obolibrary.org/obo/UBERON_0004167;orbitofrontal cortex;orbito-frontal cortex -http://purl.obolibrary.org/obo/UBERON_0004170;spinal cord ventral commissure;anterior white commissure -http://purl.obolibrary.org/obo/UBERON_0004170;spinal cord ventral commissure;anterior white commissure of spinal cord -http://purl.obolibrary.org/obo/UBERON_0004170;spinal cord ventral commissure;spinal cord anterior commissure -http://purl.obolibrary.org/obo/UBERON_0004170;spinal cord ventral commissure;ventral spinal commissure -http://purl.obolibrary.org/obo/UBERON_0004170;spinal cord ventral commissure;ventral white column -http://purl.obolibrary.org/obo/UBERON_0004170;spinal cord ventral commissure;ventral white commissure of spinal cord -http://purl.obolibrary.org/obo/UBERON_0004171;trigeminothalamic tract;tractus trigeminothalamicus -http://purl.obolibrary.org/obo/UBERON_0004172;pons reticulospinal tract; -http://purl.obolibrary.org/obo/UBERON_0004173;medulla reticulospinal tract;medullary reticulospinal tract -http://purl.obolibrary.org/obo/UBERON_0004175;internal genitalia;internal genitalia -http://purl.obolibrary.org/obo/UBERON_0004175;internal genitalia;internal genitals -http://purl.obolibrary.org/obo/UBERON_0004175;internal genitalia;internal reproductive organ -http://purl.obolibrary.org/obo/UBERON_0004175;internal genitalia;internal sex organ -http://purl.obolibrary.org/obo/UBERON_0004176;external genitalia;external genitalia -http://purl.obolibrary.org/obo/UBERON_0004176;external genitalia;external reproductive organ -http://purl.obolibrary.org/obo/UBERON_0004176;external genitalia;external sex organ -http://purl.obolibrary.org/obo/UBERON_0004177;hemopoietic organ;haematological system organ -http://purl.obolibrary.org/obo/UBERON_0004177;hemopoietic organ;haemopoietic system organ -http://purl.obolibrary.org/obo/UBERON_0004177;hemopoietic organ;hematopoeitic or lymphoid organ -http://purl.obolibrary.org/obo/UBERON_0004177;hemopoietic organ;hematopoeitic organ -http://purl.obolibrary.org/obo/UBERON_0004177;hemopoietic organ;hematopoietic system organ -http://purl.obolibrary.org/obo/UBERON_0004177;hemopoietic organ;lymph organ -http://purl.obolibrary.org/obo/UBERON_0004177;hemopoietic organ;lymphoid organ -http://purl.obolibrary.org/obo/UBERON_0004177;hemopoietic organ;organ of haematological system -http://purl.obolibrary.org/obo/UBERON_0004177;hemopoietic organ;organ of haemopoietic system -http://purl.obolibrary.org/obo/UBERON_0004177;hemopoietic organ;organ of hematopoietic system -http://purl.obolibrary.org/obo/UBERON_0004177;hemopoietic organ;organ of organa haemopoietica -http://purl.obolibrary.org/obo/UBERON_0004177;hemopoietic organ;organa haemopoietica organ -http://purl.obolibrary.org/obo/UBERON_0004178;aorta smooth muscle tissue;aorta non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004178;aorta smooth muscle tissue;aorta smooth muscle -http://purl.obolibrary.org/obo/UBERON_0004178;aorta smooth muscle tissue;aortic smooth muscle -http://purl.obolibrary.org/obo/UBERON_0004179;prostate glandular acinus;prostatic acinus -http://purl.obolibrary.org/obo/UBERON_0004179;prostate glandular acinus;prostatic follicle -http://purl.obolibrary.org/obo/UBERON_0004180;mammary gland fat;adipose tissue of lactiferous gland -http://purl.obolibrary.org/obo/UBERON_0004180;mammary gland fat;adipose tissue of mammary gland -http://purl.obolibrary.org/obo/UBERON_0004180;mammary gland fat;fat tissue of lactiferous gland -http://purl.obolibrary.org/obo/UBERON_0004180;mammary gland fat;fat tissue of lobe of breast -http://purl.obolibrary.org/obo/UBERON_0004180;mammary gland fat;fat tissue of lobe of mammary gland -http://purl.obolibrary.org/obo/UBERON_0004180;mammary gland fat;fat tissue of mammary gland -http://purl.obolibrary.org/obo/UBERON_0004180;mammary gland fat;fatty tissue of lactiferous gland -http://purl.obolibrary.org/obo/UBERON_0004180;mammary gland fat;fatty tissue of lobe of breast -http://purl.obolibrary.org/obo/UBERON_0004180;mammary gland fat;fatty tissue of lobe of mammary gland -http://purl.obolibrary.org/obo/UBERON_0004180;mammary gland fat;fatty tissue of mammary gland -http://purl.obolibrary.org/obo/UBERON_0004180;mammary gland fat;lactiferous gland adipose tissue -http://purl.obolibrary.org/obo/UBERON_0004180;mammary gland fat;lactiferous gland fat tissue -http://purl.obolibrary.org/obo/UBERON_0004180;mammary gland fat;lactiferous gland fatty tissue -http://purl.obolibrary.org/obo/UBERON_0004180;mammary gland fat;lobe of breast adipose tissue -http://purl.obolibrary.org/obo/UBERON_0004180;mammary gland fat;lobe of breast fat tissue -http://purl.obolibrary.org/obo/UBERON_0004180;mammary gland fat;lobe of breast fatty tissue -http://purl.obolibrary.org/obo/UBERON_0004180;mammary gland fat;lobe of mammary gland adipose tissue -http://purl.obolibrary.org/obo/UBERON_0004180;mammary gland fat;lobe of mammary gland fat tissue -http://purl.obolibrary.org/obo/UBERON_0004180;mammary gland fat;lobe of mammary gland fatty tissue -http://purl.obolibrary.org/obo/UBERON_0004180;mammary gland fat;mammary gland adipose tissue -http://purl.obolibrary.org/obo/UBERON_0004180;mammary gland fat;mammary gland fat tissue -http://purl.obolibrary.org/obo/UBERON_0004180;mammary gland fat;mammary gland fatty tissue -http://purl.obolibrary.org/obo/UBERON_0004182;mammary gland cord;lactiferous gland cord -http://purl.obolibrary.org/obo/UBERON_0004182;mammary gland cord;mammary cord -http://purl.obolibrary.org/obo/UBERON_0004183;placental labyrinth blood vessel;blood vessel of labyrinthine layer -http://purl.obolibrary.org/obo/UBERON_0004183;placental labyrinth blood vessel;blood vessel of labyrinthine layer of placenta -http://purl.obolibrary.org/obo/UBERON_0004183;placental labyrinth blood vessel;blood vessel of placenta labyrinth -http://purl.obolibrary.org/obo/UBERON_0004183;placental labyrinth blood vessel;labyrinthine layer blood vessel -http://purl.obolibrary.org/obo/UBERON_0004183;placental labyrinth blood vessel;labyrinthine layer of placenta blood vessel -http://purl.obolibrary.org/obo/UBERON_0004183;placental labyrinth blood vessel;placenta labyrinth blood vessel -http://purl.obolibrary.org/obo/UBERON_0004184;prostate gland stroma;prostate stroma -http://purl.obolibrary.org/obo/UBERON_0004184;prostate gland stroma;prostatic stroma -http://purl.obolibrary.org/obo/UBERON_0004184;prostate gland stroma;stroma of prostate -http://purl.obolibrary.org/obo/UBERON_0004184;prostate gland stroma;stroma of prostate gland -http://purl.obolibrary.org/obo/UBERON_0004185;endodermal part of digestive tract;endodermal gut -http://purl.obolibrary.org/obo/UBERON_0004185;endodermal part of digestive tract;gut endoderm -http://purl.obolibrary.org/obo/UBERON_0004186;olfactory bulb mitral cell layer;OB mitral cell layer -http://purl.obolibrary.org/obo/UBERON_0004186;olfactory bulb mitral cell layer;mitral cell body layer -http://purl.obolibrary.org/obo/UBERON_0004186;olfactory bulb mitral cell layer;mitral cell layer -http://purl.obolibrary.org/obo/UBERON_0004186;olfactory bulb mitral cell layer;mitral cell layer of the olfactory bulb -http://purl.obolibrary.org/obo/UBERON_0004186;olfactory bulb mitral cell layer;olfactory bulb main mitral cell body layer -http://purl.obolibrary.org/obo/UBERON_0004187;Harderian gland;Hardarian gland -http://purl.obolibrary.org/obo/UBERON_0004187;Harderian gland;Harder's gland -http://purl.obolibrary.org/obo/UBERON_0004187;Harderian gland;gland of Hardarian -http://purl.obolibrary.org/obo/UBERON_0004187;Harderian gland;glandula palpebra tertia profundus -http://purl.obolibrary.org/obo/UBERON_0004188;glomerular epithelium;epithelium of glomerulus -http://purl.obolibrary.org/obo/UBERON_0004188;glomerular epithelium;epithelium of kidney glomerulus -http://purl.obolibrary.org/obo/UBERON_0004188;glomerular epithelium;epithelium of renal glomerulus -http://purl.obolibrary.org/obo/UBERON_0004188;glomerular epithelium;kidney glomerular epithelium -http://purl.obolibrary.org/obo/UBERON_0004189;glomerular endothelium;endothelium of renal glomerulus -http://purl.obolibrary.org/obo/UBERON_0004189;glomerular endothelium;renal glomerulus endothelium -http://purl.obolibrary.org/obo/UBERON_0004190;renal glomerulus vasculature;glomerulus vasculature -http://purl.obolibrary.org/obo/UBERON_0004190;renal glomerulus vasculature;renal glomerulus vascular network -http://purl.obolibrary.org/obo/UBERON_0004190;renal glomerulus vasculature;renal glomerulus vasculature -http://purl.obolibrary.org/obo/UBERON_0004190;renal glomerulus vasculature;vascular network of renal glomerulus -http://purl.obolibrary.org/obo/UBERON_0004190;renal glomerulus vasculature;vasculature of renal glomerulus -http://purl.obolibrary.org/obo/UBERON_0004193;loop of Henle ascending limb thin segment;ascending limb thin segment of loop of Henle -http://purl.obolibrary.org/obo/UBERON_0004193;loop of Henle ascending limb thin segment;ascending thin limb -http://purl.obolibrary.org/obo/UBERON_0004193;loop of Henle ascending limb thin segment;pars ascendens (tubulus attenuatus) -http://purl.obolibrary.org/obo/UBERON_0004193;loop of Henle ascending limb thin segment;thin ascending limb -http://purl.obolibrary.org/obo/UBERON_0004193;loop of Henle ascending limb thin segment;thin ascending limb of loop of Henle -http://purl.obolibrary.org/obo/UBERON_0004194;long nephron; -http://purl.obolibrary.org/obo/UBERON_0004195;short nephron; -http://purl.obolibrary.org/obo/UBERON_0004196;proximal convoluted tubule segment 1;S1 portion of renal tubule -http://purl.obolibrary.org/obo/UBERON_0004196;proximal convoluted tubule segment 1;S1 portion of tubule -http://purl.obolibrary.org/obo/UBERON_0004196;proximal convoluted tubule segment 1;proximal tubule segment 1 -http://purl.obolibrary.org/obo/UBERON_0004196;proximal convoluted tubule segment 1;segment 1 of proximal tubule -http://purl.obolibrary.org/obo/UBERON_0004197;proximal convoluted tubule segment 2;S2 portion of renal tubule -http://purl.obolibrary.org/obo/UBERON_0004197;proximal convoluted tubule segment 2;S2 portion of tubule -http://purl.obolibrary.org/obo/UBERON_0004197;proximal convoluted tubule segment 2;proximal tubule segment 2 -http://purl.obolibrary.org/obo/UBERON_0004197;proximal convoluted tubule segment 2;segment 2 of proximal tubule -http://purl.obolibrary.org/obo/UBERON_0004198;comma-shaped body;CSB -http://purl.obolibrary.org/obo/UBERON_0004199;S-shaped body;SSB -http://purl.obolibrary.org/obo/UBERON_0004199;S-shaped body;stage II nephron -http://purl.obolibrary.org/obo/UBERON_0004200;kidney pyramid;Malpighian pyramid -http://purl.obolibrary.org/obo/UBERON_0004200;kidney pyramid;renal pyramid -http://purl.obolibrary.org/obo/UBERON_0004201;kidney outer medulla inner stripe;inner stripe -http://purl.obolibrary.org/obo/UBERON_0004201;kidney outer medulla inner stripe;inner stripe of medulla of kidney -http://purl.obolibrary.org/obo/UBERON_0004201;kidney outer medulla inner stripe;inner stripe of outer medulla -http://purl.obolibrary.org/obo/UBERON_0004201;kidney outer medulla inner stripe;inner stripe of renal medulla -http://purl.obolibrary.org/obo/UBERON_0004201;kidney outer medulla inner stripe;outer medulla inner stripe -http://purl.obolibrary.org/obo/UBERON_0004201;kidney outer medulla inner stripe;stria interna medullae renalis -http://purl.obolibrary.org/obo/UBERON_0004202;kidney outer medulla outer stripe;outer medulla outer stripe -http://purl.obolibrary.org/obo/UBERON_0004202;kidney outer medulla outer stripe;outer stripe -http://purl.obolibrary.org/obo/UBERON_0004202;kidney outer medulla outer stripe;outer stripe of medulla of kidney -http://purl.obolibrary.org/obo/UBERON_0004202;kidney outer medulla outer stripe;outer stripe of outer medulla -http://purl.obolibrary.org/obo/UBERON_0004202;kidney outer medulla outer stripe;outer stripe of renal medulla -http://purl.obolibrary.org/obo/UBERON_0004202;kidney outer medulla outer stripe;stria externa medullae renalis -http://purl.obolibrary.org/obo/UBERON_0004203;cortical collecting duct;kidney cortex collecting duct -http://purl.obolibrary.org/obo/UBERON_0004204;outer medullary collecting duct;kidney outer medulla collecting duct -http://purl.obolibrary.org/obo/UBERON_0004204;outer medullary collecting duct;outer renal medulla collecting duct -http://purl.obolibrary.org/obo/UBERON_0004205;inner medullary collecting duct;inner renal medulla collecting duct -http://purl.obolibrary.org/obo/UBERON_0004205;inner medullary collecting duct;kidney inner medulla collecting duct -http://purl.obolibrary.org/obo/UBERON_0004206;long descending thin limb bend; -http://purl.obolibrary.org/obo/UBERON_0004207;prebend segment of loop of Henle; -http://purl.obolibrary.org/obo/UBERON_0004208;nephrogenic mesenchyme;mesenchyme of nephron -http://purl.obolibrary.org/obo/UBERON_0004208;nephrogenic mesenchyme;nephron mesenchyme -http://purl.obolibrary.org/obo/UBERON_0004209;renal vesicle;stage I nephron -http://purl.obolibrary.org/obo/UBERON_0004211;nephron epithelium;epithelial tissue of nephron -http://purl.obolibrary.org/obo/UBERON_0004211;nephron epithelium;epithelium of nephron -http://purl.obolibrary.org/obo/UBERON_0004211;nephron epithelium;nephron epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0004212;glomerular capillary;blood capillary of renal glomerulus -http://purl.obolibrary.org/obo/UBERON_0004212;glomerular capillary;capillary of renal glomerulus -http://purl.obolibrary.org/obo/UBERON_0004212;glomerular capillary;capillary vessel of renal glomerulus -http://purl.obolibrary.org/obo/UBERON_0004212;glomerular capillary;renal glomerulus blood capillary -http://purl.obolibrary.org/obo/UBERON_0004212;glomerular capillary;renal glomerulus capillary -http://purl.obolibrary.org/obo/UBERON_0004212;glomerular capillary;renal glomerulus capillary vessel -http://purl.obolibrary.org/obo/UBERON_0004214;upper leg nerve;hind limb stylopod nerve -http://purl.obolibrary.org/obo/UBERON_0004214;upper leg nerve;hindlimb stylopod nerve -http://purl.obolibrary.org/obo/UBERON_0004214;upper leg nerve;lower extremity stylopod nerve -http://purl.obolibrary.org/obo/UBERON_0004214;upper leg nerve;thigh RELATED -http://purl.obolibrary.org/obo/UBERON_0004215;back nerve;nerve of back -http://purl.obolibrary.org/obo/UBERON_0004216;lower arm nerve; -http://purl.obolibrary.org/obo/UBERON_0004217;upper arm nerve; -http://purl.obolibrary.org/obo/UBERON_0004218;lower leg nerve; -http://purl.obolibrary.org/obo/UBERON_0004219;urethra smooth muscle layer;muscle layer of urethra -http://purl.obolibrary.org/obo/UBERON_0004219;urethra smooth muscle layer;muscular coat of urethra -http://purl.obolibrary.org/obo/UBERON_0004219;urethra smooth muscle layer;muscular layer of urethra -http://purl.obolibrary.org/obo/UBERON_0004219;urethra smooth muscle layer;smooth muscle of urethra -http://purl.obolibrary.org/obo/UBERON_0004219;urethra smooth muscle layer;smooth muscle tissue of urethra -http://purl.obolibrary.org/obo/UBERON_0004219;urethra smooth muscle layer;tunica muscularis urethrae -http://purl.obolibrary.org/obo/UBERON_0004219;urethra smooth muscle layer;urethra smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004220;large intestine smooth muscle;involuntary muscle of large intestine -http://purl.obolibrary.org/obo/UBERON_0004220;large intestine smooth muscle;large intestine involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004220;large intestine smooth muscle;large intestine non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004220;large intestine smooth muscle;large intestine smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004220;large intestine smooth muscle;non-striated muscle of large intestine -http://purl.obolibrary.org/obo/UBERON_0004220;large intestine smooth muscle;smooth muscle of large intestine -http://purl.obolibrary.org/obo/UBERON_0004220;large intestine smooth muscle;smooth muscle tissue of large intestine -http://purl.obolibrary.org/obo/UBERON_0004221;intestine smooth muscle;bowel involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004221;intestine smooth muscle;bowel non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004221;intestine smooth muscle;bowel smooth muscle -http://purl.obolibrary.org/obo/UBERON_0004221;intestine smooth muscle;bowel smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004221;intestine smooth muscle;intestinal muscularis -http://purl.obolibrary.org/obo/UBERON_0004221;intestine smooth muscle;intestinal smooth muscle -http://purl.obolibrary.org/obo/UBERON_0004221;intestine smooth muscle;intestine involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004221;intestine smooth muscle;intestine non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004221;intestine smooth muscle;intestine smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004221;intestine smooth muscle;involuntary muscle of bowel -http://purl.obolibrary.org/obo/UBERON_0004221;intestine smooth muscle;involuntary muscle of intestine -http://purl.obolibrary.org/obo/UBERON_0004221;intestine smooth muscle;non-striated muscle of bowel -http://purl.obolibrary.org/obo/UBERON_0004221;intestine smooth muscle;non-striated muscle of intestine -http://purl.obolibrary.org/obo/UBERON_0004221;intestine smooth muscle;smooth muscle of bowel -http://purl.obolibrary.org/obo/UBERON_0004221;intestine smooth muscle;smooth muscle of intestine -http://purl.obolibrary.org/obo/UBERON_0004221;intestine smooth muscle;smooth muscle tissue of bowel -http://purl.obolibrary.org/obo/UBERON_0004221;intestine smooth muscle;smooth muscle tissue of intestine -http://purl.obolibrary.org/obo/UBERON_0004222;stomach smooth muscle;gastric muscle -http://purl.obolibrary.org/obo/UBERON_0004222;stomach smooth muscle;gastric smooth muscle -http://purl.obolibrary.org/obo/UBERON_0004222;stomach smooth muscle;involuntary muscle of stomach -http://purl.obolibrary.org/obo/UBERON_0004222;stomach smooth muscle;involuntary muscle of ventriculus -http://purl.obolibrary.org/obo/UBERON_0004222;stomach smooth muscle;non-striated muscle of stomach -http://purl.obolibrary.org/obo/UBERON_0004222;stomach smooth muscle;non-striated muscle of ventriculus -http://purl.obolibrary.org/obo/UBERON_0004222;stomach smooth muscle;smooth muscle of stomach -http://purl.obolibrary.org/obo/UBERON_0004222;stomach smooth muscle;smooth muscle of ventriculus -http://purl.obolibrary.org/obo/UBERON_0004222;stomach smooth muscle;smooth muscle tissue of stomach -http://purl.obolibrary.org/obo/UBERON_0004222;stomach smooth muscle;smooth muscle tissue of ventriculus -http://purl.obolibrary.org/obo/UBERON_0004222;stomach smooth muscle;stomach involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004222;stomach smooth muscle;stomach muscle -http://purl.obolibrary.org/obo/UBERON_0004222;stomach smooth muscle;stomach non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004222;stomach smooth muscle;stomach smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004222;stomach smooth muscle;ventriculus involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004222;stomach smooth muscle;ventriculus non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004222;stomach smooth muscle;ventriculus smooth muscle -http://purl.obolibrary.org/obo/UBERON_0004222;stomach smooth muscle;ventriculus smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004223;vagina smooth muscle;involuntary muscle of vagina -http://purl.obolibrary.org/obo/UBERON_0004223;vagina smooth muscle;non-striated muscle of vagina -http://purl.obolibrary.org/obo/UBERON_0004223;vagina smooth muscle;smooth muscle of vagina -http://purl.obolibrary.org/obo/UBERON_0004223;vagina smooth muscle;smooth muscle tissue of vagina -http://purl.obolibrary.org/obo/UBERON_0004223;vagina smooth muscle;vagina involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004223;vagina smooth muscle;vagina non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004223;vagina smooth muscle;vagina smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004223;vagina smooth muscle;vaginal smooth muscle -http://purl.obolibrary.org/obo/UBERON_0004224;muscular coat of vas deferens;muscle layer of deferent duct -http://purl.obolibrary.org/obo/UBERON_0004224;muscular coat of vas deferens;muscle layer of ductus deferens -http://purl.obolibrary.org/obo/UBERON_0004224;muscular coat of vas deferens;muscle layer of vas deferens -http://purl.obolibrary.org/obo/UBERON_0004224;muscular coat of vas deferens;muscular coat of ductus deferens -http://purl.obolibrary.org/obo/UBERON_0004224;muscular coat of vas deferens;muscular layer of ductus deferens -http://purl.obolibrary.org/obo/UBERON_0004224;muscular coat of vas deferens;muscularis of vas deferens -http://purl.obolibrary.org/obo/UBERON_0004224;muscular coat of vas deferens;tunica muscularis (ductus deferens) -http://purl.obolibrary.org/obo/UBERON_0004224;muscular coat of vas deferens;tunica muscularis ductus deferentis -http://purl.obolibrary.org/obo/UBERON_0004225;respiratory system smooth muscle;respiratory smooth muscle -http://purl.obolibrary.org/obo/UBERON_0004225;respiratory system smooth muscle;smooth muscle of respiratory system -http://purl.obolibrary.org/obo/UBERON_0004226;gastrointestinal system smooth muscle;smooth muscle tissue of gastrointestinal system -http://purl.obolibrary.org/obo/UBERON_0004227;kidney pelvis smooth muscle;kidney pelvis smooth muscle -http://purl.obolibrary.org/obo/UBERON_0004227;kidney pelvis smooth muscle;renal pelvis smooth muscle -http://purl.obolibrary.org/obo/UBERON_0004227;kidney pelvis smooth muscle;smooth muscle tissue of renal pelvis -http://purl.obolibrary.org/obo/UBERON_0004228;urinary bladder smooth muscle;bladder involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004228;urinary bladder smooth muscle;bladder non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004228;urinary bladder smooth muscle;bladder smooth muscle -http://purl.obolibrary.org/obo/UBERON_0004228;urinary bladder smooth muscle;bladder smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004228;urinary bladder smooth muscle;involuntary muscle of bladder -http://purl.obolibrary.org/obo/UBERON_0004228;urinary bladder smooth muscle;involuntary muscle of urinary bladder -http://purl.obolibrary.org/obo/UBERON_0004228;urinary bladder smooth muscle;non-striated muscle of bladder -http://purl.obolibrary.org/obo/UBERON_0004228;urinary bladder smooth muscle;non-striated muscle of urinary bladder -http://purl.obolibrary.org/obo/UBERON_0004228;urinary bladder smooth muscle;smooth muscle of bladder -http://purl.obolibrary.org/obo/UBERON_0004228;urinary bladder smooth muscle;smooth muscle of urinary bladder -http://purl.obolibrary.org/obo/UBERON_0004228;urinary bladder smooth muscle;smooth muscle tissue of bladder -http://purl.obolibrary.org/obo/UBERON_0004228;urinary bladder smooth muscle;smooth muscle tissue of urinary bladder -http://purl.obolibrary.org/obo/UBERON_0004228;urinary bladder smooth muscle;urinary bladder involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004228;urinary bladder smooth muscle;urinary bladder muscle -http://purl.obolibrary.org/obo/UBERON_0004228;urinary bladder smooth muscle;urinary bladder non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004228;urinary bladder smooth muscle;urinary bladder smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;Lieutaud's trigone involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;Lieutaud's trigone non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;Lieutaud's trigone smooth muscle -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;Lieutaud's trigone smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;deep trigone involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;deep trigone non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;deep trigone smooth muscle -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;deep trigone smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;involuntary muscle of Lieutaud's trigone -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;involuntary muscle of deep trigone -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;involuntary muscle of trigone of bladder -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;involuntary muscle of trigone of urinary bladder -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;involuntary muscle of urinary bladder trigone -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;involuntary muscle of vesical trigone -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;non-striated muscle of Lieutaud's trigone -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;non-striated muscle of deep trigone -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;non-striated muscle of trigone of bladder -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;non-striated muscle of trigone of urinary bladder -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;non-striated muscle of urinary bladder trigone -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;non-striated muscle of vesical trigone -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;smooth muscle of Lieutaud's trigone -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;smooth muscle of deep trigone -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;smooth muscle of trigone of bladder -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;smooth muscle of trigone of urinary bladder -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;smooth muscle of urinary bladder trigone -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;smooth muscle of vesical trigone -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;smooth muscle tissue of Lieutaud's trigone -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;smooth muscle tissue of deep trigone -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;smooth muscle tissue of trigone of bladder -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;smooth muscle tissue of trigone of urinary bladder -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;smooth muscle tissue of urinary bladder trigone -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;smooth muscle tissue of vesical trigone -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;trigone of bladder involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;trigone of bladder non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;trigone of bladder smooth muscle -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;trigone of bladder smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;trigone of urinary bladder involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;trigone of urinary bladder non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;trigone of urinary bladder smooth muscle -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;trigone of urinary bladder smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;urinary bladder trigone involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;urinary bladder trigone muscle -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;urinary bladder trigone non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;urinary bladder trigone smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;vesical trigone involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;vesical trigone non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;vesical trigone smooth muscle -http://purl.obolibrary.org/obo/UBERON_0004229;urinary bladder trigone smooth muscle;vesical trigone smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;bladder neck involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;bladder neck non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;bladder neck smooth muscle -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;bladder neck smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;involuntary muscle of bladder neck -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;involuntary muscle of neck of bladder -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;involuntary muscle of neck of urinary bladder -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;involuntary muscle of urinary bladder neck -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;involuntary muscle of vesical neck -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;neck of bladder involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;neck of bladder non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;neck of bladder smooth muscle -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;neck of bladder smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;neck of urinary bladder involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;neck of urinary bladder non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;neck of urinary bladder smooth muscle -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;neck of urinary bladder smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;non-striated muscle of bladder neck -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;non-striated muscle of neck of bladder -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;non-striated muscle of neck of urinary bladder -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;non-striated muscle of urinary bladder neck -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;non-striated muscle of vesical neck -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;smooth muscle of bladder neck -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;smooth muscle of neck of bladder -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;smooth muscle of neck of urinary bladder -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;smooth muscle of urinary bladder neck -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;smooth muscle of vesical neck -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;smooth muscle tissue of bladder neck -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;smooth muscle tissue of neck of bladder -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;smooth muscle tissue of neck of urinary bladder -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;smooth muscle tissue of urinary bladder neck -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;smooth muscle tissue of vesical neck -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;trigonal muscle -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;trigonal muscle of urinary bladder -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;urinary bladder neck involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;urinary bladder neck muscle -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;urinary bladder neck non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;urinary bladder neck smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;vesical neck involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;vesical neck non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;vesical neck smooth muscle -http://purl.obolibrary.org/obo/UBERON_0004230;urinary bladder neck smooth muscle;vesical neck smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004231;anal region smooth muscle;anal part of perineum involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004231;anal region smooth muscle;anal part of perineum non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004231;anal region smooth muscle;anal part of perineum smooth muscle -http://purl.obolibrary.org/obo/UBERON_0004231;anal region smooth muscle;anal part of perineum smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004231;anal region smooth muscle;anal region involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004231;anal region smooth muscle;anal region non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004231;anal region smooth muscle;anal region smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004231;anal region smooth muscle;anal triangle involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004231;anal region smooth muscle;anal triangle non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004231;anal region smooth muscle;anal triangle smooth muscle -http://purl.obolibrary.org/obo/UBERON_0004231;anal region smooth muscle;anal triangle smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004231;anal region smooth muscle;involuntary muscle of anal part of perineum -http://purl.obolibrary.org/obo/UBERON_0004231;anal region smooth muscle;involuntary muscle of anal region -http://purl.obolibrary.org/obo/UBERON_0004231;anal region smooth muscle;involuntary muscle of anal triangle -http://purl.obolibrary.org/obo/UBERON_0004231;anal region smooth muscle;non-striated muscle of anal part of perineum -http://purl.obolibrary.org/obo/UBERON_0004231;anal region smooth muscle;non-striated muscle of anal region -http://purl.obolibrary.org/obo/UBERON_0004231;anal region smooth muscle;non-striated muscle of anal triangle -http://purl.obolibrary.org/obo/UBERON_0004231;anal region smooth muscle;smooth muscle of anal part of perineum -http://purl.obolibrary.org/obo/UBERON_0004231;anal region smooth muscle;smooth muscle of anal region -http://purl.obolibrary.org/obo/UBERON_0004231;anal region smooth muscle;smooth muscle of anal triangle -http://purl.obolibrary.org/obo/UBERON_0004231;anal region smooth muscle;smooth muscle tissue of anal part of perineum -http://purl.obolibrary.org/obo/UBERON_0004231;anal region smooth muscle;smooth muscle tissue of anal region -http://purl.obolibrary.org/obo/UBERON_0004231;anal region smooth muscle;smooth muscle tissue of anal triangle -http://purl.obolibrary.org/obo/UBERON_0004232;lymphatic vessel smooth muscle;involuntary muscle of lymph vessel -http://purl.obolibrary.org/obo/UBERON_0004232;lymphatic vessel smooth muscle;involuntary muscle of lymphatic vessel -http://purl.obolibrary.org/obo/UBERON_0004232;lymphatic vessel smooth muscle;lymph vessel involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004232;lymphatic vessel smooth muscle;lymph vessel non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004232;lymphatic vessel smooth muscle;lymph vessel smooth muscle -http://purl.obolibrary.org/obo/UBERON_0004232;lymphatic vessel smooth muscle;lymph vessel smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004232;lymphatic vessel smooth muscle;lymphatic vessel involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004232;lymphatic vessel smooth muscle;lymphatic vessel non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004232;lymphatic vessel smooth muscle;lymphatic vessel smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004232;lymphatic vessel smooth muscle;non-striated muscle of lymph vessel -http://purl.obolibrary.org/obo/UBERON_0004232;lymphatic vessel smooth muscle;non-striated muscle of lymphatic vessel -http://purl.obolibrary.org/obo/UBERON_0004232;lymphatic vessel smooth muscle;smooth muscle of lymph vessel -http://purl.obolibrary.org/obo/UBERON_0004232;lymphatic vessel smooth muscle;smooth muscle of lymphatic vessel -http://purl.obolibrary.org/obo/UBERON_0004232;lymphatic vessel smooth muscle;smooth muscle tissue of lymph vessel -http://purl.obolibrary.org/obo/UBERON_0004232;lymphatic vessel smooth muscle;smooth muscle tissue of lymphatic vessel -http://purl.obolibrary.org/obo/UBERON_0004233;lower respiratory tract smooth muscle;involuntary muscle of lower respiratory tract -http://purl.obolibrary.org/obo/UBERON_0004233;lower respiratory tract smooth muscle;lower respiratory tract involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004233;lower respiratory tract smooth muscle;lower respiratory tract non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004233;lower respiratory tract smooth muscle;lower respiratory tract smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004233;lower respiratory tract smooth muscle;non-striated muscle of lower respiratory tract -http://purl.obolibrary.org/obo/UBERON_0004233;lower respiratory tract smooth muscle;smooth muscle of lower respiratory tract -http://purl.obolibrary.org/obo/UBERON_0004233;lower respiratory tract smooth muscle;smooth muscle tissue of lower respiratory tract -http://purl.obolibrary.org/obo/UBERON_0004234;iris smooth muscle;involuntary muscle of iris -http://purl.obolibrary.org/obo/UBERON_0004234;iris smooth muscle;iridial smooth muscle -http://purl.obolibrary.org/obo/UBERON_0004234;iris smooth muscle;iris involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004234;iris smooth muscle;iris non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004234;iris smooth muscle;iris smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004234;iris smooth muscle;non-striated muscle of iris -http://purl.obolibrary.org/obo/UBERON_0004234;iris smooth muscle;smooth muscle of iris -http://purl.obolibrary.org/obo/UBERON_0004234;iris smooth muscle;smooth muscle tissue of iris -http://purl.obolibrary.org/obo/UBERON_0004235;mammary gland smooth muscle;smooth muscle tissue of mammary gland -http://purl.obolibrary.org/obo/UBERON_0004236;arteriole smooth muscle; -http://purl.obolibrary.org/obo/UBERON_0004237;blood vessel smooth muscle;blood vessel involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004237;blood vessel smooth muscle;blood vessel non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004237;blood vessel smooth muscle;blood vessel smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004237;blood vessel smooth muscle;involuntary muscle of blood vessel -http://purl.obolibrary.org/obo/UBERON_0004237;blood vessel smooth muscle;non-striated muscle of blood vessel -http://purl.obolibrary.org/obo/UBERON_0004237;blood vessel smooth muscle;smooth muscle of blood vessel -http://purl.obolibrary.org/obo/UBERON_0004237;blood vessel smooth muscle;smooth muscle tissue of blood vessel -http://purl.obolibrary.org/obo/UBERON_0004237;blood vessel smooth muscle;vascular smooth muscle -http://purl.obolibrary.org/obo/UBERON_0004237;blood vessel smooth muscle;vascular smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004238;spleen smooth muscle;involuntary muscle of spleen -http://purl.obolibrary.org/obo/UBERON_0004238;spleen smooth muscle;non-striated muscle of spleen -http://purl.obolibrary.org/obo/UBERON_0004238;spleen smooth muscle;smooth muscle of spleen -http://purl.obolibrary.org/obo/UBERON_0004238;spleen smooth muscle;smooth muscle tissue of spleen -http://purl.obolibrary.org/obo/UBERON_0004238;spleen smooth muscle;spleen involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004238;spleen smooth muscle;spleen non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004238;spleen smooth muscle;spleen smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004239;small intestine smooth muscle;involuntary muscle of small bowel -http://purl.obolibrary.org/obo/UBERON_0004239;small intestine smooth muscle;involuntary muscle of small intestine -http://purl.obolibrary.org/obo/UBERON_0004239;small intestine smooth muscle;non-striated muscle of small bowel -http://purl.obolibrary.org/obo/UBERON_0004239;small intestine smooth muscle;non-striated muscle of small intestine -http://purl.obolibrary.org/obo/UBERON_0004239;small intestine smooth muscle;small bowel involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004239;small intestine smooth muscle;small bowel non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004239;small intestine smooth muscle;small bowel smooth muscle -http://purl.obolibrary.org/obo/UBERON_0004239;small intestine smooth muscle;small bowel smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004239;small intestine smooth muscle;small intestine involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004239;small intestine smooth muscle;small intestine non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004239;small intestine smooth muscle;small intestine smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004239;small intestine smooth muscle;smooth muscle of small bowel -http://purl.obolibrary.org/obo/UBERON_0004239;small intestine smooth muscle;smooth muscle of small intestine -http://purl.obolibrary.org/obo/UBERON_0004239;small intestine smooth muscle;smooth muscle tissue of small bowel -http://purl.obolibrary.org/obo/UBERON_0004239;small intestine smooth muscle;smooth muscle tissue of small intestine -http://purl.obolibrary.org/obo/UBERON_0004240;gallbladder smooth muscle;gall bladder involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004240;gallbladder smooth muscle;gall bladder non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004240;gallbladder smooth muscle;gall bladder smooth muscle -http://purl.obolibrary.org/obo/UBERON_0004240;gallbladder smooth muscle;gall bladder smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004240;gallbladder smooth muscle;gallbladder involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004240;gallbladder smooth muscle;gallbladder non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004240;gallbladder smooth muscle;gallbladder smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004240;gallbladder smooth muscle;involuntary muscle of gall bladder -http://purl.obolibrary.org/obo/UBERON_0004240;gallbladder smooth muscle;involuntary muscle of gallbladder -http://purl.obolibrary.org/obo/UBERON_0004240;gallbladder smooth muscle;non-striated muscle of gall bladder -http://purl.obolibrary.org/obo/UBERON_0004240;gallbladder smooth muscle;non-striated muscle of gallbladder -http://purl.obolibrary.org/obo/UBERON_0004240;gallbladder smooth muscle;smooth muscle of gall bladder -http://purl.obolibrary.org/obo/UBERON_0004240;gallbladder smooth muscle;smooth muscle of gallbladder -http://purl.obolibrary.org/obo/UBERON_0004240;gallbladder smooth muscle;smooth muscle tissue of gall bladder -http://purl.obolibrary.org/obo/UBERON_0004240;gallbladder smooth muscle;smooth muscle tissue of gallbladder -http://purl.obolibrary.org/obo/UBERON_0004241;main bronchus smooth muscle;bronchus principalis involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004241;main bronchus smooth muscle;bronchus principalis non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004241;main bronchus smooth muscle;bronchus principalis smooth muscle -http://purl.obolibrary.org/obo/UBERON_0004241;main bronchus smooth muscle;bronchus principalis smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004241;main bronchus smooth muscle;involuntary muscle of bronchus principalis -http://purl.obolibrary.org/obo/UBERON_0004241;main bronchus smooth muscle;involuntary muscle of main bronchus -http://purl.obolibrary.org/obo/UBERON_0004241;main bronchus smooth muscle;involuntary muscle of primary bronchus -http://purl.obolibrary.org/obo/UBERON_0004241;main bronchus smooth muscle;involuntary muscle of principal bronchus -http://purl.obolibrary.org/obo/UBERON_0004241;main bronchus smooth muscle;main bronchus involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004241;main bronchus smooth muscle;main bronchus non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004241;main bronchus smooth muscle;main bronchus smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004241;main bronchus smooth muscle;non-striated muscle of bronchus principalis -http://purl.obolibrary.org/obo/UBERON_0004241;main bronchus smooth muscle;non-striated muscle of main bronchus -http://purl.obolibrary.org/obo/UBERON_0004241;main bronchus smooth muscle;non-striated muscle of primary bronchus -http://purl.obolibrary.org/obo/UBERON_0004241;main bronchus smooth muscle;non-striated muscle of principal bronchus -http://purl.obolibrary.org/obo/UBERON_0004241;main bronchus smooth muscle;primary bronchus involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004241;main bronchus smooth muscle;primary bronchus non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004241;main bronchus smooth muscle;primary bronchus smooth muscle -http://purl.obolibrary.org/obo/UBERON_0004241;main bronchus smooth muscle;primary bronchus smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004241;main bronchus smooth muscle;principal bronchus involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004241;main bronchus smooth muscle;principal bronchus non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004241;main bronchus smooth muscle;principal bronchus smooth muscle -http://purl.obolibrary.org/obo/UBERON_0004241;main bronchus smooth muscle;principal bronchus smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004241;main bronchus smooth muscle;smooth muscle of bronchus principalis -http://purl.obolibrary.org/obo/UBERON_0004241;main bronchus smooth muscle;smooth muscle of main bronchus -http://purl.obolibrary.org/obo/UBERON_0004241;main bronchus smooth muscle;smooth muscle of primary bronchus -http://purl.obolibrary.org/obo/UBERON_0004241;main bronchus smooth muscle;smooth muscle of principal bronchus -http://purl.obolibrary.org/obo/UBERON_0004241;main bronchus smooth muscle;smooth muscle tissue of bronchus principalis -http://purl.obolibrary.org/obo/UBERON_0004241;main bronchus smooth muscle;smooth muscle tissue of main bronchus -http://purl.obolibrary.org/obo/UBERON_0004241;main bronchus smooth muscle;smooth muscle tissue of primary bronchus -http://purl.obolibrary.org/obo/UBERON_0004241;main bronchus smooth muscle;smooth muscle tissue of principal bronchus -http://purl.obolibrary.org/obo/UBERON_0004242;bronchus smooth muscle;bronchi involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004242;bronchus smooth muscle;bronchi non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004242;bronchus smooth muscle;bronchi smooth muscle -http://purl.obolibrary.org/obo/UBERON_0004242;bronchus smooth muscle;bronchi smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004242;bronchus smooth muscle;bronchial trunk involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004242;bronchus smooth muscle;bronchial trunk non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004242;bronchus smooth muscle;bronchial trunk smooth muscle -http://purl.obolibrary.org/obo/UBERON_0004242;bronchus smooth muscle;bronchial trunk smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004242;bronchus smooth muscle;bronchus involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004242;bronchus smooth muscle;bronchus non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004242;bronchus smooth muscle;bronchus smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004242;bronchus smooth muscle;involuntary muscle of bronchi -http://purl.obolibrary.org/obo/UBERON_0004242;bronchus smooth muscle;involuntary muscle of bronchial trunk -http://purl.obolibrary.org/obo/UBERON_0004242;bronchus smooth muscle;involuntary muscle of bronchus -http://purl.obolibrary.org/obo/UBERON_0004242;bronchus smooth muscle;non-striated muscle of bronchi -http://purl.obolibrary.org/obo/UBERON_0004242;bronchus smooth muscle;non-striated muscle of bronchial trunk -http://purl.obolibrary.org/obo/UBERON_0004242;bronchus smooth muscle;non-striated muscle of bronchus -http://purl.obolibrary.org/obo/UBERON_0004242;bronchus smooth muscle;smooth muscle of bronchi -http://purl.obolibrary.org/obo/UBERON_0004242;bronchus smooth muscle;smooth muscle of bronchial trunk -http://purl.obolibrary.org/obo/UBERON_0004242;bronchus smooth muscle;smooth muscle of bronchus -http://purl.obolibrary.org/obo/UBERON_0004242;bronchus smooth muscle;smooth muscle tissue of bronchi -http://purl.obolibrary.org/obo/UBERON_0004242;bronchus smooth muscle;smooth muscle tissue of bronchial trunk -http://purl.obolibrary.org/obo/UBERON_0004242;bronchus smooth muscle;smooth muscle tissue of bronchus -http://purl.obolibrary.org/obo/UBERON_0004243;prostate gland smooth muscle;involuntary muscle of prostate -http://purl.obolibrary.org/obo/UBERON_0004243;prostate gland smooth muscle;involuntary muscle of prostate gland -http://purl.obolibrary.org/obo/UBERON_0004243;prostate gland smooth muscle;muscular tissue of prostate -http://purl.obolibrary.org/obo/UBERON_0004243;prostate gland smooth muscle;non-striated muscle of prostate -http://purl.obolibrary.org/obo/UBERON_0004243;prostate gland smooth muscle;non-striated muscle of prostate gland -http://purl.obolibrary.org/obo/UBERON_0004243;prostate gland smooth muscle;prostate gland involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004243;prostate gland smooth muscle;prostate gland non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004243;prostate gland smooth muscle;prostate gland smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004243;prostate gland smooth muscle;prostate involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004243;prostate gland smooth muscle;prostate non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004243;prostate gland smooth muscle;prostate smooth muscle -http://purl.obolibrary.org/obo/UBERON_0004243;prostate gland smooth muscle;prostate smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004243;prostate gland smooth muscle;smooth muscle of prostate -http://purl.obolibrary.org/obo/UBERON_0004243;prostate gland smooth muscle;smooth muscle of prostate gland -http://purl.obolibrary.org/obo/UBERON_0004243;prostate gland smooth muscle;smooth muscle tissue of prostate -http://purl.obolibrary.org/obo/UBERON_0004243;prostate gland smooth muscle;smooth muscle tissue of prostate gland -http://purl.obolibrary.org/obo/UBERON_0004243;prostate gland smooth muscle;substantia muscularis prostatae -http://purl.obolibrary.org/obo/UBERON_0004245;oviduct smooth muscle;fallopian tube involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004245;oviduct smooth muscle;fallopian tube non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004245;oviduct smooth muscle;fallopian tube smooth muscle -http://purl.obolibrary.org/obo/UBERON_0004245;oviduct smooth muscle;fallopian tube smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004245;oviduct smooth muscle;involuntary muscle of fallopian tube -http://purl.obolibrary.org/obo/UBERON_0004245;oviduct smooth muscle;non-striated muscle of fallopian tube -http://purl.obolibrary.org/obo/UBERON_0004245;oviduct smooth muscle;smooth muscle of fallopian tube -http://purl.obolibrary.org/obo/UBERON_0004245;oviduct smooth muscle;smooth muscle tissue of fallopian tube -http://purl.obolibrary.org/obo/UBERON_0004246;outflow tract smooth muscle;involuntary muscle of outflow tract -http://purl.obolibrary.org/obo/UBERON_0004246;outflow tract smooth muscle;non-striated muscle of outflow tract -http://purl.obolibrary.org/obo/UBERON_0004246;outflow tract smooth muscle;outflow tract involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004246;outflow tract smooth muscle;outflow tract non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004246;outflow tract smooth muscle;outflow tract smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004246;outflow tract smooth muscle;smooth muscle of outflow tract -http://purl.obolibrary.org/obo/UBERON_0004246;outflow tract smooth muscle;smooth muscle tissue of outflow tract -http://purl.obolibrary.org/obo/UBERON_0004247;bone of dorsum; -http://purl.obolibrary.org/obo/UBERON_0004248;pedal digit bone;bone of digit of foot -http://purl.obolibrary.org/obo/UBERON_0004248;pedal digit bone;digit of foot bone -http://purl.obolibrary.org/obo/UBERON_0004248;pedal digit bone;digital bone of foot -http://purl.obolibrary.org/obo/UBERON_0004248;pedal digit bone;digital bone of pes -http://purl.obolibrary.org/obo/UBERON_0004248;pedal digit bone;digitus pedis bone -http://purl.obolibrary.org/obo/UBERON_0004248;pedal digit bone;digitus pedis bone organ -http://purl.obolibrary.org/obo/UBERON_0004248;pedal digit bone;foot digit bone -http://purl.obolibrary.org/obo/UBERON_0004248;pedal digit bone;foot digit bone organ -http://purl.obolibrary.org/obo/UBERON_0004248;pedal digit bone;hind limb digit bone -http://purl.obolibrary.org/obo/UBERON_0004248;pedal digit bone;toe bone -http://purl.obolibrary.org/obo/UBERON_0004248;pedal digit bone;toe bone organ -http://purl.obolibrary.org/obo/UBERON_0004249;manual digit bone;digital bone of hand -http://purl.obolibrary.org/obo/UBERON_0004249;manual digit bone;digital bone of manus -http://purl.obolibrary.org/obo/UBERON_0004249;manual digit bone;finger bone -http://purl.obolibrary.org/obo/UBERON_0004249;manual digit bone;fore limb digit bone -http://purl.obolibrary.org/obo/UBERON_0004249;manual digit bone;hand digit bone -http://purl.obolibrary.org/obo/UBERON_0004250;upper arm bone; -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;bone of hind limb middle limb segment -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;bone of hind limb zeugopod -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;bone of hindlimb middle limb segment -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;bone of hindlimb zeugopod -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;bone of inferior member middle limb segment -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;bone of inferior member zeugopod -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;bone of intermediate segment of free lower limb -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;bone of lower extremity middle limb segment -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;bone of lower extremity zeugopod -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;bone of lower leg -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;bone of middle limb segment of hind limb -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;bone of middle limb segment of hindlimb -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;bone of middle limb segment of inferior member -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;bone of middle limb segment of lower extremity -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;bone of zeugopod of hind limb -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;bone of zeugopod of hindlimb -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;bone of zeugopod of inferior member -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;bone of zeugopod of leg -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;bone of zeugopod of lower extremity -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;bone organ of hind limb middle limb segment -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;bone organ of hind limb zeugopod -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;bone organ of hindlimb middle limb segment -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;bone organ of hindlimb zeugopod -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;bone organ of inferior member middle limb segment -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;bone organ of inferior member zeugopod -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;bone organ of intermediate segment of free lower limb -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;bone organ of lower extremity middle limb segment -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;bone organ of lower extremity zeugopod -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;bone organ of lower leg -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;bone organ of middle limb segment of hind limb -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;bone organ of middle limb segment of hindlimb -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;bone organ of middle limb segment of inferior member -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;bone organ of middle limb segment of lower extremity -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;bone organ of zeugopod of hind limb -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;bone organ of zeugopod of hindlimb -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;bone organ of zeugopod of inferior member -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;bone organ of zeugopod of leg -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;bone organ of zeugopod of lower extremity -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;hind limb middle limb segment bone -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;hind limb middle limb segment bone organ -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;hind limb zeugopod bone -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;hind limb zeugopod bone organ -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;hindlimb middle limb segment bone -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;hindlimb middle limb segment bone organ -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;hindlimb zeugopod bone -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;hindlimb zeugopod bone organ -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;inferior member middle limb segment bone -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;inferior member middle limb segment bone organ -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;inferior member zeugopod bone -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;inferior member zeugopod bone organ -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;intermediate segment of free lower limb bone -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;intermediate segment of free lower limb bone organ -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;lower extremity middle limb segment bone -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;lower extremity middle limb segment bone organ -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;lower extremity zeugopod bone -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;lower extremity zeugopod bone organ -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;lower leg bone -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;middle limb segment of hind limb bone -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;middle limb segment of hind limb bone organ -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;middle limb segment of hindlimb bone -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;middle limb segment of hindlimb bone organ -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;middle limb segment of inferior member bone -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;middle limb segment of inferior member bone organ -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;middle limb segment of lower extremity bone -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;middle limb segment of lower extremity bone organ -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;zeugopod of hind limb bone -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;zeugopod of hind limb bone organ -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;zeugopod of hindlimb bone -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;zeugopod of hindlimb bone organ -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;zeugopod of inferior member bone -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;zeugopod of inferior member bone organ -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;zeugopod of leg bone -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;zeugopod of leg bone organ -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;zeugopod of lower extremity bone -http://purl.obolibrary.org/obo/UBERON_0004251;hindlimb zeugopod bone;zeugopod of lower extremity bone organ -http://purl.obolibrary.org/obo/UBERON_0004252;hindlimb stylopod muscle;muscle of thigh -http://purl.obolibrary.org/obo/UBERON_0004252;hindlimb stylopod muscle;thigh muscle -http://purl.obolibrary.org/obo/UBERON_0004252;hindlimb stylopod muscle;upper leg muscle -http://purl.obolibrary.org/obo/UBERON_0004253;skin muscle;integumental system muscle -http://purl.obolibrary.org/obo/UBERON_0004253;skin muscle;muscle of integumental system -http://purl.obolibrary.org/obo/UBERON_0004253;skin muscle;muscle organ of skin -http://purl.obolibrary.org/obo/UBERON_0004253;skin muscle;skin muscle organ -http://purl.obolibrary.org/obo/UBERON_0004254;forelimb zeugopod muscle;forearm muscle -http://purl.obolibrary.org/obo/UBERON_0004254;forelimb zeugopod muscle;lower arm muscle -http://purl.obolibrary.org/obo/UBERON_0004254;forelimb zeugopod muscle;muscle of forearm -http://purl.obolibrary.org/obo/UBERON_0004255;forelimb stylopod muscle;muscle of upper arm -http://purl.obolibrary.org/obo/UBERON_0004255;forelimb stylopod muscle;upper arm muscle -http://purl.obolibrary.org/obo/UBERON_0004256;hindlimb zeugopod muscle;lower leg muscle -http://purl.obolibrary.org/obo/UBERON_0004257;upper leg blood vessel;blood vessel of stylopod of hind limb -http://purl.obolibrary.org/obo/UBERON_0004257;upper leg blood vessel;blood vessel of stylopod of hindlimb -http://purl.obolibrary.org/obo/UBERON_0004257;upper leg blood vessel;blood vessel of thigh -http://purl.obolibrary.org/obo/UBERON_0004257;upper leg blood vessel;blood vessel of upper leg -http://purl.obolibrary.org/obo/UBERON_0004257;upper leg blood vessel;hind limb stylopod blood vessel -http://purl.obolibrary.org/obo/UBERON_0004257;upper leg blood vessel;hindlimb stylopod blood vessel -http://purl.obolibrary.org/obo/UBERON_0004257;upper leg blood vessel;thigh blood vessel -http://purl.obolibrary.org/obo/UBERON_0004258;back blood vessel;blood vessel of back -http://purl.obolibrary.org/obo/UBERON_0004259;lower arm blood vessel;forelimb zeugopod blood vessel -http://purl.obolibrary.org/obo/UBERON_0004260;upper arm blood vessel;forelimb stylopod blood vessel -http://purl.obolibrary.org/obo/UBERON_0004261;lower leg blood vessel;hindlimb zeugopod blood vessel -http://purl.obolibrary.org/obo/UBERON_0004262;upper leg skin;hind limb stylopod skin -http://purl.obolibrary.org/obo/UBERON_0004262;upper leg skin;hindlimb stylopod skin -http://purl.obolibrary.org/obo/UBERON_0004262;upper leg skin;skin of upper leg -http://purl.obolibrary.org/obo/UBERON_0004263;upper arm skin;arm stylopod skin -http://purl.obolibrary.org/obo/UBERON_0004263;upper arm skin;skin of arm stylopod -http://purl.obolibrary.org/obo/UBERON_0004263;upper arm skin;skin of upper arm -http://purl.obolibrary.org/obo/UBERON_0004264;lower leg skin;hind limb middle limb segment skin -http://purl.obolibrary.org/obo/UBERON_0004264;lower leg skin;hind limb zeugopod skin -http://purl.obolibrary.org/obo/UBERON_0004265;outflow tract myocardium;cardiac muscle of outflow tract -http://purl.obolibrary.org/obo/UBERON_0004265;outflow tract myocardium;heart muscle of outflow tract -http://purl.obolibrary.org/obo/UBERON_0004265;outflow tract myocardium;heart myocardium of outflow tract -http://purl.obolibrary.org/obo/UBERON_0004265;outflow tract myocardium;muscle of heart of outflow tract -http://purl.obolibrary.org/obo/UBERON_0004265;outflow tract myocardium;myocardium of outflow tract -http://purl.obolibrary.org/obo/UBERON_0004265;outflow tract myocardium;outflow tract cardiac muscle -http://purl.obolibrary.org/obo/UBERON_0004265;outflow tract myocardium;outflow tract heart muscle -http://purl.obolibrary.org/obo/UBERON_0004265;outflow tract myocardium;outflow tract heart myocardium -http://purl.obolibrary.org/obo/UBERON_0004265;outflow tract myocardium;outflow tract muscle of heart -http://purl.obolibrary.org/obo/UBERON_0004266;upper leg connective tissue; -http://purl.obolibrary.org/obo/UBERON_0004267;back connective tissue; -http://purl.obolibrary.org/obo/UBERON_0004268;lower arm connective tissue; -http://purl.obolibrary.org/obo/UBERON_0004269;upper arm connective tissue; -http://purl.obolibrary.org/obo/UBERON_0004270;lower leg connective tissue; -http://purl.obolibrary.org/obo/UBERON_0004271;outflow tract pericardium;pericardium of outflow tract -http://purl.obolibrary.org/obo/UBERON_0004273;cartilaginous joint suture;articulatio cartilaginea cranial suture -http://purl.obolibrary.org/obo/UBERON_0004273;cartilaginous joint suture;articulatio cartilaginea cranial sutures -http://purl.obolibrary.org/obo/UBERON_0004273;cartilaginous joint suture;articulatio cartilaginea cranial sutures set -http://purl.obolibrary.org/obo/UBERON_0004273;cartilaginous joint suture;articulatio cartilaginea cranium suture -http://purl.obolibrary.org/obo/UBERON_0004273;cartilaginous joint suture;articulatio cartilaginea suture of cranium -http://purl.obolibrary.org/obo/UBERON_0004273;cartilaginous joint suture;cartilaginous joint cranial suture -http://purl.obolibrary.org/obo/UBERON_0004273;cartilaginous joint suture;cartilaginous joint cranial sutures -http://purl.obolibrary.org/obo/UBERON_0004273;cartilaginous joint suture;cartilaginous joint cranial sutures set -http://purl.obolibrary.org/obo/UBERON_0004273;cartilaginous joint suture;cartilaginous joint cranium suture -http://purl.obolibrary.org/obo/UBERON_0004273;cartilaginous joint suture;cartilaginous joint suture of cranium -http://purl.obolibrary.org/obo/UBERON_0004273;cartilaginous joint suture;cranial suture of articulatio cartilaginea -http://purl.obolibrary.org/obo/UBERON_0004273;cartilaginous joint suture;cranial suture of cartilaginous joint -http://purl.obolibrary.org/obo/UBERON_0004273;cartilaginous joint suture;cranial sutures of articulatio cartilaginea -http://purl.obolibrary.org/obo/UBERON_0004273;cartilaginous joint suture;cranial sutures of cartilaginous joint -http://purl.obolibrary.org/obo/UBERON_0004273;cartilaginous joint suture;cranial sutures set of articulatio cartilaginea -http://purl.obolibrary.org/obo/UBERON_0004273;cartilaginous joint suture;cranial sutures set of cartilaginous joint -http://purl.obolibrary.org/obo/UBERON_0004273;cartilaginous joint suture;cranium suture of articulatio cartilaginea -http://purl.obolibrary.org/obo/UBERON_0004273;cartilaginous joint suture;cranium suture of cartilaginous joint -http://purl.obolibrary.org/obo/UBERON_0004273;cartilaginous joint suture;suture of cranium of articulatio cartilaginea -http://purl.obolibrary.org/obo/UBERON_0004273;cartilaginous joint suture;suture of cranium of cartilaginous joint -http://purl.obolibrary.org/obo/UBERON_0004274;lateral ventricle choroid plexus epithelium;chorioid plexus of cerebral hemisphere epithelial tissue of lateral ventricle -http://purl.obolibrary.org/obo/UBERON_0004274;lateral ventricle choroid plexus epithelium;chorioid plexus of cerebral hemisphere epithelium of lateral ventricle -http://purl.obolibrary.org/obo/UBERON_0004274;lateral ventricle choroid plexus epithelium;choroid plexus epithelial tissue of lateral ventricle -http://purl.obolibrary.org/obo/UBERON_0004274;lateral ventricle choroid plexus epithelium;choroid plexus epithelium of lateral ventricle -http://purl.obolibrary.org/obo/UBERON_0004274;lateral ventricle choroid plexus epithelium;epithelial tissue of chorioid plexus of cerebral hemisphere of lateral ventricle -http://purl.obolibrary.org/obo/UBERON_0004274;lateral ventricle choroid plexus epithelium;epithelial tissue of choroid plexus of lateral ventricle -http://purl.obolibrary.org/obo/UBERON_0004274;lateral ventricle choroid plexus epithelium;epithelium of chorioid plexus of cerebral hemisphere of lateral ventricle -http://purl.obolibrary.org/obo/UBERON_0004274;lateral ventricle choroid plexus epithelium;epithelium of choroid plexus of lateral ventricle -http://purl.obolibrary.org/obo/UBERON_0004274;lateral ventricle choroid plexus epithelium;lateral ventricle chorioid plexus of cerebral hemisphere epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0004274;lateral ventricle choroid plexus epithelium;lateral ventricle chorioid plexus of cerebral hemisphere epithelium -http://purl.obolibrary.org/obo/UBERON_0004274;lateral ventricle choroid plexus epithelium;lateral ventricle choroid plexus epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0004274;lateral ventricle choroid plexus epithelium;lateral ventricle epithelial tissue of chorioid plexus of cerebral hemisphere -http://purl.obolibrary.org/obo/UBERON_0004274;lateral ventricle choroid plexus epithelium;lateral ventricle epithelial tissue of choroid plexus -http://purl.obolibrary.org/obo/UBERON_0004274;lateral ventricle choroid plexus epithelium;lateral ventricle epithelium of chorioid plexus of cerebral hemisphere -http://purl.obolibrary.org/obo/UBERON_0004274;lateral ventricle choroid plexus epithelium;lateral ventricle epithelium of choroid plexus -http://purl.obolibrary.org/obo/UBERON_0004275;third ventricle choroid plexus epithelium;chorioid plexus of cerebral hemisphere epithelial tissue of third ventricle -http://purl.obolibrary.org/obo/UBERON_0004275;third ventricle choroid plexus epithelium;chorioid plexus of cerebral hemisphere epithelium of third ventricle -http://purl.obolibrary.org/obo/UBERON_0004275;third ventricle choroid plexus epithelium;choroid plexus epithelial tissue of third ventricle -http://purl.obolibrary.org/obo/UBERON_0004275;third ventricle choroid plexus epithelium;choroid plexus epithelium of third ventricle -http://purl.obolibrary.org/obo/UBERON_0004275;third ventricle choroid plexus epithelium;epithelial tissue of chorioid plexus of cerebral hemisphere of third ventricle -http://purl.obolibrary.org/obo/UBERON_0004275;third ventricle choroid plexus epithelium;epithelial tissue of choroid plexus of third ventricle -http://purl.obolibrary.org/obo/UBERON_0004275;third ventricle choroid plexus epithelium;epithelium of chorioid plexus of cerebral hemisphere of third ventricle -http://purl.obolibrary.org/obo/UBERON_0004275;third ventricle choroid plexus epithelium;epithelium of choroid plexus of third ventricle -http://purl.obolibrary.org/obo/UBERON_0004275;third ventricle choroid plexus epithelium;third ventricle chorioid plexus of cerebral hemisphere epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0004275;third ventricle choroid plexus epithelium;third ventricle chorioid plexus of cerebral hemisphere epithelium -http://purl.obolibrary.org/obo/UBERON_0004275;third ventricle choroid plexus epithelium;third ventricle choroid plexus epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0004275;third ventricle choroid plexus epithelium;third ventricle epithelial tissue of chorioid plexus of cerebral hemisphere -http://purl.obolibrary.org/obo/UBERON_0004275;third ventricle choroid plexus epithelium;third ventricle epithelial tissue of choroid plexus -http://purl.obolibrary.org/obo/UBERON_0004275;third ventricle choroid plexus epithelium;third ventricle epithelium of chorioid plexus of cerebral hemisphere -http://purl.obolibrary.org/obo/UBERON_0004275;third ventricle choroid plexus epithelium;third ventricle epithelium of choroid plexus -http://purl.obolibrary.org/obo/UBERON_0004276;fourth ventricle choroid plexus epithelium;chorioid plexus of cerebral hemisphere epithelial tissue of fourth ventricle -http://purl.obolibrary.org/obo/UBERON_0004276;fourth ventricle choroid plexus epithelium;chorioid plexus of cerebral hemisphere epithelium of fourth ventricle -http://purl.obolibrary.org/obo/UBERON_0004276;fourth ventricle choroid plexus epithelium;choroid plexus epithelial tissue of fourth ventricle -http://purl.obolibrary.org/obo/UBERON_0004276;fourth ventricle choroid plexus epithelium;choroid plexus epithelium of fourth ventricle -http://purl.obolibrary.org/obo/UBERON_0004276;fourth ventricle choroid plexus epithelium;epithelial tissue of chorioid plexus of cerebral hemisphere of fourth ventricle -http://purl.obolibrary.org/obo/UBERON_0004276;fourth ventricle choroid plexus epithelium;epithelial tissue of choroid plexus of fourth ventricle -http://purl.obolibrary.org/obo/UBERON_0004276;fourth ventricle choroid plexus epithelium;epithelium of chorioid plexus of cerebral hemisphere of fourth ventricle -http://purl.obolibrary.org/obo/UBERON_0004276;fourth ventricle choroid plexus epithelium;epithelium of choroid plexus of fourth ventricle -http://purl.obolibrary.org/obo/UBERON_0004276;fourth ventricle choroid plexus epithelium;fourth ventricle chorioid plexus of cerebral hemisphere epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0004276;fourth ventricle choroid plexus epithelium;fourth ventricle chorioid plexus of cerebral hemisphere epithelium -http://purl.obolibrary.org/obo/UBERON_0004276;fourth ventricle choroid plexus epithelium;fourth ventricle choroid plexus epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0004276;fourth ventricle choroid plexus epithelium;fourth ventricle epithelial tissue of chorioid plexus of cerebral hemisphere -http://purl.obolibrary.org/obo/UBERON_0004276;fourth ventricle choroid plexus epithelium;fourth ventricle epithelial tissue of choroid plexus -http://purl.obolibrary.org/obo/UBERON_0004276;fourth ventricle choroid plexus epithelium;fourth ventricle epithelium of chorioid plexus of cerebral hemisphere -http://purl.obolibrary.org/obo/UBERON_0004276;fourth ventricle choroid plexus epithelium;fourth ventricle epithelium of choroid plexus -http://purl.obolibrary.org/obo/UBERON_0004277;eye muscle; -http://purl.obolibrary.org/obo/UBERON_0004288;skeleton;set of all bones -http://purl.obolibrary.org/obo/UBERON_0004288;skeleton;set of bones of body -http://purl.obolibrary.org/obo/UBERON_0004289;radula; -http://purl.obolibrary.org/obo/UBERON_0004290;dermomyotome; -http://purl.obolibrary.org/obo/UBERON_0004291;heart rudiment;heart cone -http://purl.obolibrary.org/obo/UBERON_0004291;heart rudiment;rudimentary heart -http://purl.obolibrary.org/obo/UBERON_0004292;cardiac skeleton;cardiac fibrous skeleton -http://purl.obolibrary.org/obo/UBERON_0004292;cardiac skeleton;fibrous skeleton of heart -http://purl.obolibrary.org/obo/UBERON_0004292;cardiac skeleton;heart fibrous skeleton -http://purl.obolibrary.org/obo/UBERON_0004292;cardiac skeleton;skeleton of heart -http://purl.obolibrary.org/obo/UBERON_0004293;parasympathetic nerve;nerve of parasympathetic nervous system -http://purl.obolibrary.org/obo/UBERON_0004294;glomerular capillary endothelium;renal glomerulus capillary endothelium -http://purl.obolibrary.org/obo/UBERON_0004295;sympathetic nerve trunk;nerve trunk of sympathetic nervous system -http://purl.obolibrary.org/obo/UBERON_0004295;sympathetic nerve trunk;nerve trunk of sympathetic part of autonomic division of nervous system -http://purl.obolibrary.org/obo/UBERON_0004295;sympathetic nerve trunk;sympathetic nervous system nerve trunk -http://purl.obolibrary.org/obo/UBERON_0004296;respiratory system lymphatic vessel smooth muscle;smooth muscle of lymph vessel of respiratory system -http://purl.obolibrary.org/obo/UBERON_0004297;respiratory system blood vessel smooth muscle;smooth muscle tissue of blood vessel of respiratory system -http://purl.obolibrary.org/obo/UBERON_0004300;distal phalanx;phalanx distalis -http://purl.obolibrary.org/obo/UBERON_0004300;distal phalanx;terminal phalanx -http://purl.obolibrary.org/obo/UBERON_0004300;distal phalanx;ungual phalanx -http://purl.obolibrary.org/obo/UBERON_0004301;middle phalanx;intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0004302;proximal phalanx;phalanx 1 -http://purl.obolibrary.org/obo/UBERON_0004302;proximal phalanx;phalanx I -http://purl.obolibrary.org/obo/UBERON_0004302;proximal phalanx;proximal-most phalanx -http://purl.obolibrary.org/obo/UBERON_0004311;distal phalanx of manual digit 2;2nd digit of hand distal phalanx -http://purl.obolibrary.org/obo/UBERON_0004311;distal phalanx of manual digit 2;2nd finger distal phalanx -http://purl.obolibrary.org/obo/UBERON_0004311;distal phalanx of manual digit 2;distal phalanx of 2nd digit of hand -http://purl.obolibrary.org/obo/UBERON_0004311;distal phalanx of manual digit 2;distal phalanx of 2nd finger -http://purl.obolibrary.org/obo/UBERON_0004311;distal phalanx of manual digit 2;distal phalanx of index finger -http://purl.obolibrary.org/obo/UBERON_0004311;distal phalanx of manual digit 2;distal phalanx of manual digit II -http://purl.obolibrary.org/obo/UBERON_0004311;distal phalanx of manual digit 2;distal phalanx of second digit of hand -http://purl.obolibrary.org/obo/UBERON_0004311;distal phalanx of manual digit 2;distal phalanx of second finger -http://purl.obolibrary.org/obo/UBERON_0004311;distal phalanx of manual digit 2;hand digit 2 distal phalanx -http://purl.obolibrary.org/obo/UBERON_0004311;distal phalanx of manual digit 2;second distal phalanx of hand -http://purl.obolibrary.org/obo/UBERON_0004311;distal phalanx of manual digit 2;second finger distal phalanx -http://purl.obolibrary.org/obo/UBERON_0004312;distal phalanx of manual digit 3;3rd digit of hand distal phalanx -http://purl.obolibrary.org/obo/UBERON_0004312;distal phalanx of manual digit 3;3rd finger distal phalanx -http://purl.obolibrary.org/obo/UBERON_0004312;distal phalanx of manual digit 3;distal phalanx of 3rd digit of hand -http://purl.obolibrary.org/obo/UBERON_0004312;distal phalanx of manual digit 3;distal phalanx of 3rd finger -http://purl.obolibrary.org/obo/UBERON_0004312;distal phalanx of manual digit 3;distal phalanx of manual digit III -http://purl.obolibrary.org/obo/UBERON_0004312;distal phalanx of manual digit 3;distal phalanx of middle finger -http://purl.obolibrary.org/obo/UBERON_0004312;distal phalanx of manual digit 3;distal phalanx of third digit of hand -http://purl.obolibrary.org/obo/UBERON_0004312;distal phalanx of manual digit 3;distal phalanx of third finger -http://purl.obolibrary.org/obo/UBERON_0004312;distal phalanx of manual digit 3;equine 3rd phalanx of forelimb digit 3 -http://purl.obolibrary.org/obo/UBERON_0004312;distal phalanx of manual digit 3;equine forelimb distal phalanx -http://purl.obolibrary.org/obo/UBERON_0004312;distal phalanx of manual digit 3;hand digit 3 distal phalanx -http://purl.obolibrary.org/obo/UBERON_0004312;distal phalanx of manual digit 3;third distal phalanx of hand -http://purl.obolibrary.org/obo/UBERON_0004312;distal phalanx of manual digit 3;third finger distal phalanx -http://purl.obolibrary.org/obo/UBERON_0004313;distal phalanx of manual digit 4;4th digit of hand distal phalanx -http://purl.obolibrary.org/obo/UBERON_0004313;distal phalanx of manual digit 4;4th finger distal phalanx -http://purl.obolibrary.org/obo/UBERON_0004313;distal phalanx of manual digit 4;distal phalanx of 4th digit of hand -http://purl.obolibrary.org/obo/UBERON_0004313;distal phalanx of manual digit 4;distal phalanx of 4th finger -http://purl.obolibrary.org/obo/UBERON_0004313;distal phalanx of manual digit 4;distal phalanx of fourth digit of hand -http://purl.obolibrary.org/obo/UBERON_0004313;distal phalanx of manual digit 4;distal phalanx of fourth finger -http://purl.obolibrary.org/obo/UBERON_0004313;distal phalanx of manual digit 4;distal phalanx of manual digit IV -http://purl.obolibrary.org/obo/UBERON_0004313;distal phalanx of manual digit 4;distal phalanx of ring finger -http://purl.obolibrary.org/obo/UBERON_0004313;distal phalanx of manual digit 4;fourth distal phalanx of hand -http://purl.obolibrary.org/obo/UBERON_0004313;distal phalanx of manual digit 4;fourth finger distal phalanx -http://purl.obolibrary.org/obo/UBERON_0004313;distal phalanx of manual digit 4;hand digit 4 distal phalanx -http://purl.obolibrary.org/obo/UBERON_0004314;distal phalanx of manual digit 5;5th digit of hand distal phalanx -http://purl.obolibrary.org/obo/UBERON_0004314;distal phalanx of manual digit 5;5th finger distal phalanx -http://purl.obolibrary.org/obo/UBERON_0004314;distal phalanx of manual digit 5;distal phalanx of 5th digit of hand -http://purl.obolibrary.org/obo/UBERON_0004314;distal phalanx of manual digit 5;distal phalanx of 5th finger -http://purl.obolibrary.org/obo/UBERON_0004314;distal phalanx of manual digit 5;distal phalanx of fifth digit of hand -http://purl.obolibrary.org/obo/UBERON_0004314;distal phalanx of manual digit 5;distal phalanx of fifth finger -http://purl.obolibrary.org/obo/UBERON_0004314;distal phalanx of manual digit 5;distal phalanx of little finger -http://purl.obolibrary.org/obo/UBERON_0004314;distal phalanx of manual digit 5;distal phalanx of manual digit V -http://purl.obolibrary.org/obo/UBERON_0004314;distal phalanx of manual digit 5;fifth distal phalanx of hand -http://purl.obolibrary.org/obo/UBERON_0004314;distal phalanx of manual digit 5;fifth finger distal phalanx -http://purl.obolibrary.org/obo/UBERON_0004314;distal phalanx of manual digit 5;hand digit 5 distal phalanx -http://purl.obolibrary.org/obo/UBERON_0004315;distal phalanx of pedal digit 1;distal phalanx of big toe -http://purl.obolibrary.org/obo/UBERON_0004315;distal phalanx of pedal digit 1;distal phalanx of first digit of foot -http://purl.obolibrary.org/obo/UBERON_0004315;distal phalanx of pedal digit 1;distal phalanx of foot digit 1 -http://purl.obolibrary.org/obo/UBERON_0004315;distal phalanx of pedal digit 1;distal phalanx of great toe -http://purl.obolibrary.org/obo/UBERON_0004315;distal phalanx of pedal digit 1;distal phalanx of hallux -http://purl.obolibrary.org/obo/UBERON_0004315;distal phalanx of pedal digit 1;distal phalanx of pedal digit I -http://purl.obolibrary.org/obo/UBERON_0004315;distal phalanx of pedal digit 1;first distal phalanx of foot -http://purl.obolibrary.org/obo/UBERON_0004315;distal phalanx of pedal digit 1;foot digit 1 distal phalanx -http://purl.obolibrary.org/obo/UBERON_0004315;distal phalanx of pedal digit 1;hallux distal phalanx -http://purl.obolibrary.org/obo/UBERON_0004316;distal phalanx of pedal digit 2;2nd toe distal phalanx -http://purl.obolibrary.org/obo/UBERON_0004316;distal phalanx of pedal digit 2;distal phalanx of 2nd toe -http://purl.obolibrary.org/obo/UBERON_0004316;distal phalanx of pedal digit 2;distal phalanx of foot digit 2 -http://purl.obolibrary.org/obo/UBERON_0004316;distal phalanx of pedal digit 2;distal phalanx of pedal digit II -http://purl.obolibrary.org/obo/UBERON_0004316;distal phalanx of pedal digit 2;distal phalanx of second digit of foot -http://purl.obolibrary.org/obo/UBERON_0004316;distal phalanx of pedal digit 2;distal phalanx of second toe -http://purl.obolibrary.org/obo/UBERON_0004316;distal phalanx of pedal digit 2;distal phalanx of the 2nd toe -http://purl.obolibrary.org/obo/UBERON_0004316;distal phalanx of pedal digit 2;foot digit 2 distal phalanx -http://purl.obolibrary.org/obo/UBERON_0004316;distal phalanx of pedal digit 2;second distal phalanx of foot -http://purl.obolibrary.org/obo/UBERON_0004317;distal phalanx of pedal digit 3;3rd toe distal phalanx -http://purl.obolibrary.org/obo/UBERON_0004317;distal phalanx of pedal digit 3;distal phalanx of 3rd toe -http://purl.obolibrary.org/obo/UBERON_0004317;distal phalanx of pedal digit 3;distal phalanx of foot digit 3 -http://purl.obolibrary.org/obo/UBERON_0004317;distal phalanx of pedal digit 3;distal phalanx of pedal digit III -http://purl.obolibrary.org/obo/UBERON_0004317;distal phalanx of pedal digit 3;distal phalanx of the 3rd toe -http://purl.obolibrary.org/obo/UBERON_0004317;distal phalanx of pedal digit 3;distal phalanx of third digit of foot -http://purl.obolibrary.org/obo/UBERON_0004317;distal phalanx of pedal digit 3;distal phalanx of third toe -http://purl.obolibrary.org/obo/UBERON_0004317;distal phalanx of pedal digit 3;equine 3rd phalanx of hindlimb digit 3 -http://purl.obolibrary.org/obo/UBERON_0004317;distal phalanx of pedal digit 3;equine hindlimb distal phalanx -http://purl.obolibrary.org/obo/UBERON_0004317;distal phalanx of pedal digit 3;foot digit 3 distal phalanx -http://purl.obolibrary.org/obo/UBERON_0004317;distal phalanx of pedal digit 3;third distal phalanx of foot -http://purl.obolibrary.org/obo/UBERON_0004318;distal phalanx of pedal digit 4;4th toe distal phalanx -http://purl.obolibrary.org/obo/UBERON_0004318;distal phalanx of pedal digit 4;distal phalanx of 4th toe -http://purl.obolibrary.org/obo/UBERON_0004318;distal phalanx of pedal digit 4;distal phalanx of foot digit 4 -http://purl.obolibrary.org/obo/UBERON_0004318;distal phalanx of pedal digit 4;distal phalanx of fourth digit of foot -http://purl.obolibrary.org/obo/UBERON_0004318;distal phalanx of pedal digit 4;distal phalanx of fourth toe -http://purl.obolibrary.org/obo/UBERON_0004318;distal phalanx of pedal digit 4;distal phalanx of pedal digit IV -http://purl.obolibrary.org/obo/UBERON_0004318;distal phalanx of pedal digit 4;distal phalanx of the 4th toe -http://purl.obolibrary.org/obo/UBERON_0004318;distal phalanx of pedal digit 4;foot digit 4 distal phalanx -http://purl.obolibrary.org/obo/UBERON_0004318;distal phalanx of pedal digit 4;fourth distal phalanx of foot -http://purl.obolibrary.org/obo/UBERON_0004319;distal phalanx of pedal digit 5;5th toe distal phalanx -http://purl.obolibrary.org/obo/UBERON_0004319;distal phalanx of pedal digit 5;distal phalanx of 5th toe -http://purl.obolibrary.org/obo/UBERON_0004319;distal phalanx of pedal digit 5;distal phalanx of fifth digit of foot -http://purl.obolibrary.org/obo/UBERON_0004319;distal phalanx of pedal digit 5;distal phalanx of fifth toe -http://purl.obolibrary.org/obo/UBERON_0004319;distal phalanx of pedal digit 5;distal phalanx of foot digit 5 -http://purl.obolibrary.org/obo/UBERON_0004319;distal phalanx of pedal digit 5;distal phalanx of little toe -http://purl.obolibrary.org/obo/UBERON_0004319;distal phalanx of pedal digit 5;distal phalanx of pedal digit V -http://purl.obolibrary.org/obo/UBERON_0004319;distal phalanx of pedal digit 5;distal phalanx of the 5th toe -http://purl.obolibrary.org/obo/UBERON_0004319;distal phalanx of pedal digit 5;fifth distal phalanx of foot -http://purl.obolibrary.org/obo/UBERON_0004319;distal phalanx of pedal digit 5;foot digit 5 distal phalanx -http://purl.obolibrary.org/obo/UBERON_0004320;middle phalanx of manual digit 2;2nd digit of hand intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0004320;middle phalanx of manual digit 2;2nd digit of hand middle phalanx -http://purl.obolibrary.org/obo/UBERON_0004320;middle phalanx of manual digit 2;2nd finger intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0004320;middle phalanx of manual digit 2;2nd finger middle phalanx -http://purl.obolibrary.org/obo/UBERON_0004320;middle phalanx of manual digit 2;hand digit 2 intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0004320;middle phalanx of manual digit 2;hand digit 2 middle phalanx -http://purl.obolibrary.org/obo/UBERON_0004320;middle phalanx of manual digit 2;intermediate phalanx of 2nd digit of hand -http://purl.obolibrary.org/obo/UBERON_0004320;middle phalanx of manual digit 2;intermediate phalanx of 2nd finger -http://purl.obolibrary.org/obo/UBERON_0004320;middle phalanx of manual digit 2;intermediate phalanx of hand digit 2 -http://purl.obolibrary.org/obo/UBERON_0004320;middle phalanx of manual digit 2;intermediate phalanx of second finger -http://purl.obolibrary.org/obo/UBERON_0004320;middle phalanx of manual digit 2;middle phalanx of 2nd digit of hand -http://purl.obolibrary.org/obo/UBERON_0004320;middle phalanx of manual digit 2;middle phalanx of 2nd finger -http://purl.obolibrary.org/obo/UBERON_0004320;middle phalanx of manual digit 2;middle phalanx of index finger -http://purl.obolibrary.org/obo/UBERON_0004320;middle phalanx of manual digit 2;middle phalanx of manual digit II -http://purl.obolibrary.org/obo/UBERON_0004320;middle phalanx of manual digit 2;middle phalanx of second digit of hand -http://purl.obolibrary.org/obo/UBERON_0004320;middle phalanx of manual digit 2;middle phalanx of second finger -http://purl.obolibrary.org/obo/UBERON_0004320;middle phalanx of manual digit 2;second finger intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0004320;middle phalanx of manual digit 2;second finger middle phalanx -http://purl.obolibrary.org/obo/UBERON_0004320;middle phalanx of manual digit 2;second middle phalanx of hand -http://purl.obolibrary.org/obo/UBERON_0004321;middle phalanx of manual digit 3;3rd digit of hand intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0004321;middle phalanx of manual digit 3;3rd digit of hand middle phalanx -http://purl.obolibrary.org/obo/UBERON_0004321;middle phalanx of manual digit 3;3rd finger intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0004321;middle phalanx of manual digit 3;3rd finger middle phalanx -http://purl.obolibrary.org/obo/UBERON_0004321;middle phalanx of manual digit 3;forelimb digit III P2 -http://purl.obolibrary.org/obo/UBERON_0004321;middle phalanx of manual digit 3;hand digit 3 intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0004321;middle phalanx of manual digit 3;hand digit 3 middle phalanx -http://purl.obolibrary.org/obo/UBERON_0004321;middle phalanx of manual digit 3;intermediate phalanx of 3rd digit of hand -http://purl.obolibrary.org/obo/UBERON_0004321;middle phalanx of manual digit 3;intermediate phalanx of 3rd finger -http://purl.obolibrary.org/obo/UBERON_0004321;middle phalanx of manual digit 3;intermediate phalanx of hand digit 3 -http://purl.obolibrary.org/obo/UBERON_0004321;middle phalanx of manual digit 3;intermediate phalanx of third finger -http://purl.obolibrary.org/obo/UBERON_0004321;middle phalanx of manual digit 3;middle phalanx of 3rd digit of hand -http://purl.obolibrary.org/obo/UBERON_0004321;middle phalanx of manual digit 3;middle phalanx of 3rd finger -http://purl.obolibrary.org/obo/UBERON_0004321;middle phalanx of manual digit 3;middle phalanx of manual digit III -http://purl.obolibrary.org/obo/UBERON_0004321;middle phalanx of manual digit 3;middle phalanx of middle finger -http://purl.obolibrary.org/obo/UBERON_0004321;middle phalanx of manual digit 3;middle phalanx of third digit of hand -http://purl.obolibrary.org/obo/UBERON_0004321;middle phalanx of manual digit 3;middle phalanx of third finger -http://purl.obolibrary.org/obo/UBERON_0004321;middle phalanx of manual digit 3;third finger intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0004321;middle phalanx of manual digit 3;third finger middle phalanx -http://purl.obolibrary.org/obo/UBERON_0004321;middle phalanx of manual digit 3;third middle phalanx of hand -http://purl.obolibrary.org/obo/UBERON_0004322;middle phalanx of manual digit 4;4th digit of hand intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0004322;middle phalanx of manual digit 4;4th digit of hand middle phalanx -http://purl.obolibrary.org/obo/UBERON_0004322;middle phalanx of manual digit 4;4th finger intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0004322;middle phalanx of manual digit 4;4th finger middle phalanx -http://purl.obolibrary.org/obo/UBERON_0004322;middle phalanx of manual digit 4;fourth finger intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0004322;middle phalanx of manual digit 4;fourth finger middle phalanx -http://purl.obolibrary.org/obo/UBERON_0004322;middle phalanx of manual digit 4;fourth middle phalanx of hand -http://purl.obolibrary.org/obo/UBERON_0004322;middle phalanx of manual digit 4;hand digit 4 intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0004322;middle phalanx of manual digit 4;hand digit 4 middle phalanx -http://purl.obolibrary.org/obo/UBERON_0004322;middle phalanx of manual digit 4;intermediate phalanx of 4th digit of hand -http://purl.obolibrary.org/obo/UBERON_0004322;middle phalanx of manual digit 4;intermediate phalanx of 4th finger -http://purl.obolibrary.org/obo/UBERON_0004322;middle phalanx of manual digit 4;intermediate phalanx of fourth finger -http://purl.obolibrary.org/obo/UBERON_0004322;middle phalanx of manual digit 4;intermediate phalanx of hand digit 4 -http://purl.obolibrary.org/obo/UBERON_0004322;middle phalanx of manual digit 4;middle phalanx of 4th digit of hand -http://purl.obolibrary.org/obo/UBERON_0004322;middle phalanx of manual digit 4;middle phalanx of 4th finger -http://purl.obolibrary.org/obo/UBERON_0004322;middle phalanx of manual digit 4;middle phalanx of fourth digit of hand -http://purl.obolibrary.org/obo/UBERON_0004322;middle phalanx of manual digit 4;middle phalanx of fourth finger -http://purl.obolibrary.org/obo/UBERON_0004322;middle phalanx of manual digit 4;middle phalanx of manual digit IV -http://purl.obolibrary.org/obo/UBERON_0004322;middle phalanx of manual digit 4;middle phalanx of ring finger -http://purl.obolibrary.org/obo/UBERON_0004323;middle phalanx of manual digit 5;5th digit of hand intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0004323;middle phalanx of manual digit 5;5th digit of hand middle phalanx -http://purl.obolibrary.org/obo/UBERON_0004323;middle phalanx of manual digit 5;5th finger intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0004323;middle phalanx of manual digit 5;5th finger middle phalanx -http://purl.obolibrary.org/obo/UBERON_0004323;middle phalanx of manual digit 5;fifth finger intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0004323;middle phalanx of manual digit 5;fifth finger middle phalanx -http://purl.obolibrary.org/obo/UBERON_0004323;middle phalanx of manual digit 5;fifth middle phalanx of hand -http://purl.obolibrary.org/obo/UBERON_0004323;middle phalanx of manual digit 5;hand digit 5 intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0004323;middle phalanx of manual digit 5;hand digit 5 middle phalanx -http://purl.obolibrary.org/obo/UBERON_0004323;middle phalanx of manual digit 5;intermediate phalanx of 5th digit of hand -http://purl.obolibrary.org/obo/UBERON_0004323;middle phalanx of manual digit 5;intermediate phalanx of 5th finger -http://purl.obolibrary.org/obo/UBERON_0004323;middle phalanx of manual digit 5;intermediate phalanx of fifth finger -http://purl.obolibrary.org/obo/UBERON_0004323;middle phalanx of manual digit 5;intermediate phalanx of hand digit 5 -http://purl.obolibrary.org/obo/UBERON_0004323;middle phalanx of manual digit 5;middle phalanx of 5th digit of hand -http://purl.obolibrary.org/obo/UBERON_0004323;middle phalanx of manual digit 5;middle phalanx of 5th finger -http://purl.obolibrary.org/obo/UBERON_0004323;middle phalanx of manual digit 5;middle phalanx of fifth digit of hand -http://purl.obolibrary.org/obo/UBERON_0004323;middle phalanx of manual digit 5;middle phalanx of fifth finger -http://purl.obolibrary.org/obo/UBERON_0004323;middle phalanx of manual digit 5;middle phalanx of little finger -http://purl.obolibrary.org/obo/UBERON_0004323;middle phalanx of manual digit 5;middle phalanx of manual digit V -http://purl.obolibrary.org/obo/UBERON_0004324;middle phalanx of pedal digit 2;2nd toe intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0004324;middle phalanx of pedal digit 2;2nd toe middle phalanx -http://purl.obolibrary.org/obo/UBERON_0004324;middle phalanx of pedal digit 2;foot digit 2 intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0004324;middle phalanx of pedal digit 2;foot digit 2 middle phalanx -http://purl.obolibrary.org/obo/UBERON_0004324;middle phalanx of pedal digit 2;intermediate phalanx of 2nd toe -http://purl.obolibrary.org/obo/UBERON_0004324;middle phalanx of pedal digit 2;intermediate phalanx of foot digit 2 -http://purl.obolibrary.org/obo/UBERON_0004324;middle phalanx of pedal digit 2;middle phalanx of 2nd toe -http://purl.obolibrary.org/obo/UBERON_0004324;middle phalanx of pedal digit 2;middle phalanx of foot digit 2 -http://purl.obolibrary.org/obo/UBERON_0004324;middle phalanx of pedal digit 2;middle phalanx of pedal digit II -http://purl.obolibrary.org/obo/UBERON_0004324;middle phalanx of pedal digit 2;middle phalanx of second digit of foot -http://purl.obolibrary.org/obo/UBERON_0004324;middle phalanx of pedal digit 2;middle phalanx of second toe -http://purl.obolibrary.org/obo/UBERON_0004324;middle phalanx of pedal digit 2;middle phalanx of the 2nd toe -http://purl.obolibrary.org/obo/UBERON_0004324;middle phalanx of pedal digit 2;second middle phalanx of foot -http://purl.obolibrary.org/obo/UBERON_0004325;middle phalanx of pedal digit 3;3rd toe intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0004325;middle phalanx of pedal digit 3;3rd toe middle phalanx -http://purl.obolibrary.org/obo/UBERON_0004325;middle phalanx of pedal digit 3;foot digit 3 intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0004325;middle phalanx of pedal digit 3;foot digit 3 middle phalanx -http://purl.obolibrary.org/obo/UBERON_0004325;middle phalanx of pedal digit 3;hindlimb digit III P2 -http://purl.obolibrary.org/obo/UBERON_0004325;middle phalanx of pedal digit 3;intermediate phalanx of 3rd toe -http://purl.obolibrary.org/obo/UBERON_0004325;middle phalanx of pedal digit 3;intermediate phalanx of foot digit 3 -http://purl.obolibrary.org/obo/UBERON_0004325;middle phalanx of pedal digit 3;middle phalanx of 3rd toe -http://purl.obolibrary.org/obo/UBERON_0004325;middle phalanx of pedal digit 3;middle phalanx of foot digit 3 -http://purl.obolibrary.org/obo/UBERON_0004325;middle phalanx of pedal digit 3;middle phalanx of pedal digit III -http://purl.obolibrary.org/obo/UBERON_0004325;middle phalanx of pedal digit 3;middle phalanx of the 3rd toe -http://purl.obolibrary.org/obo/UBERON_0004325;middle phalanx of pedal digit 3;middle phalanx of third digit of foot -http://purl.obolibrary.org/obo/UBERON_0004325;middle phalanx of pedal digit 3;middle phalanx of third toe -http://purl.obolibrary.org/obo/UBERON_0004325;middle phalanx of pedal digit 3;third middle phalanx of foot -http://purl.obolibrary.org/obo/UBERON_0004326;middle phalanx of pedal digit 4;4th toe intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0004326;middle phalanx of pedal digit 4;4th toe middle phalanx -http://purl.obolibrary.org/obo/UBERON_0004326;middle phalanx of pedal digit 4;foot digit 4 intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0004326;middle phalanx of pedal digit 4;foot digit 4 middle phalanx -http://purl.obolibrary.org/obo/UBERON_0004326;middle phalanx of pedal digit 4;fourth middle phalanx of foot -http://purl.obolibrary.org/obo/UBERON_0004326;middle phalanx of pedal digit 4;intermediate phalanx of 4th toe -http://purl.obolibrary.org/obo/UBERON_0004326;middle phalanx of pedal digit 4;intermediate phalanx of foot digit 4 -http://purl.obolibrary.org/obo/UBERON_0004326;middle phalanx of pedal digit 4;middle phalanx of 4th toe -http://purl.obolibrary.org/obo/UBERON_0004326;middle phalanx of pedal digit 4;middle phalanx of foot digit 4 -http://purl.obolibrary.org/obo/UBERON_0004326;middle phalanx of pedal digit 4;middle phalanx of fourth digit of foot -http://purl.obolibrary.org/obo/UBERON_0004326;middle phalanx of pedal digit 4;middle phalanx of fourth toe -http://purl.obolibrary.org/obo/UBERON_0004326;middle phalanx of pedal digit 4;middle phalanx of pedal digit IV -http://purl.obolibrary.org/obo/UBERON_0004326;middle phalanx of pedal digit 4;middle phalanx of the 4th toe -http://purl.obolibrary.org/obo/UBERON_0004327;middle phalanx of pedal digit 5;5th toe intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0004327;middle phalanx of pedal digit 5;5th toe middle phalanx -http://purl.obolibrary.org/obo/UBERON_0004327;middle phalanx of pedal digit 5;foot digit 5 intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0004327;middle phalanx of pedal digit 5;foot digit 5 middle phalanx -http://purl.obolibrary.org/obo/UBERON_0004327;middle phalanx of pedal digit 5;intermediate phalanx of 5th toe -http://purl.obolibrary.org/obo/UBERON_0004327;middle phalanx of pedal digit 5;intermediate phalanx of foot digit 5 -http://purl.obolibrary.org/obo/UBERON_0004327;middle phalanx of pedal digit 5;middle phalanx of 5th toe -http://purl.obolibrary.org/obo/UBERON_0004327;middle phalanx of pedal digit 5;middle phalanx of foot digit 5 -http://purl.obolibrary.org/obo/UBERON_0004327;middle phalanx of pedal digit 5;middle phalanx of little toe -http://purl.obolibrary.org/obo/UBERON_0004327;middle phalanx of pedal digit 5;middle phalanx of pedal digit V -http://purl.obolibrary.org/obo/UBERON_0004327;middle phalanx of pedal digit 5;middle phalanx of the 5th toe -http://purl.obolibrary.org/obo/UBERON_0004328;proximal phalanx of manual digit 2;2nd digit of hand proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0004328;proximal phalanx of manual digit 2;2nd finger proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0004328;proximal phalanx of manual digit 2;hand digit 2 proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0004328;proximal phalanx of manual digit 2;manual digit 2 proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0004328;proximal phalanx of manual digit 2;manual phalanx II-1 -http://purl.obolibrary.org/obo/UBERON_0004328;proximal phalanx of manual digit 2;proximal phalanx of 2nd digit of hand -http://purl.obolibrary.org/obo/UBERON_0004328;proximal phalanx of manual digit 2;proximal phalanx of 2nd finger -http://purl.obolibrary.org/obo/UBERON_0004328;proximal phalanx of manual digit 2;proximal phalanx of index finger -http://purl.obolibrary.org/obo/UBERON_0004328;proximal phalanx of manual digit 2;proximal phalanx of manual digit II -http://purl.obolibrary.org/obo/UBERON_0004328;proximal phalanx of manual digit 2;proximal phalanx of second digit of hand -http://purl.obolibrary.org/obo/UBERON_0004328;proximal phalanx of manual digit 2;proximal phalanx of second finger -http://purl.obolibrary.org/obo/UBERON_0004328;proximal phalanx of manual digit 2;second finger proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0004328;proximal phalanx of manual digit 2;second proximal phalanx of hand -http://purl.obolibrary.org/obo/UBERON_0004329;proximal phalanx of manual digit 3;3rd digit of hand proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0004329;proximal phalanx of manual digit 3;3rd finger proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0004329;proximal phalanx of manual digit 3;hand digit 3 proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0004329;proximal phalanx of manual digit 3;manual digit 3 proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0004329;proximal phalanx of manual digit 3;manual phalanx III-1 -http://purl.obolibrary.org/obo/UBERON_0004329;proximal phalanx of manual digit 3;proximal phalanx of 3rd digit of hand -http://purl.obolibrary.org/obo/UBERON_0004329;proximal phalanx of manual digit 3;proximal phalanx of 3rd finger -http://purl.obolibrary.org/obo/UBERON_0004329;proximal phalanx of manual digit 3;proximal phalanx of manual digit III -http://purl.obolibrary.org/obo/UBERON_0004329;proximal phalanx of manual digit 3;proximal phalanx of middle finger -http://purl.obolibrary.org/obo/UBERON_0004329;proximal phalanx of manual digit 3;proximal phalanx of third digit of hand -http://purl.obolibrary.org/obo/UBERON_0004329;proximal phalanx of manual digit 3;proximal phalanx of third finger -http://purl.obolibrary.org/obo/UBERON_0004329;proximal phalanx of manual digit 3;third finger proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0004329;proximal phalanx of manual digit 3;third proximal phalanx of hand -http://purl.obolibrary.org/obo/UBERON_0004330;proximal phalanx of manual digit 4;4th digit of hand proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0004330;proximal phalanx of manual digit 4;4th finger proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0004330;proximal phalanx of manual digit 4;fourth finger proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0004330;proximal phalanx of manual digit 4;fourth proximal phalanx of hand -http://purl.obolibrary.org/obo/UBERON_0004330;proximal phalanx of manual digit 4;hand digit 4 proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0004330;proximal phalanx of manual digit 4;manual digit 4 proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0004330;proximal phalanx of manual digit 4;manual phalanx IV-1 -http://purl.obolibrary.org/obo/UBERON_0004330;proximal phalanx of manual digit 4;proximal phalanx of 4th digit of hand -http://purl.obolibrary.org/obo/UBERON_0004330;proximal phalanx of manual digit 4;proximal phalanx of 4th finger -http://purl.obolibrary.org/obo/UBERON_0004330;proximal phalanx of manual digit 4;proximal phalanx of fourth digit of hand -http://purl.obolibrary.org/obo/UBERON_0004330;proximal phalanx of manual digit 4;proximal phalanx of fourth finger -http://purl.obolibrary.org/obo/UBERON_0004330;proximal phalanx of manual digit 4;proximal phalanx of manual digit IV -http://purl.obolibrary.org/obo/UBERON_0004330;proximal phalanx of manual digit 4;proximal phalanx of ring finger -http://purl.obolibrary.org/obo/UBERON_0004331;proximal phalanx of manual digit 5;5th digit of hand proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0004331;proximal phalanx of manual digit 5;5th finger proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0004331;proximal phalanx of manual digit 5;fifth finger proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0004331;proximal phalanx of manual digit 5;fifth proximal phalanx of hand -http://purl.obolibrary.org/obo/UBERON_0004331;proximal phalanx of manual digit 5;hand digit 5 proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0004331;proximal phalanx of manual digit 5;manual digit 5 proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0004331;proximal phalanx of manual digit 5;manual phalanx V-1 -http://purl.obolibrary.org/obo/UBERON_0004331;proximal phalanx of manual digit 5;proximal phalanx of 5th digit of hand -http://purl.obolibrary.org/obo/UBERON_0004331;proximal phalanx of manual digit 5;proximal phalanx of 5th finger -http://purl.obolibrary.org/obo/UBERON_0004331;proximal phalanx of manual digit 5;proximal phalanx of fifth digit of hand -http://purl.obolibrary.org/obo/UBERON_0004331;proximal phalanx of manual digit 5;proximal phalanx of fifth finger -http://purl.obolibrary.org/obo/UBERON_0004331;proximal phalanx of manual digit 5;proximal phalanx of little finger -http://purl.obolibrary.org/obo/UBERON_0004331;proximal phalanx of manual digit 5;proximal phalanx of manual digit V -http://purl.obolibrary.org/obo/UBERON_0004332;proximal phalanx of pedal digit 1;foot digit 1 proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0004332;proximal phalanx of pedal digit 1;hallux proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0004332;proximal phalanx of pedal digit 1;pedal phalanx I-1 -http://purl.obolibrary.org/obo/UBERON_0004332;proximal phalanx of pedal digit 1;predal digit 1 proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0004332;proximal phalanx of pedal digit 1;proximal phalanx of big toe -http://purl.obolibrary.org/obo/UBERON_0004332;proximal phalanx of pedal digit 1;proximal phalanx of foot digit 1 -http://purl.obolibrary.org/obo/UBERON_0004332;proximal phalanx of pedal digit 1;proximal phalanx of great toe -http://purl.obolibrary.org/obo/UBERON_0004332;proximal phalanx of pedal digit 1;proximal phalanx of hallux -http://purl.obolibrary.org/obo/UBERON_0004332;proximal phalanx of pedal digit 1;proximal phalanx of pedal digit I -http://purl.obolibrary.org/obo/UBERON_0004332;proximal phalanx of pedal digit 1;proximal phalanx of the 1st toe -http://purl.obolibrary.org/obo/UBERON_0004333;proximal phalanx of pedal digit 2;2nd toe proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0004333;proximal phalanx of pedal digit 2;foot digit 2 proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0004333;proximal phalanx of pedal digit 2;pedal phalanx II-1 -http://purl.obolibrary.org/obo/UBERON_0004333;proximal phalanx of pedal digit 2;predal digit 2 proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0004333;proximal phalanx of pedal digit 2;proximal phalanx of 2nd toe -http://purl.obolibrary.org/obo/UBERON_0004333;proximal phalanx of pedal digit 2;proximal phalanx of foot digit 2 -http://purl.obolibrary.org/obo/UBERON_0004333;proximal phalanx of pedal digit 2;proximal phalanx of pedal digit II -http://purl.obolibrary.org/obo/UBERON_0004333;proximal phalanx of pedal digit 2;proximal phalanx of second digit of foot -http://purl.obolibrary.org/obo/UBERON_0004333;proximal phalanx of pedal digit 2;proximal phalanx of second toe -http://purl.obolibrary.org/obo/UBERON_0004333;proximal phalanx of pedal digit 2;proximal phalanx of the 2nd toe -http://purl.obolibrary.org/obo/UBERON_0004333;proximal phalanx of pedal digit 2;second proximal phalanx of foot -http://purl.obolibrary.org/obo/UBERON_0004334;proximal phalanx of pedal digit 3;3rd toe proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0004334;proximal phalanx of pedal digit 3;foot digit 3 proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0004334;proximal phalanx of pedal digit 3;pedal phalanx III-1 -http://purl.obolibrary.org/obo/UBERON_0004334;proximal phalanx of pedal digit 3;predal digit 3 proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0004334;proximal phalanx of pedal digit 3;proximal phalanx of 3rd toe -http://purl.obolibrary.org/obo/UBERON_0004334;proximal phalanx of pedal digit 3;proximal phalanx of foot digit 3 -http://purl.obolibrary.org/obo/UBERON_0004334;proximal phalanx of pedal digit 3;proximal phalanx of pedal digit III -http://purl.obolibrary.org/obo/UBERON_0004334;proximal phalanx of pedal digit 3;proximal phalanx of the 3rd toe -http://purl.obolibrary.org/obo/UBERON_0004334;proximal phalanx of pedal digit 3;proximal phalanx of third digit of foot -http://purl.obolibrary.org/obo/UBERON_0004334;proximal phalanx of pedal digit 3;proximal phalanx of third toe -http://purl.obolibrary.org/obo/UBERON_0004334;proximal phalanx of pedal digit 3;third proximal phalanx of foot -http://purl.obolibrary.org/obo/UBERON_0004335;proximal phalanx of pedal digit 4;4th toe proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0004335;proximal phalanx of pedal digit 4;foot digit 4 proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0004335;proximal phalanx of pedal digit 4;fourth proximal phalanx of foot -http://purl.obolibrary.org/obo/UBERON_0004335;proximal phalanx of pedal digit 4;pedal phalanx IV-1 -http://purl.obolibrary.org/obo/UBERON_0004335;proximal phalanx of pedal digit 4;predal digit 4 proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0004335;proximal phalanx of pedal digit 4;proximal phalanx of 4th toe -http://purl.obolibrary.org/obo/UBERON_0004335;proximal phalanx of pedal digit 4;proximal phalanx of foot digit 4 -http://purl.obolibrary.org/obo/UBERON_0004335;proximal phalanx of pedal digit 4;proximal phalanx of fourth digit of foot -http://purl.obolibrary.org/obo/UBERON_0004335;proximal phalanx of pedal digit 4;proximal phalanx of fourth toe -http://purl.obolibrary.org/obo/UBERON_0004335;proximal phalanx of pedal digit 4;proximal phalanx of pedal digit IV -http://purl.obolibrary.org/obo/UBERON_0004335;proximal phalanx of pedal digit 4;proximal phalanx of the 4th toe -http://purl.obolibrary.org/obo/UBERON_0004336;proximal phalanx of pedal digit 5;5th toe proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0004336;proximal phalanx of pedal digit 5;fifth proximal phalanx of foot -http://purl.obolibrary.org/obo/UBERON_0004336;proximal phalanx of pedal digit 5;foot digit 5 proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0004336;proximal phalanx of pedal digit 5;pedal phalanx V-1 -http://purl.obolibrary.org/obo/UBERON_0004336;proximal phalanx of pedal digit 5;predal digit 5 proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0004336;proximal phalanx of pedal digit 5;proximal phalanx of 5th toe -http://purl.obolibrary.org/obo/UBERON_0004336;proximal phalanx of pedal digit 5;proximal phalanx of fifth digit of foot -http://purl.obolibrary.org/obo/UBERON_0004336;proximal phalanx of pedal digit 5;proximal phalanx of fifth toe -http://purl.obolibrary.org/obo/UBERON_0004336;proximal phalanx of pedal digit 5;proximal phalanx of foot digit 5 -http://purl.obolibrary.org/obo/UBERON_0004336;proximal phalanx of pedal digit 5;proximal phalanx of little toe -http://purl.obolibrary.org/obo/UBERON_0004336;proximal phalanx of pedal digit 5;proximal phalanx of pedal digit V -http://purl.obolibrary.org/obo/UBERON_0004336;proximal phalanx of pedal digit 5;proximal phalanx of the 5th toe -http://purl.obolibrary.org/obo/UBERON_0004337;distal phalanx of manual digit 1;PDP -http://purl.obolibrary.org/obo/UBERON_0004337;distal phalanx of manual digit 1;distal phalanx of first digit of hand -http://purl.obolibrary.org/obo/UBERON_0004337;distal phalanx of manual digit 1;distal phalanx of manual digit I -http://purl.obolibrary.org/obo/UBERON_0004337;distal phalanx of manual digit 1;distal phalanx of thumb -http://purl.obolibrary.org/obo/UBERON_0004337;distal phalanx of manual digit 1;first distal phalanx of hand -http://purl.obolibrary.org/obo/UBERON_0004337;distal phalanx of manual digit 1;manual digit 1 distal phalanx -http://purl.obolibrary.org/obo/UBERON_0004337;distal phalanx of manual digit 1;pollical distal phalanx -http://purl.obolibrary.org/obo/UBERON_0004337;distal phalanx of manual digit 1;thumb distal phalanx -http://purl.obolibrary.org/obo/UBERON_0004338;proximal phalanx of manual digit 1;first proximal phalanx of hand -http://purl.obolibrary.org/obo/UBERON_0004338;proximal phalanx of manual digit 1;manual digit 1 proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0004338;proximal phalanx of manual digit 1;manual phalanx I-1 -http://purl.obolibrary.org/obo/UBERON_0004338;proximal phalanx of manual digit 1;proximal phalanx of first digit of hand -http://purl.obolibrary.org/obo/UBERON_0004338;proximal phalanx of manual digit 1;proximal phalanx of manual digit I -http://purl.obolibrary.org/obo/UBERON_0004338;proximal phalanx of manual digit 1;proximal phalanx of thumb -http://purl.obolibrary.org/obo/UBERON_0004338;proximal phalanx of manual digit 1;thumb proximal -http://purl.obolibrary.org/obo/UBERON_0004339;vault of skull;calva -http://purl.obolibrary.org/obo/UBERON_0004339;vault of skull;cranial vault -http://purl.obolibrary.org/obo/UBERON_0004339;vault of skull;skull vault -http://purl.obolibrary.org/obo/UBERON_0004340;allantois; -http://purl.obolibrary.org/obo/UBERON_0004341;primitive streak;primitive streak - blastopore - germ ring -http://purl.obolibrary.org/obo/UBERON_0004344;cardinal vein; -http://purl.obolibrary.org/obo/UBERON_0004345;trophectoderm; -http://purl.obolibrary.org/obo/UBERON_0004346;gubernaculum (male or female);gubernaculum -http://purl.obolibrary.org/obo/UBERON_0004347;limb bud;limb buds -http://purl.obolibrary.org/obo/UBERON_0004347;limb bud;limbbud -http://purl.obolibrary.org/obo/UBERON_0004348;optic eminence; -http://purl.obolibrary.org/obo/UBERON_0004353;female inguinal canal;inguinal canal of female -http://purl.obolibrary.org/obo/UBERON_0004354;male inguinal canal;inguinal canal of male -http://purl.obolibrary.org/obo/UBERON_0004356;apical ectodermal ridge;apical epidermal ridge -http://purl.obolibrary.org/obo/UBERON_0004357;paired limb/fin bud;limb - fin bud -http://purl.obolibrary.org/obo/UBERON_0004357;paired limb/fin bud;paired appendage bud -http://purl.obolibrary.org/obo/UBERON_0004357;paired limb/fin bud;paired limb/fin bud -http://purl.obolibrary.org/obo/UBERON_0004358;caput epididymis;epididymal head -http://purl.obolibrary.org/obo/UBERON_0004358;caput epididymis;epididymis head -http://purl.obolibrary.org/obo/UBERON_0004358;caput epididymis;epidymis head -http://purl.obolibrary.org/obo/UBERON_0004358;caput epididymis;head of epididymis -http://purl.obolibrary.org/obo/UBERON_0004358;caput epididymis;head of epidymis -http://purl.obolibrary.org/obo/UBERON_0004359;corpus epididymis;body of epididymis -http://purl.obolibrary.org/obo/UBERON_0004359;corpus epididymis;body of epidymis -http://purl.obolibrary.org/obo/UBERON_0004359;corpus epididymis;epididymal body -http://purl.obolibrary.org/obo/UBERON_0004359;corpus epididymis;epididymis body -http://purl.obolibrary.org/obo/UBERON_0004359;corpus epididymis;epidymis body -http://purl.obolibrary.org/obo/UBERON_0004360;cauda epididymis;cauda epididymidis -http://purl.obolibrary.org/obo/UBERON_0004360;cauda epididymis;epididymal cauda -http://purl.obolibrary.org/obo/UBERON_0004360;cauda epididymis;epididymal tail -http://purl.obolibrary.org/obo/UBERON_0004360;cauda epididymis;epididymis tail -http://purl.obolibrary.org/obo/UBERON_0004360;cauda epididymis;epidymis tail -http://purl.obolibrary.org/obo/UBERON_0004360;cauda epididymis;tail of epididymis -http://purl.obolibrary.org/obo/UBERON_0004360;cauda epididymis;tail of epidymis -http://purl.obolibrary.org/obo/UBERON_0004361;stylohyoid ligament;ligamentum stylohyoideum -http://purl.obolibrary.org/obo/UBERON_0004361;stylohyoid ligament;ligamentum stylohyoideus -http://purl.obolibrary.org/obo/UBERON_0004361;stylohyoid ligament;stylo-hyoid ligament -http://purl.obolibrary.org/obo/UBERON_0004362;pharyngeal arch 1;1st pharyngeal arch -http://purl.obolibrary.org/obo/UBERON_0004362;pharyngeal arch 1;branchial arch 1 -http://purl.obolibrary.org/obo/UBERON_0004362;pharyngeal arch 1;first branchial arch -http://purl.obolibrary.org/obo/UBERON_0004362;pharyngeal arch 1;first pharyngeal arch -http://purl.obolibrary.org/obo/UBERON_0004362;pharyngeal arch 1;first visceral arch -http://purl.obolibrary.org/obo/UBERON_0004362;pharyngeal arch 1;mandibular arch -http://purl.obolibrary.org/obo/UBERON_0004362;pharyngeal arch 1;visceral arch 1 -http://purl.obolibrary.org/obo/UBERON_0004363;pharyngeal arch artery;PAA -http://purl.obolibrary.org/obo/UBERON_0004363;pharyngeal arch artery;aortic arch -http://purl.obolibrary.org/obo/UBERON_0004363;pharyngeal arch artery;aortic arches -http://purl.obolibrary.org/obo/UBERON_0004363;pharyngeal arch artery;branchial aortic arches -http://purl.obolibrary.org/obo/UBERON_0004363;pharyngeal arch artery;branchial arch artery -http://purl.obolibrary.org/obo/UBERON_0004363;pharyngeal arch artery;embryonic aortic arch artery -http://purl.obolibrary.org/obo/UBERON_0004363;pharyngeal arch artery;pharyngeal arch artery -http://purl.obolibrary.org/obo/UBERON_0004364;ectoplacental cone;epamniotic cone -http://purl.obolibrary.org/obo/UBERON_0004364;ectoplacental cone;placenta - ectoplacental cone -http://purl.obolibrary.org/obo/UBERON_0004365;vitelline blood vessel; -http://purl.obolibrary.org/obo/UBERON_0004366;extraembryonic ectoderm; -http://purl.obolibrary.org/obo/UBERON_0004367;Descemet's membrane;Descemet membrane -http://purl.obolibrary.org/obo/UBERON_0004367;Descemet's membrane;Descemet's posterior elastic lamina -http://purl.obolibrary.org/obo/UBERON_0004367;Descemet's membrane;lamina limitans posterior -http://purl.obolibrary.org/obo/UBERON_0004367;Descemet's membrane;lamina limitans posterior corneae -http://purl.obolibrary.org/obo/UBERON_0004367;Descemet's membrane;posterior limiting lamina -http://purl.obolibrary.org/obo/UBERON_0004367;Descemet's membrane;posterior limiting lamina of cornea -http://purl.obolibrary.org/obo/UBERON_0004367;Descemet's membrane;posterior limiting membrane -http://purl.obolibrary.org/obo/UBERON_0004368;Reichert's cartilage;Reichert cartilage -http://purl.obolibrary.org/obo/UBERON_0004368;Reichert's cartilage;hyaloid cartilage -http://purl.obolibrary.org/obo/UBERON_0004368;Reichert's cartilage;hyoid cartilage -http://purl.obolibrary.org/obo/UBERON_0004368;Reichert's cartilage;second branchial arch cartilage -http://purl.obolibrary.org/obo/UBERON_0004368;Reichert's cartilage;second pharyngeal arch cartilage -http://purl.obolibrary.org/obo/UBERON_0004369;Reichert's membrane; -http://purl.obolibrary.org/obo/UBERON_0004370;anterior limiting lamina of cornea;Bowman's anterior elastic lamina -http://purl.obolibrary.org/obo/UBERON_0004370;anterior limiting lamina of cornea;Bowman's layer -http://purl.obolibrary.org/obo/UBERON_0004370;anterior limiting lamina of cornea;Bowman's membrane -http://purl.obolibrary.org/obo/UBERON_0004370;anterior limiting lamina of cornea;anterior elastic lamina -http://purl.obolibrary.org/obo/UBERON_0004370;anterior limiting lamina of cornea;anterior limiting lamina -http://purl.obolibrary.org/obo/UBERON_0004370;anterior limiting lamina of cornea;anterior limiting lamina of cornea -http://purl.obolibrary.org/obo/UBERON_0004370;anterior limiting lamina of cornea;lamina limitans anterior (cornea) -http://purl.obolibrary.org/obo/UBERON_0004370;anterior limiting lamina of cornea;lamina limitans anterior corneae -http://purl.obolibrary.org/obo/UBERON_0004374;vitelline vasculature; -http://purl.obolibrary.org/obo/UBERON_0004375;bone of free limb or fin;appendage bone -http://purl.obolibrary.org/obo/UBERON_0004375;bone of free limb or fin;bone of appendage -http://purl.obolibrary.org/obo/UBERON_0004375;bone of free limb or fin;bone of free segment of appendicular skeleton -http://purl.obolibrary.org/obo/UBERON_0004376;fin bone;bone of fin -http://purl.obolibrary.org/obo/UBERON_0004377;distal metaphysis;distal diaphyseal end of long bone -http://purl.obolibrary.org/obo/UBERON_0004378;proximal metaphysis;proximal diaphyseal end of long bone -http://purl.obolibrary.org/obo/UBERON_0004379;distal epiphysis;distal end of long bone -http://purl.obolibrary.org/obo/UBERON_0004380;proximal epiphysis;proximal end of long bone -http://purl.obolibrary.org/obo/UBERON_0004381;skeleton of limb;free limb skeleton -http://purl.obolibrary.org/obo/UBERON_0004381;skeleton of limb;limb skeleton -http://purl.obolibrary.org/obo/UBERON_0004381;skeleton of limb;set of bones of limb -http://purl.obolibrary.org/obo/UBERON_0004382;epiphysis of humerus;humeral epiphysis -http://purl.obolibrary.org/obo/UBERON_0004383;epiphysis of tibia;tibial epiphysis -http://purl.obolibrary.org/obo/UBERON_0004384;epiphysis of femur;femoral epiphysis -http://purl.obolibrary.org/obo/UBERON_0004385;epiphysis of radius;radial epiphysis -http://purl.obolibrary.org/obo/UBERON_0004386;epiphysis of ulna;ulnar epiphysis -http://purl.obolibrary.org/obo/UBERON_0004387;epiphysis of phalanx of manus;epiphysis of phalanx of finger -http://purl.obolibrary.org/obo/UBERON_0004388;epiphysis of fibula;fibula epiphysis -http://purl.obolibrary.org/obo/UBERON_0004389;epiphysis of metatarsal bone;epiphysis of metatarsal -http://purl.obolibrary.org/obo/UBERON_0004389;epiphysis of metatarsal bone;metatarsal bone epiphysis -http://purl.obolibrary.org/obo/UBERON_0004389;epiphysis of metatarsal bone;metatarsal epiphysis -http://purl.obolibrary.org/obo/UBERON_0004390;epiphysis of metacarpal bone;epiphysis of metacarpal -http://purl.obolibrary.org/obo/UBERON_0004390;epiphysis of metacarpal bone;metacarpal bone epiphysis -http://purl.obolibrary.org/obo/UBERON_0004390;epiphysis of metacarpal bone;metacarpal epiphysis -http://purl.obolibrary.org/obo/UBERON_0004391;epiphysis of first metacarpal bone;first metacarpal bone epiphysis -http://purl.obolibrary.org/obo/UBERON_0004391;epiphysis of first metacarpal bone;metacarpal 1 epiphysis -http://purl.obolibrary.org/obo/UBERON_0004392;epiphysis of second metacarpal bone;metacarpal 2 epiphysis -http://purl.obolibrary.org/obo/UBERON_0004392;epiphysis of second metacarpal bone;second metacarpal bone epiphysis -http://purl.obolibrary.org/obo/UBERON_0004393;epiphysis of third metacarpal bone;metacarpal 3 epiphysis -http://purl.obolibrary.org/obo/UBERON_0004393;epiphysis of third metacarpal bone;third metacarpal bone epiphysis -http://purl.obolibrary.org/obo/UBERON_0004394;epiphysis of fourth metacarpal bone;fourth metacarpal bone epiphysis -http://purl.obolibrary.org/obo/UBERON_0004394;epiphysis of fourth metacarpal bone;metacarpal 4 epiphysis -http://purl.obolibrary.org/obo/UBERON_0004395;epiphysis of first metatarsal bone;first metatarsal bone epiphysis -http://purl.obolibrary.org/obo/UBERON_0004395;epiphysis of first metatarsal bone;metatarsal 1 epiphysis -http://purl.obolibrary.org/obo/UBERON_0004396;epiphysis of second metatarsal bone;metatarsal 2 epiphysis -http://purl.obolibrary.org/obo/UBERON_0004396;epiphysis of second metatarsal bone;second metatarsal bone epiphysis -http://purl.obolibrary.org/obo/UBERON_0004397;epiphysis of third metatarsal bone;metatarsal 3 epiphysis -http://purl.obolibrary.org/obo/UBERON_0004397;epiphysis of third metatarsal bone;third metatarsal bone epiphysis -http://purl.obolibrary.org/obo/UBERON_0004398;epiphysis of fourth metatarsal bone;fourth metatarsal bone epiphysis -http://purl.obolibrary.org/obo/UBERON_0004398;epiphysis of fourth metatarsal bone;metatarsal 4 epiphysis -http://purl.obolibrary.org/obo/UBERON_0004399;epiphysis of fifth metatarsal bone;fifth metatarsal bone epiphysis -http://purl.obolibrary.org/obo/UBERON_0004399;epiphysis of fifth metatarsal bone;metatarsal 5 epiphysis -http://purl.obolibrary.org/obo/UBERON_0004400;bone tissue of epiphysis; -http://purl.obolibrary.org/obo/UBERON_0004401;bone tissue of distal epiphysis; -http://purl.obolibrary.org/obo/UBERON_0004402;bone tissue of proximal epiphysis; -http://purl.obolibrary.org/obo/UBERON_0004403;periosteum of epiphysis;epiphysis periosteum -http://purl.obolibrary.org/obo/UBERON_0004404;distal epiphysis of humerus;distal end of humerus -http://purl.obolibrary.org/obo/UBERON_0004404;distal epiphysis of humerus;lower end of humerus -http://purl.obolibrary.org/obo/UBERON_0004405;distal epiphysis of tibia;distal end of tibia -http://purl.obolibrary.org/obo/UBERON_0004405;distal epiphysis of tibia;lower end of tibia -http://purl.obolibrary.org/obo/UBERON_0004406;distal epiphysis of femur;distal femoral epiphysis -http://purl.obolibrary.org/obo/UBERON_0004407;distal epiphysis of radius;distal end of radius -http://purl.obolibrary.org/obo/UBERON_0004407;distal epiphysis of radius;lower end of radius -http://purl.obolibrary.org/obo/UBERON_0004408;distal epiphysis of ulna;distal end of ulna -http://purl.obolibrary.org/obo/UBERON_0004408;distal epiphysis of ulna;lower end of ulna -http://purl.obolibrary.org/obo/UBERON_0004409;distal epiphysis of phalanx of manus;distal epiphysis of phalanx of finger -http://purl.obolibrary.org/obo/UBERON_0004410;distal epiphysis of fibula;distal end of fibula -http://purl.obolibrary.org/obo/UBERON_0004410;distal epiphysis of fibula;lower end of fibula -http://purl.obolibrary.org/obo/UBERON_0004411;proximal epiphysis of humerus;proximal end of humerus -http://purl.obolibrary.org/obo/UBERON_0004411;proximal epiphysis of humerus;proximal humeral epiphysis -http://purl.obolibrary.org/obo/UBERON_0004411;proximal epiphysis of humerus;upper end of humerus -http://purl.obolibrary.org/obo/UBERON_0004412;proximal epiphysis of femur;proximal femoral epiphysis -http://purl.obolibrary.org/obo/UBERON_0004413;proximal epiphysis of radius;proximal end of radius -http://purl.obolibrary.org/obo/UBERON_0004413;proximal epiphysis of radius;proximal radial epiphysis -http://purl.obolibrary.org/obo/UBERON_0004413;proximal epiphysis of radius;upper end of radius -http://purl.obolibrary.org/obo/UBERON_0004414;proximal epiphysis of phalanx of manus;basal epiphysis of phalanx of finger -http://purl.obolibrary.org/obo/UBERON_0004414;proximal epiphysis of phalanx of manus;base of phalanx of finger -http://purl.obolibrary.org/obo/UBERON_0004414;proximal epiphysis of phalanx of manus;basis phalangis manus -http://purl.obolibrary.org/obo/UBERON_0004414;proximal epiphysis of phalanx of manus;proximal epiphysis of phalanx of finger -http://purl.obolibrary.org/obo/UBERON_0004415;proximal epiphysis of metatarsal bone;base of metatarsal bone -http://purl.obolibrary.org/obo/UBERON_0004415;proximal epiphysis of metatarsal bone;basis ossis metatarsi -http://purl.obolibrary.org/obo/UBERON_0004415;proximal epiphysis of metatarsal bone;proximal end of metatarsal bone -http://purl.obolibrary.org/obo/UBERON_0004415;proximal epiphysis of metatarsal bone;upper end of metatarsal bone -http://purl.obolibrary.org/obo/UBERON_0004416;proximal epiphysis of metacarpal bone;base of metacarpal bone -http://purl.obolibrary.org/obo/UBERON_0004416;proximal epiphysis of metacarpal bone;basis ossis metacarpi -http://purl.obolibrary.org/obo/UBERON_0004416;proximal epiphysis of metacarpal bone;metacarpal bone base -http://purl.obolibrary.org/obo/UBERON_0004416;proximal epiphysis of metacarpal bone;proximal end of metacarpal bone -http://purl.obolibrary.org/obo/UBERON_0004416;proximal epiphysis of metacarpal bone;upper end of metacarpal bone -http://purl.obolibrary.org/obo/UBERON_0004417;proximal epiphysis of phalanx of manual digit 1;basal epiphysis of phalanx of thumb -http://purl.obolibrary.org/obo/UBERON_0004417;proximal epiphysis of phalanx of manual digit 1;base of phalanx of first digit of hand -http://purl.obolibrary.org/obo/UBERON_0004417;proximal epiphysis of phalanx of manual digit 1;base of phalanx of thumb -http://purl.obolibrary.org/obo/UBERON_0004417;proximal epiphysis of phalanx of manual digit 1;proximal epiphysis of phalanx of manual digit 1 -http://purl.obolibrary.org/obo/UBERON_0004417;proximal epiphysis of phalanx of manual digit 1;proximal epiphysis of phalanx of manual digit I -http://purl.obolibrary.org/obo/UBERON_0004418;proximal epiphysis of phalanx of manual digit 2;basal epiphysis of phalanx of index finger -http://purl.obolibrary.org/obo/UBERON_0004418;proximal epiphysis of phalanx of manual digit 2;base of phalanx of index finger -http://purl.obolibrary.org/obo/UBERON_0004418;proximal epiphysis of phalanx of manual digit 2;base of phalanx of second digit of hand -http://purl.obolibrary.org/obo/UBERON_0004418;proximal epiphysis of phalanx of manual digit 2;base of phalanx of second finger -http://purl.obolibrary.org/obo/UBERON_0004418;proximal epiphysis of phalanx of manual digit 2;proximal epiphysis of phalanx of manual digit 2 -http://purl.obolibrary.org/obo/UBERON_0004418;proximal epiphysis of phalanx of manual digit 2;proximal epiphysis of phalanx of manual digit II -http://purl.obolibrary.org/obo/UBERON_0004419;proximal epiphysis of phalanx of manual digit 3;basal epiphysis of phalanx of middle finger -http://purl.obolibrary.org/obo/UBERON_0004419;proximal epiphysis of phalanx of manual digit 3;base of phalanx of middle finger -http://purl.obolibrary.org/obo/UBERON_0004419;proximal epiphysis of phalanx of manual digit 3;base of phalanx of third digit of hand -http://purl.obolibrary.org/obo/UBERON_0004419;proximal epiphysis of phalanx of manual digit 3;base of phalanx of third finger -http://purl.obolibrary.org/obo/UBERON_0004419;proximal epiphysis of phalanx of manual digit 3;proximal epiphysis of phalanx of manual digit 3 -http://purl.obolibrary.org/obo/UBERON_0004419;proximal epiphysis of phalanx of manual digit 3;proximal epiphysis of phalanx of manual digit III -http://purl.obolibrary.org/obo/UBERON_0004420;proximal epiphysis of phalanx of manual digit 4;basal epiphysis of phalanx of ring finger -http://purl.obolibrary.org/obo/UBERON_0004420;proximal epiphysis of phalanx of manual digit 4;base of phalanx of fourth digit of hand -http://purl.obolibrary.org/obo/UBERON_0004420;proximal epiphysis of phalanx of manual digit 4;base of phalanx of fourth finger -http://purl.obolibrary.org/obo/UBERON_0004420;proximal epiphysis of phalanx of manual digit 4;base of phalanx of ring finger -http://purl.obolibrary.org/obo/UBERON_0004420;proximal epiphysis of phalanx of manual digit 4;proximal epiphysis of phalanx of manual digit 4 -http://purl.obolibrary.org/obo/UBERON_0004420;proximal epiphysis of phalanx of manual digit 4;proximal epiphysis of phalanx of manual digit IV -http://purl.obolibrary.org/obo/UBERON_0004421;proximal epiphysis of phalanx of manual digit 5;basal epiphysis of phalanx of fifth finger -http://purl.obolibrary.org/obo/UBERON_0004421;proximal epiphysis of phalanx of manual digit 5;basal epiphysis of phalanx of little finger -http://purl.obolibrary.org/obo/UBERON_0004421;proximal epiphysis of phalanx of manual digit 5;base of phalanx of fifth digit of hand -http://purl.obolibrary.org/obo/UBERON_0004421;proximal epiphysis of phalanx of manual digit 5;base of phalanx of fifth finger -http://purl.obolibrary.org/obo/UBERON_0004421;proximal epiphysis of phalanx of manual digit 5;base of phalanx of little finger -http://purl.obolibrary.org/obo/UBERON_0004421;proximal epiphysis of phalanx of manual digit 5;proximal epiphysis of phalanx of manual digit 5 -http://purl.obolibrary.org/obo/UBERON_0004421;proximal epiphysis of phalanx of manual digit 5;proximal epiphysis of phalanx of manual digit V -http://purl.obolibrary.org/obo/UBERON_0004422;proximal epiphysis of first metacarpal bone;base of first metacarpal bone -http://purl.obolibrary.org/obo/UBERON_0004422;proximal epiphysis of first metacarpal bone;first metacarpal bone base -http://purl.obolibrary.org/obo/UBERON_0004422;proximal epiphysis of first metacarpal bone;proximal epiphysis of metacarpal 1 -http://purl.obolibrary.org/obo/UBERON_0004423;proximal epiphysis of second metacarpal bone;base of second metacarpal bone -http://purl.obolibrary.org/obo/UBERON_0004423;proximal epiphysis of second metacarpal bone;proximal end of second metacarpal bone -http://purl.obolibrary.org/obo/UBERON_0004423;proximal epiphysis of second metacarpal bone;proximal epiphysis of metacarpal 2 -http://purl.obolibrary.org/obo/UBERON_0004423;proximal epiphysis of second metacarpal bone;second metacarpal bone base -http://purl.obolibrary.org/obo/UBERON_0004424;proximal epiphysis of third metacarpal bone;base of third metacarpal bone -http://purl.obolibrary.org/obo/UBERON_0004424;proximal epiphysis of third metacarpal bone;proximal end of third metacarpal bone -http://purl.obolibrary.org/obo/UBERON_0004424;proximal epiphysis of third metacarpal bone;proximal epiphysis of metacarpal 3 -http://purl.obolibrary.org/obo/UBERON_0004424;proximal epiphysis of third metacarpal bone;third metacarpal bone base -http://purl.obolibrary.org/obo/UBERON_0004425;proximal epiphysis of fourth metacarpal bone;base of fourth metacarpal bone -http://purl.obolibrary.org/obo/UBERON_0004425;proximal epiphysis of fourth metacarpal bone;fourth metacarpal bone base -http://purl.obolibrary.org/obo/UBERON_0004425;proximal epiphysis of fourth metacarpal bone;proximal end of fourth metacarpal bone -http://purl.obolibrary.org/obo/UBERON_0004425;proximal epiphysis of fourth metacarpal bone;proximal epiphysis of metacarpal 4 -http://purl.obolibrary.org/obo/UBERON_0004426;proximal epiphysis of fifth metacarpal bone;base of fifth metacarpal bone -http://purl.obolibrary.org/obo/UBERON_0004426;proximal epiphysis of fifth metacarpal bone;fifth metacarpal bone base -http://purl.obolibrary.org/obo/UBERON_0004426;proximal epiphysis of fifth metacarpal bone;proximal end of fifth metacarpal bone -http://purl.obolibrary.org/obo/UBERON_0004426;proximal epiphysis of fifth metacarpal bone;proximal epiphysis of metacarpal 5 -http://purl.obolibrary.org/obo/UBERON_0004427;proximal epiphysis of first metatarsal bone;base of first metatarsal bone -http://purl.obolibrary.org/obo/UBERON_0004427;proximal epiphysis of first metatarsal bone;proximal end of first metatarsal bone -http://purl.obolibrary.org/obo/UBERON_0004427;proximal epiphysis of first metatarsal bone;proximal epiphysis of metatarsal 1 -http://purl.obolibrary.org/obo/UBERON_0004428;proximal epiphysis of second metatarsal bone;base of second metatarsal bone -http://purl.obolibrary.org/obo/UBERON_0004428;proximal epiphysis of second metatarsal bone;proximal end of second metatarsal bone -http://purl.obolibrary.org/obo/UBERON_0004428;proximal epiphysis of second metatarsal bone;proximal epiphysis of metatarsal 2 -http://purl.obolibrary.org/obo/UBERON_0004429;proximal epiphysis of third metatarsal bone;base of third metatarsal bone -http://purl.obolibrary.org/obo/UBERON_0004429;proximal epiphysis of third metatarsal bone;proximal end of third metatarsal bone -http://purl.obolibrary.org/obo/UBERON_0004429;proximal epiphysis of third metatarsal bone;proximal epiphysis of metatarsal 3 -http://purl.obolibrary.org/obo/UBERON_0004430;proximal epiphysis of fourth metatarsal bone;base of fourth metatarsal bone -http://purl.obolibrary.org/obo/UBERON_0004430;proximal epiphysis of fourth metatarsal bone;proximal end of fourth metatarsal bone -http://purl.obolibrary.org/obo/UBERON_0004430;proximal epiphysis of fourth metatarsal bone;proximal epiphysis of metatarsal 4 -http://purl.obolibrary.org/obo/UBERON_0004431;proximal epiphysis of fifth metatarsal bone;base of fifth metatarsal bone -http://purl.obolibrary.org/obo/UBERON_0004431;proximal epiphysis of fifth metatarsal bone;proximal end of fifth metatarsal bone -http://purl.obolibrary.org/obo/UBERON_0004431;proximal epiphysis of fifth metatarsal bone;proximal epiphysis of metatarsal 5 -http://purl.obolibrary.org/obo/UBERON_0004432;proximal epiphysis of distal phalanx of manual digit 2;basal epiphysis of distal phalanx of index finger -http://purl.obolibrary.org/obo/UBERON_0004432;proximal epiphysis of distal phalanx of manual digit 2;base of distal phalanx of index finger -http://purl.obolibrary.org/obo/UBERON_0004432;proximal epiphysis of distal phalanx of manual digit 2;base of distal phalanx of second digit of hand -http://purl.obolibrary.org/obo/UBERON_0004432;proximal epiphysis of distal phalanx of manual digit 2;base of distal phalanx of second finger -http://purl.obolibrary.org/obo/UBERON_0004432;proximal epiphysis of distal phalanx of manual digit 2;proximal epiphysis of distal phalanx of manual digit II -http://purl.obolibrary.org/obo/UBERON_0004433;proximal epiphysis of distal phalanx of manual digit 3;base of distal phalanx of middle finger -http://purl.obolibrary.org/obo/UBERON_0004433;proximal epiphysis of distal phalanx of manual digit 3;base of distal phalanx of third digit of hand -http://purl.obolibrary.org/obo/UBERON_0004433;proximal epiphysis of distal phalanx of manual digit 3;base of distal phalanx of third finger -http://purl.obolibrary.org/obo/UBERON_0004433;proximal epiphysis of distal phalanx of manual digit 3;proximal epiphysis of distal phalanx of manual digit III -http://purl.obolibrary.org/obo/UBERON_0004434;proximal epiphysis of distal phalanx of manual digit 4;basal epiphysis of distal phalanx of fourth finger -http://purl.obolibrary.org/obo/UBERON_0004434;proximal epiphysis of distal phalanx of manual digit 4;basal epiphysis of distal phalanx of ring finger -http://purl.obolibrary.org/obo/UBERON_0004434;proximal epiphysis of distal phalanx of manual digit 4;base of distal phalanx of fourth digit of hand -http://purl.obolibrary.org/obo/UBERON_0004434;proximal epiphysis of distal phalanx of manual digit 4;base of distal phalanx of fourth finger -http://purl.obolibrary.org/obo/UBERON_0004434;proximal epiphysis of distal phalanx of manual digit 4;base of distal phalanx of ring finger -http://purl.obolibrary.org/obo/UBERON_0004434;proximal epiphysis of distal phalanx of manual digit 4;proximal epiphysis of distal phalanx of manual digit IV -http://purl.obolibrary.org/obo/UBERON_0004435;proximal epiphysis of distal phalanx of manual digit 5;basal epiphysis of distal phalanx of fifth finger -http://purl.obolibrary.org/obo/UBERON_0004435;proximal epiphysis of distal phalanx of manual digit 5;basal epiphysis of distal phalanx of little finger -http://purl.obolibrary.org/obo/UBERON_0004435;proximal epiphysis of distal phalanx of manual digit 5;base of distal phalanx of fifth digit of hand -http://purl.obolibrary.org/obo/UBERON_0004435;proximal epiphysis of distal phalanx of manual digit 5;base of distal phalanx of fifth finger -http://purl.obolibrary.org/obo/UBERON_0004435;proximal epiphysis of distal phalanx of manual digit 5;base of distal phalanx of little finger -http://purl.obolibrary.org/obo/UBERON_0004435;proximal epiphysis of distal phalanx of manual digit 5;proximal epiphysis of distal phalanx of manual digit V -http://purl.obolibrary.org/obo/UBERON_0004436;proximal epiphysis of middle phalanx of manual digit 2;basal epiphysis of middle phalanx of index finger -http://purl.obolibrary.org/obo/UBERON_0004436;proximal epiphysis of middle phalanx of manual digit 2;base of middle phalanx of index finger -http://purl.obolibrary.org/obo/UBERON_0004436;proximal epiphysis of middle phalanx of manual digit 2;base of middle phalanx of second digit of hand -http://purl.obolibrary.org/obo/UBERON_0004436;proximal epiphysis of middle phalanx of manual digit 2;base of middle phalanx of second finger -http://purl.obolibrary.org/obo/UBERON_0004436;proximal epiphysis of middle phalanx of manual digit 2;proximal epiphysis of middle phalanx of manual digit II -http://purl.obolibrary.org/obo/UBERON_0004437;proximal epiphysis of middle phalanx of manual digit 3;basal epiphysis of middle phalanx of middle finger -http://purl.obolibrary.org/obo/UBERON_0004437;proximal epiphysis of middle phalanx of manual digit 3;base of middle phalanx of middle finger -http://purl.obolibrary.org/obo/UBERON_0004437;proximal epiphysis of middle phalanx of manual digit 3;base of middle phalanx of third digit of hand -http://purl.obolibrary.org/obo/UBERON_0004437;proximal epiphysis of middle phalanx of manual digit 3;base of middle phalanx of third finger -http://purl.obolibrary.org/obo/UBERON_0004437;proximal epiphysis of middle phalanx of manual digit 3;proximal epiphysis of middle phalanx of manual digit III -http://purl.obolibrary.org/obo/UBERON_0004438;proximal epiphysis of middle phalanx of manual digit 4;basal epiphysis of middle phalanx of fourth finger -http://purl.obolibrary.org/obo/UBERON_0004438;proximal epiphysis of middle phalanx of manual digit 4;basal epiphysis of middle phalanx of ring finger -http://purl.obolibrary.org/obo/UBERON_0004438;proximal epiphysis of middle phalanx of manual digit 4;base of middle phalanx of fourth digit of hand -http://purl.obolibrary.org/obo/UBERON_0004438;proximal epiphysis of middle phalanx of manual digit 4;base of middle phalanx of fourth finger -http://purl.obolibrary.org/obo/UBERON_0004438;proximal epiphysis of middle phalanx of manual digit 4;base of middle phalanx of ring finger -http://purl.obolibrary.org/obo/UBERON_0004438;proximal epiphysis of middle phalanx of manual digit 4;proximal epiphysis of middle phalanx of manual digit IV -http://purl.obolibrary.org/obo/UBERON_0004439;proximal epiphysis of middle phalanx of manual digit 5;basal epiphysis of middle phalanx of fifth finger -http://purl.obolibrary.org/obo/UBERON_0004439;proximal epiphysis of middle phalanx of manual digit 5;basal epiphysis of middle phalanx of little finger -http://purl.obolibrary.org/obo/UBERON_0004439;proximal epiphysis of middle phalanx of manual digit 5;base of middle phalanx of fifth digit of hand -http://purl.obolibrary.org/obo/UBERON_0004439;proximal epiphysis of middle phalanx of manual digit 5;base of middle phalanx of fifth finger -http://purl.obolibrary.org/obo/UBERON_0004439;proximal epiphysis of middle phalanx of manual digit 5;base of middle phalanx of little finger -http://purl.obolibrary.org/obo/UBERON_0004439;proximal epiphysis of middle phalanx of manual digit 5;proximal epiphysis of middle phalanx of manual digit V -http://purl.obolibrary.org/obo/UBERON_0004440;proximal epiphysis of proximal phalanx of manual digit 2;base of proximal phalanx of index finger -http://purl.obolibrary.org/obo/UBERON_0004440;proximal epiphysis of proximal phalanx of manual digit 2;base of proximal phalanx of second digit of hand -http://purl.obolibrary.org/obo/UBERON_0004440;proximal epiphysis of proximal phalanx of manual digit 2;base of proximal phalanx of second finger -http://purl.obolibrary.org/obo/UBERON_0004440;proximal epiphysis of proximal phalanx of manual digit 2;proximal epiphysis of proximal phalanx of manual digit II -http://purl.obolibrary.org/obo/UBERON_0004441;proximal epiphysis of proximal phalanx of manual digit 3;basal epiphysis of proximal phalanx of middle finger -http://purl.obolibrary.org/obo/UBERON_0004441;proximal epiphysis of proximal phalanx of manual digit 3;base of proximal phalanx of middle finger -http://purl.obolibrary.org/obo/UBERON_0004441;proximal epiphysis of proximal phalanx of manual digit 3;base of proximal phalanx of third digit of hand -http://purl.obolibrary.org/obo/UBERON_0004441;proximal epiphysis of proximal phalanx of manual digit 3;base of proximal phalanx of third finger -http://purl.obolibrary.org/obo/UBERON_0004441;proximal epiphysis of proximal phalanx of manual digit 3;proximal epiphysis of proximal phalanx of manual digit III -http://purl.obolibrary.org/obo/UBERON_0004442;proximal epiphysis of proximal phalanx of manual digit 4;basal epiphysis of proximal phalanx of fourth finger -http://purl.obolibrary.org/obo/UBERON_0004442;proximal epiphysis of proximal phalanx of manual digit 4;basal epiphysis of proximal phalanx of ring finger -http://purl.obolibrary.org/obo/UBERON_0004442;proximal epiphysis of proximal phalanx of manual digit 4;base of proximal phalanx of fourth digit of hand -http://purl.obolibrary.org/obo/UBERON_0004442;proximal epiphysis of proximal phalanx of manual digit 4;base of proximal phalanx of fourth finger -http://purl.obolibrary.org/obo/UBERON_0004442;proximal epiphysis of proximal phalanx of manual digit 4;base of proximal phalanx of ring finger -http://purl.obolibrary.org/obo/UBERON_0004442;proximal epiphysis of proximal phalanx of manual digit 4;proximal epiphysis of proximal phalanx of manual digit IV -http://purl.obolibrary.org/obo/UBERON_0004443;proximal epiphysis of proximal phalanx of manual digit 5;basal epiphysis of proximal phalanx of little finger -http://purl.obolibrary.org/obo/UBERON_0004443;proximal epiphysis of proximal phalanx of manual digit 5;base of proximal phalanx of fifth digit of hand -http://purl.obolibrary.org/obo/UBERON_0004443;proximal epiphysis of proximal phalanx of manual digit 5;base of proximal phalanx of fifth finger -http://purl.obolibrary.org/obo/UBERON_0004443;proximal epiphysis of proximal phalanx of manual digit 5;base of proximal phalanx of little finger -http://purl.obolibrary.org/obo/UBERON_0004443;proximal epiphysis of proximal phalanx of manual digit 5;proximal epiphysis of proximal phalanx of manual digit V -http://purl.obolibrary.org/obo/UBERON_0004444;proximal epiphysis of distal phalanx of manual digit 1;base of distal phalanx of thumb -http://purl.obolibrary.org/obo/UBERON_0004444;proximal epiphysis of distal phalanx of manual digit 1;proximal epiphysis of distal phalanx of manual digit I -http://purl.obolibrary.org/obo/UBERON_0004445;proximal epiphysis of proximal phalanx of manual digit 1;basal epiphysis of proximal phalanx of thumb -http://purl.obolibrary.org/obo/UBERON_0004445;proximal epiphysis of proximal phalanx of manual digit 1;base of proximal phalanx of thumb -http://purl.obolibrary.org/obo/UBERON_0004445;proximal epiphysis of proximal phalanx of manual digit 1;proximal epiphysis of proximal phalanx of manual digit I -http://purl.obolibrary.org/obo/UBERON_0004446;epiphysis of phalanx; -http://purl.obolibrary.org/obo/UBERON_0004447;proximal epiphysis of phalanx; -http://purl.obolibrary.org/obo/UBERON_0004448;distal epiphysis of phalanx;head of phalanx -http://purl.obolibrary.org/obo/UBERON_0004449;cerebral artery; -http://purl.obolibrary.org/obo/UBERON_0004450;gastric vein;vena gastrica -http://purl.obolibrary.org/obo/UBERON_0004451;trunk or cervical vertebra; -http://purl.obolibrary.org/obo/UBERON_0004452;carpal region;carpal limb segment -http://purl.obolibrary.org/obo/UBERON_0004452;carpal region;carpal segment -http://purl.obolibrary.org/obo/UBERON_0004452;carpal region;fore basipodium -http://purl.obolibrary.org/obo/UBERON_0004452;carpal region;fore mesopodium -http://purl.obolibrary.org/obo/UBERON_0004452;carpal region;hand mesopodium -http://purl.obolibrary.org/obo/UBERON_0004452;carpal region;manus mesopodium -http://purl.obolibrary.org/obo/UBERON_0004452;carpal region;regio carpalis -http://purl.obolibrary.org/obo/UBERON_0004452;carpal region;wrist -http://purl.obolibrary.org/obo/UBERON_0004452;carpal region;wrist region -http://purl.obolibrary.org/obo/UBERON_0004453;metacarpus region;distal segment of hand proper -http://purl.obolibrary.org/obo/UBERON_0004453;metacarpus region;metacarpal part of hand -http://purl.obolibrary.org/obo/UBERON_0004453;metacarpus region;metacarpal part of manus -http://purl.obolibrary.org/obo/UBERON_0004453;metacarpus region;metacarpal region -http://purl.obolibrary.org/obo/UBERON_0004453;metacarpus region;metacarpus -http://purl.obolibrary.org/obo/UBERON_0004454;tarsal region;ankle -http://purl.obolibrary.org/obo/UBERON_0004454;tarsal region;ankle region -http://purl.obolibrary.org/obo/UBERON_0004454;tarsal region;tarsal limb segment -http://purl.obolibrary.org/obo/UBERON_0004455;neurula embryo;neurula -http://purl.obolibrary.org/obo/UBERON_0004456;entire sense organ system;sense organ system -http://purl.obolibrary.org/obo/UBERON_0004461;skeletal musculature of head;head musculature -http://purl.obolibrary.org/obo/UBERON_0004461;skeletal musculature of head;muscle group of head -http://purl.obolibrary.org/obo/UBERON_0004461;skeletal musculature of head;muscles of head -http://purl.obolibrary.org/obo/UBERON_0004461;skeletal musculature of head;musculi capitis -http://purl.obolibrary.org/obo/UBERON_0004461;skeletal musculature of head;set of muscles of head -http://purl.obolibrary.org/obo/UBERON_0004462;musculature of body wall;body wall musculature -http://purl.obolibrary.org/obo/UBERON_0004463;musculature of hindlimb stylopod;muscle group of thigh -http://purl.obolibrary.org/obo/UBERON_0004463;musculature of hindlimb stylopod;musculature of thigh -http://purl.obolibrary.org/obo/UBERON_0004463;musculature of hindlimb stylopod;set of muscles of thigh -http://purl.obolibrary.org/obo/UBERON_0004463;musculature of hindlimb stylopod;thigh musculature -http://purl.obolibrary.org/obo/UBERON_0004464;musculature of thorax;muscle group of thorax -http://purl.obolibrary.org/obo/UBERON_0004464;musculature of thorax;muscles of thorax -http://purl.obolibrary.org/obo/UBERON_0004464;musculature of thorax;musculi thoracis -http://purl.obolibrary.org/obo/UBERON_0004464;musculature of thorax;set of muscles of thorax -http://purl.obolibrary.org/obo/UBERON_0004464;musculature of thorax;thoracic musculature -http://purl.obolibrary.org/obo/UBERON_0004465;musculature of neck;cervical muscles -http://purl.obolibrary.org/obo/UBERON_0004465;musculature of neck;muscle group of neck -http://purl.obolibrary.org/obo/UBERON_0004465;musculature of neck;muscles of neck -http://purl.obolibrary.org/obo/UBERON_0004465;musculature of neck;musculi cervicis -http://purl.obolibrary.org/obo/UBERON_0004465;musculature of neck;musculi colli -http://purl.obolibrary.org/obo/UBERON_0004465;musculature of neck;neck musculature -http://purl.obolibrary.org/obo/UBERON_0004465;musculature of neck;set of muscles of neck -http://purl.obolibrary.org/obo/UBERON_0004466;musculature of leg;leg muscle system -http://purl.obolibrary.org/obo/UBERON_0004467;musculature of pharynx;pharyngeal musculature -http://purl.obolibrary.org/obo/UBERON_0004468;set of muscles of vertebral column;muscle group of vertebral column -http://purl.obolibrary.org/obo/UBERON_0004469;musculature of back;muscle group of back -http://purl.obolibrary.org/obo/UBERON_0004469;musculature of back;muscles of back -http://purl.obolibrary.org/obo/UBERON_0004469;musculature of back;musculi dorsi -http://purl.obolibrary.org/obo/UBERON_0004469;musculature of back;set of muscles of back -http://purl.obolibrary.org/obo/UBERON_0004470;musculature of pelvic girdle;muscle group of pelvic girdle -http://purl.obolibrary.org/obo/UBERON_0004470;musculature of pelvic girdle;muscle group of pelvis -http://purl.obolibrary.org/obo/UBERON_0004470;musculature of pelvic girdle;pelvic girdle muscle system -http://purl.obolibrary.org/obo/UBERON_0004470;musculature of pelvic girdle;pelvic girdle muscles -http://purl.obolibrary.org/obo/UBERON_0004470;musculature of pelvic girdle;pelvic girdle musculature -http://purl.obolibrary.org/obo/UBERON_0004470;musculature of pelvic girdle;set of muscles of pelvic girdle -http://purl.obolibrary.org/obo/UBERON_0004471;musculature of pectoral girdle;muscle group of pectoral girdle -http://purl.obolibrary.org/obo/UBERON_0004471;musculature of pectoral girdle;pectoral girdle muscles -http://purl.obolibrary.org/obo/UBERON_0004471;musculature of pectoral girdle;pectoral girdle musculature -http://purl.obolibrary.org/obo/UBERON_0004471;musculature of pectoral girdle;set of muscles of pectoral girdle -http://purl.obolibrary.org/obo/UBERON_0004473;musculature of face;entire facial musculature -http://purl.obolibrary.org/obo/UBERON_0004473;musculature of face;facial muscles -http://purl.obolibrary.org/obo/UBERON_0004473;musculature of face;muscle group of face -http://purl.obolibrary.org/obo/UBERON_0004473;musculature of face;musculi faciei -http://purl.obolibrary.org/obo/UBERON_0004474;musculature of arm;arm muscle system -http://purl.obolibrary.org/obo/UBERON_0004474;musculature of arm;arm musculature -http://purl.obolibrary.org/obo/UBERON_0004474;musculature of arm;muscle group of arm -http://purl.obolibrary.org/obo/UBERON_0004474;musculature of arm;set of muscles of arm -http://purl.obolibrary.org/obo/UBERON_0004475;musculature of hip;hip musculature -http://purl.obolibrary.org/obo/UBERON_0004475;musculature of hip;muscle group of hip -http://purl.obolibrary.org/obo/UBERON_0004475;musculature of hip;set of muscles of hip -http://purl.obolibrary.org/obo/UBERON_0004476;musculature of shoulder;muscle group of shoulder -http://purl.obolibrary.org/obo/UBERON_0004476;musculature of shoulder;set of muscles of shoulder -http://purl.obolibrary.org/obo/UBERON_0004478;musculature of larynx;laryngeal muscles -http://purl.obolibrary.org/obo/UBERON_0004478;musculature of larynx;laryngeal muscles set -http://purl.obolibrary.org/obo/UBERON_0004478;musculature of larynx;muscle group of larynx -http://purl.obolibrary.org/obo/UBERON_0004478;musculature of larynx;set of laryngeal muscles -http://purl.obolibrary.org/obo/UBERON_0004478;musculature of larynx;set of muscles of larynx -http://purl.obolibrary.org/obo/UBERON_0004479;musculature of trunk;muscle group of trunk -http://purl.obolibrary.org/obo/UBERON_0004479;musculature of trunk;muscular system of trunk -http://purl.obolibrary.org/obo/UBERON_0004479;musculature of trunk;set of muscles of trunk -http://purl.obolibrary.org/obo/UBERON_0004480;musculature of limb;limb muscle system -http://purl.obolibrary.org/obo/UBERON_0004480;musculature of limb;limb musculature -http://purl.obolibrary.org/obo/UBERON_0004480;musculature of limb;muscle group of limb -http://purl.obolibrary.org/obo/UBERON_0004480;musculature of limb;set of muscles of limb -http://purl.obolibrary.org/obo/UBERON_0004481;musculature of upper limb;free upper limb musculature -http://purl.obolibrary.org/obo/UBERON_0004481;musculature of upper limb;muscle group of free upper limb -http://purl.obolibrary.org/obo/UBERON_0004481;musculature of upper limb;musculature of free upper limb -http://purl.obolibrary.org/obo/UBERON_0004481;musculature of upper limb;set of muscles of free upper limb -http://purl.obolibrary.org/obo/UBERON_0004482;musculature of lower limb;free lower limb musculature -http://purl.obolibrary.org/obo/UBERON_0004482;musculature of lower limb;muscle group of free lower limb -http://purl.obolibrary.org/obo/UBERON_0004482;musculature of lower limb;musculature of free lower limb -http://purl.obolibrary.org/obo/UBERON_0004482;musculature of lower limb;set of muscles of free lower limb -http://purl.obolibrary.org/obo/UBERON_0004486;musculature of perineum;musculi perinei -http://purl.obolibrary.org/obo/UBERON_0004486;musculature of perineum;perineal muscles -http://purl.obolibrary.org/obo/UBERON_0004486;musculature of perineum;perineal muscles set -http://purl.obolibrary.org/obo/UBERON_0004486;musculature of perineum;set of perineal muscles -http://purl.obolibrary.org/obo/UBERON_0004487;musculature of forelimb zeugopod;muscle group of forearm -http://purl.obolibrary.org/obo/UBERON_0004487;musculature of forelimb zeugopod;musculature of forearm -http://purl.obolibrary.org/obo/UBERON_0004487;musculature of forelimb zeugopod;set of muscles of forearm -http://purl.obolibrary.org/obo/UBERON_0004488;musculature of pes;foot musculature -http://purl.obolibrary.org/obo/UBERON_0004488;musculature of pes;muscle group of foot -http://purl.obolibrary.org/obo/UBERON_0004488;musculature of pes;musculature of foot -http://purl.obolibrary.org/obo/UBERON_0004488;musculature of pes;set of muscles of foot -http://purl.obolibrary.org/obo/UBERON_0004489;musculature of manus;hand musculature -http://purl.obolibrary.org/obo/UBERON_0004489;musculature of manus;muscle group of hand -http://purl.obolibrary.org/obo/UBERON_0004489;musculature of manus;musculature of hand -http://purl.obolibrary.org/obo/UBERON_0004489;musculature of manus;set of muscles of hand -http://purl.obolibrary.org/obo/UBERON_0004490;cardiac muscle tissue of atrium;atrial cardiac muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004490;cardiac muscle tissue of atrium;atrial heart muscle -http://purl.obolibrary.org/obo/UBERON_0004490;cardiac muscle tissue of atrium;cardiac atrium muscle -http://purl.obolibrary.org/obo/UBERON_0004491;cardiac muscle tissue of interatrial septum;interatrial septum cardiac muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004491;cardiac muscle tissue of interatrial septum;interatrial septum heart muscle -http://purl.obolibrary.org/obo/UBERON_0004491;cardiac muscle tissue of interatrial septum;interatrial septum muscle -http://purl.obolibrary.org/obo/UBERON_0004491;cardiac muscle tissue of interatrial septum;interatrial septum myocardium -http://purl.obolibrary.org/obo/UBERON_0004492;cardiac muscle tissue of cardiac septum;cardiac septum cardiac muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004492;cardiac muscle tissue of cardiac septum;cardiac septum heart muscle -http://purl.obolibrary.org/obo/UBERON_0004492;cardiac muscle tissue of cardiac septum;cardiac septum muscle -http://purl.obolibrary.org/obo/UBERON_0004492;cardiac muscle tissue of cardiac septum;cardiac septum myocardium -http://purl.obolibrary.org/obo/UBERON_0004493;cardiac muscle tissue of myocardium; -http://purl.obolibrary.org/obo/UBERON_0004494;cardiac muscle tissue of papillary muscle; -http://purl.obolibrary.org/obo/UBERON_0004495;skeletal muscle tissue of diaphragm; -http://purl.obolibrary.org/obo/UBERON_0004496;skeletal muscle tissue of iliacus; -http://purl.obolibrary.org/obo/UBERON_0004497;skeletal muscle tissue of gluteus maximus; -http://purl.obolibrary.org/obo/UBERON_0004498;skeletal muscle tissue of quadriceps femoris; -http://purl.obolibrary.org/obo/UBERON_0004499;skeletal muscle tissue of tibialis anterior; -http://purl.obolibrary.org/obo/UBERON_0004500;skeletal muscle tissue of deltoid; -http://purl.obolibrary.org/obo/UBERON_0004501;skeletal muscle tissue of teres major; -http://purl.obolibrary.org/obo/UBERON_0004502;skeletal muscle tissue of biceps brachii; -http://purl.obolibrary.org/obo/UBERON_0004503;skeletal muscle tissue of digastric; -http://purl.obolibrary.org/obo/UBERON_0004504;skeletal muscle tissue of mylohyoid; -http://purl.obolibrary.org/obo/UBERON_0004505;skeletal muscle tissue of orbicularis oculi; -http://purl.obolibrary.org/obo/UBERON_0004506;skeletal muscle tissue of masseter; -http://purl.obolibrary.org/obo/UBERON_0004507;skeletal muscle tissue of temporalis; -http://purl.obolibrary.org/obo/UBERON_0004508;skeletal muscle tissue of levator palpebrae superioris; -http://purl.obolibrary.org/obo/UBERON_0004509;skeletal muscle tissue of trapezius; -http://purl.obolibrary.org/obo/UBERON_0004510;skeletal muscle tissue of pectoralis major; -http://purl.obolibrary.org/obo/UBERON_0004511;skeletal muscle tissue of rectus abdominis; -http://purl.obolibrary.org/obo/UBERON_0004512;skeletal muscle tissue of supraspinatus; -http://purl.obolibrary.org/obo/UBERON_0004513;skeletal muscle tissue of internal intercostal muscle; -http://purl.obolibrary.org/obo/UBERON_0004514;skeletal muscle tissue of transversus thoracis; -http://purl.obolibrary.org/obo/UBERON_0004515;smooth muscle tissue of bronchiole; -http://purl.obolibrary.org/obo/UBERON_0004516;smooth muscle tissue of terminal bronchiole; -http://purl.obolibrary.org/obo/UBERON_0004517;smooth muscle tissue of respiratory bronchiole; -http://purl.obolibrary.org/obo/UBERON_0004518;muscle of vertebral column;vertebral column muscle -http://purl.obolibrary.org/obo/UBERON_0004519;muscle of anal triangle;anal triangle muscle -http://purl.obolibrary.org/obo/UBERON_0004520;striated muscle tissue of prostate; -http://purl.obolibrary.org/obo/UBERON_0004521;vasculature of muscle organ;muscular organ vasculature -http://purl.obolibrary.org/obo/UBERON_0004522;vasculature of musculoskeletal system; -http://purl.obolibrary.org/obo/UBERON_0004523;papillary muscle of right ventricle; -http://purl.obolibrary.org/obo/UBERON_0004524;papillary muscle of left ventricle; -http://purl.obolibrary.org/obo/UBERON_0004525;cardiac muscle tissue of trabecula carnea of right ventricle; -http://purl.obolibrary.org/obo/UBERON_0004526;cardiac muscle tissue of trabecula carnea of left ventricle; -http://purl.obolibrary.org/obo/UBERON_0004527;alveolar process of maxilla;alveolar margin of maxilla -http://purl.obolibrary.org/obo/UBERON_0004527;alveolar process of maxilla;alveolar part of maxilla -http://purl.obolibrary.org/obo/UBERON_0004527;alveolar process of maxilla;alveolar process of maxilla -http://purl.obolibrary.org/obo/UBERON_0004527;alveolar process of maxilla;alveolar ridge of maxilla -http://purl.obolibrary.org/obo/UBERON_0004527;alveolar process of maxilla;lower alveolar ridge -http://purl.obolibrary.org/obo/UBERON_0004527;alveolar process of maxilla;maxilla alveolar process -http://purl.obolibrary.org/obo/UBERON_0004527;alveolar process of maxilla;pars dentalis of maxilla -http://purl.obolibrary.org/obo/UBERON_0004527;alveolar process of maxilla;posterior alveolar ridge -http://purl.obolibrary.org/obo/UBERON_0004527;alveolar process of maxilla;processus alveolaris (maxilla) -http://purl.obolibrary.org/obo/UBERON_0004527;alveolar process of maxilla;processus alveolaris maxillae -http://purl.obolibrary.org/obo/UBERON_0004528;alveolar ridge of mandible;alveolar margin of mandible -http://purl.obolibrary.org/obo/UBERON_0004528;alveolar ridge of mandible;alveolar part of mandible -http://purl.obolibrary.org/obo/UBERON_0004528;alveolar ridge of mandible;alveolar process of mandible -http://purl.obolibrary.org/obo/UBERON_0004528;alveolar ridge of mandible;anterior alveolar ridge -http://purl.obolibrary.org/obo/UBERON_0004528;alveolar ridge of mandible;pars alveolaris (mandibula) -http://purl.obolibrary.org/obo/UBERON_0004528;alveolar ridge of mandible;upper alveolar ridge -http://purl.obolibrary.org/obo/UBERON_0004529;anatomical projection;processus -http://purl.obolibrary.org/obo/UBERON_0004529;anatomical projection;projection -http://purl.obolibrary.org/obo/UBERON_0004530;bony projection;bone process -http://purl.obolibrary.org/obo/UBERON_0004530;bony projection;projection of bone -http://purl.obolibrary.org/obo/UBERON_0004533;left testis;left testicle -http://purl.obolibrary.org/obo/UBERON_0004534;right testis;right testicle -http://purl.obolibrary.org/obo/UBERON_0004535;cardiovascular system;CV system -http://purl.obolibrary.org/obo/UBERON_0004535;cardiovascular system;Herz und Gefaesssystem -http://purl.obolibrary.org/obo/UBERON_0004536;lymph vasculature;lymphatic trunks and ducts -http://purl.obolibrary.org/obo/UBERON_0004536;lymph vasculature;lymphatic vasculature -http://purl.obolibrary.org/obo/UBERON_0004536;lymph vasculature;lymphatic vessel network -http://purl.obolibrary.org/obo/UBERON_0004536;lymph vasculature;lymphatic vessels set -http://purl.obolibrary.org/obo/UBERON_0004536;lymph vasculature;set of lymphatic vessels -http://purl.obolibrary.org/obo/UBERON_0004536;lymph vasculature;trunci et ductus lymphatici -http://purl.obolibrary.org/obo/UBERON_0004537;blood vasculature;blood system -http://purl.obolibrary.org/obo/UBERON_0004537;blood vasculature;blood vascular network -http://purl.obolibrary.org/obo/UBERON_0004537;blood vasculature;blood vessel system -http://purl.obolibrary.org/obo/UBERON_0004537;blood vasculature;blood vessels -http://purl.obolibrary.org/obo/UBERON_0004537;blood vasculature;set of blood vessels -http://purl.obolibrary.org/obo/UBERON_0004538;left kidney; -http://purl.obolibrary.org/obo/UBERON_0004539;right kidney; -http://purl.obolibrary.org/obo/UBERON_0004540;proper plantar digital artery;arteriae digitales plantares propriae -http://purl.obolibrary.org/obo/UBERON_0004540;proper plantar digital artery;plantar digital artery proper -http://purl.obolibrary.org/obo/UBERON_0004540;proper plantar digital artery;proper plantar digital arteries -http://purl.obolibrary.org/obo/UBERON_0004544;epididymis epithelium;epididymis epithelium -http://purl.obolibrary.org/obo/UBERON_0004544;epididymis epithelium;epithelium of epididymis -http://purl.obolibrary.org/obo/UBERON_0004545;external capsule of telencephalon; -http://purl.obolibrary.org/obo/UBERON_0004546;cribriform plate;cribiform plate of ethmoid bone -http://purl.obolibrary.org/obo/UBERON_0004546;cribriform plate;horizontal lamina of ethmoid bone -http://purl.obolibrary.org/obo/UBERON_0004547;decidua capsularis; -http://purl.obolibrary.org/obo/UBERON_0004548;left eye;left eyeball -http://purl.obolibrary.org/obo/UBERON_0004549;right eye;right eyeball -http://purl.obolibrary.org/obo/UBERON_0004550;gastroesophageal sphincter;cardiac sphincter -http://purl.obolibrary.org/obo/UBERON_0004550;gastroesophageal sphincter;gastroesophageal sphincter -http://purl.obolibrary.org/obo/UBERON_0004550;gastroesophageal sphincter;gastroesophageal sphincter muscle -http://purl.obolibrary.org/obo/UBERON_0004550;gastroesophageal sphincter;inferior esophageal sphincter -http://purl.obolibrary.org/obo/UBERON_0004552;digital artery; -http://purl.obolibrary.org/obo/UBERON_0004553;forelimb digital artery;digital artery of manus -http://purl.obolibrary.org/obo/UBERON_0004553;forelimb digital artery;forelimb digital arteries -http://purl.obolibrary.org/obo/UBERON_0004554;hindlimb digital artery;digital artery of foot -http://purl.obolibrary.org/obo/UBERON_0004554;hindlimb digital artery;hindlimb digital arteries -http://purl.obolibrary.org/obo/UBERON_0004561;proper palmar digital vein;common palmar digital venous tributary -http://purl.obolibrary.org/obo/UBERON_0004561;proper palmar digital vein;distal palmar digital vein -http://purl.obolibrary.org/obo/UBERON_0004561;proper palmar digital vein;proper palmal vein -http://purl.obolibrary.org/obo/UBERON_0004561;proper palmar digital vein;proper palmar vein -http://purl.obolibrary.org/obo/UBERON_0004561;proper palmar digital vein;tributary of common palmar digital vein -http://purl.obolibrary.org/obo/UBERON_0004562;digital vein; -http://purl.obolibrary.org/obo/UBERON_0004563;forelimb digital vein;forelimb digital veins -http://purl.obolibrary.org/obo/UBERON_0004563;forelimb digital vein;vein of finger -http://purl.obolibrary.org/obo/UBERON_0004563;forelimb digital vein;vein of manual digit -http://purl.obolibrary.org/obo/UBERON_0004564;hindlimb digital vein;hindlimb digital veins -http://purl.obolibrary.org/obo/UBERON_0004564;hindlimb digital vein;vein of pedal digit -http://purl.obolibrary.org/obo/UBERON_0004564;hindlimb digital vein;vein of toe -http://purl.obolibrary.org/obo/UBERON_0004571;systemic arterial system;systemic arterial circulatory system -http://purl.obolibrary.org/obo/UBERON_0004572;arterial system; -http://purl.obolibrary.org/obo/UBERON_0004573;systemic artery;systemic arterial subtree -http://purl.obolibrary.org/obo/UBERON_0004581;systemic venous system;systemic venous circulatory system -http://purl.obolibrary.org/obo/UBERON_0004582;venous system;vein system -http://purl.obolibrary.org/obo/UBERON_0004590;sphincter muscle;circular muscle -http://purl.obolibrary.org/obo/UBERON_0004590;sphincter muscle;sphincter -http://purl.obolibrary.org/obo/UBERON_0004601;rib 1;costa I -http://purl.obolibrary.org/obo/UBERON_0004601;rib 1;costa prima (I) -http://purl.obolibrary.org/obo/UBERON_0004601;rib 1;costa prima [I] -http://purl.obolibrary.org/obo/UBERON_0004601;rib 1;first rib -http://purl.obolibrary.org/obo/UBERON_0004602;rib 2;costa II -http://purl.obolibrary.org/obo/UBERON_0004602;rib 2;costa secunda (II) -http://purl.obolibrary.org/obo/UBERON_0004602;rib 2;costa secunda [II] -http://purl.obolibrary.org/obo/UBERON_0004602;rib 2;second rib -http://purl.obolibrary.org/obo/UBERON_0004603;rib 3;costa III -http://purl.obolibrary.org/obo/UBERON_0004603;rib 3;third rib -http://purl.obolibrary.org/obo/UBERON_0004604;rib 4;costa IV -http://purl.obolibrary.org/obo/UBERON_0004604;rib 4;fourth rib -http://purl.obolibrary.org/obo/UBERON_0004605;rib 5;costa V -http://purl.obolibrary.org/obo/UBERON_0004605;rib 5;fifth rib -http://purl.obolibrary.org/obo/UBERON_0004606;rib 6;costa VI -http://purl.obolibrary.org/obo/UBERON_0004606;rib 6;sixth rib -http://purl.obolibrary.org/obo/UBERON_0004607;rib 7;costa VII -http://purl.obolibrary.org/obo/UBERON_0004607;rib 7;seventh rib -http://purl.obolibrary.org/obo/UBERON_0004608;rib 9;costa IX -http://purl.obolibrary.org/obo/UBERON_0004608;rib 9;ninth rib -http://purl.obolibrary.org/obo/UBERON_0004609;rib 10;costa X -http://purl.obolibrary.org/obo/UBERON_0004609;rib 10;tenth rib -http://purl.obolibrary.org/obo/UBERON_0004610;rib 11;costa XI -http://purl.obolibrary.org/obo/UBERON_0004610;rib 11;eleventh rib -http://purl.obolibrary.org/obo/UBERON_0004611;rib 12;costa XII -http://purl.obolibrary.org/obo/UBERON_0004611;rib 12;twelfth rib -http://purl.obolibrary.org/obo/UBERON_0004612;mammalian cervical vertebra 3;C3 vertebra -http://purl.obolibrary.org/obo/UBERON_0004612;mammalian cervical vertebra 3;cervical vertebra 3 -http://purl.obolibrary.org/obo/UBERON_0004612;mammalian cervical vertebra 3;cervical vertebrae 3 -http://purl.obolibrary.org/obo/UBERON_0004612;mammalian cervical vertebra 3;third cervical vertebra -http://purl.obolibrary.org/obo/UBERON_0004612;mammalian cervical vertebra 3;third cervical vertebra of axial skeleton -http://purl.obolibrary.org/obo/UBERON_0004613;mammalian cervical vertebra 4;C4 vertebra -http://purl.obolibrary.org/obo/UBERON_0004613;mammalian cervical vertebra 4;cervical vertebra 4 -http://purl.obolibrary.org/obo/UBERON_0004613;mammalian cervical vertebra 4;fourth cervical vertebra -http://purl.obolibrary.org/obo/UBERON_0004614;mammalian cervical vertebra 5;C5 vertebra -http://purl.obolibrary.org/obo/UBERON_0004614;mammalian cervical vertebra 5;cervical vertebra 5 -http://purl.obolibrary.org/obo/UBERON_0004614;mammalian cervical vertebra 5;fifth cervical vertebra -http://purl.obolibrary.org/obo/UBERON_0004615;mammalian cervical vertebra 6;C6 vertebra -http://purl.obolibrary.org/obo/UBERON_0004615;mammalian cervical vertebra 6;cervical vertebra 6 -http://purl.obolibrary.org/obo/UBERON_0004615;mammalian cervical vertebra 6;sixth cervical vertebra -http://purl.obolibrary.org/obo/UBERON_0004616;mammalian cervical vertebra 7;C7 vertebra -http://purl.obolibrary.org/obo/UBERON_0004616;mammalian cervical vertebra 7;cervical vertebra 7 -http://purl.obolibrary.org/obo/UBERON_0004616;mammalian cervical vertebra 7;prominent vertebra -http://purl.obolibrary.org/obo/UBERON_0004616;mammalian cervical vertebra 7;seventh cervical vertebra -http://purl.obolibrary.org/obo/UBERON_0004616;mammalian cervical vertebra 7;vertebra prominens (CVII) -http://purl.obolibrary.org/obo/UBERON_0004616;mammalian cervical vertebra 7;vertebra prominens [C VII] -http://purl.obolibrary.org/obo/UBERON_0004617;lumbar vertebra 1;L1 vertebra -http://purl.obolibrary.org/obo/UBERON_0004617;lumbar vertebra 1;first lumbar vertebra -http://purl.obolibrary.org/obo/UBERON_0004618;lumbar vertebra 2;L2 vertebra -http://purl.obolibrary.org/obo/UBERON_0004618;lumbar vertebra 2;second lumbar vertebra -http://purl.obolibrary.org/obo/UBERON_0004619;lumbar vertebra 3;L3 vertebra -http://purl.obolibrary.org/obo/UBERON_0004619;lumbar vertebra 3;third lumbar vertebra -http://purl.obolibrary.org/obo/UBERON_0004620;lumbar vertebra 4;L4 vertebra -http://purl.obolibrary.org/obo/UBERON_0004620;lumbar vertebra 4;fourth lumbar vertebra -http://purl.obolibrary.org/obo/UBERON_0004621;lumbar vertebra 5;L5 vertebra -http://purl.obolibrary.org/obo/UBERON_0004621;lumbar vertebra 5;fifth lumbar vertebra -http://purl.obolibrary.org/obo/UBERON_0004622;sacral vertebra 1;S1 vertebra -http://purl.obolibrary.org/obo/UBERON_0004622;sacral vertebra 1;first sacral segment -http://purl.obolibrary.org/obo/UBERON_0004622;sacral vertebra 1;first sacral vertebra -http://purl.obolibrary.org/obo/UBERON_0004622;sacral vertebra 1;first segment of sacrum -http://purl.obolibrary.org/obo/UBERON_0004623;sacral vertebra 2;S2 vertebra -http://purl.obolibrary.org/obo/UBERON_0004623;sacral vertebra 2;second sacral segment -http://purl.obolibrary.org/obo/UBERON_0004623;sacral vertebra 2;second sacral vertebra -http://purl.obolibrary.org/obo/UBERON_0004623;sacral vertebra 2;second segment of sacrum -http://purl.obolibrary.org/obo/UBERON_0004624;sacral vertebra 3;S3 vertebra -http://purl.obolibrary.org/obo/UBERON_0004624;sacral vertebra 3;third sacral segment -http://purl.obolibrary.org/obo/UBERON_0004624;sacral vertebra 3;third sacral vertebra -http://purl.obolibrary.org/obo/UBERON_0004624;sacral vertebra 3;third segment of sacrum -http://purl.obolibrary.org/obo/UBERON_0004625;sacral vertebra 4;S4 vertebra -http://purl.obolibrary.org/obo/UBERON_0004625;sacral vertebra 4;fourth sacral segment -http://purl.obolibrary.org/obo/UBERON_0004625;sacral vertebra 4;fourth sacral vertebra -http://purl.obolibrary.org/obo/UBERON_0004625;sacral vertebra 4;fourth segment of sacrum -http://purl.obolibrary.org/obo/UBERON_0004626;thoracic vertebra 1;T1 vertebra -http://purl.obolibrary.org/obo/UBERON_0004626;thoracic vertebra 1;first dorsal vertebra -http://purl.obolibrary.org/obo/UBERON_0004626;thoracic vertebra 1;first thoracic vertebra -http://purl.obolibrary.org/obo/UBERON_0004627;thoracic vertebra 2;T2 vertebra -http://purl.obolibrary.org/obo/UBERON_0004627;thoracic vertebra 2;second dorsal vertebra -http://purl.obolibrary.org/obo/UBERON_0004627;thoracic vertebra 2;second thoracic vertebra -http://purl.obolibrary.org/obo/UBERON_0004628;thoracic vertebra 3;T3 vertebra -http://purl.obolibrary.org/obo/UBERON_0004628;thoracic vertebra 3;third dorsal vertebra -http://purl.obolibrary.org/obo/UBERON_0004628;thoracic vertebra 3;third thoracic vertebra -http://purl.obolibrary.org/obo/UBERON_0004629;thoracic vertebra 4;T4 vertebra -http://purl.obolibrary.org/obo/UBERON_0004629;thoracic vertebra 4;fourth dorsal vertebra -http://purl.obolibrary.org/obo/UBERON_0004629;thoracic vertebra 4;fourth thoracic vertebra -http://purl.obolibrary.org/obo/UBERON_0004630;thoracic vertebra 5;T5 vertebra -http://purl.obolibrary.org/obo/UBERON_0004630;thoracic vertebra 5;fifth dorsal vertebra -http://purl.obolibrary.org/obo/UBERON_0004630;thoracic vertebra 5;fifth thoracic vertebra -http://purl.obolibrary.org/obo/UBERON_0004631;thoracic vertebra 6;T6 vertebra -http://purl.obolibrary.org/obo/UBERON_0004631;thoracic vertebra 6;sixth dorsal vertebra -http://purl.obolibrary.org/obo/UBERON_0004631;thoracic vertebra 6;sixth thoracic vertebra -http://purl.obolibrary.org/obo/UBERON_0004632;thoracic vertebra 7;T7 vertebra -http://purl.obolibrary.org/obo/UBERON_0004632;thoracic vertebra 7;seventh dorsal vertebra -http://purl.obolibrary.org/obo/UBERON_0004632;thoracic vertebra 7;seventh thoracic vertebra -http://purl.obolibrary.org/obo/UBERON_0004633;thoracic vertebra 9;Ninth dorsal vertebra -http://purl.obolibrary.org/obo/UBERON_0004633;thoracic vertebra 9;T9 vertebra -http://purl.obolibrary.org/obo/UBERON_0004633;thoracic vertebra 9;ninth thoracic vertebra -http://purl.obolibrary.org/obo/UBERON_0004634;thoracic vertebra 10;T10 vertebra -http://purl.obolibrary.org/obo/UBERON_0004634;thoracic vertebra 10;tenth dorsal vertebra -http://purl.obolibrary.org/obo/UBERON_0004634;thoracic vertebra 10;tenth thoracic vertebra -http://purl.obolibrary.org/obo/UBERON_0004635;thoracic vertebra 11;T11 vertebra -http://purl.obolibrary.org/obo/UBERON_0004635;thoracic vertebra 11;eleventh dorsal vertebra -http://purl.obolibrary.org/obo/UBERON_0004635;thoracic vertebra 11;eleventh thoracic vertebra -http://purl.obolibrary.org/obo/UBERON_0004636;thoracic vertebra 12;T12 vertebra -http://purl.obolibrary.org/obo/UBERON_0004636;thoracic vertebra 12;twelfth dorsal vertebra -http://purl.obolibrary.org/obo/UBERON_0004636;thoracic vertebra 12;twelfth thoracic vertebra -http://purl.obolibrary.org/obo/UBERON_0004637;otic capsule;otic capsule -http://purl.obolibrary.org/obo/UBERON_0004637;otic capsule;otic capsule element -http://purl.obolibrary.org/obo/UBERON_0004637;otic capsule;otic capsule endochondral element -http://purl.obolibrary.org/obo/UBERON_0004638;blood vessel endothelium; -http://purl.obolibrary.org/obo/UBERON_0004639;renal afferent arteriole;afferent arteriole -http://purl.obolibrary.org/obo/UBERON_0004639;renal afferent arteriole;afferent glomerular arteriole -http://purl.obolibrary.org/obo/UBERON_0004639;renal afferent arteriole;afferent glomerular arteriole of kidney -http://purl.obolibrary.org/obo/UBERON_0004639;renal afferent arteriole;arteriola glomerularis afferens renis -http://purl.obolibrary.org/obo/UBERON_0004639;renal afferent arteriole;kidney afferent arteriole -http://purl.obolibrary.org/obo/UBERON_0004640;renal efferent arteriole;arteriola glomerularis efferens renis -http://purl.obolibrary.org/obo/UBERON_0004640;renal efferent arteriole;efferent arteriole -http://purl.obolibrary.org/obo/UBERON_0004640;renal efferent arteriole;efferent glomerular arteriole -http://purl.obolibrary.org/obo/UBERON_0004640;renal efferent arteriole;efferent glomerular arteriole of kidney -http://purl.obolibrary.org/obo/UBERON_0004640;renal efferent arteriole;kidney efferent arteriole -http://purl.obolibrary.org/obo/UBERON_0004641;spleen capsule;Malpighian capsule -http://purl.obolibrary.org/obo/UBERON_0004641;spleen capsule;capsula splenica -http://purl.obolibrary.org/obo/UBERON_0004641;spleen capsule;capsule of spleen -http://purl.obolibrary.org/obo/UBERON_0004641;spleen capsule;fibroelastic coat of spleen -http://purl.obolibrary.org/obo/UBERON_0004641;spleen capsule;fibrous capsule of spleen -http://purl.obolibrary.org/obo/UBERON_0004641;spleen capsule;splenic capsule -http://purl.obolibrary.org/obo/UBERON_0004641;spleen capsule;tunica fibrosa (splen)(lien) -http://purl.obolibrary.org/obo/UBERON_0004641;spleen capsule;tunica fibrosa splenica -http://purl.obolibrary.org/obo/UBERON_0004642;third ventricle ependyma;3rd ventricle ependyma -http://purl.obolibrary.org/obo/UBERON_0004642;third ventricle ependyma;ependyma of third ventricle -http://purl.obolibrary.org/obo/UBERON_0004643;lateral ventricle ependyma;ependyma of lateral ventricle -http://purl.obolibrary.org/obo/UBERON_0004644;fourth ventricle ependyma;ependyma of fourth ventricle -http://purl.obolibrary.org/obo/UBERON_0004645;urinary bladder urothelium;bladder transitional cell epithelium -http://purl.obolibrary.org/obo/UBERON_0004645;urinary bladder urothelium;transitional epithelium of urinary bladder -http://purl.obolibrary.org/obo/UBERON_0004645;urinary bladder urothelium;urinary bladder transitional epithelium -http://purl.obolibrary.org/obo/UBERON_0004645;urinary bladder urothelium;urothelium of urinary bladder -http://purl.obolibrary.org/obo/UBERON_0004646;infraorbital artery;infra-orbital artery -http://purl.obolibrary.org/obo/UBERON_0004647;liver lobule;hepatic lobule -http://purl.obolibrary.org/obo/UBERON_0004647;liver lobule;lobuli hepatici -http://purl.obolibrary.org/obo/UBERON_0004647;liver lobule;lobulus hepaticus -http://purl.obolibrary.org/obo/UBERON_0004648;esophagus muscularis mucosa;esophagus muscularis mucosae -http://purl.obolibrary.org/obo/UBERON_0004648;esophagus muscularis mucosa;lamina muscularis mucosae (oesphagus) -http://purl.obolibrary.org/obo/UBERON_0004648;esophagus muscularis mucosa;lamina muscularis of esophageal mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004648;esophagus muscularis mucosa;muscularis mucosae of esophagus -http://purl.obolibrary.org/obo/UBERON_0004649;sphenoid bone pterygoid process;processus pterygoideus -http://purl.obolibrary.org/obo/UBERON_0004649;sphenoid bone pterygoid process;processus pterygoideus ossis sphenoidalis -http://purl.obolibrary.org/obo/UBERON_0004649;sphenoid bone pterygoid process;pterygoid process -http://purl.obolibrary.org/obo/UBERON_0004649;sphenoid bone pterygoid process;pterygoid process of sphenoid -http://purl.obolibrary.org/obo/UBERON_0004649;sphenoid bone pterygoid process;pterygoid process of sphenoid bone -http://purl.obolibrary.org/obo/UBERON_0004650;tongue keratinized epithelium;keratinized epithelium of tongue -http://purl.obolibrary.org/obo/UBERON_0004651;scapula spine;spine of scapula -http://purl.obolibrary.org/obo/UBERON_0004652;humerus diaphysis;body of humerus -http://purl.obolibrary.org/obo/UBERON_0004652;humerus diaphysis;corpus humeri -http://purl.obolibrary.org/obo/UBERON_0004652;humerus diaphysis;diaphysis of humerus -http://purl.obolibrary.org/obo/UBERON_0004652;humerus diaphysis;humeral diaphysis -http://purl.obolibrary.org/obo/UBERON_0004652;humerus diaphysis;shaft of humerus -http://purl.obolibrary.org/obo/UBERON_0004654;temporal process of zygomatic bone;facies temporalis ossis zygomatici -http://purl.obolibrary.org/obo/UBERON_0004654;temporal process of zygomatic bone;processus temporalis (os zygomaticum) -http://purl.obolibrary.org/obo/UBERON_0004654;temporal process of zygomatic bone;processus temporalis ossis zygomatici -http://purl.obolibrary.org/obo/UBERON_0004654;temporal process of zygomatic bone;zygomatic bone temporal process -http://purl.obolibrary.org/obo/UBERON_0004655;zygomatic process of temporal bone;processus zygomaticus -http://purl.obolibrary.org/obo/UBERON_0004655;zygomatic process of temporal bone;processus zygomaticus ossis temporalis -http://purl.obolibrary.org/obo/UBERON_0004655;zygomatic process of temporal bone;temporal bone zygomatic process -http://purl.obolibrary.org/obo/UBERON_0004655;zygomatic process of temporal bone;temporal zygomatic process -http://purl.obolibrary.org/obo/UBERON_0004657;mandible condylar process;condylar process of mandible -http://purl.obolibrary.org/obo/UBERON_0004657;mandible condylar process;condyle of the mandible -http://purl.obolibrary.org/obo/UBERON_0004657;mandible condylar process;mandibular condyle -http://purl.obolibrary.org/obo/UBERON_0004657;mandible condylar process;processus condylaris -http://purl.obolibrary.org/obo/UBERON_0004657;mandible condylar process;processus condylaris mandibulae -http://purl.obolibrary.org/obo/UBERON_0004658;mandible head;head of mandible -http://purl.obolibrary.org/obo/UBERON_0004658;mandible head;mandibular head -http://purl.obolibrary.org/obo/UBERON_0004659;mandible neck;mandibular neck -http://purl.obolibrary.org/obo/UBERON_0004659;mandible neck;neck of mandible -http://purl.obolibrary.org/obo/UBERON_0004660;mandible coronoid process;coronoid process of mandible -http://purl.obolibrary.org/obo/UBERON_0004660;mandible coronoid process;processus coronoideus (mandibula) -http://purl.obolibrary.org/obo/UBERON_0004661;mandible temporal crest;crista temporalis (mandibulae) -http://purl.obolibrary.org/obo/UBERON_0004661;mandible temporal crest;crista temporalis mandibulae -http://purl.obolibrary.org/obo/UBERON_0004661;mandible temporal crest;temporal crest of mandible -http://purl.obolibrary.org/obo/UBERON_0004662;vertebra lamina;lamina arcus vertebrae -http://purl.obolibrary.org/obo/UBERON_0004662;vertebra lamina;lamina of vertebra -http://purl.obolibrary.org/obo/UBERON_0004662;vertebra lamina;lamina of vertebral arch -http://purl.obolibrary.org/obo/UBERON_0004662;vertebra lamina;neural arch lamina -http://purl.obolibrary.org/obo/UBERON_0004662;vertebra lamina;vertebral lamina -http://purl.obolibrary.org/obo/UBERON_0004663;aorta wall;aortic wall -http://purl.obolibrary.org/obo/UBERON_0004663;aorta wall;wall of aorta -http://purl.obolibrary.org/obo/UBERON_0004664;aorta tunica adventitia;tunica adventitia of aorta -http://purl.obolibrary.org/obo/UBERON_0004665;muscular coat of seminal vesicle;muscle layer of seminal vesicle -http://purl.obolibrary.org/obo/UBERON_0004665;muscular coat of seminal vesicle;muscular coat of seminal gland -http://purl.obolibrary.org/obo/UBERON_0004665;muscular coat of seminal vesicle;muscular layer of seminal gland -http://purl.obolibrary.org/obo/UBERON_0004665;muscular coat of seminal vesicle;tunica muscularis (vesicula seminalis) -http://purl.obolibrary.org/obo/UBERON_0004665;muscular coat of seminal vesicle;tunica muscularis glandulae vesiculosae -http://purl.obolibrary.org/obo/UBERON_0004666;interventricular septum membranous part;cardiac ventricular membranous septum -http://purl.obolibrary.org/obo/UBERON_0004666;interventricular septum membranous part;membranous interventricular septum -http://purl.obolibrary.org/obo/UBERON_0004666;interventricular septum membranous part;membranous part interventricular septum -http://purl.obolibrary.org/obo/UBERON_0004666;interventricular septum membranous part;membranous part of interventricular septum -http://purl.obolibrary.org/obo/UBERON_0004666;interventricular septum membranous part;membranous portion of interventricular septum -http://purl.obolibrary.org/obo/UBERON_0004666;interventricular septum membranous part;pars membranacea (septi interventricularis) -http://purl.obolibrary.org/obo/UBERON_0004666;interventricular septum membranous part;pars membranacea septi interventricularis -http://purl.obolibrary.org/obo/UBERON_0004667;interventricular septum muscular part;cardiac ventricular muscular septum -http://purl.obolibrary.org/obo/UBERON_0004667;interventricular septum muscular part;muscular interventricular septum -http://purl.obolibrary.org/obo/UBERON_0004667;interventricular septum muscular part;muscular part interventricular septum -http://purl.obolibrary.org/obo/UBERON_0004667;interventricular septum muscular part;muscular part of interventricular septum -http://purl.obolibrary.org/obo/UBERON_0004667;interventricular septum muscular part;pars muscularis (septi interventricularis) -http://purl.obolibrary.org/obo/UBERON_0004667;interventricular septum muscular part;pars muscularis septi interventricularis -http://purl.obolibrary.org/obo/UBERON_0004667;interventricular septum muscular part;septum membranaceum -http://purl.obolibrary.org/obo/UBERON_0004667;interventricular septum muscular part;ventricular muscular septum -http://purl.obolibrary.org/obo/UBERON_0004668;fourth ventricle aperture;aperture of 4th ventricle -http://purl.obolibrary.org/obo/UBERON_0004668;fourth ventricle aperture;aperture of fourth ventricle -http://purl.obolibrary.org/obo/UBERON_0004670;ependyma;ependyma of neuraxis -http://purl.obolibrary.org/obo/UBERON_0004670;ependyma;ependymal epithelium -http://purl.obolibrary.org/obo/UBERON_0004671;gyrus rectus;gyrus rectus -http://purl.obolibrary.org/obo/UBERON_0004671;gyrus rectus;medial part of gyri orbitales -http://purl.obolibrary.org/obo/UBERON_0004671;gyrus rectus;rectal gyrus -http://purl.obolibrary.org/obo/UBERON_0004671;gyrus rectus;rectus gyrus -http://purl.obolibrary.org/obo/UBERON_0004671;gyrus rectus;straight gyrus -http://purl.obolibrary.org/obo/UBERON_0004672;posterior horn lateral ventricle;cornu occipitale (ventriculi lateralis) -http://purl.obolibrary.org/obo/UBERON_0004672;posterior horn lateral ventricle;cornu occipitale ventriculi lateralis -http://purl.obolibrary.org/obo/UBERON_0004672;posterior horn lateral ventricle;cornu posterius (ventriculi lateralis) -http://purl.obolibrary.org/obo/UBERON_0004672;posterior horn lateral ventricle;cornu posterius ventriculi lateralis -http://purl.obolibrary.org/obo/UBERON_0004672;posterior horn lateral ventricle;occipital horn -http://purl.obolibrary.org/obo/UBERON_0004672;posterior horn lateral ventricle;occipital horn of lateral ventricle -http://purl.obolibrary.org/obo/UBERON_0004672;posterior horn lateral ventricle;posterior horn lateral ventricle -http://purl.obolibrary.org/obo/UBERON_0004672;posterior horn lateral ventricle;posterior horn of lateral ventricle -http://purl.obolibrary.org/obo/UBERON_0004672;posterior horn lateral ventricle;posterior horn of the lateral ventricle -http://purl.obolibrary.org/obo/UBERON_0004672;posterior horn lateral ventricle;ventriculus lateralis, cornu occipitale -http://purl.obolibrary.org/obo/UBERON_0004672;posterior horn lateral ventricle;ventriculus lateralis, cornu posterius -http://purl.obolibrary.org/obo/UBERON_0004673;trigeminal nerve root;radix descendens nervi trigemini -http://purl.obolibrary.org/obo/UBERON_0004673;trigeminal nerve root;root of trigeminal V nerve -http://purl.obolibrary.org/obo/UBERON_0004673;trigeminal nerve root;root of trigeminal nerve -http://purl.obolibrary.org/obo/UBERON_0004673;trigeminal nerve root;trigeminal nerve root -http://purl.obolibrary.org/obo/UBERON_0004673;trigeminal nerve root;trigeminal neural root -http://purl.obolibrary.org/obo/UBERON_0004674;facial nerve root;central part of facial nerve -http://purl.obolibrary.org/obo/UBERON_0004674;facial nerve root;facial nerve fibers -http://purl.obolibrary.org/obo/UBERON_0004674;facial nerve root;facial nerve root -http://purl.obolibrary.org/obo/UBERON_0004674;facial nerve root;facial neural root -http://purl.obolibrary.org/obo/UBERON_0004674;facial nerve root;fibrae nervi facialis -http://purl.obolibrary.org/obo/UBERON_0004674;facial nerve root;root of facial nerve -http://purl.obolibrary.org/obo/UBERON_0004675;hypoglossal nerve root;central part of hypoglossal nerve -http://purl.obolibrary.org/obo/UBERON_0004675;hypoglossal nerve root;fibrae nervi hypoglossi -http://purl.obolibrary.org/obo/UBERON_0004675;hypoglossal nerve root;hypoglossal nerve fiber bundle -http://purl.obolibrary.org/obo/UBERON_0004675;hypoglossal nerve root;hypoglossal nerve fibers -http://purl.obolibrary.org/obo/UBERON_0004675;hypoglossal nerve root;hypoglossal nerve root -http://purl.obolibrary.org/obo/UBERON_0004675;hypoglossal nerve root;hypoglossal nerve tract -http://purl.obolibrary.org/obo/UBERON_0004675;hypoglossal nerve root;root of hypoglossal nerve -http://purl.obolibrary.org/obo/UBERON_0004676;spinal cord lateral horn;columna grisea intermedia medullare spinalis -http://purl.obolibrary.org/obo/UBERON_0004676;spinal cord lateral horn;cornu laterale medullae spinalis -http://purl.obolibrary.org/obo/UBERON_0004676;spinal cord lateral horn;intermediate gray column of spinal cord -http://purl.obolibrary.org/obo/UBERON_0004676;spinal cord lateral horn;intermediate grey column of spinal cord -http://purl.obolibrary.org/obo/UBERON_0004676;spinal cord lateral horn;lateral gray column of spinal cord -http://purl.obolibrary.org/obo/UBERON_0004676;spinal cord lateral horn;lateral gray horn -http://purl.obolibrary.org/obo/UBERON_0004676;spinal cord lateral horn;lateral gray matter of spinal cord -http://purl.obolibrary.org/obo/UBERON_0004676;spinal cord lateral horn;lateral horn of spinal cord -http://purl.obolibrary.org/obo/UBERON_0004676;spinal cord lateral horn;spinal cord intermediate horn -http://purl.obolibrary.org/obo/UBERON_0004676;spinal cord lateral horn;spinal cord lateral horn -http://purl.obolibrary.org/obo/UBERON_0004677;spinal cord gray commissure;area spinalis X -http://purl.obolibrary.org/obo/UBERON_0004677;spinal cord gray commissure;gray commissure of spinal cord -http://purl.obolibrary.org/obo/UBERON_0004677;spinal cord gray commissure;lamina X -http://purl.obolibrary.org/obo/UBERON_0004677;spinal cord gray commissure;lamina X of gray matter of spinal cord -http://purl.obolibrary.org/obo/UBERON_0004677;spinal cord gray commissure;rexed lamina X -http://purl.obolibrary.org/obo/UBERON_0004677;spinal cord gray commissure;spinal area X -http://purl.obolibrary.org/obo/UBERON_0004677;spinal cord gray commissure;spinal cord gray commissure -http://purl.obolibrary.org/obo/UBERON_0004677;spinal cord gray commissure;spinal cord grey commissure -http://purl.obolibrary.org/obo/UBERON_0004677;spinal cord gray commissure;spinal lamina X -http://purl.obolibrary.org/obo/UBERON_0004678;apex of spinal cord dorsal horn;apex columnae posterioris -http://purl.obolibrary.org/obo/UBERON_0004678;apex of spinal cord dorsal horn;apex cornu posterioris medullae spinalis -http://purl.obolibrary.org/obo/UBERON_0004678;apex of spinal cord dorsal horn;apex of dorsal gray column -http://purl.obolibrary.org/obo/UBERON_0004678;apex of spinal cord dorsal horn;apex of dorsal gray column of spinal cord -http://purl.obolibrary.org/obo/UBERON_0004678;apex of spinal cord dorsal horn;apex of dorsal horn of spinal cord -http://purl.obolibrary.org/obo/UBERON_0004678;apex of spinal cord dorsal horn;apex of posterior horn of spinal cord -http://purl.obolibrary.org/obo/UBERON_0004678;apex of spinal cord dorsal horn;apex of spinal cord dorsal horn -http://purl.obolibrary.org/obo/UBERON_0004678;apex of spinal cord dorsal horn;apex of spinal cord posterior horn -http://purl.obolibrary.org/obo/UBERON_0004679;dentate gyrus molecular layer;dentate gyrus molecular layer -http://purl.obolibrary.org/obo/UBERON_0004679;dentate gyrus molecular layer;molecular layer of dentate gyrus -http://purl.obolibrary.org/obo/UBERON_0004679;dentate gyrus molecular layer;molecular layer of the dentate gyrus -http://purl.obolibrary.org/obo/UBERON_0004679;dentate gyrus molecular layer;stratum moleculare gyri dentati -http://purl.obolibrary.org/obo/UBERON_0004680;body of fornix;body of fornix -http://purl.obolibrary.org/obo/UBERON_0004680;body of fornix;body of fornix of forebrain -http://purl.obolibrary.org/obo/UBERON_0004680;body of fornix;column of fornix -http://purl.obolibrary.org/obo/UBERON_0004680;body of fornix;columna fornicis -http://purl.obolibrary.org/obo/UBERON_0004680;body of fornix;columns of fornix -http://purl.obolibrary.org/obo/UBERON_0004680;body of fornix;fornix body -http://purl.obolibrary.org/obo/UBERON_0004681;vestibular system;equilibrioception system -http://purl.obolibrary.org/obo/UBERON_0004681;vestibular system;vestibular organ system -http://purl.obolibrary.org/obo/UBERON_0004681;vestibular system;vestibular system -http://purl.obolibrary.org/obo/UBERON_0004681;vestibular system;vestibulomotor system -http://purl.obolibrary.org/obo/UBERON_0004682;corona radiata of neuraxis;corona radiata -http://purl.obolibrary.org/obo/UBERON_0004683;parasubiculum;parasubicular area -http://purl.obolibrary.org/obo/UBERON_0004683;parasubiculum;parasubicular cortex (parasubiculum) -http://purl.obolibrary.org/obo/UBERON_0004683;parasubiculum;parasubiculum -http://purl.obolibrary.org/obo/UBERON_0004684;raphe nuclei;nuclei raphes -http://purl.obolibrary.org/obo/UBERON_0004684;raphe nuclei;raphe cluster -http://purl.obolibrary.org/obo/UBERON_0004684;raphe nuclei;raphe nuclei -http://purl.obolibrary.org/obo/UBERON_0004684;raphe nuclei;raphe nuclei set -http://purl.obolibrary.org/obo/UBERON_0004684;raphe nuclei;raphe nucleus -http://purl.obolibrary.org/obo/UBERON_0004684;raphe nuclei;raphe of mesenchephalon -http://purl.obolibrary.org/obo/UBERON_0004684;raphe nuclei;set of raphe nuclei -http://purl.obolibrary.org/obo/UBERON_0004686;gastro-splenic ligament;gastrolienal ligament -http://purl.obolibrary.org/obo/UBERON_0004686;gastro-splenic ligament;gastrosplenc ligament -http://purl.obolibrary.org/obo/UBERON_0004686;gastro-splenic ligament;gastrosplenic ligament -http://purl.obolibrary.org/obo/UBERON_0004686;gastro-splenic ligament;ligamentum gastrosplenicum -http://purl.obolibrary.org/obo/UBERON_0004687;lieno-renal ligament;lienorenal ligament -http://purl.obolibrary.org/obo/UBERON_0004687;lieno-renal ligament;ligamentum lienorenale -http://purl.obolibrary.org/obo/UBERON_0004687;lieno-renal ligament;ligamentum splenorenale -http://purl.obolibrary.org/obo/UBERON_0004687;lieno-renal ligament;ligamentum splenorenale (lienorenale, phrenicosplenicum) -http://purl.obolibrary.org/obo/UBERON_0004687;lieno-renal ligament;phrenicolienal ligament -http://purl.obolibrary.org/obo/UBERON_0004687;lieno-renal ligament;splenicorenal ligament -http://purl.obolibrary.org/obo/UBERON_0004687;lieno-renal ligament;splenorenal ligament -http://purl.obolibrary.org/obo/UBERON_0004688;costo-cervical trunk;costocervical trunk -http://purl.obolibrary.org/obo/UBERON_0004688;costo-cervical trunk;trunk of costocervical artery -http://purl.obolibrary.org/obo/UBERON_0004689;naso-frontal vein;nasofrontal vein -http://purl.obolibrary.org/obo/UBERON_0004690;pancreaticoduodenal vein;Superior posterior pancreaticoduodenal vein -http://purl.obolibrary.org/obo/UBERON_0004690;pancreaticoduodenal vein;pancreatico-duodenal vein -http://purl.obolibrary.org/obo/UBERON_0004690;pancreaticoduodenal vein;pancreaticoduodenal vein -http://purl.obolibrary.org/obo/UBERON_0004690;pancreaticoduodenal vein;vena pancreaticoduodenalis -http://purl.obolibrary.org/obo/UBERON_0004690;pancreaticoduodenal vein;vena pancreaticoduodenalis superior posterior -http://purl.obolibrary.org/obo/UBERON_0004691;bulbourethral gland secretion;bulbo-urethral gland secretion -http://purl.obolibrary.org/obo/UBERON_0004691;bulbourethral gland secretion;pre-ejaculate -http://purl.obolibrary.org/obo/UBERON_0004691;bulbourethral gland secretion;secretion of bulbo-urethral gland -http://purl.obolibrary.org/obo/UBERON_0004692;external naris epithelium; -http://purl.obolibrary.org/obo/UBERON_0004693;Peyer's patch epithelium;Peyer's patch epithelium -http://purl.obolibrary.org/obo/UBERON_0004694;Harderian gland epithelium;epithelium of harderian gland -http://purl.obolibrary.org/obo/UBERON_0004694;Harderian gland epithelium;harderian gland epithelium -http://purl.obolibrary.org/obo/UBERON_0004695;arterial system smooth muscle; -http://purl.obolibrary.org/obo/UBERON_0004696;venous system smooth muscle; -http://purl.obolibrary.org/obo/UBERON_0004697;Peyer's patch germinal center; -http://purl.obolibrary.org/obo/UBERON_0004698;vena cava endothelium; -http://purl.obolibrary.org/obo/UBERON_0004699;outflow tract endothelium; -http://purl.obolibrary.org/obo/UBERON_0004700;arterial system endothelium; -http://purl.obolibrary.org/obo/UBERON_0004701;venous system endothelium; -http://purl.obolibrary.org/obo/UBERON_0004702;respiratory system blood vessel endothelium; -http://purl.obolibrary.org/obo/UBERON_0004703;dorsal thalamus;dorsal thalamus -http://purl.obolibrary.org/obo/UBERON_0004703;dorsal thalamus;dorsal thalamus (Anthoney) -http://purl.obolibrary.org/obo/UBERON_0004703;dorsal thalamus;dorsal tier of thalamus -http://purl.obolibrary.org/obo/UBERON_0004703;dorsal thalamus;thalamus dorsalis -http://purl.obolibrary.org/obo/UBERON_0004703;dorsal thalamus;thalamus proper -http://purl.obolibrary.org/obo/UBERON_0004703;dorsal thalamus;thalamus, pars dorsalis -http://purl.obolibrary.org/obo/UBERON_0004704;bone fossa; -http://purl.obolibrary.org/obo/UBERON_0004705;fenestra; -http://purl.obolibrary.org/obo/UBERON_0004706;bulbus cordis;primitive right ventricle endocardium -http://purl.obolibrary.org/obo/UBERON_0004708;paired limb/fin;girdle-associated appendage -http://purl.obolibrary.org/obo/UBERON_0004708;paired limb/fin;jointed paired lateral appendage -http://purl.obolibrary.org/obo/UBERON_0004708;paired limb/fin;limb or fin -http://purl.obolibrary.org/obo/UBERON_0004708;paired limb/fin;limb/fin -http://purl.obolibrary.org/obo/UBERON_0004708;paired limb/fin;paired appendage -http://purl.obolibrary.org/obo/UBERON_0004708;paired limb/fin;pectoral or pelvic appendage -http://purl.obolibrary.org/obo/UBERON_0004708;paired limb/fin;pelvic/pectoral appendage -http://purl.obolibrary.org/obo/UBERON_0004709;pelvic appendage;hindlimb/pelvic fin -http://purl.obolibrary.org/obo/UBERON_0004709;pelvic appendage;pelvic appendage -http://purl.obolibrary.org/obo/UBERON_0004709;pelvic appendage;pelvic limb/fin -http://purl.obolibrary.org/obo/UBERON_0004709;pelvic appendage;posterior limb/fin -http://purl.obolibrary.org/obo/UBERON_0004709;pelvic appendage;posterior paired appendage -http://purl.obolibrary.org/obo/UBERON_0004710;pectoral appendage;anterior limb/fin -http://purl.obolibrary.org/obo/UBERON_0004710;pectoral appendage;anterior paired appendage -http://purl.obolibrary.org/obo/UBERON_0004710;pectoral appendage;forelimb - pectoral fin -http://purl.obolibrary.org/obo/UBERON_0004710;pectoral appendage;forelimb or pectoral fin -http://purl.obolibrary.org/obo/UBERON_0004710;pectoral appendage;forelimb/pectoral fin -http://purl.obolibrary.org/obo/UBERON_0004710;pectoral appendage;pectoral limb/fin -http://purl.obolibrary.org/obo/UBERON_0004711;jugular vein; -http://purl.obolibrary.org/obo/UBERON_0004713;corpus cavernosum penis;cavernous body of penis -http://purl.obolibrary.org/obo/UBERON_0004713;corpus cavernosum penis;corpus cavernosum -http://purl.obolibrary.org/obo/UBERON_0004713;corpus cavernosum penis;corpus cavernosum of penis -http://purl.obolibrary.org/obo/UBERON_0004713;corpus cavernosum penis;corpus cavernosum penis -http://purl.obolibrary.org/obo/UBERON_0004713;corpus cavernosum penis;corpus spongiosum penis -http://purl.obolibrary.org/obo/UBERON_0004713;corpus cavernosum penis;penile corpus cavernosum -http://purl.obolibrary.org/obo/UBERON_0004713;corpus cavernosum penis;penis erectile tissue -http://purl.obolibrary.org/obo/UBERON_0004713;corpus cavernosum penis;spongy body of male urethra -http://purl.obolibrary.org/obo/UBERON_0004713;corpus cavernosum penis;spongy body of penis -http://purl.obolibrary.org/obo/UBERON_0004714;septum pellucidum;lateral septum -http://purl.obolibrary.org/obo/UBERON_0004714;septum pellucidum;pellucidum -http://purl.obolibrary.org/obo/UBERON_0004714;septum pellucidum;septal pellucidum -http://purl.obolibrary.org/obo/UBERON_0004714;septum pellucidum;septum gliosum -http://purl.obolibrary.org/obo/UBERON_0004714;septum pellucidum;septum lucidum -http://purl.obolibrary.org/obo/UBERON_0004714;septum pellucidum;septum pellucidum of telencephalic ventricle -http://purl.obolibrary.org/obo/UBERON_0004714;septum pellucidum;supracommissural septum -http://purl.obolibrary.org/obo/UBERON_0004715;annulus fibrosus disci intervertebralis;anulus fibrosus (diskus intervertebralis) -http://purl.obolibrary.org/obo/UBERON_0004715;annulus fibrosus disci intervertebralis;anulus fibrosus of intervertebral disk -http://purl.obolibrary.org/obo/UBERON_0004716;conceptus;embryo plus adnexa -http://purl.obolibrary.org/obo/UBERON_0004717;Brodmann (1909) area 29;B09-29 -http://purl.obolibrary.org/obo/UBERON_0004717;Brodmann (1909) area 29;Brodmann (1909) area 29 -http://purl.obolibrary.org/obo/UBERON_0004717;Brodmann (1909) area 29;Brodmann area 29 -http://purl.obolibrary.org/obo/UBERON_0004717;Brodmann (1909) area 29;Brodmann area 29, granular retrolimbic -http://purl.obolibrary.org/obo/UBERON_0004717;Brodmann (1909) area 29;Brodmann's area 29 -http://purl.obolibrary.org/obo/UBERON_0004717;Brodmann (1909) area 29;area 29 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0004717;Brodmann (1909) area 29;area 29 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0004717;Brodmann (1909) area 29;area retrolimbica granularis -http://purl.obolibrary.org/obo/UBERON_0004718;Brodmann (1909) area 26;B09-26 -http://purl.obolibrary.org/obo/UBERON_0004718;Brodmann (1909) area 26;Brodmann (1909) area 26 -http://purl.obolibrary.org/obo/UBERON_0004718;Brodmann (1909) area 26;Brodmann area 26 -http://purl.obolibrary.org/obo/UBERON_0004718;Brodmann (1909) area 26;Brodmann area 26, ectosplenial -http://purl.obolibrary.org/obo/UBERON_0004718;Brodmann (1909) area 26;area 26 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0004718;Brodmann (1909) area 26;area 26 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0004718;Brodmann (1909) area 26;area ectosplenialis -http://purl.obolibrary.org/obo/UBERON_0004718;Brodmann (1909) area 26;ectosplenial area -http://purl.obolibrary.org/obo/UBERON_0004719;kidney arcuate vein;arciform vein of kidney -http://purl.obolibrary.org/obo/UBERON_0004719;kidney arcuate vein;arcuate vein of kidney -http://purl.obolibrary.org/obo/UBERON_0004719;kidney arcuate vein;renal arcuate vein -http://purl.obolibrary.org/obo/UBERON_0004719;kidney arcuate vein;venae arcuatae renis -http://purl.obolibrary.org/obo/UBERON_0004720;cerebellar vermis;cerebellum vermis -http://purl.obolibrary.org/obo/UBERON_0004720;cerebellar vermis;vermal parts of the cerebellum -http://purl.obolibrary.org/obo/UBERON_0004720;cerebellar vermis;vermal regions -http://purl.obolibrary.org/obo/UBERON_0004720;cerebellar vermis;vermis cerebelli [I-X] -http://purl.obolibrary.org/obo/UBERON_0004720;cerebellar vermis;vermis of cerebellum -http://purl.obolibrary.org/obo/UBERON_0004720;cerebellar vermis;vermis of cerebellum [I-X] -http://purl.obolibrary.org/obo/UBERON_0004721;crista ampullaris;ampullary crest of semicircular duct -http://purl.obolibrary.org/obo/UBERON_0004722;deep cervical lymph node; -http://purl.obolibrary.org/obo/UBERON_0004723;interlobular artery;interlobular renal artery -http://purl.obolibrary.org/obo/UBERON_0004723;interlobular artery;kidney interlobular artery -http://purl.obolibrary.org/obo/UBERON_0004724;medial palpebral ligament; -http://purl.obolibrary.org/obo/UBERON_0004725;piriform cortex;area prepiriformis -http://purl.obolibrary.org/obo/UBERON_0004725;piriform cortex;cortex piriformis -http://purl.obolibrary.org/obo/UBERON_0004725;piriform cortex;eupalaeocortex -http://purl.obolibrary.org/obo/UBERON_0004725;piriform cortex;olfactory pallium -http://purl.obolibrary.org/obo/UBERON_0004725;piriform cortex;palaeocortex II -http://purl.obolibrary.org/obo/UBERON_0004725;piriform cortex;paleopallium -http://purl.obolibrary.org/obo/UBERON_0004725;piriform cortex;piriform area -http://purl.obolibrary.org/obo/UBERON_0004725;piriform cortex;piriform lobe -http://purl.obolibrary.org/obo/UBERON_0004725;piriform cortex;primary olfactory areas -http://purl.obolibrary.org/obo/UBERON_0004725;piriform cortex;primary olfactory cortex -http://purl.obolibrary.org/obo/UBERON_0004725;piriform cortex;pyriform cortex -http://purl.obolibrary.org/obo/UBERON_0004725;piriform cortex;pyriform lobe -http://purl.obolibrary.org/obo/UBERON_0004725;piriform cortex;regio praepiriformis -http://purl.obolibrary.org/obo/UBERON_0004726;vasa recta;arteriolae rectae renis -http://purl.obolibrary.org/obo/UBERON_0004726;vasa recta;kidney vasa recta -http://purl.obolibrary.org/obo/UBERON_0004726;vasa recta;renal medullary capillary -http://purl.obolibrary.org/obo/UBERON_0004726;vasa recta;set of straight arterioles of kidney -http://purl.obolibrary.org/obo/UBERON_0004726;vasa recta;straight arterioles of kidney -http://purl.obolibrary.org/obo/UBERON_0004726;vasa recta;vasa recta of kidney -http://purl.obolibrary.org/obo/UBERON_0004726;vasa recta;vasa recta renis -http://purl.obolibrary.org/obo/UBERON_0004727;cochlear nerve;auditory nerve -http://purl.obolibrary.org/obo/UBERON_0004727;cochlear nerve;cochlear root of acoustic nerve -http://purl.obolibrary.org/obo/UBERON_0004727;cochlear nerve;cochlear root of eighth cranial nerve -http://purl.obolibrary.org/obo/UBERON_0004727;cochlear nerve;vestibulocochlear VIII nerve cochlear component -http://purl.obolibrary.org/obo/UBERON_0004731;neuromere;neural tube metameric segment -http://purl.obolibrary.org/obo/UBERON_0004731;neuromere;neural tube segment -http://purl.obolibrary.org/obo/UBERON_0004731;neuromere;neuromere -http://purl.obolibrary.org/obo/UBERON_0004731;neuromere;neuromeres -http://purl.obolibrary.org/obo/UBERON_0004732;segmental subdivision of nervous system;neuromere -http://purl.obolibrary.org/obo/UBERON_0004733;segmental subdivision of hindbrain;hindbrain segment -http://purl.obolibrary.org/obo/UBERON_0004733;segmental subdivision of hindbrain;segment of hindbrain -http://purl.obolibrary.org/obo/UBERON_0004734;gastrula;gastrula embryo -http://purl.obolibrary.org/obo/UBERON_0004735;archenteron; -http://purl.obolibrary.org/obo/UBERON_0004736;metanephric glomerulus;glomerulus of metanephros -http://purl.obolibrary.org/obo/UBERON_0004737;metanephric collecting duct;collecting duct of metanephros -http://purl.obolibrary.org/obo/UBERON_0004738;metanephric juxtaglomerular apparatus;juxtaglomerular apparatus of metanephros -http://purl.obolibrary.org/obo/UBERON_0004739;pronephric glomerulus;glomerulus of pronephros -http://purl.obolibrary.org/obo/UBERON_0004740;basibranchial bone;basibranchial bone -http://purl.obolibrary.org/obo/UBERON_0004740;basibranchial bone;basibranchial bones -http://purl.obolibrary.org/obo/UBERON_0004741;cleithrum;cleithra -http://purl.obolibrary.org/obo/UBERON_0004741;cleithrum;cleithrum bone -http://purl.obolibrary.org/obo/UBERON_0004742;dentary;dentaries -http://purl.obolibrary.org/obo/UBERON_0004742;dentary;dentary bone -http://purl.obolibrary.org/obo/UBERON_0004743;coracoid bone;coracoid -http://purl.obolibrary.org/obo/UBERON_0004743;coracoid bone;coracoids -http://purl.obolibrary.org/obo/UBERON_0004744;articular/anguloarticular;angulo-articular -http://purl.obolibrary.org/obo/UBERON_0004744;articular/anguloarticular;anguloarticular -http://purl.obolibrary.org/obo/UBERON_0004744;articular/anguloarticular;anguloarticular - malleus -http://purl.obolibrary.org/obo/UBERON_0004745;parasphenoid; -http://purl.obolibrary.org/obo/UBERON_0004746;prootic bone;prootic -http://purl.obolibrary.org/obo/UBERON_0004747;supraoccipital bone;supraoccipital -http://purl.obolibrary.org/obo/UBERON_0004749;blastodisc;germinal disc -http://purl.obolibrary.org/obo/UBERON_0004750;blastoderm; -http://purl.obolibrary.org/obo/UBERON_0004751;hypohyal bone;hypohyals -http://purl.obolibrary.org/obo/UBERON_0004752;palatoquadrate cartilage;dorsal mandibular cartilage -http://purl.obolibrary.org/obo/UBERON_0004752;palatoquadrate cartilage;palatoquadrate -http://purl.obolibrary.org/obo/UBERON_0004752;palatoquadrate cartilage;quadrate cartilage -http://purl.obolibrary.org/obo/UBERON_0004753;scapulocoracoid;scapulocoracoideum -http://purl.obolibrary.org/obo/UBERON_0004754;foramen ovale of heart;Bottalo's foramen -http://purl.obolibrary.org/obo/UBERON_0004754;foramen ovale of heart;falx septi -http://purl.obolibrary.org/obo/UBERON_0004754;foramen ovale of heart;foramen ovale cordis -http://purl.obolibrary.org/obo/UBERON_0004754;foramen ovale of heart;ostium secundum of Born -http://purl.obolibrary.org/obo/UBERON_0004755;skeletal tissue; -http://purl.obolibrary.org/obo/UBERON_0004756;dermal skeletal element;dermal element -http://purl.obolibrary.org/obo/UBERON_0004757;rectal salt gland; -http://purl.obolibrary.org/obo/UBERON_0004758;salt gland; -http://purl.obolibrary.org/obo/UBERON_0004759;cranial salt gland; -http://purl.obolibrary.org/obo/UBERON_0004760;gland of anal canal;gland of anal canal -http://purl.obolibrary.org/obo/UBERON_0004761;cartilaginous neurocranium;cartilaginous chondocranium -http://purl.obolibrary.org/obo/UBERON_0004761;cartilaginous neurocranium;cartiligionous skeletal structure of skull -http://purl.obolibrary.org/obo/UBERON_0004763;endochondral bone tissue; -http://purl.obolibrary.org/obo/UBERON_0004764;intramembranous bone tissue; -http://purl.obolibrary.org/obo/UBERON_0004765;skeletal element; -http://purl.obolibrary.org/obo/UBERON_0004766;cranial bone;cranium bone -http://purl.obolibrary.org/obo/UBERON_0004767;vomerine tooth; -http://purl.obolibrary.org/obo/UBERON_0004768;bone of lower jaw;lower jaw bone -http://purl.obolibrary.org/obo/UBERON_0004769;diaphysis;body of long bone -http://purl.obolibrary.org/obo/UBERON_0004769;diaphysis;long bone diaphysis -http://purl.obolibrary.org/obo/UBERON_0004769;diaphysis;shaft of long bone -http://purl.obolibrary.org/obo/UBERON_0004770;articular system;joint system -http://purl.obolibrary.org/obo/UBERON_0004770;articular system;set of all joints -http://purl.obolibrary.org/obo/UBERON_0004770;articular system;set of all joints of body -http://purl.obolibrary.org/obo/UBERON_0004770;articular system;set of joints of body -http://purl.obolibrary.org/obo/UBERON_0004771;posterior nasal aperture;posterior nasal apperture -http://purl.obolibrary.org/obo/UBERON_0004772;eyelid tarsus;tarsal plate -http://purl.obolibrary.org/obo/UBERON_0004772;eyelid tarsus;tarsal plate of eyelid -http://purl.obolibrary.org/obo/UBERON_0004772;eyelid tarsus;tarsus palpebralis -http://purl.obolibrary.org/obo/UBERON_0004773;superior eyelid tarsus;superior tarsal plate -http://purl.obolibrary.org/obo/UBERON_0004773;superior eyelid tarsus;superior tarsus -http://purl.obolibrary.org/obo/UBERON_0004773;superior eyelid tarsus;superior tarsus of eyelid -http://purl.obolibrary.org/obo/UBERON_0004773;superior eyelid tarsus;tarsal plate of upper eyelid -http://purl.obolibrary.org/obo/UBERON_0004773;superior eyelid tarsus;tarsus of upper eyelid -http://purl.obolibrary.org/obo/UBERON_0004773;superior eyelid tarsus;tarsus superior -http://purl.obolibrary.org/obo/UBERON_0004774;inferior eyelid tarsus;inferior tarsal plate -http://purl.obolibrary.org/obo/UBERON_0004774;inferior eyelid tarsus;inferior tarsus -http://purl.obolibrary.org/obo/UBERON_0004774;inferior eyelid tarsus;inferior tarsus of eyelid -http://purl.obolibrary.org/obo/UBERON_0004774;inferior eyelid tarsus;tarsal plate of lower eyelid -http://purl.obolibrary.org/obo/UBERON_0004774;inferior eyelid tarsus;tarsus inferior -http://purl.obolibrary.org/obo/UBERON_0004774;inferior eyelid tarsus;tarsus of lower eyelid -http://purl.obolibrary.org/obo/UBERON_0004775;outer renal medulla vasa recta;kidney outer medulla vasa recta -http://purl.obolibrary.org/obo/UBERON_0004775;outer renal medulla vasa recta;kidney outer renal medulla vasa recta -http://purl.obolibrary.org/obo/UBERON_0004775;outer renal medulla vasa recta;outer medulla of kidney vasa recta -http://purl.obolibrary.org/obo/UBERON_0004775;outer renal medulla vasa recta;outer zone of medulla of kidney vasa recta -http://purl.obolibrary.org/obo/UBERON_0004775;outer renal medulla vasa recta;outer zone of renal medulla vasa recta -http://purl.obolibrary.org/obo/UBERON_0004775;outer renal medulla vasa recta;vasa recta of outer medulla of kidney -http://purl.obolibrary.org/obo/UBERON_0004775;outer renal medulla vasa recta;vasa recta of outer renal medulla -http://purl.obolibrary.org/obo/UBERON_0004775;outer renal medulla vasa recta;vasa recta of outer zone of medulla of kidney -http://purl.obolibrary.org/obo/UBERON_0004775;outer renal medulla vasa recta;vasa recta of outer zone of renal medulla -http://purl.obolibrary.org/obo/UBERON_0004776;inner renal medulla vasa recta;inner medulla of kidney vasa recta -http://purl.obolibrary.org/obo/UBERON_0004776;inner renal medulla vasa recta;inner zone of medulla of kidney vasa recta -http://purl.obolibrary.org/obo/UBERON_0004776;inner renal medulla vasa recta;inner zone of renal medulla vasa recta -http://purl.obolibrary.org/obo/UBERON_0004776;inner renal medulla vasa recta;set of inner region of renal pyramids vasa recta -http://purl.obolibrary.org/obo/UBERON_0004776;inner renal medulla vasa recta;vasa recta of inner medulla of kidney -http://purl.obolibrary.org/obo/UBERON_0004776;inner renal medulla vasa recta;vasa recta of inner renal medulla -http://purl.obolibrary.org/obo/UBERON_0004776;inner renal medulla vasa recta;vasa recta of inner zone of medulla of kidney -http://purl.obolibrary.org/obo/UBERON_0004776;inner renal medulla vasa recta;vasa recta of inner zone of renal medulla -http://purl.obolibrary.org/obo/UBERON_0004776;inner renal medulla vasa recta;vasa recta of set of inner region of renal pyramids -http://purl.obolibrary.org/obo/UBERON_0004777;respiratory system submucosa;apparatus respiratorius submucosa -http://purl.obolibrary.org/obo/UBERON_0004777;respiratory system submucosa;submucosa of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0004777;respiratory system submucosa;submucosa of respiratory system -http://purl.obolibrary.org/obo/UBERON_0004778;larynx submucosa;submucosa of larynx -http://purl.obolibrary.org/obo/UBERON_0004779;respiratory system lamina propria;apparatus respiratorius lamina propria -http://purl.obolibrary.org/obo/UBERON_0004779;respiratory system lamina propria;apparatus respiratorius lamina propria mucosa -http://purl.obolibrary.org/obo/UBERON_0004779;respiratory system lamina propria;lamina propria mucosa of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0004779;respiratory system lamina propria;lamina propria mucosa of respiratory system -http://purl.obolibrary.org/obo/UBERON_0004779;respiratory system lamina propria;lamina propria of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0004779;respiratory system lamina propria;lamina propria of respiratory system -http://purl.obolibrary.org/obo/UBERON_0004779;respiratory system lamina propria;respiratory system lamina propria mucosa -http://purl.obolibrary.org/obo/UBERON_0004780;gastrointestinal system lamina propria; -http://purl.obolibrary.org/obo/UBERON_0004781;gallbladder lamina propria;gall bladder lamina propria -http://purl.obolibrary.org/obo/UBERON_0004781;gallbladder lamina propria;gall bladder lamina propria mucosa -http://purl.obolibrary.org/obo/UBERON_0004781;gallbladder lamina propria;gallbladder lamina propria mucosa -http://purl.obolibrary.org/obo/UBERON_0004781;gallbladder lamina propria;lamina propria mucosa of gall bladder -http://purl.obolibrary.org/obo/UBERON_0004781;gallbladder lamina propria;lamina propria mucosa of gallbladder -http://purl.obolibrary.org/obo/UBERON_0004781;gallbladder lamina propria;lamina propria of gall bladder -http://purl.obolibrary.org/obo/UBERON_0004781;gallbladder lamina propria;lamina propria of gallbladder -http://purl.obolibrary.org/obo/UBERON_0004782;gastrointestinal system serosa;digestive system serosa -http://purl.obolibrary.org/obo/UBERON_0004782;gastrointestinal system serosa;digestive system serous membrane -http://purl.obolibrary.org/obo/UBERON_0004782;gastrointestinal system serosa;gastrointestinal system serous membrane -http://purl.obolibrary.org/obo/UBERON_0004782;gastrointestinal system serosa;serosa of digestive system -http://purl.obolibrary.org/obo/UBERON_0004782;gastrointestinal system serosa;serosa of gastrointestinal system -http://purl.obolibrary.org/obo/UBERON_0004782;gastrointestinal system serosa;serous membrane of digestive system -http://purl.obolibrary.org/obo/UBERON_0004782;gastrointestinal system serosa;serous membrane of gastrointestinal system -http://purl.obolibrary.org/obo/UBERON_0004783;gallbladder serosa;gall bladder serosa -http://purl.obolibrary.org/obo/UBERON_0004783;gallbladder serosa;gall bladder serous membrane -http://purl.obolibrary.org/obo/UBERON_0004783;gallbladder serosa;gallbladder serous membrane -http://purl.obolibrary.org/obo/UBERON_0004783;gallbladder serosa;serosa of gall bladder -http://purl.obolibrary.org/obo/UBERON_0004783;gallbladder serosa;serosa of gallbladder -http://purl.obolibrary.org/obo/UBERON_0004783;gallbladder serosa;serous coat of gallbladder -http://purl.obolibrary.org/obo/UBERON_0004783;gallbladder serosa;serous membrane of gall bladder -http://purl.obolibrary.org/obo/UBERON_0004783;gallbladder serosa;serous membrane of gallbladder -http://purl.obolibrary.org/obo/UBERON_0004783;gallbladder serosa;tunica serosa (vesica biliaris) -http://purl.obolibrary.org/obo/UBERON_0004783;gallbladder serosa;tunica serosa vesicae biliaris -http://purl.obolibrary.org/obo/UBERON_0004784;heart ventricle wall;anatomical wall of cardiac ventricle -http://purl.obolibrary.org/obo/UBERON_0004784;heart ventricle wall;anatomical wall of heart ventricle -http://purl.obolibrary.org/obo/UBERON_0004784;heart ventricle wall;anatomical wall of lower chamber of heart -http://purl.obolibrary.org/obo/UBERON_0004784;heart ventricle wall;anatomical wall of ventricle of heart -http://purl.obolibrary.org/obo/UBERON_0004784;heart ventricle wall;cardiac ventricle anatomical wall -http://purl.obolibrary.org/obo/UBERON_0004784;heart ventricle wall;cardiac ventricle wall -http://purl.obolibrary.org/obo/UBERON_0004784;heart ventricle wall;heart ventricle anatomical wall -http://purl.obolibrary.org/obo/UBERON_0004784;heart ventricle wall;lower chamber of heart anatomical wall -http://purl.obolibrary.org/obo/UBERON_0004784;heart ventricle wall;lower chamber of heart wall -http://purl.obolibrary.org/obo/UBERON_0004784;heart ventricle wall;ventricle of heart anatomical wall -http://purl.obolibrary.org/obo/UBERON_0004784;heart ventricle wall;ventricle of heart wall -http://purl.obolibrary.org/obo/UBERON_0004784;heart ventricle wall;ventricular wall -http://purl.obolibrary.org/obo/UBERON_0004784;heart ventricle wall;wall of cardiac ventricle -http://purl.obolibrary.org/obo/UBERON_0004784;heart ventricle wall;wall of heart ventricle -http://purl.obolibrary.org/obo/UBERON_0004784;heart ventricle wall;wall of lower chamber of heart -http://purl.obolibrary.org/obo/UBERON_0004784;heart ventricle wall;wall of ventricle of heart -http://purl.obolibrary.org/obo/UBERON_0004785;respiratory system mucosa;apparatus respiratorius mucosa -http://purl.obolibrary.org/obo/UBERON_0004785;respiratory system mucosa;apparatus respiratorius mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004785;respiratory system mucosa;apparatus respiratorius mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004785;respiratory system mucosa;laryngeal mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004785;respiratory system mucosa;mucosa of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0004785;respiratory system mucosa;mucosa of organ of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0004785;respiratory system mucosa;mucosa of organ of respiratory system -http://purl.obolibrary.org/obo/UBERON_0004785;respiratory system mucosa;mucosa of respiratory system -http://purl.obolibrary.org/obo/UBERON_0004785;respiratory system mucosa;mucous membrane of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0004785;respiratory system mucosa;mucous membrane of respiratory system -http://purl.obolibrary.org/obo/UBERON_0004785;respiratory system mucosa;respiratory mucosa -http://purl.obolibrary.org/obo/UBERON_0004785;respiratory system mucosa;respiratory system mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004785;respiratory system mucosa;respiratory system mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004785;respiratory system mucosa;respiratory tract mucosa -http://purl.obolibrary.org/obo/UBERON_0004786;gastrointestinal system mucosa;digestive tract mucosa -http://purl.obolibrary.org/obo/UBERON_0004786;gastrointestinal system mucosa;gut mucosa -http://purl.obolibrary.org/obo/UBERON_0004786;gastrointestinal system mucosa;gut mucuous membrane -http://purl.obolibrary.org/obo/UBERON_0004786;gastrointestinal system mucosa;mucosa of gut -http://purl.obolibrary.org/obo/UBERON_0004787;urethra urothelium;urethra uroepithelium -http://purl.obolibrary.org/obo/UBERON_0004787;urethra urothelium;uroepithelium of urethra -http://purl.obolibrary.org/obo/UBERON_0004787;urethra urothelium;urothelium of urethra -http://purl.obolibrary.org/obo/UBERON_0004788;kidney pelvis urothelium;kidney pelvis transitional epithelium -http://purl.obolibrary.org/obo/UBERON_0004788;kidney pelvis urothelium;kidney pelvis uroepithelium -http://purl.obolibrary.org/obo/UBERON_0004788;kidney pelvis urothelium;pelvis of ureter uroepithelium -http://purl.obolibrary.org/obo/UBERON_0004788;kidney pelvis urothelium;pelvis of ureter urothelium -http://purl.obolibrary.org/obo/UBERON_0004788;kidney pelvis urothelium;renal pelvis transitional epithelium -http://purl.obolibrary.org/obo/UBERON_0004788;kidney pelvis urothelium;renal pelvis uroepithelium -http://purl.obolibrary.org/obo/UBERON_0004788;kidney pelvis urothelium;renal pelvis urothelium -http://purl.obolibrary.org/obo/UBERON_0004788;kidney pelvis urothelium;transitional epithelium of kidney pelvis -http://purl.obolibrary.org/obo/UBERON_0004788;kidney pelvis urothelium;transitional epithelium of renal pelvis -http://purl.obolibrary.org/obo/UBERON_0004788;kidney pelvis urothelium;uroepithelium of kidney pelvis -http://purl.obolibrary.org/obo/UBERON_0004788;kidney pelvis urothelium;uroepithelium of pelvis of ureter -http://purl.obolibrary.org/obo/UBERON_0004788;kidney pelvis urothelium;uroepithelium of renal pelvis -http://purl.obolibrary.org/obo/UBERON_0004788;kidney pelvis urothelium;urothelium of kidney pelvis -http://purl.obolibrary.org/obo/UBERON_0004788;kidney pelvis urothelium;urothelium of pelvis of ureter -http://purl.obolibrary.org/obo/UBERON_0004788;kidney pelvis urothelium;urothelium of renal pelvis -http://purl.obolibrary.org/obo/UBERON_0004789;larynx mucous gland;mucous gland of larynx -http://purl.obolibrary.org/obo/UBERON_0004790;skin mucous gland;mucous gland of entire skin -http://purl.obolibrary.org/obo/UBERON_0004790;skin mucous gland;mucous gland of skin of body -http://purl.obolibrary.org/obo/UBERON_0004790;skin mucous gland;skin mucus gland -http://purl.obolibrary.org/obo/UBERON_0004790;skin mucous gland;skin of body mucous gland -http://purl.obolibrary.org/obo/UBERON_0004791;thymus trabecula;thymic trabecula -http://purl.obolibrary.org/obo/UBERON_0004791;thymus trabecula;thymus gland trabecula -http://purl.obolibrary.org/obo/UBERON_0004791;thymus trabecula;thymus trabeculae -http://purl.obolibrary.org/obo/UBERON_0004791;thymus trabecula;trabecula of thymus -http://purl.obolibrary.org/obo/UBERON_0004791;thymus trabecula;trabecula of thymus gland -http://purl.obolibrary.org/obo/UBERON_0004792;secretion of endocrine pancreas;endocrine pancreas secretion -http://purl.obolibrary.org/obo/UBERON_0004792;secretion of endocrine pancreas;pancreatic endocrine secretion -http://purl.obolibrary.org/obo/UBERON_0004792;secretion of endocrine pancreas;pars endocrina pancreatis secretion -http://purl.obolibrary.org/obo/UBERON_0004792;secretion of endocrine pancreas;secretion of pars endocrina pancreatis -http://purl.obolibrary.org/obo/UBERON_0004793;secretion of exocrine pancreas;exocrine pancreas secretion -http://purl.obolibrary.org/obo/UBERON_0004793;secretion of exocrine pancreas;pancreatic exocrine secretion -http://purl.obolibrary.org/obo/UBERON_0004793;secretion of exocrine pancreas;pars exocrina pancreatis secretion -http://purl.obolibrary.org/obo/UBERON_0004793;secretion of exocrine pancreas;secretion of pars exocrina pancreatis -http://purl.obolibrary.org/obo/UBERON_0004794;esophagus secretion;esophageal secretion -http://purl.obolibrary.org/obo/UBERON_0004794;esophagus secretion;gullet secretion -http://purl.obolibrary.org/obo/UBERON_0004794;esophagus secretion;oesophagus secretion -http://purl.obolibrary.org/obo/UBERON_0004794;esophagus secretion;secretion of esophagus -http://purl.obolibrary.org/obo/UBERON_0004794;esophagus secretion;secretion of gullet -http://purl.obolibrary.org/obo/UBERON_0004794;esophagus secretion;secretion of oesophagus -http://purl.obolibrary.org/obo/UBERON_0004795;pancreas secretion;pancreatic secretion -http://purl.obolibrary.org/obo/UBERON_0004795;pancreas secretion;secretion of pancreas -http://purl.obolibrary.org/obo/UBERON_0004796;prostate gland secretion;prostate secretion -http://purl.obolibrary.org/obo/UBERON_0004796;prostate gland secretion;prostatic fluid -http://purl.obolibrary.org/obo/UBERON_0004796;prostate gland secretion;secretion of prostate -http://purl.obolibrary.org/obo/UBERON_0004796;prostate gland secretion;secretion of prostate gland -http://purl.obolibrary.org/obo/UBERON_0004797;blood vessel layer; -http://purl.obolibrary.org/obo/UBERON_0004798;respiratory system basal lamina;apparatus respiratorius basal lamina -http://purl.obolibrary.org/obo/UBERON_0004798;respiratory system basal lamina;apparatus respiratorius basal lamina of connective tissue -http://purl.obolibrary.org/obo/UBERON_0004798;respiratory system basal lamina;basal lamina of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0004798;respiratory system basal lamina;basal lamina of connective tissue of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0004798;respiratory system basal lamina;basal lamina of connective tissue of respiratory system -http://purl.obolibrary.org/obo/UBERON_0004798;respiratory system basal lamina;basal lamina of respiratory system -http://purl.obolibrary.org/obo/UBERON_0004798;respiratory system basal lamina;respiratory system basal lamina of connective tissue -http://purl.obolibrary.org/obo/UBERON_0004799;trachea basal lamina;basal lamina of connective tissue of respiratory airway -http://purl.obolibrary.org/obo/UBERON_0004800;bronchus basal lamina;basal lamina of bronchi -http://purl.obolibrary.org/obo/UBERON_0004800;bronchus basal lamina;basal lamina of bronchial trunk -http://purl.obolibrary.org/obo/UBERON_0004800;bronchus basal lamina;basal lamina of bronchus -http://purl.obolibrary.org/obo/UBERON_0004800;bronchus basal lamina;basal lamina of connective tissue of bronchi -http://purl.obolibrary.org/obo/UBERON_0004800;bronchus basal lamina;basal lamina of connective tissue of bronchial trunk -http://purl.obolibrary.org/obo/UBERON_0004800;bronchus basal lamina;basal lamina of connective tissue of bronchus -http://purl.obolibrary.org/obo/UBERON_0004800;bronchus basal lamina;bronchi basal lamina -http://purl.obolibrary.org/obo/UBERON_0004800;bronchus basal lamina;bronchi basal lamina of connective tissue -http://purl.obolibrary.org/obo/UBERON_0004800;bronchus basal lamina;bronchial trunk basal lamina -http://purl.obolibrary.org/obo/UBERON_0004800;bronchus basal lamina;bronchial trunk basal lamina of connective tissue -http://purl.obolibrary.org/obo/UBERON_0004800;bronchus basal lamina;bronchus basal lamina of connective tissue -http://purl.obolibrary.org/obo/UBERON_0004801;cervix epithelium;cervical canal epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0004801;cervix epithelium;cervical canal epithelium -http://purl.obolibrary.org/obo/UBERON_0004801;cervix epithelium;cervical epithelium -http://purl.obolibrary.org/obo/UBERON_0004801;cervix epithelium;cervix epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0004801;cervix epithelium;epithelium of cervix -http://purl.obolibrary.org/obo/UBERON_0004802;respiratory tract epithelium;airway epithelium -http://purl.obolibrary.org/obo/UBERON_0004802;respiratory tract epithelium;epithelial tissue of respiratory tract -http://purl.obolibrary.org/obo/UBERON_0004802;respiratory tract epithelium;epithelium of respiratory tract -http://purl.obolibrary.org/obo/UBERON_0004802;respiratory tract epithelium;respiratory epithelium -http://purl.obolibrary.org/obo/UBERON_0004802;respiratory tract epithelium;respiratory tract epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0004803;penis epithelium;epithelial tissue of penis -http://purl.obolibrary.org/obo/UBERON_0004803;penis epithelium;epithelium of penis -http://purl.obolibrary.org/obo/UBERON_0004803;penis epithelium;penis epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0004804;oviduct epithelium;epithelial tissue of oviduct -http://purl.obolibrary.org/obo/UBERON_0004804;oviduct epithelium;epithelium of fallopian tube -http://purl.obolibrary.org/obo/UBERON_0004804;oviduct epithelium;epithelium of oviduct -http://purl.obolibrary.org/obo/UBERON_0004804;oviduct epithelium;epithelium of uterine tube -http://purl.obolibrary.org/obo/UBERON_0004804;oviduct epithelium;oviduct epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0004805;seminal vesicle epithelium;epithelial tissue of seminal gland -http://purl.obolibrary.org/obo/UBERON_0004805;seminal vesicle epithelium;epithelial tissue of seminal vesicle -http://purl.obolibrary.org/obo/UBERON_0004805;seminal vesicle epithelium;epithelium of seminal gland -http://purl.obolibrary.org/obo/UBERON_0004805;seminal vesicle epithelium;epithelium of seminal vesicle -http://purl.obolibrary.org/obo/UBERON_0004805;seminal vesicle epithelium;seminal gland epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0004805;seminal vesicle epithelium;seminal gland epithelium -http://purl.obolibrary.org/obo/UBERON_0004805;seminal vesicle epithelium;seminal vesicle epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0004806;vas deferens epithelium;deferent duct epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0004806;vas deferens epithelium;deferent duct epithelium -http://purl.obolibrary.org/obo/UBERON_0004806;vas deferens epithelium;ductus deferens epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0004806;vas deferens epithelium;ductus deferens epithelium -http://purl.obolibrary.org/obo/UBERON_0004806;vas deferens epithelium;epithelial tissue of deferent duct -http://purl.obolibrary.org/obo/UBERON_0004806;vas deferens epithelium;epithelial tissue of ductus deferens -http://purl.obolibrary.org/obo/UBERON_0004806;vas deferens epithelium;epithelial tissue of sperm duct -http://purl.obolibrary.org/obo/UBERON_0004806;vas deferens epithelium;epithelial tissue of vas deferen -http://purl.obolibrary.org/obo/UBERON_0004806;vas deferens epithelium;epithelial tissue of vas deferens -http://purl.obolibrary.org/obo/UBERON_0004806;vas deferens epithelium;epithelium of deferent duct -http://purl.obolibrary.org/obo/UBERON_0004806;vas deferens epithelium;epithelium of ductus deferens -http://purl.obolibrary.org/obo/UBERON_0004806;vas deferens epithelium;epithelium of sperm duct -http://purl.obolibrary.org/obo/UBERON_0004806;vas deferens epithelium;epithelium of vas deferen -http://purl.obolibrary.org/obo/UBERON_0004806;vas deferens epithelium;epithelium of vas deferens -http://purl.obolibrary.org/obo/UBERON_0004806;vas deferens epithelium;sperm duct epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0004806;vas deferens epithelium;sperm duct epithelium -http://purl.obolibrary.org/obo/UBERON_0004806;vas deferens epithelium;vas deferen epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0004806;vas deferens epithelium;vas deferen epithelium -http://purl.obolibrary.org/obo/UBERON_0004806;vas deferens epithelium;vas deferens epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0004807;respiratory system epithelium;apparatus respiratorius epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0004807;respiratory system epithelium;apparatus respiratorius epithelium -http://purl.obolibrary.org/obo/UBERON_0004807;respiratory system epithelium;epithelial tissue of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0004807;respiratory system epithelium;epithelial tissue of respiratory system -http://purl.obolibrary.org/obo/UBERON_0004807;respiratory system epithelium;epithelium of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0004807;respiratory system epithelium;epithelium of respiratory system -http://purl.obolibrary.org/obo/UBERON_0004807;respiratory system epithelium;respiratory system epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0004808;gastrointestinal system epithelium;digestive system epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0004808;gastrointestinal system epithelium;digestive system epithelium -http://purl.obolibrary.org/obo/UBERON_0004808;gastrointestinal system epithelium;epithelial tissue of digestive system -http://purl.obolibrary.org/obo/UBERON_0004808;gastrointestinal system epithelium;epithelial tissue of gastrointestinal system -http://purl.obolibrary.org/obo/UBERON_0004808;gastrointestinal system epithelium;epithelium of digestive system -http://purl.obolibrary.org/obo/UBERON_0004808;gastrointestinal system epithelium;epithelium of gastrointestinal system -http://purl.obolibrary.org/obo/UBERON_0004808;gastrointestinal system epithelium;gastrointestinal system epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0004809;salivary gland epithelium;epithelial tissue of salivary gland -http://purl.obolibrary.org/obo/UBERON_0004809;salivary gland epithelium;epithelium of salivary gland -http://purl.obolibrary.org/obo/UBERON_0004809;salivary gland epithelium;salivary gland epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0004810;nephron tubule epithelium;kidney tubule epithelium -http://purl.obolibrary.org/obo/UBERON_0004811;endometrium epithelium;endometrium epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0004811;endometrium epithelium;epithelial tissue of endometrium -http://purl.obolibrary.org/obo/UBERON_0004811;endometrium epithelium;epithelium of endometrium -http://purl.obolibrary.org/obo/UBERON_0004811;endometrium epithelium;epithelium of tunica mucosa of endometrium -http://purl.obolibrary.org/obo/UBERON_0004812;male prepuce epithelium;epithelial tissue of foreskin -http://purl.obolibrary.org/obo/UBERON_0004812;male prepuce epithelium;epithelial tissue of penile prepuce -http://purl.obolibrary.org/obo/UBERON_0004812;male prepuce epithelium;epithelial tissue of prepuce of penis -http://purl.obolibrary.org/obo/UBERON_0004812;male prepuce epithelium;epithelium of foreskin -http://purl.obolibrary.org/obo/UBERON_0004812;male prepuce epithelium;epithelium of penile prepuce -http://purl.obolibrary.org/obo/UBERON_0004812;male prepuce epithelium;epithelium of prepuce of penis -http://purl.obolibrary.org/obo/UBERON_0004812;male prepuce epithelium;foreskin epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0004812;male prepuce epithelium;foreskin epithelium -http://purl.obolibrary.org/obo/UBERON_0004812;male prepuce epithelium;penile prepuce epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0004812;male prepuce epithelium;penile prepuce epithelium -http://purl.obolibrary.org/obo/UBERON_0004812;male prepuce epithelium;prepuce epithelium -http://purl.obolibrary.org/obo/UBERON_0004812;male prepuce epithelium;prepuce of penis epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0004813;seminiferous tubule epithelium;epithelial tissue of seminiferous tubule -http://purl.obolibrary.org/obo/UBERON_0004813;seminiferous tubule epithelium;epithelial tissue of seminiferous tubule of testis -http://purl.obolibrary.org/obo/UBERON_0004813;seminiferous tubule epithelium;epithelium of seminiferous tubule -http://purl.obolibrary.org/obo/UBERON_0004813;seminiferous tubule epithelium;epithelium of seminiferous tubule of testis -http://purl.obolibrary.org/obo/UBERON_0004813;seminiferous tubule epithelium;germinal epithelium (male) -http://purl.obolibrary.org/obo/UBERON_0004813;seminiferous tubule epithelium;male germinal epithelium -http://purl.obolibrary.org/obo/UBERON_0004813;seminiferous tubule epithelium;seminiferous epithelium -http://purl.obolibrary.org/obo/UBERON_0004813;seminiferous tubule epithelium;seminiferous tubule epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0004813;seminiferous tubule epithelium;testis germinal epithelium -http://purl.obolibrary.org/obo/UBERON_0004813;seminiferous tubule epithelium;wall of seminiferous tubule -http://purl.obolibrary.org/obo/UBERON_0004814;upper respiratory tract epithelium;epithelial tissue of upper respiratory tract -http://purl.obolibrary.org/obo/UBERON_0004814;upper respiratory tract epithelium;epithelium of upper respiratory tract -http://purl.obolibrary.org/obo/UBERON_0004814;upper respiratory tract epithelium;upper respiratory tract epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0004815;lower respiratory tract epithelium;epithelial tissue of lower respiratory tract -http://purl.obolibrary.org/obo/UBERON_0004815;lower respiratory tract epithelium;epithelium of lower respiratory tract -http://purl.obolibrary.org/obo/UBERON_0004815;lower respiratory tract epithelium;lower respiratory tract epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0004816;larynx epithelium;epithelial tissue of larynx -http://purl.obolibrary.org/obo/UBERON_0004816;larynx epithelium;epithelium of larynx -http://purl.obolibrary.org/obo/UBERON_0004816;larynx epithelium;laryngeal epithelium -http://purl.obolibrary.org/obo/UBERON_0004816;larynx epithelium;larynx epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0004817;lacrimal gland epithelium;epithelial tissue of lacrimal gland -http://purl.obolibrary.org/obo/UBERON_0004817;lacrimal gland epithelium;epithelium of lacrimal gland -http://purl.obolibrary.org/obo/UBERON_0004817;lacrimal gland epithelium;lacrimal gland epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0004818;terminal bronchus epithelium;epithelial tissue of terminal bronchus -http://purl.obolibrary.org/obo/UBERON_0004818;terminal bronchus epithelium;epithelium of terminal bronchus -http://purl.obolibrary.org/obo/UBERON_0004818;terminal bronchus epithelium;terminal bronchus epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0004819;kidney epithelium;epithelial tissue of kidney -http://purl.obolibrary.org/obo/UBERON_0004819;kidney epithelium;epithelium of kidney -http://purl.obolibrary.org/obo/UBERON_0004819;kidney epithelium;kidney epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0004820;bile duct epithelium;biliary duct epithelium -http://purl.obolibrary.org/obo/UBERON_0004820;bile duct epithelium;epithelium of bile duct -http://purl.obolibrary.org/obo/UBERON_0004820;bile duct epithelium;epithelium of biliary duct -http://purl.obolibrary.org/obo/UBERON_0004821;pulmonary alveolus epithelium;alveolus epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0004821;pulmonary alveolus epithelium;alveolus epithelium -http://purl.obolibrary.org/obo/UBERON_0004821;pulmonary alveolus epithelium;epithelial tissue of alveolus -http://purl.obolibrary.org/obo/UBERON_0004821;pulmonary alveolus epithelium;epithelium of alveolus -http://purl.obolibrary.org/obo/UBERON_0004821;pulmonary alveolus epithelium;epithelium of pulmonary alveolus -http://purl.obolibrary.org/obo/UBERON_0004821;pulmonary alveolus epithelium;pulmonary alveolar epithelium -http://purl.obolibrary.org/obo/UBERON_0004821;pulmonary alveolus epithelium;pulmonary alveolus epithelium -http://purl.obolibrary.org/obo/UBERON_0004822;extrahepatic bile duct epithelium;epithelial tissue of extrahepatic bile duct -http://purl.obolibrary.org/obo/UBERON_0004822;extrahepatic bile duct epithelium;epithelium of extrahepatic bile duct -http://purl.obolibrary.org/obo/UBERON_0004822;extrahepatic bile duct epithelium;extrahepatic bile duct epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0004823;intrahepatic bile duct epithelium;epithelial tissue of intrahepatic bile duct -http://purl.obolibrary.org/obo/UBERON_0004823;intrahepatic bile duct epithelium;epithelium of intrahepatic bile duct -http://purl.obolibrary.org/obo/UBERON_0004823;intrahepatic bile duct epithelium;intrahepatic bile duct epithelial tissue -http://purl.obolibrary.org/obo/UBERON_0004825;dental lamina;embryonic dental lamina -http://purl.obolibrary.org/obo/UBERON_0004827;thyroid gland medulla;medulla of thyroid -http://purl.obolibrary.org/obo/UBERON_0004827;thyroid gland medulla;medulla of thyroid follicle -http://purl.obolibrary.org/obo/UBERON_0004827;thyroid gland medulla;medulla of thyroid gland -http://purl.obolibrary.org/obo/UBERON_0004827;thyroid gland medulla;medulla of thyroid gland follicle -http://purl.obolibrary.org/obo/UBERON_0004827;thyroid gland medulla;thyroid follicle medulla -http://purl.obolibrary.org/obo/UBERON_0004827;thyroid gland medulla;thyroid gland follicle medulla -http://purl.obolibrary.org/obo/UBERON_0004827;thyroid gland medulla;thyroid medulla -http://purl.obolibrary.org/obo/UBERON_0004829;urethra skeletal muscle tissue;skeletal muscle of urethra -http://purl.obolibrary.org/obo/UBERON_0004829;urethra skeletal muscle tissue;skeletal muscle tissue of urethra -http://purl.obolibrary.org/obo/UBERON_0004829;urethra skeletal muscle tissue;urethra skeletal muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004830;respiratory system skeletal muscle;respiratory system skeletal muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004830;respiratory system skeletal muscle;skeletal muscle of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0004830;respiratory system skeletal muscle;skeletal muscle of respiratory system -http://purl.obolibrary.org/obo/UBERON_0004830;respiratory system skeletal muscle;skeletal muscle tissue of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0004830;respiratory system skeletal muscle;skeletal muscle tissue of respiratory system -http://purl.obolibrary.org/obo/UBERON_0004831;esophagus skeletal muscle;esophagus skeletal muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004831;esophagus skeletal muscle;skeletal muscle of esophagus -http://purl.obolibrary.org/obo/UBERON_0004832;anal region skeletal muscle;anal part of perineum skeletal muscle -http://purl.obolibrary.org/obo/UBERON_0004832;anal region skeletal muscle;anal part of perineum skeletal muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004832;anal region skeletal muscle;anal region skeletal muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004832;anal region skeletal muscle;anal triangle skeletal muscle -http://purl.obolibrary.org/obo/UBERON_0004832;anal region skeletal muscle;anal triangle skeletal muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004832;anal region skeletal muscle;skeletal muscle of anal part of perineum -http://purl.obolibrary.org/obo/UBERON_0004832;anal region skeletal muscle;skeletal muscle of anal region -http://purl.obolibrary.org/obo/UBERON_0004832;anal region skeletal muscle;skeletal muscle of anal triangle -http://purl.obolibrary.org/obo/UBERON_0004832;anal region skeletal muscle;skeletal muscle tissue of anal part of perineum -http://purl.obolibrary.org/obo/UBERON_0004832;anal region skeletal muscle;skeletal muscle tissue of anal region -http://purl.obolibrary.org/obo/UBERON_0004832;anal region skeletal muscle;skeletal muscle tissue of anal triangle -http://purl.obolibrary.org/obo/UBERON_0004833;lip skeletal muscle;lip skeletal muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004833;lip skeletal muscle;skeletal muscle of lip -http://purl.obolibrary.org/obo/UBERON_0004833;lip skeletal muscle;skeletal muscle tissue of lip -http://purl.obolibrary.org/obo/UBERON_0004834;hepatic duct smooth muscle; -http://purl.obolibrary.org/obo/UBERON_0004835;epididymis smooth muscle;epididymis involuntary muscle -http://purl.obolibrary.org/obo/UBERON_0004835;epididymis smooth muscle;epididymis non-striated muscle -http://purl.obolibrary.org/obo/UBERON_0004835;epididymis smooth muscle;epididymis smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004835;epididymis smooth muscle;involuntary muscle of epididymis -http://purl.obolibrary.org/obo/UBERON_0004835;epididymis smooth muscle;non-striated muscle of epididymis -http://purl.obolibrary.org/obo/UBERON_0004835;epididymis smooth muscle;smooth muscle of epididymis -http://purl.obolibrary.org/obo/UBERON_0004835;epididymis smooth muscle;smooth muscle tissue of epididymis -http://purl.obolibrary.org/obo/UBERON_0004848;respiratory system arterial endothelium;apparatus respiratorius arterial endothelium -http://purl.obolibrary.org/obo/UBERON_0004848;respiratory system arterial endothelium;apparatus respiratorius artery endothelium -http://purl.obolibrary.org/obo/UBERON_0004848;respiratory system arterial endothelium;apparatus respiratorius endothelium of artery -http://purl.obolibrary.org/obo/UBERON_0004848;respiratory system arterial endothelium;arterial endothelium of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0004848;respiratory system arterial endothelium;arterial endothelium of respiratory system -http://purl.obolibrary.org/obo/UBERON_0004848;respiratory system arterial endothelium;artery endothelium of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0004848;respiratory system arterial endothelium;artery endothelium of respiratory system -http://purl.obolibrary.org/obo/UBERON_0004848;respiratory system arterial endothelium;endothelium of artery of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0004848;respiratory system arterial endothelium;endothelium of artery of respiratory system -http://purl.obolibrary.org/obo/UBERON_0004848;respiratory system arterial endothelium;respiratory system artery endothelium -http://purl.obolibrary.org/obo/UBERON_0004848;respiratory system arterial endothelium;respiratory system endothelium of artery -http://purl.obolibrary.org/obo/UBERON_0004849;respiratory system venous endothelium;apparatus respiratorius endothelium of vein -http://purl.obolibrary.org/obo/UBERON_0004849;respiratory system venous endothelium;apparatus respiratorius vein endothelium -http://purl.obolibrary.org/obo/UBERON_0004849;respiratory system venous endothelium;apparatus respiratorius venous endothelium -http://purl.obolibrary.org/obo/UBERON_0004849;respiratory system venous endothelium;endothelium of vein of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0004849;respiratory system venous endothelium;endothelium of vein of respiratory system -http://purl.obolibrary.org/obo/UBERON_0004849;respiratory system venous endothelium;respiratory system endothelium of vein -http://purl.obolibrary.org/obo/UBERON_0004849;respiratory system venous endothelium;respiratory system vein endothelium -http://purl.obolibrary.org/obo/UBERON_0004849;respiratory system venous endothelium;vein endothelium of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0004849;respiratory system venous endothelium;vein endothelium of respiratory system -http://purl.obolibrary.org/obo/UBERON_0004849;respiratory system venous endothelium;venous endothelium of apparatus respiratorius -http://purl.obolibrary.org/obo/UBERON_0004849;respiratory system venous endothelium;venous endothelium of respiratory system -http://purl.obolibrary.org/obo/UBERON_0004850;lymph node endothelium;endothelium of lymph node -http://purl.obolibrary.org/obo/UBERON_0004851;aorta endothelium;adult aorta endothelium -http://purl.obolibrary.org/obo/UBERON_0004851;aorta endothelium;endothelium of adult aorta -http://purl.obolibrary.org/obo/UBERON_0004851;aorta endothelium;endothelium of aorta -http://purl.obolibrary.org/obo/UBERON_0004851;aorta endothelium;endothelium of trunk of aortic tree -http://purl.obolibrary.org/obo/UBERON_0004851;aorta endothelium;endothelium of trunk of systemic arterial tree -http://purl.obolibrary.org/obo/UBERON_0004851;aorta endothelium;trunk of aortic tree endothelium -http://purl.obolibrary.org/obo/UBERON_0004851;aorta endothelium;trunk of systemic arterial tree endothelium -http://purl.obolibrary.org/obo/UBERON_0004852;cardiovascular system endothelium; -http://purl.obolibrary.org/obo/UBERON_0004854;gastrointestinal system mesentery;digestive system mesentery -http://purl.obolibrary.org/obo/UBERON_0004854;gastrointestinal system mesentery;mesentery of digestive system -http://purl.obolibrary.org/obo/UBERON_0004854;gastrointestinal system mesentery;mesentery of gastrointestinal system -http://purl.obolibrary.org/obo/UBERON_0004857;skeletal muscle connective tissue;connective tissue of skeletal muscle -http://purl.obolibrary.org/obo/UBERON_0004857;skeletal muscle connective tissue;connective tissue of skeletal muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004857;skeletal muscle connective tissue;portion of connective tissue of skeletal muscle -http://purl.obolibrary.org/obo/UBERON_0004857;skeletal muscle connective tissue;portion of connective tissue of skeletal muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004857;skeletal muscle connective tissue;skeletal muscle portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0004857;skeletal muscle connective tissue;skeletal muscle textus connectivus -http://purl.obolibrary.org/obo/UBERON_0004857;skeletal muscle connective tissue;skeletal muscle tissue connective tissue -http://purl.obolibrary.org/obo/UBERON_0004857;skeletal muscle connective tissue;skeletal muscle tissue portion of connective tissue -http://purl.obolibrary.org/obo/UBERON_0004857;skeletal muscle connective tissue;skeletal muscle tissue textus connectivus -http://purl.obolibrary.org/obo/UBERON_0004857;skeletal muscle connective tissue;textus connectivus of skeletal muscle -http://purl.obolibrary.org/obo/UBERON_0004857;skeletal muscle connective tissue;textus connectivus of skeletal muscle tissue -http://purl.obolibrary.org/obo/UBERON_0004858;cellular cartilage; -http://purl.obolibrary.org/obo/UBERON_0004859;eye gland;eye-associated gland -http://purl.obolibrary.org/obo/UBERON_0004859;eye gland;gland of eye -http://purl.obolibrary.org/obo/UBERON_0004861;right lung alveolus;alveolus of right lung -http://purl.obolibrary.org/obo/UBERON_0004862;left lung alveolus;alveolus of left lung -http://purl.obolibrary.org/obo/UBERON_0004862;left lung alveolus;alveolus of lobe of left lung -http://purl.obolibrary.org/obo/UBERON_0004863;thoracic sympathetic nerve trunk;nerve trunk of sympathetic nervous system of thorax -http://purl.obolibrary.org/obo/UBERON_0004863;thoracic sympathetic nerve trunk;nerve trunk of sympathetic part of autonomic division of nervous system of thorax -http://purl.obolibrary.org/obo/UBERON_0004863;thoracic sympathetic nerve trunk;sympathetic nerve trunk of thorax -http://purl.obolibrary.org/obo/UBERON_0004863;thoracic sympathetic nerve trunk;sympathetic nervous system nerve trunk of thorax -http://purl.obolibrary.org/obo/UBERON_0004863;thoracic sympathetic nerve trunk;thoracic part of sympathetic trunk -http://purl.obolibrary.org/obo/UBERON_0004863;thoracic sympathetic nerve trunk;thoracic sympathetic chain -http://purl.obolibrary.org/obo/UBERON_0004863;thoracic sympathetic nerve trunk;thoracic sympathetic trunk -http://purl.obolibrary.org/obo/UBERON_0004863;thoracic sympathetic nerve trunk;thorax nerve trunk of sympathetic nervous system -http://purl.obolibrary.org/obo/UBERON_0004863;thoracic sympathetic nerve trunk;thorax nerve trunk of sympathetic part of autonomic division of nervous system -http://purl.obolibrary.org/obo/UBERON_0004863;thoracic sympathetic nerve trunk;thorax sympathetic nerve trunk -http://purl.obolibrary.org/obo/UBERON_0004863;thoracic sympathetic nerve trunk;thorax sympathetic nervous system nerve trunk -http://purl.obolibrary.org/obo/UBERON_0004864;vasculature of retina;retina vasculature -http://purl.obolibrary.org/obo/UBERON_0004864;vasculature of retina;retina vasculature of camera-type eye -http://purl.obolibrary.org/obo/UBERON_0004864;vasculature of retina;retinal blood vessels -http://purl.obolibrary.org/obo/UBERON_0004864;vasculature of retina;retinal blood vessels set -http://purl.obolibrary.org/obo/UBERON_0004864;vasculature of retina;retinal vasculature -http://purl.obolibrary.org/obo/UBERON_0004864;vasculature of retina;set of blood vessels of retina -http://purl.obolibrary.org/obo/UBERON_0004864;vasculature of retina;set of retinal blood vessels -http://purl.obolibrary.org/obo/UBERON_0004864;vasculature of retina;vasa sanguinea retinae -http://purl.obolibrary.org/obo/UBERON_0004865;actinopterygian parietal bone;actinopterygian parietal -http://purl.obolibrary.org/obo/UBERON_0004866;actinopterygian frontal bone;actinopterygian frontal -http://purl.obolibrary.org/obo/UBERON_0004866;actinopterygian frontal bone;actinopterygian frontal bone -http://purl.obolibrary.org/obo/UBERON_0004867;orbital cavity; -http://purl.obolibrary.org/obo/UBERON_0004868;tapetum lucidum of camera-type eye;tapeta lucida -http://purl.obolibrary.org/obo/UBERON_0004868;tapetum lucidum of camera-type eye;tapetum lucidum -http://purl.obolibrary.org/obo/UBERON_0004869;parietal organ;parietal eye -http://purl.obolibrary.org/obo/UBERON_0004870;superficial cervical lymph node; -http://purl.obolibrary.org/obo/UBERON_0004871;somatic layer of lateral plate mesoderm;outer layer of lateral plate mesoderm -http://purl.obolibrary.org/obo/UBERON_0004872;splanchnic layer of lateral plate mesoderm;inner layer of lateral plate mesoderm -http://purl.obolibrary.org/obo/UBERON_0004873;splanchnopleure; -http://purl.obolibrary.org/obo/UBERON_0004874;somatopleure; -http://purl.obolibrary.org/obo/UBERON_0004875;nephrogenic cord; -http://purl.obolibrary.org/obo/UBERON_0004876;urogenital fold;urethral fold -http://purl.obolibrary.org/obo/UBERON_0004876;urogenital fold;urogenital fold -http://purl.obolibrary.org/obo/UBERON_0004877;visceral endoderm; -http://purl.obolibrary.org/obo/UBERON_0004878;distal visceral endoderm; -http://purl.obolibrary.org/obo/UBERON_0004879;marginal zone of embryo; -http://purl.obolibrary.org/obo/UBERON_0004880;chordamesoderm;axial chorda mesoderm -http://purl.obolibrary.org/obo/UBERON_0004880;chordamesoderm;chorda mesoderm -http://purl.obolibrary.org/obo/UBERON_0004880;chordamesoderm;dorsal mesoderm -http://purl.obolibrary.org/obo/UBERON_0004880;chordamesoderm;presumptive notochord -http://purl.obolibrary.org/obo/UBERON_0004882;eponychium; -http://purl.obolibrary.org/obo/UBERON_0004883;lung mesenchyme;lung-associated mesenchyme -http://purl.obolibrary.org/obo/UBERON_0004883;lung mesenchyme;mesenchyme of lung -http://purl.obolibrary.org/obo/UBERON_0004883;lung mesenchyme;pulmonary mesenchyme -http://purl.obolibrary.org/obo/UBERON_0004884;lobar bronchus mesenchyme;mesenchyme of lobar bronchus -http://purl.obolibrary.org/obo/UBERON_0004885;hilum;hilus -http://purl.obolibrary.org/obo/UBERON_0004886;lung hilus;hilum of lung -http://purl.obolibrary.org/obo/UBERON_0004886;lung hilus;hilum pulmonis -http://purl.obolibrary.org/obo/UBERON_0004886;lung hilus;hilus of lung -http://purl.obolibrary.org/obo/UBERON_0004886;lung hilus;lung hilum -http://purl.obolibrary.org/obo/UBERON_0004886;lung hilus;pulmonary hilum -http://purl.obolibrary.org/obo/UBERON_0004886;lung hilus;pulmonary hilus -http://purl.obolibrary.org/obo/UBERON_0004887;left lung hilus;hilum of left lung -http://purl.obolibrary.org/obo/UBERON_0004887;left lung hilus;hilus of left lung -http://purl.obolibrary.org/obo/UBERON_0004887;left lung hilus;left lung hilum -http://purl.obolibrary.org/obo/UBERON_0004887;left lung hilus;left pulmonary hilum -http://purl.obolibrary.org/obo/UBERON_0004887;left lung hilus;left pulmonary hilus -http://purl.obolibrary.org/obo/UBERON_0004888;right lung hilus;hilum of right lung -http://purl.obolibrary.org/obo/UBERON_0004888;right lung hilus;hilus of right lung -http://purl.obolibrary.org/obo/UBERON_0004888;right lung hilus;right lung hilum -http://purl.obolibrary.org/obo/UBERON_0004888;right lung hilus;right pulmonary hilum -http://purl.obolibrary.org/obo/UBERON_0004888;right lung hilus;right pulmonary hilus -http://purl.obolibrary.org/obo/UBERON_0004889;lobar bronchus vasculature; -http://purl.obolibrary.org/obo/UBERON_0004890;right lung accessory lobe;right lung postcaval lobe -http://purl.obolibrary.org/obo/UBERON_0004892;lobar bronchus alveolar system; -http://purl.obolibrary.org/obo/UBERON_0004893;interalveolar septum;alveolar septum -http://purl.obolibrary.org/obo/UBERON_0004894;alveolar wall;pulmonary alveolar wall -http://purl.obolibrary.org/obo/UBERON_0004894;alveolar wall;pulmonary interalveolar septum -http://purl.obolibrary.org/obo/UBERON_0004894;alveolar wall;wall of pulmonary alveolus -http://purl.obolibrary.org/obo/UBERON_0004895;alveolar smooth muscle; -http://purl.obolibrary.org/obo/UBERON_0004896;right lung accessory lobe lobar bronchus;lobar bronchus of right lung accessory lobe -http://purl.obolibrary.org/obo/UBERON_0004897;right lung accessory lobe lobar bronchus mesenchyme; -http://purl.obolibrary.org/obo/UBERON_0004899;right lung cranial lobe lobar bronchus mesenchyme; -http://purl.obolibrary.org/obo/UBERON_0004900;right lung middle lobe lobar bronchus mesenchyme; -http://purl.obolibrary.org/obo/UBERON_0004901;right lung lobar bronchus mesenchyme; -http://purl.obolibrary.org/obo/UBERON_0004902;urogenital sinus epithelium;UGE -http://purl.obolibrary.org/obo/UBERON_0004902;urogenital sinus epithelium;epithelium of urogenital sinus -http://purl.obolibrary.org/obo/UBERON_0004903;bronchoalveolar duct junction; -http://purl.obolibrary.org/obo/UBERON_0004904;neuron projection bundle connecting eye with brain;optic nerve (generic) -http://purl.obolibrary.org/obo/UBERON_0004905;articulation;joint -http://purl.obolibrary.org/obo/UBERON_0004906;ectodermal part of digestive tract;ectodermal gut -http://purl.obolibrary.org/obo/UBERON_0004906;ectodermal part of digestive tract;gut ectoderm -http://purl.obolibrary.org/obo/UBERON_0004907;lower digestive tract;gut -http://purl.obolibrary.org/obo/UBERON_0004907;lower digestive tract;lower GI tract -http://purl.obolibrary.org/obo/UBERON_0004907;lower digestive tract;lower gastrointestinal tract -http://purl.obolibrary.org/obo/UBERON_0004908;upper digestive tract;upper GI tract -http://purl.obolibrary.org/obo/UBERON_0004908;upper digestive tract;upper gastrointestinal tract -http://purl.obolibrary.org/obo/UBERON_0004909;epithelium of gonad;gonad epithelium -http://purl.obolibrary.org/obo/UBERON_0004909;epithelium of gonad;gonadal epithelium -http://purl.obolibrary.org/obo/UBERON_0004910;epithelium of male gonad;testis epithelium -http://purl.obolibrary.org/obo/UBERON_0004911;epithelium of female gonad;ovarian epithelium -http://purl.obolibrary.org/obo/UBERON_0004911;epithelium of female gonad;ovary epithelium -http://purl.obolibrary.org/obo/UBERON_0004912;biliary bud; -http://purl.obolibrary.org/obo/UBERON_0004913;hepatopancreatic ampulla;Vater's ampulla -http://purl.obolibrary.org/obo/UBERON_0004913;hepatopancreatic ampulla;ampulla biliaropancreatica -http://purl.obolibrary.org/obo/UBERON_0004913;hepatopancreatic ampulla;ampulla of Vater -http://purl.obolibrary.org/obo/UBERON_0004913;hepatopancreatic ampulla;ampulla of bile duct -http://purl.obolibrary.org/obo/UBERON_0004913;hepatopancreatic ampulla;biliaropancreatic ampulla -http://purl.obolibrary.org/obo/UBERON_0004913;hepatopancreatic ampulla;papilla Vateri -http://purl.obolibrary.org/obo/UBERON_0004914;duodenal papilla;papilla duodenalis -http://purl.obolibrary.org/obo/UBERON_0004914;duodenal papilla;papilla of duodenum -http://purl.obolibrary.org/obo/UBERON_0004915;sphincter of hepatopancreatic ampulla;Oddi's sphincter -http://purl.obolibrary.org/obo/UBERON_0004915;sphincter of hepatopancreatic ampulla;hepatopancreatic ampullary sphincter -http://purl.obolibrary.org/obo/UBERON_0004915;sphincter of hepatopancreatic ampulla;musculus sphincter ampullae -http://purl.obolibrary.org/obo/UBERON_0004915;sphincter of hepatopancreatic ampulla;musculus sphincter ampullae hepatopancreatica -http://purl.obolibrary.org/obo/UBERON_0004915;sphincter of hepatopancreatic ampulla;sphincter of Oddi -http://purl.obolibrary.org/obo/UBERON_0004915;sphincter of hepatopancreatic ampulla;sphincter of ampulla of vater -http://purl.obolibrary.org/obo/UBERON_0004916;anal sphincter;anal region sphincter -http://purl.obolibrary.org/obo/UBERON_0004916;anal sphincter;sphincter analia -http://purl.obolibrary.org/obo/UBERON_0004917;urethral sphincter;sphincter muscle of urethra -http://purl.obolibrary.org/obo/UBERON_0004917;urethral sphincter;sphincter of urethra -http://purl.obolibrary.org/obo/UBERON_0004917;urethral sphincter;sphincter urethrae -http://purl.obolibrary.org/obo/UBERON_0004917;urethral sphincter;urethral sphincter muscle -http://purl.obolibrary.org/obo/UBERON_0004918;internal urethral sphincter;internal sphincter muscle of urethra -http://purl.obolibrary.org/obo/UBERON_0004918;internal urethral sphincter;internal sphincter of urethra -http://purl.obolibrary.org/obo/UBERON_0004918;internal urethral sphincter;internal urethral sphincter muscle -http://purl.obolibrary.org/obo/UBERON_0004918;internal urethral sphincter;musculus sphincter supracollicularis -http://purl.obolibrary.org/obo/UBERON_0004918;internal urethral sphincter;musculus sphincter urethrae internus -http://purl.obolibrary.org/obo/UBERON_0004918;internal urethral sphincter;preprostatic sphincter -http://purl.obolibrary.org/obo/UBERON_0004918;internal urethral sphincter;sphincter urethrae internus -http://purl.obolibrary.org/obo/UBERON_0004918;internal urethral sphincter;supracollicular sphincter -http://purl.obolibrary.org/obo/UBERON_0004919;external urethral sphincter;annulus urethralis -http://purl.obolibrary.org/obo/UBERON_0004919;external urethral sphincter;external sphincter muscle of urethra -http://purl.obolibrary.org/obo/UBERON_0004919;external urethral sphincter;external sphincter of urethra -http://purl.obolibrary.org/obo/UBERON_0004919;external urethral sphincter;external urethral sphincter muscle -http://purl.obolibrary.org/obo/UBERON_0004919;external urethral sphincter;m. urethralis -http://purl.obolibrary.org/obo/UBERON_0004919;external urethral sphincter;urethralis -http://purl.obolibrary.org/obo/UBERON_0004919;external urethral sphincter;urethralis muscle -http://purl.obolibrary.org/obo/UBERON_0004921;subdivision of digestive tract;alimentary system subdivision -http://purl.obolibrary.org/obo/UBERON_0004921;subdivision of digestive tract;gut section -http://purl.obolibrary.org/obo/UBERON_0004921;subdivision of digestive tract;intestinal tract -http://purl.obolibrary.org/obo/UBERON_0004921;subdivision of digestive tract;segment of intestinal tract -http://purl.obolibrary.org/obo/UBERON_0004921;subdivision of digestive tract;subdivision of alimentary system -http://purl.obolibrary.org/obo/UBERON_0004922;postnatal subventricular zone;SEZ -http://purl.obolibrary.org/obo/UBERON_0004922;postnatal subventricular zone;SVZ -http://purl.obolibrary.org/obo/UBERON_0004922;postnatal subventricular zone;adult subventricular zone -http://purl.obolibrary.org/obo/UBERON_0004922;postnatal subventricular zone;brain subventricular zone -http://purl.obolibrary.org/obo/UBERON_0004922;postnatal subventricular zone;postnatal subventricular zone -http://purl.obolibrary.org/obo/UBERON_0004922;postnatal subventricular zone;subventricular zone -http://purl.obolibrary.org/obo/UBERON_0004922;postnatal subventricular zone;subventricular zone of brain -http://purl.obolibrary.org/obo/UBERON_0004923;organ component layer; -http://purl.obolibrary.org/obo/UBERON_0004924;submucosa of pharynx;pharyngeal submucosa -http://purl.obolibrary.org/obo/UBERON_0004924;submucosa of pharynx;pharynx submucosa -http://purl.obolibrary.org/obo/UBERON_0004924;submucosa of pharynx;tela submucosa pharyngea -http://purl.obolibrary.org/obo/UBERON_0004924;submucosa of pharynx;tela submucosa pharyngis -http://purl.obolibrary.org/obo/UBERON_0004925;submucosa of laryngopharynx;hypopharynx submucosa -http://purl.obolibrary.org/obo/UBERON_0004925;submucosa of laryngopharynx;laryngeal pharynx submucosa -http://purl.obolibrary.org/obo/UBERON_0004925;submucosa of laryngopharynx;laryngopharynx submucosa -http://purl.obolibrary.org/obo/UBERON_0004925;submucosa of laryngopharynx;submucosa of hypopharynx -http://purl.obolibrary.org/obo/UBERON_0004925;submucosa of laryngopharynx;submucosa of laryngeal pharynx -http://purl.obolibrary.org/obo/UBERON_0004925;submucosa of laryngopharynx;tela submucosa (pars laryngea pharyngis) -http://purl.obolibrary.org/obo/UBERON_0004926;submucosa of cystic duct;cystic duct submucosa -http://purl.obolibrary.org/obo/UBERON_0004926;submucosa of cystic duct;cystic ductal submucosa -http://purl.obolibrary.org/obo/UBERON_0004927;submucosa of cecum;caecum submucosa -http://purl.obolibrary.org/obo/UBERON_0004927;submucosa of cecum;cecum submucosa -http://purl.obolibrary.org/obo/UBERON_0004927;submucosa of cecum;intestinum crassum caecum submucosa -http://purl.obolibrary.org/obo/UBERON_0004927;submucosa of cecum;submucosa of caecum -http://purl.obolibrary.org/obo/UBERON_0004927;submucosa of cecum;submucosa of intestinum crassum caecum -http://purl.obolibrary.org/obo/UBERON_0004928;submucosa of appendix;appendiceal submucosa -http://purl.obolibrary.org/obo/UBERON_0004928;submucosa of appendix;appendix submucosa -http://purl.obolibrary.org/obo/UBERON_0004928;submucosa of appendix;caecal appendix submucosa -http://purl.obolibrary.org/obo/UBERON_0004928;submucosa of appendix;submucosa of caecal appendix -http://purl.obolibrary.org/obo/UBERON_0004928;submucosa of appendix;submucosa of vermiform appendix -http://purl.obolibrary.org/obo/UBERON_0004928;submucosa of appendix;submucosa of vermix -http://purl.obolibrary.org/obo/UBERON_0004928;submucosa of appendix;vermiform appendix submucosa -http://purl.obolibrary.org/obo/UBERON_0004928;submucosa of appendix;vermix submucosa -http://purl.obolibrary.org/obo/UBERON_0004929;submucosa of ascending colon;ascending colon submucosa -http://purl.obolibrary.org/obo/UBERON_0004930;submucosa of transverse colon;transverse colon submucosa -http://purl.obolibrary.org/obo/UBERON_0004931;submucosa of descending colon;descending colon submucosa -http://purl.obolibrary.org/obo/UBERON_0004932;submucosa of sigmoid colon;sigmoid colon submucosa -http://purl.obolibrary.org/obo/UBERON_0004933;submucosa of fundus of stomach;fundus gastricus (ventricularis) submucosa -http://purl.obolibrary.org/obo/UBERON_0004933;submucosa of fundus of stomach;fundus of stomach submucosa -http://purl.obolibrary.org/obo/UBERON_0004933;submucosa of fundus of stomach;stomach fundus submucosa -http://purl.obolibrary.org/obo/UBERON_0004933;submucosa of fundus of stomach;submucosa of fundus gastricus (ventricularis) -http://purl.obolibrary.org/obo/UBERON_0004933;submucosa of fundus of stomach;submucosa of stomach fundus -http://purl.obolibrary.org/obo/UBERON_0004934;submucosa of body of stomach;body of stomach submucosa -http://purl.obolibrary.org/obo/UBERON_0004934;submucosa of body of stomach;corpus gastricum (ventriculare) submucosa -http://purl.obolibrary.org/obo/UBERON_0004934;submucosa of body of stomach;gastric body submucosa -http://purl.obolibrary.org/obo/UBERON_0004934;submucosa of body of stomach;stomach body submucosa -http://purl.obolibrary.org/obo/UBERON_0004934;submucosa of body of stomach;submucosa of corpus gastricum (ventriculare) -http://purl.obolibrary.org/obo/UBERON_0004934;submucosa of body of stomach;submucosa of gastric body -http://purl.obolibrary.org/obo/UBERON_0004934;submucosa of body of stomach;submucosa of stomach body -http://purl.obolibrary.org/obo/UBERON_0004935;submucosa of cardia of stomach;cardia of stomach submucosa -http://purl.obolibrary.org/obo/UBERON_0004935;submucosa of cardia of stomach;cardial part of stomach submucosa -http://purl.obolibrary.org/obo/UBERON_0004935;submucosa of cardia of stomach;gastric cardia submucosa -http://purl.obolibrary.org/obo/UBERON_0004935;submucosa of cardia of stomach;pars cardiaca (gaster) submucosa -http://purl.obolibrary.org/obo/UBERON_0004935;submucosa of cardia of stomach;stomach cardiac region submucosa -http://purl.obolibrary.org/obo/UBERON_0004935;submucosa of cardia of stomach;submucosa of cardial part of stomach -http://purl.obolibrary.org/obo/UBERON_0004935;submucosa of cardia of stomach;submucosa of gastric cardia -http://purl.obolibrary.org/obo/UBERON_0004935;submucosa of cardia of stomach;submucosa of pars cardiaca (gaster) -http://purl.obolibrary.org/obo/UBERON_0004935;submucosa of cardia of stomach;submucosa of stomach cardiac region -http://purl.obolibrary.org/obo/UBERON_0004936;submucosa of pyloric antrum;antrum of stomach submucosa -http://purl.obolibrary.org/obo/UBERON_0004936;submucosa of pyloric antrum;pyloric antrum submucosa -http://purl.obolibrary.org/obo/UBERON_0004936;submucosa of pyloric antrum;stomach pyloric antrum submucosa -http://purl.obolibrary.org/obo/UBERON_0004936;submucosa of pyloric antrum;submucosa of antrum of stomach -http://purl.obolibrary.org/obo/UBERON_0004936;submucosa of pyloric antrum;submucosa of stomach pyloric antrum -http://purl.obolibrary.org/obo/UBERON_0004937;submucosa of pylorus;pyloric part of stomach submucosa -http://purl.obolibrary.org/obo/UBERON_0004937;submucosa of pylorus;pyloric submucosa -http://purl.obolibrary.org/obo/UBERON_0004937;submucosa of pylorus;pylorus submucosa -http://purl.obolibrary.org/obo/UBERON_0004937;submucosa of pylorus;stomach pyloric region submucosa -http://purl.obolibrary.org/obo/UBERON_0004937;submucosa of pylorus;submucosa of pyloric part of stomach -http://purl.obolibrary.org/obo/UBERON_0004937;submucosa of pylorus;submucosa of stomach pyloric region -http://purl.obolibrary.org/obo/UBERON_0004938;submucosa of biliary tree;biliary tract submucosa -http://purl.obolibrary.org/obo/UBERON_0004938;submucosa of biliary tree;biliary tree submucosa -http://purl.obolibrary.org/obo/UBERON_0004938;submucosa of biliary tree;submucosa of biliary tract -http://purl.obolibrary.org/obo/UBERON_0004939;submucosa of common bile duct;common bile duct submucosa -http://purl.obolibrary.org/obo/UBERON_0004939;submucosa of common bile duct;common bile ductal submucosa -http://purl.obolibrary.org/obo/UBERON_0004939;submucosa of common bile duct;ductus choledochus (biliaris) submucosa -http://purl.obolibrary.org/obo/UBERON_0004939;submucosa of common bile duct;submucosa of ductus choledochus (biliaris) -http://purl.obolibrary.org/obo/UBERON_0004940;submucosa of common hepatic duct;common hepatic duct submucosa -http://purl.obolibrary.org/obo/UBERON_0004940;submucosa of common hepatic duct;common hepatic ductal submucosa -http://purl.obolibrary.org/obo/UBERON_0004940;submucosa of common hepatic duct;hepatic duct submucosa -http://purl.obolibrary.org/obo/UBERON_0004940;submucosa of common hepatic duct;submucosa of hepatic duct -http://purl.obolibrary.org/obo/UBERON_0004941;submucosa of right hepatic duct;right hepatic duct submucosa -http://purl.obolibrary.org/obo/UBERON_0004941;submucosa of right hepatic duct;right hepatic ductal submucosa -http://purl.obolibrary.org/obo/UBERON_0004942;submucosa of left hepatic duct;left hepatic duct submucosa -http://purl.obolibrary.org/obo/UBERON_0004942;submucosa of left hepatic duct;left hepatic ductal submucosa -http://purl.obolibrary.org/obo/UBERON_0004943;submucosa of urinary bladder;bladder submucosa -http://purl.obolibrary.org/obo/UBERON_0004943;submucosa of urinary bladder;submucosa of bladder -http://purl.obolibrary.org/obo/UBERON_0004943;submucosa of urinary bladder;tela submucosa (vesica urinaria) -http://purl.obolibrary.org/obo/UBERON_0004943;submucosa of urinary bladder;tela submucosa vesicae -http://purl.obolibrary.org/obo/UBERON_0004943;submucosa of urinary bladder;tela submucosa vesicae urinariae -http://purl.obolibrary.org/obo/UBERON_0004943;submucosa of urinary bladder;urinary bladder submucosa -http://purl.obolibrary.org/obo/UBERON_0004944;submucosa of trigone of urinary bladder;Lieutaud ' s trigone submucosa -http://purl.obolibrary.org/obo/UBERON_0004944;submucosa of trigone of urinary bladder;deep trigone submucosa -http://purl.obolibrary.org/obo/UBERON_0004944;submucosa of trigone of urinary bladder;submucosa of Lieutaud ' s trigone -http://purl.obolibrary.org/obo/UBERON_0004944;submucosa of trigone of urinary bladder;submucosa of deep trigone -http://purl.obolibrary.org/obo/UBERON_0004944;submucosa of trigone of urinary bladder;submucosa of trigone of bladder -http://purl.obolibrary.org/obo/UBERON_0004944;submucosa of trigone of urinary bladder;submucosa of urinary bladder trigone -http://purl.obolibrary.org/obo/UBERON_0004944;submucosa of trigone of urinary bladder;submucosa of vesical trigone -http://purl.obolibrary.org/obo/UBERON_0004944;submucosa of trigone of urinary bladder;trigone of bladder submucosa -http://purl.obolibrary.org/obo/UBERON_0004944;submucosa of trigone of urinary bladder;trigone of urinary bladder submucosa -http://purl.obolibrary.org/obo/UBERON_0004944;submucosa of trigone of urinary bladder;urinary bladder trigone submucosa -http://purl.obolibrary.org/obo/UBERON_0004944;submucosa of trigone of urinary bladder;vesical trigone submucosa -http://purl.obolibrary.org/obo/UBERON_0004945;submucosa of neck of urinary bladder;bladder neck submucosa -http://purl.obolibrary.org/obo/UBERON_0004945;submucosa of neck of urinary bladder;neck of bladder submucosa -http://purl.obolibrary.org/obo/UBERON_0004945;submucosa of neck of urinary bladder;neck of urinary bladder submucosa -http://purl.obolibrary.org/obo/UBERON_0004945;submucosa of neck of urinary bladder;submucosa of bladder neck -http://purl.obolibrary.org/obo/UBERON_0004945;submucosa of neck of urinary bladder;submucosa of neck of bladder -http://purl.obolibrary.org/obo/UBERON_0004945;submucosa of neck of urinary bladder;submucosa of urinary bladder neck -http://purl.obolibrary.org/obo/UBERON_0004945;submucosa of neck of urinary bladder;submucosa of vesical neck -http://purl.obolibrary.org/obo/UBERON_0004945;submucosa of neck of urinary bladder;urinary bladder neck submucosa -http://purl.obolibrary.org/obo/UBERON_0004945;submucosa of neck of urinary bladder;vesical neck submucosa -http://purl.obolibrary.org/obo/UBERON_0004946;submucosa of ileum;ileal submucosa -http://purl.obolibrary.org/obo/UBERON_0004946;submucosa of ileum;ileum submucosa -http://purl.obolibrary.org/obo/UBERON_0004947;submucosa of right main bronchus;right bronchus submucosa -http://purl.obolibrary.org/obo/UBERON_0004947;submucosa of right main bronchus;right main bronchial submucosa -http://purl.obolibrary.org/obo/UBERON_0004947;submucosa of right main bronchus;right main bronchus submucosa -http://purl.obolibrary.org/obo/UBERON_0004947;submucosa of right main bronchus;right principal bronchus submucosa -http://purl.obolibrary.org/obo/UBERON_0004947;submucosa of right main bronchus;submucosa of right bronchus -http://purl.obolibrary.org/obo/UBERON_0004947;submucosa of right main bronchus;submucosa of right principal bronchus -http://purl.obolibrary.org/obo/UBERON_0004948;submucosa of left main bronchus;left bronchus submucosa -http://purl.obolibrary.org/obo/UBERON_0004948;submucosa of left main bronchus;left main bronchial submucosa -http://purl.obolibrary.org/obo/UBERON_0004948;submucosa of left main bronchus;left main bronchus submucosa -http://purl.obolibrary.org/obo/UBERON_0004948;submucosa of left main bronchus;left principal bronchus submucosa -http://purl.obolibrary.org/obo/UBERON_0004948;submucosa of left main bronchus;submucosa of left bronchus -http://purl.obolibrary.org/obo/UBERON_0004948;submucosa of left main bronchus;submucosa of left principal bronchus -http://purl.obolibrary.org/obo/UBERON_0004949;submucosa of main bronchus;bronchus principalis submucosa -http://purl.obolibrary.org/obo/UBERON_0004949;submucosa of main bronchus;main bronchial submucosa -http://purl.obolibrary.org/obo/UBERON_0004949;submucosa of main bronchus;main bronchus submucosa -http://purl.obolibrary.org/obo/UBERON_0004949;submucosa of main bronchus;primary bronchus submucosa -http://purl.obolibrary.org/obo/UBERON_0004949;submucosa of main bronchus;principal bronchus submucosa -http://purl.obolibrary.org/obo/UBERON_0004949;submucosa of main bronchus;submucosa of bronchus principalis -http://purl.obolibrary.org/obo/UBERON_0004949;submucosa of main bronchus;submucosa of primary bronchus -http://purl.obolibrary.org/obo/UBERON_0004949;submucosa of main bronchus;submucosa of principal bronchus -http://purl.obolibrary.org/obo/UBERON_0004950;submucosa of lobar bronchus;lobar bronchial submucosa -http://purl.obolibrary.org/obo/UBERON_0004950;submucosa of lobar bronchus;lobar bronchus submucosa -http://purl.obolibrary.org/obo/UBERON_0004950;submucosa of lobar bronchus;secondary bronchus submucosa -http://purl.obolibrary.org/obo/UBERON_0004950;submucosa of lobar bronchus;submucosa of secondary bronchus -http://purl.obolibrary.org/obo/UBERON_0004951;submucosa of segmental bronchus;segmental bronchial submucosa -http://purl.obolibrary.org/obo/UBERON_0004951;submucosa of segmental bronchus;segmental bronchus submucosa -http://purl.obolibrary.org/obo/UBERON_0004951;submucosa of segmental bronchus;submucosa of tertiary bronchus -http://purl.obolibrary.org/obo/UBERON_0004951;submucosa of segmental bronchus;tertiary bronchus submucosa -http://purl.obolibrary.org/obo/UBERON_0004952;submucosa of bronchiole;bronchiole submucosa -http://purl.obolibrary.org/obo/UBERON_0004980;mucosa of ureter;mucosa of organ of ureter -http://purl.obolibrary.org/obo/UBERON_0004980;mucosa of ureter;mucosal layer of ureter -http://purl.obolibrary.org/obo/UBERON_0004980;mucosa of ureter;mucous membrane of ureter -http://purl.obolibrary.org/obo/UBERON_0004980;mucosa of ureter;organ mucosa of ureter -http://purl.obolibrary.org/obo/UBERON_0004980;mucosa of ureter;tunica mucosa (ureter) -http://purl.obolibrary.org/obo/UBERON_0004980;mucosa of ureter;tunica mucosa ureteris -http://purl.obolibrary.org/obo/UBERON_0004980;mucosa of ureter;ureter mucosa -http://purl.obolibrary.org/obo/UBERON_0004980;mucosa of ureter;ureter mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004980;mucosa of ureter;ureter mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004980;mucosa of ureter;ureter organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004980;mucosa of ureter;ureteral mucosa -http://purl.obolibrary.org/obo/UBERON_0004980;mucosa of ureter;ureteric mucosa -http://purl.obolibrary.org/obo/UBERON_0004982;mucosa of epiglottis;epiglottis mucosa -http://purl.obolibrary.org/obo/UBERON_0004982;mucosa of epiglottis;epiglottis mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004982;mucosa of epiglottis;epiglottis mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004982;mucosa of epiglottis;epiglottis organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004982;mucosa of epiglottis;mucosa of organ of epiglottis -http://purl.obolibrary.org/obo/UBERON_0004982;mucosa of epiglottis;mucous membrane of epiglottis -http://purl.obolibrary.org/obo/UBERON_0004982;mucosa of epiglottis;organ mucosa of epiglottis -http://purl.obolibrary.org/obo/UBERON_0004983;mucosa of vagina;mucosa of organ of vagina -http://purl.obolibrary.org/obo/UBERON_0004983;mucosa of vagina;mucous membrane of vagina -http://purl.obolibrary.org/obo/UBERON_0004983;mucosa of vagina;organ mucosa of vagina -http://purl.obolibrary.org/obo/UBERON_0004983;mucosa of vagina;tunica mucosa vaginae -http://purl.obolibrary.org/obo/UBERON_0004983;mucosa of vagina;vagina mucosa -http://purl.obolibrary.org/obo/UBERON_0004983;mucosa of vagina;vagina mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004983;mucosa of vagina;vagina mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004983;mucosa of vagina;vagina organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004983;mucosa of vagina;vaginal mucosa -http://purl.obolibrary.org/obo/UBERON_0004984;mucosa of seminal vesicle;mucosa of organ of seminal gland -http://purl.obolibrary.org/obo/UBERON_0004984;mucosa of seminal vesicle;mucosa of organ of seminal vesicle -http://purl.obolibrary.org/obo/UBERON_0004984;mucosa of seminal vesicle;mucosa of seminal gland -http://purl.obolibrary.org/obo/UBERON_0004984;mucosa of seminal vesicle;mucous membrane of seminal gland -http://purl.obolibrary.org/obo/UBERON_0004984;mucosa of seminal vesicle;mucous membrane of seminal vesicle -http://purl.obolibrary.org/obo/UBERON_0004984;mucosa of seminal vesicle;organ mucosa of seminal gland -http://purl.obolibrary.org/obo/UBERON_0004984;mucosa of seminal vesicle;organ mucosa of seminal vesicle -http://purl.obolibrary.org/obo/UBERON_0004984;mucosa of seminal vesicle;seminal gland mucosa -http://purl.obolibrary.org/obo/UBERON_0004984;mucosa of seminal vesicle;seminal gland mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004984;mucosa of seminal vesicle;seminal gland mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004984;mucosa of seminal vesicle;seminal gland organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004984;mucosa of seminal vesicle;seminal vesicle mucosa -http://purl.obolibrary.org/obo/UBERON_0004984;mucosa of seminal vesicle;seminal vesicle mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004984;mucosa of seminal vesicle;seminal vesicle mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004984;mucosa of seminal vesicle;seminal vesicle organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004984;mucosa of seminal vesicle;tunica mucosa glandulae vesiculosae -http://purl.obolibrary.org/obo/UBERON_0004985;mucosa of ejaculatory duct;ejaculatory duct mucosa -http://purl.obolibrary.org/obo/UBERON_0004985;mucosa of ejaculatory duct;ejaculatory duct mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004985;mucosa of ejaculatory duct;ejaculatory duct mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004985;mucosa of ejaculatory duct;ejaculatory duct organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004985;mucosa of ejaculatory duct;ejaculatory ductal mucosa -http://purl.obolibrary.org/obo/UBERON_0004985;mucosa of ejaculatory duct;mucosa of organ of ejaculatory duct -http://purl.obolibrary.org/obo/UBERON_0004985;mucosa of ejaculatory duct;mucous membrane of ejaculatory duct -http://purl.obolibrary.org/obo/UBERON_0004985;mucosa of ejaculatory duct;organ mucosa of ejaculatory duct -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;deferent duct mucosa -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;deferent duct mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;deferent duct mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;deferent duct organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;deferent ductal mucosa -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;ductus deferens mucosa -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;ductus deferens mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;ductus deferens mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;ductus deferens organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;mucosa of ductus deferens -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;mucosa of organ of deferent duct -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;mucosa of organ of ductus deferens -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;mucosa of organ of sperm duct -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;mucosa of organ of vas deferen -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;mucosa of organ of vas deferens -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;mucosa of sperm duct -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;mucosa of vas deferen -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;mucosa of vas deferens -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;mucous membrane of deferent duct -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;mucous membrane of ductus deferens -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;mucous membrane of sperm duct -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;mucous membrane of vas deferen -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;mucous membrane of vas deferens -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;organ mucosa of deferent duct -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;organ mucosa of ductus deferens -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;organ mucosa of sperm duct -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;organ mucosa of vas deferen -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;organ mucosa of vas deferens -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;sperm duct mucosa -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;sperm duct mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;sperm duct mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;sperm duct organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;tunica mucosa (ductus deferens) -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;tunica mucosa ductus deferentis -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;vas deferen mucosa -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;vas deferen mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;vas deferen mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;vas deferen organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;vas deferens mucosa -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;vas deferens mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;vas deferens mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004986;mucosa of deferent duct;vas deferens organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004987;mucosa of laryngopharynx;hypopharynx mucosa -http://purl.obolibrary.org/obo/UBERON_0004987;mucosa of laryngopharynx;hypopharynx mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004987;mucosa of laryngopharynx;hypopharynx mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004987;mucosa of laryngopharynx;hypopharynx organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004987;mucosa of laryngopharynx;laryngeal pharynx mucosa -http://purl.obolibrary.org/obo/UBERON_0004987;mucosa of laryngopharynx;laryngeal pharynx mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004987;mucosa of laryngopharynx;laryngeal pharynx mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004987;mucosa of laryngopharynx;laryngeal pharynx organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004987;mucosa of laryngopharynx;laryngopharynx mucosa -http://purl.obolibrary.org/obo/UBERON_0004987;mucosa of laryngopharynx;laryngopharynx mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004987;mucosa of laryngopharynx;laryngopharynx mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004987;mucosa of laryngopharynx;laryngopharynx organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004987;mucosa of laryngopharynx;mucosa of hypopharynx -http://purl.obolibrary.org/obo/UBERON_0004987;mucosa of laryngopharynx;mucosa of laryngeal pharynx -http://purl.obolibrary.org/obo/UBERON_0004987;mucosa of laryngopharynx;mucosa of organ of hypopharynx -http://purl.obolibrary.org/obo/UBERON_0004987;mucosa of laryngopharynx;mucosa of organ of laryngeal pharynx -http://purl.obolibrary.org/obo/UBERON_0004987;mucosa of laryngopharynx;mucosa of organ of laryngopharynx -http://purl.obolibrary.org/obo/UBERON_0004987;mucosa of laryngopharynx;mucous membrane of hypopharynx -http://purl.obolibrary.org/obo/UBERON_0004987;mucosa of laryngopharynx;mucous membrane of laryngeal pharynx -http://purl.obolibrary.org/obo/UBERON_0004987;mucosa of laryngopharynx;mucous membrane of laryngopharynx -http://purl.obolibrary.org/obo/UBERON_0004987;mucosa of laryngopharynx;organ mucosa of hypopharynx -http://purl.obolibrary.org/obo/UBERON_0004987;mucosa of laryngopharynx;organ mucosa of laryngeal pharynx -http://purl.obolibrary.org/obo/UBERON_0004987;mucosa of laryngopharynx;organ mucosa of laryngopharynx -http://purl.obolibrary.org/obo/UBERON_0004988;mucosa of cystic duct;cystic duct mucosa -http://purl.obolibrary.org/obo/UBERON_0004988;mucosa of cystic duct;cystic duct mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004988;mucosa of cystic duct;cystic duct mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004988;mucosa of cystic duct;cystic duct organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004988;mucosa of cystic duct;cystic ductal mucosa -http://purl.obolibrary.org/obo/UBERON_0004988;mucosa of cystic duct;mucosa of organ of cystic duct -http://purl.obolibrary.org/obo/UBERON_0004988;mucosa of cystic duct;mucous membrane of cystic duct -http://purl.obolibrary.org/obo/UBERON_0004988;mucosa of cystic duct;organ mucosa of cystic duct -http://purl.obolibrary.org/obo/UBERON_0004989;mucosa of appendix;appendiceal mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004989;mucosa of appendix;appendix mucosa -http://purl.obolibrary.org/obo/UBERON_0004989;mucosa of appendix;appendix mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004989;mucosa of appendix;appendix mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004989;mucosa of appendix;appendix organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004989;mucosa of appendix;caecal appendix mucosa -http://purl.obolibrary.org/obo/UBERON_0004989;mucosa of appendix;caecal appendix mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004989;mucosa of appendix;caecal appendix mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004989;mucosa of appendix;caecal appendix organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004989;mucosa of appendix;mucosa of caecal appendix -http://purl.obolibrary.org/obo/UBERON_0004989;mucosa of appendix;mucosa of organ of appendix -http://purl.obolibrary.org/obo/UBERON_0004989;mucosa of appendix;mucosa of organ of caecal appendix -http://purl.obolibrary.org/obo/UBERON_0004989;mucosa of appendix;mucosa of organ of vermiform appendix -http://purl.obolibrary.org/obo/UBERON_0004989;mucosa of appendix;mucosa of organ of vermix -http://purl.obolibrary.org/obo/UBERON_0004989;mucosa of appendix;mucosa of vermiform appendix -http://purl.obolibrary.org/obo/UBERON_0004989;mucosa of appendix;mucosa of vermix -http://purl.obolibrary.org/obo/UBERON_0004989;mucosa of appendix;mucous membrane of appendix -http://purl.obolibrary.org/obo/UBERON_0004989;mucosa of appendix;mucous membrane of caecal appendix -http://purl.obolibrary.org/obo/UBERON_0004989;mucosa of appendix;mucous membrane of vermiform appendix -http://purl.obolibrary.org/obo/UBERON_0004989;mucosa of appendix;mucous membrane of vermix -http://purl.obolibrary.org/obo/UBERON_0004989;mucosa of appendix;organ mucosa of appendix -http://purl.obolibrary.org/obo/UBERON_0004989;mucosa of appendix;organ mucosa of caecal appendix -http://purl.obolibrary.org/obo/UBERON_0004989;mucosa of appendix;organ mucosa of vermiform appendix -http://purl.obolibrary.org/obo/UBERON_0004989;mucosa of appendix;organ mucosa of vermix -http://purl.obolibrary.org/obo/UBERON_0004989;mucosa of appendix;vermiform appendix mucosa -http://purl.obolibrary.org/obo/UBERON_0004989;mucosa of appendix;vermiform appendix mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004989;mucosa of appendix;vermiform appendix mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004989;mucosa of appendix;vermiform appendix organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004989;mucosa of appendix;vermix mucosa -http://purl.obolibrary.org/obo/UBERON_0004989;mucosa of appendix;vermix mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004989;mucosa of appendix;vermix mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004989;mucosa of appendix;vermix organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004990;mucosa of ascending colon;ascending colon mucosa -http://purl.obolibrary.org/obo/UBERON_0004990;mucosa of ascending colon;ascending colon mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004990;mucosa of ascending colon;ascending colon mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004990;mucosa of ascending colon;ascending colon organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004990;mucosa of ascending colon;mucosa of organ of ascending colon -http://purl.obolibrary.org/obo/UBERON_0004990;mucosa of ascending colon;mucous membrane of ascending colon -http://purl.obolibrary.org/obo/UBERON_0004990;mucosa of ascending colon;organ mucosa of ascending colon -http://purl.obolibrary.org/obo/UBERON_0004991;mucosa of transverse colon;mucosa of organ of transverse colon -http://purl.obolibrary.org/obo/UBERON_0004991;mucosa of transverse colon;mucous membrane of transverse colon -http://purl.obolibrary.org/obo/UBERON_0004991;mucosa of transverse colon;organ mucosa of transverse colon -http://purl.obolibrary.org/obo/UBERON_0004991;mucosa of transverse colon;transverse colon mucosa -http://purl.obolibrary.org/obo/UBERON_0004991;mucosa of transverse colon;transverse colon mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004991;mucosa of transverse colon;transverse colon mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004991;mucosa of transverse colon;transverse colon organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004992;mucosa of descending colon;descending colon mucosa -http://purl.obolibrary.org/obo/UBERON_0004992;mucosa of descending colon;descending colon mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004992;mucosa of descending colon;descending colon mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004992;mucosa of descending colon;descending colon organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004992;mucosa of descending colon;mucosa of organ of descending colon -http://purl.obolibrary.org/obo/UBERON_0004992;mucosa of descending colon;mucous membrane of descending colon -http://purl.obolibrary.org/obo/UBERON_0004992;mucosa of descending colon;organ mucosa of descending colon -http://purl.obolibrary.org/obo/UBERON_0004993;mucosa of sigmoid colon;mucosa of organ of sigmoid colon -http://purl.obolibrary.org/obo/UBERON_0004993;mucosa of sigmoid colon;mucous membrane of sigmoid colon -http://purl.obolibrary.org/obo/UBERON_0004993;mucosa of sigmoid colon;organ mucosa of sigmoid colon -http://purl.obolibrary.org/obo/UBERON_0004993;mucosa of sigmoid colon;sigmoid colon mucosa -http://purl.obolibrary.org/obo/UBERON_0004993;mucosa of sigmoid colon;sigmoid colon mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004993;mucosa of sigmoid colon;sigmoid colon mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004993;mucosa of sigmoid colon;sigmoid colon organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004994;mucosa of fundus of stomach;fundus gastricus (ventricularis) mucosa -http://purl.obolibrary.org/obo/UBERON_0004994;mucosa of fundus of stomach;fundus gastricus (ventricularis) mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004994;mucosa of fundus of stomach;fundus gastricus (ventricularis) mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004994;mucosa of fundus of stomach;fundus gastricus (ventricularis) organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004994;mucosa of fundus of stomach;fundus of stomach mucosa -http://purl.obolibrary.org/obo/UBERON_0004994;mucosa of fundus of stomach;fundus of stomach mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004994;mucosa of fundus of stomach;fundus of stomach mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004994;mucosa of fundus of stomach;fundus of stomach organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004994;mucosa of fundus of stomach;mucosa of fundus gastricus (ventricularis) -http://purl.obolibrary.org/obo/UBERON_0004994;mucosa of fundus of stomach;mucosa of organ of fundus gastricus (ventricularis) -http://purl.obolibrary.org/obo/UBERON_0004994;mucosa of fundus of stomach;mucosa of organ of fundus of stomach -http://purl.obolibrary.org/obo/UBERON_0004994;mucosa of fundus of stomach;mucosa of organ of stomach fundus -http://purl.obolibrary.org/obo/UBERON_0004994;mucosa of fundus of stomach;mucosa of stomach fundus -http://purl.obolibrary.org/obo/UBERON_0004994;mucosa of fundus of stomach;mucous membrane of fundus gastricus (ventricularis) -http://purl.obolibrary.org/obo/UBERON_0004994;mucosa of fundus of stomach;mucous membrane of fundus of stomach -http://purl.obolibrary.org/obo/UBERON_0004994;mucosa of fundus of stomach;mucous membrane of stomach fundus -http://purl.obolibrary.org/obo/UBERON_0004994;mucosa of fundus of stomach;organ mucosa of fundus gastricus (ventricularis) -http://purl.obolibrary.org/obo/UBERON_0004994;mucosa of fundus of stomach;organ mucosa of fundus of stomach -http://purl.obolibrary.org/obo/UBERON_0004994;mucosa of fundus of stomach;organ mucosa of stomach fundus -http://purl.obolibrary.org/obo/UBERON_0004994;mucosa of fundus of stomach;stomach fundus mucosa -http://purl.obolibrary.org/obo/UBERON_0004994;mucosa of fundus of stomach;stomach fundus mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004994;mucosa of fundus of stomach;stomach fundus mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004994;mucosa of fundus of stomach;stomach fundus organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004995;mucosa of body of stomach;body of stomach mucosa -http://purl.obolibrary.org/obo/UBERON_0004995;mucosa of body of stomach;body of stomach mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004995;mucosa of body of stomach;body of stomach mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004995;mucosa of body of stomach;body of stomach organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004995;mucosa of body of stomach;corpus gastricum (ventriculare) mucosa -http://purl.obolibrary.org/obo/UBERON_0004995;mucosa of body of stomach;corpus gastricum (ventriculare) mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004995;mucosa of body of stomach;corpus gastricum (ventriculare) mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004995;mucosa of body of stomach;corpus gastricum (ventriculare) organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004995;mucosa of body of stomach;gastric body mucosa -http://purl.obolibrary.org/obo/UBERON_0004995;mucosa of body of stomach;gastric body mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004995;mucosa of body of stomach;gastric body mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004995;mucosa of body of stomach;gastric body organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004995;mucosa of body of stomach;mucosa of corpus gastricum (ventriculare) -http://purl.obolibrary.org/obo/UBERON_0004995;mucosa of body of stomach;mucosa of gastric body -http://purl.obolibrary.org/obo/UBERON_0004995;mucosa of body of stomach;mucosa of organ of body of stomach -http://purl.obolibrary.org/obo/UBERON_0004995;mucosa of body of stomach;mucosa of organ of corpus gastricum (ventriculare) -http://purl.obolibrary.org/obo/UBERON_0004995;mucosa of body of stomach;mucosa of organ of gastric body -http://purl.obolibrary.org/obo/UBERON_0004995;mucosa of body of stomach;mucosa of organ of stomach body -http://purl.obolibrary.org/obo/UBERON_0004995;mucosa of body of stomach;mucosa of stomach body -http://purl.obolibrary.org/obo/UBERON_0004995;mucosa of body of stomach;mucous membrane of body of stomach -http://purl.obolibrary.org/obo/UBERON_0004995;mucosa of body of stomach;mucous membrane of corpus gastricum (ventriculare) -http://purl.obolibrary.org/obo/UBERON_0004995;mucosa of body of stomach;mucous membrane of gastric body -http://purl.obolibrary.org/obo/UBERON_0004995;mucosa of body of stomach;mucous membrane of stomach body -http://purl.obolibrary.org/obo/UBERON_0004995;mucosa of body of stomach;organ mucosa of body of stomach -http://purl.obolibrary.org/obo/UBERON_0004995;mucosa of body of stomach;organ mucosa of corpus gastricum (ventriculare) -http://purl.obolibrary.org/obo/UBERON_0004995;mucosa of body of stomach;organ mucosa of gastric body -http://purl.obolibrary.org/obo/UBERON_0004995;mucosa of body of stomach;organ mucosa of stomach body -http://purl.obolibrary.org/obo/UBERON_0004995;mucosa of body of stomach;stomach body mucosa -http://purl.obolibrary.org/obo/UBERON_0004995;mucosa of body of stomach;stomach body mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004995;mucosa of body of stomach;stomach body mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004995;mucosa of body of stomach;stomach body organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004996;mucosa of cardia of stomach;cardia of stomach mucosa -http://purl.obolibrary.org/obo/UBERON_0004996;mucosa of cardia of stomach;cardia of stomach mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004996;mucosa of cardia of stomach;cardia of stomach mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004996;mucosa of cardia of stomach;cardia of stomach organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004996;mucosa of cardia of stomach;cardial part of stomach mucosa -http://purl.obolibrary.org/obo/UBERON_0004996;mucosa of cardia of stomach;cardial part of stomach mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004996;mucosa of cardia of stomach;cardial part of stomach mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004996;mucosa of cardia of stomach;cardial part of stomach organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004996;mucosa of cardia of stomach;gastric cardia mucosa -http://purl.obolibrary.org/obo/UBERON_0004996;mucosa of cardia of stomach;gastric cardia mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004996;mucosa of cardia of stomach;gastric cardia mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004996;mucosa of cardia of stomach;gastric cardia organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004996;mucosa of cardia of stomach;mucosa of cardial part of stomach -http://purl.obolibrary.org/obo/UBERON_0004996;mucosa of cardia of stomach;mucosa of gastric cardia -http://purl.obolibrary.org/obo/UBERON_0004996;mucosa of cardia of stomach;mucosa of organ of cardia of stomach -http://purl.obolibrary.org/obo/UBERON_0004996;mucosa of cardia of stomach;mucosa of organ of cardial part of stomach -http://purl.obolibrary.org/obo/UBERON_0004996;mucosa of cardia of stomach;mucosa of organ of gastric cardia -http://purl.obolibrary.org/obo/UBERON_0004996;mucosa of cardia of stomach;mucosa of organ of pars cardiaca (gaster) -http://purl.obolibrary.org/obo/UBERON_0004996;mucosa of cardia of stomach;mucosa of organ of stomach cardiac region -http://purl.obolibrary.org/obo/UBERON_0004996;mucosa of cardia of stomach;mucosa of pars cardiaca (gaster) -http://purl.obolibrary.org/obo/UBERON_0004996;mucosa of cardia of stomach;mucosa of stomach cardiac region -http://purl.obolibrary.org/obo/UBERON_0004996;mucosa of cardia of stomach;mucous membrane of cardia of stomach -http://purl.obolibrary.org/obo/UBERON_0004996;mucosa of cardia of stomach;mucous membrane of cardial part of stomach -http://purl.obolibrary.org/obo/UBERON_0004996;mucosa of cardia of stomach;mucous membrane of gastric cardia -http://purl.obolibrary.org/obo/UBERON_0004996;mucosa of cardia of stomach;mucous membrane of pars cardiaca (gaster) -http://purl.obolibrary.org/obo/UBERON_0004996;mucosa of cardia of stomach;mucous membrane of stomach cardiac region -http://purl.obolibrary.org/obo/UBERON_0004996;mucosa of cardia of stomach;organ mucosa of cardia of stomach -http://purl.obolibrary.org/obo/UBERON_0004996;mucosa of cardia of stomach;organ mucosa of cardial part of stomach -http://purl.obolibrary.org/obo/UBERON_0004996;mucosa of cardia of stomach;organ mucosa of gastric cardia -http://purl.obolibrary.org/obo/UBERON_0004996;mucosa of cardia of stomach;organ mucosa of pars cardiaca (gaster) -http://purl.obolibrary.org/obo/UBERON_0004996;mucosa of cardia of stomach;organ mucosa of stomach cardiac region -http://purl.obolibrary.org/obo/UBERON_0004996;mucosa of cardia of stomach;pars cardiaca (gaster) mucosa -http://purl.obolibrary.org/obo/UBERON_0004996;mucosa of cardia of stomach;pars cardiaca (gaster) mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004996;mucosa of cardia of stomach;pars cardiaca (gaster) mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004996;mucosa of cardia of stomach;pars cardiaca (gaster) organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004996;mucosa of cardia of stomach;stomach cardiac region mucosa -http://purl.obolibrary.org/obo/UBERON_0004996;mucosa of cardia of stomach;stomach cardiac region mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004996;mucosa of cardia of stomach;stomach cardiac region mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004996;mucosa of cardia of stomach;stomach cardiac region organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004997;mucosa of pyloric antrum;antral mucosa -http://purl.obolibrary.org/obo/UBERON_0004997;mucosa of pyloric antrum;antrum of stomach mucosa -http://purl.obolibrary.org/obo/UBERON_0004997;mucosa of pyloric antrum;antrum of stomach mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004997;mucosa of pyloric antrum;antrum of stomach mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004997;mucosa of pyloric antrum;antrum of stomach organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004997;mucosa of pyloric antrum;mucosa of antrum of stomach -http://purl.obolibrary.org/obo/UBERON_0004997;mucosa of pyloric antrum;mucosa of organ of antrum of stomach -http://purl.obolibrary.org/obo/UBERON_0004997;mucosa of pyloric antrum;mucosa of organ of pyloric antrum -http://purl.obolibrary.org/obo/UBERON_0004997;mucosa of pyloric antrum;mucosa of organ of stomach pyloric antrum -http://purl.obolibrary.org/obo/UBERON_0004997;mucosa of pyloric antrum;mucosa of stomach pyloric antrum -http://purl.obolibrary.org/obo/UBERON_0004997;mucosa of pyloric antrum;mucous membrane of antrum of stomach -http://purl.obolibrary.org/obo/UBERON_0004997;mucosa of pyloric antrum;mucous membrane of pyloric antrum -http://purl.obolibrary.org/obo/UBERON_0004997;mucosa of pyloric antrum;mucous membrane of stomach pyloric antrum -http://purl.obolibrary.org/obo/UBERON_0004997;mucosa of pyloric antrum;organ mucosa of antrum of stomach -http://purl.obolibrary.org/obo/UBERON_0004997;mucosa of pyloric antrum;organ mucosa of pyloric antrum -http://purl.obolibrary.org/obo/UBERON_0004997;mucosa of pyloric antrum;organ mucosa of stomach pyloric antrum -http://purl.obolibrary.org/obo/UBERON_0004997;mucosa of pyloric antrum;pyloric antrum mucosa -http://purl.obolibrary.org/obo/UBERON_0004997;mucosa of pyloric antrum;pyloric antrum mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004997;mucosa of pyloric antrum;pyloric antrum mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004997;mucosa of pyloric antrum;pyloric antrum organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004997;mucosa of pyloric antrum;stomach pyloric antrum mucosa -http://purl.obolibrary.org/obo/UBERON_0004997;mucosa of pyloric antrum;stomach pyloric antrum mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004997;mucosa of pyloric antrum;stomach pyloric antrum mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004997;mucosa of pyloric antrum;stomach pyloric antrum organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004998;mucosa of pylorus;mucosa of organ of pyloric part of stomach -http://purl.obolibrary.org/obo/UBERON_0004998;mucosa of pylorus;mucosa of organ of pylorus -http://purl.obolibrary.org/obo/UBERON_0004998;mucosa of pylorus;mucosa of organ of stomach pyloric region -http://purl.obolibrary.org/obo/UBERON_0004998;mucosa of pylorus;mucosa of pyloric part of stomach -http://purl.obolibrary.org/obo/UBERON_0004998;mucosa of pylorus;mucosa of stomach pyloric region -http://purl.obolibrary.org/obo/UBERON_0004998;mucosa of pylorus;mucous membrane of pyloric part of stomach -http://purl.obolibrary.org/obo/UBERON_0004998;mucosa of pylorus;mucous membrane of pylorus -http://purl.obolibrary.org/obo/UBERON_0004998;mucosa of pylorus;mucous membrane of stomach pyloric region -http://purl.obolibrary.org/obo/UBERON_0004998;mucosa of pylorus;organ mucosa of pyloric part of stomach -http://purl.obolibrary.org/obo/UBERON_0004998;mucosa of pylorus;organ mucosa of pylorus -http://purl.obolibrary.org/obo/UBERON_0004998;mucosa of pylorus;organ mucosa of stomach pyloric region -http://purl.obolibrary.org/obo/UBERON_0004998;mucosa of pylorus;pyloric part of stomach mucosa -http://purl.obolibrary.org/obo/UBERON_0004998;mucosa of pylorus;pyloric part of stomach mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004998;mucosa of pylorus;pyloric part of stomach mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004998;mucosa of pylorus;pyloric part of stomach organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004998;mucosa of pylorus;pylorus mucosa -http://purl.obolibrary.org/obo/UBERON_0004998;mucosa of pylorus;pylorus mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004998;mucosa of pylorus;pylorus mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004998;mucosa of pylorus;pylorus organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004998;mucosa of pylorus;stomach pyloric region mucosa -http://purl.obolibrary.org/obo/UBERON_0004998;mucosa of pylorus;stomach pyloric region mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004998;mucosa of pylorus;stomach pyloric region mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004998;mucosa of pylorus;stomach pyloric region organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004999;mucosa of biliary tree;biliary tract mucosa -http://purl.obolibrary.org/obo/UBERON_0004999;mucosa of biliary tree;biliary tract mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004999;mucosa of biliary tree;biliary tract mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004999;mucosa of biliary tree;biliary tract organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004999;mucosa of biliary tree;biliary tree mucosa -http://purl.obolibrary.org/obo/UBERON_0004999;mucosa of biliary tree;biliary tree mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0004999;mucosa of biliary tree;biliary tree mucous membrane -http://purl.obolibrary.org/obo/UBERON_0004999;mucosa of biliary tree;biliary tree organ mucosa -http://purl.obolibrary.org/obo/UBERON_0004999;mucosa of biliary tree;mucosa of biliary tract -http://purl.obolibrary.org/obo/UBERON_0004999;mucosa of biliary tree;mucosa of organ of biliary tract -http://purl.obolibrary.org/obo/UBERON_0004999;mucosa of biliary tree;mucosa of organ of biliary tree -http://purl.obolibrary.org/obo/UBERON_0004999;mucosa of biliary tree;mucous membrane of biliary tract -http://purl.obolibrary.org/obo/UBERON_0004999;mucosa of biliary tree;mucous membrane of biliary tree -http://purl.obolibrary.org/obo/UBERON_0004999;mucosa of biliary tree;organ mucosa of biliary tract -http://purl.obolibrary.org/obo/UBERON_0004999;mucosa of biliary tree;organ mucosa of biliary tree -http://purl.obolibrary.org/obo/UBERON_0005000;mucosa of common bile duct;common bile duct mucosa -http://purl.obolibrary.org/obo/UBERON_0005000;mucosa of common bile duct;common bile duct mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005000;mucosa of common bile duct;common bile duct mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005000;mucosa of common bile duct;common bile duct organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005000;mucosa of common bile duct;common bile ductal mucosa -http://purl.obolibrary.org/obo/UBERON_0005000;mucosa of common bile duct;ductus choledochus (biliaris) mucosa -http://purl.obolibrary.org/obo/UBERON_0005000;mucosa of common bile duct;ductus choledochus (biliaris) mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005000;mucosa of common bile duct;ductus choledochus (biliaris) mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005000;mucosa of common bile duct;ductus choledochus (biliaris) organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005000;mucosa of common bile duct;mucosa of ductus choledochus (biliaris) -http://purl.obolibrary.org/obo/UBERON_0005000;mucosa of common bile duct;mucosa of organ of common bile duct -http://purl.obolibrary.org/obo/UBERON_0005000;mucosa of common bile duct;mucosa of organ of ductus choledochus (biliaris) -http://purl.obolibrary.org/obo/UBERON_0005000;mucosa of common bile duct;mucous membrane of common bile duct -http://purl.obolibrary.org/obo/UBERON_0005000;mucosa of common bile duct;mucous membrane of ductus choledochus (biliaris) -http://purl.obolibrary.org/obo/UBERON_0005000;mucosa of common bile duct;organ mucosa of common bile duct -http://purl.obolibrary.org/obo/UBERON_0005000;mucosa of common bile duct;organ mucosa of ductus choledochus (biliaris) -http://purl.obolibrary.org/obo/UBERON_0005001;mucosa of common hepatic duct;common hepatic duct mucosa -http://purl.obolibrary.org/obo/UBERON_0005001;mucosa of common hepatic duct;common hepatic duct mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005001;mucosa of common hepatic duct;common hepatic duct mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005001;mucosa of common hepatic duct;common hepatic duct organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005001;mucosa of common hepatic duct;common hepatic ductal mucosa -http://purl.obolibrary.org/obo/UBERON_0005001;mucosa of common hepatic duct;hepatic duct mucosa -http://purl.obolibrary.org/obo/UBERON_0005001;mucosa of common hepatic duct;hepatic duct mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005001;mucosa of common hepatic duct;hepatic duct mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005001;mucosa of common hepatic duct;hepatic duct organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005001;mucosa of common hepatic duct;mucosa of hepatic duct -http://purl.obolibrary.org/obo/UBERON_0005001;mucosa of common hepatic duct;mucosa of organ of common hepatic duct -http://purl.obolibrary.org/obo/UBERON_0005001;mucosa of common hepatic duct;mucosa of organ of hepatic duct -http://purl.obolibrary.org/obo/UBERON_0005001;mucosa of common hepatic duct;mucous membrane of common hepatic duct -http://purl.obolibrary.org/obo/UBERON_0005001;mucosa of common hepatic duct;mucous membrane of hepatic duct -http://purl.obolibrary.org/obo/UBERON_0005001;mucosa of common hepatic duct;organ mucosa of common hepatic duct -http://purl.obolibrary.org/obo/UBERON_0005001;mucosa of common hepatic duct;organ mucosa of hepatic duct -http://purl.obolibrary.org/obo/UBERON_0005002;mucosa of right hepatic duct;mucosa of organ of right hepatic duct -http://purl.obolibrary.org/obo/UBERON_0005002;mucosa of right hepatic duct;mucous membrane of right hepatic duct -http://purl.obolibrary.org/obo/UBERON_0005002;mucosa of right hepatic duct;organ mucosa of right hepatic duct -http://purl.obolibrary.org/obo/UBERON_0005002;mucosa of right hepatic duct;right hepatic duct mucosa -http://purl.obolibrary.org/obo/UBERON_0005002;mucosa of right hepatic duct;right hepatic duct mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005002;mucosa of right hepatic duct;right hepatic duct mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005002;mucosa of right hepatic duct;right hepatic duct organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005002;mucosa of right hepatic duct;right hepatic ductal mucosa -http://purl.obolibrary.org/obo/UBERON_0005003;mucosa of left hepatic duct;left hepatic duct mucosa -http://purl.obolibrary.org/obo/UBERON_0005003;mucosa of left hepatic duct;left hepatic duct mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005003;mucosa of left hepatic duct;left hepatic duct mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005003;mucosa of left hepatic duct;left hepatic duct organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005003;mucosa of left hepatic duct;left hepatic ductal mucosa -http://purl.obolibrary.org/obo/UBERON_0005003;mucosa of left hepatic duct;mucosa of organ of left hepatic duct -http://purl.obolibrary.org/obo/UBERON_0005003;mucosa of left hepatic duct;mucous membrane of left hepatic duct -http://purl.obolibrary.org/obo/UBERON_0005003;mucosa of left hepatic duct;organ mucosa of left hepatic duct -http://purl.obolibrary.org/obo/UBERON_0005004;mucosa of right ureter;mucosa of organ of right ureter -http://purl.obolibrary.org/obo/UBERON_0005004;mucosa of right ureter;mucous membrane of right ureter -http://purl.obolibrary.org/obo/UBERON_0005004;mucosa of right ureter;organ mucosa of right ureter -http://purl.obolibrary.org/obo/UBERON_0005004;mucosa of right ureter;right ureter mucosa -http://purl.obolibrary.org/obo/UBERON_0005004;mucosa of right ureter;right ureter mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005004;mucosa of right ureter;right ureter mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005004;mucosa of right ureter;right ureter organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005004;mucosa of right ureter;right ureteral mucosa -http://purl.obolibrary.org/obo/UBERON_0005005;mucosa of left ureter;left ureter mucosa -http://purl.obolibrary.org/obo/UBERON_0005005;mucosa of left ureter;left ureter mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005005;mucosa of left ureter;left ureter mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005005;mucosa of left ureter;left ureter organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005005;mucosa of left ureter;left ureteral mucosa -http://purl.obolibrary.org/obo/UBERON_0005005;mucosa of left ureter;mucosa of organ of left ureter -http://purl.obolibrary.org/obo/UBERON_0005005;mucosa of left ureter;mucous membrane of left ureter -http://purl.obolibrary.org/obo/UBERON_0005005;mucosa of left ureter;organ mucosa of left ureter -http://purl.obolibrary.org/obo/UBERON_0005006;mucosa of renal pelvis;kidney pelvis mucosa -http://purl.obolibrary.org/obo/UBERON_0005006;mucosa of renal pelvis;kidney pelvis mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005006;mucosa of renal pelvis;kidney pelvis mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005006;mucosa of renal pelvis;kidney pelvis organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005006;mucosa of renal pelvis;mucosa of kidney pelvis -http://purl.obolibrary.org/obo/UBERON_0005006;mucosa of renal pelvis;mucosa of organ of kidney pelvis -http://purl.obolibrary.org/obo/UBERON_0005006;mucosa of renal pelvis;mucosa of organ of pelvis of ureter -http://purl.obolibrary.org/obo/UBERON_0005006;mucosa of renal pelvis;mucosa of organ of renal pelvis -http://purl.obolibrary.org/obo/UBERON_0005006;mucosa of renal pelvis;mucosa of pelvis of ureter -http://purl.obolibrary.org/obo/UBERON_0005006;mucosa of renal pelvis;mucous membrane of kidney pelvis -http://purl.obolibrary.org/obo/UBERON_0005006;mucosa of renal pelvis;mucous membrane of pelvis of ureter -http://purl.obolibrary.org/obo/UBERON_0005006;mucosa of renal pelvis;mucous membrane of renal pelvis -http://purl.obolibrary.org/obo/UBERON_0005006;mucosa of renal pelvis;organ mucosa of kidney pelvis -http://purl.obolibrary.org/obo/UBERON_0005006;mucosa of renal pelvis;organ mucosa of pelvis of ureter -http://purl.obolibrary.org/obo/UBERON_0005006;mucosa of renal pelvis;organ mucosa of renal pelvis -http://purl.obolibrary.org/obo/UBERON_0005006;mucosa of renal pelvis;pelvis of ureter mucosa -http://purl.obolibrary.org/obo/UBERON_0005006;mucosa of renal pelvis;pelvis of ureter mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005006;mucosa of renal pelvis;pelvis of ureter mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005006;mucosa of renal pelvis;pelvis of ureter organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005006;mucosa of renal pelvis;renal pelvic mucosa -http://purl.obolibrary.org/obo/UBERON_0005006;mucosa of renal pelvis;renal pelvis mucosa -http://purl.obolibrary.org/obo/UBERON_0005006;mucosa of renal pelvis;renal pelvis mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005006;mucosa of renal pelvis;renal pelvis mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005006;mucosa of renal pelvis;renal pelvis organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005006;mucosa of renal pelvis;tunica mucosa pelvis renalis -http://purl.obolibrary.org/obo/UBERON_0005007;mucosa of major calyx;major calix mucosa -http://purl.obolibrary.org/obo/UBERON_0005007;mucosa of major calyx;major calix mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005007;mucosa of major calyx;major calix mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005007;mucosa of major calyx;major calix organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005007;mucosa of major calyx;major calyx mucosa -http://purl.obolibrary.org/obo/UBERON_0005007;mucosa of major calyx;major calyx mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005007;mucosa of major calyx;major calyx mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005007;mucosa of major calyx;major calyx organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005007;mucosa of major calyx;mucosa of major calix -http://purl.obolibrary.org/obo/UBERON_0005007;mucosa of major calyx;mucosa of organ of major calix -http://purl.obolibrary.org/obo/UBERON_0005007;mucosa of major calyx;mucosa of organ of major calyx -http://purl.obolibrary.org/obo/UBERON_0005007;mucosa of major calyx;mucous membrane of major calix -http://purl.obolibrary.org/obo/UBERON_0005007;mucosa of major calyx;mucous membrane of major calyx -http://purl.obolibrary.org/obo/UBERON_0005007;mucosa of major calyx;organ mucosa of major calix -http://purl.obolibrary.org/obo/UBERON_0005007;mucosa of major calyx;organ mucosa of major calyx -http://purl.obolibrary.org/obo/UBERON_0005008;mucosa of minor calyx;minor calix mucosa -http://purl.obolibrary.org/obo/UBERON_0005008;mucosa of minor calyx;minor calix mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005008;mucosa of minor calyx;minor calix mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005008;mucosa of minor calyx;minor calix organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005008;mucosa of minor calyx;minor calyx mucosa -http://purl.obolibrary.org/obo/UBERON_0005008;mucosa of minor calyx;minor calyx mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005008;mucosa of minor calyx;minor calyx mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005008;mucosa of minor calyx;minor calyx organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005008;mucosa of minor calyx;mucosa of minor calix -http://purl.obolibrary.org/obo/UBERON_0005008;mucosa of minor calyx;mucosa of organ of minor calix -http://purl.obolibrary.org/obo/UBERON_0005008;mucosa of minor calyx;mucosa of organ of minor calyx -http://purl.obolibrary.org/obo/UBERON_0005008;mucosa of minor calyx;mucous membrane of minor calix -http://purl.obolibrary.org/obo/UBERON_0005008;mucosa of minor calyx;mucous membrane of minor calyx -http://purl.obolibrary.org/obo/UBERON_0005008;mucosa of minor calyx;organ mucosa of minor calix -http://purl.obolibrary.org/obo/UBERON_0005008;mucosa of minor calyx;organ mucosa of minor calyx -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;Lieutaud ' s trigone mucosa -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;Lieutaud ' s trigone mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;Lieutaud ' s trigone mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;Lieutaud ' s trigone organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;deep trigone mucosa -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;deep trigone mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;deep trigone mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;deep trigone organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;mucosa of Lieutaud ' s trigone -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;mucosa of deep trigone -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;mucosa of organ of Lieutaud ' s trigone -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;mucosa of organ of deep trigone -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;mucosa of organ of trigone of bladder -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;mucosa of organ of trigone of urinary bladder -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;mucosa of organ of urinary bladder trigone -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;mucosa of organ of vesical trigone -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;mucosa of trigone of bladder -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;mucosa of urinary bladder trigone -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;mucosa of vesical trigone -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;mucous membrane of Lieutaud ' s trigone -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;mucous membrane of deep trigone -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;mucous membrane of trigone of bladder -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;mucous membrane of trigone of urinary bladder -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;mucous membrane of urinary bladder trigone -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;mucous membrane of vesical trigone -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;organ mucosa of Lieutaud ' s trigone -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;organ mucosa of deep trigone -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;organ mucosa of trigone of bladder -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;organ mucosa of trigone of urinary bladder -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;organ mucosa of urinary bladder trigone -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;organ mucosa of vesical trigone -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;trigone of bladder mucosa -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;trigone of bladder mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;trigone of bladder mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;trigone of bladder organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;trigone of urinary bladder mucosa -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;trigone of urinary bladder mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;trigone of urinary bladder mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;trigone of urinary bladder organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;urinary bladder trigone mucosa -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;urinary bladder trigone mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;urinary bladder trigone mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;urinary bladder trigone organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;vesical trigone mucosa -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;vesical trigone mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;vesical trigone mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005009;mucosa of trigone of urinary bladder;vesical trigone organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005010;mucosa of neck of urinary bladder;bladder neck mucosa -http://purl.obolibrary.org/obo/UBERON_0005010;mucosa of neck of urinary bladder;bladder neck mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005010;mucosa of neck of urinary bladder;bladder neck mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005010;mucosa of neck of urinary bladder;bladder neck organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005010;mucosa of neck of urinary bladder;mucosa of bladder neck -http://purl.obolibrary.org/obo/UBERON_0005010;mucosa of neck of urinary bladder;mucosa of neck of bladder -http://purl.obolibrary.org/obo/UBERON_0005010;mucosa of neck of urinary bladder;mucosa of organ of bladder neck -http://purl.obolibrary.org/obo/UBERON_0005010;mucosa of neck of urinary bladder;mucosa of organ of neck of bladder -http://purl.obolibrary.org/obo/UBERON_0005010;mucosa of neck of urinary bladder;mucosa of organ of neck of urinary bladder -http://purl.obolibrary.org/obo/UBERON_0005010;mucosa of neck of urinary bladder;mucosa of organ of urinary bladder neck -http://purl.obolibrary.org/obo/UBERON_0005010;mucosa of neck of urinary bladder;mucosa of organ of vesical neck -http://purl.obolibrary.org/obo/UBERON_0005010;mucosa of neck of urinary bladder;mucosa of urinary bladder neck -http://purl.obolibrary.org/obo/UBERON_0005010;mucosa of neck of urinary bladder;mucosa of vesical neck -http://purl.obolibrary.org/obo/UBERON_0005010;mucosa of neck of urinary bladder;mucous membrane of bladder neck -http://purl.obolibrary.org/obo/UBERON_0005010;mucosa of neck of urinary bladder;mucous membrane of neck of bladder -http://purl.obolibrary.org/obo/UBERON_0005010;mucosa of neck of urinary bladder;mucous membrane of neck of urinary bladder -http://purl.obolibrary.org/obo/UBERON_0005010;mucosa of neck of urinary bladder;mucous membrane of urinary bladder neck -http://purl.obolibrary.org/obo/UBERON_0005010;mucosa of neck of urinary bladder;mucous membrane of vesical neck -http://purl.obolibrary.org/obo/UBERON_0005010;mucosa of neck of urinary bladder;neck of bladder mucosa -http://purl.obolibrary.org/obo/UBERON_0005010;mucosa of neck of urinary bladder;neck of bladder mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005010;mucosa of neck of urinary bladder;neck of bladder mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005010;mucosa of neck of urinary bladder;neck of bladder organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005010;mucosa of neck of urinary bladder;neck of urinary bladder mucosa -http://purl.obolibrary.org/obo/UBERON_0005010;mucosa of neck of urinary bladder;neck of urinary bladder mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005010;mucosa of neck of urinary bladder;neck of urinary bladder mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005010;mucosa of neck of urinary bladder;neck of urinary bladder organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005010;mucosa of neck of urinary bladder;organ mucosa of bladder neck -http://purl.obolibrary.org/obo/UBERON_0005010;mucosa of neck of urinary bladder;organ mucosa of neck of bladder -http://purl.obolibrary.org/obo/UBERON_0005010;mucosa of neck of urinary bladder;organ mucosa of neck of urinary bladder -http://purl.obolibrary.org/obo/UBERON_0005010;mucosa of neck of urinary bladder;organ mucosa of urinary bladder neck -http://purl.obolibrary.org/obo/UBERON_0005010;mucosa of neck of urinary bladder;organ mucosa of vesical neck -http://purl.obolibrary.org/obo/UBERON_0005010;mucosa of neck of urinary bladder;urinary bladder neck mucosa -http://purl.obolibrary.org/obo/UBERON_0005010;mucosa of neck of urinary bladder;urinary bladder neck mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005010;mucosa of neck of urinary bladder;urinary bladder neck mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005010;mucosa of neck of urinary bladder;vesical neck mucosa -http://purl.obolibrary.org/obo/UBERON_0005010;mucosa of neck of urinary bladder;vesical neck mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005010;mucosa of neck of urinary bladder;vesical neck mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005010;mucosa of neck of urinary bladder;vesical neck organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005011;mucosa of right uterine tube;mucosa of organ of right fallopian tube -http://purl.obolibrary.org/obo/UBERON_0005011;mucosa of right uterine tube;mucosa of organ of right oviduct -http://purl.obolibrary.org/obo/UBERON_0005011;mucosa of right uterine tube;mucosa of organ of right uterine tube -http://purl.obolibrary.org/obo/UBERON_0005011;mucosa of right uterine tube;mucosa of right fallopian tube -http://purl.obolibrary.org/obo/UBERON_0005011;mucosa of right uterine tube;mucosa of right oviduct -http://purl.obolibrary.org/obo/UBERON_0005011;mucosa of right uterine tube;mucous membrane of right fallopian tube -http://purl.obolibrary.org/obo/UBERON_0005011;mucosa of right uterine tube;mucous membrane of right oviduct -http://purl.obolibrary.org/obo/UBERON_0005011;mucosa of right uterine tube;mucous membrane of right uterine tube -http://purl.obolibrary.org/obo/UBERON_0005011;mucosa of right uterine tube;organ mucosa of right fallopian tube -http://purl.obolibrary.org/obo/UBERON_0005011;mucosa of right uterine tube;organ mucosa of right oviduct -http://purl.obolibrary.org/obo/UBERON_0005011;mucosa of right uterine tube;organ mucosa of right uterine tube -http://purl.obolibrary.org/obo/UBERON_0005011;mucosa of right uterine tube;right fallopian tube mucosa -http://purl.obolibrary.org/obo/UBERON_0005011;mucosa of right uterine tube;right fallopian tube mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005011;mucosa of right uterine tube;right fallopian tube mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005011;mucosa of right uterine tube;right fallopian tube organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005011;mucosa of right uterine tube;right oviduct mucosa -http://purl.obolibrary.org/obo/UBERON_0005011;mucosa of right uterine tube;right oviduct mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005011;mucosa of right uterine tube;right oviduct mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005011;mucosa of right uterine tube;right oviduct organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005011;mucosa of right uterine tube;right uterine tube mucosa -http://purl.obolibrary.org/obo/UBERON_0005011;mucosa of right uterine tube;right uterine tube mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005011;mucosa of right uterine tube;right uterine tube mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005011;mucosa of right uterine tube;right uterine tube organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005012;mucosa of left uterine tube;left fallopian tube mucosa -http://purl.obolibrary.org/obo/UBERON_0005012;mucosa of left uterine tube;left fallopian tube mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005012;mucosa of left uterine tube;left fallopian tube mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005012;mucosa of left uterine tube;left fallopian tube organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005012;mucosa of left uterine tube;left oviduct mucosa -http://purl.obolibrary.org/obo/UBERON_0005012;mucosa of left uterine tube;left oviduct mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005012;mucosa of left uterine tube;left oviduct mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005012;mucosa of left uterine tube;left oviduct organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005012;mucosa of left uterine tube;left uterine tube mucosa -http://purl.obolibrary.org/obo/UBERON_0005012;mucosa of left uterine tube;left uterine tube mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005012;mucosa of left uterine tube;left uterine tube mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005012;mucosa of left uterine tube;left uterine tube organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005012;mucosa of left uterine tube;mucosa of left fallopian tube -http://purl.obolibrary.org/obo/UBERON_0005012;mucosa of left uterine tube;mucosa of left oviduct -http://purl.obolibrary.org/obo/UBERON_0005012;mucosa of left uterine tube;mucosa of organ of left fallopian tube -http://purl.obolibrary.org/obo/UBERON_0005012;mucosa of left uterine tube;mucosa of organ of left oviduct -http://purl.obolibrary.org/obo/UBERON_0005012;mucosa of left uterine tube;mucosa of organ of left uterine tube -http://purl.obolibrary.org/obo/UBERON_0005012;mucosa of left uterine tube;mucous membrane of left fallopian tube -http://purl.obolibrary.org/obo/UBERON_0005012;mucosa of left uterine tube;mucous membrane of left oviduct -http://purl.obolibrary.org/obo/UBERON_0005012;mucosa of left uterine tube;mucous membrane of left uterine tube -http://purl.obolibrary.org/obo/UBERON_0005012;mucosa of left uterine tube;organ mucosa of left fallopian tube -http://purl.obolibrary.org/obo/UBERON_0005012;mucosa of left uterine tube;organ mucosa of left oviduct -http://purl.obolibrary.org/obo/UBERON_0005012;mucosa of left uterine tube;organ mucosa of left uterine tube -http://purl.obolibrary.org/obo/UBERON_0005013;mucosa of male urethra;male urethra mucosa -http://purl.obolibrary.org/obo/UBERON_0005013;mucosa of male urethra;male urethra mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005013;mucosa of male urethra;male urethra mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005013;mucosa of male urethra;male urethra organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005013;mucosa of male urethra;mucosa of organ of male urethra -http://purl.obolibrary.org/obo/UBERON_0005013;mucosa of male urethra;mucous membrane of male urethra -http://purl.obolibrary.org/obo/UBERON_0005013;mucosa of male urethra;organ mucosa of male urethra -http://purl.obolibrary.org/obo/UBERON_0005014;mucosa of female urethra;female urethra mucosa -http://purl.obolibrary.org/obo/UBERON_0005014;mucosa of female urethra;female urethra mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005014;mucosa of female urethra;female urethra mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005014;mucosa of female urethra;female urethra organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005014;mucosa of female urethra;mucosa of organ of female urethra -http://purl.obolibrary.org/obo/UBERON_0005014;mucosa of female urethra;mucous membrane of female urethra -http://purl.obolibrary.org/obo/UBERON_0005014;mucosa of female urethra;organ mucosa of female urethra -http://purl.obolibrary.org/obo/UBERON_0005015;mucosa of prostatic urethra;mucosa of organ of prostatic part of urethra -http://purl.obolibrary.org/obo/UBERON_0005015;mucosa of prostatic urethra;mucosa of organ of prostatic urethra -http://purl.obolibrary.org/obo/UBERON_0005015;mucosa of prostatic urethra;mucosa of prostatic part of urethra -http://purl.obolibrary.org/obo/UBERON_0005015;mucosa of prostatic urethra;mucous membrane of prostatic part of urethra -http://purl.obolibrary.org/obo/UBERON_0005015;mucosa of prostatic urethra;mucous membrane of prostatic urethra -http://purl.obolibrary.org/obo/UBERON_0005015;mucosa of prostatic urethra;organ mucosa of prostatic part of urethra -http://purl.obolibrary.org/obo/UBERON_0005015;mucosa of prostatic urethra;organ mucosa of prostatic urethra -http://purl.obolibrary.org/obo/UBERON_0005015;mucosa of prostatic urethra;prostatic part of urethra mucosa -http://purl.obolibrary.org/obo/UBERON_0005015;mucosa of prostatic urethra;prostatic part of urethra mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005015;mucosa of prostatic urethra;prostatic part of urethra mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005015;mucosa of prostatic urethra;prostatic part of urethra organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005015;mucosa of prostatic urethra;prostatic urethra mucosa -http://purl.obolibrary.org/obo/UBERON_0005015;mucosa of prostatic urethra;prostatic urethra mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005015;mucosa of prostatic urethra;prostatic urethra mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005015;mucosa of prostatic urethra;prostatic urethra organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005015;mucosa of prostatic urethra;prostatic urethral mucosa -http://purl.obolibrary.org/obo/UBERON_0005015;mucosa of prostatic urethra;tunica mucosa urethrae prosticae -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;intermediate part of urethra mucosa -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;intermediate part of urethra mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;intermediate part of urethra mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;intermediate part of urethra organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;intermediate urethra mucosa -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;intermediate urethra mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;intermediate urethra mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;intermediate urethra organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;intermediate urethral mucosa -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;membranous part of urethra mucosa -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;membranous part of urethra mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;membranous part of urethra mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;membranous part of urethra organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;membranous urethra mucosa -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;membranous urethra mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;membranous urethra mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;membranous urethra organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;mucosa of intermediate part of urethra -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;mucosa of membranous part of urethra -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;mucosa of membranous urethra -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;mucosa of organ of intermediate part of urethra -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;mucosa of organ of intermediate urethra -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;mucosa of organ of membranous part of urethra -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;mucosa of organ of membranous urethra -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;mucosa of organ of pars membranacea (urethrae) -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;mucosa of pars membranacea (urethrae) -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;mucous membrane of intermediate part of urethra -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;mucous membrane of intermediate urethra -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;mucous membrane of membranous part of urethra -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;mucous membrane of membranous urethra -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;mucous membrane of pars membranacea (urethrae) -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;organ mucosa of intermediate part of urethra -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;organ mucosa of intermediate urethra -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;organ mucosa of membranous part of urethra -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;organ mucosa of membranous urethra -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;organ mucosa of pars membranacea (urethrae) -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;pars membranacea (urethrae) mucosa -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;pars membranacea (urethrae) mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;pars membranacea (urethrae) mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;pars membranacea (urethrae) organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005016;mucosa of intermediate urethra;tunica mucosa urethrae intermediae -http://purl.obolibrary.org/obo/UBERON_0005017;mucosa of lacrimal sac;lacrimal sac mucosa -http://purl.obolibrary.org/obo/UBERON_0005017;mucosa of lacrimal sac;lacrimal sac mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005017;mucosa of lacrimal sac;lacrimal sac mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005017;mucosa of lacrimal sac;lacrimal sac organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005017;mucosa of lacrimal sac;mucosa of organ of lacrimal sac -http://purl.obolibrary.org/obo/UBERON_0005017;mucosa of lacrimal sac;mucous membrane of lacrimal sac -http://purl.obolibrary.org/obo/UBERON_0005017;mucosa of lacrimal sac;organ mucosa of lacrimal sac -http://purl.obolibrary.org/obo/UBERON_0005018;mucosa of nasal septum;mucosa of organ of nasal septum -http://purl.obolibrary.org/obo/UBERON_0005018;mucosa of nasal septum;mucous membrane of nasal septum -http://purl.obolibrary.org/obo/UBERON_0005018;mucosa of nasal septum;nasal septum mucosa -http://purl.obolibrary.org/obo/UBERON_0005018;mucosa of nasal septum;nasal septum mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005018;mucosa of nasal septum;nasal septum mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005018;mucosa of nasal septum;nasal septum organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005018;mucosa of nasal septum;organ mucosa of nasal septum -http://purl.obolibrary.org/obo/UBERON_0005019;mucosa of palate;mucosa of oral roof -http://purl.obolibrary.org/obo/UBERON_0005019;mucosa of palate;mucosa of organ of oral roof -http://purl.obolibrary.org/obo/UBERON_0005019;mucosa of palate;mucosa of organ of palate -http://purl.obolibrary.org/obo/UBERON_0005019;mucosa of palate;mucosa of organ of roof of mouth -http://purl.obolibrary.org/obo/UBERON_0005019;mucosa of palate;mucosa of roof of mouth -http://purl.obolibrary.org/obo/UBERON_0005019;mucosa of palate;mucous membrane of oral roof -http://purl.obolibrary.org/obo/UBERON_0005019;mucosa of palate;mucous membrane of palate -http://purl.obolibrary.org/obo/UBERON_0005019;mucosa of palate;mucous membrane of roof of mouth -http://purl.obolibrary.org/obo/UBERON_0005019;mucosa of palate;oral roof mucosa -http://purl.obolibrary.org/obo/UBERON_0005019;mucosa of palate;oral roof mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005019;mucosa of palate;oral roof mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005019;mucosa of palate;oral roof organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005019;mucosa of palate;organ mucosa of oral roof -http://purl.obolibrary.org/obo/UBERON_0005019;mucosa of palate;organ mucosa of palate -http://purl.obolibrary.org/obo/UBERON_0005019;mucosa of palate;organ mucosa of roof of mouth -http://purl.obolibrary.org/obo/UBERON_0005019;mucosa of palate;palate mucosa -http://purl.obolibrary.org/obo/UBERON_0005019;mucosa of palate;palate mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005019;mucosa of palate;palate mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005019;mucosa of palate;palate organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005019;mucosa of palate;roof of mouth mucosa -http://purl.obolibrary.org/obo/UBERON_0005019;mucosa of palate;roof of mouth mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005019;mucosa of palate;roof of mouth mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005019;mucosa of palate;roof of mouth organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005020;mucosa of tongue;lingual mucosa -http://purl.obolibrary.org/obo/UBERON_0005020;mucosa of tongue;mucosa of organ of tongue -http://purl.obolibrary.org/obo/UBERON_0005020;mucosa of tongue;mucous membrane of tongue -http://purl.obolibrary.org/obo/UBERON_0005020;mucosa of tongue;organ mucosa of tongue -http://purl.obolibrary.org/obo/UBERON_0005020;mucosa of tongue;tongue mucosa -http://purl.obolibrary.org/obo/UBERON_0005020;mucosa of tongue;tongue mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005020;mucosa of tongue;tongue mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005020;mucosa of tongue;tongue organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005020;mucosa of tongue;tunica mucosa linguae -http://purl.obolibrary.org/obo/UBERON_0005021;mucosa of sphenoidal sinus;mucosa of organ of sphenoid sinus -http://purl.obolibrary.org/obo/UBERON_0005021;mucosa of sphenoidal sinus;mucosa of organ of sphenoidal sinus -http://purl.obolibrary.org/obo/UBERON_0005021;mucosa of sphenoidal sinus;mucosa of sphenoid sinus -http://purl.obolibrary.org/obo/UBERON_0005021;mucosa of sphenoidal sinus;mucous membrane of sphenoid sinus -http://purl.obolibrary.org/obo/UBERON_0005021;mucosa of sphenoidal sinus;mucous membrane of sphenoidal sinus -http://purl.obolibrary.org/obo/UBERON_0005021;mucosa of sphenoidal sinus;organ mucosa of sphenoid sinus -http://purl.obolibrary.org/obo/UBERON_0005021;mucosa of sphenoidal sinus;organ mucosa of sphenoidal sinus -http://purl.obolibrary.org/obo/UBERON_0005021;mucosa of sphenoidal sinus;sphenoid sinus mucosa -http://purl.obolibrary.org/obo/UBERON_0005021;mucosa of sphenoidal sinus;sphenoid sinus mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005021;mucosa of sphenoidal sinus;sphenoid sinus mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005021;mucosa of sphenoidal sinus;sphenoid sinus organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005021;mucosa of sphenoidal sinus;sphenoidal sinus mucosa -http://purl.obolibrary.org/obo/UBERON_0005021;mucosa of sphenoidal sinus;sphenoidal sinus mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005021;mucosa of sphenoidal sinus;sphenoidal sinus mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005021;mucosa of sphenoidal sinus;sphenoidal sinus organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005022;mucosa of nasopharynx;mucosa of nasal part of pharynx -http://purl.obolibrary.org/obo/UBERON_0005022;mucosa of nasopharynx;mucosa of organ of nasal part of pharynx -http://purl.obolibrary.org/obo/UBERON_0005022;mucosa of nasopharynx;mucosa of organ of nasopharynx -http://purl.obolibrary.org/obo/UBERON_0005022;mucosa of nasopharynx;mucosa of organ of rhinopharynx -http://purl.obolibrary.org/obo/UBERON_0005022;mucosa of nasopharynx;mucosa of rhinopharynx -http://purl.obolibrary.org/obo/UBERON_0005022;mucosa of nasopharynx;mucous membrane of nasal part of pharynx -http://purl.obolibrary.org/obo/UBERON_0005022;mucosa of nasopharynx;mucous membrane of nasopharynx -http://purl.obolibrary.org/obo/UBERON_0005022;mucosa of nasopharynx;mucous membrane of rhinopharynx -http://purl.obolibrary.org/obo/UBERON_0005022;mucosa of nasopharynx;nasal part of pharynx mucosa -http://purl.obolibrary.org/obo/UBERON_0005022;mucosa of nasopharynx;nasal part of pharynx mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005022;mucosa of nasopharynx;nasal part of pharynx mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005022;mucosa of nasopharynx;nasal part of pharynx organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005022;mucosa of nasopharynx;nasopharynx mucosa -http://purl.obolibrary.org/obo/UBERON_0005022;mucosa of nasopharynx;nasopharynx mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005022;mucosa of nasopharynx;nasopharynx mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005022;mucosa of nasopharynx;nasopharynx organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005022;mucosa of nasopharynx;organ mucosa of nasal part of pharynx -http://purl.obolibrary.org/obo/UBERON_0005022;mucosa of nasopharynx;organ mucosa of nasopharynx -http://purl.obolibrary.org/obo/UBERON_0005022;mucosa of nasopharynx;organ mucosa of rhinopharynx -http://purl.obolibrary.org/obo/UBERON_0005022;mucosa of nasopharynx;rhinopharynx mucosa -http://purl.obolibrary.org/obo/UBERON_0005022;mucosa of nasopharynx;rhinopharynx mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005022;mucosa of nasopharynx;rhinopharynx mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005022;mucosa of nasopharynx;rhinopharynx organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005023;mucosa of oropharynx;mucosa of oral part of pharynx -http://purl.obolibrary.org/obo/UBERON_0005023;mucosa of oropharynx;mucosa of organ of oral part of pharynx -http://purl.obolibrary.org/obo/UBERON_0005023;mucosa of oropharynx;mucosa of organ of oropharynx -http://purl.obolibrary.org/obo/UBERON_0005023;mucosa of oropharynx;mucous membrane of oral part of pharynx -http://purl.obolibrary.org/obo/UBERON_0005023;mucosa of oropharynx;mucous membrane of oropharynx -http://purl.obolibrary.org/obo/UBERON_0005023;mucosa of oropharynx;oral part of pharynx mucosa -http://purl.obolibrary.org/obo/UBERON_0005023;mucosa of oropharynx;oral part of pharynx mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005023;mucosa of oropharynx;oral part of pharynx mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005023;mucosa of oropharynx;oral part of pharynx organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005023;mucosa of oropharynx;organ mucosa of oral part of pharynx -http://purl.obolibrary.org/obo/UBERON_0005023;mucosa of oropharynx;organ mucosa of oropharynx -http://purl.obolibrary.org/obo/UBERON_0005023;mucosa of oropharynx;oropharynx mucosa -http://purl.obolibrary.org/obo/UBERON_0005023;mucosa of oropharynx;oropharynx mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005023;mucosa of oropharynx;oropharynx mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005023;mucosa of oropharynx;oropharynx organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005024;mucosa of soft palate;mucosa of organ of soft palate -http://purl.obolibrary.org/obo/UBERON_0005024;mucosa of soft palate;mucous membrane of soft palate -http://purl.obolibrary.org/obo/UBERON_0005024;mucosa of soft palate;organ mucosa of soft palate -http://purl.obolibrary.org/obo/UBERON_0005024;mucosa of soft palate;soft palate mucosa -http://purl.obolibrary.org/obo/UBERON_0005024;mucosa of soft palate;soft palate mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005024;mucosa of soft palate;soft palate mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005024;mucosa of soft palate;soft palate organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005025;mucosa of uvula;uvula mucosa -http://purl.obolibrary.org/obo/UBERON_0005026;mucosa of middle ear;middle ear mucosa -http://purl.obolibrary.org/obo/UBERON_0005026;mucosa of middle ear;middle ear mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005026;mucosa of middle ear;middle ear mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005026;mucosa of middle ear;middle ear organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005026;mucosa of middle ear;mucosa of organ of middle ear -http://purl.obolibrary.org/obo/UBERON_0005026;mucosa of middle ear;mucosa of tympanic cavity -http://purl.obolibrary.org/obo/UBERON_0005026;mucosa of middle ear;mucous membrane of middle ear -http://purl.obolibrary.org/obo/UBERON_0005026;mucosa of middle ear;organ mucosa of middle ear -http://purl.obolibrary.org/obo/UBERON_0005026;mucosa of middle ear;tunica mucosa cavitatis tympanicae -http://purl.obolibrary.org/obo/UBERON_0005027;mucosa of frontal sinus;frontal sinus mucosa -http://purl.obolibrary.org/obo/UBERON_0005027;mucosa of frontal sinus;frontal sinus mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005027;mucosa of frontal sinus;frontal sinus mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005027;mucosa of frontal sinus;frontal sinus organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005027;mucosa of frontal sinus;mucosa of organ of frontal sinus -http://purl.obolibrary.org/obo/UBERON_0005027;mucosa of frontal sinus;mucous membrane of frontal sinus -http://purl.obolibrary.org/obo/UBERON_0005027;mucosa of frontal sinus;organ mucosa of frontal sinus -http://purl.obolibrary.org/obo/UBERON_0005028;mucosa of maxillary sinus;antrum of highmore mucosa -http://purl.obolibrary.org/obo/UBERON_0005028;mucosa of maxillary sinus;antrum of highmore mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005028;mucosa of maxillary sinus;antrum of highmore mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005028;mucosa of maxillary sinus;antrum of highmore organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005028;mucosa of maxillary sinus;maxillary sinus mucosa -http://purl.obolibrary.org/obo/UBERON_0005028;mucosa of maxillary sinus;maxillary sinus mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005028;mucosa of maxillary sinus;maxillary sinus mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005028;mucosa of maxillary sinus;maxillary sinus organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005028;mucosa of maxillary sinus;mucosa of antrum of highmore -http://purl.obolibrary.org/obo/UBERON_0005028;mucosa of maxillary sinus;mucosa of organ of antrum of highmore -http://purl.obolibrary.org/obo/UBERON_0005028;mucosa of maxillary sinus;mucosa of organ of maxillary sinus -http://purl.obolibrary.org/obo/UBERON_0005028;mucosa of maxillary sinus;mucous membrane of antrum of highmore -http://purl.obolibrary.org/obo/UBERON_0005028;mucosa of maxillary sinus;mucous membrane of maxillary sinus -http://purl.obolibrary.org/obo/UBERON_0005028;mucosa of maxillary sinus;organ mucosa of antrum of highmore -http://purl.obolibrary.org/obo/UBERON_0005028;mucosa of maxillary sinus;organ mucosa of maxillary sinus -http://purl.obolibrary.org/obo/UBERON_0005029;mucosa of lacrimal canaliculus;lacrimal canalicular mucosa -http://purl.obolibrary.org/obo/UBERON_0005029;mucosa of lacrimal canaliculus;lacrimal canaliculus mucosa -http://purl.obolibrary.org/obo/UBERON_0005029;mucosa of lacrimal canaliculus;lacrimal canaliculus mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005029;mucosa of lacrimal canaliculus;lacrimal canaliculus mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005029;mucosa of lacrimal canaliculus;lacrimal canaliculus organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005029;mucosa of lacrimal canaliculus;mucosa of organ of lacrimal canaliculus -http://purl.obolibrary.org/obo/UBERON_0005029;mucosa of lacrimal canaliculus;mucous membrane of lacrimal canaliculus -http://purl.obolibrary.org/obo/UBERON_0005029;mucosa of lacrimal canaliculus;organ mucosa of lacrimal canaliculus -http://purl.obolibrary.org/obo/UBERON_0005030;mucosa of paranasal sinus;paranasal sinus mucosa -http://purl.obolibrary.org/obo/UBERON_0005031;mucosa of upper lip;mucosa of organ of upper lip -http://purl.obolibrary.org/obo/UBERON_0005031;mucosa of upper lip;mucous membrane of upper lip -http://purl.obolibrary.org/obo/UBERON_0005031;mucosa of upper lip;organ mucosa of upper lip -http://purl.obolibrary.org/obo/UBERON_0005031;mucosa of upper lip;upper labial mucosa -http://purl.obolibrary.org/obo/UBERON_0005031;mucosa of upper lip;upper lip mucosa -http://purl.obolibrary.org/obo/UBERON_0005031;mucosa of upper lip;upper lip mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005031;mucosa of upper lip;upper lip mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005031;mucosa of upper lip;upper lip organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005032;mucosa of lower lip;lower labial mucosa -http://purl.obolibrary.org/obo/UBERON_0005032;mucosa of lower lip;lower lip mucosa -http://purl.obolibrary.org/obo/UBERON_0005032;mucosa of lower lip;lower lip mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005032;mucosa of lower lip;lower lip mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005032;mucosa of lower lip;lower lip organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005032;mucosa of lower lip;mucosa of organ of lower lip -http://purl.obolibrary.org/obo/UBERON_0005032;mucosa of lower lip;mucous membrane of lower lip -http://purl.obolibrary.org/obo/UBERON_0005032;mucosa of lower lip;organ mucosa of lower lip -http://purl.obolibrary.org/obo/UBERON_0005033;mucosa of gallbladder;gall bladder mucosa -http://purl.obolibrary.org/obo/UBERON_0005033;mucosa of gallbladder;gall bladder mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005033;mucosa of gallbladder;gall bladder mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005033;mucosa of gallbladder;gall bladder organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005033;mucosa of gallbladder;gallbladder mucosa -http://purl.obolibrary.org/obo/UBERON_0005033;mucosa of gallbladder;gallbladder mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005033;mucosa of gallbladder;gallbladder mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005033;mucosa of gallbladder;gallbladder organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005033;mucosa of gallbladder;mucosa of gall bladder -http://purl.obolibrary.org/obo/UBERON_0005033;mucosa of gallbladder;mucosa of organ of gall bladder -http://purl.obolibrary.org/obo/UBERON_0005033;mucosa of gallbladder;mucosa of organ of gallbladder -http://purl.obolibrary.org/obo/UBERON_0005033;mucosa of gallbladder;mucous membrane of gall bladder -http://purl.obolibrary.org/obo/UBERON_0005033;mucosa of gallbladder;mucous membrane of gallbladder -http://purl.obolibrary.org/obo/UBERON_0005033;mucosa of gallbladder;organ mucosa of gall bladder -http://purl.obolibrary.org/obo/UBERON_0005033;mucosa of gallbladder;organ mucosa of gallbladder -http://purl.obolibrary.org/obo/UBERON_0005033;mucosa of gallbladder;tunica mucosa (vesica biliaris) -http://purl.obolibrary.org/obo/UBERON_0005033;mucosa of gallbladder;tunica mucosa vesicae biliaris -http://purl.obolibrary.org/obo/UBERON_0005034;mucosa of right main bronchus;mucosa of organ of right bronchus -http://purl.obolibrary.org/obo/UBERON_0005034;mucosa of right main bronchus;mucosa of organ of right main bronchus -http://purl.obolibrary.org/obo/UBERON_0005034;mucosa of right main bronchus;mucosa of organ of right principal bronchus -http://purl.obolibrary.org/obo/UBERON_0005034;mucosa of right main bronchus;mucosa of right bronchus -http://purl.obolibrary.org/obo/UBERON_0005034;mucosa of right main bronchus;mucosa of right principal bronchus -http://purl.obolibrary.org/obo/UBERON_0005034;mucosa of right main bronchus;mucous membrane of right bronchus -http://purl.obolibrary.org/obo/UBERON_0005034;mucosa of right main bronchus;mucous membrane of right main bronchus -http://purl.obolibrary.org/obo/UBERON_0005034;mucosa of right main bronchus;mucous membrane of right principal bronchus -http://purl.obolibrary.org/obo/UBERON_0005034;mucosa of right main bronchus;organ mucosa of right bronchus -http://purl.obolibrary.org/obo/UBERON_0005034;mucosa of right main bronchus;organ mucosa of right main bronchus -http://purl.obolibrary.org/obo/UBERON_0005034;mucosa of right main bronchus;organ mucosa of right principal bronchus -http://purl.obolibrary.org/obo/UBERON_0005034;mucosa of right main bronchus;right bronchus mucosa -http://purl.obolibrary.org/obo/UBERON_0005034;mucosa of right main bronchus;right bronchus mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005034;mucosa of right main bronchus;right bronchus mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005034;mucosa of right main bronchus;right bronchus organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005034;mucosa of right main bronchus;right main bronchial mucosa -http://purl.obolibrary.org/obo/UBERON_0005034;mucosa of right main bronchus;right main bronchus mucosa -http://purl.obolibrary.org/obo/UBERON_0005034;mucosa of right main bronchus;right main bronchus mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005034;mucosa of right main bronchus;right main bronchus mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005034;mucosa of right main bronchus;right main bronchus organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005034;mucosa of right main bronchus;right principal bronchus mucosa -http://purl.obolibrary.org/obo/UBERON_0005034;mucosa of right main bronchus;right principal bronchus mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005034;mucosa of right main bronchus;right principal bronchus mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005034;mucosa of right main bronchus;right principal bronchus organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005035;mucosa of left main bronchus;left bronchus mucosa -http://purl.obolibrary.org/obo/UBERON_0005035;mucosa of left main bronchus;left bronchus mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005035;mucosa of left main bronchus;left bronchus mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005035;mucosa of left main bronchus;left bronchus organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005035;mucosa of left main bronchus;left main bronchial mucosa -http://purl.obolibrary.org/obo/UBERON_0005035;mucosa of left main bronchus;left main bronchus mucosa -http://purl.obolibrary.org/obo/UBERON_0005035;mucosa of left main bronchus;left main bronchus mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005035;mucosa of left main bronchus;left main bronchus mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005035;mucosa of left main bronchus;left main bronchus organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005035;mucosa of left main bronchus;left principal bronchus mucosa -http://purl.obolibrary.org/obo/UBERON_0005035;mucosa of left main bronchus;left principal bronchus mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005035;mucosa of left main bronchus;left principal bronchus mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005035;mucosa of left main bronchus;left principal bronchus organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005035;mucosa of left main bronchus;mucosa of left bronchus -http://purl.obolibrary.org/obo/UBERON_0005035;mucosa of left main bronchus;mucosa of left principal bronchus -http://purl.obolibrary.org/obo/UBERON_0005035;mucosa of left main bronchus;mucosa of organ of left bronchus -http://purl.obolibrary.org/obo/UBERON_0005035;mucosa of left main bronchus;mucosa of organ of left main bronchus -http://purl.obolibrary.org/obo/UBERON_0005035;mucosa of left main bronchus;mucosa of organ of left principal bronchus -http://purl.obolibrary.org/obo/UBERON_0005035;mucosa of left main bronchus;mucous membrane of left bronchus -http://purl.obolibrary.org/obo/UBERON_0005035;mucosa of left main bronchus;mucous membrane of left main bronchus -http://purl.obolibrary.org/obo/UBERON_0005035;mucosa of left main bronchus;mucous membrane of left principal bronchus -http://purl.obolibrary.org/obo/UBERON_0005035;mucosa of left main bronchus;organ mucosa of left bronchus -http://purl.obolibrary.org/obo/UBERON_0005035;mucosa of left main bronchus;organ mucosa of left main bronchus -http://purl.obolibrary.org/obo/UBERON_0005035;mucosa of left main bronchus;organ mucosa of left principal bronchus -http://purl.obolibrary.org/obo/UBERON_0005036;mucosa of main bronchus;bronchus principalis mucosa -http://purl.obolibrary.org/obo/UBERON_0005036;mucosa of main bronchus;bronchus principalis mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005036;mucosa of main bronchus;bronchus principalis mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005036;mucosa of main bronchus;bronchus principalis organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005036;mucosa of main bronchus;main bronchial mucosa -http://purl.obolibrary.org/obo/UBERON_0005036;mucosa of main bronchus;main bronchus mucosa -http://purl.obolibrary.org/obo/UBERON_0005036;mucosa of main bronchus;main bronchus mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005036;mucosa of main bronchus;main bronchus mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005036;mucosa of main bronchus;main bronchus organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005036;mucosa of main bronchus;mucosa of bronchus principalis -http://purl.obolibrary.org/obo/UBERON_0005036;mucosa of main bronchus;mucosa of organ of bronchus principalis -http://purl.obolibrary.org/obo/UBERON_0005036;mucosa of main bronchus;mucosa of organ of main bronchus -http://purl.obolibrary.org/obo/UBERON_0005036;mucosa of main bronchus;mucosa of organ of primary bronchus -http://purl.obolibrary.org/obo/UBERON_0005036;mucosa of main bronchus;mucosa of organ of principal bronchus -http://purl.obolibrary.org/obo/UBERON_0005036;mucosa of main bronchus;mucosa of primary bronchus -http://purl.obolibrary.org/obo/UBERON_0005036;mucosa of main bronchus;mucosa of principal bronchus -http://purl.obolibrary.org/obo/UBERON_0005036;mucosa of main bronchus;mucous membrane of bronchus principalis -http://purl.obolibrary.org/obo/UBERON_0005036;mucosa of main bronchus;mucous membrane of main bronchus -http://purl.obolibrary.org/obo/UBERON_0005036;mucosa of main bronchus;mucous membrane of primary bronchus -http://purl.obolibrary.org/obo/UBERON_0005036;mucosa of main bronchus;mucous membrane of principal bronchus -http://purl.obolibrary.org/obo/UBERON_0005036;mucosa of main bronchus;organ mucosa of bronchus principalis -http://purl.obolibrary.org/obo/UBERON_0005036;mucosa of main bronchus;organ mucosa of main bronchus -http://purl.obolibrary.org/obo/UBERON_0005036;mucosa of main bronchus;organ mucosa of primary bronchus -http://purl.obolibrary.org/obo/UBERON_0005036;mucosa of main bronchus;organ mucosa of principal bronchus -http://purl.obolibrary.org/obo/UBERON_0005036;mucosa of main bronchus;primary bronchus mucosa -http://purl.obolibrary.org/obo/UBERON_0005036;mucosa of main bronchus;primary bronchus mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005036;mucosa of main bronchus;primary bronchus mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005036;mucosa of main bronchus;primary bronchus organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005036;mucosa of main bronchus;principal bronchus mucosa -http://purl.obolibrary.org/obo/UBERON_0005036;mucosa of main bronchus;principal bronchus mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005036;mucosa of main bronchus;principal bronchus mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005036;mucosa of main bronchus;principal bronchus organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005037;mucosa of lobar bronchus;lobar bronchial mucosa -http://purl.obolibrary.org/obo/UBERON_0005037;mucosa of lobar bronchus;lobar bronchus mucosa -http://purl.obolibrary.org/obo/UBERON_0005037;mucosa of lobar bronchus;lobar bronchus mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005037;mucosa of lobar bronchus;lobar bronchus mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005037;mucosa of lobar bronchus;lobar bronchus organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005037;mucosa of lobar bronchus;mucosa of organ of lobar bronchus -http://purl.obolibrary.org/obo/UBERON_0005037;mucosa of lobar bronchus;mucosa of organ of secondary bronchus -http://purl.obolibrary.org/obo/UBERON_0005037;mucosa of lobar bronchus;mucosa of secondary bronchus -http://purl.obolibrary.org/obo/UBERON_0005037;mucosa of lobar bronchus;mucous membrane of lobar bronchus -http://purl.obolibrary.org/obo/UBERON_0005037;mucosa of lobar bronchus;mucous membrane of secondary bronchus -http://purl.obolibrary.org/obo/UBERON_0005037;mucosa of lobar bronchus;organ mucosa of lobar bronchus -http://purl.obolibrary.org/obo/UBERON_0005037;mucosa of lobar bronchus;organ mucosa of secondary bronchus -http://purl.obolibrary.org/obo/UBERON_0005037;mucosa of lobar bronchus;secondary bronchus mucosa -http://purl.obolibrary.org/obo/UBERON_0005037;mucosa of lobar bronchus;secondary bronchus mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005037;mucosa of lobar bronchus;secondary bronchus mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005037;mucosa of lobar bronchus;secondary bronchus organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005038;mucosa of segmental bronchus;mucosa of organ of segmental bronchus -http://purl.obolibrary.org/obo/UBERON_0005038;mucosa of segmental bronchus;mucosa of organ of tertiary bronchus -http://purl.obolibrary.org/obo/UBERON_0005038;mucosa of segmental bronchus;mucosa of tertiary bronchus -http://purl.obolibrary.org/obo/UBERON_0005038;mucosa of segmental bronchus;mucous membrane of segmental bronchus -http://purl.obolibrary.org/obo/UBERON_0005038;mucosa of segmental bronchus;mucous membrane of tertiary bronchus -http://purl.obolibrary.org/obo/UBERON_0005038;mucosa of segmental bronchus;organ mucosa of segmental bronchus -http://purl.obolibrary.org/obo/UBERON_0005038;mucosa of segmental bronchus;organ mucosa of tertiary bronchus -http://purl.obolibrary.org/obo/UBERON_0005038;mucosa of segmental bronchus;segmental bronchial mucosa -http://purl.obolibrary.org/obo/UBERON_0005038;mucosa of segmental bronchus;segmental bronchus mucosa -http://purl.obolibrary.org/obo/UBERON_0005038;mucosa of segmental bronchus;segmental bronchus mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005038;mucosa of segmental bronchus;segmental bronchus mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005038;mucosa of segmental bronchus;segmental bronchus organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005038;mucosa of segmental bronchus;tertiary bronchus mucosa -http://purl.obolibrary.org/obo/UBERON_0005038;mucosa of segmental bronchus;tertiary bronchus mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005038;mucosa of segmental bronchus;tertiary bronchus mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005038;mucosa of segmental bronchus;tertiary bronchus organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005039;mucosa of bronchiole;bronchiole mucosa -http://purl.obolibrary.org/obo/UBERON_0005039;mucosa of bronchiole;bronchiole mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005039;mucosa of bronchiole;bronchiole mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005039;mucosa of bronchiole;bronchiole organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005039;mucosa of bronchiole;mucosa of organ of bronchiole -http://purl.obolibrary.org/obo/UBERON_0005039;mucosa of bronchiole;mucous membrane of bronchiole -http://purl.obolibrary.org/obo/UBERON_0005039;mucosa of bronchiole;organ mucosa of bronchiole -http://purl.obolibrary.org/obo/UBERON_0005040;mucosa of terminal bronchiole;bronchiolus terminalis mucosa -http://purl.obolibrary.org/obo/UBERON_0005040;mucosa of terminal bronchiole;bronchiolus terminalis mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005040;mucosa of terminal bronchiole;bronchiolus terminalis mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005040;mucosa of terminal bronchiole;bronchiolus terminalis organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005040;mucosa of terminal bronchiole;mucosa of bronchiolus terminalis -http://purl.obolibrary.org/obo/UBERON_0005040;mucosa of terminal bronchiole;mucosa of organ of bronchiolus terminalis -http://purl.obolibrary.org/obo/UBERON_0005040;mucosa of terminal bronchiole;mucosa of organ of terminal bronchiole -http://purl.obolibrary.org/obo/UBERON_0005040;mucosa of terminal bronchiole;mucous membrane of bronchiolus terminalis -http://purl.obolibrary.org/obo/UBERON_0005040;mucosa of terminal bronchiole;mucous membrane of terminal bronchiole -http://purl.obolibrary.org/obo/UBERON_0005040;mucosa of terminal bronchiole;organ mucosa of bronchiolus terminalis -http://purl.obolibrary.org/obo/UBERON_0005040;mucosa of terminal bronchiole;organ mucosa of terminal bronchiole -http://purl.obolibrary.org/obo/UBERON_0005040;mucosa of terminal bronchiole;terminal bronchiole mucosa -http://purl.obolibrary.org/obo/UBERON_0005040;mucosa of terminal bronchiole;terminal bronchiole mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005040;mucosa of terminal bronchiole;terminal bronchiole mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005040;mucosa of terminal bronchiole;terminal bronchiole organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005041;mucosa of respiratory bronchiole;bronchiolus respiratorius mucosa -http://purl.obolibrary.org/obo/UBERON_0005041;mucosa of respiratory bronchiole;bronchiolus respiratorius mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005041;mucosa of respiratory bronchiole;bronchiolus respiratorius mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005041;mucosa of respiratory bronchiole;bronchiolus respiratorius organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005041;mucosa of respiratory bronchiole;mucosa of bronchiolus respiratorius -http://purl.obolibrary.org/obo/UBERON_0005041;mucosa of respiratory bronchiole;mucosa of organ of bronchiolus respiratorius -http://purl.obolibrary.org/obo/UBERON_0005041;mucosa of respiratory bronchiole;mucosa of organ of respiratory bronchiole -http://purl.obolibrary.org/obo/UBERON_0005041;mucosa of respiratory bronchiole;mucous membrane of bronchiolus respiratorius -http://purl.obolibrary.org/obo/UBERON_0005041;mucosa of respiratory bronchiole;mucous membrane of respiratory bronchiole -http://purl.obolibrary.org/obo/UBERON_0005041;mucosa of respiratory bronchiole;organ mucosa of bronchiolus respiratorius -http://purl.obolibrary.org/obo/UBERON_0005041;mucosa of respiratory bronchiole;organ mucosa of respiratory bronchiole -http://purl.obolibrary.org/obo/UBERON_0005041;mucosa of respiratory bronchiole;respiratory bronchiole mucosa -http://purl.obolibrary.org/obo/UBERON_0005041;mucosa of respiratory bronchiole;respiratory bronchiole mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005041;mucosa of respiratory bronchiole;respiratory bronchiole mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005041;mucosa of respiratory bronchiole;respiratory bronchiole organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005042;inner epithelial layer of tympanic membrane;mucosa of tympanic membrane -http://purl.obolibrary.org/obo/UBERON_0005042;inner epithelial layer of tympanic membrane;mucous layer of tympanic membrane -http://purl.obolibrary.org/obo/UBERON_0005042;inner epithelial layer of tympanic membrane;mucous stratum of tympanic membrane -http://purl.obolibrary.org/obo/UBERON_0005042;inner epithelial layer of tympanic membrane;tympanic membrane external middle ear cavity epithelial component -http://purl.obolibrary.org/obo/UBERON_0005042;inner epithelial layer of tympanic membrane;tympanic membrane mucosa -http://purl.obolibrary.org/obo/UBERON_0005043;mucosa of nasolacrimal duct;mucosa of organ of nasolacrimal duct -http://purl.obolibrary.org/obo/UBERON_0005043;mucosa of nasolacrimal duct;mucous membrane of nasolacrimal duct -http://purl.obolibrary.org/obo/UBERON_0005043;mucosa of nasolacrimal duct;nasolacrimal duct mucosa -http://purl.obolibrary.org/obo/UBERON_0005043;mucosa of nasolacrimal duct;nasolacrimal duct mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005043;mucosa of nasolacrimal duct;nasolacrimal duct mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005043;mucosa of nasolacrimal duct;nasolacrimal duct organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005043;mucosa of nasolacrimal duct;nasolacrimal ductal mucosa -http://purl.obolibrary.org/obo/UBERON_0005043;mucosa of nasolacrimal duct;organ mucosa of nasolacrimal duct -http://purl.obolibrary.org/obo/UBERON_0005044;mucosa of pharyngotympanic tube;auditory tube mucosa -http://purl.obolibrary.org/obo/UBERON_0005044;mucosa of pharyngotympanic tube;auditory tube mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005044;mucosa of pharyngotympanic tube;auditory tube mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005044;mucosa of pharyngotympanic tube;auditory tube organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005044;mucosa of pharyngotympanic tube;internal auditory tube mucosa -http://purl.obolibrary.org/obo/UBERON_0005044;mucosa of pharyngotympanic tube;internal auditory tube mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005044;mucosa of pharyngotympanic tube;internal auditory tube mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005044;mucosa of pharyngotympanic tube;internal auditory tube organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005044;mucosa of pharyngotympanic tube;mucosa of auditory tube -http://purl.obolibrary.org/obo/UBERON_0005044;mucosa of pharyngotympanic tube;mucosa of internal auditory tube -http://purl.obolibrary.org/obo/UBERON_0005044;mucosa of pharyngotympanic tube;mucosa of organ of auditory tube -http://purl.obolibrary.org/obo/UBERON_0005044;mucosa of pharyngotympanic tube;mucosa of organ of internal auditory tube -http://purl.obolibrary.org/obo/UBERON_0005044;mucosa of pharyngotympanic tube;mucosa of organ of pharyngotympanic tube -http://purl.obolibrary.org/obo/UBERON_0005044;mucosa of pharyngotympanic tube;mucous membrane of auditory tube -http://purl.obolibrary.org/obo/UBERON_0005044;mucosa of pharyngotympanic tube;mucous membrane of internal auditory tube -http://purl.obolibrary.org/obo/UBERON_0005044;mucosa of pharyngotympanic tube;mucous membrane of pharyngotympanic tube -http://purl.obolibrary.org/obo/UBERON_0005044;mucosa of pharyngotympanic tube;mucuous membrane of eustachian tube -http://purl.obolibrary.org/obo/UBERON_0005044;mucosa of pharyngotympanic tube;mucuous membrane of pharyngotympanic tube -http://purl.obolibrary.org/obo/UBERON_0005044;mucosa of pharyngotympanic tube;organ mucosa of auditory tube -http://purl.obolibrary.org/obo/UBERON_0005044;mucosa of pharyngotympanic tube;organ mucosa of internal auditory tube -http://purl.obolibrary.org/obo/UBERON_0005044;mucosa of pharyngotympanic tube;organ mucosa of pharyngotympanic tube -http://purl.obolibrary.org/obo/UBERON_0005044;mucosa of pharyngotympanic tube;pharyngotympanic tube mucosa -http://purl.obolibrary.org/obo/UBERON_0005044;mucosa of pharyngotympanic tube;pharyngotympanic tube mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005044;mucosa of pharyngotympanic tube;pharyngotympanic tube mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005044;mucosa of pharyngotympanic tube;pharyngotympanic tube organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005044;mucosa of pharyngotympanic tube;tunica mucosa (tuba auditiva) -http://purl.obolibrary.org/obo/UBERON_0005044;mucosa of pharyngotympanic tube;tunica mucosa (tuba auditoria) -http://purl.obolibrary.org/obo/UBERON_0005045;mucosa of ethmoidal sinus;ethmoid sinus mucosa -http://purl.obolibrary.org/obo/UBERON_0005045;mucosa of ethmoidal sinus;ethmoid sinus mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005045;mucosa of ethmoidal sinus;ethmoid sinus mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005045;mucosa of ethmoidal sinus;ethmoid sinus organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005045;mucosa of ethmoidal sinus;ethmoidal sinus mucosa -http://purl.obolibrary.org/obo/UBERON_0005045;mucosa of ethmoidal sinus;mucosa of ethmoid sinus -http://purl.obolibrary.org/obo/UBERON_0005045;mucosa of ethmoidal sinus;mucosa of organ of ethmoid sinus -http://purl.obolibrary.org/obo/UBERON_0005045;mucosa of ethmoidal sinus;mucous membrane of ethmoid sinus -http://purl.obolibrary.org/obo/UBERON_0005045;mucosa of ethmoidal sinus;organ mucosa of ethmoid sinus -http://purl.obolibrary.org/obo/UBERON_0005046;mucosa of hard palate;hard palate mucosa -http://purl.obolibrary.org/obo/UBERON_0005046;mucosa of hard palate;hard palate mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005046;mucosa of hard palate;mucous membrane of hard palate -http://purl.obolibrary.org/obo/UBERON_0005046;mucosa of hard palate;organ mucosa of hard palate -http://purl.obolibrary.org/obo/UBERON_0005047;mucosa of vocal fold;mucosa of glottis -http://purl.obolibrary.org/obo/UBERON_0005047;mucosa of vocal fold;mucosa of organ of true vocal cord -http://purl.obolibrary.org/obo/UBERON_0005047;mucosa of vocal fold;mucosa of organ of vocal cord -http://purl.obolibrary.org/obo/UBERON_0005047;mucosa of vocal fold;mucosa of true vocal cord -http://purl.obolibrary.org/obo/UBERON_0005047;mucosa of vocal fold;mucosa of vocal cord -http://purl.obolibrary.org/obo/UBERON_0005047;mucosa of vocal fold;mucous membrane of true vocal cord -http://purl.obolibrary.org/obo/UBERON_0005047;mucosa of vocal fold;mucous membrane of vocal cord -http://purl.obolibrary.org/obo/UBERON_0005047;mucosa of vocal fold;organ mucosa of true vocal cord -http://purl.obolibrary.org/obo/UBERON_0005047;mucosa of vocal fold;organ mucosa of vocal cord -http://purl.obolibrary.org/obo/UBERON_0005047;mucosa of vocal fold;true vocal cord mucosa -http://purl.obolibrary.org/obo/UBERON_0005047;mucosa of vocal fold;true vocal cord mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005047;mucosa of vocal fold;true vocal cord mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005047;mucosa of vocal fold;true vocal cord organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005047;mucosa of vocal fold;vocal cord mucosa -http://purl.obolibrary.org/obo/UBERON_0005047;mucosa of vocal fold;vocal cord mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005047;mucosa of vocal fold;vocal cord mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005047;mucosa of vocal fold;vocal cord organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005047;mucosa of vocal fold;vocal fold mucosa -http://purl.obolibrary.org/obo/UBERON_0005048;mucosa of uterine tube;fallopian tube mucosa -http://purl.obolibrary.org/obo/UBERON_0005048;mucosa of uterine tube;fallopian tube mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005048;mucosa of uterine tube;fallopian tube mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005048;mucosa of uterine tube;fallopian tube organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005048;mucosa of uterine tube;mucosa of fallopian tube -http://purl.obolibrary.org/obo/UBERON_0005048;mucosa of uterine tube;mucosa of organ of fallopian tube -http://purl.obolibrary.org/obo/UBERON_0005048;mucosa of uterine tube;mucosa of organ of uterine tube -http://purl.obolibrary.org/obo/UBERON_0005048;mucosa of uterine tube;mucosa of oviduct -http://purl.obolibrary.org/obo/UBERON_0005048;mucosa of uterine tube;mucous membrane of fallopian tube -http://purl.obolibrary.org/obo/UBERON_0005048;mucosa of uterine tube;mucous membrane of uterine tube -http://purl.obolibrary.org/obo/UBERON_0005048;mucosa of uterine tube;organ mucosa of fallopian tube -http://purl.obolibrary.org/obo/UBERON_0005048;mucosa of uterine tube;organ mucosa of uterine tube -http://purl.obolibrary.org/obo/UBERON_0005048;mucosa of uterine tube;tunica mucosa tubae uterinae -http://purl.obolibrary.org/obo/UBERON_0005048;mucosa of uterine tube;uterine tubal mucosa -http://purl.obolibrary.org/obo/UBERON_0005048;mucosa of uterine tube;uterine tube mucosa -http://purl.obolibrary.org/obo/UBERON_0005048;mucosa of uterine tube;uterine tube mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005048;mucosa of uterine tube;uterine tube mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005048;mucosa of uterine tube;uterine tube organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005049;mucosa of infundibulum of uterine tube;mucosa of infundibulum of fallopian tube -http://purl.obolibrary.org/obo/UBERON_0005049;mucosa of infundibulum of uterine tube;mucosa of infundibulum of oviduct -http://purl.obolibrary.org/obo/UBERON_0005049;mucosa of infundibulum of uterine tube;mucosa of organ of uterine tube infundibulum -http://purl.obolibrary.org/obo/UBERON_0005049;mucosa of infundibulum of uterine tube;mucosa of uterine tube infundibulum -http://purl.obolibrary.org/obo/UBERON_0005049;mucosa of infundibulum of uterine tube;mucous membrane of uterine tube infundibulum -http://purl.obolibrary.org/obo/UBERON_0005049;mucosa of infundibulum of uterine tube;organ mucosa of uterine tube infundibulum -http://purl.obolibrary.org/obo/UBERON_0005049;mucosa of infundibulum of uterine tube;uterine tube infundibulum mucosa -http://purl.obolibrary.org/obo/UBERON_0005049;mucosa of infundibulum of uterine tube;uterine tube infundibulum mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0005049;mucosa of infundibulum of uterine tube;uterine tube infundibulum mucous membrane -http://purl.obolibrary.org/obo/UBERON_0005049;mucosa of infundibulum of uterine tube;uterine tube infundibulum organ mucosa -http://purl.obolibrary.org/obo/UBERON_0005050;liver papillary process;processus papillaris -http://purl.obolibrary.org/obo/UBERON_0005050;liver papillary process;processus papillaris lobi caudati hepatis -http://purl.obolibrary.org/obo/UBERON_0005051;mediastinum testis;body of highmore -http://purl.obolibrary.org/obo/UBERON_0005051;mediastinum testis;hilum of testicle -http://purl.obolibrary.org/obo/UBERON_0005051;mediastinum testis;mediastinum of testis -http://purl.obolibrary.org/obo/UBERON_0005051;mediastinum testis;testis mediastinum -http://purl.obolibrary.org/obo/UBERON_0005052;gizzard;gastric mill -http://purl.obolibrary.org/obo/UBERON_0005052;gizzard;gigerium -http://purl.obolibrary.org/obo/UBERON_0005053;primary nerve cord;nerve cord -http://purl.obolibrary.org/obo/UBERON_0005053;primary nerve cord;true nerve cord -http://purl.obolibrary.org/obo/UBERON_0005054;primary dorsal nerve cord;dorsal nerve cord -http://purl.obolibrary.org/obo/UBERON_0005054;primary dorsal nerve cord;true dorsal nerve cord -http://purl.obolibrary.org/obo/UBERON_0005055;zone of long bone;long bone zone -http://purl.obolibrary.org/obo/UBERON_0005056;external female genitalia;external female genital organ -http://purl.obolibrary.org/obo/UBERON_0005056;external female genitalia;external genitalia of female reproductive system -http://purl.obolibrary.org/obo/UBERON_0005056;external female genitalia;female external genitalia -http://purl.obolibrary.org/obo/UBERON_0005056;external female genitalia;organa genitalia feminina externa -http://purl.obolibrary.org/obo/UBERON_0005057;immune organ;immune system organ -http://purl.obolibrary.org/obo/UBERON_0005058;hemolymphoid system gland;haemolymphoid system gland -http://purl.obolibrary.org/obo/UBERON_0005058;hemolymphoid system gland;hemopoietic or lymphoid gland -http://purl.obolibrary.org/obo/UBERON_0005058;hemolymphoid system gland;hemopoietic or lymphoid organ -http://purl.obolibrary.org/obo/UBERON_0005061;neural groove; -http://purl.obolibrary.org/obo/UBERON_0005062;neural fold;medullary fold -http://purl.obolibrary.org/obo/UBERON_0005063;left ventricular compact myocardium; -http://purl.obolibrary.org/obo/UBERON_0005064;left ventricular trabecular myocardium; -http://purl.obolibrary.org/obo/UBERON_0005065;right ventricular compact myocardium; -http://purl.obolibrary.org/obo/UBERON_0005066;right ventricular trabecular myocardium; -http://purl.obolibrary.org/obo/UBERON_0005067;amphid sensory organ;amphid sensillum -http://purl.obolibrary.org/obo/UBERON_0005068;neural rod; -http://purl.obolibrary.org/obo/UBERON_0005069;neural fold hinge point; -http://purl.obolibrary.org/obo/UBERON_0005070;anterior neuropore;cephalic neuropore -http://purl.obolibrary.org/obo/UBERON_0005070;anterior neuropore;cranial neuropore -http://purl.obolibrary.org/obo/UBERON_0005070;anterior neuropore;rostral neuropore -http://purl.obolibrary.org/obo/UBERON_0005071;posterior neuropore;caudal neuropore -http://purl.obolibrary.org/obo/UBERON_0005075;forebrain-midbrain boundary;diencephalic-mesencephalic boundary -http://purl.obolibrary.org/obo/UBERON_0005075;forebrain-midbrain boundary;forebrain midbrain boundary -http://purl.obolibrary.org/obo/UBERON_0005075;forebrain-midbrain boundary;forebrain-midbrain boundary region -http://purl.obolibrary.org/obo/UBERON_0005076;hindbrain-spinal cord boundary;hindbrain-spinal cord boundary region -http://purl.obolibrary.org/obo/UBERON_0005077;neuropore; -http://purl.obolibrary.org/obo/UBERON_0005078;lamina terminalis of neural tube; -http://purl.obolibrary.org/obo/UBERON_0005079;eggshell;egg shell -http://purl.obolibrary.org/obo/UBERON_0005080;metanephric ureteric bud; -http://purl.obolibrary.org/obo/UBERON_0005081;ureter ureteric bud; -http://purl.obolibrary.org/obo/UBERON_0005082;tube lumen; -http://purl.obolibrary.org/obo/UBERON_0005083;nipple sheath; -http://purl.obolibrary.org/obo/UBERON_0005085;ectodermal placode; -http://purl.obolibrary.org/obo/UBERON_0005086;hair follicle placode;hair placode -http://purl.obolibrary.org/obo/UBERON_0005087;tooth placode;dental anlage -http://purl.obolibrary.org/obo/UBERON_0005087;tooth placode;dental placode -http://purl.obolibrary.org/obo/UBERON_0005087;tooth placode;dental primordium -http://purl.obolibrary.org/obo/UBERON_0005087;tooth placode;odontogenic placode -http://purl.obolibrary.org/obo/UBERON_0005087;tooth placode;tooth anlage -http://purl.obolibrary.org/obo/UBERON_0005087;tooth placode;tooth primordium -http://purl.obolibrary.org/obo/UBERON_0005088;sebaceous gland placode; -http://purl.obolibrary.org/obo/UBERON_0005089;sweat gland placode; -http://purl.obolibrary.org/obo/UBERON_0005090;muscle structure;muscle -http://purl.obolibrary.org/obo/UBERON_0005090;muscle structure;muscle element -http://purl.obolibrary.org/obo/UBERON_0005090;muscle structure;musculus -http://purl.obolibrary.org/obo/UBERON_0005091;left horn of sinus venosus;sinus venosus left horn -http://purl.obolibrary.org/obo/UBERON_0005092;right horn of sinus venosus;sinus venosus right horn -http://purl.obolibrary.org/obo/UBERON_0005093;embryonic cement gland; -http://purl.obolibrary.org/obo/UBERON_0005094;beak;avian beak -http://purl.obolibrary.org/obo/UBERON_0005095;kidney rudiment; -http://purl.obolibrary.org/obo/UBERON_0005096;descending thin limb;descending thin limb of loop of Henle -http://purl.obolibrary.org/obo/UBERON_0005096;descending thin limb;loop of Henle descending thin limb -http://purl.obolibrary.org/obo/UBERON_0005096;descending thin limb;loop of Henle thin descending limb -http://purl.obolibrary.org/obo/UBERON_0005096;descending thin limb;pars descendens (tubulus attenuatus) -http://purl.obolibrary.org/obo/UBERON_0005096;descending thin limb;thin descending limb -http://purl.obolibrary.org/obo/UBERON_0005097;renal connecting tubule;connecting tubule -http://purl.obolibrary.org/obo/UBERON_0005097;renal connecting tubule;kidney connecting tubule -http://purl.obolibrary.org/obo/UBERON_0005099;short descending thin limb; -http://purl.obolibrary.org/obo/UBERON_0005100;long descending thin limb; -http://purl.obolibrary.org/obo/UBERON_0005101;early distal convoluted tubule; -http://purl.obolibrary.org/obo/UBERON_0005102;late distal convoluted tubule; -http://purl.obolibrary.org/obo/UBERON_0005103;mesonephric epithelium; -http://purl.obolibrary.org/obo/UBERON_0005104;anterior mesonephric tubule;cranial mesonephric tubule -http://purl.obolibrary.org/obo/UBERON_0005105;posterior mesonephric tubule;caudal mesonephric tubule -http://purl.obolibrary.org/obo/UBERON_0005106;metanephric tubule; -http://purl.obolibrary.org/obo/UBERON_0005107;metanephric cap;cap mesenchyme -http://purl.obolibrary.org/obo/UBERON_0005108;metanephric epithelium; -http://purl.obolibrary.org/obo/UBERON_0005109;metanephric smooth muscle tissue; -http://purl.obolibrary.org/obo/UBERON_0005110;metanephric nephron; -http://purl.obolibrary.org/obo/UBERON_0005111;metanephric pyramid; -http://purl.obolibrary.org/obo/UBERON_0005113;metanephric cortex mesenchyme; -http://purl.obolibrary.org/obo/UBERON_0005114;metanephric ascending thin limb; -http://purl.obolibrary.org/obo/UBERON_0005115;metanephric cortical collecting duct; -http://purl.obolibrary.org/obo/UBERON_0005116;metanephric descending thin limb; -http://purl.obolibrary.org/obo/UBERON_0005117;metanephric distal convoluted tubule; -http://purl.obolibrary.org/obo/UBERON_0005118;metanephric early distal convoluted tubule; -http://purl.obolibrary.org/obo/UBERON_0005119;metanephric glomerular mesangium; -http://purl.obolibrary.org/obo/UBERON_0005120;metanephric late distal convoluted tubule; -http://purl.obolibrary.org/obo/UBERON_0005121;metanephric long descending thin limb bend; -http://purl.obolibrary.org/obo/UBERON_0005122;metanephric macula densa; -http://purl.obolibrary.org/obo/UBERON_0005123;metanephric prebend segment; -http://purl.obolibrary.org/obo/UBERON_0005124;metanephric proximal convoluted tubule; -http://purl.obolibrary.org/obo/UBERON_0005125;metanephric proximal straight tubule; -http://purl.obolibrary.org/obo/UBERON_0005126;metanephric S1; -http://purl.obolibrary.org/obo/UBERON_0005127;metanephric thick ascending limb; -http://purl.obolibrary.org/obo/UBERON_0005129;metanephric distal tubule; -http://purl.obolibrary.org/obo/UBERON_0005130;metanephric loop of Henle; -http://purl.obolibrary.org/obo/UBERON_0005132;metanephric long nephron; -http://purl.obolibrary.org/obo/UBERON_0005133;metanephric glomerulus vasculature; -http://purl.obolibrary.org/obo/UBERON_0005134;metanephric nephron epithelium; -http://purl.obolibrary.org/obo/UBERON_0005135;metanephric glomerular epithelium; -http://purl.obolibrary.org/obo/UBERON_0005136;metanephric glomerular endothelium; -http://purl.obolibrary.org/obo/UBERON_0005137;metanephric capsule; -http://purl.obolibrary.org/obo/UBERON_0005139;metanephric long descending thin limb; -http://purl.obolibrary.org/obo/UBERON_0005140;metanephric short nephron; -http://purl.obolibrary.org/obo/UBERON_0005141;metanephric short descending thin limb; -http://purl.obolibrary.org/obo/UBERON_0005144;metanephric glomerular capillary; -http://purl.obolibrary.org/obo/UBERON_0005145;metanephric comma-shaped body; -http://purl.obolibrary.org/obo/UBERON_0005146;metanephric nephron tubule; -http://purl.obolibrary.org/obo/UBERON_0005147;metanephric renal vesicle;metanephric vesicle -http://purl.obolibrary.org/obo/UBERON_0005148;metanephric S-shaped body; -http://purl.obolibrary.org/obo/UBERON_0005149;metanephric connecting tubule; -http://purl.obolibrary.org/obo/UBERON_0005151;metanephric proximal tubule; -http://purl.obolibrary.org/obo/UBERON_0005153;epithelial bud; -http://purl.obolibrary.org/obo/UBERON_0005154;epithelial cord; -http://purl.obolibrary.org/obo/UBERON_0005155;open tracheal system;invertebrate tracheal system -http://purl.obolibrary.org/obo/UBERON_0005155;open tracheal system;open tracheal system -http://purl.obolibrary.org/obo/UBERON_0005156;reproductive structure;reproductive system element -http://purl.obolibrary.org/obo/UBERON_0005156;reproductive structure;reproductive system structure -http://purl.obolibrary.org/obo/UBERON_0005157;epithelial fold; -http://purl.obolibrary.org/obo/UBERON_0005158;parenchyma of central nervous system;CNS parenchyma -http://purl.obolibrary.org/obo/UBERON_0005158;parenchyma of central nervous system;central nervous system parenchyma -http://purl.obolibrary.org/obo/UBERON_0005158;parenchyma of central nervous system;parenchyma of CNS -http://purl.obolibrary.org/obo/UBERON_0005158;parenchyma of central nervous system;parenchyma of central nervous system -http://purl.obolibrary.org/obo/UBERON_0005159;pyramid of medulla oblongata;lobule VIII of Larsell -http://purl.obolibrary.org/obo/UBERON_0005159;pyramid of medulla oblongata;pyramid of medulla oblongata -http://purl.obolibrary.org/obo/UBERON_0005159;pyramid of medulla oblongata;pyramis (medullae oblongatae) -http://purl.obolibrary.org/obo/UBERON_0005159;pyramid of medulla oblongata;pyramis bulbi -http://purl.obolibrary.org/obo/UBERON_0005159;pyramid of medulla oblongata;pyramis medullae oblongatae -http://purl.obolibrary.org/obo/UBERON_0005160;vestigial structure; -http://purl.obolibrary.org/obo/UBERON_0005161;pelvic spur; -http://purl.obolibrary.org/obo/UBERON_0005162;multi cell part structure;cell part cluster -http://purl.obolibrary.org/obo/UBERON_0005162;multi cell part structure;multi-cell-component structure -http://purl.obolibrary.org/obo/UBERON_0005162;multi cell part structure;multi-cell-part structure -http://purl.obolibrary.org/obo/UBERON_0005164;ascending limb of loop of Henle;ascending limb of Henle's loop -http://purl.obolibrary.org/obo/UBERON_0005164;ascending limb of loop of Henle;loop of Henle ascending limb -http://purl.obolibrary.org/obo/UBERON_0005167;papillary duct;papillary duct -http://purl.obolibrary.org/obo/UBERON_0005167;papillary duct;papillary duct of kidney -http://purl.obolibrary.org/obo/UBERON_0005167;papillary duct;renal papillary duct -http://purl.obolibrary.org/obo/UBERON_0005168;renal interlobular vein;interlobular vein -http://purl.obolibrary.org/obo/UBERON_0005168;renal interlobular vein;venae interlobulares renis -http://purl.obolibrary.org/obo/UBERON_0005169;interstitial tissue;interstitium -http://purl.obolibrary.org/obo/UBERON_0005170;granulosa cell layer;granulosa cell layer of ovarian follicle -http://purl.obolibrary.org/obo/UBERON_0005170;granulosa cell layer;membrana granulosa of ovarian follicle -http://purl.obolibrary.org/obo/UBERON_0005170;granulosa cell layer;ovary stratum granulosum -http://purl.obolibrary.org/obo/UBERON_0005170;granulosa cell layer;stratum granulosum of ovarian follicle -http://purl.obolibrary.org/obo/UBERON_0005171;hepatic duct; -http://purl.obolibrary.org/obo/UBERON_0005172;abdomen element;abdomen organ -http://purl.obolibrary.org/obo/UBERON_0005173;abdominal segment element;abdominal segment organ -http://purl.obolibrary.org/obo/UBERON_0005174;dorsal region element;back organ -http://purl.obolibrary.org/obo/UBERON_0005174;dorsal region element;dorsal region organ -http://purl.obolibrary.org/obo/UBERON_0005175;chest organ; -http://purl.obolibrary.org/obo/UBERON_0005176;tooth enamel organ;dental organ -http://purl.obolibrary.org/obo/UBERON_0005176;tooth enamel organ;enamel organ -http://purl.obolibrary.org/obo/UBERON_0005177;trunk region element;trunk organ -http://purl.obolibrary.org/obo/UBERON_0005178;thoracic cavity element;thoracic cavity organ -http://purl.obolibrary.org/obo/UBERON_0005179;pelvic region element;pelvic element -http://purl.obolibrary.org/obo/UBERON_0005179;pelvic region element;pelvis organ -http://purl.obolibrary.org/obo/UBERON_0005179;pelvic region element;pelvis region organ -http://purl.obolibrary.org/obo/UBERON_0005181;thoracic segment organ;upper body organ -http://purl.obolibrary.org/obo/UBERON_0005184;hair medulla; -http://purl.obolibrary.org/obo/UBERON_0005185;renal medulla collecting duct;kidney medulla collecting duct -http://purl.obolibrary.org/obo/UBERON_0005185;renal medulla collecting duct;medullary collecting duct -http://purl.obolibrary.org/obo/UBERON_0005192;deferent duct artery;arteria ductus deferentis -http://purl.obolibrary.org/obo/UBERON_0005192;deferent duct artery;artery of ductus deferens -http://purl.obolibrary.org/obo/UBERON_0005192;deferent duct artery;ductus deferens artery -http://purl.obolibrary.org/obo/UBERON_0005192;deferent duct artery;vas deferens artery -http://purl.obolibrary.org/obo/UBERON_0005193;ethmoidal artery;ethmoid artery -http://purl.obolibrary.org/obo/UBERON_0005194;thoracic vein; -http://purl.obolibrary.org/obo/UBERON_0005195;deferent duct vein; -http://purl.obolibrary.org/obo/UBERON_0005196;spleen germinal center;germinal center of spleen -http://purl.obolibrary.org/obo/UBERON_0005196;spleen germinal center;spleen GC -http://purl.obolibrary.org/obo/UBERON_0005196;spleen germinal center;spleen follicle center -http://purl.obolibrary.org/obo/UBERON_0005196;spleen germinal center;splenic germinal center -http://purl.obolibrary.org/obo/UBERON_0005197;segmental spinal nerve;cervical segmental spinal nerves C1-7 -http://purl.obolibrary.org/obo/UBERON_0005199;cervical mammary gland; -http://purl.obolibrary.org/obo/UBERON_0005200;thoracic mammary gland;breast mammary gland -http://purl.obolibrary.org/obo/UBERON_0005202;distal straight tubule macula densa; -http://purl.obolibrary.org/obo/UBERON_0005203;trachea gland;glandula trachealis -http://purl.obolibrary.org/obo/UBERON_0005203;trachea gland;tracheal gland -http://purl.obolibrary.org/obo/UBERON_0005204;larynx submucosa gland; -http://purl.obolibrary.org/obo/UBERON_0005205;lamina propria of vagina; -http://purl.obolibrary.org/obo/UBERON_0005206;choroid plexus stroma;choroid plexus stromal matrix -http://purl.obolibrary.org/obo/UBERON_0005207;tonsil capsule; -http://purl.obolibrary.org/obo/UBERON_0005208;right atrium valve;valve of right atrium -http://purl.obolibrary.org/obo/UBERON_0005211;renal medulla interstitium;kidney medulla interstitium -http://purl.obolibrary.org/obo/UBERON_0005211;renal medulla interstitium;renal medullary interstitial tissue -http://purl.obolibrary.org/obo/UBERON_0005211;renal medulla interstitium;renal medullary interstitium -http://purl.obolibrary.org/obo/UBERON_0005212;Leydig cell region of testis;interstitium of testis -http://purl.obolibrary.org/obo/UBERON_0005212;Leydig cell region of testis;interstitium of the testis -http://purl.obolibrary.org/obo/UBERON_0005212;Leydig cell region of testis;testis - interstitial -http://purl.obolibrary.org/obo/UBERON_0005212;Leydig cell region of testis;testis interstitial tissue -http://purl.obolibrary.org/obo/UBERON_0005212;Leydig cell region of testis;testis interstitium -http://purl.obolibrary.org/obo/UBERON_0005213;outer renal medulla interstitium;kidney outer medulla interstitium -http://purl.obolibrary.org/obo/UBERON_0005213;outer renal medulla interstitium;outer medullary interstitium -http://purl.obolibrary.org/obo/UBERON_0005214;inner renal medulla interstitium;inner medullary interstitium -http://purl.obolibrary.org/obo/UBERON_0005214;inner renal medulla interstitium;kidney inner medulla interstitium -http://purl.obolibrary.org/obo/UBERON_0005215;kidney interstitium;interstitial tissue of kidney -http://purl.obolibrary.org/obo/UBERON_0005215;kidney interstitium;renal interstitial tissue -http://purl.obolibrary.org/obo/UBERON_0005215;kidney interstitium;renal interstitium -http://purl.obolibrary.org/obo/UBERON_0005215;kidney interstitium;renal stroma -http://purl.obolibrary.org/obo/UBERON_0005215;kidney interstitium;stroma of kidney -http://purl.obolibrary.org/obo/UBERON_0005216;optic eminence surface ectoderm; -http://purl.obolibrary.org/obo/UBERON_0005217;midbrain subarachnoid space;subarachnoid space midbrain -http://purl.obolibrary.org/obo/UBERON_0005218;diencephalon subarachnoid space;subarachnoid space diencephalon -http://purl.obolibrary.org/obo/UBERON_0005219;hindbrain subarachnoid space;subarachnoid space hindbrain -http://purl.obolibrary.org/obo/UBERON_0005220;pancreas head parenchyma; -http://purl.obolibrary.org/obo/UBERON_0005221;liver right lobe parenchyma;parenchyma of right lobe of liver -http://purl.obolibrary.org/obo/UBERON_0005222;liver left lobe parenchyma;parenchyma of left lobe of liver -http://purl.obolibrary.org/obo/UBERON_0005223;pancreas body parenchyma; -http://purl.obolibrary.org/obo/UBERON_0005224;pancreas tail parenchyma; -http://purl.obolibrary.org/obo/UBERON_0005225;upper leg epithelium; -http://purl.obolibrary.org/obo/UBERON_0005226;pedal digit epithelium;hind limb digit epithelium -http://purl.obolibrary.org/obo/UBERON_0005226;pedal digit epithelium;toe epithelium -http://purl.obolibrary.org/obo/UBERON_0005227;manual digit epithelium;finger epithelium -http://purl.obolibrary.org/obo/UBERON_0005227;manual digit epithelium;fore limb digit epithelium -http://purl.obolibrary.org/obo/UBERON_0005228;upper arm epithelium; -http://purl.obolibrary.org/obo/UBERON_0005229;lower leg epithelium; -http://purl.obolibrary.org/obo/UBERON_0005233;medial-nasal process ectoderm; -http://purl.obolibrary.org/obo/UBERON_0005234;optic eminence ectoderm; -http://purl.obolibrary.org/obo/UBERON_0005236;osseus labyrinth vestibule;bony labyrinth vestibule -http://purl.obolibrary.org/obo/UBERON_0005236;osseus labyrinth vestibule;inner ear vestibulum -http://purl.obolibrary.org/obo/UBERON_0005236;osseus labyrinth vestibule;osseous labyrinth vestibule -http://purl.obolibrary.org/obo/UBERON_0005236;osseus labyrinth vestibule;vestibule of bony labyrinth -http://purl.obolibrary.org/obo/UBERON_0005239;basal plate metencephalon;metencephalon basal plate -http://purl.obolibrary.org/obo/UBERON_0005240;basal plate medulla oblongata;medulla oblongata basal plate -http://purl.obolibrary.org/obo/UBERON_0005243;interventricular septum endocardium;endocardium of interventricular septum -http://purl.obolibrary.org/obo/UBERON_0005244;lobar bronchus of right lung cranial lobe;right lung cranial lobe lobar bronchus -http://purl.obolibrary.org/obo/UBERON_0005244;lobar bronchus of right lung cranial lobe;right superior lobar bronchus -http://purl.obolibrary.org/obo/UBERON_0005244;lobar bronchus of right lung cranial lobe;right upper lobar bronchus -http://purl.obolibrary.org/obo/UBERON_0005244;lobar bronchus of right lung cranial lobe;right upper lobe bronchus -http://purl.obolibrary.org/obo/UBERON_0005245;lobar bronchus of right lung caudal lobe;lobar bronchus of caudal lobe -http://purl.obolibrary.org/obo/UBERON_0005248;bulbus cordis myocardium; -http://purl.obolibrary.org/obo/UBERON_0005249;metanephric renal pelvis;metanephros pelvis -http://purl.obolibrary.org/obo/UBERON_0005250;stomatodeum gland;stomatodaeum gland -http://purl.obolibrary.org/obo/UBERON_0005251;yolk sac cavity;cavity of yolk sac -http://purl.obolibrary.org/obo/UBERON_0005251;yolk sac cavity;yolk sac lumen -http://purl.obolibrary.org/obo/UBERON_0005252;lesser sac cavity;cavity of lesser sac -http://purl.obolibrary.org/obo/UBERON_0005252;lesser sac cavity;cavity of omental bursa -http://purl.obolibrary.org/obo/UBERON_0005252;lesser sac cavity;cavity of omental bursa viewed anatomically -http://purl.obolibrary.org/obo/UBERON_0005252;lesser sac cavity;lesser peritoneal sac -http://purl.obolibrary.org/obo/UBERON_0005252;lesser sac cavity;lesser sac cavity -http://purl.obolibrary.org/obo/UBERON_0005252;lesser sac cavity;omental bursa cavity -http://purl.obolibrary.org/obo/UBERON_0005253;head mesenchyme;cephalic mesenchyme -http://purl.obolibrary.org/obo/UBERON_0005254;upper leg mesenchyme; -http://purl.obolibrary.org/obo/UBERON_0005255;pedal digit mesenchyme;hind limb digit mesenchyme -http://purl.obolibrary.org/obo/UBERON_0005255;pedal digit mesenchyme;toe mesenchyme -http://purl.obolibrary.org/obo/UBERON_0005256;trunk mesenchyme; -http://purl.obolibrary.org/obo/UBERON_0005257;manual digit mesenchyme;finger mesenchyme -http://purl.obolibrary.org/obo/UBERON_0005257;manual digit mesenchyme;fore limb digit mesenchyme -http://purl.obolibrary.org/obo/UBERON_0005258;upper arm mesenchyme; -http://purl.obolibrary.org/obo/UBERON_0005259;lower leg mesenchyme; -http://purl.obolibrary.org/obo/UBERON_0005261;atrium cardiac jelly; -http://purl.obolibrary.org/obo/UBERON_0005262;ventricle cardiac jelly; -http://purl.obolibrary.org/obo/UBERON_0005263;outflow tract cardiac jelly; -http://purl.obolibrary.org/obo/UBERON_0005268;renal cortex artery;kidney cortex artery -http://purl.obolibrary.org/obo/UBERON_0005268;renal cortex artery;renal cortex artery -http://purl.obolibrary.org/obo/UBERON_0005269;renal cortex vein; -http://purl.obolibrary.org/obo/UBERON_0005270;renal cortex interstitium;kidney cortex interstitium -http://purl.obolibrary.org/obo/UBERON_0005270;renal cortex interstitium;renal cortical interstitial tissue -http://purl.obolibrary.org/obo/UBERON_0005271;juxtamedullary cortex;inner cortex of kidney -http://purl.obolibrary.org/obo/UBERON_0005271;juxtamedullary cortex;inner renal cortex -http://purl.obolibrary.org/obo/UBERON_0005271;juxtamedullary cortex;juxtamedullary cortex of kidney -http://purl.obolibrary.org/obo/UBERON_0005272;peritubular capillary; -http://purl.obolibrary.org/obo/UBERON_0005273;nail bed;nailbed -http://purl.obolibrary.org/obo/UBERON_0005274;proximal nail bed; -http://purl.obolibrary.org/obo/UBERON_0005275;dorsal skin of digit;dorsal digit skin -http://purl.obolibrary.org/obo/UBERON_0005275;dorsal skin of digit;skin of dorsal part of digit -http://purl.obolibrary.org/obo/UBERON_0005276;dorsal skin of finger;dorsal finger skin -http://purl.obolibrary.org/obo/UBERON_0005276;dorsal skin of finger;skin of dorsal part of finger -http://purl.obolibrary.org/obo/UBERON_0005276;dorsal skin of finger;subdivision of skin of dorsal part of finger -http://purl.obolibrary.org/obo/UBERON_0005277;dorsal skin of toe;dorsal toe skin -http://purl.obolibrary.org/obo/UBERON_0005277;dorsal skin of toe;skin of dorsal part of toe -http://purl.obolibrary.org/obo/UBERON_0005277;dorsal skin of toe;subdivision of skin of dorsal part of toe -http://purl.obolibrary.org/obo/UBERON_0005278;nail bed of finger;nail bed of finger -http://purl.obolibrary.org/obo/UBERON_0005279;nail bed of toe;nail bed of toe -http://purl.obolibrary.org/obo/UBERON_0005281;ventricular system of central nervous system;CNS ventricular system -http://purl.obolibrary.org/obo/UBERON_0005281;ventricular system of central nervous system;ventricle system -http://purl.obolibrary.org/obo/UBERON_0005281;ventricular system of central nervous system;ventricular system -http://purl.obolibrary.org/obo/UBERON_0005281;ventricular system of central nervous system;ventricular system of neuraxis -http://purl.obolibrary.org/obo/UBERON_0005281;ventricular system of central nervous system;ventriculi cerebri -http://purl.obolibrary.org/obo/UBERON_0005282;ventricular system of brain;brain ventricular system -http://purl.obolibrary.org/obo/UBERON_0005283;tela choroidea; -http://purl.obolibrary.org/obo/UBERON_0005286;tela choroidea of midbrain cerebral aqueduct;tela chorioidea tectal ventricle -http://purl.obolibrary.org/obo/UBERON_0005286;tela choroidea of midbrain cerebral aqueduct;tela choroidea of cerebral aqueduct -http://purl.obolibrary.org/obo/UBERON_0005286;tela choroidea of midbrain cerebral aqueduct;tela choroidea tectal ventricle -http://purl.obolibrary.org/obo/UBERON_0005287;tela choroidea of fourth ventricle;choroid membrane -http://purl.obolibrary.org/obo/UBERON_0005287;tela choroidea of fourth ventricle;choroid membrane of fourth ventricle -http://purl.obolibrary.org/obo/UBERON_0005287;tela choroidea of fourth ventricle;tela chorioidea fourth ventricle -http://purl.obolibrary.org/obo/UBERON_0005287;tela choroidea of fourth ventricle;tela choroidea fourth ventricle -http://purl.obolibrary.org/obo/UBERON_0005287;tela choroidea of fourth ventricle;tela choroidea of fourth ventricle -http://purl.obolibrary.org/obo/UBERON_0005287;tela choroidea of fourth ventricle;tela choroidea ventriculi quarti -http://purl.obolibrary.org/obo/UBERON_0005288;tela choroidea of third ventricle;choroid membrane of third ventricle -http://purl.obolibrary.org/obo/UBERON_0005288;tela choroidea of third ventricle;tela chorioidea of third ventricle -http://purl.obolibrary.org/obo/UBERON_0005288;tela choroidea of third ventricle;tela chorioidea third ventricle -http://purl.obolibrary.org/obo/UBERON_0005288;tela choroidea of third ventricle;tela choroidea third ventricle -http://purl.obolibrary.org/obo/UBERON_0005288;tela choroidea of third ventricle;tela choroidea ventriculi tertii -http://purl.obolibrary.org/obo/UBERON_0005289;tela choroidea of telencephalic ventricle;tela chorioidea of lateral ventricle -http://purl.obolibrary.org/obo/UBERON_0005289;tela choroidea of telencephalic ventricle;tela chorioidea of telencephalic ventricle -http://purl.obolibrary.org/obo/UBERON_0005289;tela choroidea of telencephalic ventricle;tela chorioidea telencephalic ventricle -http://purl.obolibrary.org/obo/UBERON_0005289;tela choroidea of telencephalic ventricle;tela choroidea (ventriculi lateralis) -http://purl.obolibrary.org/obo/UBERON_0005289;tela choroidea of telencephalic ventricle;tela choroidea of lateral ventricle -http://purl.obolibrary.org/obo/UBERON_0005289;tela choroidea of telencephalic ventricle;tela choroidea telencephalic ventricle -http://purl.obolibrary.org/obo/UBERON_0005290;myelencephalon;myelencephalon (medulla oblongata) -http://purl.obolibrary.org/obo/UBERON_0005291;embryonic tissue;portion of embryonic tissue -http://purl.obolibrary.org/obo/UBERON_0005292;extraembryonic tissue;extra-embryonic tissue -http://purl.obolibrary.org/obo/UBERON_0005293;cerebellum lobe;cerebellar lobe -http://purl.obolibrary.org/obo/UBERON_0005293;cerebellum lobe;lobe of cerebellum -http://purl.obolibrary.org/obo/UBERON_0005293;cerebellum lobe;lobe parts of the cerebellar cortex -http://purl.obolibrary.org/obo/UBERON_0005294;gonadal ridge;genital ridge -http://purl.obolibrary.org/obo/UBERON_0005294;gonadal ridge;gonadal ridge -http://purl.obolibrary.org/obo/UBERON_0005294;gonadal ridge;indifferent gonadal ridge -http://purl.obolibrary.org/obo/UBERON_0005295;sex cord; -http://purl.obolibrary.org/obo/UBERON_0005296;ovary sex cord;ovigerous cord -http://purl.obolibrary.org/obo/UBERON_0005296;ovary sex cord;ovigerous cords -http://purl.obolibrary.org/obo/UBERON_0005297;testis sex cord;testis cord -http://purl.obolibrary.org/obo/UBERON_0005297;testis sex cord;testis primary sex cords -http://purl.obolibrary.org/obo/UBERON_0005298;skin of clitoris;clitoris skin -http://purl.obolibrary.org/obo/UBERON_0005299;prepuce of clitoris;clitoral hood -http://purl.obolibrary.org/obo/UBERON_0005299;prepuce of clitoris;clitoral prepuce -http://purl.obolibrary.org/obo/UBERON_0005299;prepuce of clitoris;clitoris prepuce -http://purl.obolibrary.org/obo/UBERON_0005299;prepuce of clitoris;prepuce of female -http://purl.obolibrary.org/obo/UBERON_0005299;prepuce of clitoris;prepuce of the clitoris -http://purl.obolibrary.org/obo/UBERON_0005299;prepuce of clitoris;preputium clitoridis -http://purl.obolibrary.org/obo/UBERON_0005301;male preputial gland;preputial gland of male -http://purl.obolibrary.org/obo/UBERON_0005301;male preputial gland;preputial gland of penis -http://purl.obolibrary.org/obo/UBERON_0005302;female preputial gland;clitoral gland -http://purl.obolibrary.org/obo/UBERON_0005302;female preputial gland;preputial gland of female -http://purl.obolibrary.org/obo/UBERON_0005303;hypogastric nerve;hypogastric nerve plexus -http://purl.obolibrary.org/obo/UBERON_0005303;hypogastric nerve;hypogastric plexus -http://purl.obolibrary.org/obo/UBERON_0005303;hypogastric nerve;nervus hypogastricus -http://purl.obolibrary.org/obo/UBERON_0005304;submucous nerve plexus;Henle's plexus -http://purl.obolibrary.org/obo/UBERON_0005304;submucous nerve plexus;Meissner's plexus -http://purl.obolibrary.org/obo/UBERON_0005304;submucous nerve plexus;meissner's plexus -http://purl.obolibrary.org/obo/UBERON_0005304;submucous nerve plexus;submucosal nerve plexus -http://purl.obolibrary.org/obo/UBERON_0005305;thyroid follicle;thyroid gland follicle -http://purl.obolibrary.org/obo/UBERON_0005306;blastema;blastemata -http://purl.obolibrary.org/obo/UBERON_0005306;blastema;regeneration blastema -http://purl.obolibrary.org/obo/UBERON_0005307;chorion-containing eggshell; -http://purl.obolibrary.org/obo/UBERON_0005308;nephrostome; -http://purl.obolibrary.org/obo/UBERON_0005309;pronephric nephron; -http://purl.obolibrary.org/obo/UBERON_0005310;pronephric nephron tubule;pronephric tubule -http://purl.obolibrary.org/obo/UBERON_0005311;mammary placode; -http://purl.obolibrary.org/obo/UBERON_0005312;primary ureteric bud; -http://purl.obolibrary.org/obo/UBERON_0005313;mammary duct terminal end bud; -http://purl.obolibrary.org/obo/UBERON_0005314;alveolar primary septum; -http://purl.obolibrary.org/obo/UBERON_0005315;alveolar secondary septum; -http://purl.obolibrary.org/obo/UBERON_0005316;endocardial endothelium;endocardium endothelium -http://purl.obolibrary.org/obo/UBERON_0005316;endocardial endothelium;endothelium of endocardium -http://purl.obolibrary.org/obo/UBERON_0005317;pulmonary artery endothelium;pulmonary artery endothelial tube -http://purl.obolibrary.org/obo/UBERON_0005319;mesonephric collecting duct; -http://purl.obolibrary.org/obo/UBERON_0005320;mesonephric juxtaglomerular apparatus; -http://purl.obolibrary.org/obo/UBERON_0005321;mesonephric smooth muscle tissue; -http://purl.obolibrary.org/obo/UBERON_0005322;mesonephric nephron;nephron of mesonephros -http://purl.obolibrary.org/obo/UBERON_0005323;mesonephric mesenchyme; -http://purl.obolibrary.org/obo/UBERON_0005324;mesonephric macula densa; -http://purl.obolibrary.org/obo/UBERON_0005325;mesonephric glomerulus; -http://purl.obolibrary.org/obo/UBERON_0005326;mesonephric glomerulus vasculature; -http://purl.obolibrary.org/obo/UBERON_0005327;mesonephric glomerular epithelium; -http://purl.obolibrary.org/obo/UBERON_0005328;mesonephric comma-shaped body; -http://purl.obolibrary.org/obo/UBERON_0005329;mesonephric nephron tubule;mesonephric renal tubule -http://purl.obolibrary.org/obo/UBERON_0005330;mesonephric nephron epithelium; -http://purl.obolibrary.org/obo/UBERON_0005331;mesonephric renal vesicle;mesonephric vesicle -http://purl.obolibrary.org/obo/UBERON_0005332;mesonephric S-shaped body; -http://purl.obolibrary.org/obo/UBERON_0005333;mammary bud;lactiferous gland bud -http://purl.obolibrary.org/obo/UBERON_0005333;mammary bud;mammary gland bud -http://purl.obolibrary.org/obo/UBERON_0005334;oral lamina propria;lamina propria of oral mucosa -http://purl.obolibrary.org/obo/UBERON_0005335;chorioallantoic membrane;chorioallantois -http://purl.obolibrary.org/obo/UBERON_0005336;capillary layer of choroid;capillary lamina of choroid -http://purl.obolibrary.org/obo/UBERON_0005336;capillary layer of choroid;capillary layer of choroid -http://purl.obolibrary.org/obo/UBERON_0005336;capillary layer of choroid;inner layer of choroid proper -http://purl.obolibrary.org/obo/UBERON_0005337;outflow tract of ventricle;heart ventricle outflow tract -http://purl.obolibrary.org/obo/UBERON_0005337;outflow tract of ventricle;outflow part of ventricle -http://purl.obolibrary.org/obo/UBERON_0005337;outflow tract of ventricle;ventricular outflow tract -http://purl.obolibrary.org/obo/UBERON_0005338;outflow tract aortic component; -http://purl.obolibrary.org/obo/UBERON_0005339;outflow tract pulmonary component; -http://purl.obolibrary.org/obo/UBERON_0005340;dorsal telencephalic commissure;dorsal commissure -http://purl.obolibrary.org/obo/UBERON_0005341;ventral commissure; -http://purl.obolibrary.org/obo/UBERON_0005342;malleus head;head of malleus -http://purl.obolibrary.org/obo/UBERON_0005343;cortical plate;cerebral cortex cortical plate -http://purl.obolibrary.org/obo/UBERON_0005343;cortical plate;future cortical layers II-VI -http://purl.obolibrary.org/obo/UBERON_0005343;cortical plate;neocortex cortical plate -http://purl.obolibrary.org/obo/UBERON_0005344;peritoneal vaginal process;processus vaginalis peritoneus -http://purl.obolibrary.org/obo/UBERON_0005344;peritoneal vaginal process;saccus vaginalis -http://purl.obolibrary.org/obo/UBERON_0005344;peritoneal vaginal process;vaginal process of peritoneum -http://purl.obolibrary.org/obo/UBERON_0005345;cerebellum vermis lobule VIIA;folium of vermis of cerebellum -http://purl.obolibrary.org/obo/UBERON_0005345;cerebellum vermis lobule VIIA;vermic lobule VIIA -http://purl.obolibrary.org/obo/UBERON_0005346;cerebellum vermis lobule VIIB;lobule VII B of vermis -http://purl.obolibrary.org/obo/UBERON_0005346;cerebellum vermis lobule VIIB;neuraxis tuber -http://purl.obolibrary.org/obo/UBERON_0005346;cerebellum vermis lobule VIIB;tuber of vermis of cerebellum -http://purl.obolibrary.org/obo/UBERON_0005346;cerebellum vermis lobule VIIB;vermic lobule VIIb -http://purl.obolibrary.org/obo/UBERON_0005347;copula pyramidis; -http://purl.obolibrary.org/obo/UBERON_0005348;ansiform lobule;ansiform lobule of cerebellum -http://purl.obolibrary.org/obo/UBERON_0005348;ansiform lobule;ansiform lobule of cerebellum [hVIIa] -http://purl.obolibrary.org/obo/UBERON_0005348;ansiform lobule;lobuli semilunares cerebelli -http://purl.obolibrary.org/obo/UBERON_0005348;ansiform lobule;lobulus ansiformis cerebelli -http://purl.obolibrary.org/obo/UBERON_0005348;ansiform lobule;lobulus ansiformis cerebelli [h vii a] -http://purl.obolibrary.org/obo/UBERON_0005348;ansiform lobule;semilunar lobules of cerebellum -http://purl.obolibrary.org/obo/UBERON_0005349;paramedian lobule;gracile lobule -http://purl.obolibrary.org/obo/UBERON_0005349;paramedian lobule;hemispheric lobule VIIBii -http://purl.obolibrary.org/obo/UBERON_0005349;paramedian lobule;lobule VIIIB (pyramis and biventral lobule, posterior part) -http://purl.obolibrary.org/obo/UBERON_0005349;paramedian lobule;lobulus gracilis -http://purl.obolibrary.org/obo/UBERON_0005349;paramedian lobule;lobulus paramedianus -http://purl.obolibrary.org/obo/UBERON_0005349;paramedian lobule;lobulus paramedianus [hVIIb] -http://purl.obolibrary.org/obo/UBERON_0005349;paramedian lobule;paramedian 1 (hVII) -http://purl.obolibrary.org/obo/UBERON_0005349;paramedian lobule;paramedian lobule [HVIIB] -http://purl.obolibrary.org/obo/UBERON_0005349;paramedian lobule;paramedian lobule [h vii b] -http://purl.obolibrary.org/obo/UBERON_0005349;paramedian lobule;paramedian lobule [hVIIIb] -http://purl.obolibrary.org/obo/UBERON_0005350;lobule simplex;hemispheric lobule VI -http://purl.obolibrary.org/obo/UBERON_0005350;lobule simplex;lobule h VI of larsell -http://purl.obolibrary.org/obo/UBERON_0005350;lobule simplex;lobulus quadrangularis pars caudalis/posterior -http://purl.obolibrary.org/obo/UBERON_0005350;lobule simplex;lobulus quadrangularis pars inferoposterior -http://purl.obolibrary.org/obo/UBERON_0005350;lobule simplex;lobulus quadrangularis posterior -http://purl.obolibrary.org/obo/UBERON_0005350;lobule simplex;lobulus quadrangularis posterior cerebelli [H VI] -http://purl.obolibrary.org/obo/UBERON_0005350;lobule simplex;lobulus simplex -http://purl.obolibrary.org/obo/UBERON_0005350;lobule simplex;lobulus simplex cerebelli [h vi et vi] -http://purl.obolibrary.org/obo/UBERON_0005350;lobule simplex;posterior crescentic lobule of cerebellum -http://purl.obolibrary.org/obo/UBERON_0005350;lobule simplex;semilunar lobule-1 (posterior) -http://purl.obolibrary.org/obo/UBERON_0005350;lobule simplex;simple lobule -http://purl.obolibrary.org/obo/UBERON_0005350;lobule simplex;simple lobule of cerebellum -http://purl.obolibrary.org/obo/UBERON_0005350;lobule simplex;simple lobule of cerebellum [h VI and VI] -http://purl.obolibrary.org/obo/UBERON_0005350;lobule simplex;simplex -http://purl.obolibrary.org/obo/UBERON_0005350;lobule simplex;simplex (hVI) -http://purl.obolibrary.org/obo/UBERON_0005350;lobule simplex;simplex lobule -http://purl.obolibrary.org/obo/UBERON_0005351;paraflocculus;cerebellar tonsil -http://purl.obolibrary.org/obo/UBERON_0005351;paraflocculus;neuraxis paraflocculus -http://purl.obolibrary.org/obo/UBERON_0005351;paraflocculus;parafloccular lobule of cerebellum -http://purl.obolibrary.org/obo/UBERON_0005351;paraflocculus;paraflocculus of cerebellum -http://purl.obolibrary.org/obo/UBERON_0005351;paraflocculus;tonsil (HXI) -http://purl.obolibrary.org/obo/UBERON_0005351;paraflocculus;tonsilla -http://purl.obolibrary.org/obo/UBERON_0005352;spermatic cord; -http://purl.obolibrary.org/obo/UBERON_0005353;spleen perifollicular zone; -http://purl.obolibrary.org/obo/UBERON_0005354;malleus processus brevis; -http://purl.obolibrary.org/obo/UBERON_0005355;malleus neck;neck of malleus -http://purl.obolibrary.org/obo/UBERON_0005356;Rathke's pouch;Rathke pouch -http://purl.obolibrary.org/obo/UBERON_0005356;Rathke's pouch;pouch of Rathke -http://purl.obolibrary.org/obo/UBERON_0005357;brain ependyma;ependyma of ventricular system of brain -http://purl.obolibrary.org/obo/UBERON_0005358;ventricle of nervous system;region of wall of ventricular system of neuraxis -http://purl.obolibrary.org/obo/UBERON_0005358;ventricle of nervous system;ventricular layer -http://purl.obolibrary.org/obo/UBERON_0005359;spinal cord ependyma;ependyma of central canal of spinal cord -http://purl.obolibrary.org/obo/UBERON_0005359;spinal cord ependyma;spinal cord ependymal layer -http://purl.obolibrary.org/obo/UBERON_0005360;inferior glossopharyngeal IX ganglion;extracraniale ganglion -http://purl.obolibrary.org/obo/UBERON_0005360;inferior glossopharyngeal IX ganglion;ganglion inferius (nervus glossopharygeus) -http://purl.obolibrary.org/obo/UBERON_0005360;inferior glossopharyngeal IX ganglion;ganglion inferius nervi glossopharyngei -http://purl.obolibrary.org/obo/UBERON_0005360;inferior glossopharyngeal IX ganglion;ganglion inferius nervus glossopharyngei -http://purl.obolibrary.org/obo/UBERON_0005360;inferior glossopharyngeal IX ganglion;ganglion of andersch -http://purl.obolibrary.org/obo/UBERON_0005360;inferior glossopharyngeal IX ganglion;ganglion petrosum -http://purl.obolibrary.org/obo/UBERON_0005360;inferior glossopharyngeal IX ganglion;glossopharyngeal IX inferior ganglion -http://purl.obolibrary.org/obo/UBERON_0005360;inferior glossopharyngeal IX ganglion;glossopharyngeal inferior ganglion -http://purl.obolibrary.org/obo/UBERON_0005360;inferior glossopharyngeal IX ganglion;glossopharyngeal nerve inferior ganglion -http://purl.obolibrary.org/obo/UBERON_0005360;inferior glossopharyngeal IX ganglion;glossopharyngeal nerve petrous ganglion -http://purl.obolibrary.org/obo/UBERON_0005360;inferior glossopharyngeal IX ganglion;inferior ganglion of glossopharyngeal nerve -http://purl.obolibrary.org/obo/UBERON_0005360;inferior glossopharyngeal IX ganglion;inferior glossopharyngeal ganglion -http://purl.obolibrary.org/obo/UBERON_0005360;inferior glossopharyngeal IX ganglion;inferior glossopharyngeal ganglion of the glossopharyngeal (IX) nerve -http://purl.obolibrary.org/obo/UBERON_0005360;inferior glossopharyngeal IX ganglion;ninth cranial nerve inferior ganglion -http://purl.obolibrary.org/obo/UBERON_0005360;inferior glossopharyngeal IX ganglion;petrosal ganglion -http://purl.obolibrary.org/obo/UBERON_0005360;inferior glossopharyngeal IX ganglion;petrous ganglion -http://purl.obolibrary.org/obo/UBERON_0005361;superior glossopharyngeal IX ganglion;Ehrenritter's ganglion -http://purl.obolibrary.org/obo/UBERON_0005361;superior glossopharyngeal IX ganglion;ganglion superius (nervus glossopharyngeus) -http://purl.obolibrary.org/obo/UBERON_0005361;superior glossopharyngeal IX ganglion;ganglion superius nervus glossopharyngei -http://purl.obolibrary.org/obo/UBERON_0005361;superior glossopharyngeal IX ganglion;glossopharyngeal nerve jugular ganglion -http://purl.obolibrary.org/obo/UBERON_0005361;superior glossopharyngeal IX ganglion;glossopharyngeal nerve superior ganglion -http://purl.obolibrary.org/obo/UBERON_0005361;superior glossopharyngeal IX ganglion;intracranial ganglion -http://purl.obolibrary.org/obo/UBERON_0005361;superior glossopharyngeal IX ganglion;ninth cranial nerve superior ganglion -http://purl.obolibrary.org/obo/UBERON_0005361;superior glossopharyngeal IX ganglion;superior ganglion of glossopharyngeal nerve -http://purl.obolibrary.org/obo/UBERON_0005361;superior glossopharyngeal IX ganglion;superior glossopharyngeal ganglia -http://purl.obolibrary.org/obo/UBERON_0005361;superior glossopharyngeal IX ganglion;superior glossopharyngeal ganglion -http://purl.obolibrary.org/obo/UBERON_0005361;superior glossopharyngeal IX ganglion;superior glossopharyngeal ganglion of the glossopharyngeal (IX) nerve -http://purl.obolibrary.org/obo/UBERON_0005362;vagus X ganglion;gX -http://purl.obolibrary.org/obo/UBERON_0005362;vagus X ganglion;ganglion of vagus nerve -http://purl.obolibrary.org/obo/UBERON_0005362;vagus X ganglion;right glossopharyngeal ganglion -http://purl.obolibrary.org/obo/UBERON_0005362;vagus X ganglion;vagal ganglion -http://purl.obolibrary.org/obo/UBERON_0005362;vagus X ganglion;vagus X -http://purl.obolibrary.org/obo/UBERON_0005362;vagus X ganglion;vagus ganglion -http://purl.obolibrary.org/obo/UBERON_0005362;vagus X ganglion;vagus neural ganglion -http://purl.obolibrary.org/obo/UBERON_0005363;inferior vagus X ganglion;ganglion inferius (nervus vagus) -http://purl.obolibrary.org/obo/UBERON_0005363;inferior vagus X ganglion;ganglion inferius nervi vagi -http://purl.obolibrary.org/obo/UBERON_0005363;inferior vagus X ganglion;ganglion inferius nervus vagi -http://purl.obolibrary.org/obo/UBERON_0005363;inferior vagus X ganglion;ganglion nodosum -http://purl.obolibrary.org/obo/UBERON_0005363;inferior vagus X ganglion;inferior ganglion of vagus -http://purl.obolibrary.org/obo/UBERON_0005363;inferior vagus X ganglion;inferior ganglion of vagus nerve -http://purl.obolibrary.org/obo/UBERON_0005363;inferior vagus X ganglion;inferior vagus X -http://purl.obolibrary.org/obo/UBERON_0005363;inferior vagus X ganglion;inferior vagus ganglion -http://purl.obolibrary.org/obo/UBERON_0005363;inferior vagus X ganglion;nodose ganglia -http://purl.obolibrary.org/obo/UBERON_0005363;inferior vagus X ganglion;nodose ganglion -http://purl.obolibrary.org/obo/UBERON_0005363;inferior vagus X ganglion;tenth cranial nerve nodose ganglion -http://purl.obolibrary.org/obo/UBERON_0005363;inferior vagus X ganglion;vagus X inferior ganglion -http://purl.obolibrary.org/obo/UBERON_0005363;inferior vagus X ganglion;vagus nerve inferior ganglion -http://purl.obolibrary.org/obo/UBERON_0005363;inferior vagus X ganglion;vagus nerve nodose ganglion -http://purl.obolibrary.org/obo/UBERON_0005364;superior vagus X ganglion;ganglion superius (nervus vagus) -http://purl.obolibrary.org/obo/UBERON_0005364;superior vagus X ganglion;ganglion superius nervus vagi -http://purl.obolibrary.org/obo/UBERON_0005364;superior vagus X ganglion;superior ganglion of vagus -http://purl.obolibrary.org/obo/UBERON_0005364;superior vagus X ganglion;superior ganglion of vagus nerve -http://purl.obolibrary.org/obo/UBERON_0005364;superior vagus X ganglion;superior vagus ganglion -http://purl.obolibrary.org/obo/UBERON_0005364;superior vagus X ganglion;tenth cranial nerve jugular ganglion -http://purl.obolibrary.org/obo/UBERON_0005364;superior vagus X ganglion;vagus nerve jugular ganglion -http://purl.obolibrary.org/obo/UBERON_0005364;superior vagus X ganglion;vagus nerve superior ganglion -http://purl.obolibrary.org/obo/UBERON_0005366;olfactory lobe; -http://purl.obolibrary.org/obo/UBERON_0005367;hippocampus granule cell layer; -http://purl.obolibrary.org/obo/UBERON_0005368;hippocampus molecular layer;hippocampal molecular layer -http://purl.obolibrary.org/obo/UBERON_0005368;hippocampus molecular layer;hippocampus stratum moleculare -http://purl.obolibrary.org/obo/UBERON_0005368;hippocampus molecular layer;molecular layer of hippocampus -http://purl.obolibrary.org/obo/UBERON_0005370;hippocampus stratum lacunosum;lacunar layer of hippocampus -http://purl.obolibrary.org/obo/UBERON_0005371;hippocampus stratum oriens;gyrus cuneus -http://purl.obolibrary.org/obo/UBERON_0005371;hippocampus stratum oriens;oriens layer of hippocampus -http://purl.obolibrary.org/obo/UBERON_0005371;hippocampus stratum oriens;oriens layer of the hippocampus -http://purl.obolibrary.org/obo/UBERON_0005371;hippocampus stratum oriens;polymorphic layer of hippocampus -http://purl.obolibrary.org/obo/UBERON_0005371;hippocampus stratum oriens;polymorphic layer of the hippocampus -http://purl.obolibrary.org/obo/UBERON_0005371;hippocampus stratum oriens;stratum oriens -http://purl.obolibrary.org/obo/UBERON_0005371;hippocampus stratum oriens;stratum oriens hippocampi -http://purl.obolibrary.org/obo/UBERON_0005372;hippocampus stratum radiatum;radiate layer of hippocampus -http://purl.obolibrary.org/obo/UBERON_0005372;hippocampus stratum radiatum;stratum radiatum -http://purl.obolibrary.org/obo/UBERON_0005372;hippocampus stratum radiatum;stratum radiatum hippocampi -http://purl.obolibrary.org/obo/UBERON_0005372;hippocampus stratum radiatum;stratum radiatum of the hippocampus -http://purl.obolibrary.org/obo/UBERON_0005373;spinal cord dorsal column;dorsal column -http://purl.obolibrary.org/obo/UBERON_0005373;spinal cord dorsal column;dorsal column of spinal cord -http://purl.obolibrary.org/obo/UBERON_0005373;spinal cord dorsal column;posterior column -http://purl.obolibrary.org/obo/UBERON_0005373;spinal cord dorsal column;spinal cord posterior column -http://purl.obolibrary.org/obo/UBERON_0005374;spinal cord lateral column; -http://purl.obolibrary.org/obo/UBERON_0005375;spinal cord ventral column;anterior column -http://purl.obolibrary.org/obo/UBERON_0005375;spinal cord ventral column;spinal cord anterior column -http://purl.obolibrary.org/obo/UBERON_0005375;spinal cord ventral column;ventral column -http://purl.obolibrary.org/obo/UBERON_0005376;olfactory bulb external plexiform layer;EPL -http://purl.obolibrary.org/obo/UBERON_0005376;olfactory bulb external plexiform layer;OB outer plexiform layer -http://purl.obolibrary.org/obo/UBERON_0005376;olfactory bulb external plexiform layer;external plexiform layer -http://purl.obolibrary.org/obo/UBERON_0005376;olfactory bulb external plexiform layer;external plexiform layer of the olfactory bulb -http://purl.obolibrary.org/obo/UBERON_0005376;olfactory bulb external plexiform layer;olfactory bulb main external plexiform layer -http://purl.obolibrary.org/obo/UBERON_0005377;olfactory bulb glomerular layer;glomerular layer -http://purl.obolibrary.org/obo/UBERON_0005377;olfactory bulb glomerular layer;glomerular layer of the olfactory bulb -http://purl.obolibrary.org/obo/UBERON_0005377;olfactory bulb glomerular layer;olfactory bulb main glomerulus -http://purl.obolibrary.org/obo/UBERON_0005377;olfactory bulb glomerular layer;stratum glomerulosum bulbi olfactorii -http://purl.obolibrary.org/obo/UBERON_0005378;olfactory bulb granule cell layer;accessory olfactory bulb granule cell layer -http://purl.obolibrary.org/obo/UBERON_0005378;olfactory bulb granule cell layer;granule cell layer -http://purl.obolibrary.org/obo/UBERON_0005378;olfactory bulb granule cell layer;granule layer of main olfactory bulb -http://purl.obolibrary.org/obo/UBERON_0005378;olfactory bulb granule cell layer;main olfactory bulb granule cell layer -http://purl.obolibrary.org/obo/UBERON_0005378;olfactory bulb granule cell layer;main olfactory bulb, granule layer -http://purl.obolibrary.org/obo/UBERON_0005378;olfactory bulb granule cell layer;olfactory bulb main granule cell layer -http://purl.obolibrary.org/obo/UBERON_0005379;olfactory bulb internal plexiform layer;internal plexiform layer -http://purl.obolibrary.org/obo/UBERON_0005380;olfactory bulb subependymal zone; -http://purl.obolibrary.org/obo/UBERON_0005381;dentate gyrus granule cell layer;DG granule cell layer -http://purl.obolibrary.org/obo/UBERON_0005381;dentate gyrus granule cell layer;dentate gyrus, granule cell layer -http://purl.obolibrary.org/obo/UBERON_0005381;dentate gyrus granule cell layer;granular layer of dentate gyrus -http://purl.obolibrary.org/obo/UBERON_0005381;dentate gyrus granule cell layer;granular layer of the dentate gyrus -http://purl.obolibrary.org/obo/UBERON_0005381;dentate gyrus granule cell layer;stratum granulare gyri dentati -http://purl.obolibrary.org/obo/UBERON_0005382;dorsal striatum;striatum dorsal region -http://purl.obolibrary.org/obo/UBERON_0005383;caudate-putamen;caudate putamen -http://purl.obolibrary.org/obo/UBERON_0005383;caudate-putamen;caudateputamen -http://purl.obolibrary.org/obo/UBERON_0005383;caudate-putamen;caudoputamen -http://purl.obolibrary.org/obo/UBERON_0005384;nasal cavity epithelium;nasal epithelium -http://purl.obolibrary.org/obo/UBERON_0005384;nasal cavity epithelium;nasal mucosa -http://purl.obolibrary.org/obo/UBERON_0005385;nasal cavity respiratory epithelium; -http://purl.obolibrary.org/obo/UBERON_0005386;olfactory segment of nasal mucosa;olfactory area of nasal mucosa -http://purl.obolibrary.org/obo/UBERON_0005386;olfactory segment of nasal mucosa;olfactory mucosa -http://purl.obolibrary.org/obo/UBERON_0005386;olfactory segment of nasal mucosa;olfactory part of nasal mucosa -http://purl.obolibrary.org/obo/UBERON_0005386;olfactory segment of nasal mucosa;olfactory zone of nasal mucosa -http://purl.obolibrary.org/obo/UBERON_0005386;olfactory segment of nasal mucosa;pars olfactoria tunicae mucosae nasi -http://purl.obolibrary.org/obo/UBERON_0005387;olfactory glomerulus;glomerulus of olfactory bulb -http://purl.obolibrary.org/obo/UBERON_0005387;olfactory glomerulus;olfactory bulb glomerulus -http://purl.obolibrary.org/obo/UBERON_0005387;olfactory glomerulus;olfactory glomeruli -http://purl.obolibrary.org/obo/UBERON_0005388;photoreceptor array;light-sensitive tissue -http://purl.obolibrary.org/obo/UBERON_0005389;transparent eye structure; -http://purl.obolibrary.org/obo/UBERON_0005390;cortical layer I;cerebral cortex, layer 1 -http://purl.obolibrary.org/obo/UBERON_0005390;cortical layer I;lamina molecularis isocorticis [lamina I] -http://purl.obolibrary.org/obo/UBERON_0005390;cortical layer I;layer 1 of neocortex -http://purl.obolibrary.org/obo/UBERON_0005390;cortical layer I;layer I of neocortex -http://purl.obolibrary.org/obo/UBERON_0005390;cortical layer I;molecular layer -http://purl.obolibrary.org/obo/UBERON_0005390;cortical layer I;molecular layer of cerebral cortex -http://purl.obolibrary.org/obo/UBERON_0005390;cortical layer I;molecular layer of isocortex [layer i] -http://purl.obolibrary.org/obo/UBERON_0005390;cortical layer I;molecular layer of neocortex -http://purl.obolibrary.org/obo/UBERON_0005390;cortical layer I;neocortex layer 1 -http://purl.obolibrary.org/obo/UBERON_0005390;cortical layer I;neocortex layer I -http://purl.obolibrary.org/obo/UBERON_0005390;cortical layer I;neocortex molecular layer -http://purl.obolibrary.org/obo/UBERON_0005390;cortical layer I;neocortex plexiform layer -http://purl.obolibrary.org/obo/UBERON_0005390;cortical layer I;plexiform layer -http://purl.obolibrary.org/obo/UBERON_0005390;cortical layer I;plexiform layer of neocortex -http://purl.obolibrary.org/obo/UBERON_0005391;cortical layer II;EGL -http://purl.obolibrary.org/obo/UBERON_0005391;cortical layer II;cerebral cortex, layer 2 -http://purl.obolibrary.org/obo/UBERON_0005391;cortical layer II;external granular cell layer -http://purl.obolibrary.org/obo/UBERON_0005391;cortical layer II;external granular layer -http://purl.obolibrary.org/obo/UBERON_0005391;cortical layer II;external granular layer of cerebral cortex -http://purl.obolibrary.org/obo/UBERON_0005391;cortical layer II;external granular layer of isocortex [layer II] -http://purl.obolibrary.org/obo/UBERON_0005391;cortical layer II;external granular layer of neocortex -http://purl.obolibrary.org/obo/UBERON_0005391;cortical layer II;external granule cell layer -http://purl.obolibrary.org/obo/UBERON_0005391;cortical layer II;external granule cell layer of neocortex -http://purl.obolibrary.org/obo/UBERON_0005391;cortical layer II;granule cell layer of cerebral cortex -http://purl.obolibrary.org/obo/UBERON_0005391;cortical layer II;lamina granularis externa isocorticis [lamina ii] -http://purl.obolibrary.org/obo/UBERON_0005391;cortical layer II;layer II of neocortex -http://purl.obolibrary.org/obo/UBERON_0005391;cortical layer II;neocortex layer 2 -http://purl.obolibrary.org/obo/UBERON_0005391;cortical layer II;neocortex layer II -http://purl.obolibrary.org/obo/UBERON_0005392;cortical layer III;cerebral cortex, layer 3 -http://purl.obolibrary.org/obo/UBERON_0005392;cortical layer III;external pyramidal cell layer -http://purl.obolibrary.org/obo/UBERON_0005392;cortical layer III;external pyramidal cell layer of neocortex -http://purl.obolibrary.org/obo/UBERON_0005392;cortical layer III;external pyramidal layer of cerebral cortex -http://purl.obolibrary.org/obo/UBERON_0005392;cortical layer III;external pyramidal layer of isocortex [layer iii] -http://purl.obolibrary.org/obo/UBERON_0005392;cortical layer III;external pyramidal layer of neocortex -http://purl.obolibrary.org/obo/UBERON_0005392;cortical layer III;isocortex, deep supragranular pyramidal layer -http://purl.obolibrary.org/obo/UBERON_0005392;cortical layer III;lamina pyramidalis externa -http://purl.obolibrary.org/obo/UBERON_0005392;cortical layer III;lamina pyramidalis externa isocorticis [lamina iii] -http://purl.obolibrary.org/obo/UBERON_0005392;cortical layer III;layer 3 of neocortex -http://purl.obolibrary.org/obo/UBERON_0005392;cortical layer III;layer III of neocortex -http://purl.obolibrary.org/obo/UBERON_0005392;cortical layer III;layer of medium-sized and large pyramidal cells -http://purl.obolibrary.org/obo/UBERON_0005392;cortical layer III;neocortex external pyramidal cell layer -http://purl.obolibrary.org/obo/UBERON_0005392;cortical layer III;neocortex layer 3 -http://purl.obolibrary.org/obo/UBERON_0005392;cortical layer III;neocortex layer III -http://purl.obolibrary.org/obo/UBERON_0005392;cortical layer III;pyramidal layer -http://purl.obolibrary.org/obo/UBERON_0005393;cortical layer IV;cerebral cortex, layer 4 -http://purl.obolibrary.org/obo/UBERON_0005393;cortical layer IV;internal granular layer -http://purl.obolibrary.org/obo/UBERON_0005393;cortical layer IV;internal granular layer of isocortex [layer iv] -http://purl.obolibrary.org/obo/UBERON_0005393;cortical layer IV;internal granular layer of neocortex -http://purl.obolibrary.org/obo/UBERON_0005393;cortical layer IV;internal granule cell layer of neocortex -http://purl.obolibrary.org/obo/UBERON_0005393;cortical layer IV;lamina granularis interna isocorticis [lamina iv] -http://purl.obolibrary.org/obo/UBERON_0005393;cortical layer IV;layer 4 of neocortex -http://purl.obolibrary.org/obo/UBERON_0005393;cortical layer IV;layer IV of neocortex -http://purl.obolibrary.org/obo/UBERON_0005393;cortical layer IV;neocortex internal granule cell layer -http://purl.obolibrary.org/obo/UBERON_0005393;cortical layer IV;neocortex layer 4 -http://purl.obolibrary.org/obo/UBERON_0005393;cortical layer IV;neocortex layer IV -http://purl.obolibrary.org/obo/UBERON_0005393;cortical layer IV;neocortical internal granule cell layer -http://purl.obolibrary.org/obo/UBERON_0005393;cortical layer IV;neocortical layer IV -http://purl.obolibrary.org/obo/UBERON_0005394;cortical layer V;betz' cells -http://purl.obolibrary.org/obo/UBERON_0005394;cortical layer V;cerebral cortex, layer 5 -http://purl.obolibrary.org/obo/UBERON_0005394;cortical layer V;deep layer of large pyramidal cells -http://purl.obolibrary.org/obo/UBERON_0005394;cortical layer V;ganglionic layer -http://purl.obolibrary.org/obo/UBERON_0005394;cortical layer V;ganglionic layer of cerebral cortex -http://purl.obolibrary.org/obo/UBERON_0005394;cortical layer V;inner layer of large pyramidal cells -http://purl.obolibrary.org/obo/UBERON_0005394;cortical layer V;internal pyramidal cell layer of neocortex -http://purl.obolibrary.org/obo/UBERON_0005394;cortical layer V;internal pyramidal layer -http://purl.obolibrary.org/obo/UBERON_0005394;cortical layer V;internal pyramidal layer of isocortex [layer v] -http://purl.obolibrary.org/obo/UBERON_0005394;cortical layer V;internal pyramidal layer of neocortex -http://purl.obolibrary.org/obo/UBERON_0005394;cortical layer V;isocortex, infragranular pyramidal layer -http://purl.obolibrary.org/obo/UBERON_0005394;cortical layer V;lamina ganglionaris -http://purl.obolibrary.org/obo/UBERON_0005394;cortical layer V;lamina pyramidalis interna -http://purl.obolibrary.org/obo/UBERON_0005394;cortical layer V;lamina pyramidalis interna isocorticis [lamina v] -http://purl.obolibrary.org/obo/UBERON_0005394;cortical layer V;layer 5 of neocortex -http://purl.obolibrary.org/obo/UBERON_0005394;cortical layer V;layer V of neocortex -http://purl.obolibrary.org/obo/UBERON_0005394;cortical layer V;neocortex internal pyramidal cell layer -http://purl.obolibrary.org/obo/UBERON_0005394;cortical layer V;neocortex layer 5 -http://purl.obolibrary.org/obo/UBERON_0005394;cortical layer V;neocortex layer V -http://purl.obolibrary.org/obo/UBERON_0005394;cortical layer V;neocortical layer 5 -http://purl.obolibrary.org/obo/UBERON_0005394;cortical layer V;neocortical layer V -http://purl.obolibrary.org/obo/UBERON_0005395;cortical layer VI;cerebral cortex, layer 6 -http://purl.obolibrary.org/obo/UBERON_0005395;cortical layer VI;fusiform layer -http://purl.obolibrary.org/obo/UBERON_0005395;cortical layer VI;isocortex, polymorph layer -http://purl.obolibrary.org/obo/UBERON_0005395;cortical layer VI;lamina multiformis -http://purl.obolibrary.org/obo/UBERON_0005395;cortical layer VI;lamina multiformis isocorticis [lamina vi] -http://purl.obolibrary.org/obo/UBERON_0005395;cortical layer VI;layer VI of neocortex -http://purl.obolibrary.org/obo/UBERON_0005395;cortical layer VI;multiform layer -http://purl.obolibrary.org/obo/UBERON_0005395;cortical layer VI;multiform layer of isocortex [layer vi] -http://purl.obolibrary.org/obo/UBERON_0005395;cortical layer VI;multiform layer of neocortex -http://purl.obolibrary.org/obo/UBERON_0005395;cortical layer VI;neocortex layer 6 -http://purl.obolibrary.org/obo/UBERON_0005395;cortical layer VI;neocortex layer VI -http://purl.obolibrary.org/obo/UBERON_0005395;cortical layer VI;neocortex multiform layer -http://purl.obolibrary.org/obo/UBERON_0005395;cortical layer VI;neocortical layer 6 -http://purl.obolibrary.org/obo/UBERON_0005395;cortical layer VI;neocortical layer VI -http://purl.obolibrary.org/obo/UBERON_0005395;cortical layer VI;pleiomorphic layer of neocortex -http://purl.obolibrary.org/obo/UBERON_0005395;cortical layer VI;spindle cell layer -http://purl.obolibrary.org/obo/UBERON_0005396;carotid artery segment;carotid -http://purl.obolibrary.org/obo/UBERON_0005396;carotid artery segment;carotid artery -http://purl.obolibrary.org/obo/UBERON_0005396;carotid artery segment;subdivision of common carotid artery -http://purl.obolibrary.org/obo/UBERON_0005397;brain arachnoid mater;arachnoidea mater cranialis -http://purl.obolibrary.org/obo/UBERON_0005397;brain arachnoid mater;arachnoidea mater encephali -http://purl.obolibrary.org/obo/UBERON_0005397;brain arachnoid mater;brain arachnoid matter -http://purl.obolibrary.org/obo/UBERON_0005397;brain arachnoid mater;cranial arachnoid mater -http://purl.obolibrary.org/obo/UBERON_0005398;female reproductive gland; -http://purl.obolibrary.org/obo/UBERON_0005399;male reproductive gland;accessory sex gland -http://purl.obolibrary.org/obo/UBERON_0005400;telencephalon arachnoid mater;telencephalon arachnoid matter -http://purl.obolibrary.org/obo/UBERON_0005401;cerebral hemisphere gray matter;cerebral gray matter -http://purl.obolibrary.org/obo/UBERON_0005401;cerebral hemisphere gray matter;cerebral grey matter -http://purl.obolibrary.org/obo/UBERON_0005401;cerebral hemisphere gray matter;cerebral hemisphere grey matter -http://purl.obolibrary.org/obo/UBERON_0005402;philtrum;lip philtrum -http://purl.obolibrary.org/obo/UBERON_0005403;ventral striatum;striatum ventral region -http://purl.obolibrary.org/obo/UBERON_0005403;ventral striatum;striatum ventrale -http://purl.obolibrary.org/obo/UBERON_0005404;frontonasal suture;frontonasal suture of skull -http://purl.obolibrary.org/obo/UBERON_0005405;pararenal fat;pararenal fascia -http://purl.obolibrary.org/obo/UBERON_0005406;perirenal fat;perirenal fascia -http://purl.obolibrary.org/obo/UBERON_0005407;sublingual ganglion; -http://purl.obolibrary.org/obo/UBERON_0005408;circumventricular organ;CVO -http://purl.obolibrary.org/obo/UBERON_0005408;circumventricular organ;circumventricular organ -http://purl.obolibrary.org/obo/UBERON_0005408;circumventricular organ;circumventricular organ of neuraxis -http://purl.obolibrary.org/obo/UBERON_0005409;alimentary part of gastrointestinal system;GI tract -http://purl.obolibrary.org/obo/UBERON_0005409;alimentary part of gastrointestinal system;alimentary system -http://purl.obolibrary.org/obo/UBERON_0005409;alimentary part of gastrointestinal system;alimentary tract -http://purl.obolibrary.org/obo/UBERON_0005409;alimentary part of gastrointestinal system;gastro-intestinal system -http://purl.obolibrary.org/obo/UBERON_0005409;alimentary part of gastrointestinal system;gastroenterological system -http://purl.obolibrary.org/obo/UBERON_0005409;alimentary part of gastrointestinal system;gastrointestinal (GI) tract -http://purl.obolibrary.org/obo/UBERON_0005409;alimentary part of gastrointestinal system;gastrointestinal system -http://purl.obolibrary.org/obo/UBERON_0005409;alimentary part of gastrointestinal system;gastrointestinal tract -http://purl.obolibrary.org/obo/UBERON_0005410;cartilaginous otic capsule;auditory capsule -http://purl.obolibrary.org/obo/UBERON_0005410;cartilaginous otic capsule;otic capsule cartilage element -http://purl.obolibrary.org/obo/UBERON_0005411;bony otic capsule;otic capsule bone -http://purl.obolibrary.org/obo/UBERON_0005412;optic fissure;choroid fissure - optic fissure -http://purl.obolibrary.org/obo/UBERON_0005412;optic fissure;optic fissures -http://purl.obolibrary.org/obo/UBERON_0005412;optic fissure;optic stalk fissure -http://purl.obolibrary.org/obo/UBERON_0005413;spinocerebellar tract; -http://purl.obolibrary.org/obo/UBERON_0005414;zone of polarizing activity;ZPA -http://purl.obolibrary.org/obo/UBERON_0005415;zone of polarizing activity of pectoral appendage;anterior ZPA -http://purl.obolibrary.org/obo/UBERON_0005415;zone of polarizing activity of pectoral appendage;fore ZPA -http://purl.obolibrary.org/obo/UBERON_0005415;zone of polarizing activity of pectoral appendage;pectoral ZPA -http://purl.obolibrary.org/obo/UBERON_0005416;zone of polarizing activity of pelvic appendage;hind ZPA -http://purl.obolibrary.org/obo/UBERON_0005416;zone of polarizing activity of pelvic appendage;pelvic ZPA -http://purl.obolibrary.org/obo/UBERON_0005416;zone of polarizing activity of pelvic appendage;posterior ZPA -http://purl.obolibrary.org/obo/UBERON_0005417;forelimb bud;anterior limb bud -http://purl.obolibrary.org/obo/UBERON_0005417;forelimb bud;limb bud - forelimb -http://purl.obolibrary.org/obo/UBERON_0005417;forelimb bud;upper limb bud -http://purl.obolibrary.org/obo/UBERON_0005418;hindlimb bud;hind limb bud -http://purl.obolibrary.org/obo/UBERON_0005418;hindlimb bud;posterior limb bud -http://purl.obolibrary.org/obo/UBERON_0005419;pectoral appendage bud;forelimb - pectoral fin bud -http://purl.obolibrary.org/obo/UBERON_0005420;pelvic appendage bud;hindlimb/pelvic fin bud -http://purl.obolibrary.org/obo/UBERON_0005421;pectoral appendage apical ectodermal ridge; -http://purl.obolibrary.org/obo/UBERON_0005422;pelvic appendage apical ectodermal ridge; -http://purl.obolibrary.org/obo/UBERON_0005423;developing anatomical structure;developing structure -http://purl.obolibrary.org/obo/UBERON_0005423;developing anatomical structure;developmental structure -http://purl.obolibrary.org/obo/UBERON_0005423;developing anatomical structure;developmental tissue -http://purl.obolibrary.org/obo/UBERON_0005424;presumptive retinal pigmented epithelium;future RPE -http://purl.obolibrary.org/obo/UBERON_0005424;presumptive retinal pigmented epithelium;future retinal pigmented epithelium -http://purl.obolibrary.org/obo/UBERON_0005424;presumptive retinal pigmented epithelium;optic cup outer layer -http://purl.obolibrary.org/obo/UBERON_0005424;presumptive retinal pigmented epithelium;outer layer optic cup -http://purl.obolibrary.org/obo/UBERON_0005424;presumptive retinal pigmented epithelium;presumptive pigmented epithelia -http://purl.obolibrary.org/obo/UBERON_0005425;presumptive neural retina;future neural retina -http://purl.obolibrary.org/obo/UBERON_0005425;presumptive neural retina;future retinal neural layer -http://purl.obolibrary.org/obo/UBERON_0005425;presumptive neural retina;inner layer optic cup -http://purl.obolibrary.org/obo/UBERON_0005425;presumptive neural retina;optic cup inner layer -http://purl.obolibrary.org/obo/UBERON_0005425;presumptive neural retina;presumptive retinas -http://purl.obolibrary.org/obo/UBERON_0005426;lens vesicle; -http://purl.obolibrary.org/obo/UBERON_0005427;corneal primordium; -http://purl.obolibrary.org/obo/UBERON_0005428;vagal neural crest;VNC -http://purl.obolibrary.org/obo/UBERON_0005429;dorsal pancreatic duct;Santorini's duct -http://purl.obolibrary.org/obo/UBERON_0005429;dorsal pancreatic duct;accessory pancreatic duct -http://purl.obolibrary.org/obo/UBERON_0005429;dorsal pancreatic duct;duct of Santorini -http://purl.obolibrary.org/obo/UBERON_0005430;ansa cervicalis;ansa cervicalis -http://purl.obolibrary.org/obo/UBERON_0005431;anterior spinal artery;anterior medial spinal artery -http://purl.obolibrary.org/obo/UBERON_0005431;anterior spinal artery;ventral spinal artery -http://purl.obolibrary.org/obo/UBERON_0005432;aortic sac;saccus aorticus -http://purl.obolibrary.org/obo/UBERON_0005434;cervical region;cervical region -http://purl.obolibrary.org/obo/UBERON_0005434;cervical region;neck subdivision -http://purl.obolibrary.org/obo/UBERON_0005434;cervical region;region of neck -http://purl.obolibrary.org/obo/UBERON_0005434;cervical region;subdivision of neck -http://purl.obolibrary.org/obo/UBERON_0005435;upper part of cisterna chyli;atypical confluence of lymph trunks -http://purl.obolibrary.org/obo/UBERON_0005435;upper part of cisterna chyli;chyle cistern -http://purl.obolibrary.org/obo/UBERON_0005435;upper part of cisterna chyli;cistern of Pecquet -http://purl.obolibrary.org/obo/UBERON_0005435;upper part of cisterna chyli;cisterna chyli -http://purl.obolibrary.org/obo/UBERON_0005436;common hepatic artery; -http://purl.obolibrary.org/obo/UBERON_0005437;conus medullaris;medullary cone -http://purl.obolibrary.org/obo/UBERON_0005438;coronary sinus;sinus coronarius -http://purl.obolibrary.org/obo/UBERON_0005439;definitive endoderm;embryonic endoderm -http://purl.obolibrary.org/obo/UBERON_0005440;ductus arteriosus;ductus Botallo -http://purl.obolibrary.org/obo/UBERON_0005441;external intercostal muscle;intercostales externus -http://purl.obolibrary.org/obo/UBERON_0005442;abdominal external oblique muscle;abdominal external oblique muscle -http://purl.obolibrary.org/obo/UBERON_0005442;abdominal external oblique muscle;external abdominal oblique muscle -http://purl.obolibrary.org/obo/UBERON_0005442;abdominal external oblique muscle;external oblique -http://purl.obolibrary.org/obo/UBERON_0005442;abdominal external oblique muscle;external oblique muscle -http://purl.obolibrary.org/obo/UBERON_0005442;abdominal external oblique muscle;obliquus externus abdominis -http://purl.obolibrary.org/obo/UBERON_0005443;filum terminale;filum terminale segment of pia mater -http://purl.obolibrary.org/obo/UBERON_0005443;filum terminale;pars pialis fili terminalis -http://purl.obolibrary.org/obo/UBERON_0005443;filum terminale;terminal filum -http://purl.obolibrary.org/obo/UBERON_0005445;segment of pes;foot subdivision -http://purl.obolibrary.org/obo/UBERON_0005445;segment of pes;regio pedis -http://purl.obolibrary.org/obo/UBERON_0005445;segment of pes;segment of foot -http://purl.obolibrary.org/obo/UBERON_0005445;segment of pes;subdivision of foot -http://purl.obolibrary.org/obo/UBERON_0005446;foramen rotundum; -http://purl.obolibrary.org/obo/UBERON_0005448;greater omentum; -http://purl.obolibrary.org/obo/UBERON_0005449;greater sac;peritoneal cavity greater sac -http://purl.obolibrary.org/obo/UBERON_0005450;greater sac cavity;cavity of greater sac -http://purl.obolibrary.org/obo/UBERON_0005450;greater sac cavity;cavum peritonei -http://purl.obolibrary.org/obo/UBERON_0005450;greater sac cavity;greater peritoneal cavity -http://purl.obolibrary.org/obo/UBERON_0005450;greater sac cavity;greater sac lumen -http://purl.obolibrary.org/obo/UBERON_0005451;segment of manus;hand subdivision -http://purl.obolibrary.org/obo/UBERON_0005451;segment of manus;regio manus -http://purl.obolibrary.org/obo/UBERON_0005451;segment of manus;segment of hand -http://purl.obolibrary.org/obo/UBERON_0005451;segment of manus;subdivision of hand -http://purl.obolibrary.org/obo/UBERON_0005452;hepatic cord;hepatic lamina -http://purl.obolibrary.org/obo/UBERON_0005452;hepatic cord;hepatic laminae -http://purl.obolibrary.org/obo/UBERON_0005452;hepatic cord;lamina hepatica -http://purl.obolibrary.org/obo/UBERON_0005452;hepatic cord;liver cell plate -http://purl.obolibrary.org/obo/UBERON_0005453;inferior mesenteric ganglion;ganglion mesentericum inferius -http://purl.obolibrary.org/obo/UBERON_0005454;abdominal internal oblique muscle;abdominal internal oblique muscle -http://purl.obolibrary.org/obo/UBERON_0005454;abdominal internal oblique muscle;internal oblique -http://purl.obolibrary.org/obo/UBERON_0005454;abdominal internal oblique muscle;obliquus internus abdominis -http://purl.obolibrary.org/obo/UBERON_0005454;abdominal internal oblique muscle;obliquus internus abdominis muscle -http://purl.obolibrary.org/obo/UBERON_0005455;interventricular groove;interventricular sulcus -http://purl.obolibrary.org/obo/UBERON_0005456;jugular foramen;Posterior lacerate foramen -http://purl.obolibrary.org/obo/UBERON_0005457;left thymus lobe;left lobe of thymus -http://purl.obolibrary.org/obo/UBERON_0005457;left thymus lobe;left thymic lobe -http://purl.obolibrary.org/obo/UBERON_0005458;left umbilical artery;embryonic left umbilical artery -http://purl.obolibrary.org/obo/UBERON_0005459;left umbilical vein; -http://purl.obolibrary.org/obo/UBERON_0005460;left vitelline vein; -http://purl.obolibrary.org/obo/UBERON_0005461;levator scapulae muscle;levator scapulae -http://purl.obolibrary.org/obo/UBERON_0005462;lower back;abdominal back -http://purl.obolibrary.org/obo/UBERON_0005462;lower back;back of abdomen -http://purl.obolibrary.org/obo/UBERON_0005462;lower back;dorsum of abdomen -http://purl.obolibrary.org/obo/UBERON_0005462;lower back;loin -http://purl.obolibrary.org/obo/UBERON_0005462;lower back;lombus -http://purl.obolibrary.org/obo/UBERON_0005462;lower back;lower back -http://purl.obolibrary.org/obo/UBERON_0005462;lower back;lumbar part of back -http://purl.obolibrary.org/obo/UBERON_0005462;lower back;lumbar region -http://purl.obolibrary.org/obo/UBERON_0005462;lower back;lumbar region of back -http://purl.obolibrary.org/obo/UBERON_0005462;lower back;lumbos -http://purl.obolibrary.org/obo/UBERON_0005462;lower back;posterior part of abdomen -http://purl.obolibrary.org/obo/UBERON_0005462;lower back;regio lumbalis -http://purl.obolibrary.org/obo/UBERON_0005463;subcapsular sinus of lymph node;lymph node subcortical sinus -http://purl.obolibrary.org/obo/UBERON_0005464;median sacral artery;Middle sacral artery -http://purl.obolibrary.org/obo/UBERON_0005465;obturator nerve; -http://purl.obolibrary.org/obo/UBERON_0005467;platysma;platysma muscle -http://purl.obolibrary.org/obo/UBERON_0005469;right thymus lobe;right lobe of thymus -http://purl.obolibrary.org/obo/UBERON_0005469;right thymus lobe;right thymic lobe -http://purl.obolibrary.org/obo/UBERON_0005470;right umbilical artery;embryonic right umbilical artery -http://purl.obolibrary.org/obo/UBERON_0005471;right umbilical vein; -http://purl.obolibrary.org/obo/UBERON_0005472;right vitelline vein; -http://purl.obolibrary.org/obo/UBERON_0005473;sacral region;back of pelvis -http://purl.obolibrary.org/obo/UBERON_0005473;sacral region;pelvic back -http://purl.obolibrary.org/obo/UBERON_0005473;sacral region;posterior part of pelvis -http://purl.obolibrary.org/obo/UBERON_0005473;sacral region;regio sacralis -http://purl.obolibrary.org/obo/UBERON_0005473;sacral region;sacral part of pelvis -http://purl.obolibrary.org/obo/UBERON_0005475;sigmoid sinus; -http://purl.obolibrary.org/obo/UBERON_0005476;spinal nerve trunk;spinal nerve (trunk) -http://purl.obolibrary.org/obo/UBERON_0005476;spinal nerve trunk;spinal neural trunk -http://purl.obolibrary.org/obo/UBERON_0005476;spinal nerve trunk;trunk of spinal nerve -http://purl.obolibrary.org/obo/UBERON_0005477;stomach fundus epithelium;epithelium of fundus of stomach -http://purl.obolibrary.org/obo/UBERON_0005477;stomach fundus epithelium;gastric epithelium of fundus -http://purl.obolibrary.org/obo/UBERON_0005477;stomach fundus epithelium;gastric fundus epithelium -http://purl.obolibrary.org/obo/UBERON_0005478;sulcus limitans of neural tube;neural tube lateral wall sulcus limitans -http://purl.obolibrary.org/obo/UBERON_0005479;superior mesenteric ganglion;ganglion mesentericum superius -http://purl.obolibrary.org/obo/UBERON_0005479;superior mesenteric ganglion;superior mesenteric ganglia -http://purl.obolibrary.org/obo/UBERON_0005480;superior orbital fissure; -http://purl.obolibrary.org/obo/UBERON_0005481;tentorial sinus; -http://purl.obolibrary.org/obo/UBERON_0005483;thymus lobe;lateral lobe of thymus -http://purl.obolibrary.org/obo/UBERON_0005483;thymus lobe;lobe of thymus -http://purl.obolibrary.org/obo/UBERON_0005484;tricuspid valve leaflet;leaflet of tricuspid valve -http://purl.obolibrary.org/obo/UBERON_0005484;tricuspid valve leaflet;tricuspid valve leaflet -http://purl.obolibrary.org/obo/UBERON_0005484;tricuspid valve leaflet;tricuspid valve leaflets -http://purl.obolibrary.org/obo/UBERON_0005484;tricuspid valve leaflet;tricuspid valvular leaflet -http://purl.obolibrary.org/obo/UBERON_0005485;valve of inferior vena cava;eustachean valve -http://purl.obolibrary.org/obo/UBERON_0005485;valve of inferior vena cava;eustachian valve -http://purl.obolibrary.org/obo/UBERON_0005485;valve of inferior vena cava;inferior vena cava valve -http://purl.obolibrary.org/obo/UBERON_0005486;venous dural sinus;cranial dural venous sinus -http://purl.obolibrary.org/obo/UBERON_0005486;venous dural sinus;dural sinus -http://purl.obolibrary.org/obo/UBERON_0005486;venous dural sinus;dural vein -http://purl.obolibrary.org/obo/UBERON_0005486;venous dural sinus;dural venous sinus -http://purl.obolibrary.org/obo/UBERON_0005486;venous dural sinus;s. durae matris -http://purl.obolibrary.org/obo/UBERON_0005486;venous dural sinus;venous dural -http://purl.obolibrary.org/obo/UBERON_0005486;venous dural sinus;venous dural sinus -http://purl.obolibrary.org/obo/UBERON_0005487;vitelline vein;embryonic vitelline vein -http://purl.obolibrary.org/obo/UBERON_0005487;vitelline vein;vascular vitelline network -http://purl.obolibrary.org/obo/UBERON_0005487;vitelline vein;vena vitellina -http://purl.obolibrary.org/obo/UBERON_0005488;superior mesenteric plexus;plexus mesentericus superior -http://purl.obolibrary.org/obo/UBERON_0005488;superior mesenteric plexus;superior mesenteric nerve plexus -http://purl.obolibrary.org/obo/UBERON_0005489;anterior interventricular sulcus;anterior interventricular groove -http://purl.obolibrary.org/obo/UBERON_0005490;posterior interventricular sulcus;diaphragmatic interventricular groove -http://purl.obolibrary.org/obo/UBERON_0005490;posterior interventricular sulcus;inferior interventricular groove -http://purl.obolibrary.org/obo/UBERON_0005490;posterior interventricular sulcus;posterior interventricular groove -http://purl.obolibrary.org/obo/UBERON_0005491;glossopharyngeal neural crest; -http://purl.obolibrary.org/obo/UBERON_0005492;hyaloid vessel;hyaloid blood vessels -http://purl.obolibrary.org/obo/UBERON_0005492;hyaloid vessel;hyaloid vessels -http://purl.obolibrary.org/obo/UBERON_0005493;hyoid muscle;hyoid muscles -http://purl.obolibrary.org/obo/UBERON_0005494;intermediate mesenchyme; -http://purl.obolibrary.org/obo/UBERON_0005495;midbrain lateral wall;lateral wall midbrain -http://purl.obolibrary.org/obo/UBERON_0005495;midbrain lateral wall;lateral wall midbrain region -http://purl.obolibrary.org/obo/UBERON_0005496;neural tube lateral wall;lateral wall neural tube -http://purl.obolibrary.org/obo/UBERON_0005497;non-neural ectoderm;non neural ectoderm -http://purl.obolibrary.org/obo/UBERON_0005498;primitive heart tube;primitive heart tube -http://purl.obolibrary.org/obo/UBERON_0005499;rhombomere 1;r1 -http://purl.obolibrary.org/obo/UBERON_0005500;rhombomere floor plate;floor plate hindbrain -http://purl.obolibrary.org/obo/UBERON_0005500;rhombomere floor plate;floor plate rhombomere region -http://purl.obolibrary.org/obo/UBERON_0005500;rhombomere floor plate;rhombencephalon floor plate -http://purl.obolibrary.org/obo/UBERON_0005501;rhombomere lateral wall; -http://purl.obolibrary.org/obo/UBERON_0005502;rhombomere roof plate;roof plate rhombomere -http://purl.obolibrary.org/obo/UBERON_0005502;rhombomere roof plate;roof plate rhombomere region -http://purl.obolibrary.org/obo/UBERON_0005502;rhombomere roof plate;roof plate rhombomeres -http://purl.obolibrary.org/obo/UBERON_0005507;rhombomere 3;r3 -http://purl.obolibrary.org/obo/UBERON_0005511;rhombomere 4;r4 -http://purl.obolibrary.org/obo/UBERON_0005515;rhombomere 5;r5 -http://purl.obolibrary.org/obo/UBERON_0005519;rhombomere 6;r6 -http://purl.obolibrary.org/obo/UBERON_0005523;rhombomere 7;r7 -http://purl.obolibrary.org/obo/UBERON_0005527;rhombomere 8;r8 -http://purl.obolibrary.org/obo/UBERON_0005561;telencephalon lateral wall;lateral wall telencephalic region -http://purl.obolibrary.org/obo/UBERON_0005561;telencephalon lateral wall;lateral wall telencephalon -http://purl.obolibrary.org/obo/UBERON_0005562;thymus primordium;thymic primordium -http://purl.obolibrary.org/obo/UBERON_0005562;thymus primordium;thymic rudiment -http://purl.obolibrary.org/obo/UBERON_0005563;trigeminal neural crest; -http://purl.obolibrary.org/obo/UBERON_0005564;gonad primordium;future gonad -http://purl.obolibrary.org/obo/UBERON_0005564;gonad primordium;gonadal primordium -http://purl.obolibrary.org/obo/UBERON_0005564;gonad primordium;primitive gonad -http://purl.obolibrary.org/obo/UBERON_0005564;gonad primordium;undifferentiated gonad -http://purl.obolibrary.org/obo/UBERON_0005565;facio-acoustic neural crest;facio acoustic neural crest -http://purl.obolibrary.org/obo/UBERON_0005566;rhombomere 1 floor plate;floor plate r1 -http://purl.obolibrary.org/obo/UBERON_0005566;rhombomere 1 floor plate;floor plate rhombomere 1 -http://purl.obolibrary.org/obo/UBERON_0005567;rhombomere 1 lateral wall;lateral wall rhombomere 1 -http://purl.obolibrary.org/obo/UBERON_0005568;rhombomere 1 roof plate;roof plate rhombomere 1 -http://purl.obolibrary.org/obo/UBERON_0005569;rhombomere 2;r2 -http://purl.obolibrary.org/obo/UBERON_0005570;rhombomere 2 floor plate;floor plate r2 -http://purl.obolibrary.org/obo/UBERON_0005570;rhombomere 2 floor plate;floor plate rhombomere 2 -http://purl.obolibrary.org/obo/UBERON_0005570;rhombomere 2 floor plate;floorplate r2 -http://purl.obolibrary.org/obo/UBERON_0005571;rhombomere 2 lateral wall;lateral wall rhombomere 2 -http://purl.obolibrary.org/obo/UBERON_0005572;rhombomere 2 roof plate;roof plate rhombomere 2 -http://purl.obolibrary.org/obo/UBERON_0005573;rhombomere 3 floor plate;floor plate r3 -http://purl.obolibrary.org/obo/UBERON_0005573;rhombomere 3 floor plate;floor plate rhombomere 3 -http://purl.obolibrary.org/obo/UBERON_0005573;rhombomere 3 floor plate;floorplate r3 -http://purl.obolibrary.org/obo/UBERON_0005574;rhombomere 3 lateral wall;lateral wall rhombomere 3 -http://purl.obolibrary.org/obo/UBERON_0005575;rhombomere 3 roof plate;roof plate rhombomere 3 -http://purl.obolibrary.org/obo/UBERON_0005576;rhombomere 4 floor plate;floor plate r4 -http://purl.obolibrary.org/obo/UBERON_0005576;rhombomere 4 floor plate;floor plate rhombomere 4 -http://purl.obolibrary.org/obo/UBERON_0005576;rhombomere 4 floor plate;floorplate r4 -http://purl.obolibrary.org/obo/UBERON_0005577;rhombomere 4 lateral wall;lateral wall rhombomere 4 -http://purl.obolibrary.org/obo/UBERON_0005578;rhombomere 4 roof plate;roof plate rhombomere 4 -http://purl.obolibrary.org/obo/UBERON_0005579;rhombomere 5 floor plate;floor plate r5 -http://purl.obolibrary.org/obo/UBERON_0005579;rhombomere 5 floor plate;floor plate rhombomere 5 -http://purl.obolibrary.org/obo/UBERON_0005579;rhombomere 5 floor plate;floorplate r5 -http://purl.obolibrary.org/obo/UBERON_0005580;rhombomere 5 lateral wall;lateral wall rhombomere 5 -http://purl.obolibrary.org/obo/UBERON_0005581;rhombomere 5 roof plate;roof plate rhombomere 5 -http://purl.obolibrary.org/obo/UBERON_0005582;rhombomere 6 floor plate;floor plate r6 -http://purl.obolibrary.org/obo/UBERON_0005582;rhombomere 6 floor plate;floor plate rhombomere 6 -http://purl.obolibrary.org/obo/UBERON_0005582;rhombomere 6 floor plate;floorplate r6 -http://purl.obolibrary.org/obo/UBERON_0005583;rhombomere 6 lateral wall;lateral wall rhombomere 6 -http://purl.obolibrary.org/obo/UBERON_0005584;rhombomere 6 roof plate;roof plate rhombomere 6 -http://purl.obolibrary.org/obo/UBERON_0005585;rhombomere 7 floor plate;floor plate r7 -http://purl.obolibrary.org/obo/UBERON_0005585;rhombomere 7 floor plate;floor plate rhombomere 7 -http://purl.obolibrary.org/obo/UBERON_0005585;rhombomere 7 floor plate;floorplate r7 -http://purl.obolibrary.org/obo/UBERON_0005586;rhombomere 7 lateral wall;lateral wall rhombomere 7 -http://purl.obolibrary.org/obo/UBERON_0005587;rhombomere 7 roof plate;roof plate rhombomere 7 -http://purl.obolibrary.org/obo/UBERON_0005588;rhombomere 8 floor plate;floor plate r8 -http://purl.obolibrary.org/obo/UBERON_0005588;rhombomere 8 floor plate;floor plate rhombomere 8 -http://purl.obolibrary.org/obo/UBERON_0005588;rhombomere 8 floor plate;floorplate r8 -http://purl.obolibrary.org/obo/UBERON_0005589;rhombomere 8 lateral wall;lateral wall rhombomere 8 -http://purl.obolibrary.org/obo/UBERON_0005590;rhombomere 8 roof plate;roof plate rhombomere 8 -http://purl.obolibrary.org/obo/UBERON_0005591;diencephalon lateral wall;lateral wall diencephalic region -http://purl.obolibrary.org/obo/UBERON_0005591;diencephalon lateral wall;lateral wall diencephalon -http://purl.obolibrary.org/obo/UBERON_0005594;head somite;occipital somite -http://purl.obolibrary.org/obo/UBERON_0005597;lung primordium; -http://purl.obolibrary.org/obo/UBERON_0005598;trunk somite; -http://purl.obolibrary.org/obo/UBERON_0005599;common dorsal aorta; -http://purl.obolibrary.org/obo/UBERON_0005600;crus commune;crus commune canalis semicircularis -http://purl.obolibrary.org/obo/UBERON_0005601;dorsal mesocardium; -http://purl.obolibrary.org/obo/UBERON_0005602;dorsal mesogastrium; -http://purl.obolibrary.org/obo/UBERON_0005604;extrahepatic part of hepatic duct;extrahepatic part of the hepatic duct -http://purl.obolibrary.org/obo/UBERON_0005604;extrahepatic part of hepatic duct;hepatic duct extrahepatic part -http://purl.obolibrary.org/obo/UBERON_0005605;intrahepatic part of hepatic duct;hepatic duct intrahepatic part -http://purl.obolibrary.org/obo/UBERON_0005605;intrahepatic part of hepatic duct;intrahepatic part of the hepatic duct -http://purl.obolibrary.org/obo/UBERON_0005606;hyaloid cavity; -http://purl.obolibrary.org/obo/UBERON_0005607;hyaloid vascular plexus; -http://purl.obolibrary.org/obo/UBERON_0005608;hyoid artery; -http://purl.obolibrary.org/obo/UBERON_0005609;iliac artery; -http://purl.obolibrary.org/obo/UBERON_0005610;iliac vein; -http://purl.obolibrary.org/obo/UBERON_0005611;inner canthus;medial palpebral commissure -http://purl.obolibrary.org/obo/UBERON_0005612;intercostal artery; -http://purl.obolibrary.org/obo/UBERON_0005613;left dorsal aorta; -http://purl.obolibrary.org/obo/UBERON_0005614;lens anterior epithelium;lens subcapsular epithelium -http://purl.obolibrary.org/obo/UBERON_0005614;lens anterior epithelium;subcapsular lens epithelium -http://purl.obolibrary.org/obo/UBERON_0005615;lens equatorial epithelium; -http://purl.obolibrary.org/obo/UBERON_0005616;mesenteric artery; -http://purl.obolibrary.org/obo/UBERON_0005617;mesenteric vein; -http://purl.obolibrary.org/obo/UBERON_0005619;secondary palatal shelf;lateral palatine process -http://purl.obolibrary.org/obo/UBERON_0005619;secondary palatal shelf;palatal shelf -http://purl.obolibrary.org/obo/UBERON_0005619;secondary palatal shelf;secondary palatal shelf -http://purl.obolibrary.org/obo/UBERON_0005620;primary palate;primary palate process -http://purl.obolibrary.org/obo/UBERON_0005621;rhomboid;rhomboid muscle -http://purl.obolibrary.org/obo/UBERON_0005622;right dorsal aorta; -http://purl.obolibrary.org/obo/UBERON_0005623;semi-lunar valve;semilunar valve -http://purl.obolibrary.org/obo/UBERON_0005623;semi-lunar valve;semilunar valves -http://purl.obolibrary.org/obo/UBERON_0005624;suprarenal artery; -http://purl.obolibrary.org/obo/UBERON_0005625;tubotympanic recess lumen;cavity of tubotympanic recess -http://purl.obolibrary.org/obo/UBERON_0005625;tubotympanic recess lumen;tubotympanic recess cavity -http://purl.obolibrary.org/obo/UBERON_0005625;tubotympanic recess lumen;tubotympanic recess space -http://purl.obolibrary.org/obo/UBERON_0005626;ventral mesogastrium; -http://purl.obolibrary.org/obo/UBERON_0005628;ileal artery;ileal branch of superior mesenteric artery -http://purl.obolibrary.org/obo/UBERON_0005629;vascular plexus;plexus vasculosus -http://purl.obolibrary.org/obo/UBERON_0005630;fetal membrane; -http://purl.obolibrary.org/obo/UBERON_0005631;extraembryonic membrane; -http://purl.obolibrary.org/obo/UBERON_0005636;caecum epithelium; -http://purl.obolibrary.org/obo/UBERON_0005637;pyloric region epithelium; -http://purl.obolibrary.org/obo/UBERON_0005638;anterior chamber epithelium; -http://purl.obolibrary.org/obo/UBERON_0005639;right lung cranial lobe epithelium; -http://purl.obolibrary.org/obo/UBERON_0005640;right lung caudal lobe epithelium; -http://purl.obolibrary.org/obo/UBERON_0005642;ultimobranchial body epithelium; -http://purl.obolibrary.org/obo/UBERON_0005643;foregut duodenum epithelium; -http://purl.obolibrary.org/obo/UBERON_0005644;midgut duodenum epithelium; -http://purl.obolibrary.org/obo/UBERON_0005645;manual digit 2 epithelium;fore limb digit 2 epithelium -http://purl.obolibrary.org/obo/UBERON_0005645;manual digit 2 epithelium;manual digit II epithelium -http://purl.obolibrary.org/obo/UBERON_0005646;manual digit 3 epithelium;fore limb digit 3 epithelium -http://purl.obolibrary.org/obo/UBERON_0005646;manual digit 3 epithelium;manual digit III epithelium -http://purl.obolibrary.org/obo/UBERON_0005647;manual digit 4 epithelium;fore limb digit 4 epithelium -http://purl.obolibrary.org/obo/UBERON_0005647;manual digit 4 epithelium;manual digit IV epithelium -http://purl.obolibrary.org/obo/UBERON_0005648;manual digit 5 epithelium;fore limb digit 5 epithelium -http://purl.obolibrary.org/obo/UBERON_0005648;manual digit 5 epithelium;manual digit V epithelium -http://purl.obolibrary.org/obo/UBERON_0005649;pedal digit 2 epithelium;hind limb digit 2 epithelium -http://purl.obolibrary.org/obo/UBERON_0005649;pedal digit 2 epithelium;pedal digit II epithelium -http://purl.obolibrary.org/obo/UBERON_0005650;pedal digit 3 epithelium;hind limb digit 3 epithelium -http://purl.obolibrary.org/obo/UBERON_0005650;pedal digit 3 epithelium;pedal digit III epithelium -http://purl.obolibrary.org/obo/UBERON_0005651;pedal digit 4 epithelium;hind limb digit 4 epithelium -http://purl.obolibrary.org/obo/UBERON_0005651;pedal digit 4 epithelium;pedal digit IV epithelium -http://purl.obolibrary.org/obo/UBERON_0005652;pedal digit 5 epithelium;hind limb digit 5 epithelium -http://purl.obolibrary.org/obo/UBERON_0005652;pedal digit 5 epithelium;pedal digit V epithelium -http://purl.obolibrary.org/obo/UBERON_0005653;upper jaw molar epithelium; -http://purl.obolibrary.org/obo/UBERON_0005654;lower jaw molar epithelium; -http://purl.obolibrary.org/obo/UBERON_0005655;right lung accessory lobe epithelium; -http://purl.obolibrary.org/obo/UBERON_0005656;lens vesicle epithelium; -http://purl.obolibrary.org/obo/UBERON_0005657;crus commune epithelium; -http://purl.obolibrary.org/obo/UBERON_0005658;secondary palatal shelf epithelium; -http://purl.obolibrary.org/obo/UBERON_0005659;primary palate epithelium; -http://purl.obolibrary.org/obo/UBERON_0005660;2nd arch ectoderm;2nd pharyngeal arch ectoderm -http://purl.obolibrary.org/obo/UBERON_0005661;3rd arch ectoderm;3rd pharyngeal arch ectoderm -http://purl.obolibrary.org/obo/UBERON_0005662;4th arch ectoderm;4th pharyngeal arch ectoderm -http://purl.obolibrary.org/obo/UBERON_0005664;2nd arch endoderm;2nd pharyngeal arch endoderm -http://purl.obolibrary.org/obo/UBERON_0005665;3rd arch endoderm;3rd pharyngeal arch endoderm -http://purl.obolibrary.org/obo/UBERON_0005666;4th arch endoderm;4th pharyngeal arch endoderm -http://purl.obolibrary.org/obo/UBERON_0005667;connecting stalk mesoderm; -http://purl.obolibrary.org/obo/UBERON_0005669;peritoneal cavity mesothelium;mesothelium of peritoneal component -http://purl.obolibrary.org/obo/UBERON_0005669;peritoneal cavity mesothelium;mesothelium of peritoneum -http://purl.obolibrary.org/obo/UBERON_0005669;peritoneal cavity mesothelium;peritoneal mesothelium -http://purl.obolibrary.org/obo/UBERON_0005669;peritoneal cavity mesothelium;peritoneum mesothelium -http://purl.obolibrary.org/obo/UBERON_0005670;greater omentum mesothelium; -http://purl.obolibrary.org/obo/UBERON_0005671;greater sac mesothelium; -http://purl.obolibrary.org/obo/UBERON_0005672;right lung endothelium; -http://purl.obolibrary.org/obo/UBERON_0005673;left lung endothelium; -http://purl.obolibrary.org/obo/UBERON_0005674;right lung cranial lobe endothelium; -http://purl.obolibrary.org/obo/UBERON_0005675;right lung caudal lobe endothelium; -http://purl.obolibrary.org/obo/UBERON_0005676;right lung accessory lobe endothelium; -http://purl.obolibrary.org/obo/UBERON_0005677;caecum mesentery; -http://purl.obolibrary.org/obo/UBERON_0005678;right lung cranial lobe segmental bronchus; -http://purl.obolibrary.org/obo/UBERON_0005679;right lung caudal lobe segmental bronchus; -http://purl.obolibrary.org/obo/UBERON_0005680;right lung accessory lobe segmental bronchus; -http://purl.obolibrary.org/obo/UBERON_0005681;right lung upper lobe bronchiole;bronchiole of right upper lobe -http://purl.obolibrary.org/obo/UBERON_0005681;right lung upper lobe bronchiole;bronchiole of right upper lobe of lung -http://purl.obolibrary.org/obo/UBERON_0005681;right lung upper lobe bronchiole;right lung cranial lobe bronchiole -http://purl.obolibrary.org/obo/UBERON_0005682;right lung accessory lobe bronchiole; -http://purl.obolibrary.org/obo/UBERON_0005685;midgut dorsal mesentery; -http://purl.obolibrary.org/obo/UBERON_0005686;caecum dorsal mesentery; -http://purl.obolibrary.org/obo/UBERON_0005687;orbitosphenoid cartilage element; -http://purl.obolibrary.org/obo/UBERON_0005688;lens vesicle cavity;cavity of lens vesicle -http://purl.obolibrary.org/obo/UBERON_0005689;2nd arch mesenchyme;2nd pharyngeal arch mesenchyme -http://purl.obolibrary.org/obo/UBERON_0005690;3rd arch mesenchyme;3rd pharyngeal arch mesenchyme -http://purl.obolibrary.org/obo/UBERON_0005691;4th arch mesenchyme;4th pharyngeal arch mesenchyme -http://purl.obolibrary.org/obo/UBERON_0005692;manual digit 2 mesenchyme;fore limb digit 2 mesenchyme -http://purl.obolibrary.org/obo/UBERON_0005692;manual digit 2 mesenchyme;manual digit II mesenchyme -http://purl.obolibrary.org/obo/UBERON_0005693;manual digit 3 mesenchyme;fore limb digit 3 mesenchyme -http://purl.obolibrary.org/obo/UBERON_0005693;manual digit 3 mesenchyme;manual digit III mesenchyme -http://purl.obolibrary.org/obo/UBERON_0005694;manual digit 4 mesenchyme;fore limb digit 4 mesenchyme -http://purl.obolibrary.org/obo/UBERON_0005694;manual digit 4 mesenchyme;manual digit IV mesenchyme -http://purl.obolibrary.org/obo/UBERON_0005695;manual digit 5 mesenchyme;fore limb digit 5 mesenchyme -http://purl.obolibrary.org/obo/UBERON_0005695;manual digit 5 mesenchyme;manual digit V mesenchyme -http://purl.obolibrary.org/obo/UBERON_0005696;pedal digit 2 mesenchyme;hind limb digit 2 mesenchyme -http://purl.obolibrary.org/obo/UBERON_0005696;pedal digit 2 mesenchyme;pedal digit II mesenchyme -http://purl.obolibrary.org/obo/UBERON_0005697;pedal digit 3 mesenchyme;hind limb digit 3 mesenchyme -http://purl.obolibrary.org/obo/UBERON_0005697;pedal digit 3 mesenchyme;pedal digit III mesenchyme -http://purl.obolibrary.org/obo/UBERON_0005698;pedal digit 4 mesenchyme;hind limb digit 4 mesenchyme -http://purl.obolibrary.org/obo/UBERON_0005698;pedal digit 4 mesenchyme;pedal digit IV mesenchyme -http://purl.obolibrary.org/obo/UBERON_0005699;pedal digit 5 mesenchyme;hind limb digit 5 mesenchyme -http://purl.obolibrary.org/obo/UBERON_0005699;pedal digit 5 mesenchyme;pedal digit V mesenchyme -http://purl.obolibrary.org/obo/UBERON_0005700;upper jaw molar odontogenic papilla;upper jaw molar dental papilla -http://purl.obolibrary.org/obo/UBERON_0005700;upper jaw molar odontogenic papilla;upper molar mesenchyme -http://purl.obolibrary.org/obo/UBERON_0005701;lower jaw molar odontogenic papilla;lower jaw molar dental papilla -http://purl.obolibrary.org/obo/UBERON_0005701;lower jaw molar odontogenic papilla;lower molar mesenchyme -http://purl.obolibrary.org/obo/UBERON_0005702;optic eminence mesenchyme; -http://purl.obolibrary.org/obo/UBERON_0005704;secondary palatal shelf mesenchyme; -http://purl.obolibrary.org/obo/UBERON_0005705;primary palate mesenchyme; -http://purl.obolibrary.org/obo/UBERON_0005707;upper jaw incisor odontogenic papilla;upper incisor mesenchyme -http://purl.obolibrary.org/obo/UBERON_0005707;upper jaw incisor odontogenic papilla;upper jaw incisor dental papilla -http://purl.obolibrary.org/obo/UBERON_0005708;lower jaw incisor odontogenic papilla;lower incisor mesenchyme -http://purl.obolibrary.org/obo/UBERON_0005708;lower jaw incisor odontogenic papilla;lower jaw incisor dental papilla -http://purl.obolibrary.org/obo/UBERON_0005709;upper jaw incisor epithelium; -http://purl.obolibrary.org/obo/UBERON_0005710;lower jaw incisor epithelium; -http://purl.obolibrary.org/obo/UBERON_0005711;foregut duodenum mesentery; -http://purl.obolibrary.org/obo/UBERON_0005712;midgut duodenum mesentery; -http://purl.obolibrary.org/obo/UBERON_0005719;footplate apical ectodermal ridge; -http://purl.obolibrary.org/obo/UBERON_0005720;hindbrain venous system; -http://purl.obolibrary.org/obo/UBERON_0005721;pronephric mesoderm; -http://purl.obolibrary.org/obo/UBERON_0005723;floor plate spinal cord region;floor plate spinal cord -http://purl.obolibrary.org/obo/UBERON_0005723;floor plate spinal cord region;floorplate spinal cord -http://purl.obolibrary.org/obo/UBERON_0005724;roof plate spinal cord region;roof plate spinal cord -http://purl.obolibrary.org/obo/UBERON_0005725;olfactory system; -http://purl.obolibrary.org/obo/UBERON_0005726;chemosensory system; -http://purl.obolibrary.org/obo/UBERON_0005728;extraembryonic mesoderm;extra-embryonic mesoderm -http://purl.obolibrary.org/obo/UBERON_0005728;extraembryonic mesoderm;extraembryonic mesenchyme -http://purl.obolibrary.org/obo/UBERON_0005729;pectoral appendage field;pectoral appendage field of lateral plate mesoderm -http://purl.obolibrary.org/obo/UBERON_0005730;pelvic appendage field;pelvic appendage field of lateral plate mesoderm -http://purl.obolibrary.org/obo/UBERON_0005731;fin field;fin field of lateral plate mesoderm -http://purl.obolibrary.org/obo/UBERON_0005732;paired limb/fin field;limb/fin field of lateral plate mesoderm -http://purl.obolibrary.org/obo/UBERON_0005732;paired limb/fin field;paired limb/fin field -http://purl.obolibrary.org/obo/UBERON_0005733;limb field;limb field of lateral plate mesoderm -http://purl.obolibrary.org/obo/UBERON_0005734;tunica adventitia of blood vessel;adventitia externa -http://purl.obolibrary.org/obo/UBERON_0005734;tunica adventitia of blood vessel;external coat -http://purl.obolibrary.org/obo/UBERON_0005734;tunica adventitia of blood vessel;tunica adventitia -http://purl.obolibrary.org/obo/UBERON_0005734;tunica adventitia of blood vessel;tunica adventitia of vessel -http://purl.obolibrary.org/obo/UBERON_0005734;tunica adventitia of blood vessel;tunica adventitia vasorum -http://purl.obolibrary.org/obo/UBERON_0005734;tunica adventitia of blood vessel;tunica externa vasorum -http://purl.obolibrary.org/obo/UBERON_0005737;swim bladder tunica externa; -http://purl.obolibrary.org/obo/UBERON_0005738;swim bladder tunica interna;tunica interna -http://purl.obolibrary.org/obo/UBERON_0005740;tunica intima of artery;arterial intima -http://purl.obolibrary.org/obo/UBERON_0005740;tunica intima of artery;tunica interna (intima)(arteriae) -http://purl.obolibrary.org/obo/UBERON_0005742;adventitia;tunica advetitia -http://purl.obolibrary.org/obo/UBERON_0005742;adventitia;tunica externa -http://purl.obolibrary.org/obo/UBERON_0005744;bone foramen; -http://purl.obolibrary.org/obo/UBERON_0005745;optic foramen;optic canal -http://purl.obolibrary.org/obo/UBERON_0005745;optic foramen;optic foramen -http://purl.obolibrary.org/obo/UBERON_0005745;optic foramen;optic nerve (II) foramen -http://purl.obolibrary.org/obo/UBERON_0005745;optic foramen;optic nerve foramen -http://purl.obolibrary.org/obo/UBERON_0005746;primary vitreous;primary vitreous -http://purl.obolibrary.org/obo/UBERON_0005749;glomerular tuft; -http://purl.obolibrary.org/obo/UBERON_0005750;glomerular parietal epithelium;Bowman's parietal epithelium -http://purl.obolibrary.org/obo/UBERON_0005750;glomerular parietal epithelium;capsular epithelium -http://purl.obolibrary.org/obo/UBERON_0005750;glomerular parietal epithelium;glomerular capsule parietal layer -http://purl.obolibrary.org/obo/UBERON_0005750;glomerular parietal epithelium;outer layer of glomerular capsule -http://purl.obolibrary.org/obo/UBERON_0005750;glomerular parietal epithelium;parietal capsular epithelium -http://purl.obolibrary.org/obo/UBERON_0005750;glomerular parietal epithelium;parietal epithelial layer -http://purl.obolibrary.org/obo/UBERON_0005750;glomerular parietal epithelium;parietal epithelium of Bowman's capsule -http://purl.obolibrary.org/obo/UBERON_0005750;glomerular parietal epithelium;parietal layer of Bowman capsule -http://purl.obolibrary.org/obo/UBERON_0005750;glomerular parietal epithelium;parietal layer of Bowman's capsule -http://purl.obolibrary.org/obo/UBERON_0005750;glomerular parietal epithelium;parietal layer of glomerular capsule -http://purl.obolibrary.org/obo/UBERON_0005750;glomerular parietal epithelium;renal glomerular capsule epithelium -http://purl.obolibrary.org/obo/UBERON_0005751;glomerular visceral epithelium;Bowman's visceral epithelium -http://purl.obolibrary.org/obo/UBERON_0005751;glomerular visceral epithelium;glomerular capsule visceral layer -http://purl.obolibrary.org/obo/UBERON_0005751;glomerular visceral epithelium;inner epithelial layer of Bowman's capsule -http://purl.obolibrary.org/obo/UBERON_0005751;glomerular visceral epithelium;podocyte layer of Bowman's capsule -http://purl.obolibrary.org/obo/UBERON_0005751;glomerular visceral epithelium;visceral epithelium of Bowman's capsule -http://purl.obolibrary.org/obo/UBERON_0005751;glomerular visceral epithelium;visceral layer of Bowman's capsule -http://purl.obolibrary.org/obo/UBERON_0005751;glomerular visceral epithelium;visceral layer of glomerular capsule -http://purl.obolibrary.org/obo/UBERON_0005753;caudal part of nephrogenic cord;caudal portion of nephrogenic cord -http://purl.obolibrary.org/obo/UBERON_0005753;caudal part of nephrogenic cord;caudal region of nephrogenic cord -http://purl.obolibrary.org/obo/UBERON_0005753;caudal part of nephrogenic cord;rear part of nephrogenic cord -http://purl.obolibrary.org/obo/UBERON_0005753;caudal part of nephrogenic cord;rear portion of nephrogenic cord -http://purl.obolibrary.org/obo/UBERON_0005754;rostral part of nephrogenic cord; -http://purl.obolibrary.org/obo/UBERON_0005760;urorectal septum;septum urorectale -http://purl.obolibrary.org/obo/UBERON_0005760;urorectal septum;urorectal fold -http://purl.obolibrary.org/obo/UBERON_0005760;urorectal septum;urorectal membrane -http://purl.obolibrary.org/obo/UBERON_0005764;acellular membrane; -http://purl.obolibrary.org/obo/UBERON_0005769;basement membrane of epithelium;basement membrane -http://purl.obolibrary.org/obo/UBERON_0005769;basement membrane of epithelium;basement membrane of connective tissue -http://purl.obolibrary.org/obo/UBERON_0005769;basement membrane of epithelium;membrana basalis -http://purl.obolibrary.org/obo/UBERON_0005777;glomerular basement membrane;glomerular capillary basement membrane -http://purl.obolibrary.org/obo/UBERON_0005777;glomerular basement membrane;glomerular filtration membrane -http://purl.obolibrary.org/obo/UBERON_0005787;lamina densa of glomerular basement membrane;lamina densa of glomerular basement membrane -http://purl.obolibrary.org/obo/UBERON_0005787;lamina densa of glomerular basement membrane;middle layer of glomerular basement membrane -http://purl.obolibrary.org/obo/UBERON_0005788;lamina rara interna;internal layer of glomerular basement membrane -http://purl.obolibrary.org/obo/UBERON_0005788;lamina rara interna;lamina interna of glomerular basement membrane -http://purl.obolibrary.org/obo/UBERON_0005789;lamina rara externa;external layer of glomerular basement membrane -http://purl.obolibrary.org/obo/UBERON_0005789;lamina rara externa;lamina externa of glomerular basement membrane -http://purl.obolibrary.org/obo/UBERON_0005792;nephric ridge; -http://purl.obolibrary.org/obo/UBERON_0005795;embryonic uterus;fetal uterus -http://purl.obolibrary.org/obo/UBERON_0005796;duplex uterus; -http://purl.obolibrary.org/obo/UBERON_0005797;bipartite uterus; -http://purl.obolibrary.org/obo/UBERON_0005798;bicornuate uterus;bicornate uterus -http://purl.obolibrary.org/obo/UBERON_0005798;bicornuate uterus;uterus with two horns -http://purl.obolibrary.org/obo/UBERON_0005799;simplex uterus; -http://purl.obolibrary.org/obo/UBERON_0005800;section of aorta;aortic section -http://purl.obolibrary.org/obo/UBERON_0005800;section of aorta;aortic segment -http://purl.obolibrary.org/obo/UBERON_0005800;section of aorta;portion of aorta -http://purl.obolibrary.org/obo/UBERON_0005800;section of aorta;segment of aorta -http://purl.obolibrary.org/obo/UBERON_0005805;dorsal aorta;DA -http://purl.obolibrary.org/obo/UBERON_0005805;dorsal aorta;aorta dorsalis -http://purl.obolibrary.org/obo/UBERON_0005806;portal system;portal venous system -http://purl.obolibrary.org/obo/UBERON_0005807;rostral ventrolateral medulla;RVLM -http://purl.obolibrary.org/obo/UBERON_0005807;rostral ventrolateral medulla;medulla pressor -http://purl.obolibrary.org/obo/UBERON_0005808;bone tissue of long bone; -http://purl.obolibrary.org/obo/UBERON_0005809;cortex of manus bone; -http://purl.obolibrary.org/obo/UBERON_0005810;cervical vertebra 1 anterior tubercle;anterior tubercle of atlas -http://purl.obolibrary.org/obo/UBERON_0005810;cervical vertebra 1 anterior tubercle;atlas ventral tubercle -http://purl.obolibrary.org/obo/UBERON_0005810;cervical vertebra 1 anterior tubercle;cervical vertebra 1 ventral tubercle -http://purl.obolibrary.org/obo/UBERON_0005810;cervical vertebra 1 anterior tubercle;tubercle of anterior arch of atlas -http://purl.obolibrary.org/obo/UBERON_0005810;cervical vertebra 1 anterior tubercle;tuberculum anterius (atlas) -http://purl.obolibrary.org/obo/UBERON_0005810;cervical vertebra 1 anterior tubercle;tuberculum anterius atlantis -http://purl.obolibrary.org/obo/UBERON_0005810;cervical vertebra 1 anterior tubercle;ventral tubercle of atlas -http://purl.obolibrary.org/obo/UBERON_0005813;tubercle; -http://purl.obolibrary.org/obo/UBERON_0005814;arch of atlas;atlas arch -http://purl.obolibrary.org/obo/UBERON_0005815;anterior tubercle of transverse process of cervical vertebra;anterior costal tubercle of transverse process of cervical vertebra -http://purl.obolibrary.org/obo/UBERON_0005815;anterior tubercle of transverse process of cervical vertebra;anterior tubercle of cervical vertebra -http://purl.obolibrary.org/obo/UBERON_0005815;anterior tubercle of transverse process of cervical vertebra;tuberculum cervicales anterius vertebrae -http://purl.obolibrary.org/obo/UBERON_0005816;posterior tubercle of transverse process of cervical vertebra;posterior costal tubercle of transverse process of cervical vertebra -http://purl.obolibrary.org/obo/UBERON_0005816;posterior tubercle of transverse process of cervical vertebra;posterior tubercle of cervical vertebra -http://purl.obolibrary.org/obo/UBERON_0005816;posterior tubercle of transverse process of cervical vertebra;tuberculum cervicales posterius vertebrae -http://purl.obolibrary.org/obo/UBERON_0005817;neuraxis flexure; -http://purl.obolibrary.org/obo/UBERON_0005818;cephalic midbrain flexure;cephalic flexure -http://purl.obolibrary.org/obo/UBERON_0005818;cephalic midbrain flexure;cerebral flexure -http://purl.obolibrary.org/obo/UBERON_0005818;cephalic midbrain flexure;cranial flexure -http://purl.obolibrary.org/obo/UBERON_0005818;cephalic midbrain flexure;mesencephalic flexure -http://purl.obolibrary.org/obo/UBERON_0005818;cephalic midbrain flexure;midbrain flexure -http://purl.obolibrary.org/obo/UBERON_0005818;cephalic midbrain flexure;ventral flexure -http://purl.obolibrary.org/obo/UBERON_0005819;cervical flexure; -http://purl.obolibrary.org/obo/UBERON_0005820;pontine flexure;(embryonic) hindbrain flexure -http://purl.obolibrary.org/obo/UBERON_0005820;pontine flexure;basicranial flexure -http://purl.obolibrary.org/obo/UBERON_0005820;pontine flexure;pontal flexure -http://purl.obolibrary.org/obo/UBERON_0005820;pontine flexure;transverse rhombencephalic flexure -http://purl.obolibrary.org/obo/UBERON_0005821;gracile fasciculus;fasciculus gracilis -http://purl.obolibrary.org/obo/UBERON_0005821;gracile fasciculus;gracile fascicle -http://purl.obolibrary.org/obo/UBERON_0005821;gracile fasciculus;gracilis tract -http://purl.obolibrary.org/obo/UBERON_0005826;gracile fasciculus of spinal cord;fasciculus gracilis (medulla spinalis) -http://purl.obolibrary.org/obo/UBERON_0005826;gracile fasciculus of spinal cord;gracile fascicle of spinal cord -http://purl.obolibrary.org/obo/UBERON_0005826;gracile fasciculus of spinal cord;spinal cord segment of fasciculus gracilis -http://purl.obolibrary.org/obo/UBERON_0005826;gracile fasciculus of spinal cord;spinal cord segment of gracile fasciculus -http://purl.obolibrary.org/obo/UBERON_0005832;cuneate fasciculus;cuneatus tract -http://purl.obolibrary.org/obo/UBERON_0005835;cuneate fasciculus of spinal cord;burdach's tract -http://purl.obolibrary.org/obo/UBERON_0005835;cuneate fasciculus of spinal cord;cuneate fascicle of spinal cord -http://purl.obolibrary.org/obo/UBERON_0005835;cuneate fasciculus of spinal cord;fasciculus cuneatus -http://purl.obolibrary.org/obo/UBERON_0005835;cuneate fasciculus of spinal cord;tract of Burdach -http://purl.obolibrary.org/obo/UBERON_0005837;fasciculus of spinal cord;spinal cord fasciculus -http://purl.obolibrary.org/obo/UBERON_0005838;fasciculus of brain;brain fasciculus -http://purl.obolibrary.org/obo/UBERON_0005839;thoracic spinal cord dorsal column;dorsal funiculus of thoracic segment of spinal cord -http://purl.obolibrary.org/obo/UBERON_0005839;thoracic spinal cord dorsal column;dorsal white column of thoracic segment of spinal cord -http://purl.obolibrary.org/obo/UBERON_0005839;thoracic spinal cord dorsal column;thoracic segment of dorsal funiculus of spinal cord -http://purl.obolibrary.org/obo/UBERON_0005839;thoracic spinal cord dorsal column;thoracic spinal cord posterior column -http://purl.obolibrary.org/obo/UBERON_0005840;sacral spinal cord dorsal column;sacral spinal cord posterior column -http://purl.obolibrary.org/obo/UBERON_0005840;sacral spinal cord dorsal column;sacral subsegment of dorsal funiculus of spinal cord -http://purl.obolibrary.org/obo/UBERON_0005841;cervical spinal cord dorsal column;cervical segment of dorsal funiculus of spinal cord -http://purl.obolibrary.org/obo/UBERON_0005841;cervical spinal cord dorsal column;cervical spinal cord posterior column -http://purl.obolibrary.org/obo/UBERON_0005841;cervical spinal cord dorsal column;dorsal funiculus of cervical segment of spinal cord -http://purl.obolibrary.org/obo/UBERON_0005841;cervical spinal cord dorsal column;dorsal white column of cervical segment of spinal cord -http://purl.obolibrary.org/obo/UBERON_0005842;lumbar spinal cord dorsal column;dorsal funiculus of lumbar segment of spinal cord -http://purl.obolibrary.org/obo/UBERON_0005842;lumbar spinal cord dorsal column;dorsal white column of lumbar segment of spinal cord -http://purl.obolibrary.org/obo/UBERON_0005842;lumbar spinal cord dorsal column;lumbar segment of dorsal funiculus of spinal cord -http://purl.obolibrary.org/obo/UBERON_0005842;lumbar spinal cord dorsal column;lumbar segment of gracile fasciculus of spinal cord -http://purl.obolibrary.org/obo/UBERON_0005842;lumbar spinal cord dorsal column;lumbar spinal cord posterior column -http://purl.obolibrary.org/obo/UBERON_0005843;sacral spinal cord;pars sacralis medullae spinalis -http://purl.obolibrary.org/obo/UBERON_0005843;sacral spinal cord;sacral segment of spinal cord -http://purl.obolibrary.org/obo/UBERON_0005843;sacral spinal cord;sacral segments of spinal cord [1-5] -http://purl.obolibrary.org/obo/UBERON_0005843;sacral spinal cord;segmenta sacralia medullae spinalis [1-5] -http://purl.obolibrary.org/obo/UBERON_0005844;spinal cord segment;axial part of spinal cord -http://purl.obolibrary.org/obo/UBERON_0005844;spinal cord segment;axial regional part of spinal cord -http://purl.obolibrary.org/obo/UBERON_0005844;spinal cord segment;segment of spinal cord -http://purl.obolibrary.org/obo/UBERON_0005844;spinal cord segment;spinal neuromeres -http://purl.obolibrary.org/obo/UBERON_0005845;caudal segment of spinal cord;coccygeal segment of spinal cord -http://purl.obolibrary.org/obo/UBERON_0005845;caudal segment of spinal cord;coccygeal segments of spinal cord [1-3] -http://purl.obolibrary.org/obo/UBERON_0005845;caudal segment of spinal cord;pars coccygea medullae spinalis -http://purl.obolibrary.org/obo/UBERON_0005845;caudal segment of spinal cord;segmenta coccygea medullae spinalis [1-3] -http://purl.obolibrary.org/obo/UBERON_0005847;thoracic spinal cord lateral column; -http://purl.obolibrary.org/obo/UBERON_0005848;sacral spinal cord lateral column; -http://purl.obolibrary.org/obo/UBERON_0005849;cervical spinal cord lateral column; -http://purl.obolibrary.org/obo/UBERON_0005850;lumbar spinal cord lateral column; -http://purl.obolibrary.org/obo/UBERON_0005852;thoracic spinal cord ventral column; -http://purl.obolibrary.org/obo/UBERON_0005853;sacral spinal cord ventral column; -http://purl.obolibrary.org/obo/UBERON_0005854;cervical spinal cord ventral column;cervical spinal cord anterior column -http://purl.obolibrary.org/obo/UBERON_0005855;lumbar spinal cord ventral column; -http://purl.obolibrary.org/obo/UBERON_0005856;developing mesenchymal condensation;mesenchyme condensation -http://purl.obolibrary.org/obo/UBERON_0005863;cartilaginous condensation;cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0005863;cartilaginous condensation;cartilagenous condensation -http://purl.obolibrary.org/obo/UBERON_0005863;cartilaginous condensation;chondrogenic condensation -http://purl.obolibrary.org/obo/UBERON_0005865;pre-muscle condensation;pre muscle mass -http://purl.obolibrary.org/obo/UBERON_0005865;pre-muscle condensation;premuscle mass -http://purl.obolibrary.org/obo/UBERON_0005866;pre-cartilage condensation;pre-chondrogenic condensation -http://purl.obolibrary.org/obo/UBERON_0005866;pre-cartilage condensation;precartilage condensation -http://purl.obolibrary.org/obo/UBERON_0005866;pre-cartilage condensation;precartilagenous condensation -http://purl.obolibrary.org/obo/UBERON_0005866;pre-cartilage condensation;prechondrogenic condensation -http://purl.obolibrary.org/obo/UBERON_0005867;mandibular prominence; -http://purl.obolibrary.org/obo/UBERON_0005868;maxillary prominence;embryonic maxillary process -http://purl.obolibrary.org/obo/UBERON_0005868;maxillary prominence;maxillary process -http://purl.obolibrary.org/obo/UBERON_0005868;maxillary prominence;maxillary process of embryo -http://purl.obolibrary.org/obo/UBERON_0005869;maxillary process of inferior nasal concha;maxillary process of inferior concha -http://purl.obolibrary.org/obo/UBERON_0005869;maxillary process of inferior nasal concha;maxillary process of inferior nasal turbinate -http://purl.obolibrary.org/obo/UBERON_0005869;maxillary process of inferior nasal concha;maxillary process of inferior turbinate -http://purl.obolibrary.org/obo/UBERON_0005869;maxillary process of inferior nasal concha;processus maxillaris (concha nasalis inferior) -http://purl.obolibrary.org/obo/UBERON_0005869;maxillary process of inferior nasal concha;processus maxillaris conchae nasalis inferioris -http://purl.obolibrary.org/obo/UBERON_0005870;olfactory pit;nasal pit -http://purl.obolibrary.org/obo/UBERON_0005871;palatine process of maxilla;pars palatina of maxilla -http://purl.obolibrary.org/obo/UBERON_0005871;palatine process of maxilla;processus palatinus (maxilla) -http://purl.obolibrary.org/obo/UBERON_0005872;1st arch pharyngeal cleft;1st arch branchial groove -http://purl.obolibrary.org/obo/UBERON_0005872;1st arch pharyngeal cleft;1st arch groove ectoderm -http://purl.obolibrary.org/obo/UBERON_0005872;1st arch pharyngeal cleft;1st pharyngeal groove -http://purl.obolibrary.org/obo/UBERON_0005872;1st arch pharyngeal cleft;1st pharyngeal groove ectoderm -http://purl.obolibrary.org/obo/UBERON_0005872;1st arch pharyngeal cleft;branchial groove of 1st arch -http://purl.obolibrary.org/obo/UBERON_0005873;2nd arch pharyngeal cleft;2nd arch branchial groove -http://purl.obolibrary.org/obo/UBERON_0005873;2nd arch pharyngeal cleft;2nd arch groove ectoderm -http://purl.obolibrary.org/obo/UBERON_0005873;2nd arch pharyngeal cleft;2nd pharyngeal groove -http://purl.obolibrary.org/obo/UBERON_0005873;2nd arch pharyngeal cleft;2nd pharyngeal groove ectoderm -http://purl.obolibrary.org/obo/UBERON_0005873;2nd arch pharyngeal cleft;branchial groove of 2nd arch -http://purl.obolibrary.org/obo/UBERON_0005874;3rd arch pharyngeal cleft;3rd arch branchial groove -http://purl.obolibrary.org/obo/UBERON_0005874;3rd arch pharyngeal cleft;3rd arch groove ectoderm -http://purl.obolibrary.org/obo/UBERON_0005874;3rd arch pharyngeal cleft;3rd pharyngeal groove -http://purl.obolibrary.org/obo/UBERON_0005874;3rd arch pharyngeal cleft;3rd pharyngeal groove ectoderm -http://purl.obolibrary.org/obo/UBERON_0005874;3rd arch pharyngeal cleft;branchial groove of 3rd arch -http://purl.obolibrary.org/obo/UBERON_0005875;4th arch pharyngeal cleft;4th arch branchial groove -http://purl.obolibrary.org/obo/UBERON_0005875;4th arch pharyngeal cleft;4th arch pharyngeal groove ectoderm -http://purl.obolibrary.org/obo/UBERON_0005875;4th arch pharyngeal cleft;4th pharyngeal groove -http://purl.obolibrary.org/obo/UBERON_0005875;4th arch pharyngeal cleft;4th pharyngeal groove ectoderm -http://purl.obolibrary.org/obo/UBERON_0005875;4th arch pharyngeal cleft;branchial groove of 4th arch -http://purl.obolibrary.org/obo/UBERON_0005876;undifferentiated genital tubercle;undifferentiated genital tubercle -http://purl.obolibrary.org/obo/UBERON_0005879;pharyngeal cleft;pharyngeal groove ectoderm -http://purl.obolibrary.org/obo/UBERON_0005880;prepollex; -http://purl.obolibrary.org/obo/UBERON_0005881;autopodial extension; -http://purl.obolibrary.org/obo/UBERON_0005882;neural tube alar plate;alar plate -http://purl.obolibrary.org/obo/UBERON_0005882;neural tube alar plate;alar plate of neural tube -http://purl.obolibrary.org/obo/UBERON_0005883;neural tube lateral wall mantle layer; -http://purl.obolibrary.org/obo/UBERON_0005884;hyoid arch skeleton;hyoid arch skeleton -http://purl.obolibrary.org/obo/UBERON_0005884;hyoid arch skeleton;pharyngeal arch 2 skeleton -http://purl.obolibrary.org/obo/UBERON_0005886;post-hyoid pharyngeal arch skeleton;gill arch 1-5 skeleton -http://purl.obolibrary.org/obo/UBERON_0005886;post-hyoid pharyngeal arch skeleton;pharyngeal arch 3-7 skeleton -http://purl.obolibrary.org/obo/UBERON_0005890;gonad germinal epithelium;germinal epithelium -http://purl.obolibrary.org/obo/UBERON_0005891;coelomic epithelium;celomic epithelium -http://purl.obolibrary.org/obo/UBERON_0005891;coelomic epithelium;germinal epithelium of Waldeyer -http://purl.obolibrary.org/obo/UBERON_0005892;mesonephric early distal tubule; -http://purl.obolibrary.org/obo/UBERON_0005893;leg bone; -http://purl.obolibrary.org/obo/UBERON_0005895;insect leg;imaginal disc-derived leg -http://purl.obolibrary.org/obo/UBERON_0005897;manus bone;bone of hand -http://purl.obolibrary.org/obo/UBERON_0005897;manus bone;bone of hand skeleton -http://purl.obolibrary.org/obo/UBERON_0005897;manus bone;bone of manus -http://purl.obolibrary.org/obo/UBERON_0005897;manus bone;bone of pectoral limb autopod -http://purl.obolibrary.org/obo/UBERON_0005897;manus bone;bone of pectoral limb autopodium -http://purl.obolibrary.org/obo/UBERON_0005897;manus bone;forelimb autopod bone -http://purl.obolibrary.org/obo/UBERON_0005897;manus bone;forelimb autopodium bone -http://purl.obolibrary.org/obo/UBERON_0005897;manus bone;hand bone -http://purl.obolibrary.org/obo/UBERON_0005899;pes bone;bone of foor proper or tarsal skeleton -http://purl.obolibrary.org/obo/UBERON_0005899;pes bone;bone of foot -http://purl.obolibrary.org/obo/UBERON_0005899;pes bone;bone of pedal skeleton -http://purl.obolibrary.org/obo/UBERON_0005899;pes bone;bone of pes -http://purl.obolibrary.org/obo/UBERON_0005899;pes bone;foot bone -http://purl.obolibrary.org/obo/UBERON_0005902;occipital region;basicranial region -http://purl.obolibrary.org/obo/UBERON_0005902;occipital region;occipital part of head -http://purl.obolibrary.org/obo/UBERON_0005902;occipital region;occipital region of head -http://purl.obolibrary.org/obo/UBERON_0005903;duct of seminal vesicle;ductus excretorius (vesicula seminalis) -http://purl.obolibrary.org/obo/UBERON_0005903;duct of seminal vesicle;ductus excretorius glandulae vesiculosae -http://purl.obolibrary.org/obo/UBERON_0005903;duct of seminal vesicle;excretory duct of seminal gland -http://purl.obolibrary.org/obo/UBERON_0005903;duct of seminal vesicle;seminal vesicle duct -http://purl.obolibrary.org/obo/UBERON_0005904;duct of male reproductive system; -http://purl.obolibrary.org/obo/UBERON_0005905;insect labrum;insect labium -http://purl.obolibrary.org/obo/UBERON_0005906;serous sac; -http://purl.obolibrary.org/obo/UBERON_0005908;conjunctival sac;conjunctiva serous sac -http://purl.obolibrary.org/obo/UBERON_0005911;endo-epithelium;endoderm-derived epithelium -http://purl.obolibrary.org/obo/UBERON_0005911;endo-epithelium;endoepithelium -http://purl.obolibrary.org/obo/UBERON_0005912;transitional epithelium of major calyx;urothelium of major calyx -http://purl.obolibrary.org/obo/UBERON_0005913;zone of bone organ;bone organ zone -http://purl.obolibrary.org/obo/UBERON_0005919;supreme nasal concha;concha nasi suprema -http://purl.obolibrary.org/obo/UBERON_0005919;supreme nasal concha;highest nasal concha -http://purl.obolibrary.org/obo/UBERON_0005919;supreme nasal concha;supreme nasal turbinate -http://purl.obolibrary.org/obo/UBERON_0005919;supreme nasal concha;supreme turbinate -http://purl.obolibrary.org/obo/UBERON_0005920;superior nasal concha;superior nasal turbinate -http://purl.obolibrary.org/obo/UBERON_0005920;superior nasal concha;superior turbinate -http://purl.obolibrary.org/obo/UBERON_0005921;middle nasal concha;middle nasal turbinate -http://purl.obolibrary.org/obo/UBERON_0005921;middle nasal concha;middle turbinate -http://purl.obolibrary.org/obo/UBERON_0005922;inferior nasal concha;inferior nasal turbinate -http://purl.obolibrary.org/obo/UBERON_0005922;inferior nasal concha;inferior nasal turbinate bone -http://purl.obolibrary.org/obo/UBERON_0005922;inferior nasal concha;inferior turbinate -http://purl.obolibrary.org/obo/UBERON_0005925;ethmoidal process of inferior nasal concha;ethmoidal process of inferior concha -http://purl.obolibrary.org/obo/UBERON_0005925;ethmoidal process of inferior nasal concha;ethmoidal process of inferior nasal turbinate -http://purl.obolibrary.org/obo/UBERON_0005925;ethmoidal process of inferior nasal concha;ethmoidal process of inferior turbinate -http://purl.obolibrary.org/obo/UBERON_0005925;ethmoidal process of inferior nasal concha;processus ethmoidalis (concha nasalis inferior) -http://purl.obolibrary.org/obo/UBERON_0005925;ethmoidal process of inferior nasal concha;processus ethmoidalis conchae nasalis inferioris -http://purl.obolibrary.org/obo/UBERON_0005928;external naris;external nares -http://purl.obolibrary.org/obo/UBERON_0005928;external naris;nostril -http://purl.obolibrary.org/obo/UBERON_0005931;primary choana; -http://purl.obolibrary.org/obo/UBERON_0005932;bulb of hair follicle;hair bulb -http://purl.obolibrary.org/obo/UBERON_0005932;bulb of hair follicle;hair follicle bulb -http://purl.obolibrary.org/obo/UBERON_0005933;hair root sheath; -http://purl.obolibrary.org/obo/UBERON_0005941;hair inner root sheath;hair follicle inner root sheath -http://purl.obolibrary.org/obo/UBERON_0005941;hair inner root sheath;inner root sheath of hair follicle -http://purl.obolibrary.org/obo/UBERON_0005941;hair inner root sheath;inner sheath of hair follicle -http://purl.obolibrary.org/obo/UBERON_0005941;hair inner root sheath;internal root sheath of hair follicle -http://purl.obolibrary.org/obo/UBERON_0005942;hair outer root sheath;external root sheath of hair follicle -http://purl.obolibrary.org/obo/UBERON_0005942;hair outer root sheath;hair follicle outer root sheath -http://purl.obolibrary.org/obo/UBERON_0005942;hair outer root sheath;outer root sheath of hair follicle -http://purl.obolibrary.org/obo/UBERON_0005943;hair root sheath matrix; -http://purl.obolibrary.org/obo/UBERON_0005944;axial skeleton plus cranial skeleton; -http://purl.obolibrary.org/obo/UBERON_0005945;neurocranial trabecula;neurocranial trabeculae -http://purl.obolibrary.org/obo/UBERON_0005946;outflow tract of atrium;outflow part of atrium -http://purl.obolibrary.org/obo/UBERON_0005953;outflow part of right ventricle;RVOT -http://purl.obolibrary.org/obo/UBERON_0005953;outflow part of right ventricle;conus arteriosus (infundibulum) -http://purl.obolibrary.org/obo/UBERON_0005953;outflow part of right ventricle;infundibulum of right ventricle -http://purl.obolibrary.org/obo/UBERON_0005953;outflow part of right ventricle;outflow tract of right ventricle -http://purl.obolibrary.org/obo/UBERON_0005953;outflow part of right ventricle;pulmonary conus -http://purl.obolibrary.org/obo/UBERON_0005953;outflow part of right ventricle;right ventricle pulmonary outflow tract -http://purl.obolibrary.org/obo/UBERON_0005953;outflow part of right ventricle;right ventricular outflow tract -http://purl.obolibrary.org/obo/UBERON_0005956;outflow part of left ventricle;LVOT -http://purl.obolibrary.org/obo/UBERON_0005956;outflow part of left ventricle;Sibson vestibule -http://purl.obolibrary.org/obo/UBERON_0005956;outflow part of left ventricle;aortic vestibule -http://purl.obolibrary.org/obo/UBERON_0005956;outflow part of left ventricle;heart left ventricle outflow tract -http://purl.obolibrary.org/obo/UBERON_0005956;outflow part of left ventricle;left ventricular outflow -http://purl.obolibrary.org/obo/UBERON_0005956;outflow part of left ventricle;left ventricular outflow tract -http://purl.obolibrary.org/obo/UBERON_0005956;outflow part of left ventricle;outflow tract of left ventricle -http://purl.obolibrary.org/obo/UBERON_0005956;outflow part of left ventricle;vestibulum aortae -http://purl.obolibrary.org/obo/UBERON_0005965;outflow part of right atrium;main part of right atrium -http://purl.obolibrary.org/obo/UBERON_0005965;outflow part of right atrium;outflow tract of right atrium -http://purl.obolibrary.org/obo/UBERON_0005966;outflow part of left atrium;main part of left atrium -http://purl.obolibrary.org/obo/UBERON_0005966;outflow part of left atrium;outflow tract of left atrium -http://purl.obolibrary.org/obo/UBERON_0005967;conotruncal ridge;aortico-pulmonary spiral ridges -http://purl.obolibrary.org/obo/UBERON_0005967;conotruncal ridge;bulbar ridge -http://purl.obolibrary.org/obo/UBERON_0005967;conotruncal ridge;conotruncal cushion -http://purl.obolibrary.org/obo/UBERON_0005967;conotruncal ridge;endocardial ridge -http://purl.obolibrary.org/obo/UBERON_0005967;conotruncal ridge;outflow tract cushion -http://purl.obolibrary.org/obo/UBERON_0005967;conotruncal ridge;outflow tract endocardial cushion -http://purl.obolibrary.org/obo/UBERON_0005968;infundibulum of hair follicle;dermal piliary canal -http://purl.obolibrary.org/obo/UBERON_0005968;infundibulum of hair follicle;hair follicle infundibulum -http://purl.obolibrary.org/obo/UBERON_0005969;eye trabecular meshwork;eye trabecular meshwork -http://purl.obolibrary.org/obo/UBERON_0005969;eye trabecular meshwork;reticulum trabeculare -http://purl.obolibrary.org/obo/UBERON_0005969;eye trabecular meshwork;trabecular meshwork of the eye -http://purl.obolibrary.org/obo/UBERON_0005970;brain commissure; -http://purl.obolibrary.org/obo/UBERON_0005971;amniotic fold;amnionic fold -http://purl.obolibrary.org/obo/UBERON_0005972;tunnel of Corti; -http://purl.obolibrary.org/obo/UBERON_0005973;blood-inner ear barrier; -http://purl.obolibrary.org/obo/UBERON_0005974;posterior cerebellomedullary cistern;cisterna cerebellomedullaris posterior -http://purl.obolibrary.org/obo/UBERON_0005974;posterior cerebellomedullary cistern;cisterna magna -http://purl.obolibrary.org/obo/UBERON_0005975;hair follicle bulge;bulge of hair follicle -http://purl.obolibrary.org/obo/UBERON_0005976;ansiform lobule crus I;crus I of the ansiform lobule (HVII) -http://purl.obolibrary.org/obo/UBERON_0005976;ansiform lobule crus I;crus primum lobuli ansiformis cerebelli [h vii a] -http://purl.obolibrary.org/obo/UBERON_0005976;ansiform lobule crus I;first crus of ansiform lobule of cerebellum [hVIIa] -http://purl.obolibrary.org/obo/UBERON_0005976;ansiform lobule crus I;hemispheric lobule VIIA -http://purl.obolibrary.org/obo/UBERON_0005976;ansiform lobule crus I;lobulus ansiform crus I -http://purl.obolibrary.org/obo/UBERON_0005976;ansiform lobule crus I;lobulus semilunaris superior -http://purl.obolibrary.org/obo/UBERON_0005976;ansiform lobule crus I;lobulus semilunaris superior cerebelli -http://purl.obolibrary.org/obo/UBERON_0005976;ansiform lobule crus I;posterior superior lobule -http://purl.obolibrary.org/obo/UBERON_0005976;ansiform lobule crus I;semilunar lobule-2 (superior) -http://purl.obolibrary.org/obo/UBERON_0005976;ansiform lobule crus I;superior semilunar lobule -http://purl.obolibrary.org/obo/UBERON_0005976;ansiform lobule crus I;superior semilunar lobule of cerebellum -http://purl.obolibrary.org/obo/UBERON_0005977;ansiform lobule crus II;crus II of the ansiform lobule (HVII) -http://purl.obolibrary.org/obo/UBERON_0005977;ansiform lobule crus II;crus secundum lobuli ansiformis cerebelli [hVII A] -http://purl.obolibrary.org/obo/UBERON_0005977;ansiform lobule crus II;hemispheric lobule VIIBi -http://purl.obolibrary.org/obo/UBERON_0005977;ansiform lobule crus II;inferior semilunar lobule -http://purl.obolibrary.org/obo/UBERON_0005977;ansiform lobule crus II;inferior semilunar lobule of cerebellum -http://purl.obolibrary.org/obo/UBERON_0005977;ansiform lobule crus II;lobulus ansiform crus II -http://purl.obolibrary.org/obo/UBERON_0005977;ansiform lobule crus II;lobulus semilunaris inferior -http://purl.obolibrary.org/obo/UBERON_0005977;ansiform lobule crus II;lobulus semilunaris inferior cerebelli -http://purl.obolibrary.org/obo/UBERON_0005977;ansiform lobule crus II;posterior inferior lobule -http://purl.obolibrary.org/obo/UBERON_0005977;ansiform lobule crus II;second crus of ansiform lobule of cerebellum [hVIIa] -http://purl.obolibrary.org/obo/UBERON_0005977;ansiform lobule crus II;semilunar lobule-2 (inferior) -http://purl.obolibrary.org/obo/UBERON_0005978;olfactory bulb outer nerve layer;olfactory bulb main olfactory nerve layer -http://purl.obolibrary.org/obo/UBERON_0005978;olfactory bulb outer nerve layer;olfactory bulb olfactory nerve layer -http://purl.obolibrary.org/obo/UBERON_0005979;crista terminalis;crista terminalis atrii dextri -http://purl.obolibrary.org/obo/UBERON_0005979;crista terminalis;crista terminalis cordis -http://purl.obolibrary.org/obo/UBERON_0005979;crista terminalis;crista terminalis of right atrium -http://purl.obolibrary.org/obo/UBERON_0005980;pectinate muscle;musculi pectinati -http://purl.obolibrary.org/obo/UBERON_0005980;pectinate muscle;musculus pectinatus -http://purl.obolibrary.org/obo/UBERON_0005981;vena cava sinus;cavity of inflow part of right atrium -http://purl.obolibrary.org/obo/UBERON_0005981;vena cava sinus;posterior right atrial cavity -http://purl.obolibrary.org/obo/UBERON_0005981;vena cava sinus;sinus venarum cavarum -http://purl.obolibrary.org/obo/UBERON_0005982;Bachmann's bundle;anterior interatrial band -http://purl.obolibrary.org/obo/UBERON_0005983;heart layer; -http://purl.obolibrary.org/obo/UBERON_0005984;subendocardium layer; -http://purl.obolibrary.org/obo/UBERON_0005985;coronary vessel; -http://purl.obolibrary.org/obo/UBERON_0005986;left bundle branch;LBB -http://purl.obolibrary.org/obo/UBERON_0005986;left bundle branch;crus sinistrum (fasciculi atrioventricularis) -http://purl.obolibrary.org/obo/UBERON_0005986;left bundle branch;crus sinistrum fasciculi atrioventricularis -http://purl.obolibrary.org/obo/UBERON_0005986;left bundle branch;left branch of atrioventricular bundle -http://purl.obolibrary.org/obo/UBERON_0005986;left bundle branch;left bundle branch -http://purl.obolibrary.org/obo/UBERON_0005986;left bundle branch;left bundle branch of bundle of His -http://purl.obolibrary.org/obo/UBERON_0005986;left bundle branch;left bundle of atrioventricular bundle -http://purl.obolibrary.org/obo/UBERON_0005986;left bundle branch;left crus of atrioventricular bundle -http://purl.obolibrary.org/obo/UBERON_0005986;left bundle branch;left posterior branch -http://purl.obolibrary.org/obo/UBERON_0005986;left bundle branch;left posterior bundle -http://purl.obolibrary.org/obo/UBERON_0005987;right bundle branch;RBB -http://purl.obolibrary.org/obo/UBERON_0005987;right bundle branch;crus dextrum (fasciculi atrioventricularis) -http://purl.obolibrary.org/obo/UBERON_0005987;right bundle branch;crus dextrum fasciculi atrioventricularis -http://purl.obolibrary.org/obo/UBERON_0005987;right bundle branch;right branch of atrioventricular bundle -http://purl.obolibrary.org/obo/UBERON_0005987;right bundle branch;right bundle -http://purl.obolibrary.org/obo/UBERON_0005987;right bundle branch;right bundle branch -http://purl.obolibrary.org/obo/UBERON_0005987;right bundle branch;right bundle branch of bundle of His -http://purl.obolibrary.org/obo/UBERON_0005987;right bundle branch;right right crus of atrioventricular bundle -http://purl.obolibrary.org/obo/UBERON_0005987;right bundle branch;right ventricular bundle -http://purl.obolibrary.org/obo/UBERON_0005988;atrium myocardial trabecula;atrial trabecula -http://purl.obolibrary.org/obo/UBERON_0005988;atrium myocardial trabecula;atrium myocardial trabeculae -http://purl.obolibrary.org/obo/UBERON_0005988;atrium myocardial trabecula;trabecula of atrium -http://purl.obolibrary.org/obo/UBERON_0005988;atrium myocardial trabecula;trabecular layer of atrium -http://purl.obolibrary.org/obo/UBERON_0005988;atrium myocardial trabecula;trabecular layer of the atrium -http://purl.obolibrary.org/obo/UBERON_0005989;atrioventricular septum;membranous atrioventricular septum -http://purl.obolibrary.org/obo/UBERON_0005990;aortic valve cusp;aortic semilunar valvule -http://purl.obolibrary.org/obo/UBERON_0005990;aortic valve cusp;aortic valvular cusp -http://purl.obolibrary.org/obo/UBERON_0005990;aortic valve cusp;cusp of aortic valve -http://purl.obolibrary.org/obo/UBERON_0005990;aortic valve cusp;semilunar valvule of aortic valve -http://purl.obolibrary.org/obo/UBERON_0005991;aortic valve anulus;anulus of aortic valve -http://purl.obolibrary.org/obo/UBERON_0005991;aortic valve anulus;aortic anulus -http://purl.obolibrary.org/obo/UBERON_0005991;aortic valve anulus;aortic valvar anulus -http://purl.obolibrary.org/obo/UBERON_0005991;aortic valve anulus;fibrous ring of aortic valve -http://purl.obolibrary.org/obo/UBERON_0005992;pulmonary valve cusp;cusp of pulmonary valve -http://purl.obolibrary.org/obo/UBERON_0005992;pulmonary valve cusp;pulmonary semilunar valvule -http://purl.obolibrary.org/obo/UBERON_0005992;pulmonary valve cusp;pulmonary valvular cusp -http://purl.obolibrary.org/obo/UBERON_0005992;pulmonary valve cusp;semilunar cusp of pulmonary valve -http://purl.obolibrary.org/obo/UBERON_0005992;pulmonary valve cusp;semilunar valvule of pulmonary valve -http://purl.obolibrary.org/obo/UBERON_0005993;pulmonary valve anulus;anulus of pulmonary valve -http://purl.obolibrary.org/obo/UBERON_0005993;pulmonary valve anulus;fibrous ring of pulmonary valve -http://purl.obolibrary.org/obo/UBERON_0005993;pulmonary valve anulus;pulmonary anulus -http://purl.obolibrary.org/obo/UBERON_0005993;pulmonary valve anulus;pulmonary valvar anulus -http://purl.obolibrary.org/obo/UBERON_0005994;chorda tendineae; -http://purl.obolibrary.org/obo/UBERON_0005995;mitral valve anulus;anulus of mitral valve -http://purl.obolibrary.org/obo/UBERON_0005995;mitral valve anulus;fibrous ring of mitral valve -http://purl.obolibrary.org/obo/UBERON_0005995;mitral valve anulus;mitral annulus -http://purl.obolibrary.org/obo/UBERON_0005995;mitral valve anulus;mitral anulus -http://purl.obolibrary.org/obo/UBERON_0005995;mitral valve anulus;mitral valvar anulus -http://purl.obolibrary.org/obo/UBERON_0005996;mitral valve cusp; -http://purl.obolibrary.org/obo/UBERON_0005997;tricuspid valve anulus;anulus of tricuspid valve -http://purl.obolibrary.org/obo/UBERON_0005997;tricuspid valve anulus;fibrous ring of tricuspid valve -http://purl.obolibrary.org/obo/UBERON_0005997;tricuspid valve anulus;tricuspid anulus -http://purl.obolibrary.org/obo/UBERON_0005997;tricuspid valve anulus;tricuspid valvar anulus -http://purl.obolibrary.org/obo/UBERON_0005998;tricuspid valve cusp;cuspis septalis (valva tricuspidalis) -http://purl.obolibrary.org/obo/UBERON_0005998;tricuspid valve cusp;cuspis septalis valvae atrioventricularis dextrae -http://purl.obolibrary.org/obo/UBERON_0005998;tricuspid valve cusp;septal cusp of right atrioventricular valve -http://purl.obolibrary.org/obo/UBERON_0005998;tricuspid valve cusp;septal cusp of tricuspid valve -http://purl.obolibrary.org/obo/UBERON_0005998;tricuspid valve cusp;septal leaflet of right-sided tricuspid valve -http://purl.obolibrary.org/obo/UBERON_0005998;tricuspid valve cusp;septal leaflet of tricuspid valve -http://purl.obolibrary.org/obo/UBERON_0005998;tricuspid valve cusp;septal tricuspid leaflet -http://purl.obolibrary.org/obo/UBERON_0006002;vitelline artery; -http://purl.obolibrary.org/obo/UBERON_0006003;integumentary adnexa;adnexae cutis -http://purl.obolibrary.org/obo/UBERON_0006003;integumentary adnexa;body hair or bristle -http://purl.obolibrary.org/obo/UBERON_0006003;integumentary adnexa;skin adnexa -http://purl.obolibrary.org/obo/UBERON_0006003;integumentary adnexa;skin adnexal structure -http://purl.obolibrary.org/obo/UBERON_0006003;integumentary adnexa;skin appendage -http://purl.obolibrary.org/obo/UBERON_0006004;hair follicle matrix region;germinal matrix of hair bulb -http://purl.obolibrary.org/obo/UBERON_0006004;hair follicle matrix region;lower part of bulb of hair follicle -http://purl.obolibrary.org/obo/UBERON_0006004;hair follicle matrix region;lower zone of bulb of hair follicle -http://purl.obolibrary.org/obo/UBERON_0006005;hair follicle isthmus;isthmus of hair follicle -http://purl.obolibrary.org/obo/UBERON_0006006;metoptic pillar;postoptic pillar -http://purl.obolibrary.org/obo/UBERON_0006007;pre-Botzinger complex;Pre-Bötzinger complex -http://purl.obolibrary.org/obo/UBERON_0006007;pre-Botzinger complex;preBötC -http://purl.obolibrary.org/obo/UBERON_0006008;fibrous ring of heart;anulus fibrosus of heart -http://purl.obolibrary.org/obo/UBERON_0006009;cusp of cardiac valve;cardiac valve cusp -http://purl.obolibrary.org/obo/UBERON_0006009;cusp of cardiac valve;cardiac valvular cusp -http://purl.obolibrary.org/obo/UBERON_0006009;cusp of cardiac valve;cardiac valvule -http://purl.obolibrary.org/obo/UBERON_0006009;cusp of cardiac valve;cardial valve cusp -http://purl.obolibrary.org/obo/UBERON_0006009;cusp of cardiac valve;semilunar valvule -http://purl.obolibrary.org/obo/UBERON_0006010;hyaloid canal;Cloquet's canal -http://purl.obolibrary.org/obo/UBERON_0006010;hyaloid canal;Stilling's canal -http://purl.obolibrary.org/obo/UBERON_0006010;hyaloid canal;canal of Cloquet -http://purl.obolibrary.org/obo/UBERON_0006010;hyaloid canal;canalis hyaloideus -http://purl.obolibrary.org/obo/UBERON_0006011;hyaloid vein;hyaloid veins -http://purl.obolibrary.org/obo/UBERON_0006012;interdigital region;interdigit region -http://purl.obolibrary.org/obo/UBERON_0006013;interdigital region between manual digits;hand interdigit region -http://purl.obolibrary.org/obo/UBERON_0006013;interdigital region between manual digits;hand interdigital region -http://purl.obolibrary.org/obo/UBERON_0006013;interdigital region between manual digits;interdigital region of manus -http://purl.obolibrary.org/obo/UBERON_0006013;interdigital region between manual digits;manual interdigital region -http://purl.obolibrary.org/obo/UBERON_0006014;interdigital region between pedal digits;foot interdigit region -http://purl.obolibrary.org/obo/UBERON_0006014;interdigital region between pedal digits;foot interdigital region -http://purl.obolibrary.org/obo/UBERON_0006014;interdigital region between pedal digits;interdigit region of pes -http://purl.obolibrary.org/obo/UBERON_0006014;interdigital region between pedal digits;pedal interdigit region -http://purl.obolibrary.org/obo/UBERON_0006015;webbed interdigital region;interdigital webbing -http://purl.obolibrary.org/obo/UBERON_0006015;webbed interdigital region;syndactylous interdigital region -http://purl.obolibrary.org/obo/UBERON_0006016;interdigital region between digits 1 and 2;interdigital region between digits I and II -http://purl.obolibrary.org/obo/UBERON_0006019;interdigital region between digits 2 and 3;interdigital region between digits II and III -http://purl.obolibrary.org/obo/UBERON_0006022;interdigital region between digits 3 and 4;interdigital region between digits III and IV -http://purl.obolibrary.org/obo/UBERON_0006025;interdigital region between digits 4 and 5;interdigital region between digits IV and V -http://purl.obolibrary.org/obo/UBERON_0006026;interdigital region between manual digits 1 and 2;interdigital region between manual digits I and II -http://purl.obolibrary.org/obo/UBERON_0006029;interdigital region between manual digits 2 and 3;interdigital region between manual digits II and III -http://purl.obolibrary.org/obo/UBERON_0006032;interdigital region between manual digits 3 and 4;interdigital region between manual digits III and IV -http://purl.obolibrary.org/obo/UBERON_0006035;interdigital region between manual digits 4 and 5;interdigital region between manual digits IV and V -http://purl.obolibrary.org/obo/UBERON_0006038;interdigital region between pedal digits 1 and 2;interdigital region between pedal digits I and II -http://purl.obolibrary.org/obo/UBERON_0006041;interdigital region between pedal digits 2 and 3;interdigital region between pedal digits II and III -http://purl.obolibrary.org/obo/UBERON_0006044;interdigital region between pedal digits 3 and 4;interdigital region between pedal digits III and IV -http://purl.obolibrary.org/obo/UBERON_0006047;interdigital region between pedal digits 4 and 5;interdigital region between pedal digits IV and V -http://purl.obolibrary.org/obo/UBERON_0006048;digit 1;autopod digit 1 -http://purl.obolibrary.org/obo/UBERON_0006048;digit 1;digit I -http://purl.obolibrary.org/obo/UBERON_0006048;digit 1;limb digit 1 -http://purl.obolibrary.org/obo/UBERON_0006049;digit 2;autopod digit 2 -http://purl.obolibrary.org/obo/UBERON_0006049;digit 2;digit II -http://purl.obolibrary.org/obo/UBERON_0006049;digit 2;limb digit 2 -http://purl.obolibrary.org/obo/UBERON_0006049;digit 2;second digit -http://purl.obolibrary.org/obo/UBERON_0006050;digit 3;autopod digit 3 -http://purl.obolibrary.org/obo/UBERON_0006050;digit 3;digit III -http://purl.obolibrary.org/obo/UBERON_0006050;digit 3;limb digit 3 -http://purl.obolibrary.org/obo/UBERON_0006050;digit 3;third digit -http://purl.obolibrary.org/obo/UBERON_0006051;digit 4;autopod digit 4 -http://purl.obolibrary.org/obo/UBERON_0006051;digit 4;digit IV -http://purl.obolibrary.org/obo/UBERON_0006051;digit 4;fourth digit -http://purl.obolibrary.org/obo/UBERON_0006051;digit 4;limb digit 4 -http://purl.obolibrary.org/obo/UBERON_0006052;digit 5;autopod digit 5 -http://purl.obolibrary.org/obo/UBERON_0006052;digit 5;digit V -http://purl.obolibrary.org/obo/UBERON_0006052;digit 5;fifth digit -http://purl.obolibrary.org/obo/UBERON_0006052;digit 5;limb digit 5 -http://purl.obolibrary.org/obo/UBERON_0006054;surface of occiput;occiput surface -http://purl.obolibrary.org/obo/UBERON_0006054;surface of occiput;regio occipitalis (capitis) -http://purl.obolibrary.org/obo/UBERON_0006056;posterior surface of head; -http://purl.obolibrary.org/obo/UBERON_0006058;multi-limb segment region; -http://purl.obolibrary.org/obo/UBERON_0006059;falx cerebri;cerebral falx -http://purl.obolibrary.org/obo/UBERON_0006060;conotruncus;bulbus cordis rostral half -http://purl.obolibrary.org/obo/UBERON_0006060;conotruncus;cardiac conotruncus -http://purl.obolibrary.org/obo/UBERON_0006060;conotruncus;rostral half of bulbus cordis -http://purl.obolibrary.org/obo/UBERON_0006061;process of vertebra;vertebra process -http://purl.obolibrary.org/obo/UBERON_0006061;process of vertebra;vertebral process -http://purl.obolibrary.org/obo/UBERON_0006062;zygapophysis;articular process of vertebra -http://purl.obolibrary.org/obo/UBERON_0006062;zygapophysis;processus articularis (zygapophysis) -http://purl.obolibrary.org/obo/UBERON_0006062;zygapophysis;zygapophysis -http://purl.obolibrary.org/obo/UBERON_0006063;cartilaginous neural arch; -http://purl.obolibrary.org/obo/UBERON_0006065;hemal arch;haemal arch -http://purl.obolibrary.org/obo/UBERON_0006065;hemal arch;ventral arcocentrum -http://purl.obolibrary.org/obo/UBERON_0006067;musculature of hindlimb zeugopod;leg musculature -http://purl.obolibrary.org/obo/UBERON_0006067;musculature of hindlimb zeugopod;muscle group of leg -http://purl.obolibrary.org/obo/UBERON_0006067;musculature of hindlimb zeugopod;set of muscles of leg -http://purl.obolibrary.org/obo/UBERON_0006068;bone of tail; -http://purl.obolibrary.org/obo/UBERON_0006071;caudal region; -http://purl.obolibrary.org/obo/UBERON_0006072;cervical region of vertebral column;axial skeleton cervical region -http://purl.obolibrary.org/obo/UBERON_0006072;cervical region of vertebral column;cervical skeleton -http://purl.obolibrary.org/obo/UBERON_0006072;cervical region of vertebral column;cervical spinal column -http://purl.obolibrary.org/obo/UBERON_0006072;cervical region of vertebral column;cervical spine -http://purl.obolibrary.org/obo/UBERON_0006072;cervical region of vertebral column;cervical vertebrae series -http://purl.obolibrary.org/obo/UBERON_0006072;cervical region of vertebral column;cervical vertebral column -http://purl.obolibrary.org/obo/UBERON_0006073;thoracic region of vertebral column;axial skeleton thoracic region -http://purl.obolibrary.org/obo/UBERON_0006073;thoracic region of vertebral column;columna vertebralis thoracicus -http://purl.obolibrary.org/obo/UBERON_0006073;thoracic region of vertebral column;thoracic spine -http://purl.obolibrary.org/obo/UBERON_0006073;thoracic region of vertebral column;thoracic vertebrae series -http://purl.obolibrary.org/obo/UBERON_0006073;thoracic region of vertebral column;thoracic vertebral column -http://purl.obolibrary.org/obo/UBERON_0006074;lumbar region of vertebral column;axial skeleton lumbar region -http://purl.obolibrary.org/obo/UBERON_0006074;lumbar region of vertebral column;lumbar skeleton -http://purl.obolibrary.org/obo/UBERON_0006074;lumbar region of vertebral column;lumbar spine -http://purl.obolibrary.org/obo/UBERON_0006074;lumbar region of vertebral column;lumbar vertebrae series -http://purl.obolibrary.org/obo/UBERON_0006074;lumbar region of vertebral column;lumbar vertebral column -http://purl.obolibrary.org/obo/UBERON_0006075;sacral region of vertebral column;axial skeleton sacral region -http://purl.obolibrary.org/obo/UBERON_0006075;sacral region of vertebral column;sacral skeleton -http://purl.obolibrary.org/obo/UBERON_0006075;sacral region of vertebral column;sacral vertebrae series -http://purl.obolibrary.org/obo/UBERON_0006076;caudal region of vertebral column;axial skeleton tail region -http://purl.obolibrary.org/obo/UBERON_0006076;caudal region of vertebral column;caudal skeleton -http://purl.obolibrary.org/obo/UBERON_0006076;caudal region of vertebral column;caudal vertebrae series -http://purl.obolibrary.org/obo/UBERON_0006077;subdivision of vertebral column;subdivision of vertebral skeleton -http://purl.obolibrary.org/obo/UBERON_0006077;subdivision of vertebral column;vertebrae series -http://purl.obolibrary.org/obo/UBERON_0006077;subdivision of vertebral column;vertebral column subdivision -http://purl.obolibrary.org/obo/UBERON_0006077;subdivision of vertebral column;vertebral series -http://purl.obolibrary.org/obo/UBERON_0006078;subdivision of spinal cord lateral column; -http://purl.obolibrary.org/obo/UBERON_0006079;subdivision of spinal cord dorsal column; -http://purl.obolibrary.org/obo/UBERON_0006081;fundus of gallbladder;gallbladder fundus -http://purl.obolibrary.org/obo/UBERON_0006082;fundus of urinary bladder;base of urinary bladder -http://purl.obolibrary.org/obo/UBERON_0006082;fundus of urinary bladder;fundus vesicae -http://purl.obolibrary.org/obo/UBERON_0006082;fundus of urinary bladder;urinary bladder base -http://purl.obolibrary.org/obo/UBERON_0006082;fundus of urinary bladder;urinary bladder fundus -http://purl.obolibrary.org/obo/UBERON_0006082;fundus of urinary bladder;urinary bladder fundus region -http://purl.obolibrary.org/obo/UBERON_0006083;perirhinal cortex;perirhinal area -http://purl.obolibrary.org/obo/UBERON_0006083;perirhinal cortex;perirhinal cortex -http://purl.obolibrary.org/obo/UBERON_0006086;stria medullaris;stria habenularis -http://purl.obolibrary.org/obo/UBERON_0006086;stria medullaris;stria medullaris (Wenzel-Wenzel) -http://purl.obolibrary.org/obo/UBERON_0006086;stria medullaris;stria medullaris of thalamus -http://purl.obolibrary.org/obo/UBERON_0006086;stria medullaris;stria medullaris thalami -http://purl.obolibrary.org/obo/UBERON_0006086;stria medullaris;stria medullaris thalamica -http://purl.obolibrary.org/obo/UBERON_0006087;internal arcuate fiber bundle;arcuate fibers medial lemniscus -http://purl.obolibrary.org/obo/UBERON_0006087;internal arcuate fiber bundle;fibrae arcuatae internae -http://purl.obolibrary.org/obo/UBERON_0006087;internal arcuate fiber bundle;internal arcuate fibers -http://purl.obolibrary.org/obo/UBERON_0006087;internal arcuate fiber bundle;internal arcuate fibres -http://purl.obolibrary.org/obo/UBERON_0006087;internal arcuate fiber bundle;internal arcuate tract -http://purl.obolibrary.org/obo/UBERON_0006088;inferior parietal cortex;inferior parietal cortex -http://purl.obolibrary.org/obo/UBERON_0006088;inferior parietal cortex;inferior parietal lobule -http://purl.obolibrary.org/obo/UBERON_0006089;dorsal external arcuate fiber bundle;dorsal external arcuate fiber bundle -http://purl.obolibrary.org/obo/UBERON_0006089;dorsal external arcuate fiber bundle;dorsal external arcuate fibers -http://purl.obolibrary.org/obo/UBERON_0006089;dorsal external arcuate fiber bundle;dorsal external arcuate tract -http://purl.obolibrary.org/obo/UBERON_0006089;dorsal external arcuate fiber bundle;dorsal superficial arcuate fibers -http://purl.obolibrary.org/obo/UBERON_0006089;dorsal external arcuate fiber bundle;external arcuate fibers -http://purl.obolibrary.org/obo/UBERON_0006090;glossopharyngeal nerve fiber bundle;central part of glossopharyngeal nerve -http://purl.obolibrary.org/obo/UBERON_0006090;glossopharyngeal nerve fiber bundle;glossopharyngeal nerve fiber bundle -http://purl.obolibrary.org/obo/UBERON_0006090;glossopharyngeal nerve fiber bundle;glossopharyngeal nerve fibers -http://purl.obolibrary.org/obo/UBERON_0006090;glossopharyngeal nerve fiber bundle;glossopharyngeal nerve tract -http://purl.obolibrary.org/obo/UBERON_0006090;glossopharyngeal nerve fiber bundle;ninth cranial nerve fibers -http://purl.obolibrary.org/obo/UBERON_0006091;inferior horn of the lateral ventricle;cornu inferius (ventriculi lateralis) -http://purl.obolibrary.org/obo/UBERON_0006091;inferior horn of the lateral ventricle;cornu inferius ventriculi lateralis -http://purl.obolibrary.org/obo/UBERON_0006091;inferior horn of the lateral ventricle;cornu temporale (ventriculi lateralis) -http://purl.obolibrary.org/obo/UBERON_0006091;inferior horn of the lateral ventricle;cornu temporale ventriculi lateralis -http://purl.obolibrary.org/obo/UBERON_0006091;inferior horn of the lateral ventricle;inferior horn of lateral ventricle -http://purl.obolibrary.org/obo/UBERON_0006091;inferior horn of the lateral ventricle;inferior horn of the lateral ventricle -http://purl.obolibrary.org/obo/UBERON_0006091;inferior horn of the lateral ventricle;temporal horn of lateral ventricle -http://purl.obolibrary.org/obo/UBERON_0006091;inferior horn of the lateral ventricle;ventriculus lateralis, cornu inferius -http://purl.obolibrary.org/obo/UBERON_0006091;inferior horn of the lateral ventricle;ventriculus lateralis, cornu temporale -http://purl.obolibrary.org/obo/UBERON_0006092;cuneus cortex;cuneate lobule -http://purl.obolibrary.org/obo/UBERON_0006092;cuneus cortex;cuneus -http://purl.obolibrary.org/obo/UBERON_0006092;cuneus cortex;cuneus cortex -http://purl.obolibrary.org/obo/UBERON_0006092;cuneus cortex;cuneus gyrus -http://purl.obolibrary.org/obo/UBERON_0006092;cuneus cortex;cuneus of hemisphere -http://purl.obolibrary.org/obo/UBERON_0006093;precuneus cortex;precuneate lobule -http://purl.obolibrary.org/obo/UBERON_0006093;precuneus cortex;precuneus -http://purl.obolibrary.org/obo/UBERON_0006093;precuneus cortex;precuneus cortex -http://purl.obolibrary.org/obo/UBERON_0006093;precuneus cortex;quadrate lobule -http://purl.obolibrary.org/obo/UBERON_0006094;superior parietal cortex;superior parietal cortex -http://purl.obolibrary.org/obo/UBERON_0006094;superior parietal cortex;superior parietal gyrus -http://purl.obolibrary.org/obo/UBERON_0006094;superior parietal cortex;superior parietal lobule -http://purl.obolibrary.org/obo/UBERON_0006094;superior parietal cortex;superior portion of parietal gyrus -http://purl.obolibrary.org/obo/UBERON_0006095;anterior transverse temporal area 41;B09-41 -http://purl.obolibrary.org/obo/UBERON_0006095;anterior transverse temporal area 41;BA41 -http://purl.obolibrary.org/obo/UBERON_0006095;anterior transverse temporal area 41;Brodmann (1909) area 41 -http://purl.obolibrary.org/obo/UBERON_0006095;anterior transverse temporal area 41;Brodmann area 41 -http://purl.obolibrary.org/obo/UBERON_0006095;anterior transverse temporal area 41;Brodmann area 41, anterior transverse temporal -http://purl.obolibrary.org/obo/UBERON_0006095;anterior transverse temporal area 41;Brodmann's area 41 -http://purl.obolibrary.org/obo/UBERON_0006095;anterior transverse temporal area 41;anterior transverse temporal area 41 -http://purl.obolibrary.org/obo/UBERON_0006095;anterior transverse temporal area 41;anterior transverse termporal area 41 -http://purl.obolibrary.org/obo/UBERON_0006095;anterior transverse temporal area 41;area 41 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0006095;anterior transverse temporal area 41;area 41 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0006095;anterior transverse temporal area 41;area temporalis transversa anterior -http://purl.obolibrary.org/obo/UBERON_0006095;anterior transverse temporal area 41;principle auditory receptive areas -http://purl.obolibrary.org/obo/UBERON_0006096;posterior transverse temporal area 42;B09-42 -http://purl.obolibrary.org/obo/UBERON_0006096;posterior transverse temporal area 42;BA42 -http://purl.obolibrary.org/obo/UBERON_0006096;posterior transverse temporal area 42;Brodmann (1909) area 42 -http://purl.obolibrary.org/obo/UBERON_0006096;posterior transverse temporal area 42;Brodmann area 42 -http://purl.obolibrary.org/obo/UBERON_0006096;posterior transverse temporal area 42;Brodmann area 42, posterior transverse temporal -http://purl.obolibrary.org/obo/UBERON_0006096;posterior transverse temporal area 42;Brodmann's area 42 -http://purl.obolibrary.org/obo/UBERON_0006096;posterior transverse temporal area 42;area 42 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0006096;posterior transverse temporal area 42;area 42 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0006096;posterior transverse temporal area 42;area temporalis transversa posterior -http://purl.obolibrary.org/obo/UBERON_0006096;posterior transverse temporal area 42;auditory association area -http://purl.obolibrary.org/obo/UBERON_0006096;posterior transverse temporal area 42;posterior transverse temporal area 42 -http://purl.obolibrary.org/obo/UBERON_0006096;posterior transverse temporal area 42;posterior transverse termporal area 42 -http://purl.obolibrary.org/obo/UBERON_0006097;ventral external arcuate fiber bundle;ventral external arcuate fiber bundle -http://purl.obolibrary.org/obo/UBERON_0006097;ventral external arcuate fiber bundle;ventral external arcuate fibers -http://purl.obolibrary.org/obo/UBERON_0006097;ventral external arcuate fiber bundle;ventral external arcuate tract -http://purl.obolibrary.org/obo/UBERON_0006098;basal nuclear complex;basal ganglia -http://purl.obolibrary.org/obo/UBERON_0006098;basal nuclear complex;basal ganglia (anatomic) -http://purl.obolibrary.org/obo/UBERON_0006098;basal nuclear complex;basal nuclei -http://purl.obolibrary.org/obo/UBERON_0006098;basal nuclear complex;basal nuclei of the forebrain -http://purl.obolibrary.org/obo/UBERON_0006098;basal nuclear complex;corpus striatum (Savel'ev) -http://purl.obolibrary.org/obo/UBERON_0006098;basal nuclear complex;ganglia basales -http://purl.obolibrary.org/obo/UBERON_0006099;Brodmann (1909) area 1;B09-1 -http://purl.obolibrary.org/obo/UBERON_0006099;Brodmann (1909) area 1;BA1 -http://purl.obolibrary.org/obo/UBERON_0006099;Brodmann (1909) area 1;Brodmann (1909) area 1 -http://purl.obolibrary.org/obo/UBERON_0006099;Brodmann (1909) area 1;Brodmann area 1 -http://purl.obolibrary.org/obo/UBERON_0006099;Brodmann (1909) area 1;Brodmann's area 1 -http://purl.obolibrary.org/obo/UBERON_0006099;Brodmann (1909) area 1;area 1 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0006099;Brodmann (1909) area 1;area 1 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0006099;Brodmann (1909) area 1;area postcentralis intermedia -http://purl.obolibrary.org/obo/UBERON_0006099;Brodmann (1909) area 1;intermediate postcentral -http://purl.obolibrary.org/obo/UBERON_0006099;Brodmann (1909) area 1;intermediate postcentral area -http://purl.obolibrary.org/obo/UBERON_0006100;Brodmann (1909) area 3;B09-3 -http://purl.obolibrary.org/obo/UBERON_0006100;Brodmann (1909) area 3;BA3 -http://purl.obolibrary.org/obo/UBERON_0006100;Brodmann (1909) area 3;Brodmann (1909) area 3 -http://purl.obolibrary.org/obo/UBERON_0006100;Brodmann (1909) area 3;Brodmann area 3 -http://purl.obolibrary.org/obo/UBERON_0006100;Brodmann (1909) area 3;Brodmann's area 3 -http://purl.obolibrary.org/obo/UBERON_0006100;Brodmann (1909) area 3;area 3 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0006100;Brodmann (1909) area 3;area 3 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0006100;Brodmann (1909) area 3;area postcentralis oralis -http://purl.obolibrary.org/obo/UBERON_0006100;Brodmann (1909) area 3;rostral postcentral -http://purl.obolibrary.org/obo/UBERON_0006100;Brodmann (1909) area 3;rostral postcentral area -http://purl.obolibrary.org/obo/UBERON_0006101;Brodmann (1909) area 24;B09-24 -http://purl.obolibrary.org/obo/UBERON_0006101;Brodmann (1909) area 24;BA24 -http://purl.obolibrary.org/obo/UBERON_0006101;Brodmann (1909) area 24;Brodmann (1909) area 24 -http://purl.obolibrary.org/obo/UBERON_0006101;Brodmann (1909) area 24;Brodmann area 24 -http://purl.obolibrary.org/obo/UBERON_0006101;Brodmann (1909) area 24;area 24 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0006101;Brodmann (1909) area 24;area 24 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0006101;Brodmann (1909) area 24;area cingularis anterior ventralis -http://purl.obolibrary.org/obo/UBERON_0006101;Brodmann (1909) area 24;ventral anterior cingulate -http://purl.obolibrary.org/obo/UBERON_0006102;Brodmann (1909) area 35;B09-35 -http://purl.obolibrary.org/obo/UBERON_0006102;Brodmann (1909) area 35;BA35 -http://purl.obolibrary.org/obo/UBERON_0006102;Brodmann (1909) area 35;Brodmann (1909) area 35 -http://purl.obolibrary.org/obo/UBERON_0006102;Brodmann (1909) area 35;Brodmann area 35 -http://purl.obolibrary.org/obo/UBERON_0006102;Brodmann (1909) area 35;Brodmann area 35, perirhinal -http://purl.obolibrary.org/obo/UBERON_0006102;Brodmann (1909) area 35;Brodmann's area 35 -http://purl.obolibrary.org/obo/UBERON_0006102;Brodmann (1909) area 35;area 35 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0006102;Brodmann (1909) area 35;area 35 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0006102;Brodmann (1909) area 35;area perirhinalis -http://purl.obolibrary.org/obo/UBERON_0006102;Brodmann (1909) area 35;perirhinal area 35 -http://purl.obolibrary.org/obo/UBERON_0006104;Brodmann (1909) area 36;B09-36 -http://purl.obolibrary.org/obo/UBERON_0006104;Brodmann (1909) area 36;BA36 -http://purl.obolibrary.org/obo/UBERON_0006104;Brodmann (1909) area 36;Brodmann (1909) area 36 -http://purl.obolibrary.org/obo/UBERON_0006104;Brodmann (1909) area 36;Brodmann area 36 -http://purl.obolibrary.org/obo/UBERON_0006104;Brodmann (1909) area 36;area 36 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0006104;Brodmann (1909) area 36;area 36 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0006104;Brodmann (1909) area 36;area ectorhinalis -http://purl.obolibrary.org/obo/UBERON_0006104;Brodmann (1909) area 36;ectorhinal -http://purl.obolibrary.org/obo/UBERON_0006104;Brodmann (1909) area 36;ectorhinal area 36 -http://purl.obolibrary.org/obo/UBERON_0006106;cochlear canal;cochlear canal -http://purl.obolibrary.org/obo/UBERON_0006106;cochlear canal;spiral canal of cochlea -http://purl.obolibrary.org/obo/UBERON_0006106;cochlear canal;wall of cochlea -http://purl.obolibrary.org/obo/UBERON_0006107;basolateral amygdaloid nuclear complex;BL -http://purl.obolibrary.org/obo/UBERON_0006107;basolateral amygdaloid nuclear complex;amygdalar basolateral nucleus -http://purl.obolibrary.org/obo/UBERON_0006107;basolateral amygdaloid nuclear complex;amygdaloid basolateral complex -http://purl.obolibrary.org/obo/UBERON_0006107;basolateral amygdaloid nuclear complex;basolateral amygdala -http://purl.obolibrary.org/obo/UBERON_0006107;basolateral amygdaloid nuclear complex;basolateral amygdaloid nuclear complex -http://purl.obolibrary.org/obo/UBERON_0006107;basolateral amygdaloid nuclear complex;basolateral complex -http://purl.obolibrary.org/obo/UBERON_0006107;basolateral amygdaloid nuclear complex;basolateral nuclear complex -http://purl.obolibrary.org/obo/UBERON_0006107;basolateral amygdaloid nuclear complex;basolateral nuclear group -http://purl.obolibrary.org/obo/UBERON_0006107;basolateral amygdaloid nuclear complex;basolateral nuclei of amygdala -http://purl.obolibrary.org/obo/UBERON_0006107;basolateral amygdaloid nuclear complex;basolateral subdivision of amygdala -http://purl.obolibrary.org/obo/UBERON_0006107;basolateral amygdaloid nuclear complex;pars basolateralis (Corpus amygdaloideum) -http://purl.obolibrary.org/obo/UBERON_0006107;basolateral amygdaloid nuclear complex;set of basolateral nuclei of amygdala -http://purl.obolibrary.org/obo/UBERON_0006107;basolateral amygdaloid nuclear complex;vicarious cortex -http://purl.obolibrary.org/obo/UBERON_0006108;corticomedial nuclear complex;CMA -http://purl.obolibrary.org/obo/UBERON_0006108;corticomedial nuclear complex;amygdalar corticomedial nucleus -http://purl.obolibrary.org/obo/UBERON_0006108;corticomedial nuclear complex;corpus amygdaloideum pars corticomedialis -http://purl.obolibrary.org/obo/UBERON_0006108;corticomedial nuclear complex;corpus amygdaloideum pars olfactoria -http://purl.obolibrary.org/obo/UBERON_0006108;corticomedial nuclear complex;corticomedial nuclear complex -http://purl.obolibrary.org/obo/UBERON_0006108;corticomedial nuclear complex;corticomedial nuclear group -http://purl.obolibrary.org/obo/UBERON_0006108;corticomedial nuclear complex;corticomedial nuclei of amygdala -http://purl.obolibrary.org/obo/UBERON_0006108;corticomedial nuclear complex;pars corticomedialis (Corpus amygdaloideum) -http://purl.obolibrary.org/obo/UBERON_0006108;corticomedial nuclear complex;set of corticomedial nuclei of amygdala -http://purl.obolibrary.org/obo/UBERON_0006114;lateral occipital cortex;gyrus occipitalis lateralis -http://purl.obolibrary.org/obo/UBERON_0006114;lateral occipital cortex;gyrus occipitalis medius (mai) -http://purl.obolibrary.org/obo/UBERON_0006114;lateral occipital cortex;gyrus occipitalis secundus -http://purl.obolibrary.org/obo/UBERON_0006114;lateral occipital cortex;lateral occipital cortex -http://purl.obolibrary.org/obo/UBERON_0006114;lateral occipital cortex;lateral occipital gyrus -http://purl.obolibrary.org/obo/UBERON_0006115;posterior column of fornix;crus fornicis -http://purl.obolibrary.org/obo/UBERON_0006115;posterior column of fornix;crus of fornix -http://purl.obolibrary.org/obo/UBERON_0006115;posterior column of fornix;fornix, crus posterius -http://purl.obolibrary.org/obo/UBERON_0006115;posterior column of fornix;posterior column of fornix -http://purl.obolibrary.org/obo/UBERON_0006115;posterior column of fornix;posterior column of fornix of forebrain -http://purl.obolibrary.org/obo/UBERON_0006115;posterior column of fornix;posterior crus of fornix -http://purl.obolibrary.org/obo/UBERON_0006115;posterior column of fornix;posterior pillar of fornix -http://purl.obolibrary.org/obo/UBERON_0006116;vagal nerve fiber bundle;central part of vagus nerve -http://purl.obolibrary.org/obo/UBERON_0006116;vagal nerve fiber bundle;tenth cranial nerve fibers -http://purl.obolibrary.org/obo/UBERON_0006116;vagal nerve fiber bundle;vagal nerve fiber bundle -http://purl.obolibrary.org/obo/UBERON_0006116;vagal nerve fiber bundle;vagal nerve fibers -http://purl.obolibrary.org/obo/UBERON_0006116;vagal nerve fiber bundle;vagal nerve tract -http://purl.obolibrary.org/obo/UBERON_0006117;accessory nerve fiber bundle;accessory nerve fiber bundle -http://purl.obolibrary.org/obo/UBERON_0006117;accessory nerve fiber bundle;accessory nerve fibers -http://purl.obolibrary.org/obo/UBERON_0006117;accessory nerve fiber bundle;accessory nerve tract -http://purl.obolibrary.org/obo/UBERON_0006117;accessory nerve fiber bundle;eleventh cranial nerve fibers -http://purl.obolibrary.org/obo/UBERON_0006118;lamina I of gray matter of spinal cord;lamina i of gray matter of spinal cord -http://purl.obolibrary.org/obo/UBERON_0006118;lamina I of gray matter of spinal cord;lamina marginalis -http://purl.obolibrary.org/obo/UBERON_0006118;lamina I of gray matter of spinal cord;lamina spinalis i -http://purl.obolibrary.org/obo/UBERON_0006118;lamina I of gray matter of spinal cord;layer of Waldeyer -http://purl.obolibrary.org/obo/UBERON_0006118;lamina I of gray matter of spinal cord;layer of waldeyer -http://purl.obolibrary.org/obo/UBERON_0006118;lamina I of gray matter of spinal cord;rexed lamina I -http://purl.obolibrary.org/obo/UBERON_0006118;lamina I of gray matter of spinal cord;rexed lamina i -http://purl.obolibrary.org/obo/UBERON_0006118;lamina I of gray matter of spinal cord;rexed layer 1 -http://purl.obolibrary.org/obo/UBERON_0006118;lamina I of gray matter of spinal cord;spinal lamina I -http://purl.obolibrary.org/obo/UBERON_0006118;lamina I of gray matter of spinal cord;spinal lamina i -http://purl.obolibrary.org/obo/UBERON_0006119;subbrachial nucleus;subbrachial nucleus -http://purl.obolibrary.org/obo/UBERON_0006119;subbrachial nucleus;tegmental area of tsai -http://purl.obolibrary.org/obo/UBERON_0006120;superior colliculus superficial gray layer;lamina II of superior colliculus -http://purl.obolibrary.org/obo/UBERON_0006120;superior colliculus superficial gray layer;lamina colliculi superioris ii -http://purl.obolibrary.org/obo/UBERON_0006120;superior colliculus superficial gray layer;layer II of superior colliculus -http://purl.obolibrary.org/obo/UBERON_0006120;superior colliculus superficial gray layer;outer gray layer of superior colliculus -http://purl.obolibrary.org/obo/UBERON_0006120;superior colliculus superficial gray layer;stratum cinereum -http://purl.obolibrary.org/obo/UBERON_0006120;superior colliculus superficial gray layer;stratum griseum superficiale -http://purl.obolibrary.org/obo/UBERON_0006120;superior colliculus superficial gray layer;stratum griseum superficiale colliculi superioris -http://purl.obolibrary.org/obo/UBERON_0006120;superior colliculus superficial gray layer;stratum griseum superficiale of superior colliculus -http://purl.obolibrary.org/obo/UBERON_0006120;superior colliculus superficial gray layer;superficial gray layer of superior colliculus -http://purl.obolibrary.org/obo/UBERON_0006120;superior colliculus superficial gray layer;superficial grey layer of superior colliculus -http://purl.obolibrary.org/obo/UBERON_0006120;superior colliculus superficial gray layer;superior colliculus superficial gray layer -http://purl.obolibrary.org/obo/UBERON_0006121;hemispheric lobule VIII;biventer 1 (HVIII) -http://purl.obolibrary.org/obo/UBERON_0006121;hemispheric lobule VIII;biventer lobule -http://purl.obolibrary.org/obo/UBERON_0006121;hemispheric lobule VIII;biventral lobule -http://purl.obolibrary.org/obo/UBERON_0006121;hemispheric lobule VIII;biventral lobule [h VIII] -http://purl.obolibrary.org/obo/UBERON_0006121;hemispheric lobule VIII;cuneiform lobe -http://purl.obolibrary.org/obo/UBERON_0006121;hemispheric lobule VIII;dorsal parafloccularis [h VIII b] -http://purl.obolibrary.org/obo/UBERON_0006121;hemispheric lobule VIII;dorsal paraflocculus -http://purl.obolibrary.org/obo/UBERON_0006121;hemispheric lobule VIII;hemispheric lobule VIII -http://purl.obolibrary.org/obo/UBERON_0006121;hemispheric lobule VIII;lobulus biventer -http://purl.obolibrary.org/obo/UBERON_0006121;hemispheric lobule VIII;lobulus biventer [h viii] -http://purl.obolibrary.org/obo/UBERON_0006121;hemispheric lobule VIII;lobulus biventralis -http://purl.obolibrary.org/obo/UBERON_0006121;hemispheric lobule VIII;lobulus parafloccularis dorsalis [h viii b] -http://purl.obolibrary.org/obo/UBERON_0006121;hemispheric lobule VIII;paraflocculus dorsalis -http://purl.obolibrary.org/obo/UBERON_0006123;horizontal limb of the diagonal band;crus horizontale striae diagonalis -http://purl.obolibrary.org/obo/UBERON_0006123;horizontal limb of the diagonal band;diagonal band horizontal limb -http://purl.obolibrary.org/obo/UBERON_0006123;horizontal limb of the diagonal band;hDBB -http://purl.obolibrary.org/obo/UBERON_0006123;horizontal limb of the diagonal band;horizontal limb of diagonal band -http://purl.obolibrary.org/obo/UBERON_0006123;horizontal limb of the diagonal band;horizontal limb of the diagonal band -http://purl.obolibrary.org/obo/UBERON_0006123;horizontal limb of the diagonal band;horizontal limb of the diagonal band of Broca -http://purl.obolibrary.org/obo/UBERON_0006124;vertical limb of the diagonal band;crus verticale striae diagonalis -http://purl.obolibrary.org/obo/UBERON_0006124;vertical limb of the diagonal band;vertical limb of diagonal band -http://purl.obolibrary.org/obo/UBERON_0006124;vertical limb of the diagonal band;vertical limb of the diagonal band -http://purl.obolibrary.org/obo/UBERON_0006124;vertical limb of the diagonal band;vertical limb of the diagonal band of Broca -http://purl.obolibrary.org/obo/UBERON_0006125;subdivision of diagonal band;diagonal band subdivision -http://purl.obolibrary.org/obo/UBERON_0006125;subdivision of diagonal band;regional part of diagonal band -http://purl.obolibrary.org/obo/UBERON_0006127;funiculus of spinal cord;spinal cord funiculus -http://purl.obolibrary.org/obo/UBERON_0006127;funiculus of spinal cord;white column of spinal cord -http://purl.obolibrary.org/obo/UBERON_0006133;funiculus of neuraxis; -http://purl.obolibrary.org/obo/UBERON_0006134;nerve fiber;nerve fibers -http://purl.obolibrary.org/obo/UBERON_0006134;nerve fiber;nerve fibre -http://purl.obolibrary.org/obo/UBERON_0006134;nerve fiber;neurofibra -http://purl.obolibrary.org/obo/UBERON_0006134;nerve fiber;neurofibrum -http://purl.obolibrary.org/obo/UBERON_0006135;myelinated nerve fiber; -http://purl.obolibrary.org/obo/UBERON_0006136;unmyelinated nerve fiber;non-myelinated nerve fiber -http://purl.obolibrary.org/obo/UBERON_0006137;proper palmar digital artery;arteriae digitales palmares propriae -http://purl.obolibrary.org/obo/UBERON_0006137;proper palmar digital artery;proper palmal digital arteries -http://purl.obolibrary.org/obo/UBERON_0006137;proper palmar digital artery;proper palmar digital arteries -http://purl.obolibrary.org/obo/UBERON_0006137;proper palmar digital artery;proper palmar digital arteries set -http://purl.obolibrary.org/obo/UBERON_0006138;plantar digital artery; -http://purl.obolibrary.org/obo/UBERON_0006139;plantar digital vein; -http://purl.obolibrary.org/obo/UBERON_0006140;palmar digital vein;palmar digital veins -http://purl.obolibrary.org/obo/UBERON_0006140;palmar digital vein;palmar digital veins set -http://purl.obolibrary.org/obo/UBERON_0006140;palmar digital vein;venae digitales palmares -http://purl.obolibrary.org/obo/UBERON_0006141;palmar digital artery; -http://purl.obolibrary.org/obo/UBERON_0006142;common plantar digital vein;common plantar vein -http://purl.obolibrary.org/obo/UBERON_0006143;proper plantar digital vein;proper plantar vein -http://purl.obolibrary.org/obo/UBERON_0006144;medial plantar digital vein;medial plantar vein -http://purl.obolibrary.org/obo/UBERON_0006145;dorsal digital artery of pes;dorsal digital artery of foot -http://purl.obolibrary.org/obo/UBERON_0006146;dorsal digital artery of manus;dorsal digital artery of hand -http://purl.obolibrary.org/obo/UBERON_0006163;dorsal digital artery;arteriae digitales dorsales -http://purl.obolibrary.org/obo/UBERON_0006163;dorsal digital artery;dorsal digital arteries -http://purl.obolibrary.org/obo/UBERON_0006163;dorsal digital artery;dorsal digital arteries set -http://purl.obolibrary.org/obo/UBERON_0006164;forelimb common dorsal digital arteries; -http://purl.obolibrary.org/obo/UBERON_0006165;median dorsal digital artery for digit 1;median dorsal digital artery for digit 01 -http://purl.obolibrary.org/obo/UBERON_0006165;median dorsal digital artery for digit 1;median dorsal digital artery for digit I -http://purl.obolibrary.org/obo/UBERON_0006166;lateral dorsal digital artery for digit 5;lateral dorsal digital artery for digit 05 -http://purl.obolibrary.org/obo/UBERON_0006166;lateral dorsal digital artery for digit 5;lateral dorsal digital artery for digit V -http://purl.obolibrary.org/obo/UBERON_0006167;forelimb proper dorsal digital arteries; -http://purl.obolibrary.org/obo/UBERON_0006168;hindlimb common dorsal digital arteries; -http://purl.obolibrary.org/obo/UBERON_0006169;hindlimb proper dorsal digital arteries; -http://purl.obolibrary.org/obo/UBERON_0006170;mesonephric capsule; -http://purl.obolibrary.org/obo/UBERON_0006171;renal sinus; -http://purl.obolibrary.org/obo/UBERON_0006172;rectal diverticulum; -http://purl.obolibrary.org/obo/UBERON_0006173;pronephric proximal tubule;pronephros proximal tubule -http://purl.obolibrary.org/obo/UBERON_0006174;pronephric sinus; -http://purl.obolibrary.org/obo/UBERON_0006175;pronephric distal tubule; -http://purl.obolibrary.org/obo/UBERON_0006182;mesonephric glomerular mesangium; -http://purl.obolibrary.org/obo/UBERON_0006183;mesonephric glomerular capillary; -http://purl.obolibrary.org/obo/UBERON_0006189;mesonephric connecting tubule; -http://purl.obolibrary.org/obo/UBERON_0006190;mesonephric distal tubule; -http://purl.obolibrary.org/obo/UBERON_0006192;mesonephric proximal tubule; -http://purl.obolibrary.org/obo/UBERON_0006194;renal sinus of right kidney;right renal sinus -http://purl.obolibrary.org/obo/UBERON_0006195;renal sinus of left kidney;left renal sinus -http://purl.obolibrary.org/obo/UBERON_0006196;mesonephric sinus; -http://purl.obolibrary.org/obo/UBERON_0006197;auricular vein;vena auriculares -http://purl.obolibrary.org/obo/UBERON_0006197;auricular vein;venae auriculares -http://purl.obolibrary.org/obo/UBERON_0006198;dorsal intercostal artery;superior intercostal artery -http://purl.obolibrary.org/obo/UBERON_0006198;dorsal intercostal artery;supreme intercostal artery -http://purl.obolibrary.org/obo/UBERON_0006199;posterior auricular vein;posterior auricular vein -http://purl.obolibrary.org/obo/UBERON_0006200;caudal humeral circumflex vein;posterior circumflex humeral vein -http://purl.obolibrary.org/obo/UBERON_0006200;caudal humeral circumflex vein;posterior humeral circumflex vein -http://purl.obolibrary.org/obo/UBERON_0006200;caudal humeral circumflex vein;vena circumflexa humeri posterior -http://purl.obolibrary.org/obo/UBERON_0006203;conchal part of pinna;concha auriculae -http://purl.obolibrary.org/obo/UBERON_0006203;conchal part of pinna;concha of auricle -http://purl.obolibrary.org/obo/UBERON_0006203;conchal part of pinna;concha of pinna -http://purl.obolibrary.org/obo/UBERON_0006204;inguinal ligament;Poupart's ligament -http://purl.obolibrary.org/obo/UBERON_0006204;inguinal ligament;Vesalius' ligament -http://purl.obolibrary.org/obo/UBERON_0006204;inguinal ligament;fallopian ligament -http://purl.obolibrary.org/obo/UBERON_0006205;pectineal ligament;Cooper's ligament (groin) -http://purl.obolibrary.org/obo/UBERON_0006205;pectineal ligament;inguinal ligament of Cooper -http://purl.obolibrary.org/obo/UBERON_0006205;pectineal ligament;ligamentum pectineale -http://purl.obolibrary.org/obo/UBERON_0006206;iridocorneal angle;anterior chamber angle -http://purl.obolibrary.org/obo/UBERON_0006207;aortico-pulmonary spiral septum;aortico-pulmonary septum -http://purl.obolibrary.org/obo/UBERON_0006207;aortico-pulmonary spiral septum;aorticopulmonary septum -http://purl.obolibrary.org/obo/UBERON_0006207;aortico-pulmonary spiral septum;septum aorticopulmonale -http://purl.obolibrary.org/obo/UBERON_0006208;auditory hillocks;auditory hillock of Hiss -http://purl.obolibrary.org/obo/UBERON_0006209;basioccipital cartilage element; -http://purl.obolibrary.org/obo/UBERON_0006210;body-wall mesenchyme; -http://purl.obolibrary.org/obo/UBERON_0006211;buccopharyngeal membrane; -http://purl.obolibrary.org/obo/UBERON_0006212;bulbo-ventricular groove;bulbo-ventricular sulcus -http://purl.obolibrary.org/obo/UBERON_0006212;bulbo-ventricular groove;bulboventricular groove -http://purl.obolibrary.org/obo/UBERON_0006212;bulbo-ventricular groove;ependymal groove -http://purl.obolibrary.org/obo/UBERON_0006212;bulbo-ventricular groove;ependymal sulcus -http://purl.obolibrary.org/obo/UBERON_0006213;carpus cartilage element; -http://purl.obolibrary.org/obo/UBERON_0006214;carpus pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0006215;rhombic lip; -http://purl.obolibrary.org/obo/UBERON_0006216;cervical sinus of His;cervical sinus -http://purl.obolibrary.org/obo/UBERON_0006216;cervical sinus of His;sinus cervicalis -http://purl.obolibrary.org/obo/UBERON_0006217;cloacal membrane;embryonic cloacal membrane -http://purl.obolibrary.org/obo/UBERON_0006218;common atrial chamber; -http://purl.obolibrary.org/obo/UBERON_0006219;deltoid pre-muscle mass; -http://purl.obolibrary.org/obo/UBERON_0006220;diencephalic part of interventricular foramen; -http://purl.obolibrary.org/obo/UBERON_0006222;future diencephalon;presumptive diencephalon -http://purl.obolibrary.org/obo/UBERON_0006223;dorsal meso-oesophagus;dorsal meso-esophagus -http://purl.obolibrary.org/obo/UBERON_0006224;elbow joint primordium; -http://purl.obolibrary.org/obo/UBERON_0006226;endolymphatic appendage; -http://purl.obolibrary.org/obo/UBERON_0006227;ethmoid bone primordium; -http://purl.obolibrary.org/obo/UBERON_0006228;exoccipital pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0006230;extrinsic ocular pre-muscle mass; -http://purl.obolibrary.org/obo/UBERON_0006231;facial bone primordium;facial bones primordia -http://purl.obolibrary.org/obo/UBERON_0006232;facio-acoustic VII-VIII preganglion complex; -http://purl.obolibrary.org/obo/UBERON_0006233;female genital tubercle;genital tubercle of female -http://purl.obolibrary.org/obo/UBERON_0006234;femur pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0006235;foregut-midgut junction; -http://purl.obolibrary.org/obo/UBERON_0006236;tetrapod frontal bone primordium;frontal bone primordium -http://purl.obolibrary.org/obo/UBERON_0006238;future brain;brain rudiment -http://purl.obolibrary.org/obo/UBERON_0006238;future brain;presumptive brain -http://purl.obolibrary.org/obo/UBERON_0006239;future central tendon; -http://purl.obolibrary.org/obo/UBERON_0006240;future forebrain;future prosencephalon -http://purl.obolibrary.org/obo/UBERON_0006240;future forebrain;presumptive forebrain -http://purl.obolibrary.org/obo/UBERON_0006240;future forebrain;presumptive prosencephalon -http://purl.obolibrary.org/obo/UBERON_0006241;future spinal cord;presumptive spinal cord -http://purl.obolibrary.org/obo/UBERON_0006241;future spinal cord;presumptive spinal cord neural keel -http://purl.obolibrary.org/obo/UBERON_0006241;future spinal cord;presumptive spinal cord neural plate -http://purl.obolibrary.org/obo/UBERON_0006241;future spinal cord;presumptive spinal cord neural rod -http://purl.obolibrary.org/obo/UBERON_0006242;gallbladder primordium;gall bladder primordium -http://purl.obolibrary.org/obo/UBERON_0006243;glossopharyngeal IX preganglion; -http://purl.obolibrary.org/obo/UBERON_0006244;hip joint primordium; -http://purl.obolibrary.org/obo/UBERON_0006245;humerus cartilage element; -http://purl.obolibrary.org/obo/UBERON_0006246;humerus pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0006247;iliac pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0006248;incus pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0006250;infundibular recess of 3rd ventricle;infundibular recess -http://purl.obolibrary.org/obo/UBERON_0006250;infundibular recess of 3rd ventricle;infundibular recess of third ventricle -http://purl.obolibrary.org/obo/UBERON_0006250;infundibular recess of 3rd ventricle;recessus infundibularis -http://purl.obolibrary.org/obo/UBERON_0006250;infundibular recess of 3rd ventricle;recessus infundibuli -http://purl.obolibrary.org/obo/UBERON_0006251;interparietal bone primordium; -http://purl.obolibrary.org/obo/UBERON_0006252;intersubcardinal venous anastomosis; -http://purl.obolibrary.org/obo/UBERON_0006253;embryonic intraretinal space;intraretinal space -http://purl.obolibrary.org/obo/UBERON_0006253;embryonic intraretinal space;intraretinal space of optic cup -http://purl.obolibrary.org/obo/UBERON_0006253;embryonic intraretinal space;intraretinal space of retina -http://purl.obolibrary.org/obo/UBERON_0006253;embryonic intraretinal space;retina intraretinal space -http://purl.obolibrary.org/obo/UBERON_0006254;ischial cartilage element; -http://purl.obolibrary.org/obo/UBERON_0006255;ischial pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0006256;knee joint primordium; -http://purl.obolibrary.org/obo/UBERON_0006257;laryngotracheal groove;laryngo-tracheal groove -http://purl.obolibrary.org/obo/UBERON_0006257;laryngotracheal groove;sulcus laryngotrachealis -http://purl.obolibrary.org/obo/UBERON_0006259;lens pit; -http://purl.obolibrary.org/obo/UBERON_0006260;lingual swellings; -http://purl.obolibrary.org/obo/UBERON_0006261;male genital tubercle;genital tubercle of male -http://purl.obolibrary.org/obo/UBERON_0006262;malleus pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0006263;Meckel's cartilage pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0006264;mouth-foregut junction; -http://purl.obolibrary.org/obo/UBERON_0006265;mural trophectoderm; -http://purl.obolibrary.org/obo/UBERON_0006266;nasolacrimal groove;naso-lacrimal groove -http://purl.obolibrary.org/obo/UBERON_0006267;notochordal plate; -http://purl.obolibrary.org/obo/UBERON_0006268;notochordal process; -http://purl.obolibrary.org/obo/UBERON_0006270;optic pit;optic sulcus -http://purl.obolibrary.org/obo/UBERON_0006271;orbital fissure; -http://purl.obolibrary.org/obo/UBERON_0006272;oronasal cavity; -http://purl.obolibrary.org/obo/UBERON_0006273;otic pit;otic cup -http://purl.obolibrary.org/obo/UBERON_0006274;tetrapod parietal bone primordium;parietal bone primordium -http://purl.obolibrary.org/obo/UBERON_0006275;pericardio-peritoneal canal; -http://purl.obolibrary.org/obo/UBERON_0006276;perioptic mesenchyme; -http://purl.obolibrary.org/obo/UBERON_0006277;pleuropericardial canals;pleuropericardial canal -http://purl.obolibrary.org/obo/UBERON_0006278;pleuropericardial folds;pleuro-pericardial folds -http://purl.obolibrary.org/obo/UBERON_0006279;pleuroperitoneal canal; -http://purl.obolibrary.org/obo/UBERON_0006280;polar trophectoderm; -http://purl.obolibrary.org/obo/UBERON_0006282;primary head vein; -http://purl.obolibrary.org/obo/UBERON_0006283;future cardiac ventricle;early heart ventricle -http://purl.obolibrary.org/obo/UBERON_0006283;future cardiac ventricle;embryonic heart ventricle -http://purl.obolibrary.org/obo/UBERON_0006283;future cardiac ventricle;future heart ventricle -http://purl.obolibrary.org/obo/UBERON_0006283;future cardiac ventricle;presumptive cardiac ventricle heart tube -http://purl.obolibrary.org/obo/UBERON_0006283;future cardiac ventricle;primitive ventricle -http://purl.obolibrary.org/obo/UBERON_0006283;future cardiac ventricle;primitive ventricle of heart -http://purl.obolibrary.org/obo/UBERON_0006283;future cardiac ventricle;primordial cardiac ventricle -http://purl.obolibrary.org/obo/UBERON_0006283;future cardiac ventricle;primordial ventricle -http://purl.obolibrary.org/obo/UBERON_0006284;early prosencephalic vesicle;prosencephalic vesicle -http://purl.obolibrary.org/obo/UBERON_0006285;pubic pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0006286;radius cartilage element; -http://purl.obolibrary.org/obo/UBERON_0006287;radius-ulna pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0006288;rib cartilage element; -http://purl.obolibrary.org/obo/UBERON_0006289;rib pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0006290;scapula cartilage element; -http://purl.obolibrary.org/obo/UBERON_0006291;scapula pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0006292;shoulder joint primordium; -http://purl.obolibrary.org/obo/UBERON_0006293;spleen primordium;spleen mesenchyme -http://purl.obolibrary.org/obo/UBERON_0006293;spleen primordium;splenic mesenchyme -http://purl.obolibrary.org/obo/UBERON_0006293;spleen primordium;splenic primordium -http://purl.obolibrary.org/obo/UBERON_0006294;stapes pre-cartilage condensation;stapedial anlage -http://purl.obolibrary.org/obo/UBERON_0006295;sternebral bone pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0006296;subcardinal vein; -http://purl.obolibrary.org/obo/UBERON_0006297;sublingual gland primordium; -http://purl.obolibrary.org/obo/UBERON_0006298;submandibular gland primordium; -http://purl.obolibrary.org/obo/UBERON_0006300;supracardinal vein; -http://purl.obolibrary.org/obo/UBERON_0006301;telencephalic part of interventricular foramen; -http://purl.obolibrary.org/obo/UBERON_0006303;tracheal diverticulum; -http://purl.obolibrary.org/obo/UBERON_0006304;future trigeminal ganglion;trigeminal V preganglion -http://purl.obolibrary.org/obo/UBERON_0006305;tunica vasculosa lentis; -http://purl.obolibrary.org/obo/UBERON_0006306;ulna cartilage element; -http://purl.obolibrary.org/obo/UBERON_0006307;urogenital membrane; -http://purl.obolibrary.org/obo/UBERON_0006309;venous vitelline plexus; -http://purl.obolibrary.org/obo/UBERON_0006310;vitelline venous plexus; -http://purl.obolibrary.org/obo/UBERON_0006311;chamber of eyeball;eye chamber -http://purl.obolibrary.org/obo/UBERON_0006311;chamber of eyeball;eyeball chamber -http://purl.obolibrary.org/obo/UBERON_0006312;ocular refractive media; -http://purl.obolibrary.org/obo/UBERON_0006314;bodily fluid;body fluid -http://purl.obolibrary.org/obo/UBERON_0006318;orbitalis muscle;musculus orbitalis -http://purl.obolibrary.org/obo/UBERON_0006318;orbitalis muscle;orbital muscle -http://purl.obolibrary.org/obo/UBERON_0006318;orbitalis muscle;orbital muscle of muller -http://purl.obolibrary.org/obo/UBERON_0006318;orbitalis muscle;orbitalis -http://purl.obolibrary.org/obo/UBERON_0006319;spinal cord reticular nucleus;spinal reticular nucleus -http://purl.obolibrary.org/obo/UBERON_0006320;inferior oblique extraocular muscle;inferior oblique -http://purl.obolibrary.org/obo/UBERON_0006320;inferior oblique extraocular muscle;inferior oblique muscle -http://purl.obolibrary.org/obo/UBERON_0006320;inferior oblique extraocular muscle;m. obliquus inferior -http://purl.obolibrary.org/obo/UBERON_0006320;inferior oblique extraocular muscle;musculus obliquus inferior -http://purl.obolibrary.org/obo/UBERON_0006320;inferior oblique extraocular muscle;musculus obliquus inferior bulbi -http://purl.obolibrary.org/obo/UBERON_0006320;inferior oblique extraocular muscle;obliquus inferior -http://purl.obolibrary.org/obo/UBERON_0006320;inferior oblique extraocular muscle;obliquus oculi inferior -http://purl.obolibrary.org/obo/UBERON_0006320;inferior oblique extraocular muscle;ventral oblique extraocular muscle -http://purl.obolibrary.org/obo/UBERON_0006321;superior oblique extraocular muscle;dorsal oblique extraocular muscle -http://purl.obolibrary.org/obo/UBERON_0006321;superior oblique extraocular muscle;musculus obliquus superior -http://purl.obolibrary.org/obo/UBERON_0006321;superior oblique extraocular muscle;obliquus superior -http://purl.obolibrary.org/obo/UBERON_0006321;superior oblique extraocular muscle;superior oblique -http://purl.obolibrary.org/obo/UBERON_0006321;superior oblique extraocular muscle;superior oblique muscle -http://purl.obolibrary.org/obo/UBERON_0006322;inferior rectus extraocular muscle;inferior rectus -http://purl.obolibrary.org/obo/UBERON_0006322;inferior rectus extraocular muscle;inferior rectus muscle -http://purl.obolibrary.org/obo/UBERON_0006322;inferior rectus extraocular muscle;m. rectus inferior -http://purl.obolibrary.org/obo/UBERON_0006322;inferior rectus extraocular muscle;musculus rectus inferior -http://purl.obolibrary.org/obo/UBERON_0006322;inferior rectus extraocular muscle;ventral rectus extraocular muscle -http://purl.obolibrary.org/obo/UBERON_0006323;superior rectus extraocular muscle;dorsal rectus extraocular muscle -http://purl.obolibrary.org/obo/UBERON_0006323;superior rectus extraocular muscle;m. rectus superior -http://purl.obolibrary.org/obo/UBERON_0006323;superior rectus extraocular muscle;musculus rectus superior -http://purl.obolibrary.org/obo/UBERON_0006323;superior rectus extraocular muscle;superior rectus -http://purl.obolibrary.org/obo/UBERON_0006323;superior rectus extraocular muscle;superior rectus muscle -http://purl.obolibrary.org/obo/UBERON_0006325;laryngeal intrinsic ligament;intrinsic ligament of larynx -http://purl.obolibrary.org/obo/UBERON_0006326;base of arytenoid;arytenoid cartilage base -http://purl.obolibrary.org/obo/UBERON_0006326;base of arytenoid;base of arytenoid -http://purl.obolibrary.org/obo/UBERON_0006326;base of arytenoid;base of arytenoid cartilage -http://purl.obolibrary.org/obo/UBERON_0006327;laryngeal extrinsic muscle;extrinsic muscle of larynx -http://purl.obolibrary.org/obo/UBERON_0006328;laryngeal intrinsic muscle;intrinsic laryngeal muscle -http://purl.obolibrary.org/obo/UBERON_0006328;laryngeal intrinsic muscle;intrinsic muscle of larynx -http://purl.obolibrary.org/obo/UBERON_0006329;superior pharyngeal constrictor;constrictor muscle of pharynx superior -http://purl.obolibrary.org/obo/UBERON_0006329;superior pharyngeal constrictor;musculus constrictor pharyngis superior -http://purl.obolibrary.org/obo/UBERON_0006329;superior pharyngeal constrictor;superior constrictor -http://purl.obolibrary.org/obo/UBERON_0006329;superior pharyngeal constrictor;superior constrictor muscle -http://purl.obolibrary.org/obo/UBERON_0006329;superior pharyngeal constrictor;superior constrictor of pharynx -http://purl.obolibrary.org/obo/UBERON_0006329;superior pharyngeal constrictor;superior constrictor pharyngeus -http://purl.obolibrary.org/obo/UBERON_0006330;anterior lingual gland;Bauhin's glands -http://purl.obolibrary.org/obo/UBERON_0006330;anterior lingual gland;Blandin's glands -http://purl.obolibrary.org/obo/UBERON_0006330;anterior lingual gland;Nuhn's glands -http://purl.obolibrary.org/obo/UBERON_0006330;anterior lingual gland;anterior lingual salivary gland -http://purl.obolibrary.org/obo/UBERON_0006330;anterior lingual gland;lingual salivary gland -http://purl.obolibrary.org/obo/UBERON_0006331;brainstem nucleus;brain stem nucleus -http://purl.obolibrary.org/obo/UBERON_0006332;nasal capsule;cartilaginous nasal capsule -http://purl.obolibrary.org/obo/UBERON_0006333;snout; -http://purl.obolibrary.org/obo/UBERON_0006334;posterior lateral line;pll -http://purl.obolibrary.org/obo/UBERON_0006337;distal early tubule;IT1 -http://purl.obolibrary.org/obo/UBERON_0006337;distal early tubule;IT2 -http://purl.obolibrary.org/obo/UBERON_0006338;lateral ventricle choroid plexus stroma; -http://purl.obolibrary.org/obo/UBERON_0006339;third ventricle choroid plexus stroma; -http://purl.obolibrary.org/obo/UBERON_0006340;fourth ventricle choroid plexus stroma; -http://purl.obolibrary.org/obo/UBERON_0006341;outer renal medulla peritubular capillary;kidney outer medulla peritubular capillary -http://purl.obolibrary.org/obo/UBERON_0006342;left subhepatic recess;left hepatic recess -http://purl.obolibrary.org/obo/UBERON_0006343;right subhepatic recess;Morison's pouch -http://purl.obolibrary.org/obo/UBERON_0006343;right subhepatic recess;hepatorenal fossa -http://purl.obolibrary.org/obo/UBERON_0006343;right subhepatic recess;hepatorenal recess of subhepatic space -http://purl.obolibrary.org/obo/UBERON_0006343;right subhepatic recess;recessus hepatorenalis -http://purl.obolibrary.org/obo/UBERON_0006343;right subhepatic recess;recessus hepatorenalis recessi subhepatici -http://purl.obolibrary.org/obo/UBERON_0006343;right subhepatic recess;right hepatic recess -http://purl.obolibrary.org/obo/UBERON_0006343;right subhepatic recess;right posterior subphrenic space -http://purl.obolibrary.org/obo/UBERON_0006343;right subhepatic recess;right subhepatic space -http://purl.obolibrary.org/obo/UBERON_0006345;stapedial artery;stapedial artery temporary -http://purl.obolibrary.org/obo/UBERON_0006347;communicating artery; -http://purl.obolibrary.org/obo/UBERON_0006349;epigastric artery; -http://purl.obolibrary.org/obo/UBERON_0006351;principal vein of forelimb; -http://purl.obolibrary.org/obo/UBERON_0006353;principal vein of hindlimb; -http://purl.obolibrary.org/obo/UBERON_0006355;superior vesical vein; -http://purl.obolibrary.org/obo/UBERON_0006356;epigastric vein; -http://purl.obolibrary.org/obo/UBERON_0006358;vasa hyaloidea propria; -http://purl.obolibrary.org/obo/UBERON_0006359;mesoduodenum; -http://purl.obolibrary.org/obo/UBERON_0006360;tongue intermolar eminence;intermolar eminence -http://purl.obolibrary.org/obo/UBERON_0006364;ureteric bud tip;ureteric tip -http://purl.obolibrary.org/obo/UBERON_0006373;perihilar interstitium; -http://purl.obolibrary.org/obo/UBERON_0006374;part of afferent arteriole forming the juxtaglomerular complex;part of afferent arteriole forming juxtaglomerular complex -http://purl.obolibrary.org/obo/UBERON_0006376;premacula segment of distal straight tubule;distal straight tubule premacula segment -http://purl.obolibrary.org/obo/UBERON_0006376;premacula segment of distal straight tubule;kidney medulla loop of Henle ascending limb thick segment -http://purl.obolibrary.org/obo/UBERON_0006376;premacula segment of distal straight tubule;medullary thick ascending limb of Henle's loop -http://purl.obolibrary.org/obo/UBERON_0006376;premacula segment of distal straight tubule;renal medulla loop of Henle ascending limb thick segment -http://purl.obolibrary.org/obo/UBERON_0006376;premacula segment of distal straight tubule;renal medulla thick ascending limb -http://purl.obolibrary.org/obo/UBERON_0006377;remnant of Rathke's pouch; -http://purl.obolibrary.org/obo/UBERON_0006378;strand of vibrissa hair;contour hair -http://purl.obolibrary.org/obo/UBERON_0006378;strand of vibrissa hair;sinus hair -http://purl.obolibrary.org/obo/UBERON_0006378;strand of vibrissa hair;touch hair -http://purl.obolibrary.org/obo/UBERON_0006378;strand of vibrissa hair;vibrissa hair -http://purl.obolibrary.org/obo/UBERON_0006428;basisphenoid bone;basisphenoid -http://purl.obolibrary.org/obo/UBERON_0006430;xiphoid cartilage;cartilage of xiphoid process -http://purl.obolibrary.org/obo/UBERON_0006430;xiphoid cartilage;xiphoid cartilage -http://purl.obolibrary.org/obo/UBERON_0006430;xiphoid cartilage;xiphoid process cartilage -http://purl.obolibrary.org/obo/UBERON_0006431;xiphoid process bone;bone tissue of xiphoid process -http://purl.obolibrary.org/obo/UBERON_0006435;os penis;baculum -http://purl.obolibrary.org/obo/UBERON_0006435;os penis;os baculum -http://purl.obolibrary.org/obo/UBERON_0006435;os penis;penile bone -http://purl.obolibrary.org/obo/UBERON_0006435;os penis;penis bone -http://purl.obolibrary.org/obo/UBERON_0006436;principal artery to forelimb; -http://purl.obolibrary.org/obo/UBERON_0006438;principal artery to hindlimb; -http://purl.obolibrary.org/obo/UBERON_0006440;os clitoris;baubellum -http://purl.obolibrary.org/obo/UBERON_0006440;os clitoris;clitoral bone -http://purl.obolibrary.org/obo/UBERON_0006440;os clitoris;clitoris bone -http://purl.obolibrary.org/obo/UBERON_0006440;os clitoris;os clitoridis -http://purl.obolibrary.org/obo/UBERON_0006442;subhepatic recess;hepatic recess -http://purl.obolibrary.org/obo/UBERON_0006442;subhepatic recess;subhepatic space -http://purl.obolibrary.org/obo/UBERON_0006443;prinicipal vein of limb; -http://purl.obolibrary.org/obo/UBERON_0006444;annulus fibrosus;anulus fibrosus -http://purl.obolibrary.org/obo/UBERON_0006444;annulus fibrosus;fibrocartilaginous ring -http://purl.obolibrary.org/obo/UBERON_0006445;caudal middle frontal gyrus;caudal middle frontal gyrus -http://purl.obolibrary.org/obo/UBERON_0006445;caudal middle frontal gyrus;posterior part of middle frontal gyrus -http://purl.obolibrary.org/obo/UBERON_0006446;rostral middle frontal gyrus;anterior part of middle frontal gyrus -http://purl.obolibrary.org/obo/UBERON_0006446;rostral middle frontal gyrus;rostral middle frontal gyrus -http://purl.obolibrary.org/obo/UBERON_0006447;fifth lumbar spinal cord segment;L5 segment -http://purl.obolibrary.org/obo/UBERON_0006447;fifth lumbar spinal cord segment;L5 spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006447;fifth lumbar spinal cord segment;fifth lumbar spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006448;first lumbar spinal cord segment;L1 segment -http://purl.obolibrary.org/obo/UBERON_0006448;first lumbar spinal cord segment;L1 spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006448;first lumbar spinal cord segment;first lumbar spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006449;third lumbar spinal cord segment;L3 segment -http://purl.obolibrary.org/obo/UBERON_0006449;third lumbar spinal cord segment;L3 spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006449;third lumbar spinal cord segment;third lumbar spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006450;second lumbar spinal cord segment;L2 spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006450;second lumbar spinal cord segment;l2 segment -http://purl.obolibrary.org/obo/UBERON_0006450;second lumbar spinal cord segment;second lumbar spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006451;fourth lumbar spinal cord segment;L4 segment -http://purl.obolibrary.org/obo/UBERON_0006451;fourth lumbar spinal cord segment;L4 spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006452;fourth thoracic spinal cord segment;T4 segment -http://purl.obolibrary.org/obo/UBERON_0006452;fourth thoracic spinal cord segment;T4 spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006453;fifth thoracic spinal cord segment;T5 spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006453;fifth thoracic spinal cord segment;fifth thoracic spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006453;fifth thoracic spinal cord segment;t5 segment -http://purl.obolibrary.org/obo/UBERON_0006454;sixth thoracic spinal cord segment;T6 spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006454;sixth thoracic spinal cord segment;sixth thoracic spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006454;sixth thoracic spinal cord segment;t6 segment -http://purl.obolibrary.org/obo/UBERON_0006455;seventh thoracic spinal cord segment;T7 spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006455;seventh thoracic spinal cord segment;seventh thoracic spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006455;seventh thoracic spinal cord segment;t7 segment -http://purl.obolibrary.org/obo/UBERON_0006456;eighth thoracic spinal cord segment;T8 spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006456;eighth thoracic spinal cord segment;eighth thoracic spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006456;eighth thoracic spinal cord segment;t8 segment -http://purl.obolibrary.org/obo/UBERON_0006457;first thoracic spinal cord segment;T1 spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006457;first thoracic spinal cord segment;first thoracic spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006457;first thoracic spinal cord segment;t1 segment -http://purl.obolibrary.org/obo/UBERON_0006458;second thoracic spinal cord segment;T2 spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006458;second thoracic spinal cord segment;second thoracic spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006458;second thoracic spinal cord segment;t2 segment -http://purl.obolibrary.org/obo/UBERON_0006459;third thoracic spinal cord segment;T3 spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006459;third thoracic spinal cord segment;t3 segment -http://purl.obolibrary.org/obo/UBERON_0006459;third thoracic spinal cord segment;third thoracic spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006460;first sacral spinal cord segment;S1 segment -http://purl.obolibrary.org/obo/UBERON_0006460;first sacral spinal cord segment;S1 spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006460;first sacral spinal cord segment;first sacral spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006461;second sacral spinal cord segment;S2 segment -http://purl.obolibrary.org/obo/UBERON_0006461;second sacral spinal cord segment;S2 spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006461;second sacral spinal cord segment;second sacral spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006462;third sacral spinal cord segment;S3 segment -http://purl.obolibrary.org/obo/UBERON_0006462;third sacral spinal cord segment;S3 spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006462;third sacral spinal cord segment;third sacral spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006463;fourth sacral spinal cord segment;S4 segment -http://purl.obolibrary.org/obo/UBERON_0006463;fourth sacral spinal cord segment;S4 spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006464;fifth sacral spinal cord segment;S5 segment -http://purl.obolibrary.org/obo/UBERON_0006464;fifth sacral spinal cord segment;S5 spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006464;fifth sacral spinal cord segment;fifth sacral spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006465;ninth thoracic spinal cord segment;T9 spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006465;ninth thoracic spinal cord segment;ninth thoracic spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006465;ninth thoracic spinal cord segment;t9 segment -http://purl.obolibrary.org/obo/UBERON_0006466;tenth thoracic spinal cord segment;T10 spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006466;tenth thoracic spinal cord segment;t10 segment -http://purl.obolibrary.org/obo/UBERON_0006466;tenth thoracic spinal cord segment;tenth thoracic spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006467;eleventh thoracic spinal cord segment;T11 spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006467;eleventh thoracic spinal cord segment;eleventh thoracic spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006467;eleventh thoracic spinal cord segment;t11 segment -http://purl.obolibrary.org/obo/UBERON_0006468;twelfth thoracic spinal cord segment;T12 spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006468;twelfth thoracic spinal cord segment;t12 segment -http://purl.obolibrary.org/obo/UBERON_0006468;twelfth thoracic spinal cord segment;twelfth thoracic spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006469;C1 segment of cervical spinal cord;C1 cervical spinal cord -http://purl.obolibrary.org/obo/UBERON_0006469;C1 segment of cervical spinal cord;C1 segment -http://purl.obolibrary.org/obo/UBERON_0006469;C1 segment of cervical spinal cord;C1 spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006469;C1 segment of cervical spinal cord;first cervical spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006470;C8 segment of cervical spinal cord;C8 segment -http://purl.obolibrary.org/obo/UBERON_0006470;C8 segment of cervical spinal cord;C8 spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006470;C8 segment of cervical spinal cord;eighth cervical spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006471;Brodmann (1909) area 5;B09-5 -http://purl.obolibrary.org/obo/UBERON_0006471;Brodmann (1909) area 5;BA5 -http://purl.obolibrary.org/obo/UBERON_0006471;Brodmann (1909) area 5;Brodmann (1909) area 5 -http://purl.obolibrary.org/obo/UBERON_0006471;Brodmann (1909) area 5;Brodmann area 5 -http://purl.obolibrary.org/obo/UBERON_0006471;Brodmann (1909) area 5;Brodmann area 5, preparietal -http://purl.obolibrary.org/obo/UBERON_0006471;Brodmann (1909) area 5;area 5 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0006471;Brodmann (1909) area 5;area praeparietalis -http://purl.obolibrary.org/obo/UBERON_0006471;Brodmann (1909) area 5;preparietal area 5 -http://purl.obolibrary.org/obo/UBERON_0006472;Brodmann (1909) area 6;B09-6 -http://purl.obolibrary.org/obo/UBERON_0006472;Brodmann (1909) area 6;BA6 -http://purl.obolibrary.org/obo/UBERON_0006472;Brodmann (1909) area 6;Brodmann (1909) area 6 -http://purl.obolibrary.org/obo/UBERON_0006472;Brodmann (1909) area 6;Brodmann area 6 -http://purl.obolibrary.org/obo/UBERON_0006472;Brodmann (1909) area 6;Brodmann area 6, agranular frontal -http://purl.obolibrary.org/obo/UBERON_0006472;Brodmann (1909) area 6;agranular frontal area 6 -http://purl.obolibrary.org/obo/UBERON_0006472;Brodmann (1909) area 6;area 6 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0006472;Brodmann (1909) area 6;area 6 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0006472;Brodmann (1909) area 6;area frontalis agranularis -http://purl.obolibrary.org/obo/UBERON_0006472;Brodmann (1909) area 6;frontal belt -http://purl.obolibrary.org/obo/UBERON_0006473;Brodmann (1909) area 18;B09-18 -http://purl.obolibrary.org/obo/UBERON_0006473;Brodmann (1909) area 18;BA18 -http://purl.obolibrary.org/obo/UBERON_0006473;Brodmann (1909) area 18;Brodmann (1909) area 18 -http://purl.obolibrary.org/obo/UBERON_0006473;Brodmann (1909) area 18;Brodmann area 18 -http://purl.obolibrary.org/obo/UBERON_0006473;Brodmann (1909) area 18;Brodmann area 18, parastriate -http://purl.obolibrary.org/obo/UBERON_0006473;Brodmann (1909) area 18;Brodmann's area 18 -http://purl.obolibrary.org/obo/UBERON_0006473;Brodmann (1909) area 18;area 18 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0006473;Brodmann (1909) area 18;area 18 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0006473;Brodmann (1909) area 18;area parastriata -http://purl.obolibrary.org/obo/UBERON_0006473;Brodmann (1909) area 18;parastriate area 18 -http://purl.obolibrary.org/obo/UBERON_0006473;Brodmann (1909) area 18;secondary visual area -http://purl.obolibrary.org/obo/UBERON_0006473;Brodmann (1909) area 18;visual area II -http://purl.obolibrary.org/obo/UBERON_0006474;Brodmann (1909) area 30;B09-30 -http://purl.obolibrary.org/obo/UBERON_0006474;Brodmann (1909) area 30;BA30 -http://purl.obolibrary.org/obo/UBERON_0006474;Brodmann (1909) area 30;Brodmann (1909) area 30 -http://purl.obolibrary.org/obo/UBERON_0006474;Brodmann (1909) area 30;Brodmann area 30 -http://purl.obolibrary.org/obo/UBERON_0006474;Brodmann (1909) area 30;Brodmann area 30, agranular retrolimbic -http://purl.obolibrary.org/obo/UBERON_0006474;Brodmann (1909) area 30;Brodmann's area 30 -http://purl.obolibrary.org/obo/UBERON_0006474;Brodmann (1909) area 30;agranular retrolimbic area 30 -http://purl.obolibrary.org/obo/UBERON_0006474;Brodmann (1909) area 30;area 30 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0006474;Brodmann (1909) area 30;area 30 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0006474;Brodmann (1909) area 30;area retrolimbica agranularis -http://purl.obolibrary.org/obo/UBERON_0006474;Brodmann (1909) area 30;area retrosplenialis agranularis -http://purl.obolibrary.org/obo/UBERON_0006475;Brodmann (1909) area 31;B09-31 -http://purl.obolibrary.org/obo/UBERON_0006475;Brodmann (1909) area 31;BA31 -http://purl.obolibrary.org/obo/UBERON_0006475;Brodmann (1909) area 31;Brodmann (1909) area 31 -http://purl.obolibrary.org/obo/UBERON_0006475;Brodmann (1909) area 31;Brodmann area 31 -http://purl.obolibrary.org/obo/UBERON_0006475;Brodmann (1909) area 31;Brodmann area 31, dorsal posterior cingulate -http://purl.obolibrary.org/obo/UBERON_0006475;Brodmann (1909) area 31;Brodmann's area 31 -http://purl.obolibrary.org/obo/UBERON_0006475;Brodmann (1909) area 31;area 31 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0006475;Brodmann (1909) area 31;area 31 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0006475;Brodmann (1909) area 31;area cingularis posterior dorsalis -http://purl.obolibrary.org/obo/UBERON_0006475;Brodmann (1909) area 31;cinguloparietal transition area -http://purl.obolibrary.org/obo/UBERON_0006475;Brodmann (1909) area 31;dorsal posterior cingulate area 31 -http://purl.obolibrary.org/obo/UBERON_0006476;Brodmann (1909) area 33;B09-33 -http://purl.obolibrary.org/obo/UBERON_0006476;Brodmann (1909) area 33;BA33 -http://purl.obolibrary.org/obo/UBERON_0006476;Brodmann (1909) area 33;Brodmann (1909) area 33 -http://purl.obolibrary.org/obo/UBERON_0006476;Brodmann (1909) area 33;Brodmann area 33 -http://purl.obolibrary.org/obo/UBERON_0006476;Brodmann (1909) area 33;Brodmann area 33, pregenual -http://purl.obolibrary.org/obo/UBERON_0006476;Brodmann (1909) area 33;Brodmann's area 33 -http://purl.obolibrary.org/obo/UBERON_0006476;Brodmann (1909) area 33;area 33 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0006476;Brodmann (1909) area 33;area 33 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0006476;Brodmann (1909) area 33;area praegenualis -http://purl.obolibrary.org/obo/UBERON_0006476;Brodmann (1909) area 33;pregenual area 33 -http://purl.obolibrary.org/obo/UBERON_0006477;Brodmann (1909) area 34;B09-34 -http://purl.obolibrary.org/obo/UBERON_0006477;Brodmann (1909) area 34;BA34 -http://purl.obolibrary.org/obo/UBERON_0006477;Brodmann (1909) area 34;Brodmann (1909) area 34 -http://purl.obolibrary.org/obo/UBERON_0006477;Brodmann (1909) area 34;Brodmann area 34 -http://purl.obolibrary.org/obo/UBERON_0006477;Brodmann (1909) area 34;Brodmann area 34, dorsal entorhinal -http://purl.obolibrary.org/obo/UBERON_0006477;Brodmann (1909) area 34;area 34 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0006477;Brodmann (1909) area 34;area 34 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0006477;Brodmann (1909) area 34;area entorhinalis dorsalis -http://purl.obolibrary.org/obo/UBERON_0006477;Brodmann (1909) area 34;dorsal entorhinal area 34 -http://purl.obolibrary.org/obo/UBERON_0006478;Brodmann (1909) area 37;B09-37 -http://purl.obolibrary.org/obo/UBERON_0006478;Brodmann (1909) area 37;BA37 -http://purl.obolibrary.org/obo/UBERON_0006478;Brodmann (1909) area 37;Brodmann (1909) area 37 -http://purl.obolibrary.org/obo/UBERON_0006478;Brodmann (1909) area 37;Brodmann area 37 -http://purl.obolibrary.org/obo/UBERON_0006478;Brodmann (1909) area 37;Brodmann area 37, occipitotemporal -http://purl.obolibrary.org/obo/UBERON_0006478;Brodmann (1909) area 37;area 37 0f brodmann -http://purl.obolibrary.org/obo/UBERON_0006478;Brodmann (1909) area 37;area 37 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0006478;Brodmann (1909) area 37;area occipitotemporalis -http://purl.obolibrary.org/obo/UBERON_0006478;Brodmann (1909) area 37;occipitotemporal area 37 -http://purl.obolibrary.org/obo/UBERON_0006479;Brodmann (1909) area 38;B09-38 -http://purl.obolibrary.org/obo/UBERON_0006479;Brodmann (1909) area 38;BA38 -http://purl.obolibrary.org/obo/UBERON_0006479;Brodmann (1909) area 38;Brodmann (1909) area 38 -http://purl.obolibrary.org/obo/UBERON_0006479;Brodmann (1909) area 38;Brodmann area 38 -http://purl.obolibrary.org/obo/UBERON_0006479;Brodmann (1909) area 38;Brodmann area 38, temporopolar -http://purl.obolibrary.org/obo/UBERON_0006479;Brodmann (1909) area 38;anterior end of the temporal lobe -http://purl.obolibrary.org/obo/UBERON_0006479;Brodmann (1909) area 38;anterior temporal lobe -http://purl.obolibrary.org/obo/UBERON_0006479;Brodmann (1909) area 38;area 38 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0006479;Brodmann (1909) area 38;area 38 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0006479;Brodmann (1909) area 38;area temporopolaris -http://purl.obolibrary.org/obo/UBERON_0006479;Brodmann (1909) area 38;temporopolar area 38 -http://purl.obolibrary.org/obo/UBERON_0006479;Brodmann (1909) area 38;temporopolar area 38 (H) -http://purl.obolibrary.org/obo/UBERON_0006480;Brodmann (1909) area 39;B09-39 -http://purl.obolibrary.org/obo/UBERON_0006480;Brodmann (1909) area 39;BA39 -http://purl.obolibrary.org/obo/UBERON_0006480;Brodmann (1909) area 39;Brodmann (1909) area 39 -http://purl.obolibrary.org/obo/UBERON_0006480;Brodmann (1909) area 39;Brodmann area 39 -http://purl.obolibrary.org/obo/UBERON_0006480;Brodmann (1909) area 39;Brodmann area 39, angular -http://purl.obolibrary.org/obo/UBERON_0006480;Brodmann (1909) area 39;angular area 39 -http://purl.obolibrary.org/obo/UBERON_0006480;Brodmann (1909) area 39;area 39 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0006480;Brodmann (1909) area 39;area 39 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0006480;Brodmann (1909) area 39;area angularis -http://purl.obolibrary.org/obo/UBERON_0006481;Brodmann (1909) area 44;B09-44 -http://purl.obolibrary.org/obo/UBERON_0006481;Brodmann (1909) area 44;BA44 -http://purl.obolibrary.org/obo/UBERON_0006481;Brodmann (1909) area 44;Brodmann (1909) area 44 -http://purl.obolibrary.org/obo/UBERON_0006481;Brodmann (1909) area 44;Brodmann area 44 -http://purl.obolibrary.org/obo/UBERON_0006481;Brodmann (1909) area 44;Brodmann area 44, opercular -http://purl.obolibrary.org/obo/UBERON_0006481;Brodmann (1909) area 44;area 44 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0006481;Brodmann (1909) area 44;area 44 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0006481;Brodmann (1909) area 44;area opercularis -http://purl.obolibrary.org/obo/UBERON_0006481;Brodmann (1909) area 44;opercular area 44 -http://purl.obolibrary.org/obo/UBERON_0006482;Brodmann (1909) area 45;B09-45 -http://purl.obolibrary.org/obo/UBERON_0006482;Brodmann (1909) area 45;BA45 -http://purl.obolibrary.org/obo/UBERON_0006482;Brodmann (1909) area 45;Brodmann (1909) area 45 -http://purl.obolibrary.org/obo/UBERON_0006482;Brodmann (1909) area 45;Brodmann area 45 -http://purl.obolibrary.org/obo/UBERON_0006482;Brodmann (1909) area 45;Brodmann area 45, triangular -http://purl.obolibrary.org/obo/UBERON_0006482;Brodmann (1909) area 45;area 45 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0006482;Brodmann (1909) area 45;area 45 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0006482;Brodmann (1909) area 45;area triangularis -http://purl.obolibrary.org/obo/UBERON_0006482;Brodmann (1909) area 45;triangular area 45 -http://purl.obolibrary.org/obo/UBERON_0006483;Brodmann (1909) area 46;B09-46 -http://purl.obolibrary.org/obo/UBERON_0006483;Brodmann (1909) area 46;BA46 -http://purl.obolibrary.org/obo/UBERON_0006483;Brodmann (1909) area 46;Brodmann (1909) area 46 -http://purl.obolibrary.org/obo/UBERON_0006483;Brodmann (1909) area 46;Brodmann area 46 -http://purl.obolibrary.org/obo/UBERON_0006483;Brodmann (1909) area 46;Brodmann area 46, middle frontal -http://purl.obolibrary.org/obo/UBERON_0006483;Brodmann (1909) area 46;area 46 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0006483;Brodmann (1909) area 46;area 46 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0006483;Brodmann (1909) area 46;area frontalis media -http://purl.obolibrary.org/obo/UBERON_0006483;Brodmann (1909) area 46;middle frontal area 46 -http://purl.obolibrary.org/obo/UBERON_0006484;Brodmann (1909) area 47;B09-47 -http://purl.obolibrary.org/obo/UBERON_0006484;Brodmann (1909) area 47;BA47 -http://purl.obolibrary.org/obo/UBERON_0006484;Brodmann (1909) area 47;Brodmann (1909) area 47 -http://purl.obolibrary.org/obo/UBERON_0006484;Brodmann (1909) area 47;Brodmann area 47 -http://purl.obolibrary.org/obo/UBERON_0006484;Brodmann (1909) area 47;Brodmann area 47, orbital -http://purl.obolibrary.org/obo/UBERON_0006484;Brodmann (1909) area 47;area 47 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0006484;Brodmann (1909) area 47;area 47 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0006484;Brodmann (1909) area 47;area orbitalis -http://purl.obolibrary.org/obo/UBERON_0006484;Brodmann (1909) area 47;orbital area 47 -http://purl.obolibrary.org/obo/UBERON_0006485;Brodmann (1909) area 48;B09-48 -http://purl.obolibrary.org/obo/UBERON_0006485;Brodmann (1909) area 48;BA48 -http://purl.obolibrary.org/obo/UBERON_0006485;Brodmann (1909) area 48;Brodmann (1909) area 48 -http://purl.obolibrary.org/obo/UBERON_0006485;Brodmann (1909) area 48;Brodmann area 48 -http://purl.obolibrary.org/obo/UBERON_0006485;Brodmann (1909) area 48;Brodmann area 48, retrosubicular -http://purl.obolibrary.org/obo/UBERON_0006485;Brodmann (1909) area 48;Brodmann's area 48 -http://purl.obolibrary.org/obo/UBERON_0006485;Brodmann (1909) area 48;area 48 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0006485;Brodmann (1909) area 48;area retrosubicularis -http://purl.obolibrary.org/obo/UBERON_0006485;Brodmann (1909) area 48;retrosubicular area 48 -http://purl.obolibrary.org/obo/UBERON_0006486;Brodmann (1909) area 52;B09-52 -http://purl.obolibrary.org/obo/UBERON_0006486;Brodmann (1909) area 52;BA52 -http://purl.obolibrary.org/obo/UBERON_0006486;Brodmann (1909) area 52;Brodmann (1909) area 52 -http://purl.obolibrary.org/obo/UBERON_0006486;Brodmann (1909) area 52;Brodmann area 52 -http://purl.obolibrary.org/obo/UBERON_0006486;Brodmann (1909) area 52;Brodmann area 52, parainsular -http://purl.obolibrary.org/obo/UBERON_0006486;Brodmann (1909) area 52;area 52 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0006486;Brodmann (1909) area 52;area parainsularis -http://purl.obolibrary.org/obo/UBERON_0006486;Brodmann (1909) area 52;parainsular area 52 -http://purl.obolibrary.org/obo/UBERON_0006487;Hadjikhani et al. (1998) visuotopic area V2d;Hadjikhani et al. (1998) visuotopic area v2d -http://purl.obolibrary.org/obo/UBERON_0006488;C3 segment of cervical spinal cord;C3 segment -http://purl.obolibrary.org/obo/UBERON_0006488;C3 segment of cervical spinal cord;C3 spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006488;C3 segment of cervical spinal cord;third cervical spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006489;C2 segment of cervical spinal cord;C2 segment -http://purl.obolibrary.org/obo/UBERON_0006489;C2 segment of cervical spinal cord;C2 spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006489;C2 segment of cervical spinal cord;second cervical spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006490;C4 segment;C4 segment -http://purl.obolibrary.org/obo/UBERON_0006490;C4 segment;C4 spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006490;C4 segment;forth cervical spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006490;C4 segment of cervical spinal cord;C4 segment -http://purl.obolibrary.org/obo/UBERON_0006490;C4 segment of cervical spinal cord;C4 spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006490;C4 segment of cervical spinal cord;forth cervical spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006491;C5 segment;C5 segment -http://purl.obolibrary.org/obo/UBERON_0006491;C5 segment;C5 spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006491;C5 segment;fifth cervical spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006491;C5 segment of cervical spinal cord;C5 segment -http://purl.obolibrary.org/obo/UBERON_0006491;C5 segment of cervical spinal cord;C5 spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006491;C5 segment of cervical spinal cord;fifth cervical spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006492;C6 segment of cervical spinal cord;C6 segment -http://purl.obolibrary.org/obo/UBERON_0006492;C6 segment of cervical spinal cord;C6 spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006492;C6 segment of cervical spinal cord;sixth cervical spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006493;C7 segment of cervical spinal cord;C7 segment -http://purl.obolibrary.org/obo/UBERON_0006493;C7 segment of cervical spinal cord;C7 spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006493;C7 segment of cervical spinal cord;seventh cervical spinal cord segment -http://purl.obolibrary.org/obo/UBERON_0006494;apex of arytenoid;apex of arytenoid cartilage -http://purl.obolibrary.org/obo/UBERON_0006494;apex of arytenoid;arytenoid cartilage apex -http://purl.obolibrary.org/obo/UBERON_0006495;osseus cochlear canal;osseous cochlear canal -http://purl.obolibrary.org/obo/UBERON_0006496;external acoustic meatus osseus part;osseous external acoustic meatus -http://purl.obolibrary.org/obo/UBERON_0006496;external acoustic meatus osseus part;osseous external acoustic tube -http://purl.obolibrary.org/obo/UBERON_0006496;external acoustic meatus osseus part;osseous part of external acoustic meatus -http://purl.obolibrary.org/obo/UBERON_0006497;interosseous muscle of pes;foot interosseous -http://purl.obolibrary.org/obo/UBERON_0006497;interosseous muscle of pes;foot interosseus muscle -http://purl.obolibrary.org/obo/UBERON_0006497;interosseous muscle of pes;interosseous of foot -http://purl.obolibrary.org/obo/UBERON_0006497;interosseous muscle of pes;pes interosseous muscle -http://purl.obolibrary.org/obo/UBERON_0006499;dorsal pes interosseous muscle;dorsal foot interosseus muscle -http://purl.obolibrary.org/obo/UBERON_0006499;dorsal pes interosseous muscle;dorsal interosseous of foot -http://purl.obolibrary.org/obo/UBERON_0006499;dorsal pes interosseous muscle;musculi interossei dorsalis pedis -http://purl.obolibrary.org/obo/UBERON_0006502;plantar interosseous muscle of pes;musculi interossei plantares -http://purl.obolibrary.org/obo/UBERON_0006502;plantar interosseous muscle of pes;plantar foot interosseus muscle -http://purl.obolibrary.org/obo/UBERON_0006502;plantar interosseous muscle of pes;plantar interosseous of foot -http://purl.obolibrary.org/obo/UBERON_0006505;palmar interosseous muscle of manus;musculi interossei palmares -http://purl.obolibrary.org/obo/UBERON_0006505;palmar interosseous muscle of manus;palmar hand interosseus muscle -http://purl.obolibrary.org/obo/UBERON_0006505;palmar interosseous muscle of manus;palmar interosseous of hand -http://purl.obolibrary.org/obo/UBERON_0006508;interosseous muscle of autopod;interosseus muscle -http://purl.obolibrary.org/obo/UBERON_0006508;interosseous muscle of autopod;m. interosseous -http://purl.obolibrary.org/obo/UBERON_0006514;pallidum;neuraxis pallidum -http://purl.obolibrary.org/obo/UBERON_0006514;pallidum;pallidum of neuraxis -http://purl.obolibrary.org/obo/UBERON_0006516;dorsal pallidum;globus pallidus dorsal part -http://purl.obolibrary.org/obo/UBERON_0006517;kidney calyx;calices renales -http://purl.obolibrary.org/obo/UBERON_0006517;kidney calyx;renal calix -http://purl.obolibrary.org/obo/UBERON_0006517;kidney calyx;renal calyx -http://purl.obolibrary.org/obo/UBERON_0006518;right lung lobe;lobe of right lung -http://purl.obolibrary.org/obo/UBERON_0006518;right lung lobe;lobe of the right lung -http://purl.obolibrary.org/obo/UBERON_0006524;alveolar system;pulmonary alveolar system -http://purl.obolibrary.org/obo/UBERON_0006525;left lung alveolar system; -http://purl.obolibrary.org/obo/UBERON_0006526;right lung alveolar system; -http://purl.obolibrary.org/obo/UBERON_0006530;seminal fluid;seminal plasma -http://purl.obolibrary.org/obo/UBERON_0006531;oculomotor muscle; -http://purl.obolibrary.org/obo/UBERON_0006532;oblique extraocular muscle; -http://purl.obolibrary.org/obo/UBERON_0006533;rectus extraocular muscle; -http://purl.obolibrary.org/obo/UBERON_0006534;renal convoluted tubule;convoluted tubule -http://purl.obolibrary.org/obo/UBERON_0006534;renal convoluted tubule;kidney convoluted tubule -http://purl.obolibrary.org/obo/UBERON_0006535;skin secretion;skin fluid/secretion -http://purl.obolibrary.org/obo/UBERON_0006536;male reproductive gland secretion;male reproductive system fluid/secretion -http://purl.obolibrary.org/obo/UBERON_0006537;female reproductive gland secretion;female reproductive system fluid/secretion -http://purl.obolibrary.org/obo/UBERON_0006538;respiratory system fluid/secretion; -http://purl.obolibrary.org/obo/UBERON_0006539;mammary gland fluid/secretion; -http://purl.obolibrary.org/obo/UBERON_0006541;outer medulla inner stripe loop of Henle; -http://purl.obolibrary.org/obo/UBERON_0006542;outer medulla outer stripe loop of Henle; -http://purl.obolibrary.org/obo/UBERON_0006544;kidney vasculature; -http://purl.obolibrary.org/obo/UBERON_0006553;renal duct; -http://purl.obolibrary.org/obo/UBERON_0006555;excretory tube; -http://purl.obolibrary.org/obo/UBERON_0006558;lymphatic part of lymphoid system;lymphatic system -http://purl.obolibrary.org/obo/UBERON_0006558;lymphatic part of lymphoid system;lymphatic tree system -http://purl.obolibrary.org/obo/UBERON_0006561;non-lymphatic part of lymphoid system;non-lymphatic lymphoid system -http://purl.obolibrary.org/obo/UBERON_0006562;pharynx;anterior part of foregut -http://purl.obolibrary.org/obo/UBERON_0006562;pharynx;pharyngeal tube -http://purl.obolibrary.org/obo/UBERON_0006563;tunica media of pulmonary trunk; -http://purl.obolibrary.org/obo/UBERON_0006564;superficial palmar arch;arcus palmaris superficialis -http://purl.obolibrary.org/obo/UBERON_0006564;superficial palmar arch;superficial palmar arch -http://purl.obolibrary.org/obo/UBERON_0006564;superficial palmar arch;superficial palmar arterial arch -http://purl.obolibrary.org/obo/UBERON_0006565;female urethral meatus;external orifice of female urethra -http://purl.obolibrary.org/obo/UBERON_0006565;female urethral meatus;external urethral orifice (female) -http://purl.obolibrary.org/obo/UBERON_0006565;female urethral meatus;female urethral meatus -http://purl.obolibrary.org/obo/UBERON_0006565;female urethral meatus;ostium urethrae externum (urethra feminina) -http://purl.obolibrary.org/obo/UBERON_0006565;female urethral meatus;urethral meatus of clitoral urethra -http://purl.obolibrary.org/obo/UBERON_0006566;left ventricle myocardium;left ventricular myocardium -http://purl.obolibrary.org/obo/UBERON_0006566;left ventricle myocardium;myocardium of left ventricle -http://purl.obolibrary.org/obo/UBERON_0006567;right ventricle myocardium;myocardium of right ventricle -http://purl.obolibrary.org/obo/UBERON_0006567;right ventricle myocardium;right ventricular myocardium -http://purl.obolibrary.org/obo/UBERON_0006568;hypothalamic nucleus;nucleus of hypothalamus -http://purl.obolibrary.org/obo/UBERON_0006569;diencephalic nucleus; -http://purl.obolibrary.org/obo/UBERON_0006570;trabecula carnea of right ventricle;trabeculae carneae (ventriculus dexter) -http://purl.obolibrary.org/obo/UBERON_0006571;trabecula carnea of left ventricle;trabeculae carneae (ventriculus sinister) -http://purl.obolibrary.org/obo/UBERON_0006574;pectinate line;linea pectinata canalis analis -http://purl.obolibrary.org/obo/UBERON_0006574;pectinate line;pectinate line of anal canal -http://purl.obolibrary.org/obo/UBERON_0006575;mantle; -http://purl.obolibrary.org/obo/UBERON_0006580;mantle cavity; -http://purl.obolibrary.org/obo/UBERON_0006581;mantle muscle; -http://purl.obolibrary.org/obo/UBERON_0006582;statolith; -http://purl.obolibrary.org/obo/UBERON_0006583;statocyst; -http://purl.obolibrary.org/obo/UBERON_0006585;vestibular organ;balance organ -http://purl.obolibrary.org/obo/UBERON_0006586;otolymph; -http://purl.obolibrary.org/obo/UBERON_0006587;ligamentum venosum;ligament of arantius -http://purl.obolibrary.org/obo/UBERON_0006587;ligamentum venosum;ligamentum venosum (ductus venosus) -http://purl.obolibrary.org/obo/UBERON_0006587;ligamentum venosum;ligamentum venosum of liver -http://purl.obolibrary.org/obo/UBERON_0006587;ligamentum venosum;ligamentum venosus -http://purl.obolibrary.org/obo/UBERON_0006588;round ligament of liver;ligamentum teres hepatis -http://purl.obolibrary.org/obo/UBERON_0006588;round ligament of liver;ligamentum teres hepatitis -http://purl.obolibrary.org/obo/UBERON_0006588;round ligament of liver;ligamentum teres of liver -http://purl.obolibrary.org/obo/UBERON_0006589;round ligament of uterus;Hunter's ligament -http://purl.obolibrary.org/obo/UBERON_0006589;round ligament of uterus;ligamentum teres of uterus -http://purl.obolibrary.org/obo/UBERON_0006589;round ligament of uterus;ligamentum teres uteri -http://purl.obolibrary.org/obo/UBERON_0006589;round ligament of uterus;round ligament of the uterus -http://purl.obolibrary.org/obo/UBERON_0006590;remnant of embryonic structure;vestigial embryonic structure -http://purl.obolibrary.org/obo/UBERON_0006591;transformed artery; -http://purl.obolibrary.org/obo/UBERON_0006592;transformed vein; -http://purl.obolibrary.org/obo/UBERON_0006594;gubernacular cord;chorda gubernaculum -http://purl.obolibrary.org/obo/UBERON_0006595;presumptive endoderm; -http://purl.obolibrary.org/obo/UBERON_0006596;presumptive blood;future blood -http://purl.obolibrary.org/obo/UBERON_0006597;quadrate bone;quadrate -http://purl.obolibrary.org/obo/UBERON_0006597;quadrate bone;quadrate bone -http://purl.obolibrary.org/obo/UBERON_0006598;presumptive structure;future structure -http://purl.obolibrary.org/obo/UBERON_0006598;presumptive structure;presumptive structures -http://purl.obolibrary.org/obo/UBERON_0006599;presumptive hypochord;future hypochord -http://purl.obolibrary.org/obo/UBERON_0006600;presumptive enteric nervous system;future enteric nervous system -http://purl.obolibrary.org/obo/UBERON_0006601;presumptive ectoderm; -http://purl.obolibrary.org/obo/UBERON_0006603;presumptive mesoderm; -http://purl.obolibrary.org/obo/UBERON_0006604;lamina orbitonasalis;laminas orbitonasalis -http://purl.obolibrary.org/obo/UBERON_0006605;tectum synoticum; -http://purl.obolibrary.org/obo/UBERON_0006606;mandibular symphysis;dentary symphysis -http://purl.obolibrary.org/obo/UBERON_0006606;mandibular symphysis;inter-dentary joint -http://purl.obolibrary.org/obo/UBERON_0006606;mandibular symphysis;inter-mandibular joint -http://purl.obolibrary.org/obo/UBERON_0006606;mandibular symphysis;mental symphysis -http://purl.obolibrary.org/obo/UBERON_0006606;mandibular symphysis;symphysis mandibulae -http://purl.obolibrary.org/obo/UBERON_0006606;mandibular symphysis;symphysis menti -http://purl.obolibrary.org/obo/UBERON_0006607;medial umbilical ligament;ligamentum umbilicale mediale -http://purl.obolibrary.org/obo/UBERON_0006608;corpus cavernosum clitoridis;cavernous body of clitoris -http://purl.obolibrary.org/obo/UBERON_0006608;corpus cavernosum clitoridis;clitoral corpus cavernosum -http://purl.obolibrary.org/obo/UBERON_0006608;corpus cavernosum clitoridis;corpus cavernosum -http://purl.obolibrary.org/obo/UBERON_0006608;corpus cavernosum clitoridis;corpus cavernosum clitoridis -http://purl.obolibrary.org/obo/UBERON_0006608;corpus cavernosum clitoridis;corpus cavernosum of clitoris -http://purl.obolibrary.org/obo/UBERON_0006609;corpus cavernosum; -http://purl.obolibrary.org/obo/UBERON_0006610;tunica albuginea; -http://purl.obolibrary.org/obo/UBERON_0006611;exoskeleton; -http://purl.obolibrary.org/obo/UBERON_0006612;shell; -http://purl.obolibrary.org/obo/UBERON_0006614;aponeurosis; -http://purl.obolibrary.org/obo/UBERON_0006615;venous sinus;blood sinus -http://purl.obolibrary.org/obo/UBERON_0006616;right external ear; -http://purl.obolibrary.org/obo/UBERON_0006617;left external ear; -http://purl.obolibrary.org/obo/UBERON_0006618;atrium auricular region;atrial appendage -http://purl.obolibrary.org/obo/UBERON_0006618;atrium auricular region;atrial auricle -http://purl.obolibrary.org/obo/UBERON_0006618;atrium auricular region;atrium appendage -http://purl.obolibrary.org/obo/UBERON_0006618;atrium auricular region;auricle of atrium -http://purl.obolibrary.org/obo/UBERON_0006618;atrium auricular region;auricle of heart -http://purl.obolibrary.org/obo/UBERON_0006618;atrium auricular region;auricula (cor) -http://purl.obolibrary.org/obo/UBERON_0006618;atrium auricular region;auricula atrii -http://purl.obolibrary.org/obo/UBERON_0006618;atrium auricular region;auricular appendage -http://purl.obolibrary.org/obo/UBERON_0006618;atrium auricular region;cardiac auricle -http://purl.obolibrary.org/obo/UBERON_0006618;atrium auricular region;heart atrial appendage -http://purl.obolibrary.org/obo/UBERON_0006618;atrium auricular region;heart atrium auriclular region -http://purl.obolibrary.org/obo/UBERON_0006630;left atrium auricular region;auricula sinistra -http://purl.obolibrary.org/obo/UBERON_0006630;left atrium auricular region;heart left atrial appendage -http://purl.obolibrary.org/obo/UBERON_0006630;left atrium auricular region;left auricle -http://purl.obolibrary.org/obo/UBERON_0006630;left atrium auricular region;left auricula -http://purl.obolibrary.org/obo/UBERON_0006630;left atrium auricular region;left auricular appendix -http://purl.obolibrary.org/obo/UBERON_0006631;right atrium auricular region;auricula dextra -http://purl.obolibrary.org/obo/UBERON_0006631;right atrium auricular region;right auricle -http://purl.obolibrary.org/obo/UBERON_0006631;right atrium auricular region;right auricula -http://purl.obolibrary.org/obo/UBERON_0006631;right atrium auricular region;right auriculur appendix -http://purl.obolibrary.org/obo/UBERON_0006632;musculo-phrenic artery;musculophrenic artery -http://purl.obolibrary.org/obo/UBERON_0006633;coracoid process of scapula;coracoid process -http://purl.obolibrary.org/obo/UBERON_0006633;coracoid process of scapula;coracoid process of the scapula -http://purl.obolibrary.org/obo/UBERON_0006634;lingual vein; -http://purl.obolibrary.org/obo/UBERON_0006635;anterior abdominal wall;ventral abdominal wall -http://purl.obolibrary.org/obo/UBERON_0006636;lumbar artery;lumbar arterial tree -http://purl.obolibrary.org/obo/UBERON_0006637;celiac trunk;Haller's tripus -http://purl.obolibrary.org/obo/UBERON_0006637;celiac trunk;coeliac trunk -http://purl.obolibrary.org/obo/UBERON_0006637;celiac trunk;coeliaco-mesenteric trunk -http://purl.obolibrary.org/obo/UBERON_0006637;celiac trunk;truncus coeliacus -http://purl.obolibrary.org/obo/UBERON_0006638;remnant of urachus;median umbilical ligament -http://purl.obolibrary.org/obo/UBERON_0006639;crus of penis;crus of penis -http://purl.obolibrary.org/obo/UBERON_0006640;crus of clitoris;clitoris crus -http://purl.obolibrary.org/obo/UBERON_0006641;appendix epididymis;appendix of epididymis -http://purl.obolibrary.org/obo/UBERON_0006641;appendix epididymis;epididymal appendix -http://purl.obolibrary.org/obo/UBERON_0006641;appendix epididymis;epididymis appendix -http://purl.obolibrary.org/obo/UBERON_0006642;muscle layer of oviduct;muscle layer of fallopian tube -http://purl.obolibrary.org/obo/UBERON_0006642;muscle layer of oviduct;muscle layer of oviduct -http://purl.obolibrary.org/obo/UBERON_0006642;muscle layer of oviduct;muscle layer of uterine tube -http://purl.obolibrary.org/obo/UBERON_0006642;muscle layer of oviduct;muscular coat of uterine tube -http://purl.obolibrary.org/obo/UBERON_0006642;muscle layer of oviduct;muscular layer of uterine tube -http://purl.obolibrary.org/obo/UBERON_0006642;muscle layer of oviduct;muscularis of uterine tube -http://purl.obolibrary.org/obo/UBERON_0006642;muscle layer of oviduct;tunica muscularis (Tuba uterina) -http://purl.obolibrary.org/obo/UBERON_0006642;muscle layer of oviduct;tunica muscularis tubae uterinae -http://purl.obolibrary.org/obo/UBERON_0006642;muscle layer of oviduct;uterine tubal muscularis -http://purl.obolibrary.org/obo/UBERON_0006643;tunica albuginea of testis;testis tunica albuginea -http://purl.obolibrary.org/obo/UBERON_0006643;tunica albuginea of testis;tunica albuginea (testis) -http://purl.obolibrary.org/obo/UBERON_0006644;tunica albuginea of ovary;overay tunica albuginea -http://purl.obolibrary.org/obo/UBERON_0006644;tunica albuginea of ovary;tunica albuginea ovarii -http://purl.obolibrary.org/obo/UBERON_0006645;adventitia of epididymis;epididymis adventitia -http://purl.obolibrary.org/obo/UBERON_0006646;muscle layer of epididymis; -http://purl.obolibrary.org/obo/UBERON_0006647;adventitia of ductus deferens;adventitia of deferent duct -http://purl.obolibrary.org/obo/UBERON_0006647;adventitia of ductus deferens;adventitia of ductus deferens -http://purl.obolibrary.org/obo/UBERON_0006647;adventitia of ductus deferens;adventitia of vas deferens -http://purl.obolibrary.org/obo/UBERON_0006647;adventitia of ductus deferens;deferent ductal adventitia -http://purl.obolibrary.org/obo/UBERON_0006647;adventitia of ductus deferens;tunica adventitia (ductus deferens) -http://purl.obolibrary.org/obo/UBERON_0006647;adventitia of ductus deferens;tunica adventitia ductus deferentis -http://purl.obolibrary.org/obo/UBERON_0006648;adventitia of seminal vesicle;adventitia of seminal gland -http://purl.obolibrary.org/obo/UBERON_0006648;adventitia of seminal vesicle;seminal vesicle adventitia -http://purl.obolibrary.org/obo/UBERON_0006648;adventitia of seminal vesicle;tunica adventitia (vesicula seminalis) -http://purl.obolibrary.org/obo/UBERON_0006648;adventitia of seminal vesicle;tunica adventitia glandulae vesiculosae -http://purl.obolibrary.org/obo/UBERON_0006649;suspensory ligament of ovary;infundibulopelvic fold -http://purl.obolibrary.org/obo/UBERON_0006649;suspensory ligament of ovary;infundibulopelvic ligament -http://purl.obolibrary.org/obo/UBERON_0006650;tunica vaginalis testis;testis tunica vaginalis -http://purl.obolibrary.org/obo/UBERON_0006650;tunica vaginalis testis;tunica vaginalis of testis -http://purl.obolibrary.org/obo/UBERON_0006651;appendix testis;appendix of testis -http://purl.obolibrary.org/obo/UBERON_0006651;appendix testis;testis appendix -http://purl.obolibrary.org/obo/UBERON_0006652;muscular layer of vagina;muscular coat of vagina -http://purl.obolibrary.org/obo/UBERON_0006652;muscular layer of vagina;tunica muscularis vaginae -http://purl.obolibrary.org/obo/UBERON_0006652;muscular layer of vagina;vaginal muscularis -http://purl.obolibrary.org/obo/UBERON_0006653;glans clitoris;clitoris glans -http://purl.obolibrary.org/obo/UBERON_0006653;glans clitoris;glans of clitoris -http://purl.obolibrary.org/obo/UBERON_0006654;perineal body;central tendon of perineum -http://purl.obolibrary.org/obo/UBERON_0006655;septum of scrotum;scrotal septum -http://purl.obolibrary.org/obo/UBERON_0006655;septum of scrotum;septum scroti -http://purl.obolibrary.org/obo/UBERON_0006656;deep dorsal vein of penis; -http://purl.obolibrary.org/obo/UBERON_0006657;glenoid fossa;cavitas glenoidalis scapulae -http://purl.obolibrary.org/obo/UBERON_0006657;glenoid fossa;cavitus glenoidalis -http://purl.obolibrary.org/obo/UBERON_0006657;glenoid fossa;glenoid cavity -http://purl.obolibrary.org/obo/UBERON_0006657;glenoid fossa;glenoid cavity of scapula -http://purl.obolibrary.org/obo/UBERON_0006657;glenoid fossa;glenoid facet -http://purl.obolibrary.org/obo/UBERON_0006658;interphalangeal joint;inter-phalangeal joint -http://purl.obolibrary.org/obo/UBERON_0006658;interphalangeal joint;inter-phalanx joint -http://purl.obolibrary.org/obo/UBERON_0006659;cruciate ligament of knee; -http://purl.obolibrary.org/obo/UBERON_0006660;muscular coat;muscular coat -http://purl.obolibrary.org/obo/UBERON_0006660;muscular coat;muscular layer -http://purl.obolibrary.org/obo/UBERON_0006660;muscular coat;muscularis -http://purl.obolibrary.org/obo/UBERON_0006660;muscular coat;muscularis externa -http://purl.obolibrary.org/obo/UBERON_0006660;muscular coat;muscularis layer -http://purl.obolibrary.org/obo/UBERON_0006660;muscular coat;muscularis propria -http://purl.obolibrary.org/obo/UBERON_0006660;muscular coat;transverse muscular fibers -http://purl.obolibrary.org/obo/UBERON_0006660;muscular coat;tunica externa -http://purl.obolibrary.org/obo/UBERON_0006660;muscular coat;tunica muscularis -http://purl.obolibrary.org/obo/UBERON_0006661;epicranial aponeurosis;aponeurosis epicranialis -http://purl.obolibrary.org/obo/UBERON_0006661;epicranial aponeurosis;aponeurosis of epicranius -http://purl.obolibrary.org/obo/UBERON_0006661;epicranial aponeurosis;epicranial aponeurosis -http://purl.obolibrary.org/obo/UBERON_0006661;epicranial aponeurosis;epicranius aponeurosis -http://purl.obolibrary.org/obo/UBERON_0006661;epicranial aponeurosis;galea aponeurotica -http://purl.obolibrary.org/obo/UBERON_0006662;musculo-phrenic vein;musculophrenic vein -http://purl.obolibrary.org/obo/UBERON_0006663;hemiazygos vein;hemi-azygos vein -http://purl.obolibrary.org/obo/UBERON_0006663;hemiazygos vein;hemiazygous vein -http://purl.obolibrary.org/obo/UBERON_0006663;hemiazygos vein;inferior hemi-azygos vein -http://purl.obolibrary.org/obo/UBERON_0006663;hemiazygos vein;vena hemiazygos -http://purl.obolibrary.org/obo/UBERON_0006664;greater palatine artery;major palatine artery -http://purl.obolibrary.org/obo/UBERON_0006665;accessory hemiazygos vein;accessory hemi-azygos vein -http://purl.obolibrary.org/obo/UBERON_0006665;accessory hemiazygos vein;superior hemi-azygos vein -http://purl.obolibrary.org/obo/UBERON_0006665;accessory hemiazygos vein;vena azygos accessoria -http://purl.obolibrary.org/obo/UBERON_0006665;accessory hemiazygos vein;vena hemiazygos accessoria -http://purl.obolibrary.org/obo/UBERON_0006666;great cerebral vein;great cerebral vein -http://purl.obolibrary.org/obo/UBERON_0006666;great cerebral vein;great cerebral vein of Galen -http://purl.obolibrary.org/obo/UBERON_0006666;great cerebral vein;vein of Galen -http://purl.obolibrary.org/obo/UBERON_0006667;pituitary fossa;cavity of hypophyseal fossa -http://purl.obolibrary.org/obo/UBERON_0006667;pituitary fossa;cavity of sella turcica -http://purl.obolibrary.org/obo/UBERON_0006667;pituitary fossa;hypophyseal fossa -http://purl.obolibrary.org/obo/UBERON_0006667;pituitary fossa;hypophysial fossa -http://purl.obolibrary.org/obo/UBERON_0006667;pituitary fossa;pituitary fossa -http://purl.obolibrary.org/obo/UBERON_0006668;carotid canal; -http://purl.obolibrary.org/obo/UBERON_0006669;alveolar canal; -http://purl.obolibrary.org/obo/UBERON_0006670;central tendon of diaphragm;central tendon -http://purl.obolibrary.org/obo/UBERON_0006670;central tendon of diaphragm;centrum tendineum -http://purl.obolibrary.org/obo/UBERON_0006670;central tendon of diaphragm;centrum tendineum diaphragmatis -http://purl.obolibrary.org/obo/UBERON_0006671;orbital fat pad;intraorbital fat pad -http://purl.obolibrary.org/obo/UBERON_0006671;orbital fat pad;orbital fat -http://purl.obolibrary.org/obo/UBERON_0006671;orbital fat pad;orbital fat body -http://purl.obolibrary.org/obo/UBERON_0006671;orbital fat pad;retrobulbar fat -http://purl.obolibrary.org/obo/UBERON_0006672;incisive canal;canales incisivi -http://purl.obolibrary.org/obo/UBERON_0006672;incisive canal;canalis incisivus -http://purl.obolibrary.org/obo/UBERON_0006673;mandibular canal; -http://purl.obolibrary.org/obo/UBERON_0006674;inguinal ring; -http://purl.obolibrary.org/obo/UBERON_0006675;venous valve;valve of vein -http://purl.obolibrary.org/obo/UBERON_0006676;muscularis mucosa;gut muscularis -http://purl.obolibrary.org/obo/UBERON_0006676;muscularis mucosa;lamina muscularis mucosa -http://purl.obolibrary.org/obo/UBERON_0006676;muscularis mucosa;laminar muscularis mucosa -http://purl.obolibrary.org/obo/UBERON_0006676;muscularis mucosa;muscularis mucosae -http://purl.obolibrary.org/obo/UBERON_0006677;surface of epithelium;epithelium surface -http://purl.obolibrary.org/obo/UBERON_0006678;foramen secundum;ostium secundum -http://purl.obolibrary.org/obo/UBERON_0006679;carina of trachea;carina tracheae -http://purl.obolibrary.org/obo/UBERON_0006679;carina of trachea;tracheal carina -http://purl.obolibrary.org/obo/UBERON_0006680;trachealis;tracheal muscle -http://purl.obolibrary.org/obo/UBERON_0006680;trachealis;trachealis muscle -http://purl.obolibrary.org/obo/UBERON_0006681;interthalamic adhesion;interthalamic connection -http://purl.obolibrary.org/obo/UBERON_0006681;interthalamic adhesion;middle commissure -http://purl.obolibrary.org/obo/UBERON_0006682;hypoglossal canal; -http://purl.obolibrary.org/obo/UBERON_0006683;posterior fontanelle;fonticulus posterior -http://purl.obolibrary.org/obo/UBERON_0006683;posterior fontanelle;occipital fontanelle -http://purl.obolibrary.org/obo/UBERON_0006683;posterior fontanelle;posterior fontanelle of skull -http://purl.obolibrary.org/obo/UBERON_0006684;sphenoidal fontanelle; -http://purl.obolibrary.org/obo/UBERON_0006685;pharyngeal tubercle; -http://purl.obolibrary.org/obo/UBERON_0006686;spinal vein;vena spinalis -http://purl.obolibrary.org/obo/UBERON_0006687;median sacral vein; -http://purl.obolibrary.org/obo/UBERON_0006688;sublingual caruncle; -http://purl.obolibrary.org/obo/UBERON_0006689;frenulum of tongue;frenulum linguae -http://purl.obolibrary.org/obo/UBERON_0006689;frenulum of tongue;frenulum linguæ -http://purl.obolibrary.org/obo/UBERON_0006689;frenulum of tongue;frenulum of the tongue -http://purl.obolibrary.org/obo/UBERON_0006689;frenulum of tongue;lingual frenulum -http://purl.obolibrary.org/obo/UBERON_0006689;frenulum of tongue;tongue frenulum -http://purl.obolibrary.org/obo/UBERON_0006690;deep dorsal vein of clitoris; -http://purl.obolibrary.org/obo/UBERON_0006691;tentorium cerebelli;cerebellar tentorium -http://purl.obolibrary.org/obo/UBERON_0006692;vertebral canal; -http://purl.obolibrary.org/obo/UBERON_0006694;cerebellum vasculature; -http://purl.obolibrary.org/obo/UBERON_0006695;mammillary axonal complex; -http://purl.obolibrary.org/obo/UBERON_0006696;mammillothalamic axonal tract;fasciculus mammillothalamicus -http://purl.obolibrary.org/obo/UBERON_0006696;mammillothalamic axonal tract;mammillothalamic fasciculus -http://purl.obolibrary.org/obo/UBERON_0006696;mammillothalamic axonal tract;mammillothalamic tract -http://purl.obolibrary.org/obo/UBERON_0006696;mammillothalamic axonal tract;vicq d'azyr's bundle -http://purl.obolibrary.org/obo/UBERON_0006697;mammillotectal axonal tract; -http://purl.obolibrary.org/obo/UBERON_0006698;mammillotegmental axonal tract;Gudden tract -http://purl.obolibrary.org/obo/UBERON_0006698;mammillotegmental axonal tract;mammillotegmental fasciculus -http://purl.obolibrary.org/obo/UBERON_0006698;mammillotegmental axonal tract;mammillotegmental tract -http://purl.obolibrary.org/obo/UBERON_0006698;mammillotegmental axonal tract;mammillotegmental tract of hypothalamus -http://purl.obolibrary.org/obo/UBERON_0006698;mammillotegmental axonal tract;von Gudden's tract -http://purl.obolibrary.org/obo/UBERON_0006699;foramen cecum of tongue;Morand's foramen -http://purl.obolibrary.org/obo/UBERON_0006699;foramen cecum of tongue;Morgagni foramen -http://purl.obolibrary.org/obo/UBERON_0006699;foramen cecum of tongue;blind foramen of tongue -http://purl.obolibrary.org/obo/UBERON_0006699;foramen cecum of tongue;cecal foramen of tongue -http://purl.obolibrary.org/obo/UBERON_0006699;foramen cecum of tongue;ductus lingualis -http://purl.obolibrary.org/obo/UBERON_0006699;foramen cecum of tongue;foramen caecum linguae -http://purl.obolibrary.org/obo/UBERON_0006699;foramen cecum of tongue;foramen cecum of tongue -http://purl.obolibrary.org/obo/UBERON_0006699;foramen cecum of tongue;foramen of Morgagni -http://purl.obolibrary.org/obo/UBERON_0006713;foramen cecum of frontal bone; -http://purl.obolibrary.org/obo/UBERON_0006714;tibiofibula;tibia-fibula -http://purl.obolibrary.org/obo/UBERON_0006714;tibiofibula;tibiofibula -http://purl.obolibrary.org/obo/UBERON_0006715;radio-ulna;radioulna -http://purl.obolibrary.org/obo/UBERON_0006715;radio-ulna;radius+ulna -http://purl.obolibrary.org/obo/UBERON_0006715;radio-ulna;radius-ulna -http://purl.obolibrary.org/obo/UBERON_0006716;mesopodium region;carpus/tarsus -http://purl.obolibrary.org/obo/UBERON_0006716;mesopodium region;mesopodial limb segment -http://purl.obolibrary.org/obo/UBERON_0006716;mesopodium region;mesopodial segment -http://purl.obolibrary.org/obo/UBERON_0006717;autopodial skeleton;autopod skeleton -http://purl.obolibrary.org/obo/UBERON_0006717;autopodial skeleton;autopodial skeleton -http://purl.obolibrary.org/obo/UBERON_0006717;autopodial skeleton;skeletal parts of autopod -http://purl.obolibrary.org/obo/UBERON_0006717;autopodial skeleton;skeleton of autopod -http://purl.obolibrary.org/obo/UBERON_0006718;medial pterygoid muscle;musculus pterygoideus internus -http://purl.obolibrary.org/obo/UBERON_0006718;medial pterygoid muscle;musculus pterygoideus medialis -http://purl.obolibrary.org/obo/UBERON_0006718;medial pterygoid muscle;pterygoid medialis -http://purl.obolibrary.org/obo/UBERON_0006718;medial pterygoid muscle;pterygoideus medial -http://purl.obolibrary.org/obo/UBERON_0006718;medial pterygoid muscle;pterygoideus medialis -http://purl.obolibrary.org/obo/UBERON_0006719;lateral pterygoid muscle;external pterygoid muscle -http://purl.obolibrary.org/obo/UBERON_0006719;lateral pterygoid muscle;lateral pteregoid -http://purl.obolibrary.org/obo/UBERON_0006719;lateral pterygoid muscle;lateral pteregoid muscle -http://purl.obolibrary.org/obo/UBERON_0006719;lateral pterygoid muscle;lateral pterygoid -http://purl.obolibrary.org/obo/UBERON_0006719;lateral pterygoid muscle;m. pterygoideus externus -http://purl.obolibrary.org/obo/UBERON_0006719;lateral pterygoid muscle;m. pterygoideus lateralis -http://purl.obolibrary.org/obo/UBERON_0006719;lateral pterygoid muscle;musculus pterygoides lateralis -http://purl.obolibrary.org/obo/UBERON_0006719;lateral pterygoid muscle;musculus pterygoideus externus -http://purl.obolibrary.org/obo/UBERON_0006719;lateral pterygoid muscle;musculus pterygoideus lateralis -http://purl.obolibrary.org/obo/UBERON_0006719;lateral pterygoid muscle;pterygoideus externus -http://purl.obolibrary.org/obo/UBERON_0006719;lateral pterygoid muscle;pterygoideus externus muscle -http://purl.obolibrary.org/obo/UBERON_0006719;lateral pterygoid muscle;pterygoideus lateral -http://purl.obolibrary.org/obo/UBERON_0006719;lateral pterygoid muscle;pterygoideus lateral muscle -http://purl.obolibrary.org/obo/UBERON_0006720;pterygoid muscle; -http://purl.obolibrary.org/obo/UBERON_0006721;alisphenoid bone;ala major (os sphenoidale) -http://purl.obolibrary.org/obo/UBERON_0006721;alisphenoid bone;alisphenoid bone -http://purl.obolibrary.org/obo/UBERON_0006721;alisphenoid bone;greater wing of sphenoid -http://purl.obolibrary.org/obo/UBERON_0006721;alisphenoid bone;greater wing of sphenoidal bone -http://purl.obolibrary.org/obo/UBERON_0006722;manubrium of malleus;malleus handle -http://purl.obolibrary.org/obo/UBERON_0006722;manubrium of malleus;manubrium of malleus -http://purl.obolibrary.org/obo/UBERON_0006723;cochlear modiolus;cochlea modiolus -http://purl.obolibrary.org/obo/UBERON_0006723;cochlear modiolus;modiolus cochleae -http://purl.obolibrary.org/obo/UBERON_0006723;cochlear modiolus;modiolus of cochlea -http://purl.obolibrary.org/obo/UBERON_0006724;osseus spiral lamina;lamina modioli cochleae -http://purl.obolibrary.org/obo/UBERON_0006724;osseus spiral lamina;lamina of modiolus cochleae -http://purl.obolibrary.org/obo/UBERON_0006724;osseus spiral lamina;lamina of modiolus of cochlea -http://purl.obolibrary.org/obo/UBERON_0006724;osseus spiral lamina;osseous spiral lamina -http://purl.obolibrary.org/obo/UBERON_0006724;osseus spiral lamina;osseous spiral lamina of cochlea -http://purl.obolibrary.org/obo/UBERON_0006724;osseus spiral lamina;spiral lamina of modiolus -http://purl.obolibrary.org/obo/UBERON_0006725;spiral ligament;ligamentum spirale ductus cochlearis -http://purl.obolibrary.org/obo/UBERON_0006725;spiral ligament;spiral cochlear ligament -http://purl.obolibrary.org/obo/UBERON_0006725;spiral ligament;spiral ligament of cochlea -http://purl.obolibrary.org/obo/UBERON_0006725;spiral ligament;spiral ligament of cochlear duct -http://purl.obolibrary.org/obo/UBERON_0006726;outer canthus;lateral canthus of eye -http://purl.obolibrary.org/obo/UBERON_0006726;outer canthus;lateral palpebral commissure -http://purl.obolibrary.org/obo/UBERON_0006727;liver left lateral lobe;lateral segment of left lobe of liver -http://purl.obolibrary.org/obo/UBERON_0006727;liver left lateral lobe;lateral segment of liver -http://purl.obolibrary.org/obo/UBERON_0006727;liver left lateral lobe;segmentum laterale (lobus hepatis sinister) -http://purl.obolibrary.org/obo/UBERON_0006728;liver left medial lobe;medial segment of left lobe of liver -http://purl.obolibrary.org/obo/UBERON_0006728;liver left medial lobe;medial segment of liver -http://purl.obolibrary.org/obo/UBERON_0006728;liver left medial lobe;segmentum mediale (lobus hepatis sinister) -http://purl.obolibrary.org/obo/UBERON_0006729;liver perisinusoidal space;Disse's space -http://purl.obolibrary.org/obo/UBERON_0006729;liver perisinusoidal space;hepatic perisinusoidal space -http://purl.obolibrary.org/obo/UBERON_0006729;liver perisinusoidal space;perisinusoidal space of Disse -http://purl.obolibrary.org/obo/UBERON_0006729;liver perisinusoidal space;space of Disse -http://purl.obolibrary.org/obo/UBERON_0006729;liver perisinusoidal space;spatium perisinusoideum -http://purl.obolibrary.org/obo/UBERON_0006742;canthus;palpebral commissure -http://purl.obolibrary.org/obo/UBERON_0006743;paleodentate of dentate nucleus;PDT -http://purl.obolibrary.org/obo/UBERON_0006743;paleodentate of dentate nucleus;paleodentate of dentate nucleus -http://purl.obolibrary.org/obo/UBERON_0006743;paleodentate of dentate nucleus;paleodentate part of dentate nucleus -http://purl.obolibrary.org/obo/UBERON_0006743;paleodentate of dentate nucleus;paleodentate portion of dentate nucleus -http://purl.obolibrary.org/obo/UBERON_0006749;superior parathyroid gland;parathyroid 4 -http://purl.obolibrary.org/obo/UBERON_0006749;superior parathyroid gland;parathyroid IV -http://purl.obolibrary.org/obo/UBERON_0006755;inferior parathyroid gland;inferior parathyroid -http://purl.obolibrary.org/obo/UBERON_0006755;inferior parathyroid gland;parathyroid 3 -http://purl.obolibrary.org/obo/UBERON_0006755;inferior parathyroid gland;parathyroid III -http://purl.obolibrary.org/obo/UBERON_0006756;median lingual swelling;median lingual swelling -http://purl.obolibrary.org/obo/UBERON_0006756;median lingual swelling;median tongue bud -http://purl.obolibrary.org/obo/UBERON_0006756;median lingual swelling;tuberculum impar -http://purl.obolibrary.org/obo/UBERON_0006756;median lingual swelling;tuberculum linguale mediale -http://purl.obolibrary.org/obo/UBERON_0006757;lateral lingual swelling; -http://purl.obolibrary.org/obo/UBERON_0006761;corneo-scleral junction;cornea limbus -http://purl.obolibrary.org/obo/UBERON_0006761;corneo-scleral junction;corneal limbus -http://purl.obolibrary.org/obo/UBERON_0006761;corneo-scleral junction;corneal-scleral limbus -http://purl.obolibrary.org/obo/UBERON_0006761;corneo-scleral junction;corneoscleral junction -http://purl.obolibrary.org/obo/UBERON_0006761;corneo-scleral junction;limbus corneae -http://purl.obolibrary.org/obo/UBERON_0006761;corneo-scleral junction;sclerocorneal junction -http://purl.obolibrary.org/obo/UBERON_0006761;corneo-scleral junction;sclerocorneal limbus -http://purl.obolibrary.org/obo/UBERON_0006762;suspensory ligament of lens;Zinn's membrane -http://purl.obolibrary.org/obo/UBERON_0006762;suspensory ligament of lens;ciliary zonule -http://purl.obolibrary.org/obo/UBERON_0006762;suspensory ligament of lens;zonule of Zinn -http://purl.obolibrary.org/obo/UBERON_0006762;suspensory ligament of lens;zonules -http://purl.obolibrary.org/obo/UBERON_0006763;epithelium of conjunctiva;conjunctiva epithelium -http://purl.obolibrary.org/obo/UBERON_0006763;epithelium of conjunctiva;conjunctival epithelium -http://purl.obolibrary.org/obo/UBERON_0006764;anterior communicating artery; -http://purl.obolibrary.org/obo/UBERON_0006765;left anterior vena cava;left superior vena cava -http://purl.obolibrary.org/obo/UBERON_0006766;right anterior vena cava;right superior vena cava -http://purl.obolibrary.org/obo/UBERON_0006767;head of femur;acetabular head -http://purl.obolibrary.org/obo/UBERON_0006767;head of femur;femoral head -http://purl.obolibrary.org/obo/UBERON_0006767;head of femur;kopf des Schenkelbeins -http://purl.obolibrary.org/obo/UBERON_0006768;epiphyseal line;epiphysial junction -http://purl.obolibrary.org/obo/UBERON_0006768;epiphyseal line;line of bony union -http://purl.obolibrary.org/obo/UBERON_0006770;apophysis; -http://purl.obolibrary.org/obo/UBERON_0006771;long bone epiphyseal plate proliferative zone;epiphyseal plate proliferative zone -http://purl.obolibrary.org/obo/UBERON_0006772;long bone epiphyseal plate hypertrophic zone;epiphyseal plate hypertrophic zone -http://purl.obolibrary.org/obo/UBERON_0006773;long bone epiphyseal plate ossification zone;epiphyseal plate ossification zone -http://purl.obolibrary.org/obo/UBERON_0006775;zone of epiphyseal plate; -http://purl.obolibrary.org/obo/UBERON_0006776;annular epiphysis;anular epiphysis -http://purl.obolibrary.org/obo/UBERON_0006777;tectal plate;lamina quadrigemina -http://purl.obolibrary.org/obo/UBERON_0006777;tectal plate;quadrigeminal plate -http://purl.obolibrary.org/obo/UBERON_0006779;superficial white layer of superior colliculus;lamina III of superior colliculus -http://purl.obolibrary.org/obo/UBERON_0006779;superficial white layer of superior colliculus;lamina colliculi superioris iii -http://purl.obolibrary.org/obo/UBERON_0006779;superficial white layer of superior colliculus;layer III of superior colliculus -http://purl.obolibrary.org/obo/UBERON_0006779;superficial white layer of superior colliculus;optic layer -http://purl.obolibrary.org/obo/UBERON_0006779;superficial white layer of superior colliculus;optic layer of superior colliculus -http://purl.obolibrary.org/obo/UBERON_0006779;superficial white layer of superior colliculus;stratum opticum colliculi superioris -http://purl.obolibrary.org/obo/UBERON_0006780;zonal layer of superior colliculus;lamina I of superior colliculus -http://purl.obolibrary.org/obo/UBERON_0006780;zonal layer of superior colliculus;lamina colliculi superioris I -http://purl.obolibrary.org/obo/UBERON_0006780;zonal layer of superior colliculus;layer I of superior colliculus -http://purl.obolibrary.org/obo/UBERON_0006780;zonal layer of superior colliculus;stratum zonale colliculi superioris -http://purl.obolibrary.org/obo/UBERON_0006780;zonal layer of superior colliculus;stratum zonale of midbrain -http://purl.obolibrary.org/obo/UBERON_0006780;zonal layer of superior colliculus;stratum zonale of superior colliculus -http://purl.obolibrary.org/obo/UBERON_0006782;stratum lemnisci of superior colliculus; -http://purl.obolibrary.org/obo/UBERON_0006783;layer of superior colliculus;cytoarchitectural part of superior colliculus -http://purl.obolibrary.org/obo/UBERON_0006783;layer of superior colliculus;layer of optic tectum -http://purl.obolibrary.org/obo/UBERON_0006783;layer of superior colliculus;tectal layer -http://purl.obolibrary.org/obo/UBERON_0006785;gray matter layer of superior colliculus;gray matter of superior colliculus -http://purl.obolibrary.org/obo/UBERON_0006786;white matter of superior colliculus;predominantly white regional part of superior colliculus -http://purl.obolibrary.org/obo/UBERON_0006786;white matter of superior colliculus;white matter layer of superior colliculus -http://purl.obolibrary.org/obo/UBERON_0006787;middle white layer of superior colliculus;intermediate white layer -http://purl.obolibrary.org/obo/UBERON_0006787;middle white layer of superior colliculus;intermediate white layer of superior colliculus -http://purl.obolibrary.org/obo/UBERON_0006787;middle white layer of superior colliculus;lamina V of superior colliculus -http://purl.obolibrary.org/obo/UBERON_0006787;middle white layer of superior colliculus;lamina colliculi superioris v -http://purl.obolibrary.org/obo/UBERON_0006787;middle white layer of superior colliculus;layer V of superior colliculus -http://purl.obolibrary.org/obo/UBERON_0006787;middle white layer of superior colliculus;stratum album intermediale of superior colliculus -http://purl.obolibrary.org/obo/UBERON_0006787;middle white layer of superior colliculus;stratum medullare intermedium colliculi superioris -http://purl.obolibrary.org/obo/UBERON_0006788;middle gray layer of superior colliculus;intermediate gray layer -http://purl.obolibrary.org/obo/UBERON_0006788;middle gray layer of superior colliculus;intermediate grey layer of superior colliculus -http://purl.obolibrary.org/obo/UBERON_0006788;middle gray layer of superior colliculus;lamina IV of superior colliculus -http://purl.obolibrary.org/obo/UBERON_0006788;middle gray layer of superior colliculus;lamina colliculi superioris iv -http://purl.obolibrary.org/obo/UBERON_0006788;middle gray layer of superior colliculus;layer IV of superior colliculus -http://purl.obolibrary.org/obo/UBERON_0006788;middle gray layer of superior colliculus;stratum griseum intermediale -http://purl.obolibrary.org/obo/UBERON_0006788;middle gray layer of superior colliculus;stratum griseum intermediale of superior colliculus -http://purl.obolibrary.org/obo/UBERON_0006788;middle gray layer of superior colliculus;stratum griseum intermedium colliculi superioris -http://purl.obolibrary.org/obo/UBERON_0006788;middle gray layer of superior colliculus;stratum griseum mediale -http://purl.obolibrary.org/obo/UBERON_0006789;deep gray layer of superior colliculus;deep grey layer of superior colliculus -http://purl.obolibrary.org/obo/UBERON_0006789;deep gray layer of superior colliculus;lamina VI of superior colliculus -http://purl.obolibrary.org/obo/UBERON_0006789;deep gray layer of superior colliculus;lamina colliculi superioris vi -http://purl.obolibrary.org/obo/UBERON_0006789;deep gray layer of superior colliculus;layer VI of superior colliculus -http://purl.obolibrary.org/obo/UBERON_0006789;deep gray layer of superior colliculus;stratum griseum profundum -http://purl.obolibrary.org/obo/UBERON_0006789;deep gray layer of superior colliculus;stratum griseum profundum colliculi superioris -http://purl.obolibrary.org/obo/UBERON_0006789;deep gray layer of superior colliculus;stratum griseum profundum of superior colliculus -http://purl.obolibrary.org/obo/UBERON_0006790;deep white layer of superior colliculus;lamina VII of superior colliculus -http://purl.obolibrary.org/obo/UBERON_0006790;deep white layer of superior colliculus;lamina colliculi superioris vii -http://purl.obolibrary.org/obo/UBERON_0006790;deep white layer of superior colliculus;layer VII of superior colliculus -http://purl.obolibrary.org/obo/UBERON_0006790;deep white layer of superior colliculus;stratum album profundum -http://purl.obolibrary.org/obo/UBERON_0006790;deep white layer of superior colliculus;stratum album profundum of superior colliculus -http://purl.obolibrary.org/obo/UBERON_0006790;deep white layer of superior colliculus;stratum medullare profundum colliculi superioris -http://purl.obolibrary.org/obo/UBERON_0006791;superficial layer of superior colliculus;superficial gray and white zone -http://purl.obolibrary.org/obo/UBERON_0006792;intermediate layer of superior colliculus;central zone of the optic tectum -http://purl.obolibrary.org/obo/UBERON_0006793;deep layer of superior colliculus; -http://purl.obolibrary.org/obo/UBERON_0006794;visual processing part of nervous system;optic lobe -http://purl.obolibrary.org/obo/UBERON_0006795;arthropod optic lobe; -http://purl.obolibrary.org/obo/UBERON_0006796;cephalopod optic lobe; -http://purl.obolibrary.org/obo/UBERON_0006798;efferent nerve;nervus efferente -http://purl.obolibrary.org/obo/UBERON_0006799;glandular epithelium; -http://purl.obolibrary.org/obo/UBERON_0006800;anatomical line; -http://purl.obolibrary.org/obo/UBERON_0006801;proximal head of humerus;head of humerus -http://purl.obolibrary.org/obo/UBERON_0006802;acetabular rim; -http://purl.obolibrary.org/obo/UBERON_0006803;obturator foramen;foramen obturatorium -http://purl.obolibrary.org/obo/UBERON_0006804;reticular tissue;reticular connective tissue -http://purl.obolibrary.org/obo/UBERON_0006804;reticular tissue;textus connectivus reticularis -http://purl.obolibrary.org/obo/UBERON_0006805;sternal end of clavicle;extremitas sternalis (clavicula) -http://purl.obolibrary.org/obo/UBERON_0006805;sternal end of clavicle;extremitas sternalis claviculae -http://purl.obolibrary.org/obo/UBERON_0006805;sternal end of clavicle;medial end of clavicle -http://purl.obolibrary.org/obo/UBERON_0006806;entepicondyle of humerus;entepicondyle -http://purl.obolibrary.org/obo/UBERON_0006807;ectepicondyle of humerus;epicondylus lateralis (humerus) -http://purl.obolibrary.org/obo/UBERON_0006810;olecranon;olecranon process of ulna -http://purl.obolibrary.org/obo/UBERON_0006811;occipital condyle; -http://purl.obolibrary.org/obo/UBERON_0006812;mental foramen;mental foramina -http://purl.obolibrary.org/obo/UBERON_0006813;nasal skeleton;skeleton of nose -http://purl.obolibrary.org/obo/UBERON_0006815;areolar connective tissue;loose areolar connective tissue -http://purl.obolibrary.org/obo/UBERON_0006820;body of sternum;gladiolus of sternum -http://purl.obolibrary.org/obo/UBERON_0006820;body of sternum;mesosternum -http://purl.obolibrary.org/obo/UBERON_0006820;body of sternum;sternal body -http://purl.obolibrary.org/obo/UBERON_0006820;body of sternum;sternum body -http://purl.obolibrary.org/obo/UBERON_0006821;cutaneous muscle; -http://purl.obolibrary.org/obo/UBERON_0006822;proximal epiphysis of ulna;caput ulnae -http://purl.obolibrary.org/obo/UBERON_0006822;proximal epiphysis of ulna;head of ulna -http://purl.obolibrary.org/obo/UBERON_0006822;proximal epiphysis of ulna;proximal end of ulna -http://purl.obolibrary.org/obo/UBERON_0006822;proximal epiphysis of ulna;upper end of ulna -http://purl.obolibrary.org/obo/UBERON_0006828;trabecula carnea of atrium; -http://purl.obolibrary.org/obo/UBERON_0006829;remnant of left anterior vena cava; -http://purl.obolibrary.org/obo/UBERON_0006831;pre-tracheal muscle;pretracheal muscle -http://purl.obolibrary.org/obo/UBERON_0006832;lumen of open tracheal system trachea; -http://purl.obolibrary.org/obo/UBERON_0006833;lumen of trachea;lumen of cartilaginous trachea -http://purl.obolibrary.org/obo/UBERON_0006833;lumen of trachea;tracheal lumen -http://purl.obolibrary.org/obo/UBERON_0006834;uterus or analog; -http://purl.obolibrary.org/obo/UBERON_0006836;medial tibial tarsal bone; -http://purl.obolibrary.org/obo/UBERON_0006837;tegmen tympani;paries tegmentalis cavi tympani -http://purl.obolibrary.org/obo/UBERON_0006837;tegmen tympani;tegmental roof of tympanic cavity -http://purl.obolibrary.org/obo/UBERON_0006837;tegmen tympani;tegmental wall of tympanic cavity -http://purl.obolibrary.org/obo/UBERON_0006838;ventral ramus of spinal nerve;anterior primary ramus of spinal nerve -http://purl.obolibrary.org/obo/UBERON_0006838;ventral ramus of spinal nerve;anterior ramus of spinal nerve -http://purl.obolibrary.org/obo/UBERON_0006838;ventral ramus of spinal nerve;ventral ramus of spinal nerve -http://purl.obolibrary.org/obo/UBERON_0006839;dorsal ramus of spinal nerve;posterior primary ramus -http://purl.obolibrary.org/obo/UBERON_0006839;dorsal ramus of spinal nerve;posterior ramus of spinal nerve -http://purl.obolibrary.org/obo/UBERON_0006839;dorsal ramus of spinal nerve;ramus posterior nervi spinalis -http://purl.obolibrary.org/obo/UBERON_0006840;nucleus of lateral lemniscus;lateral lemniscus nuclei -http://purl.obolibrary.org/obo/UBERON_0006840;nucleus of lateral lemniscus;lateral lemniscus nucleus -http://purl.obolibrary.org/obo/UBERON_0006840;nucleus of lateral lemniscus;nuclei lemnisci lateralis -http://purl.obolibrary.org/obo/UBERON_0006840;nucleus of lateral lemniscus;nuclei of lateral lemniscus -http://purl.obolibrary.org/obo/UBERON_0006840;nucleus of lateral lemniscus;nucleus of the lateral lemniscus -http://purl.obolibrary.org/obo/UBERON_0006840;nucleus of lateral lemniscus;set of nuclei of lateral lemniscus -http://purl.obolibrary.org/obo/UBERON_0006841;central vein of liver;terminal branch of hepatic vein -http://purl.obolibrary.org/obo/UBERON_0006841;central vein of liver;terminal hepatic venule -http://purl.obolibrary.org/obo/UBERON_0006841;central vein of liver;vena centralis (hepar) -http://purl.obolibrary.org/obo/UBERON_0006842;lymphatic capillary;lymph capillary -http://purl.obolibrary.org/obo/UBERON_0006843;root of cranial nerve;cranial nerve root -http://purl.obolibrary.org/obo/UBERON_0006843;root of cranial nerve;cranial neural root -http://purl.obolibrary.org/obo/UBERON_0006844;cusp of tooth;tooth cusp -http://purl.obolibrary.org/obo/UBERON_0006845;abductor muscle; -http://purl.obolibrary.org/obo/UBERON_0006846;surface groove; -http://purl.obolibrary.org/obo/UBERON_0006847;cerebellar commissure;commissura cerebelli -http://purl.obolibrary.org/obo/UBERON_0006847;cerebellar commissure;commissure of cerebellum -http://purl.obolibrary.org/obo/UBERON_0006848;posterior pretectal nucleus; -http://purl.obolibrary.org/obo/UBERON_0006849;scapula;scapulae -http://purl.obolibrary.org/obo/UBERON_0006851;renal cortex peritubular capillary;kidney cortex peritubular capillary -http://purl.obolibrary.org/obo/UBERON_0006853;renal cortex tubule;kidney cortex tubule -http://purl.obolibrary.org/obo/UBERON_0006854;distal straight tubule postmacula segment;cortical thick ascending limb of Henle's loop -http://purl.obolibrary.org/obo/UBERON_0006854;distal straight tubule postmacula segment;kidney cortex loop of Henle ascending limb thick segment -http://purl.obolibrary.org/obo/UBERON_0006854;distal straight tubule postmacula segment;renal cortex loop of Henle ascending limb thick segment -http://purl.obolibrary.org/obo/UBERON_0006854;distal straight tubule postmacula segment;renal cortex thick ascending limb -http://purl.obolibrary.org/obo/UBERON_0006855;muscular coat of ureter;muscular coat of ureter -http://purl.obolibrary.org/obo/UBERON_0006855;muscular coat of ureter;muscular layer of ureter -http://purl.obolibrary.org/obo/UBERON_0006855;muscular coat of ureter;muscularis of ureter -http://purl.obolibrary.org/obo/UBERON_0006855;muscular coat of ureter;tunica muscularis (ureter) -http://purl.obolibrary.org/obo/UBERON_0006855;muscular coat of ureter;tunica muscularis ureteris -http://purl.obolibrary.org/obo/UBERON_0006856;interrenal gland; -http://purl.obolibrary.org/obo/UBERON_0006857;interrenal primordium; -http://purl.obolibrary.org/obo/UBERON_0006858;adrenal/interrenal gland;adrenal - interrenal gland -http://purl.obolibrary.org/obo/UBERON_0006858;adrenal/interrenal gland;adrenal gland - interrenal gland -http://purl.obolibrary.org/obo/UBERON_0006858;adrenal/interrenal gland;adrenal gland/interrenal tissue -http://purl.obolibrary.org/obo/UBERON_0006858;adrenal/interrenal gland;suprarenal gland - interrenal gland -http://purl.obolibrary.org/obo/UBERON_0006859;swim bladder bud; -http://purl.obolibrary.org/obo/UBERON_0006860;swim bladder;gas bladder -http://purl.obolibrary.org/obo/UBERON_0006860;swim bladder;swimbladder -http://purl.obolibrary.org/obo/UBERON_0006861;diaphysis proper;body proper of long bone -http://purl.obolibrary.org/obo/UBERON_0006861;diaphysis proper;shaft proper of long bone -http://purl.obolibrary.org/obo/UBERON_0006862;diaphysis of femur;body of femur -http://purl.obolibrary.org/obo/UBERON_0006862;diaphysis of femur;corpus femoris -http://purl.obolibrary.org/obo/UBERON_0006862;diaphysis of femur;femoral diaphysis -http://purl.obolibrary.org/obo/UBERON_0006862;diaphysis of femur;femoral shaft -http://purl.obolibrary.org/obo/UBERON_0006862;diaphysis of femur;shaft of femur -http://purl.obolibrary.org/obo/UBERON_0006863;proximal metaphysis of femur; -http://purl.obolibrary.org/obo/UBERON_0006864;distal metaphysis of femur; -http://purl.obolibrary.org/obo/UBERON_0006865;metaphysis of femur;femoral metaphysis -http://purl.obolibrary.org/obo/UBERON_0006866;terminal part of digestive tract; -http://purl.obolibrary.org/obo/UBERON_0006867;anal part of perineum;anal triangle -http://purl.obolibrary.org/obo/UBERON_0006868;seminal fluid secreting gland; -http://purl.obolibrary.org/obo/UBERON_0006869;electric organ; -http://purl.obolibrary.org/obo/UBERON_0006870;endostyle; -http://purl.obolibrary.org/obo/UBERON_0006871;embryonic footplate; -http://purl.obolibrary.org/obo/UBERON_0006872;handplate apical ectodermal ridge; -http://purl.obolibrary.org/obo/UBERON_0006875;embryonic handplate;hand plate -http://purl.obolibrary.org/obo/UBERON_0006875;embryonic handplate;handplate -http://purl.obolibrary.org/obo/UBERON_0006876;vasculature of organ;organ vasculature -http://purl.obolibrary.org/obo/UBERON_0006876;vasculature of organ;set of blood vessels of organ -http://purl.obolibrary.org/obo/UBERON_0006877;vasculature of liver;hepatic vasculature -http://purl.obolibrary.org/obo/UBERON_0006878;decidua parietalis;decidual parietalis -http://purl.obolibrary.org/obo/UBERON_0006904;head mesenchyme from mesoderm;head mesenchyme derived from mesoderm -http://purl.obolibrary.org/obo/UBERON_0006904;head mesenchyme from mesoderm;head mesenchyme from head mesoderm -http://purl.obolibrary.org/obo/UBERON_0006904;head mesenchyme from mesoderm;head mesenchyme from mesoderm -http://purl.obolibrary.org/obo/UBERON_0006904;head mesenchyme from mesoderm;mesenchyme derived from head mesoderm -http://purl.obolibrary.org/obo/UBERON_0006904;head mesenchyme from mesoderm;mesenchyme from head mesoderm -http://purl.obolibrary.org/obo/UBERON_0006905;mandibular process mesenchyme;mesenchyme of mandibular process -http://purl.obolibrary.org/obo/UBERON_0006905;mandibular process mesenchyme;mesenchyme of mandibular prominence -http://purl.obolibrary.org/obo/UBERON_0006906;ala of nose;nasal ala -http://purl.obolibrary.org/obo/UBERON_0006907;slow muscle tissue;slow muscle -http://purl.obolibrary.org/obo/UBERON_0006907;slow muscle tissue;slow skeletal muscle tissue -http://purl.obolibrary.org/obo/UBERON_0006907;slow muscle tissue;slow-twitch skeletal muscle -http://purl.obolibrary.org/obo/UBERON_0006908;fast muscle tissue;fast muscle -http://purl.obolibrary.org/obo/UBERON_0006908;fast muscle tissue;fast skeletal muscle tissue -http://purl.obolibrary.org/obo/UBERON_0006909;lumen of digestive tract;digestive tract lumen -http://purl.obolibrary.org/obo/UBERON_0006909;lumen of digestive tract;gut cavity -http://purl.obolibrary.org/obo/UBERON_0006909;lumen of digestive tract;gut lumen -http://purl.obolibrary.org/obo/UBERON_0006909;lumen of digestive tract;lumen of alimentary tract -http://purl.obolibrary.org/obo/UBERON_0006909;lumen of digestive tract;lumen of digestive tract -http://purl.obolibrary.org/obo/UBERON_0006909;lumen of digestive tract;lumen of gut -http://purl.obolibrary.org/obo/UBERON_0006911;digestive system secreted substance;digestive system fluid or secretion -http://purl.obolibrary.org/obo/UBERON_0006912;urinary bladder muscularis mucosa;muscularis mucosa of urinary bladder -http://purl.obolibrary.org/obo/UBERON_0006913;lip epithelium; -http://purl.obolibrary.org/obo/UBERON_0006914;squamous epithelium; -http://purl.obolibrary.org/obo/UBERON_0006915;stratified squamous epithelium;epithelium stratificatum squamosum -http://purl.obolibrary.org/obo/UBERON_0006916;non-keratinized epithelium of tongue; -http://purl.obolibrary.org/obo/UBERON_0006918;parakeratinized epithelium of tongue;tongue parakeratinized epithelium -http://purl.obolibrary.org/obo/UBERON_0006919;tongue squamous epithelium;squamous epithelium of tongue -http://purl.obolibrary.org/obo/UBERON_0006920;esophagus squamous epithelium; -http://purl.obolibrary.org/obo/UBERON_0006921;stomach squamous epithelium; -http://purl.obolibrary.org/obo/UBERON_0006922;cervix squamous epithelium;cervical squamous epithelium -http://purl.obolibrary.org/obo/UBERON_0006923;vagina squamous epithelium;vaginal squamous epithelium -http://purl.obolibrary.org/obo/UBERON_0006924;stomach glandular epithelium; -http://purl.obolibrary.org/obo/UBERON_0006925;digestive system gland;digestive gland -http://purl.obolibrary.org/obo/UBERON_0006929;glandular columnar epithelium; -http://purl.obolibrary.org/obo/UBERON_0006930;glandular cuboidal epithelium; -http://purl.obolibrary.org/obo/UBERON_0006931;stomach glandular region mucosa;stomach glandular region glandular mucous membrane -http://purl.obolibrary.org/obo/UBERON_0006932;vestibular epithelium;epithelium of vestibular labyrinth -http://purl.obolibrary.org/obo/UBERON_0006932;vestibular epithelium;inner ear vestibular component epithelium -http://purl.obolibrary.org/obo/UBERON_0006932;vestibular epithelium;vestibular sensory epithelium -http://purl.obolibrary.org/obo/UBERON_0006934;sensory epithelium;neuroepithelium -http://purl.obolibrary.org/obo/UBERON_0006935;crista ampullaris neuroepithelium;epithelium of crista of ampulla of semicircular duct of membranous labyrinth -http://purl.obolibrary.org/obo/UBERON_0006936;thymus subcapsular epithelium; -http://purl.obolibrary.org/obo/UBERON_0006937;inner ear epithelium; -http://purl.obolibrary.org/obo/UBERON_0006938;pinna surface epithelium; -http://purl.obolibrary.org/obo/UBERON_0006946;efferent duct;efferent ductule -http://purl.obolibrary.org/obo/UBERON_0006946;efferent duct;seminal duct -http://purl.obolibrary.org/obo/UBERON_0006947;male genital duct;sperm duct -http://purl.obolibrary.org/obo/UBERON_0006947;male genital duct;sperm ducts -http://purl.obolibrary.org/obo/UBERON_0006948;efferent duct epithelium;epithelium of efferent ductule of testis -http://purl.obolibrary.org/obo/UBERON_0006949;cervical loop; -http://purl.obolibrary.org/obo/UBERON_0006950;stellate reticulum; -http://purl.obolibrary.org/obo/UBERON_0006951;inner dental epithelium;inner enamel epithelium -http://purl.obolibrary.org/obo/UBERON_0006952;outer dental epithelium;external dental epithelium -http://purl.obolibrary.org/obo/UBERON_0006952;outer dental epithelium;external enamel epithelium -http://purl.obolibrary.org/obo/UBERON_0006952;outer dental epithelium;outer enamel epithelium -http://purl.obolibrary.org/obo/UBERON_0006953;ejaculatory duct epithelium; -http://purl.obolibrary.org/obo/UBERON_0006954;mammary gland myoepithelium;lactiferous ductal myo-epithelium -http://purl.obolibrary.org/obo/UBERON_0006954;mammary gland myoepithelium;mammary myoepithelium -http://purl.obolibrary.org/obo/UBERON_0006954;mammary gland myoepithelium;myo-epithelium of lactiferous duct -http://purl.obolibrary.org/obo/UBERON_0006954;mammary gland myoepithelium;myoepithelium of lactiferous duct -http://purl.obolibrary.org/obo/UBERON_0006955;uterine epithelium; -http://purl.obolibrary.org/obo/UBERON_0006956;buccal mucosa; -http://purl.obolibrary.org/obo/UBERON_0006957;submandibular gland primordium epithelium; -http://purl.obolibrary.org/obo/UBERON_0006958;great vein of heart;great cardiac vein -http://purl.obolibrary.org/obo/UBERON_0006959;mandible angular process; -http://purl.obolibrary.org/obo/UBERON_0006960;ovary stroma;interstitial tissue of ovary -http://purl.obolibrary.org/obo/UBERON_0006960;ovary stroma;ovarian stroma -http://purl.obolibrary.org/obo/UBERON_0006960;ovary stroma;ovary stroma -http://purl.obolibrary.org/obo/UBERON_0006960;ovary stroma;stroma of the ovary -http://purl.obolibrary.org/obo/UBERON_0006960;ovary stroma;stroma ovarica -http://purl.obolibrary.org/obo/UBERON_0006964;pars distalis of adenohypophysis;distal part of hypophysis -http://purl.obolibrary.org/obo/UBERON_0006964;pars distalis of adenohypophysis;pars anterior of adenohypophysis -http://purl.obolibrary.org/obo/UBERON_0006964;pars distalis of adenohypophysis;pars distalis (glandula pituitaria) -http://purl.obolibrary.org/obo/UBERON_0006964;pars distalis of adenohypophysis;pars distalis adenohypophysis -http://purl.obolibrary.org/obo/UBERON_0006964;pars distalis of adenohypophysis;pars distalis of anterior lobe of pituitary gland -http://purl.obolibrary.org/obo/UBERON_0006964;pars distalis of adenohypophysis;pars glandularis of adenohypophysis -http://purl.obolibrary.org/obo/UBERON_0006965;vascular cord; -http://purl.obolibrary.org/obo/UBERON_0006966;coronary capillary;heart capillary -http://purl.obolibrary.org/obo/UBERON_0006967;horn; -http://purl.obolibrary.org/obo/UBERON_0006968;keratin sheath of horn; -http://purl.obolibrary.org/obo/UBERON_0006969;cranial appendage; -http://purl.obolibrary.org/obo/UBERON_0006970;bony core of horn; -http://purl.obolibrary.org/obo/UBERON_0006971;antler; -http://purl.obolibrary.org/obo/UBERON_0006972;nephridium; -http://purl.obolibrary.org/obo/UBERON_0006973;protonephridium; -http://purl.obolibrary.org/obo/UBERON_0006974;metanephridium; -http://purl.obolibrary.org/obo/UBERON_0006976;peptonephridium; -http://purl.obolibrary.org/obo/UBERON_0006983;anatomical point; -http://purl.obolibrary.org/obo/UBERON_0006984;anatomical surface; -http://purl.obolibrary.org/obo/UBERON_0007005;cardiogenic splanchnic mesoderm;cardiogenic splanchnopleure -http://purl.obolibrary.org/obo/UBERON_0007010;cleaving embryo; -http://purl.obolibrary.org/obo/UBERON_0007021;sexually immature organism;juvenile organism -http://purl.obolibrary.org/obo/UBERON_0007021;sexually immature organism;juveniles -http://purl.obolibrary.org/obo/UBERON_0007023;adult organism;adult -http://purl.obolibrary.org/obo/UBERON_0007023;adult organism;adults -http://purl.obolibrary.org/obo/UBERON_0007026;presumptive gut;future digestive tract -http://purl.obolibrary.org/obo/UBERON_0007026;presumptive gut;future digestive tube -http://purl.obolibrary.org/obo/UBERON_0007026;presumptive gut;future gut -http://purl.obolibrary.org/obo/UBERON_0007026;presumptive gut;primitive gut -http://purl.obolibrary.org/obo/UBERON_0007037;mechanosensory system; -http://purl.obolibrary.org/obo/UBERON_0007095;somatic musculature; -http://purl.obolibrary.org/obo/UBERON_0007097;chordo neural hinge;CNH -http://purl.obolibrary.org/obo/UBERON_0007097;chordo neural hinge;chordoneural hinge -http://purl.obolibrary.org/obo/UBERON_0007098;mandibular neural crest; -http://purl.obolibrary.org/obo/UBERON_0007099;hyoid neural crest;hyoid crest -http://purl.obolibrary.org/obo/UBERON_0007100;primary circulatory organ;adult heart -http://purl.obolibrary.org/obo/UBERON_0007100;primary circulatory organ;dorsal tube -http://purl.obolibrary.org/obo/UBERON_0007100;primary circulatory organ;heart -http://purl.obolibrary.org/obo/UBERON_0007105;vitelline duct; -http://purl.obolibrary.org/obo/UBERON_0007106;chorionic villus; -http://purl.obolibrary.org/obo/UBERON_0007108;vernix caseosa; -http://purl.obolibrary.org/obo/UBERON_0007109;meconium; -http://purl.obolibrary.org/obo/UBERON_0007111;Douglas' pouch;excavatio recto-uterina -http://purl.obolibrary.org/obo/UBERON_0007111;Douglas' pouch;excavatio rectouterina -http://purl.obolibrary.org/obo/UBERON_0007111;Douglas' pouch;pouch of douglas -http://purl.obolibrary.org/obo/UBERON_0007111;Douglas' pouch;recto-uterine pouch -http://purl.obolibrary.org/obo/UBERON_0007111;Douglas' pouch;rectouterine pouch -http://purl.obolibrary.org/obo/UBERON_0007113;venom; -http://purl.obolibrary.org/obo/UBERON_0007115;deciduous tooth;primary tooth -http://purl.obolibrary.org/obo/UBERON_0007115;deciduous tooth;temporary tooth -http://purl.obolibrary.org/obo/UBERON_0007116;primary dentition;baby teeth -http://purl.obolibrary.org/obo/UBERON_0007116;primary dentition;deciduous teeth -http://purl.obolibrary.org/obo/UBERON_0007116;primary dentition;dentes decidui -http://purl.obolibrary.org/obo/UBERON_0007116;primary dentition;milk teeth -http://purl.obolibrary.org/obo/UBERON_0007116;primary dentition;primary teeth -http://purl.obolibrary.org/obo/UBERON_0007116;primary dentition;set of deciduous teeth -http://purl.obolibrary.org/obo/UBERON_0007116;primary dentition;set of primary teeth -http://purl.obolibrary.org/obo/UBERON_0007116;primary dentition;tooth of primary dentition -http://purl.obolibrary.org/obo/UBERON_0007118;umbilicus;navel -http://purl.obolibrary.org/obo/UBERON_0007118;umbilicus;umbilical part of abdomen -http://purl.obolibrary.org/obo/UBERON_0007118;umbilicus;umbilical region -http://purl.obolibrary.org/obo/UBERON_0007119;neck of femur;femoral neck -http://purl.obolibrary.org/obo/UBERON_0007120;premolar tooth; -http://purl.obolibrary.org/obo/UBERON_0007121;skin nerve field; -http://purl.obolibrary.org/obo/UBERON_0007122;pharyngeal pouch 1;1st arch branchial pouch -http://purl.obolibrary.org/obo/UBERON_0007122;pharyngeal pouch 1;1st arch branchial pouch endoderm -http://purl.obolibrary.org/obo/UBERON_0007122;pharyngeal pouch 1;1st arch pouch endoderm -http://purl.obolibrary.org/obo/UBERON_0007122;pharyngeal pouch 1;1st branchial pouch -http://purl.obolibrary.org/obo/UBERON_0007122;pharyngeal pouch 1;1st pharyngeal pouch endoderm -http://purl.obolibrary.org/obo/UBERON_0007122;pharyngeal pouch 1;first arch pharyngeal pouch -http://purl.obolibrary.org/obo/UBERON_0007122;pharyngeal pouch 1;first visceral pouch -http://purl.obolibrary.org/obo/UBERON_0007122;pharyngeal pouch 1;hyomandibular pouch -http://purl.obolibrary.org/obo/UBERON_0007122;pharyngeal pouch 1;pharyngeal pouches 1 -http://purl.obolibrary.org/obo/UBERON_0007122;pharyngeal pouch 1;visceral pouch 1 -http://purl.obolibrary.org/obo/UBERON_0007123;pharyngeal pouch 2;2nd arch branchial pouch -http://purl.obolibrary.org/obo/UBERON_0007123;pharyngeal pouch 2;2nd arch branchial pouch endoderm -http://purl.obolibrary.org/obo/UBERON_0007123;pharyngeal pouch 2;2nd arch pouch endoderm -http://purl.obolibrary.org/obo/UBERON_0007123;pharyngeal pouch 2;2nd branchial pouch -http://purl.obolibrary.org/obo/UBERON_0007123;pharyngeal pouch 2;2nd pharyngeal pouch endoderm -http://purl.obolibrary.org/obo/UBERON_0007123;pharyngeal pouch 2;pharyngeal pouches 2 -http://purl.obolibrary.org/obo/UBERON_0007123;pharyngeal pouch 2;second arch pharyngeal pouch -http://purl.obolibrary.org/obo/UBERON_0007123;pharyngeal pouch 2;second visceral pouch -http://purl.obolibrary.org/obo/UBERON_0007123;pharyngeal pouch 2;visceral pouch 2 -http://purl.obolibrary.org/obo/UBERON_0007124;pharyngeal pouch 3;3rd arch branchial pouch -http://purl.obolibrary.org/obo/UBERON_0007124;pharyngeal pouch 3;3rd arch branchial pouch endoderm -http://purl.obolibrary.org/obo/UBERON_0007124;pharyngeal pouch 3;3rd branchial pouch -http://purl.obolibrary.org/obo/UBERON_0007124;pharyngeal pouch 3;3rd pharyngeal pouch endoderm -http://purl.obolibrary.org/obo/UBERON_0007124;pharyngeal pouch 3;pharyngeal pouches 3 -http://purl.obolibrary.org/obo/UBERON_0007124;pharyngeal pouch 3;third arch pharyngeal pouch -http://purl.obolibrary.org/obo/UBERON_0007124;pharyngeal pouch 3;third visceral pouch -http://purl.obolibrary.org/obo/UBERON_0007124;pharyngeal pouch 3;visceral pouch 3 -http://purl.obolibrary.org/obo/UBERON_0007125;pharyngeal pouch 4;4th arch branchial pouch -http://purl.obolibrary.org/obo/UBERON_0007125;pharyngeal pouch 4;4th arch branchial pouch endoderm -http://purl.obolibrary.org/obo/UBERON_0007125;pharyngeal pouch 4;4th branchial pouch -http://purl.obolibrary.org/obo/UBERON_0007125;pharyngeal pouch 4;4th pharyngeal pouch endoderm -http://purl.obolibrary.org/obo/UBERON_0007125;pharyngeal pouch 4;fourth arch pharyngeal pouch -http://purl.obolibrary.org/obo/UBERON_0007125;pharyngeal pouch 4;fourth branchial pouch -http://purl.obolibrary.org/obo/UBERON_0007125;pharyngeal pouch 4;fourth visceral pouch -http://purl.obolibrary.org/obo/UBERON_0007125;pharyngeal pouch 4;pharyngeal pouches 4 -http://purl.obolibrary.org/obo/UBERON_0007125;pharyngeal pouch 4;visceral pouch 4 -http://purl.obolibrary.org/obo/UBERON_0007126;pharyngeal pouch 5;5th branchial pouch -http://purl.obolibrary.org/obo/UBERON_0007126;pharyngeal pouch 5;fifth visceral pouch -http://purl.obolibrary.org/obo/UBERON_0007126;pharyngeal pouch 5;pharyngeal pouches 5 -http://purl.obolibrary.org/obo/UBERON_0007126;pharyngeal pouch 5;visceral pouch 5 -http://purl.obolibrary.org/obo/UBERON_0007127;pharyngeal pouch 6;6th arch branchial pouch -http://purl.obolibrary.org/obo/UBERON_0007127;pharyngeal pouch 6;6th branchial pouch -http://purl.obolibrary.org/obo/UBERON_0007127;pharyngeal pouch 6;pharyngeal pouches 6 -http://purl.obolibrary.org/obo/UBERON_0007127;pharyngeal pouch 6;sixth visceral pouch -http://purl.obolibrary.org/obo/UBERON_0007127;pharyngeal pouch 6;visceral pouch 6 -http://purl.obolibrary.org/obo/UBERON_0007128;glomeral mesenchyme; -http://purl.obolibrary.org/obo/UBERON_0007132;head kidney;anterior kidney -http://purl.obolibrary.org/obo/UBERON_0007132;head kidney;kidney marrow -http://purl.obolibrary.org/obo/UBERON_0007134;trunk ganglion;body ganglion -http://purl.obolibrary.org/obo/UBERON_0007134;trunk ganglion;trunk ganglia -http://purl.obolibrary.org/obo/UBERON_0007135;neural keel; -http://purl.obolibrary.org/obo/UBERON_0007136;rectouterine fold;fold of Douglas -http://purl.obolibrary.org/obo/UBERON_0007136;rectouterine fold;plica rectouterina -http://purl.obolibrary.org/obo/UBERON_0007136;rectouterine fold;posterior ligament of uterus -http://purl.obolibrary.org/obo/UBERON_0007136;rectouterine fold;recto-uterine fold -http://purl.obolibrary.org/obo/UBERON_0007136;rectouterine fold;rectovaginal fold -http://purl.obolibrary.org/obo/UBERON_0007140;parietal mesothelium; -http://purl.obolibrary.org/obo/UBERON_0007141;visceral mesothelium; -http://purl.obolibrary.org/obo/UBERON_0007142;left internal carotid artery;arteria caritis interna sinistra -http://purl.obolibrary.org/obo/UBERON_0007143;right internal carotid artery;arteria carotis interna dextra -http://purl.obolibrary.org/obo/UBERON_0007144;embryonic post-anal tail;embryo tail -http://purl.obolibrary.org/obo/UBERON_0007144;embryonic post-anal tail;tail of embryo -http://purl.obolibrary.org/obo/UBERON_0007145;dome of diaphragm;diaphragm dome -http://purl.obolibrary.org/obo/UBERON_0007146;posterior spinal artery;dorsal spinal artery -http://purl.obolibrary.org/obo/UBERON_0007147;lumen of midgut;midgut lumen -http://purl.obolibrary.org/obo/UBERON_0007148;lumen of hindgut;hindgut lumen -http://purl.obolibrary.org/obo/UBERON_0007149;inferior thyroid artery; -http://purl.obolibrary.org/obo/UBERON_0007150;superior thyroid artery; -http://purl.obolibrary.org/obo/UBERON_0007151;mitral valve leaflet;leaflet of mitral valve -http://purl.obolibrary.org/obo/UBERON_0007151;mitral valve leaflet;mitral valve leaflet -http://purl.obolibrary.org/obo/UBERON_0007151;mitral valve leaflet;mitral valvular leaflet -http://purl.obolibrary.org/obo/UBERON_0007152;inferior sagittal sinus; -http://purl.obolibrary.org/obo/UBERON_0007153;superior epigastric artery; -http://purl.obolibrary.org/obo/UBERON_0007154;inferior epigastric vein; -http://purl.obolibrary.org/obo/UBERON_0007155;superior epigastric vein; -http://purl.obolibrary.org/obo/UBERON_0007156;inferior thyroid vein;inferior thyroid venous tree -http://purl.obolibrary.org/obo/UBERON_0007156;inferior thyroid vein;vena thyroidea inferioris -http://purl.obolibrary.org/obo/UBERON_0007157;superior thyroid vein; -http://purl.obolibrary.org/obo/UBERON_0007158;lumen of anal canal;anal canal lumen -http://purl.obolibrary.org/obo/UBERON_0007159;lumen of colon;colon lumen -http://purl.obolibrary.org/obo/UBERON_0007160;inferior petrosal sinus;sinus petrosal inferior -http://purl.obolibrary.org/obo/UBERON_0007161;medial arcuate ligament; -http://purl.obolibrary.org/obo/UBERON_0007162;lateral arcuate ligament; -http://purl.obolibrary.org/obo/UBERON_0007163;superior nasal meatus; -http://purl.obolibrary.org/obo/UBERON_0007164;distal radio-ulnar joint;articulation radioulnaris distalis -http://purl.obolibrary.org/obo/UBERON_0007164;distal radio-ulnar joint;distal radioulnar joint -http://purl.obolibrary.org/obo/UBERON_0007164;distal radio-ulnar joint;inferior radioulnar joint -http://purl.obolibrary.org/obo/UBERON_0007165;proximal radio-ulnar joint;superior radioulnar joint -http://purl.obolibrary.org/obo/UBERON_0007166;left dome of diaphragm;left dome of diaphragm viewed radiologically -http://purl.obolibrary.org/obo/UBERON_0007167;right dome of diaphragm;right dome of diaphragm viewed radiologically -http://purl.obolibrary.org/obo/UBERON_0007168;long head of biceps brachii;caput longum (musculus biceps brachii) -http://purl.obolibrary.org/obo/UBERON_0007168;long head of biceps brachii;caput longum musculus bicipitis brachii -http://purl.obolibrary.org/obo/UBERON_0007169;short head of biceps brachii;caput breve (musculus biceps brachii) -http://purl.obolibrary.org/obo/UBERON_0007169;short head of biceps brachii;caput breve musculus bicipitis brachii -http://purl.obolibrary.org/obo/UBERON_0007170;squamous part of occipital bone;occipital squama -http://purl.obolibrary.org/obo/UBERON_0007170;squamous part of occipital bone;squama occipitalis -http://purl.obolibrary.org/obo/UBERON_0007170;squamous part of occipital bone;squama of occipital bone -http://purl.obolibrary.org/obo/UBERON_0007171;border of scapula;scapular border -http://purl.obolibrary.org/obo/UBERON_0007172;angle of scapula;scapular angle -http://purl.obolibrary.org/obo/UBERON_0007173;lateral border of scapula;axillary border of scapula -http://purl.obolibrary.org/obo/UBERON_0007173;lateral border of scapula;lateral border of scapula -http://purl.obolibrary.org/obo/UBERON_0007173;lateral border of scapula;margo lateralis (scapula) -http://purl.obolibrary.org/obo/UBERON_0007173;lateral border of scapula;margo lateralis scapulae -http://purl.obolibrary.org/obo/UBERON_0007174;medial border of scapula;margo medialis (scapula) -http://purl.obolibrary.org/obo/UBERON_0007174;medial border of scapula;margo medialis scapulae -http://purl.obolibrary.org/obo/UBERON_0007174;medial border of scapula;medial part of scapula -http://purl.obolibrary.org/obo/UBERON_0007174;medial border of scapula;vertebral border of scapula -http://purl.obolibrary.org/obo/UBERON_0007175;inferior angle of scapula;angulus inferior (scapula) -http://purl.obolibrary.org/obo/UBERON_0007175;inferior angle of scapula;angulus inferior scapulae -http://purl.obolibrary.org/obo/UBERON_0007176;superior angle of scapula;angulus superior (scapula) -http://purl.obolibrary.org/obo/UBERON_0007176;superior angle of scapula;angulus superior scapulae -http://purl.obolibrary.org/obo/UBERON_0007176;superior angle of scapula;medial angle of scapula -http://purl.obolibrary.org/obo/UBERON_0007176;superior angle of scapula;superior medial angle of scapula -http://purl.obolibrary.org/obo/UBERON_0007177;Lamina propria mucosae of colon;colonic lamina propria -http://purl.obolibrary.org/obo/UBERON_0007177;Lamina propria mucosae of colon;lamina propria mucosae of colon -http://purl.obolibrary.org/obo/UBERON_0007177;Lamina propria mucosae of colon;lamina propria of colonic mucosa -http://purl.obolibrary.org/obo/UBERON_0007177;Lamina propria mucosae of colon;lamina propria of colonic mucous membrane -http://purl.obolibrary.org/obo/UBERON_0007177;lamina propria of mucosa of colon;colonic lamina propria -http://purl.obolibrary.org/obo/UBERON_0007177;lamina propria of mucosa of colon;lamina propria mucosae of colon -http://purl.obolibrary.org/obo/UBERON_0007177;lamina propria of mucosa of colon;lamina propria of colonic mucosa -http://purl.obolibrary.org/obo/UBERON_0007177;lamina propria of mucosa of colon;lamina propria of colonic mucous membrane -http://purl.obolibrary.org/obo/UBERON_0007178;muscularis mucosae of colon;lamina muscularis of colonic mucosa -http://purl.obolibrary.org/obo/UBERON_0007178;muscularis mucosae of colon;lamina muscularis of colonic mucous membrane -http://purl.obolibrary.org/obo/UBERON_0007178;muscularis mucosae of colon;muscularis mucosa of colon -http://purl.obolibrary.org/obo/UBERON_0007179;basal cell layer of urothelium;basal cell layer of uroepithelium -http://purl.obolibrary.org/obo/UBERON_0007180;atretic follicle of ovary;atretic follicle -http://purl.obolibrary.org/obo/UBERON_0007180;atretic follicle of ovary;folliculus atreticus (ovarium) -http://purl.obolibrary.org/obo/UBERON_0007181;serosa of infundibulum of uterine tube;serosa of infundibulum of fallopian tube -http://purl.obolibrary.org/obo/UBERON_0007181;serosa of infundibulum of uterine tube;serosa of infundibulum of oviduct -http://purl.obolibrary.org/obo/UBERON_0007182;muscle layer of infundibulum of uterine tube;muscle layer of infundibulum of fallopian tube -http://purl.obolibrary.org/obo/UBERON_0007182;muscle layer of infundibulum of uterine tube;muscle layer of infundibulum of oviduct -http://purl.obolibrary.org/obo/UBERON_0007182;muscle layer of infundibulum of uterine tube;muscularis of infundibulum of uterine tube -http://purl.obolibrary.org/obo/UBERON_0007185;pericardio-peritoneal canal mesothelium; -http://purl.obolibrary.org/obo/UBERON_0007186;pericardial visceral mesothelium;mesothelium of visceral pericardium -http://purl.obolibrary.org/obo/UBERON_0007186;pericardial visceral mesothelium;mesothelium of visceral serous pericardium -http://purl.obolibrary.org/obo/UBERON_0007186;pericardial visceral mesothelium;visceral serous pericardium mesothelium -http://purl.obolibrary.org/obo/UBERON_0007187;pericardial parietal mesothelium;mesothelium of parietal pericardium -http://purl.obolibrary.org/obo/UBERON_0007187;pericardial parietal mesothelium;mesothelium of parietal serous pericardium -http://purl.obolibrary.org/obo/UBERON_0007187;pericardial parietal mesothelium;parietal serous pericardium mesothelium -http://purl.obolibrary.org/obo/UBERON_0007187;pericardial parietal mesothelium;pericardium parietal mesothelium -http://purl.obolibrary.org/obo/UBERON_0007188;mesothelium of serous pericardium;mesothelium of pericardium -http://purl.obolibrary.org/obo/UBERON_0007188;mesothelium of serous pericardium;pericardial mesothelium -http://purl.obolibrary.org/obo/UBERON_0007188;mesothelium of serous pericardium;serous pericardium mesothelium -http://purl.obolibrary.org/obo/UBERON_0007190;paracentral gyrus; -http://purl.obolibrary.org/obo/UBERON_0007191;anterior paracentral gyrus; -http://purl.obolibrary.org/obo/UBERON_0007192;posterior paracentral gyrus; -http://purl.obolibrary.org/obo/UBERON_0007193;orbital gyrus;orbital gyri -http://purl.obolibrary.org/obo/UBERON_0007194;vesicular gland; -http://purl.obolibrary.org/obo/UBERON_0007195;stroma of bone marrow;bone marrow stroma -http://purl.obolibrary.org/obo/UBERON_0007196;tracheobronchial tree;arbor tracheobronchialis -http://purl.obolibrary.org/obo/UBERON_0007196;tracheobronchial tree;tracheobronchial system -http://purl.obolibrary.org/obo/UBERON_0007197;hermaphroditic organism;dioecious organism -http://purl.obolibrary.org/obo/UBERON_0007197;hermaphroditic organism;hermaphrodite -http://purl.obolibrary.org/obo/UBERON_0007198;hermaphrodite anatomical structure; -http://purl.obolibrary.org/obo/UBERON_0007204;brachiocephalic vasculature; -http://purl.obolibrary.org/obo/UBERON_0007213;mesenchyme derived from head neural crest;head mesenchyme from cranial neural crest -http://purl.obolibrary.org/obo/UBERON_0007213;mesenchyme derived from head neural crest;head mesenchyme from neural crest -http://purl.obolibrary.org/obo/UBERON_0007213;mesenchyme derived from head neural crest;head neural crest derived mesenchyme -http://purl.obolibrary.org/obo/UBERON_0007214;mesenchyme derived from trunk neural crest;trunk mesenchyme from neural crest -http://purl.obolibrary.org/obo/UBERON_0007214;mesenchyme derived from trunk neural crest;trunk neural crest derived mesenchyme -http://purl.obolibrary.org/obo/UBERON_0007215;trabecula cranii;trabeculae cranii -http://purl.obolibrary.org/obo/UBERON_0007223;osseus cochlea; -http://purl.obolibrary.org/obo/UBERON_0007224;medial entorhinal cortex;entorhinal area, medial part -http://purl.obolibrary.org/obo/UBERON_0007225;lateral entorhinal cortex;entorhinal area, lateral part -http://purl.obolibrary.org/obo/UBERON_0007227;superior vestibular nucleus;nucleus of Bechterew -http://purl.obolibrary.org/obo/UBERON_0007228;vestibular nucleus;vestibular VIII nucleus -http://purl.obolibrary.org/obo/UBERON_0007228;vestibular nucleus;vestibular nucleus of acoustic nerve -http://purl.obolibrary.org/obo/UBERON_0007228;vestibular nucleus;vestibular nucleus of eighth cranial nerve -http://purl.obolibrary.org/obo/UBERON_0007230;lateral vestibular nucleus;Deiter's nucleus -http://purl.obolibrary.org/obo/UBERON_0007230;lateral vestibular nucleus;Deiters' nucleus -http://purl.obolibrary.org/obo/UBERON_0007230;lateral vestibular nucleus;lateral nucleus of Deiters -http://purl.obolibrary.org/obo/UBERON_0007230;lateral vestibular nucleus;nucleus of Deiters -http://purl.obolibrary.org/obo/UBERON_0007237;1st arch mandibular component;ventral pharyngeal arch 1 -http://purl.obolibrary.org/obo/UBERON_0007238;1st arch maxillary component; -http://purl.obolibrary.org/obo/UBERON_0007239;tunica media of artery;arterial media -http://purl.obolibrary.org/obo/UBERON_0007239;tunica media of artery;tunica media (arteriae) -http://purl.obolibrary.org/obo/UBERON_0007240;tunica adventitia of artery;arterial adventitia -http://purl.obolibrary.org/obo/UBERON_0007240;tunica adventitia of artery;tunica externa (adventitia)(arteriae) -http://purl.obolibrary.org/obo/UBERON_0007241;tunica adventitia of vein;tunica externa (adventitia)(venae) -http://purl.obolibrary.org/obo/UBERON_0007241;tunica adventitia of vein;venous adventitia -http://purl.obolibrary.org/obo/UBERON_0007242;tunica intima of vein;tunica interna (intima)(venae) -http://purl.obolibrary.org/obo/UBERON_0007242;tunica intima of vein;venous intima -http://purl.obolibrary.org/obo/UBERON_0007243;tunica media of vein;tunica media (venae) -http://purl.obolibrary.org/obo/UBERON_0007243;tunica media of vein;venous media -http://purl.obolibrary.org/obo/UBERON_0007244;inferior olivary nucleus; -http://purl.obolibrary.org/obo/UBERON_0007245;nuclear complex of neuraxis;cluster of neural nuclei -http://purl.obolibrary.org/obo/UBERON_0007245;nuclear complex of neuraxis;neural nuclei -http://purl.obolibrary.org/obo/UBERON_0007245;nuclear complex of neuraxis;nuclear complex -http://purl.obolibrary.org/obo/UBERON_0007247;nucleus of superior olivary complex;superior olivary complex nucleus -http://purl.obolibrary.org/obo/UBERON_0007249;dorsal accessory inferior olivary nucleus;DAO -http://purl.obolibrary.org/obo/UBERON_0007249;dorsal accessory inferior olivary nucleus;dorsal accessory olivary nucleus -http://purl.obolibrary.org/obo/UBERON_0007249;dorsal accessory inferior olivary nucleus;dorsal accessory olive -http://purl.obolibrary.org/obo/UBERON_0007249;dorsal accessory inferior olivary nucleus;inferior olivary complex, dorsal accessory olive -http://purl.obolibrary.org/obo/UBERON_0007249;dorsal accessory inferior olivary nucleus;inferior olive, dorsal nucleus -http://purl.obolibrary.org/obo/UBERON_0007249;dorsal accessory inferior olivary nucleus;nucleus olivaris accessorius posterior -http://purl.obolibrary.org/obo/UBERON_0007249;dorsal accessory inferior olivary nucleus;posterior accessory olivary nucleus -http://purl.obolibrary.org/obo/UBERON_0007250;lingual tonsil;lingual tonsillar tissue -http://purl.obolibrary.org/obo/UBERON_0007251;preoptic nucleus; -http://purl.obolibrary.org/obo/UBERON_0007252;intervertebral disk of cervical vertebra;cervical intervertebral disc -http://purl.obolibrary.org/obo/UBERON_0007252;intervertebral disk of cervical vertebra;intervertebral disc of cervical region -http://purl.obolibrary.org/obo/UBERON_0007254;intervertebral disk of thoracic vertebra;intervertebral disc of thoracic region -http://purl.obolibrary.org/obo/UBERON_0007255;intervertebral disk of lumbar vertebra;intervertebral disc of lumbar region -http://purl.obolibrary.org/obo/UBERON_0007257;intervertebral disk of sacral vertebra;intervertebral disc of sacral region -http://purl.obolibrary.org/obo/UBERON_0007260;intervertebral disk of third cervical vertebra;C3 intervertebral disk -http://purl.obolibrary.org/obo/UBERON_0007260;intervertebral disk of third cervical vertebra;intervertebral disk, C3-C4 -http://purl.obolibrary.org/obo/UBERON_0007261;intervertebral disk of fourth cervical vertebra;intervertebral disc of fourth cervical vertebra -http://purl.obolibrary.org/obo/UBERON_0007261;intervertebral disk of fourth cervical vertebra;intervertebral disk, C4-C5 -http://purl.obolibrary.org/obo/UBERON_0007262;intervertebral disk of fifth cervical vertebra;intervertebral disc of fifth cervical vertebra -http://purl.obolibrary.org/obo/UBERON_0007262;intervertebral disk of fifth cervical vertebra;intervertebral disk, C5-C6 -http://purl.obolibrary.org/obo/UBERON_0007263;intervertebral disk of sixth cervical vertebra;intervertebral disk, C6-C7 -http://purl.obolibrary.org/obo/UBERON_0007264;intervertebral disk of seventh cervical vertebra;intervertebral disk, C7-T1 -http://purl.obolibrary.org/obo/UBERON_0007265;intervertebral disk of axis;C2 disk -http://purl.obolibrary.org/obo/UBERON_0007265;intervertebral disk of axis;C2 intervertebral disk -http://purl.obolibrary.org/obo/UBERON_0007265;intervertebral disk of axis;intervertebral disc of cervical vertebra 2 -http://purl.obolibrary.org/obo/UBERON_0007265;intervertebral disk of axis;intervertebral disc of second cervical vertebra -http://purl.obolibrary.org/obo/UBERON_0007265;intervertebral disk of axis;intervertebral disk of cervical vertebra 2 -http://purl.obolibrary.org/obo/UBERON_0007265;intervertebral disk of axis;intervertebral disk of second cervical vertebra -http://purl.obolibrary.org/obo/UBERON_0007265;intervertebral disk of axis;intervertebral disk, C2-C3 -http://purl.obolibrary.org/obo/UBERON_0007265;intervertebral disk of axis;second cervical intervertebral disk -http://purl.obolibrary.org/obo/UBERON_0007266;intervertebral disk of atlas;C1 disk -http://purl.obolibrary.org/obo/UBERON_0007266;intervertebral disk of atlas;C1 intervertebral disk -http://purl.obolibrary.org/obo/UBERON_0007266;intervertebral disk of atlas;first cervical intervertebral disk -http://purl.obolibrary.org/obo/UBERON_0007266;intervertebral disk of atlas;intervertebral disc of cervical vertebra 1 -http://purl.obolibrary.org/obo/UBERON_0007266;intervertebral disk of atlas;intervertebral disc of first cervical vertebra -http://purl.obolibrary.org/obo/UBERON_0007266;intervertebral disk of atlas;intervertebral disk of cervical vertebra 1 -http://purl.obolibrary.org/obo/UBERON_0007266;intervertebral disk of atlas;intervertebral disk of first cervical vertebra -http://purl.obolibrary.org/obo/UBERON_0007266;intervertebral disk of atlas;intervertebral disk, C1-C2 -http://purl.obolibrary.org/obo/UBERON_0007267;trachea pre-cartilage rings; -http://purl.obolibrary.org/obo/UBERON_0007268;upper esophageal sphincter;pharyngoesophageal sphincter -http://purl.obolibrary.org/obo/UBERON_0007268;upper esophageal sphincter;upper esophageal sphincter muscle -http://purl.obolibrary.org/obo/UBERON_0007268;upper esophageal sphincter;upper oesophageal sphincter -http://purl.obolibrary.org/obo/UBERON_0007269;pectoral appendage musculature; -http://purl.obolibrary.org/obo/UBERON_0007270;pelvic appendage musculature; -http://purl.obolibrary.org/obo/UBERON_0007271;appendage musculature; -http://purl.obolibrary.org/obo/UBERON_0007272;pectoral appendage skeleton; -http://purl.obolibrary.org/obo/UBERON_0007273;pelvic appendage skeleton; -http://purl.obolibrary.org/obo/UBERON_0007274;crista of ampulla of anterior semicircular duct of membranous laybrinth;anterior crista ampullaris -http://purl.obolibrary.org/obo/UBERON_0007274;crista of ampulla of anterior semicircular duct of membranous laybrinth;anterior cristae -http://purl.obolibrary.org/obo/UBERON_0007274;crista of ampulla of anterior semicircular duct of membranous laybrinth;anterior semicircular canal sensory patch -http://purl.obolibrary.org/obo/UBERON_0007274;crista of ampulla of anterior semicircular duct of membranous laybrinth;anterior semicircular canal sensory patches -http://purl.obolibrary.org/obo/UBERON_0007274;crista of ampulla of anterior semicircular duct of membranous laybrinth;rostral crista -http://purl.obolibrary.org/obo/UBERON_0007275;crista of ampulla of posterior semicircular duct of membranous laybrinth;caudal crista -http://purl.obolibrary.org/obo/UBERON_0007275;crista of ampulla of posterior semicircular duct of membranous laybrinth;posterior crista ampullaris -http://purl.obolibrary.org/obo/UBERON_0007275;crista of ampulla of posterior semicircular duct of membranous laybrinth;posterior cristae -http://purl.obolibrary.org/obo/UBERON_0007275;crista of ampulla of posterior semicircular duct of membranous laybrinth;posterior semicircular canal sensory patch -http://purl.obolibrary.org/obo/UBERON_0007275;crista of ampulla of posterior semicircular duct of membranous laybrinth;posterior semicircular canal sensory patches -http://purl.obolibrary.org/obo/UBERON_0007276;crista of ampulla of lateral semicircular duct of membranous laybrinth;lateral crista ampullaris -http://purl.obolibrary.org/obo/UBERON_0007276;crista of ampulla of lateral semicircular duct of membranous laybrinth;lateral cristae -http://purl.obolibrary.org/obo/UBERON_0007276;crista of ampulla of lateral semicircular duct of membranous laybrinth;lateral semicircular canal sensory patch -http://purl.obolibrary.org/obo/UBERON_0007276;crista of ampulla of lateral semicircular duct of membranous laybrinth;lateral semicircular canal sensory patches -http://purl.obolibrary.org/obo/UBERON_0007277;presumptive hindbrain;presumptive rhombencephalon -http://purl.obolibrary.org/obo/UBERON_0007278;presumptive sinus venosus; -http://purl.obolibrary.org/obo/UBERON_0007279;presumptive atrioventricular canal;future AV canal -http://purl.obolibrary.org/obo/UBERON_0007279;presumptive atrioventricular canal;future atrioventricular canal -http://purl.obolibrary.org/obo/UBERON_0007280;presumptive endocardium; -http://purl.obolibrary.org/obo/UBERON_0007281;presumptive midbrain hindbrain boundary;presumptive MHB -http://purl.obolibrary.org/obo/UBERON_0007281;presumptive midbrain hindbrain boundary;presumptive midbrain-hindbrain boundary -http://purl.obolibrary.org/obo/UBERON_0007282;presumptive segmental plate; -http://purl.obolibrary.org/obo/UBERON_0007283;presumptive shield; -http://purl.obolibrary.org/obo/UBERON_0007284;presumptive neural plate;prospective neuroectoderm -http://purl.obolibrary.org/obo/UBERON_0007284;presumptive neural plate;prospective vegetal ectoderm -http://purl.obolibrary.org/obo/UBERON_0007285;presumptive paraxial mesoderm;future paraxial mesenchyme -http://purl.obolibrary.org/obo/UBERON_0007285;presumptive paraxial mesoderm;future paraxial mesoderm -http://purl.obolibrary.org/obo/UBERON_0007286;presumptive floor plate; -http://purl.obolibrary.org/obo/UBERON_0007287;presumptive bulbus arteriosus; -http://purl.obolibrary.org/obo/UBERON_0007288;presumptive forebrain midbrain boundary; -http://purl.obolibrary.org/obo/UBERON_0007289;presumptive rhombomere 1; -http://purl.obolibrary.org/obo/UBERON_0007290;presumptive rhombomere 3; -http://purl.obolibrary.org/obo/UBERON_0007291;presumptive rhombomere 4; -http://purl.obolibrary.org/obo/UBERON_0007292;presumptive rhombomere 5; -http://purl.obolibrary.org/obo/UBERON_0007293;presumptive rhombomere 6; -http://purl.obolibrary.org/obo/UBERON_0007294;presumptive rhombomere 7; -http://purl.obolibrary.org/obo/UBERON_0007295;presumptive rhombomere 8; -http://purl.obolibrary.org/obo/UBERON_0007296;presumptive rhombomere 2; -http://purl.obolibrary.org/obo/UBERON_0007297;presumptive pronephric mesoderm;nephron primordium -http://purl.obolibrary.org/obo/UBERON_0007298;pronephric proximal convoluted tubule; -http://purl.obolibrary.org/obo/UBERON_0007299;choroid plexus of tectal ventricle;choroid plexus tectal ventricle -http://purl.obolibrary.org/obo/UBERON_0007300;pectoral appendage blood vessel; -http://purl.obolibrary.org/obo/UBERON_0007301;appendage blood vessel; -http://purl.obolibrary.org/obo/UBERON_0007302;pectoral appendage vasculature; -http://purl.obolibrary.org/obo/UBERON_0007303;pharyngeal vasculature;branchial vasculature -http://purl.obolibrary.org/obo/UBERON_0007304;appendage vasculature; -http://purl.obolibrary.org/obo/UBERON_0007306;pronephric glomerular capillary; -http://purl.obolibrary.org/obo/UBERON_0007307;pronephric glomerular basement membrane;pronephric glomerular filtration membrane -http://purl.obolibrary.org/obo/UBERON_0007308;pronephric distal early tubule; -http://purl.obolibrary.org/obo/UBERON_0007311;sputum; -http://purl.obolibrary.org/obo/UBERON_0007312;pudendal artery;arteriae pudendae -http://purl.obolibrary.org/obo/UBERON_0007312;pudendal artery;arteriae pudendales -http://purl.obolibrary.org/obo/UBERON_0007314;superior external pudendal artery; -http://purl.obolibrary.org/obo/UBERON_0007315;internal pudendal artery;arteria pudenda interna -http://purl.obolibrary.org/obo/UBERON_0007315;internal pudendal artery;arteriae pudendae interna -http://purl.obolibrary.org/obo/UBERON_0007315;internal pudendal artery;arteriae pudendales interna -http://purl.obolibrary.org/obo/UBERON_0007315;internal pudendal artery;internal pudic artery -http://purl.obolibrary.org/obo/UBERON_0007316;deep external pudendal artery;arteria pudenda externa profunda -http://purl.obolibrary.org/obo/UBERON_0007316;deep external pudendal artery;arteriae pudendae externa profunda -http://purl.obolibrary.org/obo/UBERON_0007316;deep external pudendal artery;arteriae pudendales externa profunda -http://purl.obolibrary.org/obo/UBERON_0007317;superficial external pudendal artery;arteriae pudendae externa superficialis -http://purl.obolibrary.org/obo/UBERON_0007317;superficial external pudendal artery;arteriae pudendales externa superficialis -http://purl.obolibrary.org/obo/UBERON_0007317;superficial external pudendal artery;superficial external pudic artery -http://purl.obolibrary.org/obo/UBERON_0007318;saphenous vein; -http://purl.obolibrary.org/obo/UBERON_0007319;medial saphenous vein;medial accessory saphenous vein -http://purl.obolibrary.org/obo/UBERON_0007321;lateral saphenous vein;lateral accessory saphenous vein -http://purl.obolibrary.org/obo/UBERON_0007324;pancreatic lobule;lobulus pancreaticus -http://purl.obolibrary.org/obo/UBERON_0007324;pancreatic lobule;pancreas lobe -http://purl.obolibrary.org/obo/UBERON_0007324;pancreatic lobule;pancreatic lobule -http://purl.obolibrary.org/obo/UBERON_0007329;pancreatic duct;duct of pancreas -http://purl.obolibrary.org/obo/UBERON_0007329;pancreatic duct;pancreas duct -http://purl.obolibrary.org/obo/UBERON_0007330;rhamphotheca; -http://purl.obolibrary.org/obo/UBERON_0007331;maxillary rhamphotheca; -http://purl.obolibrary.org/obo/UBERON_0007332;mandibular rhamphotheca; -http://purl.obolibrary.org/obo/UBERON_0007334;nidopallium; -http://purl.obolibrary.org/obo/UBERON_0007347;hyperpallium; -http://purl.obolibrary.org/obo/UBERON_0007349;mesopallium; -http://purl.obolibrary.org/obo/UBERON_0007350;arcopallium; -http://purl.obolibrary.org/obo/UBERON_0007351;nucleus isthmo-opticus; -http://purl.obolibrary.org/obo/UBERON_0007352;stria vascularis vasculature;stria vascularis blood vessels -http://purl.obolibrary.org/obo/UBERON_0007354;cartilage of pharyngotympanic tube;cartilage of auditory tube -http://purl.obolibrary.org/obo/UBERON_0007354;cartilage of pharyngotympanic tube;cartilage of eustachian tube -http://purl.obolibrary.org/obo/UBERON_0007354;cartilage of pharyngotympanic tube;cartilago tubae auditivae -http://purl.obolibrary.org/obo/UBERON_0007354;cartilage of pharyngotympanic tube;cartilago tubae auditoriae -http://purl.obolibrary.org/obo/UBERON_0007354;cartilage of pharyngotympanic tube;pharyngotympanic tube cartilage -http://purl.obolibrary.org/obo/UBERON_0007355;bony part of pharyngotympanic tube;bony part of auditory tube -http://purl.obolibrary.org/obo/UBERON_0007355;bony part of pharyngotympanic tube;bony part of eustachian tube -http://purl.obolibrary.org/obo/UBERON_0007355;bony part of pharyngotympanic tube;osseous portion of eustachian tube -http://purl.obolibrary.org/obo/UBERON_0007355;bony part of pharyngotympanic tube;pars ossea (tuba auditiva) -http://purl.obolibrary.org/obo/UBERON_0007355;bony part of pharyngotympanic tube;pars ossea (tuba auditoria) -http://purl.obolibrary.org/obo/UBERON_0007356;crop; -http://purl.obolibrary.org/obo/UBERON_0007357;proventriculus; -http://purl.obolibrary.org/obo/UBERON_0007358;abomasum; -http://purl.obolibrary.org/obo/UBERON_0007359;ruminant forestomach;forestomach -http://purl.obolibrary.org/obo/UBERON_0007361;ruminant reticulum; -http://purl.obolibrary.org/obo/UBERON_0007362;omasum;omasum -http://purl.obolibrary.org/obo/UBERON_0007364;reticulorumen;retriculo-rumen -http://purl.obolibrary.org/obo/UBERON_0007365;rumen; -http://purl.obolibrary.org/obo/UBERON_0007366;ruminant stomach;plurilocular stomach -http://purl.obolibrary.org/obo/UBERON_0007367;surface of tongue;tongue surface -http://purl.obolibrary.org/obo/UBERON_0007371;superior surface of tongue;dorsal surface of tongue -http://purl.obolibrary.org/obo/UBERON_0007373;inferior surface of tongue;ventral surface of tongue -http://purl.obolibrary.org/obo/UBERON_0007373;inferior surface of tongue;ventrum linguae -http://purl.obolibrary.org/obo/UBERON_0007374;incus cartilage element; -http://purl.obolibrary.org/obo/UBERON_0007375;roof of mouth;roof of buccal cavity -http://purl.obolibrary.org/obo/UBERON_0007375;roof of mouth;roof of oral cavity -http://purl.obolibrary.org/obo/UBERON_0007376;outer epithelium;epidermis -http://purl.obolibrary.org/obo/UBERON_0007376;outer epithelium;epidermis (sensu Metazoa) -http://purl.obolibrary.org/obo/UBERON_0007376;outer epithelium;outer epidermal layer -http://purl.obolibrary.org/obo/UBERON_0007376;outer epithelium;outer epithelial layer -http://purl.obolibrary.org/obo/UBERON_0007377;stratum compactum of dermis;dermal deep region -http://purl.obolibrary.org/obo/UBERON_0007377;stratum compactum of dermis;stratum compactum -http://purl.obolibrary.org/obo/UBERON_0007378;egg yolk; -http://purl.obolibrary.org/obo/UBERON_0007379;shelled egg; -http://purl.obolibrary.org/obo/UBERON_0007380;dermal scale;scales -http://purl.obolibrary.org/obo/UBERON_0007381;epidermal scale; -http://purl.obolibrary.org/obo/UBERON_0007383;enveloping layer of ectoderm;EVL -http://purl.obolibrary.org/obo/UBERON_0007383;enveloping layer of ectoderm;enveloping layer -http://purl.obolibrary.org/obo/UBERON_0007384;appendage lymph vessel; -http://purl.obolibrary.org/obo/UBERON_0007385;pectoral appendage lymph vessel; -http://purl.obolibrary.org/obo/UBERON_0007386;pelvic appendage lymph vessel; -http://purl.obolibrary.org/obo/UBERON_0007389;paired limb/fin cartilage; -http://purl.obolibrary.org/obo/UBERON_0007390;pectoral appendage cartilage tissue; -http://purl.obolibrary.org/obo/UBERON_0007391;pelvic appendage cartilage tissue; -http://purl.obolibrary.org/obo/UBERON_0007412;midbrain raphe nuclei;midbrain raphe -http://purl.obolibrary.org/obo/UBERON_0007412;midbrain raphe nuclei;midbrain raphe nuclei -http://purl.obolibrary.org/obo/UBERON_0007412;midbrain raphe nuclei;nuclei raphes tegmenti mesencephali -http://purl.obolibrary.org/obo/UBERON_0007412;midbrain raphe nuclei;raphe nuclei of tegmentum of midbrain -http://purl.obolibrary.org/obo/UBERON_0007412;midbrain raphe nuclei;set of raphe nuclei of tegmentum of midbrain -http://purl.obolibrary.org/obo/UBERON_0007413;nucleus of pontine reticular formation;pontine reticular formation nucleus -http://purl.obolibrary.org/obo/UBERON_0007414;nucleus of midbrain tegmentum;tegmental nuclei -http://purl.obolibrary.org/obo/UBERON_0007414;nucleus of midbrain tegmentum;tegmental nucleus -http://purl.obolibrary.org/obo/UBERON_0007415;nucleus of midbrain reticular formation;mesencephalic reticular nucleus -http://purl.obolibrary.org/obo/UBERON_0007415;nucleus of midbrain reticular formation;midbrain reticular formation nucleus -http://purl.obolibrary.org/obo/UBERON_0007415;nucleus of midbrain reticular formation;midbrain reticular nucleus -http://purl.obolibrary.org/obo/UBERON_0007416;cerebellar peduncle; -http://purl.obolibrary.org/obo/UBERON_0007417;peduncle of neuraxis;neuraxis peduncle -http://purl.obolibrary.org/obo/UBERON_0007418;neural decussation;decussation of neuraxis -http://purl.obolibrary.org/obo/UBERON_0007418;neural decussation;neuraxis chiasm -http://purl.obolibrary.org/obo/UBERON_0007418;neural decussation;neuraxis chiasma -http://purl.obolibrary.org/obo/UBERON_0007418;neural decussation;neuraxis decussation -http://purl.obolibrary.org/obo/UBERON_0007425;decussation of diencephalon;diencephalon decussation -http://purl.obolibrary.org/obo/UBERON_0007440;stratum intermedium of tooth; -http://purl.obolibrary.org/obo/UBERON_0007473;lumen of epithelial sac;cavity of vesicle -http://purl.obolibrary.org/obo/UBERON_0007475;matrix-based tissue; -http://purl.obolibrary.org/obo/UBERON_0007486;fluid-based anatomical entity; -http://purl.obolibrary.org/obo/UBERON_0007490;keratin-based acellular structure; -http://purl.obolibrary.org/obo/UBERON_0007491;chitin-based acellular structure; -http://purl.obolibrary.org/obo/UBERON_0007499;epithelial sac; -http://purl.obolibrary.org/obo/UBERON_0007500;epithelial tube open at both ends; -http://purl.obolibrary.org/obo/UBERON_0007501;arborizing epithelial duct system;arborising epithelial duct system -http://purl.obolibrary.org/obo/UBERON_0007502;epithelial plexus; -http://purl.obolibrary.org/obo/UBERON_0007503;epithelial vesicle; -http://purl.obolibrary.org/obo/UBERON_0007521;smooth muscle sphincter; -http://purl.obolibrary.org/obo/UBERON_0007522;striated muscle sphincter; -http://purl.obolibrary.org/obo/UBERON_0007524;dense mesenchyme tissue; -http://purl.obolibrary.org/obo/UBERON_0007529;loose mesenchyme tissue; -http://purl.obolibrary.org/obo/UBERON_0007530;migrating mesenchyme population; -http://purl.obolibrary.org/obo/UBERON_0007567;regenerating anatomical structure; -http://purl.obolibrary.org/obo/UBERON_0007573;migrating epithelium; -http://purl.obolibrary.org/obo/UBERON_0007574;apical epidermal cap;apical epidermal caps -http://purl.obolibrary.org/obo/UBERON_0007574;apical epidermal cap;apical epithelial cap -http://purl.obolibrary.org/obo/UBERON_0007589;ciliated columnar oviduct epithelium; -http://purl.obolibrary.org/obo/UBERON_0007590;cuboidal oviduct epithelium; -http://purl.obolibrary.org/obo/UBERON_0007592;ciliated columnar epithelium; -http://purl.obolibrary.org/obo/UBERON_0007601;ciliated epithelium; -http://purl.obolibrary.org/obo/UBERON_0007602;stratified columnar epithelium;epithelium stratificatum columnare -http://purl.obolibrary.org/obo/UBERON_0007603;stratified cuboidal epithelium;epithelium stratificatum cuboideum -http://purl.obolibrary.org/obo/UBERON_0007606;ciliated stratified columnar epithelium; -http://purl.obolibrary.org/obo/UBERON_0007610;tibial artery; -http://purl.obolibrary.org/obo/UBERON_0007612;extensor digitorum communis;extensor digitorum -http://purl.obolibrary.org/obo/UBERON_0007612;extensor digitorum communis;extensor digitorum communis muscle -http://purl.obolibrary.org/obo/UBERON_0007613;extensor digitorum lateralis muscle;extensor digitorum lateralis -http://purl.obolibrary.org/obo/UBERON_0007614;extensor digiti minimi muscle; -http://purl.obolibrary.org/obo/UBERON_0007615;prostate gland ventral lobe; -http://purl.obolibrary.org/obo/UBERON_0007616;layer of synovial tissue;synovium -http://purl.obolibrary.org/obo/UBERON_0007617;synovial cavity of joint;articular cavity (synovial joint) -http://purl.obolibrary.org/obo/UBERON_0007617;synovial cavity of joint;cavitas articularis (junctura synovialis) -http://purl.obolibrary.org/obo/UBERON_0007617;synovial cavity of joint;cavity of synovial joint -http://purl.obolibrary.org/obo/UBERON_0007618;synovial cavity of hip joint; -http://purl.obolibrary.org/obo/UBERON_0007619;limiting membrane of retina;retina lamina -http://purl.obolibrary.org/obo/UBERON_0007622;pecten oculi; -http://purl.obolibrary.org/obo/UBERON_0007623;comb and wattle; -http://purl.obolibrary.org/obo/UBERON_0007625;pigment epithelium of eye; -http://purl.obolibrary.org/obo/UBERON_0007626;subparaventricular zone; -http://purl.obolibrary.org/obo/UBERON_0007627;magnocellular nucleus of stria terminalis;magnocellular nucleus -http://purl.obolibrary.org/obo/UBERON_0007628;lateral septal complex;lateral septal area -http://purl.obolibrary.org/obo/UBERON_0007628;lateral septal complex;lateral septum -http://purl.obolibrary.org/obo/UBERON_0007628;lateral septal complex;lateral septum complex -http://purl.obolibrary.org/obo/UBERON_0007629;medial septal complex;medial septum complex -http://purl.obolibrary.org/obo/UBERON_0007630;septohippocampal nucleus; -http://purl.obolibrary.org/obo/UBERON_0007631;accessory olfactory bulb glomerular layer;AOB, glomerular layer -http://purl.obolibrary.org/obo/UBERON_0007631;accessory olfactory bulb glomerular layer;accessory olfactory bulb, glomerular layer -http://purl.obolibrary.org/obo/UBERON_0007631;accessory olfactory bulb glomerular layer;glomerular layer of the accessory olfactory bulb -http://purl.obolibrary.org/obo/UBERON_0007632;Barrington's nucleus;Barrington nucleus -http://purl.obolibrary.org/obo/UBERON_0007632;Barrington's nucleus;nucleus of Barrington -http://purl.obolibrary.org/obo/UBERON_0007633;nucleus of trapezoid body;Tz -http://purl.obolibrary.org/obo/UBERON_0007633;nucleus of trapezoid body;nuclei of trapezoid body -http://purl.obolibrary.org/obo/UBERON_0007633;nucleus of trapezoid body;nucleus corporis trapezoidei -http://purl.obolibrary.org/obo/UBERON_0007633;nucleus of trapezoid body;nucleus of the trapezoid body -http://purl.obolibrary.org/obo/UBERON_0007633;nucleus of trapezoid body;nucleus trapezoidalis -http://purl.obolibrary.org/obo/UBERON_0007633;nucleus of trapezoid body;set of nuclei of trapezoid body -http://purl.obolibrary.org/obo/UBERON_0007633;nucleus of trapezoid body;trapezoid gray -http://purl.obolibrary.org/obo/UBERON_0007633;nucleus of trapezoid body;trapezoid nuclear complex -http://purl.obolibrary.org/obo/UBERON_0007633;nucleus of trapezoid body;trapezoid nuclei -http://purl.obolibrary.org/obo/UBERON_0007634;parabrachial nucleus;parabrachial area -http://purl.obolibrary.org/obo/UBERON_0007634;parabrachial nucleus;parabrachial complex -http://purl.obolibrary.org/obo/UBERON_0007634;parabrachial nucleus;parabrachial nuclei -http://purl.obolibrary.org/obo/UBERON_0007635;nucleus of medulla oblongata; -http://purl.obolibrary.org/obo/UBERON_0007637;hippocampus stratum lucidum; -http://purl.obolibrary.org/obo/UBERON_0007639;Alveus;CA2 alveus -http://purl.obolibrary.org/obo/UBERON_0007639;Alveus;alveus -http://purl.obolibrary.org/obo/UBERON_0007639;Alveus;alveus hippocampi -http://purl.obolibrary.org/obo/UBERON_0007639;Alveus;alveus of fornix -http://purl.obolibrary.org/obo/UBERON_0007639;Alveus;alveus of hippocampus -http://purl.obolibrary.org/obo/UBERON_0007639;Alveus;alveus of the hippocampus -http://purl.obolibrary.org/obo/UBERON_0007639;Alveus;neuraxis alveus -http://purl.obolibrary.org/obo/UBERON_0007639;hippocampus alveus;CA2 alveus -http://purl.obolibrary.org/obo/UBERON_0007639;hippocampus alveus;alveus -http://purl.obolibrary.org/obo/UBERON_0007639;hippocampus alveus;alveus hippocampi -http://purl.obolibrary.org/obo/UBERON_0007639;hippocampus alveus;alveus of fornix -http://purl.obolibrary.org/obo/UBERON_0007639;hippocampus alveus;alveus of hippocampus -http://purl.obolibrary.org/obo/UBERON_0007639;hippocampus alveus;alveus of the hippocampus -http://purl.obolibrary.org/obo/UBERON_0007639;hippocampus alveus;neuraxis alveus -http://purl.obolibrary.org/obo/UBERON_0007640;hippocampus stratum lacunosum moleculare;lacunar-molecular layer of hippocampus -http://purl.obolibrary.org/obo/UBERON_0007640;hippocampus stratum lacunosum moleculare;stratum hippocampi moleculare et substratum lacunosum -http://purl.obolibrary.org/obo/UBERON_0007640;hippocampus stratum lacunosum moleculare;stratum lacunosum moleculare -http://purl.obolibrary.org/obo/UBERON_0007640;hippocampus stratum lacunosum moleculare;stratum lacunosum-moleculare -http://purl.obolibrary.org/obo/UBERON_0007641;trigeminal nuclear complex;nuclei trigemini -http://purl.obolibrary.org/obo/UBERON_0007641;trigeminal nuclear complex;trigeminal nuclei -http://purl.obolibrary.org/obo/UBERON_0007642;ligamentum arteriosum;Botallo's duct -http://purl.obolibrary.org/obo/UBERON_0007642;ligamentum arteriosum;Botallo's ligament -http://purl.obolibrary.org/obo/UBERON_0007642;ligamentum arteriosum;Harvey's ligament -http://purl.obolibrary.org/obo/UBERON_0007642;ligamentum arteriosum;ligamentum arteriosum (ductus arteriosus) -http://purl.obolibrary.org/obo/UBERON_0007643;node of ligamentum arteriosum;Botallo's node -http://purl.obolibrary.org/obo/UBERON_0007643;node of ligamentum arteriosum;ligamentum arteriosum node -http://purl.obolibrary.org/obo/UBERON_0007643;node of ligamentum arteriosum;lymph node of ligamentum arteriosum -http://purl.obolibrary.org/obo/UBERON_0007643;node of ligamentum arteriosum;nodus ligamenti arteriosi -http://purl.obolibrary.org/obo/UBERON_0007644;thoracic lymph node;lymph node of thorax -http://purl.obolibrary.org/obo/UBERON_0007645;future meninx;primary meninx -http://purl.obolibrary.org/obo/UBERON_0007646;endomeninx;future leptomeninges -http://purl.obolibrary.org/obo/UBERON_0007646;endomeninx;future leptomeninx -http://purl.obolibrary.org/obo/UBERON_0007647;ectomeninx;future dura mater -http://purl.obolibrary.org/obo/UBERON_0007650;esophagogastric junction;cardioesophageal junction -http://purl.obolibrary.org/obo/UBERON_0007650;esophagogastric junction;gastroesophageal junction -http://purl.obolibrary.org/obo/UBERON_0007651;anatomical junction;anatomical junction -http://purl.obolibrary.org/obo/UBERON_0007651;anatomical junction;junction -http://purl.obolibrary.org/obo/UBERON_0007652;esophageal sphincter; -http://purl.obolibrary.org/obo/UBERON_0007653;capillary loop nephron;developing capillary loop stage nephron -http://purl.obolibrary.org/obo/UBERON_0007653;capillary loop nephron;stage III nephron -http://purl.obolibrary.org/obo/UBERON_0007654;maturing nephron; -http://purl.obolibrary.org/obo/UBERON_0007656;lateral recess of fourth ventricle;recessus lateralis (ventriculi quarti) -http://purl.obolibrary.org/obo/UBERON_0007657;anular ligament of radius;annular ligament of radius -http://purl.obolibrary.org/obo/UBERON_0007657;anular ligament of radius;ligamentum anulare radii -http://purl.obolibrary.org/obo/UBERON_0007657;anular ligament of radius;orbicular ligament of radius -http://purl.obolibrary.org/obo/UBERON_0007679;intersomitic vein;intersegmental vein -http://purl.obolibrary.org/obo/UBERON_0007681;facial neural crest; -http://purl.obolibrary.org/obo/UBERON_0007683;lateral mesenchyme derived from mesoderm; -http://purl.obolibrary.org/obo/UBERON_0007684;uriniferous tubule; -http://purl.obolibrary.org/obo/UBERON_0007685;region of nephron tubule;renal tubule region -http://purl.obolibrary.org/obo/UBERON_0007687;kidney field; -http://purl.obolibrary.org/obo/UBERON_0007688;anlage;developmental field -http://purl.obolibrary.org/obo/UBERON_0007689;thyroid diverticulum; -http://purl.obolibrary.org/obo/UBERON_0007690;early pharyngeal endoderm;early pharyngeal arch endoderm -http://purl.obolibrary.org/obo/UBERON_0007691;gustatory pore;porus gustatorius -http://purl.obolibrary.org/obo/UBERON_0007691;gustatory pore;taste pore -http://purl.obolibrary.org/obo/UBERON_0007692;nucleus of thalamus;nuclear complex of thalamus -http://purl.obolibrary.org/obo/UBERON_0007692;nucleus of thalamus;thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0007693;caroticotympanic artery; -http://purl.obolibrary.org/obo/UBERON_0007699;tract of spinal cord;spinal cord tract -http://purl.obolibrary.org/obo/UBERON_0007702;tract of brain;brain tract -http://purl.obolibrary.org/obo/UBERON_0007702;tract of brain;landmark tracts -http://purl.obolibrary.org/obo/UBERON_0007703;spinothalamic tract; -http://purl.obolibrary.org/obo/UBERON_0007707;superior cerebellar peduncle of midbrain;SCPMB -http://purl.obolibrary.org/obo/UBERON_0007707;superior cerebellar peduncle of midbrain;superior cerebellar peduncle of midbrain -http://purl.obolibrary.org/obo/UBERON_0007709;superior cerebellar peduncle of pons;SCPP -http://purl.obolibrary.org/obo/UBERON_0007709;superior cerebellar peduncle of pons;superior cerebellar peduncle of pons -http://purl.obolibrary.org/obo/UBERON_0007710;intermediate nucleus of lateral lemniscus;nucleus of the lateral lemniscus, horizontal part -http://purl.obolibrary.org/obo/UBERON_0007711;sixth cervical dorsal root ganglion;C6 dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0007711;sixth cervical dorsal root ganglion;sixth cervical dorsal root ganglia -http://purl.obolibrary.org/obo/UBERON_0007711;sixth cervical dorsal root ganglion;sixth cervical dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0007711;sixth cervical dorsal root ganglion;sixth cervical spinal ganglion -http://purl.obolibrary.org/obo/UBERON_0007712;fourth thoracic spinal ganglion;fourth thoracic dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0007713;fourth sacral spinal ganglion;forth sacral dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0007713;fourth sacral spinal ganglion;fourth sacral dorsal root ganglion -http://purl.obolibrary.org/obo/UBERON_0007714;cervical subsegment of spinal cord;segment part of cervical spinal cord -http://purl.obolibrary.org/obo/UBERON_0007715;thoracic subsegment of spinal cord;segment part of thoracic spinal cord -http://purl.obolibrary.org/obo/UBERON_0007716;lumbar subsegment of spinal cord;segment part of lumbar spinal cord -http://purl.obolibrary.org/obo/UBERON_0007717;sacral subsegment of spinal cord;segment part of sacral spinal cord -http://purl.obolibrary.org/obo/UBERON_0007718;principal artery to limb; -http://purl.obolibrary.org/obo/UBERON_0007719;bone of reproductive organ; -http://purl.obolibrary.org/obo/UBERON_0007721;interphalangeal joint of pes;foot interphalangeal joint -http://purl.obolibrary.org/obo/UBERON_0007721;interphalangeal joint of pes;hindlimb digit inter-phalangeal joint -http://purl.obolibrary.org/obo/UBERON_0007721;interphalangeal joint of pes;interphalangeal joint of foot -http://purl.obolibrary.org/obo/UBERON_0007722;interphalangeal joint of manus;articulationes digitorum manus -http://purl.obolibrary.org/obo/UBERON_0007722;interphalangeal joint of manus;articulationes interphalangeae manus -http://purl.obolibrary.org/obo/UBERON_0007722;interphalangeal joint of manus;interphalangeal joint of hand -http://purl.obolibrary.org/obo/UBERON_0007723;interphalangeal joint of manual digit 1;interphalangeal joint of first digit of hand -http://purl.obolibrary.org/obo/UBERON_0007723;interphalangeal joint of manual digit 1;interphalangeal joint of hand digit 1 -http://purl.obolibrary.org/obo/UBERON_0007723;interphalangeal joint of manual digit 1;interphalangeal joint of manual digit 1 -http://purl.obolibrary.org/obo/UBERON_0007723;interphalangeal joint of manual digit 1;interphalangeal joint of manual digit I -http://purl.obolibrary.org/obo/UBERON_0007723;interphalangeal joint of manual digit 1;interphalangeal joint of pollex -http://purl.obolibrary.org/obo/UBERON_0007724;interphalangeal joint of pedal digit 1;interphalangeal joint of first digit of foot -http://purl.obolibrary.org/obo/UBERON_0007724;interphalangeal joint of pedal digit 1;interphalangeal joint of first digit of pes -http://purl.obolibrary.org/obo/UBERON_0007724;interphalangeal joint of pedal digit 1;interphalangeal joint of foot digit 1 -http://purl.obolibrary.org/obo/UBERON_0007724;interphalangeal joint of pedal digit 1;interphalangeal joint of great toe -http://purl.obolibrary.org/obo/UBERON_0007724;interphalangeal joint of pedal digit 1;interphalangeal joint of hallux -http://purl.obolibrary.org/obo/UBERON_0007724;interphalangeal joint of pedal digit 1;interphalangeal joint of pedal digit 1 -http://purl.obolibrary.org/obo/UBERON_0007724;interphalangeal joint of pedal digit 1;interphalangeal joint of pedal digit I -http://purl.obolibrary.org/obo/UBERON_0007725;interphalangeal joint of pedal digit 2;interphalangeal joint of pedal digit II -http://purl.obolibrary.org/obo/UBERON_0007725;interphalangeal joint of pedal digit 2;interphalangeal joint of second digit of foot -http://purl.obolibrary.org/obo/UBERON_0007726;interphalangeal joint of pedal digit 3;interphalangeal joint of pedal digit III -http://purl.obolibrary.org/obo/UBERON_0007726;interphalangeal joint of pedal digit 3;interphalangeal joint of third digit of foot -http://purl.obolibrary.org/obo/UBERON_0007727;interphalangeal joint of pedal digit 4;interphalangeal joint of fourth digit of foot -http://purl.obolibrary.org/obo/UBERON_0007727;interphalangeal joint of pedal digit 4;interphalangeal joint of pedal digit IV -http://purl.obolibrary.org/obo/UBERON_0007728;interphalangeal joint of pedal digit 5;interphalangeal joint of fifth digit of foot -http://purl.obolibrary.org/obo/UBERON_0007728;interphalangeal joint of pedal digit 5;interphalangeal joint of fifth toe -http://purl.obolibrary.org/obo/UBERON_0007728;interphalangeal joint of pedal digit 5;interphalangeal joint of pedal digit V -http://purl.obolibrary.org/obo/UBERON_0007729;interphalangeal joint of manual digit 2;interphalangeal joint of manual digit II -http://purl.obolibrary.org/obo/UBERON_0007729;interphalangeal joint of manual digit 2;interphalangeal joint of second digit of hand -http://purl.obolibrary.org/obo/UBERON_0007729;interphalangeal joint of manual digit 2;interphalangeal joint of second finger -http://purl.obolibrary.org/obo/UBERON_0007730;interphalangeal joint of manual digit 3;interphalangeal joint of manual digit III -http://purl.obolibrary.org/obo/UBERON_0007730;interphalangeal joint of manual digit 3;interphalangeal joint of third digit of hand -http://purl.obolibrary.org/obo/UBERON_0007730;interphalangeal joint of manual digit 3;interphalangeal joint of third finger -http://purl.obolibrary.org/obo/UBERON_0007731;interphalangeal joint of manual digit 4;interphalangeal joint of fourth digit of hand -http://purl.obolibrary.org/obo/UBERON_0007731;interphalangeal joint of manual digit 4;interphalangeal joint of fourth finger -http://purl.obolibrary.org/obo/UBERON_0007731;interphalangeal joint of manual digit 4;interphalangeal joint of manual digit IV -http://purl.obolibrary.org/obo/UBERON_0007732;interphalangeal joint of manual digit 5;interphalangeal joint of fifth digit of hand -http://purl.obolibrary.org/obo/UBERON_0007732;interphalangeal joint of manual digit 5;interphalangeal joint of fifth finger -http://purl.obolibrary.org/obo/UBERON_0007732;interphalangeal joint of manual digit 5;interphalangeal joint of manual digit V -http://purl.obolibrary.org/obo/UBERON_0007735;metacarpophalangeal joint of manual digit 1;metacarpophalangeal joint of digit 1 -http://purl.obolibrary.org/obo/UBERON_0007735;metacarpophalangeal joint of manual digit 1;metacarpophalangeal joint of first digit of hand -http://purl.obolibrary.org/obo/UBERON_0007735;metacarpophalangeal joint of manual digit 1;metacarpophalangeal joint of manual digit I -http://purl.obolibrary.org/obo/UBERON_0007738;metacarpophalangeal joint of manual digit 2;metacarpophalangeal joint of digit 2 -http://purl.obolibrary.org/obo/UBERON_0007738;metacarpophalangeal joint of manual digit 2;metacarpophalangeal joint of manual digit II -http://purl.obolibrary.org/obo/UBERON_0007738;metacarpophalangeal joint of manual digit 2;metacarpophalangeal joint of second digit of hand -http://purl.obolibrary.org/obo/UBERON_0007738;metacarpophalangeal joint of manual digit 2;metacarpophalangeal joint of second finger -http://purl.obolibrary.org/obo/UBERON_0007741;metacarpophalangeal joint of manual digit 3;metacarpophalangeal joint of digit 3 -http://purl.obolibrary.org/obo/UBERON_0007741;metacarpophalangeal joint of manual digit 3;metacarpophalangeal joint of manual digit III -http://purl.obolibrary.org/obo/UBERON_0007741;metacarpophalangeal joint of manual digit 3;metacarpophalangeal joint of third digit of hand -http://purl.obolibrary.org/obo/UBERON_0007741;metacarpophalangeal joint of manual digit 3;metacarpophalangeal joint of third finger -http://purl.obolibrary.org/obo/UBERON_0007744;metacarpophalangeal joint of manual digit 4;metacarpophalangeal joint of digit 4 -http://purl.obolibrary.org/obo/UBERON_0007744;metacarpophalangeal joint of manual digit 4;metacarpophalangeal joint of fourth digit of hand -http://purl.obolibrary.org/obo/UBERON_0007744;metacarpophalangeal joint of manual digit 4;metacarpophalangeal joint of fourth finger -http://purl.obolibrary.org/obo/UBERON_0007744;metacarpophalangeal joint of manual digit 4;metacarpophalangeal joint of manual digit IV -http://purl.obolibrary.org/obo/UBERON_0007747;metacarpophalangeal joint of manual digit 5;metacarpophalangeal joint of digit 5 -http://purl.obolibrary.org/obo/UBERON_0007747;metacarpophalangeal joint of manual digit 5;metacarpophalangeal joint of fifth digit of hand -http://purl.obolibrary.org/obo/UBERON_0007747;metacarpophalangeal joint of manual digit 5;metacarpophalangeal joint of fifth finger -http://purl.obolibrary.org/obo/UBERON_0007747;metacarpophalangeal joint of manual digit 5;metacarpophalangeal joint of manual digit V -http://purl.obolibrary.org/obo/UBERON_0007750;metatarsophalangeal joint of pedal digit 1;first metatarsophalangeal joint -http://purl.obolibrary.org/obo/UBERON_0007750;metatarsophalangeal joint of pedal digit 1;metatarsophalangeal joint of first digit of foot -http://purl.obolibrary.org/obo/UBERON_0007750;metatarsophalangeal joint of pedal digit 1;metatarsophalangeal joint of great toe -http://purl.obolibrary.org/obo/UBERON_0007750;metatarsophalangeal joint of pedal digit 1;metatarsophalangeal joint of pedal digit I -http://purl.obolibrary.org/obo/UBERON_0007753;metatarsophalangeal joint of pedal digit 2;metatarsophalangeal joint of pedal digit II -http://purl.obolibrary.org/obo/UBERON_0007753;metatarsophalangeal joint of pedal digit 2;metatarsophalangeal joint of second digit of foot -http://purl.obolibrary.org/obo/UBERON_0007756;metatarsophalangeal joint of pedal digit 3;metatarsophalangeal joint of pedal digit III -http://purl.obolibrary.org/obo/UBERON_0007756;metatarsophalangeal joint of pedal digit 3;metatarsophalangeal joint of third digit of foot -http://purl.obolibrary.org/obo/UBERON_0007759;metatarsophalangeal joint of pedal digit 4;metatarsophalangeal joint of fourth digit of foot -http://purl.obolibrary.org/obo/UBERON_0007759;metatarsophalangeal joint of pedal digit 4;metatarsophalangeal joint of pedal digit IV -http://purl.obolibrary.org/obo/UBERON_0007762;metatarsophalangeal joint of pedal digit 5;metatarsophalangeal joint of fifth digit of foot -http://purl.obolibrary.org/obo/UBERON_0007762;metatarsophalangeal joint of pedal digit 5;metatarsophalangeal joint of fifth toe -http://purl.obolibrary.org/obo/UBERON_0007762;metatarsophalangeal joint of pedal digit 5;metatarsophalangeal joint of pedal digit V -http://purl.obolibrary.org/obo/UBERON_0007763;cerebellum vermis culmen;cerebellum culmen -http://purl.obolibrary.org/obo/UBERON_0007763;cerebellum vermis culmen;culmen lobule -http://purl.obolibrary.org/obo/UBERON_0007763;cerebellum vermis culmen;neuraxis culmen -http://purl.obolibrary.org/obo/UBERON_0007764;paramedian reticular nucleus;ventral paramedian reticular nucleus -http://purl.obolibrary.org/obo/UBERON_0007767;dorsal premammillary nucleus;premammillary nucleus dorsal part -http://purl.obolibrary.org/obo/UBERON_0007768;ventral premammillary nucleus;premammillary nucleus ventral part -http://purl.obolibrary.org/obo/UBERON_0007769;medial preoptic region;medial preoptic area -http://purl.obolibrary.org/obo/UBERON_0007769;medial preoptic region;medial preopticarea -http://purl.obolibrary.org/obo/UBERON_0007770;osphradium; -http://purl.obolibrary.org/obo/UBERON_0007771;epidermis gland;epidermal gland -http://purl.obolibrary.org/obo/UBERON_0007771;epidermis gland;gland of epidermis -http://purl.obolibrary.org/obo/UBERON_0007772;scrotal sweat;scrotum sweat -http://purl.obolibrary.org/obo/UBERON_0007772;scrotal sweat;sweat of scrotal sac -http://purl.obolibrary.org/obo/UBERON_0007772;scrotal sweat;sweat of scrotum -http://purl.obolibrary.org/obo/UBERON_0007773;scrotal sweat gland; -http://purl.obolibrary.org/obo/UBERON_0007774;secondary dentition;dentes permanentes -http://purl.obolibrary.org/obo/UBERON_0007774;secondary dentition;permanent dentition -http://purl.obolibrary.org/obo/UBERON_0007774;secondary dentition;permanent teeth -http://purl.obolibrary.org/obo/UBERON_0007774;secondary dentition;set of permanent teeth -http://purl.obolibrary.org/obo/UBERON_0007774;secondary dentition;set of secondary teeth -http://purl.obolibrary.org/obo/UBERON_0007775;secondary tooth;permanent tooth -http://purl.obolibrary.org/obo/UBERON_0007776;unerupted tooth; -http://purl.obolibrary.org/obo/UBERON_0007777;umbilical vein endothelium; -http://purl.obolibrary.org/obo/UBERON_0007778;umbilical artery endothelium; -http://purl.obolibrary.org/obo/UBERON_0007779;transudate; -http://purl.obolibrary.org/obo/UBERON_0007780;exudate; -http://purl.obolibrary.org/obo/UBERON_0007794;secretion of serous gland;serosal fluid -http://purl.obolibrary.org/obo/UBERON_0007794;secretion of serous gland;serous gland fluid -http://purl.obolibrary.org/obo/UBERON_0007795;ascitic fluid; -http://purl.obolibrary.org/obo/UBERON_0007798;vascular system; -http://purl.obolibrary.org/obo/UBERON_0007799;mixed dentition;transitional dentition -http://purl.obolibrary.org/obo/UBERON_0007800;proatlas; -http://purl.obolibrary.org/obo/UBERON_0007801;pygostyle; -http://purl.obolibrary.org/obo/UBERON_0007802;uropygial gland; -http://purl.obolibrary.org/obo/UBERON_0007803;preen oil; -http://purl.obolibrary.org/obo/UBERON_0007804;sclerotic ring;scleral ring -http://purl.obolibrary.org/obo/UBERON_0007805;synsacrum; -http://purl.obolibrary.org/obo/UBERON_0007806;connecting stalk; -http://purl.obolibrary.org/obo/UBERON_0007807;connecting stalk vasculature;connecting stalk blood vessels -http://purl.obolibrary.org/obo/UBERON_0007808;adipose tissue of abdominal region; -http://purl.obolibrary.org/obo/UBERON_0007809;fascia of Camper;Camper's fascia -http://purl.obolibrary.org/obo/UBERON_0007809;fascia of Camper;adipose layer of superficial fascia of abdomen -http://purl.obolibrary.org/obo/UBERON_0007809;fascia of Camper;camper's fascia -http://purl.obolibrary.org/obo/UBERON_0007809;fascia of Camper;fascia investiens intermedia abdominis -http://purl.obolibrary.org/obo/UBERON_0007809;fascia of Camper;fatty layer of subcutaneous tissue of abdomen -http://purl.obolibrary.org/obo/UBERON_0007809;fascia of Camper;fatty layer of superficial fascia of abdomen -http://purl.obolibrary.org/obo/UBERON_0007809;fascia of Camper;intermediate investing fascia of abdomen -http://purl.obolibrary.org/obo/UBERON_0007809;fascia of Camper;panniculus adiposus abdominis -http://purl.obolibrary.org/obo/UBERON_0007809;fascia of Camper;panniculus adiposus telae subcutaneae abdominis -http://purl.obolibrary.org/obo/UBERON_0007809;fascia of Camper;superficial layer of superficial fascia of abdomen -http://purl.obolibrary.org/obo/UBERON_0007811;craniocervical region;cephalic area -http://purl.obolibrary.org/obo/UBERON_0007811;craniocervical region;cephalic part of animal -http://purl.obolibrary.org/obo/UBERON_0007811;craniocervical region;cephalic region -http://purl.obolibrary.org/obo/UBERON_0007811;craniocervical region;head and neck -http://purl.obolibrary.org/obo/UBERON_0007811;craniocervical region;head or neck -http://purl.obolibrary.org/obo/UBERON_0007812;post-anal tail;muscular postanal tail -http://purl.obolibrary.org/obo/UBERON_0007812;post-anal tail;postanal tail -http://purl.obolibrary.org/obo/UBERON_0007818;major alar cartilage;cartilago alaris major -http://purl.obolibrary.org/obo/UBERON_0007818;major alar cartilage;greater alar cartilage -http://purl.obolibrary.org/obo/UBERON_0007819;minor alar cartilage;lesser alar cartilage -http://purl.obolibrary.org/obo/UBERON_0007820;accessory nasal cartilage; -http://purl.obolibrary.org/obo/UBERON_0007821;lateral nasal cartilage; -http://purl.obolibrary.org/obo/UBERON_0007822;vomeronasal cartilage;Huschke's cartilage -http://purl.obolibrary.org/obo/UBERON_0007822;vomeronasal cartilage;Jacobson's cartilage -http://purl.obolibrary.org/obo/UBERON_0007823;appendage girdle region; -http://purl.obolibrary.org/obo/UBERON_0007825;reticular membrane of spiral organ;membrana reticularis organi spiralis -http://purl.obolibrary.org/obo/UBERON_0007825;reticular membrane of spiral organ;reticular lamina of spiral organ -http://purl.obolibrary.org/obo/UBERON_0007825;reticular membrane of spiral organ;reticular lamina of spiral organ of cochlea -http://purl.obolibrary.org/obo/UBERON_0007826;peritoneal mesentery; -http://purl.obolibrary.org/obo/UBERON_0007827;external nose; -http://purl.obolibrary.org/obo/UBERON_0007828;girdle bone/zone;girdle bone -http://purl.obolibrary.org/obo/UBERON_0007829;pectoral girdle bone;bone of pectoral girdle -http://purl.obolibrary.org/obo/UBERON_0007830;pelvic girdle bone/zone;bone of pelvic girdle -http://purl.obolibrary.org/obo/UBERON_0007830;pelvic girdle bone/zone;pelvic girdle bone -http://purl.obolibrary.org/obo/UBERON_0007831;pectoral girdle skeleton;skeletal parts of pectoral girdle -http://purl.obolibrary.org/obo/UBERON_0007831;pectoral girdle skeleton;skeleton of pectoral girdle -http://purl.obolibrary.org/obo/UBERON_0007832;pelvic girdle skeleton;pelvic girdle skeleton -http://purl.obolibrary.org/obo/UBERON_0007832;pelvic girdle skeleton;skeletal parts of pelvic girdle -http://purl.obolibrary.org/obo/UBERON_0007832;pelvic girdle skeleton;skeleton of pelvic girdle -http://purl.obolibrary.org/obo/UBERON_0007833;osseus semicircular canal;osseous semicircular canal -http://purl.obolibrary.org/obo/UBERON_0007834;lumbar spinal cord ventral commissure;lumbar spinal cord anterior commissure -http://purl.obolibrary.org/obo/UBERON_0007835;sacral spinal cord ventral commissure;sacral spinal cord anterior commissure -http://purl.obolibrary.org/obo/UBERON_0007836;cervical spinal cord ventral commissure;cervical spinal cord anterior commissure -http://purl.obolibrary.org/obo/UBERON_0007837;thoracic spinal cord ventral commissure;thoracic spinal cord anterior commissure -http://purl.obolibrary.org/obo/UBERON_0007838;spinal cord white commissure;white commissure of spinal cord -http://purl.obolibrary.org/obo/UBERON_0007840;spinal cord dorsal white commissure;commissura alba posterior medullae spinalis -http://purl.obolibrary.org/obo/UBERON_0007840;spinal cord dorsal white commissure;dorsal white commissure of spinal cord -http://purl.obolibrary.org/obo/UBERON_0007840;spinal cord dorsal white commissure;posterior white commissure of spinal cord -http://purl.obolibrary.org/obo/UBERON_0007841;furcula;furcula bone -http://purl.obolibrary.org/obo/UBERON_0007842;membrane bone; -http://purl.obolibrary.org/obo/UBERON_0007843;uncinate process of ribs; -http://purl.obolibrary.org/obo/UBERON_0007844;cartilage element;cartilage organ -http://purl.obolibrary.org/obo/UBERON_0007844;cartilage element;cartilaginous element -http://purl.obolibrary.org/obo/UBERON_0007844;cartilage element;chondrogenic element -http://purl.obolibrary.org/obo/UBERON_0007845;regular connective tissue; -http://purl.obolibrary.org/obo/UBERON_0007846;dense regular connective tissue;dense fibrous connective tissue -http://purl.obolibrary.org/obo/UBERON_0007846;dense regular connective tissue;dense regular collagenous connective tissue -http://purl.obolibrary.org/obo/UBERON_0007846;dense regular connective tissue;dense regular collagenous tissue -http://purl.obolibrary.org/obo/UBERON_0007846;dense regular connective tissue;regular dense connective tissue -http://purl.obolibrary.org/obo/UBERON_0007846;dense regular connective tissue;typus regularis (textus connectivus collagenosus compactus) -http://purl.obolibrary.org/obo/UBERON_0007862;perichordal tissue;perichordal connective tissue -http://purl.obolibrary.org/obo/UBERON_0007862;perichordal tissue;perichordal sheath -http://purl.obolibrary.org/obo/UBERON_0007862;perichordal tissue;perichordal sheath tissue -http://purl.obolibrary.org/obo/UBERON_0007914;bone of craniocervical region;head or neck bone -http://purl.obolibrary.org/obo/UBERON_0007958;central carpal bone;central carpals -http://purl.obolibrary.org/obo/UBERON_0007959;falciform carpal bone;os falciform -http://purl.obolibrary.org/obo/UBERON_0007959;falciform carpal bone;os falciforme -http://purl.obolibrary.org/obo/UBERON_0007960;scapholunate;scapholunate bone -http://purl.obolibrary.org/obo/UBERON_0007990;proximal sesamoid bone of pes;proximal sesamoid bone of foot -http://purl.obolibrary.org/obo/UBERON_0007991;proximal sesamoid bone of manus;proximal sesamoid bone of hand -http://purl.obolibrary.org/obo/UBERON_0007993;ulnar sesamoid bone;ulnar sesamoid -http://purl.obolibrary.org/obo/UBERON_0007997;sesamoid bone of manus;sesamoid bone of hand -http://purl.obolibrary.org/obo/UBERON_0008000;sesamoid bone of pes;sesamoid bone of foot -http://purl.obolibrary.org/obo/UBERON_0008001;irregular bone;os irregulare -http://purl.obolibrary.org/obo/UBERON_0008114;joint of girdle;girdle joint -http://purl.obolibrary.org/obo/UBERON_0008115;surface of cartilage;cartilage surface -http://purl.obolibrary.org/obo/UBERON_0008124;joint articular surface; -http://purl.obolibrary.org/obo/UBERON_0008187;hypertrophic cartilage zone; -http://purl.obolibrary.org/obo/UBERON_0008188;tendon of biceps brachii;biceps brachii tendon -http://purl.obolibrary.org/obo/UBERON_0008192;tendon of triceps brachii;triceps brachii tendon -http://purl.obolibrary.org/obo/UBERON_0008192;tendon of triceps brachii;triceps tendon -http://purl.obolibrary.org/obo/UBERON_0008193;pneumatized bone;hollow bone -http://purl.obolibrary.org/obo/UBERON_0008193;pneumatized bone;os pneumaticum -http://purl.obolibrary.org/obo/UBERON_0008193;pneumatized bone;pneumatic bone -http://purl.obolibrary.org/obo/UBERON_0008194;tibiotarsus; -http://purl.obolibrary.org/obo/UBERON_0008195;tarsometatarsus; -http://purl.obolibrary.org/obo/UBERON_0008196;muscle of pectoral girdle;muscle of shoulder girdle -http://purl.obolibrary.org/obo/UBERON_0008196;muscle of pectoral girdle;pectoral girdle muscle -http://purl.obolibrary.org/obo/UBERON_0008198;nail plate; -http://purl.obolibrary.org/obo/UBERON_0008199;chin;mental part of face -http://purl.obolibrary.org/obo/UBERON_0008199;chin;mental region -http://purl.obolibrary.org/obo/UBERON_0008199;chin;mental region of face -http://purl.obolibrary.org/obo/UBERON_0008199;chin;regio mentalis -http://purl.obolibrary.org/obo/UBERON_0008200;forehead; -http://purl.obolibrary.org/obo/UBERON_0008201;scute;scuta -http://purl.obolibrary.org/obo/UBERON_0008201;scute;scutae -http://purl.obolibrary.org/obo/UBERON_0008201;scute;scutum -http://purl.obolibrary.org/obo/UBERON_0008202;bone of hip region; -http://purl.obolibrary.org/obo/UBERON_0008203;pelvic cavity;space of pelvic compartment -http://purl.obolibrary.org/obo/UBERON_0008229;craniocervical region musculature;head or neck muscle -http://purl.obolibrary.org/obo/UBERON_0008230;tibialis;tibialis muscle -http://purl.obolibrary.org/obo/UBERON_0008231;dorsal thoracic segment of trunk;back of thorax -http://purl.obolibrary.org/obo/UBERON_0008231;dorsal thoracic segment of trunk;dorsum of thorax -http://purl.obolibrary.org/obo/UBERON_0008231;dorsal thoracic segment of trunk;posterior part of thorax -http://purl.obolibrary.org/obo/UBERON_0008231;dorsal thoracic segment of trunk;thoracic back -http://purl.obolibrary.org/obo/UBERON_0008231;dorsal thoracic segment of trunk;thoracic part of back -http://purl.obolibrary.org/obo/UBERON_0008231;dorsal thoracic segment of trunk;upper back -http://purl.obolibrary.org/obo/UBERON_0008242;lower back muscle; -http://purl.obolibrary.org/obo/UBERON_0008243;upper back muscle; -http://purl.obolibrary.org/obo/UBERON_0008245;pennate muscle; -http://purl.obolibrary.org/obo/UBERON_0008246;pyloric stomach; -http://purl.obolibrary.org/obo/UBERON_0008247;tube foot; -http://purl.obolibrary.org/obo/UBERON_0008248;echinoderm pyloric cecum; -http://purl.obolibrary.org/obo/UBERON_0008250;cardiac stomach; -http://purl.obolibrary.org/obo/UBERON_0008251;water vascular system; -http://purl.obolibrary.org/obo/UBERON_0008252;tube foot ampulla; -http://purl.obolibrary.org/obo/UBERON_0008253;Aristotle's lantern;Aristotles lantern -http://purl.obolibrary.org/obo/UBERON_0008254;styliform cartilage; -http://purl.obolibrary.org/obo/UBERON_0008255;right clavicle; -http://purl.obolibrary.org/obo/UBERON_0008256;left clavicle; -http://purl.obolibrary.org/obo/UBERON_0008257;radial sesamoid;os sesamoideum radiale -http://purl.obolibrary.org/obo/UBERON_0008258;oral subdivision of organism; -http://purl.obolibrary.org/obo/UBERON_0008259;aboral subdivision of organism; -http://purl.obolibrary.org/obo/UBERON_0008260;spine appendage; -http://purl.obolibrary.org/obo/UBERON_0008261;pedicellaria;pedicellariae -http://purl.obolibrary.org/obo/UBERON_0008262;ambulacral area; -http://purl.obolibrary.org/obo/UBERON_0008263;inter-ambulacral area; -http://purl.obolibrary.org/obo/UBERON_0008265;echinopluteus larva;pluteus larva -http://purl.obolibrary.org/obo/UBERON_0008266;periodontal ligament;fibra periodontalis -http://purl.obolibrary.org/obo/UBERON_0008266;periodontal ligament;periodontal fiber -http://purl.obolibrary.org/obo/UBERON_0008266;periodontal ligament;periodontal fibre -http://purl.obolibrary.org/obo/UBERON_0008267;left supracardinal vein; -http://purl.obolibrary.org/obo/UBERON_0008268;right supracardinal vein; -http://purl.obolibrary.org/obo/UBERON_0008269;nacre;mother of pearl -http://purl.obolibrary.org/obo/UBERON_0008270;mollusc shell; -http://purl.obolibrary.org/obo/UBERON_0008271;turtle shell; -http://purl.obolibrary.org/obo/UBERON_0008274;mollusc venom; -http://purl.obolibrary.org/obo/UBERON_0008275;carapace;chelonian carapace -http://purl.obolibrary.org/obo/UBERON_0008276;plastron; -http://purl.obolibrary.org/obo/UBERON_0008280;cnidarian venom; -http://purl.obolibrary.org/obo/UBERON_0008281;tooth bud;dental bud -http://purl.obolibrary.org/obo/UBERON_0008281;tooth bud;dental germ -http://purl.obolibrary.org/obo/UBERON_0008281;tooth bud;tooth germ -http://purl.obolibrary.org/obo/UBERON_0008283;columnella; -http://purl.obolibrary.org/obo/UBERON_0008284;columnella muscle; -http://purl.obolibrary.org/obo/UBERON_0008285;rumen epithelium; -http://purl.obolibrary.org/obo/UBERON_0008286;feather calamus; -http://purl.obolibrary.org/obo/UBERON_0008287;feather vane;vexillum -http://purl.obolibrary.org/obo/UBERON_0008288;feather rachis;rachis of feather -http://purl.obolibrary.org/obo/UBERON_0008290;afterfeather; -http://purl.obolibrary.org/obo/UBERON_0008291;down feather;downy feather -http://purl.obolibrary.org/obo/UBERON_0008291;down feather;plumaceous feather -http://purl.obolibrary.org/obo/UBERON_0008291;down feather;plumulaceous feather -http://purl.obolibrary.org/obo/UBERON_0008292;vaned feather; -http://purl.obolibrary.org/obo/UBERON_0008293;filoplume feather;filoplume -http://purl.obolibrary.org/obo/UBERON_0008294;feather barb; -http://purl.obolibrary.org/obo/UBERON_0008295;feather barbule; -http://purl.obolibrary.org/obo/UBERON_0008297;pennaceous feather; -http://purl.obolibrary.org/obo/UBERON_0008304;inner chondrogenic layer of perichondrium; -http://purl.obolibrary.org/obo/UBERON_0008305;outer fibrous layer of perichondrium; -http://purl.obolibrary.org/obo/UBERON_0008307;heart endothelium; -http://purl.obolibrary.org/obo/UBERON_0008310;nasopharyngeal gland; -http://purl.obolibrary.org/obo/UBERON_0008311;penile bulb artery;arteria bulbi penis -http://purl.obolibrary.org/obo/UBERON_0008311;penile bulb artery;artery of bulb of penis -http://purl.obolibrary.org/obo/UBERON_0008320;common penile artery; -http://purl.obolibrary.org/obo/UBERON_0008321;deep artery of penis;arteria profunda penis -http://purl.obolibrary.org/obo/UBERON_0008321;deep artery of penis;deep penile artery -http://purl.obolibrary.org/obo/UBERON_0008322;deep artery of clitoris; -http://purl.obolibrary.org/obo/UBERON_0008323;dorsal artery of clitoris; -http://purl.obolibrary.org/obo/UBERON_0008324;erectile tissue; -http://purl.obolibrary.org/obo/UBERON_0008330;vestibule of vagina;vagina vestibule -http://purl.obolibrary.org/obo/UBERON_0008330;vestibule of vagina;vaginal vestibule -http://purl.obolibrary.org/obo/UBERON_0008330;vestibule of vagina;vestibule of vagina -http://purl.obolibrary.org/obo/UBERON_0008330;vestibule of vagina;vestibulum pudendi -http://purl.obolibrary.org/obo/UBERON_0008330;vestibule of vagina;vestibulum vaginae -http://purl.obolibrary.org/obo/UBERON_0008331;clitoral smooth muscle; -http://purl.obolibrary.org/obo/UBERON_0008332;hilum of neuraxis;neuraxis hilum -http://purl.obolibrary.org/obo/UBERON_0008333;hilum of inferior olivary complex;hilum nuclei olivaris inferioris -http://purl.obolibrary.org/obo/UBERON_0008333;hilum of inferior olivary complex;hilum of inferior olivary nucleus -http://purl.obolibrary.org/obo/UBERON_0008333;hilum of inferior olivary complex;inferior olivary hilum -http://purl.obolibrary.org/obo/UBERON_0008333;hilum of inferior olivary complex;inferior olive hilum -http://purl.obolibrary.org/obo/UBERON_0008334;subarachnoid sulcus; -http://purl.obolibrary.org/obo/UBERON_0008335;ventrolateral sulcus of medulla oblongata;anterolateral sulcus of medulla -http://purl.obolibrary.org/obo/UBERON_0008335;ventrolateral sulcus of medulla oblongata;sulcus anterolateralis -http://purl.obolibrary.org/obo/UBERON_0008335;ventrolateral sulcus of medulla oblongata;sulcus anterolateralis medullae oblongatae -http://purl.obolibrary.org/obo/UBERON_0008335;ventrolateral sulcus of medulla oblongata;sulcus ventrolateralis -http://purl.obolibrary.org/obo/UBERON_0008335;ventrolateral sulcus of medulla oblongata;ventrolateral fissure of medulla -http://purl.obolibrary.org/obo/UBERON_0008335;ventrolateral sulcus of medulla oblongata;ventrolateral sulcus -http://purl.obolibrary.org/obo/UBERON_0008335;ventrolateral sulcus of medulla oblongata;ventrolateral sulcus of medulla -http://purl.obolibrary.org/obo/UBERON_0008337;inguinal part of abdomen;groin -http://purl.obolibrary.org/obo/UBERON_0008337;inguinal part of abdomen;groin area -http://purl.obolibrary.org/obo/UBERON_0008337;inguinal part of abdomen;groin region -http://purl.obolibrary.org/obo/UBERON_0008337;inguinal part of abdomen;iliac fossa viewed surgically -http://purl.obolibrary.org/obo/UBERON_0008337;inguinal part of abdomen;iliac region -http://purl.obolibrary.org/obo/UBERON_0008337;inguinal part of abdomen;inguen -http://purl.obolibrary.org/obo/UBERON_0008337;inguinal part of abdomen;inguinal region -http://purl.obolibrary.org/obo/UBERON_0008338;plantar part of pes;planta -http://purl.obolibrary.org/obo/UBERON_0008338;plantar part of pes;plantar part of foot -http://purl.obolibrary.org/obo/UBERON_0008338;plantar part of pes;plantar region -http://purl.obolibrary.org/obo/UBERON_0008338;plantar part of pes;regio plantaris -http://purl.obolibrary.org/obo/UBERON_0008338;plantar part of pes;sole -http://purl.obolibrary.org/obo/UBERON_0008338;plantar part of pes;sole of foot -http://purl.obolibrary.org/obo/UBERON_0008339;microvascular endothelium; -http://purl.obolibrary.org/obo/UBERON_0008340;nasal bridge; -http://purl.obolibrary.org/obo/UBERON_0008341;columella nasi;columella of nose -http://purl.obolibrary.org/obo/UBERON_0008341;columella nasi;nasal columella -http://purl.obolibrary.org/obo/UBERON_0008342;intestinal villus of duodenum; -http://purl.obolibrary.org/obo/UBERON_0008343;intestinal villus of jejunum; -http://purl.obolibrary.org/obo/UBERON_0008344;intestinal villus of ileum; -http://purl.obolibrary.org/obo/UBERON_0008345;ileal epithelium;epithelium of ileum -http://purl.obolibrary.org/obo/UBERON_0008346;duodenal epithelium;epithelium of duodenum -http://purl.obolibrary.org/obo/UBERON_0008367;breast epithelium; -http://purl.obolibrary.org/obo/UBERON_0008397;tracheobronchial epithelium; -http://purl.obolibrary.org/obo/UBERON_0008404;proximal tubular epithelium;epithelium of proximal convoluted tubule -http://purl.obolibrary.org/obo/UBERON_0008404;proximal tubular epithelium;epithelium of proximal renal tubule -http://purl.obolibrary.org/obo/UBERON_0008404;proximal tubular epithelium;proximal renal tubule epithelium -http://purl.obolibrary.org/obo/UBERON_0008404;proximal tubular epithelium;proximale tubular epithelium -http://purl.obolibrary.org/obo/UBERON_0008408;distal tubular epithelium; -http://purl.obolibrary.org/obo/UBERON_0008420;buccal epithelium; -http://purl.obolibrary.org/obo/UBERON_0008424;inguinal mammary gland; -http://purl.obolibrary.org/obo/UBERON_0008425;mammary ridge;mammary fold -http://purl.obolibrary.org/obo/UBERON_0008425;mammary ridge;mammary gland ridge -http://purl.obolibrary.org/obo/UBERON_0008426;transverse foramen of atlas;foramen transversarium of atlas -http://purl.obolibrary.org/obo/UBERON_0008427;transverse foramen of axis;foramen transversarium of axis -http://purl.obolibrary.org/obo/UBERON_0008428;ceratoglossus;ceratoglossus muscle -http://purl.obolibrary.org/obo/UBERON_0008428;ceratoglossus;musculus ceratoglossus -http://purl.obolibrary.org/obo/UBERON_0008429;cervical vertebral foramen; -http://purl.obolibrary.org/obo/UBERON_0008430;lumbar vertebral foramen; -http://purl.obolibrary.org/obo/UBERON_0008431;sacral foramen; -http://purl.obolibrary.org/obo/UBERON_0008432;thoracic vertebral foramen; -http://purl.obolibrary.org/obo/UBERON_0008433;lumbar vertebral arch;arch of lumbar vertebra -http://purl.obolibrary.org/obo/UBERON_0008434;cervical vertebral arch;arch of cervical vertebra -http://purl.obolibrary.org/obo/UBERON_0008435;vertebral arch of sacral segment; -http://purl.obolibrary.org/obo/UBERON_0008436;thoracic vertebral arch;arch of thoracic vertebra -http://purl.obolibrary.org/obo/UBERON_0008437;posterior arch of atlas;arcus posterior atlantis -http://purl.obolibrary.org/obo/UBERON_0008438;webbed interdigital region between manual digits; -http://purl.obolibrary.org/obo/UBERON_0008439;webbed interdigital region between pedal digits;toe web -http://purl.obolibrary.org/obo/UBERON_0008440;webbed autopod; -http://purl.obolibrary.org/obo/UBERON_0008441;webbed manus; -http://purl.obolibrary.org/obo/UBERON_0008442;webbed pes;webbed foot -http://purl.obolibrary.org/obo/UBERON_0008443;webbed digit; -http://purl.obolibrary.org/obo/UBERON_0008444;webbed manual digit;digit of webbed hand -http://purl.obolibrary.org/obo/UBERON_0008444;webbed manual digit;digit of webbed manus -http://purl.obolibrary.org/obo/UBERON_0008444;webbed manual digit;webbed finger -http://purl.obolibrary.org/obo/UBERON_0008445;webbed pedal digit;digit of webbed foot -http://purl.obolibrary.org/obo/UBERON_0008445;webbed pedal digit;digit of webbed pes -http://purl.obolibrary.org/obo/UBERON_0008445;webbed pedal digit;webbed toe -http://purl.obolibrary.org/obo/UBERON_0008446;flexor pollicis longus muscle; -http://purl.obolibrary.org/obo/UBERON_0008447;intertarsal joint; -http://purl.obolibrary.org/obo/UBERON_0008449;trochlear notch;semilunar notch of ulna -http://purl.obolibrary.org/obo/UBERON_0008450;psoas muscle;psoas -http://purl.obolibrary.org/obo/UBERON_0008453;rectus capitis anterior;anterior rectus capitis -http://purl.obolibrary.org/obo/UBERON_0008453;rectus capitis anterior;rectus capitis anterior muscle -http://purl.obolibrary.org/obo/UBERON_0008454;rectus capitis posterior major;greater posterior rectus capitis -http://purl.obolibrary.org/obo/UBERON_0008454;rectus capitis posterior major;rectus capitis posterior major muscle -http://purl.obolibrary.org/obo/UBERON_0008455;rectus capitis posterior minor;lesser posterior rectus capitis -http://purl.obolibrary.org/obo/UBERON_0008455;rectus capitis posterior minor;rectus capitis posterior minor muscle -http://purl.obolibrary.org/obo/UBERON_0008456;prezygapophysis of lumbar vertebra;cranial articular process of lumbar vertebra -http://purl.obolibrary.org/obo/UBERON_0008456;prezygapophysis of lumbar vertebra;superior articular process of lumbar vertebra -http://purl.obolibrary.org/obo/UBERON_0008457;prezygapophysis of sacral vertebra;articular process of sacral segment -http://purl.obolibrary.org/obo/UBERON_0008457;prezygapophysis of sacral vertebra;processus articularis superior (os sacrum) -http://purl.obolibrary.org/obo/UBERON_0008457;prezygapophysis of sacral vertebra;processus articularis superior ossis sacri -http://purl.obolibrary.org/obo/UBERON_0008457;prezygapophysis of sacral vertebra;superior articular process of sacral segment -http://purl.obolibrary.org/obo/UBERON_0008457;prezygapophysis of sacral vertebra;superior articular process of sacral vertebra -http://purl.obolibrary.org/obo/UBERON_0008457;prezygapophysis of sacral vertebra;superior articular process of sacrum -http://purl.obolibrary.org/obo/UBERON_0008459;prezygapophysis of cervical vertebra;superior articular process of cervical segment -http://purl.obolibrary.org/obo/UBERON_0008459;prezygapophysis of cervical vertebra;superior articular process of cervical vertebra -http://purl.obolibrary.org/obo/UBERON_0008460;prezygapophysis of thoracic vertebra;cranial articular process of thoracic vertebra -http://purl.obolibrary.org/obo/UBERON_0008460;prezygapophysis of thoracic vertebra;processus articularis (zygapophysis) thoracicus superior -http://purl.obolibrary.org/obo/UBERON_0008460;prezygapophysis of thoracic vertebra;superior apophyseal process -http://purl.obolibrary.org/obo/UBERON_0008460;prezygapophysis of thoracic vertebra;superior articular process of thoracic vertebra -http://purl.obolibrary.org/obo/UBERON_0008461;postzygapophysis of lumbar vertebra;caudal articular process of lumbar vertebra -http://purl.obolibrary.org/obo/UBERON_0008461;postzygapophysis of lumbar vertebra;inferior articular process of lumbar vertebra -http://purl.obolibrary.org/obo/UBERON_0008462;postzygapophysis of cervical vertebra;inferior articular process of cervical vertebra -http://purl.obolibrary.org/obo/UBERON_0008463;postzygapophysis of thoracic vertebra;caudal articular process of thoracic vertebra -http://purl.obolibrary.org/obo/UBERON_0008463;postzygapophysis of thoracic vertebra;inferior apophyseal process -http://purl.obolibrary.org/obo/UBERON_0008463;postzygapophysis of thoracic vertebra;inferior articular process of thoracic vertebra -http://purl.obolibrary.org/obo/UBERON_0008463;postzygapophysis of thoracic vertebra;inferior zygapophysis -http://purl.obolibrary.org/obo/UBERON_0008463;postzygapophysis of thoracic vertebra;processus articularis (zygapophysis) thoracicus inferior -http://purl.obolibrary.org/obo/UBERON_0008464;abductor hallucis muscle; -http://purl.obolibrary.org/obo/UBERON_0008465;abductor pollicis brevis muscle; -http://purl.obolibrary.org/obo/UBERON_0008488;cremaster muscle;cremaster -http://purl.obolibrary.org/obo/UBERON_0008488;cremaster muscle;muscle of Riolan (cremaster) -http://purl.obolibrary.org/obo/UBERON_0008488;cremaster muscle;musculus cremaster -http://purl.obolibrary.org/obo/UBERON_0008521;gluteus minimus;gluteus minimus muscle -http://purl.obolibrary.org/obo/UBERON_0008522;nasal muscle;muscle of nose -http://purl.obolibrary.org/obo/UBERON_0008523;infrahyoid muscle;musculus infrahyoideus -http://purl.obolibrary.org/obo/UBERON_0008529;piriformis muscle;m.piriformis -http://purl.obolibrary.org/obo/UBERON_0008529;piriformis muscle;piriformis -http://purl.obolibrary.org/obo/UBERON_0008537;quadratus femoris; -http://purl.obolibrary.org/obo/UBERON_0008544;splenius cervicis; -http://purl.obolibrary.org/obo/UBERON_0008546;iliocostalis cervicis muscle; -http://purl.obolibrary.org/obo/UBERON_0008549;prevertebral muscle;flexor muscle of vertebral column -http://purl.obolibrary.org/obo/UBERON_0008549;prevertebral muscle;prevertebral muscle -http://purl.obolibrary.org/obo/UBERON_0008571;suprahyoid muscle; -http://purl.obolibrary.org/obo/UBERON_0008572;posterior crico-arytenoid;posterior cricoarytenoid -http://purl.obolibrary.org/obo/UBERON_0008572;posterior crico-arytenoid;posterior cricoarytenoid muscle -http://purl.obolibrary.org/obo/UBERON_0008572;posterior crico-arytenoid;posterior cricoarytenoideus -http://purl.obolibrary.org/obo/UBERON_0008573;lateral crico-arytenoid;lateral cricoarytenoid -http://purl.obolibrary.org/obo/UBERON_0008573;lateral crico-arytenoid;lateral cricoarytenoid muscle -http://purl.obolibrary.org/obo/UBERON_0008573;lateral crico-arytenoid;lateral cricoarytenoideus -http://purl.obolibrary.org/obo/UBERON_0008574;transverse arytenoid; -http://purl.obolibrary.org/obo/UBERON_0008575;oblique arytenoid; -http://purl.obolibrary.org/obo/UBERON_0008576;thyro-arytenoid;thyroarytenoid -http://purl.obolibrary.org/obo/UBERON_0008577;vocalis muscle;vocal muscle -http://purl.obolibrary.org/obo/UBERON_0008577;vocalis muscle;vocalis -http://purl.obolibrary.org/obo/UBERON_0008582;superior longitudinal muscle of tongue;musculus longitudinalis superior -http://purl.obolibrary.org/obo/UBERON_0008583;transverse muscle of tongue;intrinsic tongue muscle transverse component -http://purl.obolibrary.org/obo/UBERON_0008583;transverse muscle of tongue;transverse lingual muscle -http://purl.obolibrary.org/obo/UBERON_0008584;vertical muscle of tongue;intrinsic tongue muscle vertical component -http://purl.obolibrary.org/obo/UBERON_0008584;vertical muscle of tongue;vertical lingual muscle -http://purl.obolibrary.org/obo/UBERON_0008585;levator veli palatini; -http://purl.obolibrary.org/obo/UBERON_0008586;tensor veli palatini;tensor veli palatini muscle -http://purl.obolibrary.org/obo/UBERON_0008588;procerus; -http://purl.obolibrary.org/obo/UBERON_0008589;depressor septi nasi;depressor septi -http://purl.obolibrary.org/obo/UBERON_0008591;depressor supercilii; -http://purl.obolibrary.org/obo/UBERON_0008592;levator labii superioris alaeque nasi; -http://purl.obolibrary.org/obo/UBERON_0008593;zygomaticus major muscle;zygomatic muscle -http://purl.obolibrary.org/obo/UBERON_0008594;zygomaticus minor muscle;musculus quadratus labii superioris, zygomatic head -http://purl.obolibrary.org/obo/UBERON_0008594;zygomaticus minor muscle;musculus zygomaticus minor -http://purl.obolibrary.org/obo/UBERON_0008594;zygomaticus minor muscle;square muscle of the upper lip, zygomatic head -http://purl.obolibrary.org/obo/UBERON_0008595;levator anguli oris;levator anguli oris muscle -http://purl.obolibrary.org/obo/UBERON_0008596;mentalis muscle;mentalis -http://purl.obolibrary.org/obo/UBERON_0008596;mentalis muscle;musculus mentalis -http://purl.obolibrary.org/obo/UBERON_0008597;depressor anguli oris muscle; -http://purl.obolibrary.org/obo/UBERON_0008598;risorius muscle;musculus risorius -http://purl.obolibrary.org/obo/UBERON_0008598;risorius muscle;risorius -http://purl.obolibrary.org/obo/UBERON_0008603;helicis major;musculus helicis major -http://purl.obolibrary.org/obo/UBERON_0008604;helicis minor; -http://purl.obolibrary.org/obo/UBERON_0008605;tragicus muscle;tragicus -http://purl.obolibrary.org/obo/UBERON_0008606;antitragicus muscle;antitragicus -http://purl.obolibrary.org/obo/UBERON_0008607;transverse muscle of auricle;transverse muscle of pinna -http://purl.obolibrary.org/obo/UBERON_0008607;transverse muscle of auricle;transversus auriculae -http://purl.obolibrary.org/obo/UBERON_0008607;transverse muscle of auricle;transversus auricularis -http://purl.obolibrary.org/obo/UBERON_0008608;oblique muscle of auricle;oblique muscle of pinna -http://purl.obolibrary.org/obo/UBERON_0008608;oblique muscle of auricle;obliquus auriculae -http://purl.obolibrary.org/obo/UBERON_0008608;oblique muscle of auricle;obliquus auricularis muscle -http://purl.obolibrary.org/obo/UBERON_0008609;transversus menti muscle;transverse menti -http://purl.obolibrary.org/obo/UBERON_0008611;scalene muscle;scalene muscles -http://purl.obolibrary.org/obo/UBERON_0008611;scalene muscle;scalenus muscle -http://purl.obolibrary.org/obo/UBERON_0008612;muscle of pelvic diaphragm;muscle of pelvic floor -http://purl.obolibrary.org/obo/UBERON_0008612;muscle of pelvic diaphragm;pelvic diaphragm muscle -http://purl.obolibrary.org/obo/UBERON_0008617;innermost intercostal muscle; -http://purl.obolibrary.org/obo/UBERON_0008618;subcostal muscle; -http://purl.obolibrary.org/obo/UBERON_0008622;scalenus anterior;anterior scalene -http://purl.obolibrary.org/obo/UBERON_0008712;stylohyoid muscle; -http://purl.obolibrary.org/obo/UBERON_0008713;pectoral girdle and thoracic body wall skeletal muscle; -http://purl.obolibrary.org/obo/UBERON_0008715;muscle tissue of prostate;prostate gland muscle tissue -http://purl.obolibrary.org/obo/UBERON_0008715;muscle tissue of prostate;prostate muscle tissue -http://purl.obolibrary.org/obo/UBERON_0008715;muscle tissue of prostate;prostatic muscle -http://purl.obolibrary.org/obo/UBERON_0008715;muscle tissue of prostate;prostatic musclular tissue -http://purl.obolibrary.org/obo/UBERON_0008716;hilum of kidney;hilar area of the kidney -http://purl.obolibrary.org/obo/UBERON_0008716;hilum of kidney;renal hilum -http://purl.obolibrary.org/obo/UBERON_0008772;proximal epiphysis of tibia;head of tibia -http://purl.obolibrary.org/obo/UBERON_0008772;proximal epiphysis of tibia;proximal end of tibia -http://purl.obolibrary.org/obo/UBERON_0008772;proximal epiphysis of tibia;proximal tibial epiphysis -http://purl.obolibrary.org/obo/UBERON_0008772;proximal epiphysis of tibia;upper end of tibia -http://purl.obolibrary.org/obo/UBERON_0008775;proximal epiphysis of fibula;caput fibulae -http://purl.obolibrary.org/obo/UBERON_0008775;proximal epiphysis of fibula;head of fibula -http://purl.obolibrary.org/obo/UBERON_0008775;proximal epiphysis of fibula;proximal end of fibula -http://purl.obolibrary.org/obo/UBERON_0008775;proximal epiphysis of fibula;upper end of fibula -http://purl.obolibrary.org/obo/UBERON_0008776;inner cell mass derived hypoblast;primitive endoderm -http://purl.obolibrary.org/obo/UBERON_0008777;hypaxial musculature;hypaxial muscles -http://purl.obolibrary.org/obo/UBERON_0008778;epaxial musculature;epaxial muscles -http://purl.obolibrary.org/obo/UBERON_0008779;subclavius; -http://purl.obolibrary.org/obo/UBERON_0008780;inner cell mass derived epiblast; -http://purl.obolibrary.org/obo/UBERON_0008781;blastodisc derived epiblast; -http://purl.obolibrary.org/obo/UBERON_0008783;dorsal venous arch;arcus venosus dorsalis pedis -http://purl.obolibrary.org/obo/UBERON_0008783;dorsal venous arch;dorsal venous arch of foot -http://purl.obolibrary.org/obo/UBERON_0008784;lower limb segment;free lower limb segment -http://purl.obolibrary.org/obo/UBERON_0008784;lower limb segment;free lower limb subdivision -http://purl.obolibrary.org/obo/UBERON_0008784;lower limb segment;segment of free lower limb -http://purl.obolibrary.org/obo/UBERON_0008784;lower limb segment;subdivision of free lower limb -http://purl.obolibrary.org/obo/UBERON_0008785;upper limb segment;free upper limb segment -http://purl.obolibrary.org/obo/UBERON_0008785;upper limb segment;free upper limb subdivision -http://purl.obolibrary.org/obo/UBERON_0008785;upper limb segment;segment of free upper limb -http://purl.obolibrary.org/obo/UBERON_0008785;upper limb segment;subdivision of free upper limb -http://purl.obolibrary.org/obo/UBERON_0008786;third trochanter; -http://purl.obolibrary.org/obo/UBERON_0008787;fourth trochanter; -http://purl.obolibrary.org/obo/UBERON_0008788;posterior cranial fossa; -http://purl.obolibrary.org/obo/UBERON_0008789;cranial fossa; -http://purl.obolibrary.org/obo/UBERON_0008790;rugal fold;ruga -http://purl.obolibrary.org/obo/UBERON_0008791;rugal fold of stomach;gastric ruga -http://purl.obolibrary.org/obo/UBERON_0008791;rugal fold of stomach;gastric rugae -http://purl.obolibrary.org/obo/UBERON_0008791;rugal fold of stomach;ruga of stomach -http://purl.obolibrary.org/obo/UBERON_0008798;rugal fold of vagina;ruga of vagina -http://purl.obolibrary.org/obo/UBERON_0008798;rugal fold of vagina;vaginal ruga -http://purl.obolibrary.org/obo/UBERON_0008799;transverse palatine fold;hard palate palatal rugae -http://purl.obolibrary.org/obo/UBERON_0008799;transverse palatine fold;hard palate ruga -http://purl.obolibrary.org/obo/UBERON_0008799;transverse palatine fold;impressiones rugales -http://purl.obolibrary.org/obo/UBERON_0008799;transverse palatine fold;palatal rugae -http://purl.obolibrary.org/obo/UBERON_0008799;transverse palatine fold;palatine fold -http://purl.obolibrary.org/obo/UBERON_0008799;transverse palatine fold;palatine rugae -http://purl.obolibrary.org/obo/UBERON_0008799;transverse palatine fold;plica palatina transversa -http://purl.obolibrary.org/obo/UBERON_0008799;transverse palatine fold;plicae palatinae transversae -http://purl.obolibrary.org/obo/UBERON_0008799;transverse palatine fold;ruga of palate -http://purl.obolibrary.org/obo/UBERON_0008799;transverse palatine fold;ruga palatina -http://purl.obolibrary.org/obo/UBERON_0008799;transverse palatine fold;rugae of palate -http://purl.obolibrary.org/obo/UBERON_0008799;transverse palatine fold;rugae palatinae -http://purl.obolibrary.org/obo/UBERON_0008799;transverse palatine fold;transverse palatine folds -http://purl.obolibrary.org/obo/UBERON_0008799;transverse palatine fold;transverse palatine folds set -http://purl.obolibrary.org/obo/UBERON_0008799;transverse palatine fold;transverse palatine ridge -http://purl.obolibrary.org/obo/UBERON_0008800;parietal endoderm; -http://purl.obolibrary.org/obo/UBERON_0008801;parotid gland primordium; -http://purl.obolibrary.org/obo/UBERON_0008802;cheek pouch;buccal pouch -http://purl.obolibrary.org/obo/UBERON_0008803;skin of cheek;cheek skin -http://purl.obolibrary.org/obo/UBERON_0008804;stylopharyngeus muscle;stylopharyngeus -http://purl.obolibrary.org/obo/UBERON_0008805;gingival groove;gingival sulcus -http://purl.obolibrary.org/obo/UBERON_0008805;gingival groove;sulcus gingivalis -http://purl.obolibrary.org/obo/UBERON_0008805;gingival groove;tooth-gingiva interface -http://purl.obolibrary.org/obo/UBERON_0008806;buccal funnel;suctorial disc -http://purl.obolibrary.org/obo/UBERON_0008806;buccal funnel;suctorial disk -http://purl.obolibrary.org/obo/UBERON_0008807;coagulating gland; -http://purl.obolibrary.org/obo/UBERON_0008808;prostate gland dorsolateral lobe; -http://purl.obolibrary.org/obo/UBERON_0008809;foramina of scarpa; -http://purl.obolibrary.org/obo/UBERON_0008810;nasopalatine nerve;Scarpa's nerve -http://purl.obolibrary.org/obo/UBERON_0008810;nasopalatine nerve;naso-palatine nerve -http://purl.obolibrary.org/obo/UBERON_0008810;nasopalatine nerve;nasopalatine -http://purl.obolibrary.org/obo/UBERON_0008810;nasopalatine nerve;nasopalatine nerves -http://purl.obolibrary.org/obo/UBERON_0008810;nasopalatine nerve;nervus nasopalatinus -http://purl.obolibrary.org/obo/UBERON_0008811;intromittent organ;aedeagus -http://purl.obolibrary.org/obo/UBERON_0008811;intromittent organ;copulatory organ -http://purl.obolibrary.org/obo/UBERON_0008811;intromittent organ;penis -http://purl.obolibrary.org/obo/UBERON_0008812;hemipenis; -http://purl.obolibrary.org/obo/UBERON_0008813;helicotrema;Scarpa's orifice -http://purl.obolibrary.org/obo/UBERON_0008814;pharyngeal arch system;embryonic pharyngeal complex -http://purl.obolibrary.org/obo/UBERON_0008814;pharyngeal arch system;pharyngeal apparatus -http://purl.obolibrary.org/obo/UBERON_0008814;pharyngeal arch system;pharyngeal system -http://purl.obolibrary.org/obo/UBERON_0008815;pharyngeal slit; -http://purl.obolibrary.org/obo/UBERON_0008816;embryonic head; -http://purl.obolibrary.org/obo/UBERON_0008817;thymus primordium endoderm; -http://purl.obolibrary.org/obo/UBERON_0008818;superior mediastinum;superior mediastinal part of chest -http://purl.obolibrary.org/obo/UBERON_0008819;inferior mediastinum;inferior mediastinal part of chest -http://purl.obolibrary.org/obo/UBERON_0008820;anterior mediastinum;anterior mediastinal part of chest -http://purl.obolibrary.org/obo/UBERON_0008821;middle mediastinum;middle mediastinal part of chest -http://purl.obolibrary.org/obo/UBERON_0008822;posterior mediastinum;posterior mediastinal part of chest -http://purl.obolibrary.org/obo/UBERON_0008823;neural tube derived brain; -http://purl.obolibrary.org/obo/UBERON_0008824;duct of epididymis;epididymal duct -http://purl.obolibrary.org/obo/UBERON_0008824;duct of epididymis;epididymis duct -http://purl.obolibrary.org/obo/UBERON_0008826;pulmonary surfactant;alveolar surfactant -http://purl.obolibrary.org/obo/UBERON_0008826;pulmonary surfactant;lung surfactant -http://purl.obolibrary.org/obo/UBERON_0008826;pulmonary surfactant;type II pneumocyte secretion -http://purl.obolibrary.org/obo/UBERON_0008827;murine forestomach; -http://purl.obolibrary.org/obo/UBERON_0008828;presphenoid bone;presphenoidal bone -http://purl.obolibrary.org/obo/UBERON_0008829;cerebellum external granule cell layer;outer granular layer of cerebellar cortex -http://purl.obolibrary.org/obo/UBERON_0008830;cerebellum internal granule cell layer;inner granular layer of cerebellar cortex -http://purl.obolibrary.org/obo/UBERON_0008831;inner spiral sulcus;internal spiral sulcus -http://purl.obolibrary.org/obo/UBERON_0008831;inner spiral sulcus;sulcus spiralis internus -http://purl.obolibrary.org/obo/UBERON_0008832;outer spiral sulcus;external spiral sulcus -http://purl.obolibrary.org/obo/UBERON_0008832;outer spiral sulcus;sulcus spiralis externus -http://purl.obolibrary.org/obo/UBERON_0008833;great auricular nerve;nervus auricularis magnus -http://purl.obolibrary.org/obo/UBERON_0008834;prostomium; -http://purl.obolibrary.org/obo/UBERON_0008835;hepatic diverticulum;liver diverticulum -http://purl.obolibrary.org/obo/UBERON_0008836;liver bud; -http://purl.obolibrary.org/obo/UBERON_0008837;palmar/plantar part of autopod; -http://purl.obolibrary.org/obo/UBERON_0008838;metapodial pad; -http://purl.obolibrary.org/obo/UBERON_0008839;palmar pad; -http://purl.obolibrary.org/obo/UBERON_0008840;plantar pad; -http://purl.obolibrary.org/obo/UBERON_0008841;suspensory ligament; -http://purl.obolibrary.org/obo/UBERON_0008842;suspensory ligament of testis; -http://purl.obolibrary.org/obo/UBERON_0008843;gubernaculum testis;male gubernaculum -http://purl.obolibrary.org/obo/UBERON_0008844;gubernaculum (female);female gubernaculum -http://purl.obolibrary.org/obo/UBERON_0008845;nonskeletal ligament;non-skeletal ligament -http://purl.obolibrary.org/obo/UBERON_0008846;skeletal ligament;articular larua -http://purl.obolibrary.org/obo/UBERON_0008846;skeletal ligament;articular ligament -http://purl.obolibrary.org/obo/UBERON_0008846;skeletal ligament;true ligament -http://purl.obolibrary.org/obo/UBERON_0008847;ovarian ligament;ligament of ovary -http://purl.obolibrary.org/obo/UBERON_0008847;ovarian ligament;ligamentum ovarii proprium -http://purl.obolibrary.org/obo/UBERON_0008847;ovarian ligament;proper ovarian ligament -http://purl.obolibrary.org/obo/UBERON_0008848;cranial suspensory ligament; -http://purl.obolibrary.org/obo/UBERON_0008851;ectoplacental cavity;epamniotic cavity -http://purl.obolibrary.org/obo/UBERON_0008852;visceral yolk sac;secondary yolk sac -http://purl.obolibrary.org/obo/UBERON_0008852;visceral yolk sac;umbilical vesicle -http://purl.obolibrary.org/obo/UBERON_0008852;visceral yolk sac;vitelline sac -http://purl.obolibrary.org/obo/UBERON_0008853;parietal yolk sac;primary yolk sac -http://purl.obolibrary.org/obo/UBERON_0008854;root of molar tooth;molar root -http://purl.obolibrary.org/obo/UBERON_0008854;root of molar tooth;molar tooth root -http://purl.obolibrary.org/obo/UBERON_0008855;placenta metrial gland; -http://purl.obolibrary.org/obo/UBERON_0008856;stomach muscularis externa;gastric muscularis -http://purl.obolibrary.org/obo/UBERON_0008856;stomach muscularis externa;muscle layer of stomach -http://purl.obolibrary.org/obo/UBERON_0008856;stomach muscularis externa;muscularis externa of stomach -http://purl.obolibrary.org/obo/UBERON_0008856;stomach muscularis externa;tunica muscularis (gaster) -http://purl.obolibrary.org/obo/UBERON_0008856;stomach muscularis externa;tunica muscularis gastris -http://purl.obolibrary.org/obo/UBERON_0008857;stomach smooth muscle circular layer;circular layer of gastric muscularis -http://purl.obolibrary.org/obo/UBERON_0008857;stomach smooth muscle circular layer;circular muscle layer of stomach -http://purl.obolibrary.org/obo/UBERON_0008857;stomach smooth muscle circular layer;middle circular muscle layer of stomach -http://purl.obolibrary.org/obo/UBERON_0008857;stomach smooth muscle circular layer;stratum circulare (tunica muscularis)(gaster) -http://purl.obolibrary.org/obo/UBERON_0008857;stomach smooth muscle circular layer;stratum circulare gastris -http://purl.obolibrary.org/obo/UBERON_0008857;stomach smooth muscle circular layer;stratum circulare tunicae muscularis gastricae -http://purl.obolibrary.org/obo/UBERON_0008858;pyloric canal;canalis pyloricus -http://purl.obolibrary.org/obo/UBERON_0008859;cardiac gastric gland;gardiac gland -http://purl.obolibrary.org/obo/UBERON_0008859;cardiac gastric gland;gastric cardiac gland -http://purl.obolibrary.org/obo/UBERON_0008859;cardiac gastric gland;gastric cardiac mucuous gland -http://purl.obolibrary.org/obo/UBERON_0008859;cardiac gastric gland;gastric gland of cardia -http://purl.obolibrary.org/obo/UBERON_0008859;cardiac gastric gland;glandula cardiaca (gaster) -http://purl.obolibrary.org/obo/UBERON_0008860;intermediate gastric gland; -http://purl.obolibrary.org/obo/UBERON_0008861;pyloric gastric gland;glandula pylorica -http://purl.obolibrary.org/obo/UBERON_0008861;pyloric gastric gland;pyloric antrum gland -http://purl.obolibrary.org/obo/UBERON_0008861;pyloric gastric gland;pyloric gland -http://purl.obolibrary.org/obo/UBERON_0008861;pyloric gastric gland;pyloric mucuous gland -http://purl.obolibrary.org/obo/UBERON_0008862;stomach smooth muscle inner oblique layer;inner oblique muscle layer of stomach -http://purl.obolibrary.org/obo/UBERON_0008862;stomach smooth muscle inner oblique layer;oblique fiber layer of gastric muscularis -http://purl.obolibrary.org/obo/UBERON_0008862;stomach smooth muscle inner oblique layer;oblique muscle layer of stomach -http://purl.obolibrary.org/obo/UBERON_0008863;stomach smooth muscle outer longitudinal layer;longitudinal layer of gastric muscularis -http://purl.obolibrary.org/obo/UBERON_0008863;stomach smooth muscle outer longitudinal layer;muscle layer 1 of stomach -http://purl.obolibrary.org/obo/UBERON_0008863;stomach smooth muscle outer longitudinal layer;outer longitudinal muscle layer of stomach -http://purl.obolibrary.org/obo/UBERON_0008863;stomach smooth muscle outer longitudinal layer;stratum longitudinale (tunica muscularis)(gaster) -http://purl.obolibrary.org/obo/UBERON_0008863;stomach smooth muscle outer longitudinal layer;stratum longitudinale tunicae muscularis gastricae -http://purl.obolibrary.org/obo/UBERON_0008866;enamel knot; -http://purl.obolibrary.org/obo/UBERON_0008867;trabecular network of bone; -http://purl.obolibrary.org/obo/UBERON_0008870;pulmonary alveolar parenchyma; -http://purl.obolibrary.org/obo/UBERON_0008873;alveolar pore; -http://purl.obolibrary.org/obo/UBERON_0008874;pulmonary acinus;acinus pulmonaris -http://purl.obolibrary.org/obo/UBERON_0008874;pulmonary acinus;arbor alveolaris -http://purl.obolibrary.org/obo/UBERON_0008874;pulmonary acinus;lobulus pulmonis primarius -http://purl.obolibrary.org/obo/UBERON_0008874;pulmonary acinus;primary pulmonary lobule -http://purl.obolibrary.org/obo/UBERON_0008874;pulmonary acinus;respiratory lobule -http://purl.obolibrary.org/obo/UBERON_0008876;hypodermis skeletal muscle layer;hypodermal muscle layer -http://purl.obolibrary.org/obo/UBERON_0008876;hypodermis skeletal muscle layer;hypodermis muscle layer -http://purl.obolibrary.org/obo/UBERON_0008876;hypodermis skeletal muscle layer;superficial fascia muscular layer -http://purl.obolibrary.org/obo/UBERON_0008877;epidermal-dermal junction;dermal-epidermal junction -http://purl.obolibrary.org/obo/UBERON_0008877;epidermal-dermal junction;dermo-epidermal junction -http://purl.obolibrary.org/obo/UBERON_0008877;epidermal-dermal junction;dermoepidermal junction -http://purl.obolibrary.org/obo/UBERON_0008877;epidermal-dermal junction;epidermal dermol junction -http://purl.obolibrary.org/obo/UBERON_0008878;palmar part of manus;front of hand -http://purl.obolibrary.org/obo/UBERON_0008878;palmar part of manus;palm -http://purl.obolibrary.org/obo/UBERON_0008878;palmar part of manus;palm of hand -http://purl.obolibrary.org/obo/UBERON_0008878;palmar part of manus;palmar region -http://purl.obolibrary.org/obo/UBERON_0008878;palmar part of manus;regio palmaris -http://purl.obolibrary.org/obo/UBERON_0008879;ligament of pinna;auricular ligament -http://purl.obolibrary.org/obo/UBERON_0008879;ligament of pinna;ligament of auricle -http://purl.obolibrary.org/obo/UBERON_0008879;ligament of pinna;pinna ligament -http://purl.obolibrary.org/obo/UBERON_0008880;annelid pygidium; -http://purl.obolibrary.org/obo/UBERON_0008881;rostral migratory stream; -http://purl.obolibrary.org/obo/UBERON_0008882;spinal cord commissure; -http://purl.obolibrary.org/obo/UBERON_0008883;osteoid;osteoid tissue -http://purl.obolibrary.org/obo/UBERON_0008883;osteoid;pre-bone -http://purl.obolibrary.org/obo/UBERON_0008883;osteoid;prebone -http://purl.obolibrary.org/obo/UBERON_0008883;osteoid;prebone tissue -http://purl.obolibrary.org/obo/UBERON_0008884;left putamen; -http://purl.obolibrary.org/obo/UBERON_0008885;right putamen; -http://purl.obolibrary.org/obo/UBERON_0008886;pulmonary vascular system;pulmonary circulatory system -http://purl.obolibrary.org/obo/UBERON_0008886;pulmonary vascular system;pulmonary system -http://purl.obolibrary.org/obo/UBERON_0008887;rectal venous plexus; -http://purl.obolibrary.org/obo/UBERON_0008888;vesical venous plexus; -http://purl.obolibrary.org/obo/UBERON_0008889;uterine venous plexus; -http://purl.obolibrary.org/obo/UBERON_0008891;external gill; -http://purl.obolibrary.org/obo/UBERON_0008892;internal gill; -http://purl.obolibrary.org/obo/UBERON_0008894;pharyngeal gill precursor;gill primordium -http://purl.obolibrary.org/obo/UBERON_0008894;pharyngeal gill precursor;internal gill bud -http://purl.obolibrary.org/obo/UBERON_0008895;splanchnocranium;pharyngeal endoskeleton -http://purl.obolibrary.org/obo/UBERON_0008895;splanchnocranium;viscerocranium -http://purl.obolibrary.org/obo/UBERON_0008896;post-hyoid pharyngeal arch;branchial arch -http://purl.obolibrary.org/obo/UBERON_0008896;post-hyoid pharyngeal arch;branchial arches -http://purl.obolibrary.org/obo/UBERON_0008896;post-hyoid pharyngeal arch;branchial bar -http://purl.obolibrary.org/obo/UBERON_0008896;post-hyoid pharyngeal arch;branchial bars -http://purl.obolibrary.org/obo/UBERON_0008896;post-hyoid pharyngeal arch;gill arch -http://purl.obolibrary.org/obo/UBERON_0008896;post-hyoid pharyngeal arch;gill arches 1-5 -http://purl.obolibrary.org/obo/UBERON_0008896;post-hyoid pharyngeal arch;pharyngeal arch 3-7 -http://purl.obolibrary.org/obo/UBERON_0008896;post-hyoid pharyngeal arch;visceral arches 3-7 -http://purl.obolibrary.org/obo/UBERON_0008897;fin; -http://purl.obolibrary.org/obo/UBERON_0008902;lateral recess of third ventricle;lateral recess of diencephalic ventricle -http://purl.obolibrary.org/obo/UBERON_0008904;neuromast;lateral line neuromast -http://purl.obolibrary.org/obo/UBERON_0008904;neuromast;neuromast organ -http://purl.obolibrary.org/obo/UBERON_0008904;neuromast;neuromasts -http://purl.obolibrary.org/obo/UBERON_0008906;lateral line nerve;lateral line nerves -http://purl.obolibrary.org/obo/UBERON_0008907;dermal bone; -http://purl.obolibrary.org/obo/UBERON_0008909;perichordal bone;perichordal bones -http://purl.obolibrary.org/obo/UBERON_0008911;chondral bone; -http://purl.obolibrary.org/obo/UBERON_0008913;perichondral bone;perichondral bones -http://purl.obolibrary.org/obo/UBERON_0008915;pore; -http://purl.obolibrary.org/obo/UBERON_0008917;ampullary organ;ampullary electroreceptor -http://purl.obolibrary.org/obo/UBERON_0008917;ampullary organ;ampullary electroreceptor organ -http://purl.obolibrary.org/obo/UBERON_0008917;ampullary organ;electrosensory ampullary organ -http://purl.obolibrary.org/obo/UBERON_0008918;ampulla of Lorenzini;ampullae of Lorenzini -http://purl.obolibrary.org/obo/UBERON_0008921;substratum of layer of retina; -http://purl.obolibrary.org/obo/UBERON_0008922;sublaminar layer S1; -http://purl.obolibrary.org/obo/UBERON_0008923;sublaminar layer S2; -http://purl.obolibrary.org/obo/UBERON_0008924;sublaminar layer S3; -http://purl.obolibrary.org/obo/UBERON_0008925;sublaminar layer S4; -http://purl.obolibrary.org/obo/UBERON_0008926;sublaminar layer S5; -http://purl.obolibrary.org/obo/UBERON_0008927;sublaminar layers S1 or S2; -http://purl.obolibrary.org/obo/UBERON_0008928;sublaminar layers S2 or S3; -http://purl.obolibrary.org/obo/UBERON_0008929;sublaminar layers S4 or S5; -http://purl.obolibrary.org/obo/UBERON_0008930;somatosensory cortex;primary somatic sensory cortex -http://purl.obolibrary.org/obo/UBERON_0008930;somatosensory cortex;somatic sensory cortex -http://purl.obolibrary.org/obo/UBERON_0008930;somatosensory cortex;somatosensory area -http://purl.obolibrary.org/obo/UBERON_0008930;somatosensory cortex;somatosensory areas -http://purl.obolibrary.org/obo/UBERON_0008930;somatosensory cortex;somesthetic area -http://purl.obolibrary.org/obo/UBERON_0008933;primary somatosensory cortex;S1 -http://purl.obolibrary.org/obo/UBERON_0008933;primary somatosensory cortex;S1C -http://purl.obolibrary.org/obo/UBERON_0008933;primary somatosensory cortex;postcentral gyrus -http://purl.obolibrary.org/obo/UBERON_0008933;primary somatosensory cortex;primary somatosensory area -http://purl.obolibrary.org/obo/UBERON_0008933;primary somatosensory cortex;primary somatosensory cortex (area S1, areas 3,1,2) -http://purl.obolibrary.org/obo/UBERON_0008933;primary somatosensory cortex;somatosensory area 1 -http://purl.obolibrary.org/obo/UBERON_0008934;secondary somatosensory cortex;somatosensory area 2 -http://purl.obolibrary.org/obo/UBERON_0008935;gastropod albumen gland; -http://purl.obolibrary.org/obo/UBERON_0008936;gastropod genital pore;genital pore -http://purl.obolibrary.org/obo/UBERON_0008937;visceral hump; -http://purl.obolibrary.org/obo/UBERON_0008939;pedal ganglion; -http://purl.obolibrary.org/obo/UBERON_0008940;parietal ganglion; -http://purl.obolibrary.org/obo/UBERON_0008941;pleural ganglion; -http://purl.obolibrary.org/obo/UBERON_0008942;gastropod cerebral ganglion;cerebral ganglion -http://purl.obolibrary.org/obo/UBERON_0008943;headfoot; -http://purl.obolibrary.org/obo/UBERON_0008944;albumen;egg white -http://purl.obolibrary.org/obo/UBERON_0008945;extraembryonic endoderm; -http://purl.obolibrary.org/obo/UBERON_0008946;lung parenchyma;respiratory portion of lung -http://purl.obolibrary.org/obo/UBERON_0008947;respiratory primordium; -http://purl.obolibrary.org/obo/UBERON_0008948;upper lobe of lung;cranial lobe of lung -http://purl.obolibrary.org/obo/UBERON_0008948;upper lobe of lung;lobus superior -http://purl.obolibrary.org/obo/UBERON_0008948;upper lobe of lung;lobus superior pulmonis -http://purl.obolibrary.org/obo/UBERON_0008948;upper lobe of lung;superior lobe of lung -http://purl.obolibrary.org/obo/UBERON_0008949;lower lobe of lung;inferior lobe of lung -http://purl.obolibrary.org/obo/UBERON_0008949;lower lobe of lung;lobus inferior -http://purl.obolibrary.org/obo/UBERON_0008949;lower lobe of lung;lobus inferior pulmonis -http://purl.obolibrary.org/obo/UBERON_0008950;azygous lobe of lung; -http://purl.obolibrary.org/obo/UBERON_0008951;left lung lobe;lobe of left lung -http://purl.obolibrary.org/obo/UBERON_0008951;left lung lobe;lobe of the left lung -http://purl.obolibrary.org/obo/UBERON_0008952;upper lobe of left lung;left lung cranial lobe -http://purl.obolibrary.org/obo/UBERON_0008952;upper lobe of left lung;left upper lobe -http://purl.obolibrary.org/obo/UBERON_0008952;upper lobe of left lung;left upper lobe of lung -http://purl.obolibrary.org/obo/UBERON_0008952;upper lobe of left lung;lobus superior (pulmo sinister) -http://purl.obolibrary.org/obo/UBERON_0008952;upper lobe of left lung;lobus superior pulmonis sinistri -http://purl.obolibrary.org/obo/UBERON_0008952;upper lobe of left lung;superior lobe of left lung -http://purl.obolibrary.org/obo/UBERON_0008953;lower lobe of left lung;inferior lobe of left lung -http://purl.obolibrary.org/obo/UBERON_0008953;lower lobe of left lung;left lower lobe -http://purl.obolibrary.org/obo/UBERON_0008953;lower lobe of left lung;left lower lobe of lung -http://purl.obolibrary.org/obo/UBERON_0008953;lower lobe of left lung;left lung caudal lobe -http://purl.obolibrary.org/obo/UBERON_0008953;lower lobe of left lung;lobus inferior (pulmo sinister) -http://purl.obolibrary.org/obo/UBERON_0008953;lower lobe of left lung;lobus inferior pulmonis sinistri -http://purl.obolibrary.org/obo/UBERON_0008954;lingula of left lung;left pulmonary lingula -http://purl.obolibrary.org/obo/UBERON_0008954;lingula of left lung;lingula of lung -http://purl.obolibrary.org/obo/UBERON_0008954;lingula of left lung;lingula of the lung -http://purl.obolibrary.org/obo/UBERON_0008955;middle lobe of lung;lung middle lobe -http://purl.obolibrary.org/obo/UBERON_0008956;involucrum; -http://purl.obolibrary.org/obo/UBERON_0008957;sequestrum; -http://purl.obolibrary.org/obo/UBERON_0008958;cetacean involucrum; -http://purl.obolibrary.org/obo/UBERON_0008959;auditory bulla; -http://purl.obolibrary.org/obo/UBERON_0008960;melon organ; -http://purl.obolibrary.org/obo/UBERON_0008961;parabronchus; -http://purl.obolibrary.org/obo/UBERON_0008962;forelimb bone;free forelimb bone -http://purl.obolibrary.org/obo/UBERON_0008963;hoof; -http://purl.obolibrary.org/obo/UBERON_0008964;abdominal ganglion of visceral hump; -http://purl.obolibrary.org/obo/UBERON_0008967;centrum semiovale;centrum ovale -http://purl.obolibrary.org/obo/UBERON_0008967;centrum semiovale;corpus medullare cerebri -http://purl.obolibrary.org/obo/UBERON_0008967;centrum semiovale;medullary center -http://purl.obolibrary.org/obo/UBERON_0008967;centrum semiovale;substantia centralis medullaris cerebri -http://purl.obolibrary.org/obo/UBERON_0008969;dental follicle; -http://purl.obolibrary.org/obo/UBERON_0008971;left colon; -http://purl.obolibrary.org/obo/UBERON_0008972;right colon; -http://purl.obolibrary.org/obo/UBERON_0008974;apocrine gland;true apocrine gland -http://purl.obolibrary.org/obo/UBERON_0008975;oviduct shell gland;shell gland -http://purl.obolibrary.org/obo/UBERON_0008976;snake venom gland; -http://purl.obolibrary.org/obo/UBERON_0008977;pes anserinus of tibia;pes anserinus -http://purl.obolibrary.org/obo/UBERON_0008978;anal sac; -http://purl.obolibrary.org/obo/UBERON_0008979;carcass; -http://purl.obolibrary.org/obo/UBERON_0008982;fascia;fascia cluster -http://purl.obolibrary.org/obo/UBERON_0008987;renal parenchyma;parenchyma of kidney -http://purl.obolibrary.org/obo/UBERON_0008989;submucosal esophageal gland;esophageal gland -http://purl.obolibrary.org/obo/UBERON_0008989;submucosal esophageal gland;glandulae oesophageae -http://purl.obolibrary.org/obo/UBERON_0008989;submucosal esophageal gland;mucous gland of submucosa of esophagus -http://purl.obolibrary.org/obo/UBERON_0008992;chorion frondosum; -http://purl.obolibrary.org/obo/UBERON_0008993;habenular nucleus;ganglion habenulae -http://purl.obolibrary.org/obo/UBERON_0008993;habenular nucleus;habenular nuclei -http://purl.obolibrary.org/obo/UBERON_0008993;habenular nucleus;nucleus habenulae -http://purl.obolibrary.org/obo/UBERON_0008994;equine glandular stomach; -http://purl.obolibrary.org/obo/UBERON_0008995;nucleus of cerebellar nuclear complex;cerebellar nucleus -http://purl.obolibrary.org/obo/UBERON_0008995;nucleus of cerebellar nuclear complex;deep cerebellar nucleus -http://purl.obolibrary.org/obo/UBERON_0008998;vasculature of brain;brain vasculature -http://purl.obolibrary.org/obo/UBERON_0008998;vasculature of brain;cerebrovascular system -http://purl.obolibrary.org/obo/UBERON_0008998;vasculature of brain;intracerebral vasculature -http://purl.obolibrary.org/obo/UBERON_0008999;hoof lamina; -http://purl.obolibrary.org/obo/UBERON_0009000;ischial spine;spina ischialis -http://purl.obolibrary.org/obo/UBERON_0009002;placental membrane; -http://purl.obolibrary.org/obo/UBERON_0009005;femorotibial joint;femoratibial joint -http://purl.obolibrary.org/obo/UBERON_0009005;femorotibial joint;tibiofemoral joint -http://purl.obolibrary.org/obo/UBERON_0009006;deep inguinal lymph node;deep inguinal node -http://purl.obolibrary.org/obo/UBERON_0009006;deep inguinal lymph node;nodus lymphaticus inguinalis profundus -http://purl.obolibrary.org/obo/UBERON_0009007;superficial inguinal lymph node;lymph node of Cloquet -http://purl.obolibrary.org/obo/UBERON_0009007;superficial inguinal lymph node;lymph node of Rosenmuller -http://purl.obolibrary.org/obo/UBERON_0009007;superficial inguinal lymph node;nodus lymphaticus inguinalis superficialis -http://purl.obolibrary.org/obo/UBERON_0009007;superficial inguinal lymph node;superficial inguinal node -http://purl.obolibrary.org/obo/UBERON_0009009;carotid sinus nerve;Hering sinus nerve -http://purl.obolibrary.org/obo/UBERON_0009009;carotid sinus nerve;carotid branch of glossopharyngeal nerve -http://purl.obolibrary.org/obo/UBERON_0009009;carotid sinus nerve;ramus sinus carotici -http://purl.obolibrary.org/obo/UBERON_0009009;carotid sinus nerve;ramus sinus carotici nervi glossopharyngei -http://purl.obolibrary.org/obo/UBERON_0009009;carotid sinus nerve;ramus sinus carotici nervus glossopharyngei -http://purl.obolibrary.org/obo/UBERON_0009009;carotid sinus nerve;sinus nerve of Hering -http://purl.obolibrary.org/obo/UBERON_0009010;periurethral tissue; -http://purl.obolibrary.org/obo/UBERON_0009013;white fibrocartilage; -http://purl.obolibrary.org/obo/UBERON_0009014;lower back skin; -http://purl.obolibrary.org/obo/UBERON_0009015;upper back skin; -http://purl.obolibrary.org/obo/UBERON_0009016;ciliary stroma;ocular ciliary stroma -http://purl.obolibrary.org/obo/UBERON_0009016;ciliary stroma;stroma of ciliary body -http://purl.obolibrary.org/obo/UBERON_0009020;left uterine horn; -http://purl.obolibrary.org/obo/UBERON_0009022;right uterine horn; -http://purl.obolibrary.org/obo/UBERON_0009024;adrenal gland X zone; -http://purl.obolibrary.org/obo/UBERON_0009025;gastroepiploic artery; -http://purl.obolibrary.org/obo/UBERON_0009026;iliac circumflex artery; -http://purl.obolibrary.org/obo/UBERON_0009027;vesical artery;arteria vesicali -http://purl.obolibrary.org/obo/UBERON_0009027;vesical artery;vesical arteries -http://purl.obolibrary.org/obo/UBERON_0009029;pudendal vein;vena pudendae -http://purl.obolibrary.org/obo/UBERON_0009029;pudendal vein;vena pudendales -http://purl.obolibrary.org/obo/UBERON_0009030;left pulmonary vein; -http://purl.obolibrary.org/obo/UBERON_0009032;right pulmonary vein; -http://purl.obolibrary.org/obo/UBERON_0009035;renal straight tubule;kidney straight tubule -http://purl.obolibrary.org/obo/UBERON_0009035;renal straight tubule;straight tubule -http://purl.obolibrary.org/obo/UBERON_0009038;sulcus ampullaris;ampullary groove -http://purl.obolibrary.org/obo/UBERON_0009038;sulcus ampullaris;ampullary sulcus -http://purl.obolibrary.org/obo/UBERON_0009039;lymph node germinal center; -http://purl.obolibrary.org/obo/UBERON_0009040;deep circumflex iliac artery;arteria circumflexa ilium profunda -http://purl.obolibrary.org/obo/UBERON_0009041;superficial circumflex iliac artery;arteria circumflexa ilium superficialis -http://purl.obolibrary.org/obo/UBERON_0009042;prostatic venous plexus; -http://purl.obolibrary.org/obo/UBERON_0009044;pudendal venous plexus; -http://purl.obolibrary.org/obo/UBERON_0009046;inferior external pudendal vein; -http://purl.obolibrary.org/obo/UBERON_0009047;superior external pudendal vein; -http://purl.obolibrary.org/obo/UBERON_0009048;deep external pudendal vein;vena pudendae externalis profunda -http://purl.obolibrary.org/obo/UBERON_0009048;deep external pudendal vein;vena pudendales externalis profunda -http://purl.obolibrary.org/obo/UBERON_0009049;superficial external pudendal vein;vena pudendae externalis superficialis -http://purl.obolibrary.org/obo/UBERON_0009049;superficial external pudendal vein;vena pudendales externalis superficialis -http://purl.obolibrary.org/obo/UBERON_0009050;nucleus of solitary tract;nuclei tractus solitarii -http://purl.obolibrary.org/obo/UBERON_0009050;nucleus of solitary tract;nucleus of the solitary tract -http://purl.obolibrary.org/obo/UBERON_0009050;nucleus of solitary tract;nucleus of the tractus solitarius -http://purl.obolibrary.org/obo/UBERON_0009050;nucleus of solitary tract;nucleus of tractus solitarius -http://purl.obolibrary.org/obo/UBERON_0009050;nucleus of solitary tract;nucleus solitarius -http://purl.obolibrary.org/obo/UBERON_0009050;nucleus of solitary tract;nucleus tracti solitarii -http://purl.obolibrary.org/obo/UBERON_0009050;nucleus of solitary tract;nucleus tractus solitarii -http://purl.obolibrary.org/obo/UBERON_0009050;nucleus of solitary tract;nucleus tractus solitarii medullae oblongatae -http://purl.obolibrary.org/obo/UBERON_0009050;nucleus of solitary tract;solitary nuclear complex -http://purl.obolibrary.org/obo/UBERON_0009050;nucleus of solitary tract;solitary nucleus -http://purl.obolibrary.org/obo/UBERON_0009050;nucleus of solitary tract;solitary tract nucleus -http://purl.obolibrary.org/obo/UBERON_0009051;gelatinous nucleus of solitary tract; -http://purl.obolibrary.org/obo/UBERON_0009052;medial nucleus of solitary tract; -http://purl.obolibrary.org/obo/UBERON_0009053;dorsal nucleus of trapezoid body;dorsal nucleus of trapezoid body -http://purl.obolibrary.org/obo/UBERON_0009053;dorsal nucleus of trapezoid body;nucleus dorsalis corporis trapezoidei -http://purl.obolibrary.org/obo/UBERON_0009054;open circulatory system; -http://purl.obolibrary.org/obo/UBERON_0009055;closed circulatory system; -http://purl.obolibrary.org/obo/UBERON_0009056;two-pass circulatory system; -http://purl.obolibrary.org/obo/UBERON_0009057;one-pass circulatory system; -http://purl.obolibrary.org/obo/UBERON_0009058;faveolus;lung faveolus -http://purl.obolibrary.org/obo/UBERON_0009060;air sac;sacci pneumatici -http://purl.obolibrary.org/obo/UBERON_0009061;anterior air sac; -http://purl.obolibrary.org/obo/UBERON_0009062;posterior air sac; -http://purl.obolibrary.org/obo/UBERON_0009063;interclavicular air sac; -http://purl.obolibrary.org/obo/UBERON_0009064;cervical air sac; -http://purl.obolibrary.org/obo/UBERON_0009065;anterior thoracic air sac; -http://purl.obolibrary.org/obo/UBERON_0009066;posterior thoracic air sac; -http://purl.obolibrary.org/obo/UBERON_0009067;abdominal air sac; -http://purl.obolibrary.org/obo/UBERON_0009071;mesobronchus; -http://purl.obolibrary.org/obo/UBERON_0009072;ventrobronchus; -http://purl.obolibrary.org/obo/UBERON_0009073;dorsobronchus; -http://purl.obolibrary.org/obo/UBERON_0009074;syrinx organ; -http://purl.obolibrary.org/obo/UBERON_0009075;membrana tympaniformis;syrinx organ wall -http://purl.obolibrary.org/obo/UBERON_0009075;membrana tympaniformis;wall of syrinx -http://purl.obolibrary.org/obo/UBERON_0009076;membrana tympaniformis lateralis;lateral wall of syrinx -http://purl.obolibrary.org/obo/UBERON_0009077;membrana tympaniformis medialis;medial wall of syrinx -http://purl.obolibrary.org/obo/UBERON_0009078;pessulus; -http://purl.obolibrary.org/obo/UBERON_0009089;inner medulla vasa recta descending limb; -http://purl.obolibrary.org/obo/UBERON_0009090;outer medulla vasa recta descending limb; -http://purl.obolibrary.org/obo/UBERON_0009091;vasa recta ascending limb; -http://purl.obolibrary.org/obo/UBERON_0009092;inner medulla vasa recta ascending limb; -http://purl.obolibrary.org/obo/UBERON_0009093;outer medulla vasa recta ascending limb; -http://purl.obolibrary.org/obo/UBERON_0009095;tip of renal papilla;papillary tip -http://purl.obolibrary.org/obo/UBERON_0009095;tip of renal papilla;papillary tips -http://purl.obolibrary.org/obo/UBERON_0009097;gravid organism;gravid -http://purl.obolibrary.org/obo/UBERON_0009097;gravid organism;pregnant adult -http://purl.obolibrary.org/obo/UBERON_0009097;gravid organism;pregnant adult stage -http://purl.obolibrary.org/obo/UBERON_0009097;gravid organism;pregnant organism -http://purl.obolibrary.org/obo/UBERON_0009097;gravid organism;pregnant stage -http://purl.obolibrary.org/obo/UBERON_0009098;gravid uterus; -http://purl.obolibrary.org/obo/UBERON_0009099;typhlosole; -http://purl.obolibrary.org/obo/UBERON_0009100;nephric fold; -http://purl.obolibrary.org/obo/UBERON_0009101;ammocoete; -http://purl.obolibrary.org/obo/UBERON_0009102;supraneural body;dorsal fat body -http://purl.obolibrary.org/obo/UBERON_0009102;supraneural body;pro-vertebral arch -http://purl.obolibrary.org/obo/UBERON_0009114;cervical thymus; -http://purl.obolibrary.org/obo/UBERON_0009115;thoracic thymus; -http://purl.obolibrary.org/obo/UBERON_0009116;thymoid; -http://purl.obolibrary.org/obo/UBERON_0009117;indifferent gonad; -http://purl.obolibrary.org/obo/UBERON_0009118;marsupium;marsupial pouch -http://purl.obolibrary.org/obo/UBERON_0009119;branchial basket;gill basket -http://purl.obolibrary.org/obo/UBERON_0009120;gill filament;gill filaments -http://purl.obolibrary.org/obo/UBERON_0009121;vomeronasal nerve; -http://purl.obolibrary.org/obo/UBERON_0009122;adenohypophyseal placode; -http://purl.obolibrary.org/obo/UBERON_0009124;geniculate placode;epibranchial placode 1 -http://purl.obolibrary.org/obo/UBERON_0009124;geniculate placode;facial epibranchial placode -http://purl.obolibrary.org/obo/UBERON_0009124;geniculate placode;facial placode -http://purl.obolibrary.org/obo/UBERON_0009125;petrosal placode;epibranchial placode 2 -http://purl.obolibrary.org/obo/UBERON_0009125;petrosal placode;glossopharyngeal IX placode -http://purl.obolibrary.org/obo/UBERON_0009125;petrosal placode;glossopharyngeal epibranchial placode -http://purl.obolibrary.org/obo/UBERON_0009125;petrosal placode;glossopharyngeal placode -http://purl.obolibrary.org/obo/UBERON_0009126;nodosal placode;epibranchial placode 3 -http://purl.obolibrary.org/obo/UBERON_0009126;nodosal placode;nodose placode -http://purl.obolibrary.org/obo/UBERON_0009126;nodosal placode;nodose placodes -http://purl.obolibrary.org/obo/UBERON_0009126;nodosal placode;vagal epibranchial placode -http://purl.obolibrary.org/obo/UBERON_0009126;nodosal placode;vagal epibranchial placodes -http://purl.obolibrary.org/obo/UBERON_0009127;epibranchial ganglion;epibranchial ganglia -http://purl.obolibrary.org/obo/UBERON_0009128;lateral line placode; -http://purl.obolibrary.org/obo/UBERON_0009129;right atrium endocardium;endocardium of right atrium -http://purl.obolibrary.org/obo/UBERON_0009129;right atrium endocardium;right atrial endocardium -http://purl.obolibrary.org/obo/UBERON_0009130;dorsal meso-duodenum; -http://purl.obolibrary.org/obo/UBERON_0009132;peroneus;fibularis -http://purl.obolibrary.org/obo/UBERON_0009132;peroneus;fibularis muscle -http://purl.obolibrary.org/obo/UBERON_0009132;peroneus;peroneal muscle -http://purl.obolibrary.org/obo/UBERON_0009132;peroneus;peroneal muscle group -http://purl.obolibrary.org/obo/UBERON_0009132;peroneus;peroneal muscles -http://purl.obolibrary.org/obo/UBERON_0009132;peroneus;peroneus muscle -http://purl.obolibrary.org/obo/UBERON_0009132;peroneus;peronæus muscle -http://purl.obolibrary.org/obo/UBERON_0009133;pleuroperitoneal membrane;pleuroperitoneal fold -http://purl.obolibrary.org/obo/UBERON_0009133;pleuroperitoneal membrane;pleuroperitoneal membranes -http://purl.obolibrary.org/obo/UBERON_0009138;right common cardinal vein;common cardinal vein right -http://purl.obolibrary.org/obo/UBERON_0009139;right posterior cardinal vein;posterior cardinal vein right -http://purl.obolibrary.org/obo/UBERON_0009139;right posterior cardinal vein;right postcardinal vein -http://purl.obolibrary.org/obo/UBERON_0009140;right subcardinal vein;subcardinal vein right -http://purl.obolibrary.org/obo/UBERON_0009141;craniocervical region vein;craniocervical vein -http://purl.obolibrary.org/obo/UBERON_0009141;craniocervical region vein;head and neck veins -http://purl.obolibrary.org/obo/UBERON_0009141;craniocervical region vein;vein of head and neck -http://purl.obolibrary.org/obo/UBERON_0009142;entire embryonic mesenchyme; -http://purl.obolibrary.org/obo/UBERON_0009145;pharyngeal region of foregut;pharyngeal region -http://purl.obolibrary.org/obo/UBERON_0009149;foramen primum;interatrial foramen primum -http://purl.obolibrary.org/obo/UBERON_0009149;foramen primum;ostium primum -http://purl.obolibrary.org/obo/UBERON_0009149;foramen primum;primary interatrial foramen -http://purl.obolibrary.org/obo/UBERON_0009191;sphenoid bone pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0009192;basisphenoid pre-cartilage condensation;basi-sphenoid pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0009193;sphenoid cartilage element;sphenoid bone cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0009194;basisphenoid cartilage condenstion;basisphenoid cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0009195;anal membrane; -http://purl.obolibrary.org/obo/UBERON_0009196;indifferent external genitalia; -http://purl.obolibrary.org/obo/UBERON_0009197;basioccipital pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0009198;craniofacial suture;joint of the skull bones -http://purl.obolibrary.org/obo/UBERON_0009199;facial suture; -http://purl.obolibrary.org/obo/UBERON_0009200;limb epidermis; -http://purl.obolibrary.org/obo/UBERON_0009201;nephric duct; -http://purl.obolibrary.org/obo/UBERON_0009202;vasa recta descending limb; -http://purl.obolibrary.org/obo/UBERON_0009203;internasal suture;inter-nasal suture -http://purl.obolibrary.org/obo/UBERON_0009203;internasal suture;internasal suture of skull -http://purl.obolibrary.org/obo/UBERON_0009203;internasal suture;sutura internasalis -http://purl.obolibrary.org/obo/UBERON_0009204;medial nasal process mesenchyme; -http://purl.obolibrary.org/obo/UBERON_0009205;lateral nasal process mesenchyme;mesenchyme of latero-nasal process -http://purl.obolibrary.org/obo/UBERON_0009206;lateral nasal process surface ectoderm;ectoderm of latero-nasal process -http://purl.obolibrary.org/obo/UBERON_0009207;geschmacksstreifen; -http://purl.obolibrary.org/obo/UBERON_0009210;pharyngeal membrane;branchial arch membrane -http://purl.obolibrary.org/obo/UBERON_0009210;pharyngeal membrane;branchial membrane -http://purl.obolibrary.org/obo/UBERON_0009210;pharyngeal membrane;pharyngeal membrane -http://purl.obolibrary.org/obo/UBERON_0009213;pharyngeal membrane of 1st arch;1st branchial membrane -http://purl.obolibrary.org/obo/UBERON_0009213;pharyngeal membrane of 1st arch;1st pharyngeal membrane -http://purl.obolibrary.org/obo/UBERON_0009213;pharyngeal membrane of 1st arch;future tympanic membrane -http://purl.obolibrary.org/obo/UBERON_0009213;pharyngeal membrane of 1st arch;tympanic membrane primordium -http://purl.obolibrary.org/obo/UBERON_0009215;pharyngeal membrane of 2nd arch;2nd pharyngeal membrane -http://purl.obolibrary.org/obo/UBERON_0009216;pharyngeal membrane of 3rd arch;3rd pharyngeal membrane -http://purl.obolibrary.org/obo/UBERON_0009217;pharyngeal membrane of 4th arch;4th pharyngeal membrane -http://purl.obolibrary.org/obo/UBERON_0009291;cartilaginous vertebral centrum;cartilaginous centrum of vertebra -http://purl.obolibrary.org/obo/UBERON_0009292;embryonic nasal process; -http://purl.obolibrary.org/obo/UBERON_0009293;embryonic frontal process;frontal process -http://purl.obolibrary.org/obo/UBERON_0009468;basiotic bone;basiotic -http://purl.obolibrary.org/obo/UBERON_0009470;postsphenoidal bone; -http://purl.obolibrary.org/obo/UBERON_0009471;dorsum of tongue;dorsal tongue -http://purl.obolibrary.org/obo/UBERON_0009471;dorsum of tongue;dorsum linguae -http://purl.obolibrary.org/obo/UBERON_0009471;dorsum of tongue;tongue dorsum -http://purl.obolibrary.org/obo/UBERON_0009472;axilla;arm pit -http://purl.obolibrary.org/obo/UBERON_0009472;axilla;armpit -http://purl.obolibrary.org/obo/UBERON_0009472;axilla;axillary region -http://purl.obolibrary.org/obo/UBERON_0009472;axilla;regio axillaris -http://purl.obolibrary.org/obo/UBERON_0009473;parapodium;paradpod -http://purl.obolibrary.org/obo/UBERON_0009473;parapodium;polychaete paradpodium -http://purl.obolibrary.org/obo/UBERON_0009474;ascidian ampulla; -http://purl.obolibrary.org/obo/UBERON_0009475;ampullar siphon; -http://purl.obolibrary.org/obo/UBERON_0009476;madreporite; -http://purl.obolibrary.org/obo/UBERON_0009477;associated mesenchyme of otic placode; -http://purl.obolibrary.org/obo/UBERON_0009478;associated mesenchyme of midgut;early midgut associated mesenchyme -http://purl.obolibrary.org/obo/UBERON_0009479;ectoderm of buccopharyngeal membrane; -http://purl.obolibrary.org/obo/UBERON_0009480;endoderm of buccopharyngeal membrane; -http://purl.obolibrary.org/obo/UBERON_0009481;cavity of pericardio-peritoneal canal;cavity of the pericardio-peritoneal canal -http://purl.obolibrary.org/obo/UBERON_0009482;associated mesenchyme of foregut-midgut junction; -http://purl.obolibrary.org/obo/UBERON_0009483;mesentery of foregut-midgut junction;foregut-midgut junction mesentery -http://purl.obolibrary.org/obo/UBERON_0009484;dorsal mesentery of mesentery of foregut-midgut junction; -http://purl.obolibrary.org/obo/UBERON_0009494;pharyngeal arch mesenchymal region;branchial arch mesenchyme -http://purl.obolibrary.org/obo/UBERON_0009494;pharyngeal arch mesenchymal region;pharyngeal arch mesenchyme -http://purl.obolibrary.org/obo/UBERON_0009495;extrahepatic part of biliary bud; -http://purl.obolibrary.org/obo/UBERON_0009496;intrahepatic part of biliary bud; -http://purl.obolibrary.org/obo/UBERON_0009497;epithelium of foregut-midgut junction; -http://purl.obolibrary.org/obo/UBERON_0009499;parietal of mesothelium of pericardio-peritoneal canal; -http://purl.obolibrary.org/obo/UBERON_0009500;periotic mesenchyme;otocyst associated mesenchyme -http://purl.obolibrary.org/obo/UBERON_0009500;periotic mesenchyme;otocyst mesenchyme -http://purl.obolibrary.org/obo/UBERON_0009501;mesenchyme of fronto-nasal process;frontonasal mesenchyme -http://purl.obolibrary.org/obo/UBERON_0009501;mesenchyme of fronto-nasal process;naso-frontal mesenchyme -http://purl.obolibrary.org/obo/UBERON_0009502;ventral mesentery of mesentery of foregut-midgut junction; -http://purl.obolibrary.org/obo/UBERON_0009503;mesenchyme of hindgut;hindgut associated mesenchyme -http://purl.obolibrary.org/obo/UBERON_0009504;mesenchyme of main bronchus;main bronchus associated mesenchyme -http://purl.obolibrary.org/obo/UBERON_0009505;mesenchyme of trachea;trachea associated mesenchyme -http://purl.obolibrary.org/obo/UBERON_0009506;mesenchyme of middle ear;middle ear associated mesenchyme -http://purl.obolibrary.org/obo/UBERON_0009521;anal membrane endodermal component; -http://purl.obolibrary.org/obo/UBERON_0009522;lateral lingual swelling epithelium; -http://purl.obolibrary.org/obo/UBERON_0009523;mesenchyme of handplate;hand plate mesenchyme -http://purl.obolibrary.org/obo/UBERON_0009523;mesenchyme of handplate;handplate mesenchyme -http://purl.obolibrary.org/obo/UBERON_0009526;maxillary process mesenchyme;mesenchyme of maxillary process -http://purl.obolibrary.org/obo/UBERON_0009526;maxillary process mesenchyme;mesenchyme of maxillary prominence -http://purl.obolibrary.org/obo/UBERON_0009536;vascular element of left lung; -http://purl.obolibrary.org/obo/UBERON_0009537;vascular element of right lung; -http://purl.obolibrary.org/obo/UBERON_0009538;mesenchyme of sublingual gland primordium; -http://purl.obolibrary.org/obo/UBERON_0009539;mesenchyme of submandibular gland primordium; -http://purl.obolibrary.org/obo/UBERON_0009548;hepatic sinusoid of left of lobe of liver;left lobe hepatic sinusoids -http://purl.obolibrary.org/obo/UBERON_0009549;hepatic sinusoid of right of lobe of liver;right lobe hepatic sinusoids -http://purl.obolibrary.org/obo/UBERON_0009550;endoderm of foregut-midgut junction; -http://purl.obolibrary.org/obo/UBERON_0009551;distal segment of digit;digit tip -http://purl.obolibrary.org/obo/UBERON_0009551;distal segment of digit;distal digit segment -http://purl.obolibrary.org/obo/UBERON_0009551;distal segment of digit;tip of digit -http://purl.obolibrary.org/obo/UBERON_0009552;distal segment of manual digit;finger digit tip -http://purl.obolibrary.org/obo/UBERON_0009552;distal segment of manual digit;finger distal segment -http://purl.obolibrary.org/obo/UBERON_0009552;distal segment of manual digit;finger tip -http://purl.obolibrary.org/obo/UBERON_0009552;distal segment of manual digit;fingertip -http://purl.obolibrary.org/obo/UBERON_0009552;distal segment of manual digit;forelimb digit tip -http://purl.obolibrary.org/obo/UBERON_0009552;distal segment of manual digit;tip of finger -http://purl.obolibrary.org/obo/UBERON_0009553;distal segment of pedal digit;hindlimb digit tip -http://purl.obolibrary.org/obo/UBERON_0009553;distal segment of pedal digit;tip of toe -http://purl.obolibrary.org/obo/UBERON_0009553;distal segment of pedal digit;toe digit tip -http://purl.obolibrary.org/obo/UBERON_0009553;distal segment of pedal digit;toe distal segment -http://purl.obolibrary.org/obo/UBERON_0009555;short pastern bone;equine middle phalanx -http://purl.obolibrary.org/obo/UBERON_0009555;short pastern bone;equine phalanx 2 -http://purl.obolibrary.org/obo/UBERON_0009555;short pastern bone;equine phalanx 2 of digit III -http://purl.obolibrary.org/obo/UBERON_0009556;long pastern bone;equine phalanx 1 of digit III -http://purl.obolibrary.org/obo/UBERON_0009556;long pastern bone;equine proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0009558;pastern bone; -http://purl.obolibrary.org/obo/UBERON_0009559;metacarpal/tarsal-phalangeal joint;metacarpo-tarsophalangeal joint -http://purl.obolibrary.org/obo/UBERON_0009559;metacarpal/tarsal-phalangeal joint;metapodial-phalangeal joint -http://purl.obolibrary.org/obo/UBERON_0009559;metacarpal/tarsal-phalangeal joint;metapodium-phalanx joint -http://purl.obolibrary.org/obo/UBERON_0009563;pastern region of limb; -http://purl.obolibrary.org/obo/UBERON_0009564;distal limb integumentary appendage; -http://purl.obolibrary.org/obo/UBERON_0009565;nail of manual digit;finger nail -http://purl.obolibrary.org/obo/UBERON_0009565;nail of manual digit;fingernail -http://purl.obolibrary.org/obo/UBERON_0009565;nail of manual digit;nail of finger -http://purl.obolibrary.org/obo/UBERON_0009566;intestinal submucosa;submucosa of intestine -http://purl.obolibrary.org/obo/UBERON_0009567;nail of pedal digit;nail of pes -http://purl.obolibrary.org/obo/UBERON_0009567;nail of pedal digit;nail of toe -http://purl.obolibrary.org/obo/UBERON_0009567;nail of pedal digit;toe nail -http://purl.obolibrary.org/obo/UBERON_0009567;nail of pedal digit;toenail -http://purl.obolibrary.org/obo/UBERON_0009568;trunk region of vertebral column;thoracolumbar column -http://purl.obolibrary.org/obo/UBERON_0009568;trunk region of vertebral column;thoracolumbar region of vertebral column -http://purl.obolibrary.org/obo/UBERON_0009568;trunk region of vertebral column;thoracolumbar vertebrae set -http://purl.obolibrary.org/obo/UBERON_0009568;trunk region of vertebral column;thoracolumbar vertebral column -http://purl.obolibrary.org/obo/UBERON_0009568;trunk region of vertebral column;trunk vertebrae series -http://purl.obolibrary.org/obo/UBERON_0009568;trunk region of vertebral column;trunk vertebral column -http://purl.obolibrary.org/obo/UBERON_0009569;subdivision of trunk;region of trunk -http://purl.obolibrary.org/obo/UBERON_0009569;subdivision of trunk;trunk subdivision -http://purl.obolibrary.org/obo/UBERON_0009570;spinal cord sulcus limitans;spinal cord lateral wall sulcus limitans -http://purl.obolibrary.org/obo/UBERON_0009571;ventral midline; -http://purl.obolibrary.org/obo/UBERON_0009572;lumen of central canal of spinal cord;cavity of central canal of spinal cord -http://purl.obolibrary.org/obo/UBERON_0009572;lumen of central canal of spinal cord;central canal lumen -http://purl.obolibrary.org/obo/UBERON_0009572;lumen of central canal of spinal cord;spinal cord lumen -http://purl.obolibrary.org/obo/UBERON_0009573;sulcus limitans of fourth ventricle; -http://purl.obolibrary.org/obo/UBERON_0009576;medulla oblongata sulcus limitans; -http://purl.obolibrary.org/obo/UBERON_0009577;metencephalon sulcus limitans; -http://purl.obolibrary.org/obo/UBERON_0009578;myelencephalon sulcus limitans; -http://purl.obolibrary.org/obo/UBERON_0009579;myelencephalon basal plate;basal plate myelencephalon -http://purl.obolibrary.org/obo/UBERON_0009579;myelencephalon basal plate;future myelencephalon basal plate -http://purl.obolibrary.org/obo/UBERON_0009580;diencephalon mantle layer;diencephalon lateral wall mantle layer -http://purl.obolibrary.org/obo/UBERON_0009580;diencephalon mantle layer;mantle layer lateral wall diencephalon -http://purl.obolibrary.org/obo/UBERON_0009581;midbrain mantle layer;mantle layer lateral wall midbrain -http://purl.obolibrary.org/obo/UBERON_0009581;midbrain mantle layer;midbrain lateral wall mantle layer -http://purl.obolibrary.org/obo/UBERON_0009582;spinal cord lateral wall;lateral wall spinal cord -http://purl.obolibrary.org/obo/UBERON_0009583;spinal cord mantle layer;mantle layer lateral wall spinal cord -http://purl.obolibrary.org/obo/UBERON_0009583;spinal cord mantle layer;spinal cord lateral wall mantle layer -http://purl.obolibrary.org/obo/UBERON_0009584;1st arch mandibular mesenchyme;mesenchymal region of mandibular component of first pharyngeal arch -http://purl.obolibrary.org/obo/UBERON_0009584;1st arch mandibular mesenchyme;mesenchyme of mandibular component -http://purl.obolibrary.org/obo/UBERON_0009585;interdigital region mesenchyme;interdigital mesenchyme -http://purl.obolibrary.org/obo/UBERON_0009585;interdigital region mesenchyme;mesenchyme of interdigital region -http://purl.obolibrary.org/obo/UBERON_0009586;mesenchyme of interdigital region between manual digits 1 and 2;interdigital region between fingers 1 and 2 mesenchyme -http://purl.obolibrary.org/obo/UBERON_0009586;mesenchyme of interdigital region between manual digits 1 and 2;mesenchyme of interdigital region between manual digits I and II -http://purl.obolibrary.org/obo/UBERON_0009587;mesenchyme of interdigital region between manual digits 2 and 3;interdigital region between fingers 2 and 3 mesenchyme -http://purl.obolibrary.org/obo/UBERON_0009587;mesenchyme of interdigital region between manual digits 2 and 3;mesenchyme of interdigital region between manual digits II and III -http://purl.obolibrary.org/obo/UBERON_0009588;mesenchyme of interdigital region between manual digits 3 and 4;interdigital region between fingers 3 and 4 mesenchyme -http://purl.obolibrary.org/obo/UBERON_0009588;mesenchyme of interdigital region between manual digits 3 and 4;mesenchyme of interdigital region between manual digits III and IV -http://purl.obolibrary.org/obo/UBERON_0009589;mesenchyme of interdigital region between manual digits 4 and 5;interdigital region between fingers 4 and 5 mesenchyme -http://purl.obolibrary.org/obo/UBERON_0009589;mesenchyme of interdigital region between manual digits 4 and 5;mesenchyme of interdigital region between manual digits IV and V -http://purl.obolibrary.org/obo/UBERON_0009590;mesenchyme of interdigital region between pedal digits 1 and 2;interdigital region between toes 1 and 2 mesenchyme -http://purl.obolibrary.org/obo/UBERON_0009590;mesenchyme of interdigital region between pedal digits 1 and 2;mesenchyme of interdigital region between pedal digits I and II -http://purl.obolibrary.org/obo/UBERON_0009591;mesenchyme of interdigital region between pedal digits 2 and 3;interdigital region between toes 2 and 3 mesenchyme -http://purl.obolibrary.org/obo/UBERON_0009591;mesenchyme of interdigital region between pedal digits 2 and 3;mesenchyme of interdigital region between pedal digits II and III -http://purl.obolibrary.org/obo/UBERON_0009592;mesenchyme of interdigital region between pedal digits 3 and 4;interdigital region between toes 3 and 4 mesenchyme -http://purl.obolibrary.org/obo/UBERON_0009592;mesenchyme of interdigital region between pedal digits 3 and 4;mesenchyme of interdigital region between pedal digits III and IV -http://purl.obolibrary.org/obo/UBERON_0009593;mesenchyme of interdigital region between pedal digits 4 and 5;interdigital region between toes 4 and 5 mesenchyme -http://purl.obolibrary.org/obo/UBERON_0009593;mesenchyme of interdigital region between pedal digits 4 and 5;mesenchyme of interdigital region between pedal digits IV and V -http://purl.obolibrary.org/obo/UBERON_0009596;mesenchyme of interdigital region between digits 1 and 2;mesenchyme of interdigital region between digits I and II -http://purl.obolibrary.org/obo/UBERON_0009597;mesenchyme of interdigital region between digits 2 and 3;mesenchyme of interdigital region between digits II and III -http://purl.obolibrary.org/obo/UBERON_0009598;mesenchyme of interdigital region between digits 3 and 4;mesenchyme of interdigital region between digits III and IV -http://purl.obolibrary.org/obo/UBERON_0009599;mesenchyme of interdigital region between digits 4 and 5;mesenchyme of interdigital region between digits IV and V -http://purl.obolibrary.org/obo/UBERON_0009600;mesenchyme of interdigital region of manus;mesenchyme of interdigital region of forelimb -http://purl.obolibrary.org/obo/UBERON_0009601;mesenchyme of interdigital region of pes;mesenchyme of interdigital region of hindlimb -http://purl.obolibrary.org/obo/UBERON_0009602;left lung associated mesenchyme;left lung mesenchyme -http://purl.obolibrary.org/obo/UBERON_0009603;right lung associated mesenchyme;right lung mesenchyme -http://purl.obolibrary.org/obo/UBERON_0009610;forebrain neural plate; -http://purl.obolibrary.org/obo/UBERON_0009611;midbrain neural plate; -http://purl.obolibrary.org/obo/UBERON_0009612;forebrain midbrain boundary neural plate;diencephalic-mesencephalic boundary neural plate -http://purl.obolibrary.org/obo/UBERON_0009614;hindbrain neural plate; -http://purl.obolibrary.org/obo/UBERON_0009615;midbrain hindbrain boundary neural plate;MHB neural plate -http://purl.obolibrary.org/obo/UBERON_0009615;midbrain hindbrain boundary neural plate;midbrain-hindbrain boundary neural plate -http://purl.obolibrary.org/obo/UBERON_0009616;presumptive midbrain;presumptive mesencephalon -http://purl.obolibrary.org/obo/UBERON_0009617;head paraxial mesoderm;cephalic paraxial mesenchyme -http://purl.obolibrary.org/obo/UBERON_0009617;head paraxial mesoderm;cephalic paraxial mesoderm -http://purl.obolibrary.org/obo/UBERON_0009617;head paraxial mesoderm;cranial paraxial mesenchyme -http://purl.obolibrary.org/obo/UBERON_0009617;head paraxial mesoderm;cranial paraxial mesoderm -http://purl.obolibrary.org/obo/UBERON_0009617;head paraxial mesoderm;head paraxial mesenchyme -http://purl.obolibrary.org/obo/UBERON_0009618;trunk paraxial mesoderm;trunk and cervical paraxial mesenchyme -http://purl.obolibrary.org/obo/UBERON_0009620;tail bud paraxial mesoderm; -http://purl.obolibrary.org/obo/UBERON_0009621;tail somite; -http://purl.obolibrary.org/obo/UBERON_0009622;pronephric proximal straight tubule; -http://purl.obolibrary.org/obo/UBERON_0009623;spinal nerve root;root of spinal nerve -http://purl.obolibrary.org/obo/UBERON_0009623;spinal nerve root;spinal neural root -http://purl.obolibrary.org/obo/UBERON_0009623;spinal nerve root;spinal root -http://purl.obolibrary.org/obo/UBERON_0009624;lumbar nerve;lumbar spinal nerve -http://purl.obolibrary.org/obo/UBERON_0009624;lumbar nerve;nervus lumbalis -http://purl.obolibrary.org/obo/UBERON_0009625;sacral nerve;nervus sacralis -http://purl.obolibrary.org/obo/UBERON_0009625;sacral nerve;sacral spinal nerve -http://purl.obolibrary.org/obo/UBERON_0009629;coccygeal nerve;coccygeal spinal nerve -http://purl.obolibrary.org/obo/UBERON_0009630;root of thoracic nerve;nerve root part of thoracic spinal cord -http://purl.obolibrary.org/obo/UBERON_0009630;root of thoracic nerve;thoracic nerve root -http://purl.obolibrary.org/obo/UBERON_0009630;root of thoracic nerve;thoracic neural root -http://purl.obolibrary.org/obo/UBERON_0009631;root of lumbar spinal nerve;lumbar spinal nerve root -http://purl.obolibrary.org/obo/UBERON_0009631;root of lumbar spinal nerve;lumbar spinal neural root -http://purl.obolibrary.org/obo/UBERON_0009631;root of lumbar spinal nerve;nerve root part of lumbar spinal cord -http://purl.obolibrary.org/obo/UBERON_0009632;root of cervical nerve;cervical neural root -http://purl.obolibrary.org/obo/UBERON_0009632;root of cervical nerve;cervical spinal root -http://purl.obolibrary.org/obo/UBERON_0009632;root of cervical nerve;nerve root part of cervical spinal cord -http://purl.obolibrary.org/obo/UBERON_0009632;root of cervical nerve;root of cervical spinal nerve -http://purl.obolibrary.org/obo/UBERON_0009633;root of sacral nerve;nerve root part of sacral spinal cord -http://purl.obolibrary.org/obo/UBERON_0009633;root of sacral nerve;root of sacral spinal nerve -http://purl.obolibrary.org/obo/UBERON_0009633;root of sacral nerve;sacral neural root -http://purl.obolibrary.org/obo/UBERON_0009634;root of coccygeal nerve;coccygeal neural root -http://purl.obolibrary.org/obo/UBERON_0009634;root of coccygeal nerve;coccygeal spinal nerve root -http://purl.obolibrary.org/obo/UBERON_0009634;root of coccygeal nerve;root of coccygeal spinal nerve -http://purl.obolibrary.org/obo/UBERON_0009635;parachordal cartilage;parachordal cartilages -http://purl.obolibrary.org/obo/UBERON_0009636;prechordal cartilage; -http://purl.obolibrary.org/obo/UBERON_0009637;alisphenoid ossification center; -http://purl.obolibrary.org/obo/UBERON_0009638;orbitosphenoid ossification center; -http://purl.obolibrary.org/obo/UBERON_0009639;body of sphenoid;Entire body of sphenoid bone -http://purl.obolibrary.org/obo/UBERON_0009639;body of sphenoid;body of sphenoidal bone -http://purl.obolibrary.org/obo/UBERON_0009639;body of sphenoid;central body of sphenoid -http://purl.obolibrary.org/obo/UBERON_0009639;body of sphenoid;corpus (os sphenoidale) -http://purl.obolibrary.org/obo/UBERON_0009639;body of sphenoid;sphenoid body -http://purl.obolibrary.org/obo/UBERON_0009640;hypophyseal cartilage; -http://purl.obolibrary.org/obo/UBERON_0009641;ansa lenticularis;ansa lenticularis in thalamo -http://purl.obolibrary.org/obo/UBERON_0009641;ansa lenticularis;ansa lenticularis in thalamus -http://purl.obolibrary.org/obo/UBERON_0009641;ansa lenticularis;ventral peduncle of lateral forebrain bundle -http://purl.obolibrary.org/obo/UBERON_0009643;central tegmental tract; -http://purl.obolibrary.org/obo/UBERON_0009644;trachea non-cartilage connective tissue; -http://purl.obolibrary.org/obo/UBERON_0009645;ampullary gland;ampulla of the vas -http://purl.obolibrary.org/obo/UBERON_0009645;ampullary gland;ampullae of the vas -http://purl.obolibrary.org/obo/UBERON_0009645;ampullary gland;ampullary gland of seminal duct -http://purl.obolibrary.org/obo/UBERON_0009646;lumbar sympathetic nerve trunk;lumbar sympathetic trunk -http://purl.obolibrary.org/obo/UBERON_0009647;tympanic membrane epithelium;tympanic epithelium -http://purl.obolibrary.org/obo/UBERON_0009647;tympanic membrane epithelium;tympanic membrane epithelial layer -http://purl.obolibrary.org/obo/UBERON_0009648;eyelid subcutaneous connective tissue; -http://purl.obolibrary.org/obo/UBERON_0009650;cortical arch of kidney;renal cortex proper -http://purl.obolibrary.org/obo/UBERON_0009650;cortical arch of kidney;renal cortical arch -http://purl.obolibrary.org/obo/UBERON_0009651;nephron tubule basement membrane;kidney tubule basement membrane -http://purl.obolibrary.org/obo/UBERON_0009651;nephron tubule basement membrane;renal tubular basement membrane -http://purl.obolibrary.org/obo/UBERON_0009651;nephron tubule basement membrane;renal tubule basement membrane -http://purl.obolibrary.org/obo/UBERON_0009652;bronchus basement membrane;bronchial basement membrane -http://purl.obolibrary.org/obo/UBERON_0009653;trachea basement membrane; -http://purl.obolibrary.org/obo/UBERON_0009654;alveolar artery; -http://purl.obolibrary.org/obo/UBERON_0009655;auricular artery; -http://purl.obolibrary.org/obo/UBERON_0009657;artery of lip; -http://purl.obolibrary.org/obo/UBERON_0009658;pancreaticoduodenal artery;arteriae pancreaticoduodenales -http://purl.obolibrary.org/obo/UBERON_0009658;pancreaticoduodenal artery;pancreatico-duodenal artery -http://purl.obolibrary.org/obo/UBERON_0009659;spermatic artery; -http://purl.obolibrary.org/obo/UBERON_0009661;midbrain nucleus; -http://purl.obolibrary.org/obo/UBERON_0009662;hindbrain nucleus; -http://purl.obolibrary.org/obo/UBERON_0009663;telencephalic nucleus; -http://purl.obolibrary.org/obo/UBERON_0009664;gut mesentery; -http://purl.obolibrary.org/obo/UBERON_0009668;ventral mesentery; -http://purl.obolibrary.org/obo/UBERON_0009669;embryonic cloacal lumen; -http://purl.obolibrary.org/obo/UBERON_0009670;rectal lumen;lumen of rectum -http://purl.obolibrary.org/obo/UBERON_0009671;nasal fin; -http://purl.obolibrary.org/obo/UBERON_0009672;oronasal membrane;bucconasal membrane -http://purl.obolibrary.org/obo/UBERON_0009673;accessory XI nerve cranial component; -http://purl.obolibrary.org/obo/UBERON_0009674;accessory XI nerve spinal component;spinal part of the accessory nerve -http://purl.obolibrary.org/obo/UBERON_0009675;chorda tympani branch of facial nerve;chorda tympani -http://purl.obolibrary.org/obo/UBERON_0009675;chorda tympani branch of facial nerve;chorda tympani nerve -http://purl.obolibrary.org/obo/UBERON_0009675;chorda tympani branch of facial nerve;corda tympani nerve -http://purl.obolibrary.org/obo/UBERON_0009675;chorda tympani branch of facial nerve;facial VII nerve chorda tympani branch -http://purl.obolibrary.org/obo/UBERON_0009675;chorda tympani branch of facial nerve;nervus corda tympani -http://purl.obolibrary.org/obo/UBERON_0009675;chorda tympani branch of facial nerve;parasympathetic root of submandibular ganglion -http://purl.obolibrary.org/obo/UBERON_0009675;chorda tympani branch of facial nerve;radix parasympathica ganglii submandibularis -http://purl.obolibrary.org/obo/UBERON_0009675;chorda tympani branch of facial nerve;tympanic cord -http://purl.obolibrary.org/obo/UBERON_0009676;early telencephalic vesicle;early telencephalic vesicle -http://purl.obolibrary.org/obo/UBERON_0009678;tooth row;dental arcade -http://purl.obolibrary.org/obo/UBERON_0009678;tooth row;row of teeth -http://purl.obolibrary.org/obo/UBERON_0009678;tooth row;tooth rows -http://purl.obolibrary.org/obo/UBERON_0009679;set of lower jaw teeth;arcus dentalis inferior -http://purl.obolibrary.org/obo/UBERON_0009679;set of lower jaw teeth;lower dental arcade -http://purl.obolibrary.org/obo/UBERON_0009679;set of lower jaw teeth;lower jaw teeth -http://purl.obolibrary.org/obo/UBERON_0009679;set of lower jaw teeth;set of all lower teeth -http://purl.obolibrary.org/obo/UBERON_0009680;set of upper jaw teeth;arcus dentalis superior -http://purl.obolibrary.org/obo/UBERON_0009680;set of upper jaw teeth;set of all upper teeth -http://purl.obolibrary.org/obo/UBERON_0009680;set of upper jaw teeth;upper dental arcade -http://purl.obolibrary.org/obo/UBERON_0009680;set of upper jaw teeth;upper jaw teeth -http://purl.obolibrary.org/obo/UBERON_0009687;middle cardiac vein;lesser cardiac vein -http://purl.obolibrary.org/obo/UBERON_0009687;middle cardiac vein;posterior interventricular vein -http://purl.obolibrary.org/obo/UBERON_0009688;posterior inferior cerebellar artery;posterior inferior cerebellar artery -http://purl.obolibrary.org/obo/UBERON_0009689;anterior inferior cerebellar artery; -http://purl.obolibrary.org/obo/UBERON_0009692;lumen of pharyngotympanic tube;auditory tube lumen -http://purl.obolibrary.org/obo/UBERON_0009692;lumen of pharyngotympanic tube;lumen of auditory tube -http://purl.obolibrary.org/obo/UBERON_0009692;lumen of pharyngotympanic tube;lumen of eustachian tube -http://purl.obolibrary.org/obo/UBERON_0009692;lumen of pharyngotympanic tube;pharyngotympanic tube lumen -http://purl.obolibrary.org/obo/UBERON_0009695;epithelium of laryngopharynx;epithelium of laryngeal pharynx -http://purl.obolibrary.org/obo/UBERON_0009695;epithelium of laryngopharynx;laryngopharynx epithelium -http://purl.obolibrary.org/obo/UBERON_0009697;epithelium of appendix;appendix epithelium -http://purl.obolibrary.org/obo/UBERON_0009697;epithelium of appendix;epithelium of vermiform appendix -http://purl.obolibrary.org/obo/UBERON_0009708;dorsal pancreas; -http://purl.obolibrary.org/obo/UBERON_0009709;ventral pancreas; -http://purl.obolibrary.org/obo/UBERON_0009712;endocardium of right ventricle;right ventricle endocardium -http://purl.obolibrary.org/obo/UBERON_0009712;endocardium of right ventricle;right ventricular endocardium -http://purl.obolibrary.org/obo/UBERON_0009713;endocardium of left ventricle;left ventricle endocardium -http://purl.obolibrary.org/obo/UBERON_0009713;endocardium of left ventricle;left ventricular endocardium -http://purl.obolibrary.org/obo/UBERON_0009714;intermaxillary process; -http://purl.obolibrary.org/obo/UBERON_0009715;stomodeal lumen;lumen of stomatodaeum -http://purl.obolibrary.org/obo/UBERON_0009715;stomodeal lumen;lumen of stomodeum -http://purl.obolibrary.org/obo/UBERON_0009715;stomodeal lumen;stomatodeal cavity -http://purl.obolibrary.org/obo/UBERON_0009716;cupular organ; -http://purl.obolibrary.org/obo/UBERON_0009717;coronal organ; -http://purl.obolibrary.org/obo/UBERON_0009718;neurohypophyseal duct; -http://purl.obolibrary.org/obo/UBERON_0009719;tunicate siphon;siphon -http://purl.obolibrary.org/obo/UBERON_0009720;oral siphon;anterior buccal siphon -http://purl.obolibrary.org/obo/UBERON_0009720;oral siphon;buccal siphon -http://purl.obolibrary.org/obo/UBERON_0009721;atrial siphon; -http://purl.obolibrary.org/obo/UBERON_0009722;entire pharyngeal arch endoderm; -http://purl.obolibrary.org/obo/UBERON_0009731;sublaminar layers S3 or S4; -http://purl.obolibrary.org/obo/UBERON_0009732;sublaminar layers S1 or S2 or S5; -http://purl.obolibrary.org/obo/UBERON_0009733;sublaminar layers S1 or S2 or S3; -http://purl.obolibrary.org/obo/UBERON_0009734;sublaminar layers S2 or S3 or S4; -http://purl.obolibrary.org/obo/UBERON_0009735;sublaminar layers S1 or S3 or S4; -http://purl.obolibrary.org/obo/UBERON_0009736;sublaminar layers S3 or S4 or S5; -http://purl.obolibrary.org/obo/UBERON_0009737;sublaminar layers S1 or S2 or S3 or S4; -http://purl.obolibrary.org/obo/UBERON_0009738;border of sublaminar layers S1 and S2; -http://purl.obolibrary.org/obo/UBERON_0009739;border of sublaminar layers S3 and S4; -http://purl.obolibrary.org/obo/UBERON_0009740;border between sublaminar layers; -http://purl.obolibrary.org/obo/UBERON_0009742;proamniotic cavity; -http://purl.obolibrary.org/obo/UBERON_0009743;visceral yolk sac cavity; -http://purl.obolibrary.org/obo/UBERON_0009744;lymph node medullary sinus; -http://purl.obolibrary.org/obo/UBERON_0009745;lymph node medullary cord; -http://purl.obolibrary.org/obo/UBERON_0009746;head fold of embryonic disc;head fold -http://purl.obolibrary.org/obo/UBERON_0009747;tail fold of embryonic disc;tail fold -http://purl.obolibrary.org/obo/UBERON_0009748;cephalic neural fold; -http://purl.obolibrary.org/obo/UBERON_0009749;limb mesenchyme; -http://purl.obolibrary.org/obo/UBERON_0009751;cardiac mesenchyme;heart mesenchyme -http://purl.obolibrary.org/obo/UBERON_0009752;pancreas mesenchyme; -http://purl.obolibrary.org/obo/UBERON_0009753;adrenal gland cortex zone;adrenal cortical region -http://purl.obolibrary.org/obo/UBERON_0009754;blubber; -http://purl.obolibrary.org/obo/UBERON_0009755;spermaceti; -http://purl.obolibrary.org/obo/UBERON_0009756;spermaceti organ; -http://purl.obolibrary.org/obo/UBERON_0009757;ambergris; -http://purl.obolibrary.org/obo/UBERON_0009758;abdominal ganglion; -http://purl.obolibrary.org/obo/UBERON_0009767;proximal interphalangeal joint; -http://purl.obolibrary.org/obo/UBERON_0009768;distal interphalangeal joint; -http://purl.obolibrary.org/obo/UBERON_0009769;left common cardinal vein;common cardinal vein left -http://purl.obolibrary.org/obo/UBERON_0009771;left anterior cardinal vein;left precardinal vein -http://purl.obolibrary.org/obo/UBERON_0009771;left anterior cardinal vein;precardinal vein left -http://purl.obolibrary.org/obo/UBERON_0009772;right anterior cardinal vein;precardinal vein right -http://purl.obolibrary.org/obo/UBERON_0009772;right anterior cardinal vein;right precardinal vein -http://purl.obolibrary.org/obo/UBERON_0009773;renal tubule;renal tubule (generic) -http://purl.obolibrary.org/obo/UBERON_0009773;renal tubule;tubule of excretory system -http://purl.obolibrary.org/obo/UBERON_0009775;lateral medullary reticular complex;lateral group of medullary reticular formation -http://purl.obolibrary.org/obo/UBERON_0009775;lateral medullary reticular complex;lateral medullary reticular group -http://purl.obolibrary.org/obo/UBERON_0009775;lateral medullary reticular complex;lateral reticular formation of the medulla oblongata -http://purl.obolibrary.org/obo/UBERON_0009775;lateral medullary reticular complex;nuclei laterales myelencephali -http://purl.obolibrary.org/obo/UBERON_0009776;intermediate reticular formation; -http://purl.obolibrary.org/obo/UBERON_0009777;intermediate reticular nucleus; -http://purl.obolibrary.org/obo/UBERON_0009778;pleural sac; -http://purl.obolibrary.org/obo/UBERON_0009779;cardiac muscle tissue of right auricle;cardiac muscle of right auricular region -http://purl.obolibrary.org/obo/UBERON_0009779;cardiac muscle tissue of right auricle;right atrium auricular region heart muscle -http://purl.obolibrary.org/obo/UBERON_0009779;cardiac muscle tissue of right auricle;right auricular region myocardium -http://purl.obolibrary.org/obo/UBERON_0009780;cardiac muscle tissue of left auricle;cardiac muscle of left auricular region -http://purl.obolibrary.org/obo/UBERON_0009780;cardiac muscle tissue of left auricle;left atrium auricular region heart muscle -http://purl.obolibrary.org/obo/UBERON_0009834;dorsolateral prefrontal cortex; -http://purl.obolibrary.org/obo/UBERON_0009835;anterior cingulate cortex; -http://purl.obolibrary.org/obo/UBERON_0009836;fronto-orbital gyrus;fronto-orbital gyrus -http://purl.obolibrary.org/obo/UBERON_0009836;fronto-orbital gyrus;orbito-frontal gyrus -http://purl.obolibrary.org/obo/UBERON_0009836;fronto-orbital gyrus;orbitofrontal gyrus -http://purl.obolibrary.org/obo/UBERON_0009840;lower rhombic lip;caudal rhombic lip -http://purl.obolibrary.org/obo/UBERON_0009840;lower rhombic lip;lower (caudal) rhombic lip -http://purl.obolibrary.org/obo/UBERON_0009841;upper rhombic lip;cerebellar anlage -http://purl.obolibrary.org/obo/UBERON_0009841;upper rhombic lip;presumptive cerebellum -http://purl.obolibrary.org/obo/UBERON_0009841;upper rhombic lip;rostral rhombic lip -http://purl.obolibrary.org/obo/UBERON_0009841;upper rhombic lip;upper (rostral) rhombic lip -http://purl.obolibrary.org/obo/UBERON_0009842;glandular acinus;acini -http://purl.obolibrary.org/obo/UBERON_0009842;glandular acinus;acinus -http://purl.obolibrary.org/obo/UBERON_0009843;prostate epithelial cord;cord of prostate epithelium -http://purl.obolibrary.org/obo/UBERON_0009843;prostate epithelial cord;epithelial cord of prostate -http://purl.obolibrary.org/obo/UBERON_0009844;urogenital sinus lumen; -http://purl.obolibrary.org/obo/UBERON_0009845;urogenital sinus mesenchyme;UGM -http://purl.obolibrary.org/obo/UBERON_0009846;embryonic cloacal epithelium; -http://purl.obolibrary.org/obo/UBERON_0009847;prostate field; -http://purl.obolibrary.org/obo/UBERON_0009848;zona limitans intrathalamica;ZLI -http://purl.obolibrary.org/obo/UBERON_0009850;nematode larva; -http://purl.obolibrary.org/obo/UBERON_0009851;border of sublaminar layers S4 and S5; -http://purl.obolibrary.org/obo/UBERON_0009852;border of sublaminar layers S2 and S3; -http://purl.obolibrary.org/obo/UBERON_0009853;body of uterus;corpus uteri -http://purl.obolibrary.org/obo/UBERON_0009853;body of uterus;uterine body -http://purl.obolibrary.org/obo/UBERON_0009853;body of uterus;uterine corpus -http://purl.obolibrary.org/obo/UBERON_0009854;digestive tract diverticulum; -http://purl.obolibrary.org/obo/UBERON_0009855;echinoderm gastric caecum; -http://purl.obolibrary.org/obo/UBERON_0009856;sac;diverticulum -http://purl.obolibrary.org/obo/UBERON_0009856;sac;pouch -http://purl.obolibrary.org/obo/UBERON_0009857;cavum septum pellucidum;cave of septum pellucidum -http://purl.obolibrary.org/obo/UBERON_0009857;cavum septum pellucidum;cavum of septum pellucidum -http://purl.obolibrary.org/obo/UBERON_0009857;cavum septum pellucidum;septum pellucidum cave -http://purl.obolibrary.org/obo/UBERON_0009857;cavum septum pellucidum;ventriculus septi pellucidi -http://purl.obolibrary.org/obo/UBERON_0009858;outer fibrous layer of periosteum;capsular layer of periosteum -http://purl.obolibrary.org/obo/UBERON_0009858;outer fibrous layer of periosteum;external layer of periosteum -http://purl.obolibrary.org/obo/UBERON_0009858;outer fibrous layer of periosteum;external periosteum -http://purl.obolibrary.org/obo/UBERON_0009858;outer fibrous layer of periosteum;fibrous layer of periosteum -http://purl.obolibrary.org/obo/UBERON_0009858;outer fibrous layer of periosteum;outer fibrous layer of periosteum -http://purl.obolibrary.org/obo/UBERON_0009859;endosteum; -http://purl.obolibrary.org/obo/UBERON_0009860;ascidian digestive gland; -http://purl.obolibrary.org/obo/UBERON_0009861;ascidian neural complex; -http://purl.obolibrary.org/obo/UBERON_0009862;ascidian cerebral ganglion; -http://purl.obolibrary.org/obo/UBERON_0009863;ascidian ciliated funnel; -http://purl.obolibrary.org/obo/UBERON_0009864;ascidian neural gland; -http://purl.obolibrary.org/obo/UBERON_0009865;Hatschek's pit; -http://purl.obolibrary.org/obo/UBERON_0009866;Hatschek's nephridium; -http://purl.obolibrary.org/obo/UBERON_0009867;Hatschek's diverticulum; -http://purl.obolibrary.org/obo/UBERON_0009868;Hatschek's left diverticulum; -http://purl.obolibrary.org/obo/UBERON_0009869;Hatschek's right diverticulum; -http://purl.obolibrary.org/obo/UBERON_0009870;zone of stomach;gastric zone -http://purl.obolibrary.org/obo/UBERON_0009870;zone of stomach;region of stomach -http://purl.obolibrary.org/obo/UBERON_0009870;zone of stomach;section of stomach -http://purl.obolibrary.org/obo/UBERON_0009871;nephrogenic zone;cortical nephrogenic niche -http://purl.obolibrary.org/obo/UBERON_0009871;nephrogenic zone;cortical nephrogenic zone -http://purl.obolibrary.org/obo/UBERON_0009877;metapodium region;metacarpal or metatarsal part of limb -http://purl.obolibrary.org/obo/UBERON_0009877;metapodium region;metacarpus/metatarsus region -http://purl.obolibrary.org/obo/UBERON_0009877;metapodium region;metapodial segment -http://purl.obolibrary.org/obo/UBERON_0009878;mesopodial skeleton;basipodium skeleton -http://purl.obolibrary.org/obo/UBERON_0009878;mesopodial skeleton;carpal/tarsal skeleton -http://purl.obolibrary.org/obo/UBERON_0009878;mesopodial skeleton;mesopodial skeleton -http://purl.obolibrary.org/obo/UBERON_0009878;mesopodial skeleton;mesopodium skeleton -http://purl.obolibrary.org/obo/UBERON_0009878;mesopodial skeleton;skeletal parts of mesopodium -http://purl.obolibrary.org/obo/UBERON_0009879;tarsal skeleton;hind mesopodial skeleton -http://purl.obolibrary.org/obo/UBERON_0009879;tarsal skeleton;hind mesopodium -http://purl.obolibrary.org/obo/UBERON_0009879;tarsal skeleton;hind mesopodium skeleton -http://purl.obolibrary.org/obo/UBERON_0009879;tarsal skeleton;set of tarsal bones -http://purl.obolibrary.org/obo/UBERON_0009879;tarsal skeleton;skeletal parts of hind mesopodium -http://purl.obolibrary.org/obo/UBERON_0009879;tarsal skeleton;tarsal bones set -http://purl.obolibrary.org/obo/UBERON_0009879;tarsal skeleton;tarsalia -http://purl.obolibrary.org/obo/UBERON_0009880;carpal skeleton;carpal bones -http://purl.obolibrary.org/obo/UBERON_0009880;carpal skeleton;carpal bones set -http://purl.obolibrary.org/obo/UBERON_0009880;carpal skeleton;fore mesopodial skeleton -http://purl.obolibrary.org/obo/UBERON_0009880;carpal skeleton;fore mesopodium skeleton -http://purl.obolibrary.org/obo/UBERON_0009880;carpal skeleton;ossa carpi -http://purl.obolibrary.org/obo/UBERON_0009880;carpal skeleton;skeletal parts of fore mesopodium -http://purl.obolibrary.org/obo/UBERON_0009880;carpal skeleton;skeleton of carpus -http://purl.obolibrary.org/obo/UBERON_0009881;anterior lateral plate mesoderm;ALPM -http://purl.obolibrary.org/obo/UBERON_0009882;anal column;column of Morgagni -http://purl.obolibrary.org/obo/UBERON_0009883;medullary ray;Ferrein's pyramid -http://purl.obolibrary.org/obo/UBERON_0009883;medullary ray;kidney medullary ray -http://purl.obolibrary.org/obo/UBERON_0009883;medullary ray;renal medullary ray -http://purl.obolibrary.org/obo/UBERON_0009885;interlobar artery;arteriae interlobares renis -http://purl.obolibrary.org/obo/UBERON_0009885;interlobar artery;interlobar artery of kidney -http://purl.obolibrary.org/obo/UBERON_0009885;interlobar artery;kidney interlobar artery -http://purl.obolibrary.org/obo/UBERON_0009885;interlobar artery;renal interlobar artery -http://purl.obolibrary.org/obo/UBERON_0009887;interlobar vein;interlobar vein of kidney -http://purl.obolibrary.org/obo/UBERON_0009887;interlobar vein;venae interlobares renis -http://purl.obolibrary.org/obo/UBERON_0009888;Koller's sickle;Kohler's sickle -http://purl.obolibrary.org/obo/UBERON_0009889;secondary heart field;anterior heart field -http://purl.obolibrary.org/obo/UBERON_0009889;secondary heart field;anterior/second heart field -http://purl.obolibrary.org/obo/UBERON_0009889;secondary heart field;second heart field -http://purl.obolibrary.org/obo/UBERON_0009890;anterior intestinal portal;fovea cardiaca -http://purl.obolibrary.org/obo/UBERON_0009891;facial mesenchyme;face mesenchyme -http://purl.obolibrary.org/obo/UBERON_0009891;facial mesenchyme;mesenchyme of face -http://purl.obolibrary.org/obo/UBERON_0009892;ascidian anterior sensory vesicle; -http://purl.obolibrary.org/obo/UBERON_0009893;ascidian ocellus; -http://purl.obolibrary.org/obo/UBERON_0009894;siphon primordium; -http://purl.obolibrary.org/obo/UBERON_0009895;atrial siphon primordia; -http://purl.obolibrary.org/obo/UBERON_0009896;oral siphon primordia; -http://purl.obolibrary.org/obo/UBERON_0009897;right auditory cortex; -http://purl.obolibrary.org/obo/UBERON_0009898;left auditory cortex; -http://purl.obolibrary.org/obo/UBERON_0009899;pole of cerebral hemisphere; -http://purl.obolibrary.org/obo/UBERON_0009906;root of optic nerve;optic nerve root -http://purl.obolibrary.org/obo/UBERON_0009906;root of optic nerve;optic tract root -http://purl.obolibrary.org/obo/UBERON_0009906;root of optic nerve;root of optic tract -http://purl.obolibrary.org/obo/UBERON_0009907;sensory root of trigeminal nerve;radix sensoria (nervus trigeminus [v]) -http://purl.obolibrary.org/obo/UBERON_0009907;sensory root of trigeminal nerve;radix sensoria nervus trigemini -http://purl.obolibrary.org/obo/UBERON_0009908;caudal root of abducens nerve;radix caudalis nervi abducentis -http://purl.obolibrary.org/obo/UBERON_0009909;rostral root of abducens nerve; -http://purl.obolibrary.org/obo/UBERON_0009910;posterior lateral plate mesoderm;PLPM -http://purl.obolibrary.org/obo/UBERON_0009911;lobule;lobulus -http://purl.obolibrary.org/obo/UBERON_0009912;anatomical lobe;lobus -http://purl.obolibrary.org/obo/UBERON_0009913;renal lobe;kidney lobe -http://purl.obolibrary.org/obo/UBERON_0009913;renal lobe;lobi renalis -http://purl.obolibrary.org/obo/UBERON_0009913;renal lobe;lobus renalis -http://purl.obolibrary.org/obo/UBERON_0009914;renal lobule;kidney lobule -http://purl.obolibrary.org/obo/UBERON_0009914;renal lobule;lobulus renalis -http://purl.obolibrary.org/obo/UBERON_0009916;wall of ureter;ureteral wall -http://purl.obolibrary.org/obo/UBERON_0009917;kidney corticomedullary boundary; -http://purl.obolibrary.org/obo/UBERON_0009918;retrotrapezoid nucleus; -http://purl.obolibrary.org/obo/UBERON_0009919;ureter smooth muscle;ureteral smooth muscle -http://purl.obolibrary.org/obo/UBERON_0009919;ureter smooth muscle;ureteral smooth muscle layer -http://purl.obolibrary.org/obo/UBERON_0009920;optic neural crest; -http://purl.obolibrary.org/obo/UBERON_0009921;hypophyseal tube; -http://purl.obolibrary.org/obo/UBERON_0009948;clavicular air sac; -http://purl.obolibrary.org/obo/UBERON_0009949;humeral diverticulum of clavicular air sac; -http://purl.obolibrary.org/obo/UBERON_0009950;olfactory bulb plexiform layer;plexiform layer -http://purl.obolibrary.org/obo/UBERON_0009951;main olfactory bulb; -http://purl.obolibrary.org/obo/UBERON_0009952;dentate gyrus subgranular zone;subgranular zone -http://purl.obolibrary.org/obo/UBERON_0009952;dentate gyrus subgranular zone;subgranular zone of dentate gyrus -http://purl.obolibrary.org/obo/UBERON_0009953;post-embryonic organism;postnatal organism -http://purl.obolibrary.org/obo/UBERON_0009954;vomeronasal system; -http://purl.obolibrary.org/obo/UBERON_0009955;neurogenic placode;neurogenic placodes -http://purl.obolibrary.org/obo/UBERON_0009956;corpuscle of de Quatrefage;organ of de Quatrefage -http://purl.obolibrary.org/obo/UBERON_0009957;ciliated pit; -http://purl.obolibrary.org/obo/UBERON_0009958;bladder lumen;bladder cavity -http://purl.obolibrary.org/obo/UBERON_0009958;bladder lumen;cavity of urinary bladder -http://purl.obolibrary.org/obo/UBERON_0009958;bladder lumen;lumen of urinary bladder -http://purl.obolibrary.org/obo/UBERON_0009958;bladder lumen;urinary bladder lumen -http://purl.obolibrary.org/obo/UBERON_0009959;lumen of oropharynx;oropharyngeal cavity -http://purl.obolibrary.org/obo/UBERON_0009959;lumen of oropharynx;oropharynx lumen -http://purl.obolibrary.org/obo/UBERON_0009960;esophagus smooth muscle circular layer;circular muscle layer of esophagus -http://purl.obolibrary.org/obo/UBERON_0009960;esophagus smooth muscle circular layer;esophagus smooth muscle circular layer -http://purl.obolibrary.org/obo/UBERON_0009960;esophagus smooth muscle circular layer;inner circular muscle layer of esophagus -http://purl.obolibrary.org/obo/UBERON_0009961;esophagus smooth muscle longitudinal layer;esophagus smooth muscle longitudinal layer -http://purl.obolibrary.org/obo/UBERON_0009961;esophagus smooth muscle longitudinal layer;longitudinal muscle layer of esophagus -http://purl.obolibrary.org/obo/UBERON_0009961;esophagus smooth muscle longitudinal layer;outer longitudinal muscle layer of esophagus -http://purl.obolibrary.org/obo/UBERON_0009962;excretory gland; -http://purl.obolibrary.org/obo/UBERON_0009963;antennal gland;green gland -http://purl.obolibrary.org/obo/UBERON_0009964;crustacean maxillary gland; -http://purl.obolibrary.org/obo/UBERON_0009965;coxal gland; -http://purl.obolibrary.org/obo/UBERON_0009966;internodal tract;interatrial conduction tract -http://purl.obolibrary.org/obo/UBERON_0009966;internodal tract;internodal conduction tract -http://purl.obolibrary.org/obo/UBERON_0009966;internodal tract;internodal fasciculus -http://purl.obolibrary.org/obo/UBERON_0009966;internodal tract;internodal tract muscle tissue -http://purl.obolibrary.org/obo/UBERON_0009967;spleen venous sinus;sinus lienalis -http://purl.obolibrary.org/obo/UBERON_0009967;spleen venous sinus;sinus splenicus -http://purl.obolibrary.org/obo/UBERON_0009967;spleen venous sinus;splenic sinus -http://purl.obolibrary.org/obo/UBERON_0009967;spleen venous sinus;venous sinus of red pulp of spleen -http://purl.obolibrary.org/obo/UBERON_0009968;primitive superior sagittal sinus; -http://purl.obolibrary.org/obo/UBERON_0009969;statoacoustic epithelium;stato-acoustic epithelium -http://purl.obolibrary.org/obo/UBERON_0009970;epithelium of pancreatic duct;pancreatic duct epithelium -http://purl.obolibrary.org/obo/UBERON_0009970;epithelium of pancreatic duct;pancreatic ductal epithelium -http://purl.obolibrary.org/obo/UBERON_0009971;principal gastric gland;acid gland -http://purl.obolibrary.org/obo/UBERON_0009971;principal gastric gland;glandula gastrica propria -http://purl.obolibrary.org/obo/UBERON_0009971;principal gastric gland;main gastric gland -http://purl.obolibrary.org/obo/UBERON_0009971;principal gastric gland;oxyntic gland -http://purl.obolibrary.org/obo/UBERON_0009971;principal gastric gland;principal gland of fundus of stomach -http://purl.obolibrary.org/obo/UBERON_0009972;ureteropelvic junction;pelviureteric junction -http://purl.obolibrary.org/obo/UBERON_0009972;ureteropelvic junction;pelvoureteric junction -http://purl.obolibrary.org/obo/UBERON_0009973;ureterovesical junction;vesico-ureteral junction -http://purl.obolibrary.org/obo/UBERON_0009973;ureterovesical junction;vesico-ureteric junction -http://purl.obolibrary.org/obo/UBERON_0009973;ureterovesical junction;vesicoureteric junction -http://purl.obolibrary.org/obo/UBERON_0009974;lumen of Rathke's pouch; -http://purl.obolibrary.org/obo/UBERON_0009975;remnant of lumen of Rathke's pouch; -http://purl.obolibrary.org/obo/UBERON_0009976;hypothalamo-hypophyseal system;hypophyseal portal system -http://purl.obolibrary.org/obo/UBERON_0009976;hypothalamo-hypophyseal system;hypothalamic hypophyseal portal system -http://purl.obolibrary.org/obo/UBERON_0009976;hypothalamo-hypophyseal system;hypothalamohypophyseal portal system -http://purl.obolibrary.org/obo/UBERON_0009976;hypothalamo-hypophyseal system;venae portales hypophysiales -http://purl.obolibrary.org/obo/UBERON_0009977;natal tooth;natal teeth -http://purl.obolibrary.org/obo/UBERON_0009978;epicondyle; -http://purl.obolibrary.org/obo/UBERON_0009979;condyle;condylus -http://purl.obolibrary.org/obo/UBERON_0009980;condyle of femur;condylus femoralis -http://purl.obolibrary.org/obo/UBERON_0009980;condyle of femur;condylus femoris -http://purl.obolibrary.org/obo/UBERON_0009980;condyle of femur;femoral condyle -http://purl.obolibrary.org/obo/UBERON_0009984;medial condyle of femur;condylus medialis femoris -http://purl.obolibrary.org/obo/UBERON_0009985;lateral condyle of femur;condylus lateralis femoris -http://purl.obolibrary.org/obo/UBERON_0009986;lateral epicondyle of femur;epicondylus lateralis (femur) -http://purl.obolibrary.org/obo/UBERON_0009986;lateral epicondyle of femur;epicondylus lateralis femoris -http://purl.obolibrary.org/obo/UBERON_0009987;medial epicondyle of femur;epicondylus medialis (femur) -http://purl.obolibrary.org/obo/UBERON_0009988;condyle of humerus;condylus humeri -http://purl.obolibrary.org/obo/UBERON_0009988;condyle of humerus;humeral condyle -http://purl.obolibrary.org/obo/UBERON_0009989;condyle of tibia;tibial condyle -http://purl.obolibrary.org/obo/UBERON_0009990;medial condyle of tibia;condylus medialis (tibia) -http://purl.obolibrary.org/obo/UBERON_0009990;medial condyle of tibia;condylus medialis tibiae -http://purl.obolibrary.org/obo/UBERON_0009991;lateral condyle of tibia;condylus lateralis (tibia) -http://purl.obolibrary.org/obo/UBERON_0009991;lateral condyle of tibia;condylus lateralis tibiae -http://purl.obolibrary.org/obo/UBERON_0009992;cranial sensory ganglion;cranial nerve sensory ganglion -http://purl.obolibrary.org/obo/UBERON_0009992;cranial sensory ganglion;ganglion sensorium cranialium -http://purl.obolibrary.org/obo/UBERON_0009992;cranial sensory ganglion;ganglion sensorium nervi cranialis -http://purl.obolibrary.org/obo/UBERON_0009992;cranial sensory ganglion;sensory ganglion of cranial nerve -http://purl.obolibrary.org/obo/UBERON_0009993;primary chorionic villus; -http://purl.obolibrary.org/obo/UBERON_0009994;secondary chorionic villus; -http://purl.obolibrary.org/obo/UBERON_0009995;tertiary chorionic villus; -http://purl.obolibrary.org/obo/UBERON_0010000;multicellular anatomical structure;multicellular structure -http://purl.obolibrary.org/obo/UBERON_0010001;cell cluster organ; -http://purl.obolibrary.org/obo/UBERON_0010002;pulmonary neuroendocrine body;NEB -http://purl.obolibrary.org/obo/UBERON_0010002;pulmonary neuroendocrine body;pulmonary neuroepithelial body -http://purl.obolibrary.org/obo/UBERON_0010005;placental labyrinth villous;villous of placental labyrinth -http://purl.obolibrary.org/obo/UBERON_0010006;placenta intervillous maternal lacunae; -http://purl.obolibrary.org/obo/UBERON_0010007;placenta fetal blood space; -http://purl.obolibrary.org/obo/UBERON_0010008;placental cotyledon;placenta cotyledon -http://purl.obolibrary.org/obo/UBERON_0010009;aggregate regional part of brain;set of nuclei of neuraxis -http://purl.obolibrary.org/obo/UBERON_0010010;basal nucleus of telencephalon;Meynert's nucleus -http://purl.obolibrary.org/obo/UBERON_0010010;basal nucleus of telencephalon;basal magnocellular nucleus (substantia innominata) -http://purl.obolibrary.org/obo/UBERON_0010010;basal nucleus of telencephalon;basal nuclei of Meynert -http://purl.obolibrary.org/obo/UBERON_0010010;basal nucleus of telencephalon;basal nucleus -http://purl.obolibrary.org/obo/UBERON_0010010;basal nucleus of telencephalon;basal nucleus of Meynert -http://purl.obolibrary.org/obo/UBERON_0010010;basal nucleus of telencephalon;basal substance of telencephalon -http://purl.obolibrary.org/obo/UBERON_0010010;basal nucleus of telencephalon;ganglion of Meynert -http://purl.obolibrary.org/obo/UBERON_0010010;basal nucleus of telencephalon;nucleus basalis -http://purl.obolibrary.org/obo/UBERON_0010010;basal nucleus of telencephalon;nucleus basalis of Meynert -http://purl.obolibrary.org/obo/UBERON_0010010;basal nucleus of telencephalon;substantia basalis telencephali -http://purl.obolibrary.org/obo/UBERON_0010011;collection of basal ganglia;basal ganglia -http://purl.obolibrary.org/obo/UBERON_0010011;collection of basal ganglia;basal ganglia set -http://purl.obolibrary.org/obo/UBERON_0010011;collection of basal ganglia;basal nuclei -http://purl.obolibrary.org/obo/UBERON_0010011;collection of basal ganglia;basal nuclei (basal ganglia) -http://purl.obolibrary.org/obo/UBERON_0010011;collection of basal ganglia;cerebral nuclei -http://purl.obolibrary.org/obo/UBERON_0010011;collection of basal ganglia;set of basal ganglia -http://purl.obolibrary.org/obo/UBERON_0010011;collection of basal ganglia;set of basal nuclei -http://purl.obolibrary.org/obo/UBERON_0010011;collection of basal ganglia;subcortical nuclei -http://purl.obolibrary.org/obo/UBERON_0010012;upper beak; -http://purl.obolibrary.org/obo/UBERON_0010013;lower beak; -http://purl.obolibrary.org/obo/UBERON_0010014;epigonal organ;subgonal organ -http://purl.obolibrary.org/obo/UBERON_0010015;ventral patch of Leydig's organ; -http://purl.obolibrary.org/obo/UBERON_0010016;spiral valve of intestine;intestinal spiral valve -http://purl.obolibrary.org/obo/UBERON_0010017;spiral valve of cystic duct;Heister's valve -http://purl.obolibrary.org/obo/UBERON_0010017;spiral valve of cystic duct;plica spiralis -http://purl.obolibrary.org/obo/UBERON_0010017;spiral valve of cystic duct;plica spiralis (ductus cysticus) -http://purl.obolibrary.org/obo/UBERON_0010017;spiral valve of cystic duct;spiral fold of cystic duct -http://purl.obolibrary.org/obo/UBERON_0010017;spiral valve of cystic duct;valve of Heister -http://purl.obolibrary.org/obo/UBERON_0010018;spiral valve of conus arteriosus; -http://purl.obolibrary.org/obo/UBERON_0010019;spiracle (sensu Vertebrata);vertebrate spiracle -http://purl.obolibrary.org/obo/UBERON_0010020;tubotympanic recess epithelium; -http://purl.obolibrary.org/obo/UBERON_0010021;dorsal part of pharyngeal pouch 1;dorsal 1st branchial pouch -http://purl.obolibrary.org/obo/UBERON_0010021;dorsal part of pharyngeal pouch 1;dorsal pharyngeal pouch 1 -http://purl.obolibrary.org/obo/UBERON_0010022;ventral part of pharyngeal pouch 1;ventral 1st branchial pouch -http://purl.obolibrary.org/obo/UBERON_0010022;ventral part of pharyngeal pouch 1;ventral pharyngeal pouch 1 -http://purl.obolibrary.org/obo/UBERON_0010023;dorsal part of pharyngeal pouch 2;dorsal 2nd branchial pouch -http://purl.obolibrary.org/obo/UBERON_0010023;dorsal part of pharyngeal pouch 2;dorsal pharyngeal pouch 2 -http://purl.obolibrary.org/obo/UBERON_0010024;ventral part of pharyngeal pouch 2;ventral 2nd branchial pouch -http://purl.obolibrary.org/obo/UBERON_0010024;ventral part of pharyngeal pouch 2;ventral pharyngeal pouch 2 -http://purl.obolibrary.org/obo/UBERON_0010025;dorsal part of pharyngeal pouch 3;dorsal 3rd arch pharyngeal pouch endoderm -http://purl.obolibrary.org/obo/UBERON_0010025;dorsal part of pharyngeal pouch 3;dorsal 3rd branchial pouch -http://purl.obolibrary.org/obo/UBERON_0010025;dorsal part of pharyngeal pouch 3;dorsal pharyngeal pouch 3 -http://purl.obolibrary.org/obo/UBERON_0010025;dorsal part of pharyngeal pouch 3;dorsal wing of pharyngeal pouch 3 -http://purl.obolibrary.org/obo/UBERON_0010026;ventral part of pharyngeal pouch 3;ventral 3rd arch pharyngeal pouch endoderm -http://purl.obolibrary.org/obo/UBERON_0010026;ventral part of pharyngeal pouch 3;ventral 3rd branchial pouch -http://purl.obolibrary.org/obo/UBERON_0010026;ventral part of pharyngeal pouch 3;ventral pharyngeal pouch 3 -http://purl.obolibrary.org/obo/UBERON_0010026;ventral part of pharyngeal pouch 3;ventral wing of pharyngeal pouch 3 -http://purl.obolibrary.org/obo/UBERON_0010027;dorsal part of pharyngeal pouch 4;dorsal 4th branchial pouch -http://purl.obolibrary.org/obo/UBERON_0010027;dorsal part of pharyngeal pouch 4;dorsal pharyngeal pouch 4 -http://purl.obolibrary.org/obo/UBERON_0010028;ventral part of pharyngeal pouch 4;ventral 4th branchial pouch -http://purl.obolibrary.org/obo/UBERON_0010028;ventral part of pharyngeal pouch 4;ventral pharyngeal pouch 4 -http://purl.obolibrary.org/obo/UBERON_0010029;dorsal part of pharyngeal pouch 5;dorsal 5th branchial pouch -http://purl.obolibrary.org/obo/UBERON_0010029;dorsal part of pharyngeal pouch 5;dorsal pharyngeal pouch 5 -http://purl.obolibrary.org/obo/UBERON_0010030;ventral part of pharyngeal pouch 5;ventral 5th branchial pouch -http://purl.obolibrary.org/obo/UBERON_0010030;ventral part of pharyngeal pouch 5;ventral pharyngeal pouch 5 -http://purl.obolibrary.org/obo/UBERON_0010031;6th arch mesenchyme;6th pharyngeal arch mesenchyme -http://purl.obolibrary.org/obo/UBERON_0010032;anterior part of tongue; -http://purl.obolibrary.org/obo/UBERON_0010033;posterior part of tongue;base of tongue -http://purl.obolibrary.org/obo/UBERON_0010033;posterior part of tongue;pars posterior (dorsum linguae) -http://purl.obolibrary.org/obo/UBERON_0010033;posterior part of tongue;pars posterior dorsi linguae -http://purl.obolibrary.org/obo/UBERON_0010033;posterior part of tongue;pars posterior linguae -http://purl.obolibrary.org/obo/UBERON_0010033;posterior part of tongue;pars postsulcalis (dorsum linguae) -http://purl.obolibrary.org/obo/UBERON_0010033;posterior part of tongue;pharyngeal part of tongue -http://purl.obolibrary.org/obo/UBERON_0010033;posterior part of tongue;pharyngeal portion of dorsum of tongue -http://purl.obolibrary.org/obo/UBERON_0010033;posterior part of tongue;posterior part of dorsum of tongue -http://purl.obolibrary.org/obo/UBERON_0010033;posterior part of tongue;postsulcal part of dorsum of tongue -http://purl.obolibrary.org/obo/UBERON_0010034;copula linguae;copula -http://purl.obolibrary.org/obo/UBERON_0010036;anterior tegmental nucleus; -http://purl.obolibrary.org/obo/UBERON_0010038;fundic gastric gland;fundal gland -http://purl.obolibrary.org/obo/UBERON_0010038;fundic gastric gland;fundus gland -http://purl.obolibrary.org/obo/UBERON_0010038;fundic gastric gland;gastric fundal gland -http://purl.obolibrary.org/obo/UBERON_0010038;fundic gastric gland;gastric fundus gland -http://purl.obolibrary.org/obo/UBERON_0010038;fundic gastric gland;gastric gland of fundus of stomach -http://purl.obolibrary.org/obo/UBERON_0010039;food storage organ; -http://purl.obolibrary.org/obo/UBERON_0010040;stomach non-glandular epithelium;stomach aglandular epithelium -http://purl.obolibrary.org/obo/UBERON_0010041;median ovary; -http://purl.obolibrary.org/obo/UBERON_0010042;1st arch mesenchyme;mesenchyme of 1st arch -http://purl.obolibrary.org/obo/UBERON_0010045;1st arch maxillary mesenchyme;mesenchyme of maxillary component -http://purl.obolibrary.org/obo/UBERON_0010046;entire pharyngeal arch associated mesenchyme;associated mesenchyme of pharyngeal region -http://purl.obolibrary.org/obo/UBERON_0010046;entire pharyngeal arch associated mesenchyme;entire branchial arch associated mesenchyme -http://purl.obolibrary.org/obo/UBERON_0010046;entire pharyngeal arch associated mesenchyme;pharyngeal arch associated mesenchyme -http://purl.obolibrary.org/obo/UBERON_0010047;oral gland;buccal gland -http://purl.obolibrary.org/obo/UBERON_0010047;oral gland;gland of oral opening -http://purl.obolibrary.org/obo/UBERON_0010047;oral gland;gland of oral region -http://purl.obolibrary.org/obo/UBERON_0010047;oral gland;mouth gland -http://purl.obolibrary.org/obo/UBERON_0010047;oral gland;oral cavity gland -http://purl.obolibrary.org/obo/UBERON_0010047;oral gland;oral region gland -http://purl.obolibrary.org/obo/UBERON_0010048;Duvernoy's gland; -http://purl.obolibrary.org/obo/UBERON_0010049;supralabial gland; -http://purl.obolibrary.org/obo/UBERON_0010050;infralabial gland; -http://purl.obolibrary.org/obo/UBERON_0010051;dorsal patch of Leydig's organ; -http://purl.obolibrary.org/obo/UBERON_0010052;mucosa of dorsum of tongue;mucosa of dorsal surface of tongue -http://purl.obolibrary.org/obo/UBERON_0010053;echolocation organ; -http://purl.obolibrary.org/obo/UBERON_0010054;malleus cartilage element; -http://purl.obolibrary.org/obo/UBERON_0010055;stapes cartilage element; -http://purl.obolibrary.org/obo/UBERON_0010056;future tongue; -http://purl.obolibrary.org/obo/UBERON_0010057;hypopharyngeal eminence;hypobranchial eminence -http://purl.obolibrary.org/obo/UBERON_0010059;hypoglossal cord; -http://purl.obolibrary.org/obo/UBERON_0010060;pharyngeal opening of pharyngotympanic tube;ostium pharyngeum tubae auditivae -http://purl.obolibrary.org/obo/UBERON_0010060;pharyngeal opening of pharyngotympanic tube;ostium pharyngeum tubae auditoriae -http://purl.obolibrary.org/obo/UBERON_0010060;pharyngeal opening of pharyngotympanic tube;pharyngeal opening of auditory tube -http://purl.obolibrary.org/obo/UBERON_0010060;pharyngeal opening of pharyngotympanic tube;pharyngeal opening of eustachian tube -http://purl.obolibrary.org/obo/UBERON_0010060;pharyngeal opening of pharyngotympanic tube;pharyngeal orifice of auditory tube -http://purl.obolibrary.org/obo/UBERON_0010060;pharyngeal opening of pharyngotympanic tube;pharyngeal orifice of eustachian tube -http://purl.obolibrary.org/obo/UBERON_0010060;pharyngeal opening of pharyngotympanic tube;pharyngeal orifice of pharyngotympanic tube -http://purl.obolibrary.org/obo/UBERON_0010060;pharyngeal opening of pharyngotympanic tube;pharyngeal ostium of auditory tube -http://purl.obolibrary.org/obo/UBERON_0010060;pharyngeal opening of pharyngotympanic tube;pharyngeal ostium of eustachian tube -http://purl.obolibrary.org/obo/UBERON_0010060;pharyngeal opening of pharyngotympanic tube;pharyngeal ostium of pharyngotympanic tube -http://purl.obolibrary.org/obo/UBERON_0010060;pharyngeal opening of pharyngotympanic tube;pharyngeal tubal ostium -http://purl.obolibrary.org/obo/UBERON_0010061;lumen of nasopharynx;nasopharyngeal luman -http://purl.obolibrary.org/obo/UBERON_0010061;lumen of nasopharynx;nasopharynx cavity -http://purl.obolibrary.org/obo/UBERON_0010061;lumen of nasopharynx;nasopharynx lumen -http://purl.obolibrary.org/obo/UBERON_0010062;pharyngotympanic tube epithelium;auditory tube epithelium -http://purl.obolibrary.org/obo/UBERON_0010062;pharyngotympanic tube epithelium;eustachian tube epithelium -http://purl.obolibrary.org/obo/UBERON_0010063;tympanic cavity epithelium; -http://purl.obolibrary.org/obo/UBERON_0010064;open anatomical space; -http://purl.obolibrary.org/obo/UBERON_0010065;auditory meatus epithelium; -http://purl.obolibrary.org/obo/UBERON_0010066;tympanic plate;pars tympanica (os temporale) -http://purl.obolibrary.org/obo/UBERON_0010066;tympanic plate;tympanic part of temporal bone -http://purl.obolibrary.org/obo/UBERON_0010069;outer epithelial layer of tympanic membrane;cuticular layer of tympanic membrane -http://purl.obolibrary.org/obo/UBERON_0010069;outer epithelial layer of tympanic membrane;cuticular stratum of tympanic membrane -http://purl.obolibrary.org/obo/UBERON_0010069;outer epithelial layer of tympanic membrane;outer cuticular layer of tympanic membrane -http://purl.obolibrary.org/obo/UBERON_0010069;outer epithelial layer of tympanic membrane;outer layer of tympanic membrane -http://purl.obolibrary.org/obo/UBERON_0010069;outer epithelial layer of tympanic membrane;tympanic membrane external acoustic meatus epithelial component -http://purl.obolibrary.org/obo/UBERON_0010070;intermediate layer of tympanic membrane;connective tissue layer of tympanic membrane -http://purl.obolibrary.org/obo/UBERON_0010070;intermediate layer of tympanic membrane;fibrous layer of tympanic membrane -http://purl.obolibrary.org/obo/UBERON_0010070;intermediate layer of tympanic membrane;fibrous stratum of tympanic membrane -http://purl.obolibrary.org/obo/UBERON_0010070;intermediate layer of tympanic membrane;intermediate fibrous layer of tympanic membrane -http://purl.obolibrary.org/obo/UBERON_0010070;intermediate layer of tympanic membrane;tympanic endothelium -http://purl.obolibrary.org/obo/UBERON_0010071;layer of tympanic membrane;tympanic membrane layer -http://purl.obolibrary.org/obo/UBERON_0010074;chromaffin system;argentaffin system -http://purl.obolibrary.org/obo/UBERON_0010074;chromaffin system;chromaffin tissue -http://purl.obolibrary.org/obo/UBERON_0010075;sacral neural crest; -http://purl.obolibrary.org/obo/UBERON_0010076;network of trabecular spaces in bone tissue;trabecular network of bone tissue -http://purl.obolibrary.org/obo/UBERON_0010077;cuboidal epithelium; -http://purl.obolibrary.org/obo/UBERON_0010078;optic choroid vascular plexus;CVP -http://purl.obolibrary.org/obo/UBERON_0010081;future common hepatic duct; -http://purl.obolibrary.org/obo/UBERON_0010083;future dermis; -http://purl.obolibrary.org/obo/UBERON_0010084;future diaphragm; -http://purl.obolibrary.org/obo/UBERON_0010090;future falx cerebri; -http://purl.obolibrary.org/obo/UBERON_0010091;future hindbrain meninx;future hindbrain meninges -http://purl.obolibrary.org/obo/UBERON_0010092;future metencephalon; -http://purl.obolibrary.org/obo/UBERON_0010096;future myelencephalon; -http://purl.obolibrary.org/obo/UBERON_0010123;future facial nucleus; -http://purl.obolibrary.org/obo/UBERON_0010124;future inferior salivatory nucleus; -http://purl.obolibrary.org/obo/UBERON_0010125;future superior salivatory nucleus; -http://purl.obolibrary.org/obo/UBERON_0010126;future nucleus ambiguus; -http://purl.obolibrary.org/obo/UBERON_0010127;future dorsal motor nucleus of vagus; -http://purl.obolibrary.org/obo/UBERON_0010128;future pterygopalatine ganglion;future Meckel ganglion -http://purl.obolibrary.org/obo/UBERON_0010128;future pterygopalatine ganglion;future Meckel's ganglion -http://purl.obolibrary.org/obo/UBERON_0010128;future pterygopalatine ganglion;future nasal ganglion -http://purl.obolibrary.org/obo/UBERON_0010128;future pterygopalatine ganglion;future palatine ganglion -http://purl.obolibrary.org/obo/UBERON_0010128;future pterygopalatine ganglion;future pterygopalatine ganglia -http://purl.obolibrary.org/obo/UBERON_0010128;future pterygopalatine ganglion;future sphenopalatine ganglion -http://purl.obolibrary.org/obo/UBERON_0010128;future pterygopalatine ganglion;future sphenopalatine parasympathetic ganglion -http://purl.obolibrary.org/obo/UBERON_0010129;femur cartilage element;femoral cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010130;embryonic autopod plate;autopod plate -http://purl.obolibrary.org/obo/UBERON_0010130;embryonic autopod plate;limb plate -http://purl.obolibrary.org/obo/UBERON_0010131;conducting tissue of heart;specialized conducting tissue of heart -http://purl.obolibrary.org/obo/UBERON_0010131;conducting tissue of heart;specialized muscle tissue of heart -http://purl.obolibrary.org/obo/UBERON_0010132;gastroduodenal artery; -http://purl.obolibrary.org/obo/UBERON_0010133;neuroendocrine gland;neuroendocrine system gland -http://purl.obolibrary.org/obo/UBERON_0010134;secretory circumventricular organ; -http://purl.obolibrary.org/obo/UBERON_0010135;sensory circumventricular organ;humerosensory circumventricular organ -http://purl.obolibrary.org/obo/UBERON_0010135;sensory circumventricular organ;humerosensory system -http://purl.obolibrary.org/obo/UBERON_0010135;sensory circumventricular organ;humerosensory system organ -http://purl.obolibrary.org/obo/UBERON_0010135;sensory circumventricular organ;sensitive circumventricular organs -http://purl.obolibrary.org/obo/UBERON_0010135;sensory circumventricular organ;sensitive organs -http://purl.obolibrary.org/obo/UBERON_0010135;sensory circumventricular organ;sensory CVOs -http://purl.obolibrary.org/obo/UBERON_0010135;sensory circumventricular organ;sensory circumventricular organs -http://purl.obolibrary.org/obo/UBERON_0010136;epithelial sheet; -http://purl.obolibrary.org/obo/UBERON_0010137;polarized epithelium; -http://purl.obolibrary.org/obo/UBERON_0010141;primitive sex cord of indifferent gonad;indifferent sex cord -http://purl.obolibrary.org/obo/UBERON_0010141;primitive sex cord of indifferent gonad;primitive sex cords -http://purl.obolibrary.org/obo/UBERON_0010143;seminal vesicle fluid;secretion of seminal vesicle -http://purl.obolibrary.org/obo/UBERON_0010143;seminal vesicle fluid;seminal vesicle secretion -http://purl.obolibrary.org/obo/UBERON_0010145;paraurethral gland;Skene gland -http://purl.obolibrary.org/obo/UBERON_0010145;paraurethral gland;Skene's gland -http://purl.obolibrary.org/obo/UBERON_0010145;paraurethral gland;female prostate -http://purl.obolibrary.org/obo/UBERON_0010145;paraurethral gland;para-urethral gland -http://purl.obolibrary.org/obo/UBERON_0010145;paraurethral gland;periurethral gland -http://purl.obolibrary.org/obo/UBERON_0010145;paraurethral gland;urethral gland of clitoral urethra -http://purl.obolibrary.org/obo/UBERON_0010146;paraurethral duct;Skene's duct -http://purl.obolibrary.org/obo/UBERON_0010146;paraurethral duct;duct of Skene's gland -http://purl.obolibrary.org/obo/UBERON_0010146;paraurethral duct;duct of paraurethral gland -http://purl.obolibrary.org/obo/UBERON_0010146;paraurethral duct;female prostate duct -http://purl.obolibrary.org/obo/UBERON_0010146;paraurethral duct;paraurethral gland duct -http://purl.obolibrary.org/obo/UBERON_0010146;paraurethral duct;periurethral duct -http://purl.obolibrary.org/obo/UBERON_0010147;male accessory sex gland;male accessory gland -http://purl.obolibrary.org/obo/UBERON_0010147;male accessory sex gland;male accessory reproductive gland -http://purl.obolibrary.org/obo/UBERON_0010148;mating plug;copulation plug -http://purl.obolibrary.org/obo/UBERON_0010148;mating plug;copulatory plug -http://purl.obolibrary.org/obo/UBERON_0010148;mating plug;sperm plug -http://purl.obolibrary.org/obo/UBERON_0010148;mating plug;vaginal plug -http://purl.obolibrary.org/obo/UBERON_0010150;duct of major vestibular gland;duct of greater vestibular gland -http://purl.obolibrary.org/obo/UBERON_0010150;duct of major vestibular gland;greater vestibular gland duct -http://purl.obolibrary.org/obo/UBERON_0010151;duct of bulbourethral gland;bulbourethral gland duct -http://purl.obolibrary.org/obo/UBERON_0010151;duct of bulbourethral gland;duct of bulbo-urethral gland -http://purl.obolibrary.org/obo/UBERON_0010151;duct of bulbourethral gland;ductus glandulae bulbourethralis -http://purl.obolibrary.org/obo/UBERON_0010152;skin mucus; -http://purl.obolibrary.org/obo/UBERON_0010153;rumen papilla;rumen papillae -http://purl.obolibrary.org/obo/UBERON_0010154;inner lining mucosa of the abomasum; -http://purl.obolibrary.org/obo/UBERON_0010155;parietomastoid suture;parieto-mastoid suture of skull -http://purl.obolibrary.org/obo/UBERON_0010155;parietomastoid suture;parietomastoid suture of skull -http://purl.obolibrary.org/obo/UBERON_0010156;sphenofrontal suture;frontosphenoid suture -http://purl.obolibrary.org/obo/UBERON_0010156;sphenofrontal suture;sphenofrontal suture of skull -http://purl.obolibrary.org/obo/UBERON_0010157;sphenoparietal suture;spheno-parietal suture -http://purl.obolibrary.org/obo/UBERON_0010157;sphenoparietal suture;sphenoparietal suture of skull -http://purl.obolibrary.org/obo/UBERON_0010158;sphenozygomatic suture;sphenozygomatica suture of skull -http://purl.obolibrary.org/obo/UBERON_0010159;occipitomastoid suture;occipitomastoid suture of skull -http://purl.obolibrary.org/obo/UBERON_0010160;lumen of lymphatic vessel;lumen of lymphatic duct -http://purl.obolibrary.org/obo/UBERON_0010160;lumen of lymphatic vessel;lymphatic vessel lumen -http://purl.obolibrary.org/obo/UBERON_0010161;lumen of blood vessel;blood vessel lumen -http://purl.obolibrary.org/obo/UBERON_0010162;post-anal tail tip;tail tip -http://purl.obolibrary.org/obo/UBERON_0010163;eyebrow; -http://purl.obolibrary.org/obo/UBERON_0010164;collection of hairs;hairs -http://purl.obolibrary.org/obo/UBERON_0010164;collection of hairs;hairs set -http://purl.obolibrary.org/obo/UBERON_0010164;collection of hairs;pili -http://purl.obolibrary.org/obo/UBERON_0010164;collection of hairs;set of hairs -http://purl.obolibrary.org/obo/UBERON_0010165;collection of hair on face;facial hairs set -http://purl.obolibrary.org/obo/UBERON_0010165;collection of hair on face;set of facial hairs -http://purl.obolibrary.org/obo/UBERON_0010166;coat of hair;hair coat -http://purl.obolibrary.org/obo/UBERON_0010166;coat of hair;set of coat hairs -http://purl.obolibrary.org/obo/UBERON_0010167;beard; -http://purl.obolibrary.org/obo/UBERON_0010168;collection of eyelashes;cilia -http://purl.obolibrary.org/obo/UBERON_0010168;collection of eyelashes;eyelashes -http://purl.obolibrary.org/obo/UBERON_0010168;collection of eyelashes;eyelashes set -http://purl.obolibrary.org/obo/UBERON_0010168;collection of eyelashes;set of eyelashes -http://purl.obolibrary.org/obo/UBERON_0010169;moustache;mustache -http://purl.obolibrary.org/obo/UBERON_0010170;region of neural crest; -http://purl.obolibrary.org/obo/UBERON_0010171;strand of hair of face;face hair -http://purl.obolibrary.org/obo/UBERON_0010171;strand of hair of face;face hair strand -http://purl.obolibrary.org/obo/UBERON_0010171;strand of hair of face;hair of face -http://purl.obolibrary.org/obo/UBERON_0010172;bulb of aorta;aorta bulb -http://purl.obolibrary.org/obo/UBERON_0010172;bulb of aorta;aortic bulb -http://purl.obolibrary.org/obo/UBERON_0010172;bulb of aorta;aortic root -http://purl.obolibrary.org/obo/UBERON_0010172;bulb of aorta;bulb of ascending aorta -http://purl.obolibrary.org/obo/UBERON_0010172;bulb of aorta;bulbus aortae -http://purl.obolibrary.org/obo/UBERON_0010172;bulb of aorta;root of aorta -http://purl.obolibrary.org/obo/UBERON_0010172;bulb of aorta;supraaortic valve area -http://purl.obolibrary.org/obo/UBERON_0010173;sinotubular junction;sinotubular ridge -http://purl.obolibrary.org/obo/UBERON_0010174;Schweigger-Seidel sheath; -http://purl.obolibrary.org/obo/UBERON_0010175;nutrient foramen vein;nutrient vein -http://purl.obolibrary.org/obo/UBERON_0010176;nutrient foramen artery;nutrient artery -http://purl.obolibrary.org/obo/UBERON_0010181;straight venules of kidney;set of straight venules of kidney -http://purl.obolibrary.org/obo/UBERON_0010181;straight venules of kidney;venulae rectae of kidney -http://purl.obolibrary.org/obo/UBERON_0010181;straight venules of kidney;venulae rectae renis -http://purl.obolibrary.org/obo/UBERON_0010183;liver trabecula;liver trabeculae -http://purl.obolibrary.org/obo/UBERON_0010185;rete ovarii;rete ovarii of ovary -http://purl.obolibrary.org/obo/UBERON_0010186;male urethral gland;Littre's gland -http://purl.obolibrary.org/obo/UBERON_0010186;male urethral gland;gland of Littre -http://purl.obolibrary.org/obo/UBERON_0010186;male urethral gland;gland of male urethra -http://purl.obolibrary.org/obo/UBERON_0010186;male urethral gland;glandulae urethrales urethrae masculinae -http://purl.obolibrary.org/obo/UBERON_0010186;male urethral gland;male urethra gland -http://purl.obolibrary.org/obo/UBERON_0010186;male urethral gland;urethral gland (male) -http://purl.obolibrary.org/obo/UBERON_0010187;female urethral gland;female urethra gland -http://purl.obolibrary.org/obo/UBERON_0010187;female urethral gland;gland of female urethra -http://purl.obolibrary.org/obo/UBERON_0010187;female urethral gland;urethral gland (female) -http://purl.obolibrary.org/obo/UBERON_0010188;protuberance; -http://purl.obolibrary.org/obo/UBERON_0010189;right atrium venous valve; -http://purl.obolibrary.org/obo/UBERON_0010190;pair of dorsal aortae;paired dorsal aortae -http://purl.obolibrary.org/obo/UBERON_0010191;aortic system; -http://purl.obolibrary.org/obo/UBERON_0010192;genital artery;gonadal artery -http://purl.obolibrary.org/obo/UBERON_0010193;renal portal vein;renal portal veins -http://purl.obolibrary.org/obo/UBERON_0010194;hepatic portal system;hepatic-portal system -http://purl.obolibrary.org/obo/UBERON_0010194;hepatic portal system;portal system of liver -http://purl.obolibrary.org/obo/UBERON_0010195;renal portal system;portal system of kidney -http://purl.obolibrary.org/obo/UBERON_0010195;renal portal system;renal-portal system -http://purl.obolibrary.org/obo/UBERON_0010197;trunk of common carotid artery;common carotid arterial trunk -http://purl.obolibrary.org/obo/UBERON_0010198;carotid duct;ductus caroticus -http://purl.obolibrary.org/obo/UBERON_0010199;bona-fide anatomical boundary; -http://purl.obolibrary.org/obo/UBERON_0010202;lateral line;lateral lines -http://purl.obolibrary.org/obo/UBERON_0010204;tail vasculature;post-vent vasculature -http://purl.obolibrary.org/obo/UBERON_0010205;mesencephalic vein;vena mesencephalica -http://purl.obolibrary.org/obo/UBERON_0010205;mesencephalic vein;venae mesencephalicae -http://purl.obolibrary.org/obo/UBERON_0010207;nictitating membrane;membrana nictitans -http://purl.obolibrary.org/obo/UBERON_0010207;nictitating membrane;nictitans -http://purl.obolibrary.org/obo/UBERON_0010207;nictitating membrane;palperbra tertia -http://purl.obolibrary.org/obo/UBERON_0010207;nictitating membrane;third eyelid -http://purl.obolibrary.org/obo/UBERON_0010209;plica semilunaris of conjunctiva;plica semilunaris (conjunctiva) -http://purl.obolibrary.org/obo/UBERON_0010209;plica semilunaris of conjunctiva;semilunar fold of conjunctiva -http://purl.obolibrary.org/obo/UBERON_0010210;blood clot;coagulated blood -http://purl.obolibrary.org/obo/UBERON_0010210;blood clot;fibrin clot -http://purl.obolibrary.org/obo/UBERON_0010210;blood clot;hemostatic plug -http://purl.obolibrary.org/obo/UBERON_0010210;blood clot;thrombus -http://purl.obolibrary.org/obo/UBERON_0010211;granulation tissue; -http://purl.obolibrary.org/obo/UBERON_0010212;laryngeal apparatus;laryngeal cartilage system -http://purl.obolibrary.org/obo/UBERON_0010213;laryngeal pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0010214;cricoid pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0010215;arytenoid swellings; -http://purl.obolibrary.org/obo/UBERON_0010219;thyroid pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0010220;arytenoid pre-cartilage condensation;arytenoid swelling pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010221;laryngeal associated mesenchyme; -http://purl.obolibrary.org/obo/UBERON_0010222;anatomical line between pupils;inter-pupillary line -http://purl.obolibrary.org/obo/UBERON_0010222;anatomical line between pupils;interpupillary line -http://purl.obolibrary.org/obo/UBERON_0010223;left pupil;pupil of left eye -http://purl.obolibrary.org/obo/UBERON_0010224;right pupil;pupil of right eye -http://purl.obolibrary.org/obo/UBERON_0010225;thalamic complex; -http://purl.obolibrary.org/obo/UBERON_0010227;future cardiac atrium;presumptive atrium heart tube -http://purl.obolibrary.org/obo/UBERON_0010227;future cardiac atrium;primordial atrium -http://purl.obolibrary.org/obo/UBERON_0010227;future cardiac atrium;primordial cardiac atrium -http://purl.obolibrary.org/obo/UBERON_0010228;ruminal fluid; -http://purl.obolibrary.org/obo/UBERON_0010229;ruminant esophageal groove;ruminant reticular groove -http://purl.obolibrary.org/obo/UBERON_0010230;eyeball of camera-type eye;bulbus oculi -http://purl.obolibrary.org/obo/UBERON_0010230;eyeball of camera-type eye;eye -http://purl.obolibrary.org/obo/UBERON_0010230;eyeball of camera-type eye;eye globe -http://purl.obolibrary.org/obo/UBERON_0010230;eyeball of camera-type eye;eyeball -http://purl.obolibrary.org/obo/UBERON_0010230;eyeball of camera-type eye;globe -http://purl.obolibrary.org/obo/UBERON_0010231;anatomical line between outer ears; -http://purl.obolibrary.org/obo/UBERON_0010232;placodal ectoderm; -http://purl.obolibrary.org/obo/UBERON_0010233;stroma of thyroid gland;thyroid gland stroma -http://purl.obolibrary.org/obo/UBERON_0010233;stroma of thyroid gland;thyroid stroma -http://purl.obolibrary.org/obo/UBERON_0010234;palatopharyngeus muscle;palatopharyngeal muscle -http://purl.obolibrary.org/obo/UBERON_0010234;palatopharyngeus muscle;palatopharyngeus -http://purl.obolibrary.org/obo/UBERON_0010234;palatopharyngeus muscle;pharyngopalatinus muscle -http://purl.obolibrary.org/obo/UBERON_0010235;uvular muscle;uvular muscle -http://purl.obolibrary.org/obo/UBERON_0010238;torus pylorus;torus pyloricus -http://purl.obolibrary.org/obo/UBERON_0010239;spiral colon;coiled colon -http://purl.obolibrary.org/obo/UBERON_0010240;zygomatic gland; -http://purl.obolibrary.org/obo/UBERON_0010241;molar gland;molar salivary gland -http://purl.obolibrary.org/obo/UBERON_0010242;anterior buccal gland; -http://purl.obolibrary.org/obo/UBERON_0010243;merocrine gland; -http://purl.obolibrary.org/obo/UBERON_0010244;choroid tapetum lucidum;choroidal tapetum lucidum -http://purl.obolibrary.org/obo/UBERON_0010244;choroid tapetum lucidum;tapetum choroideae -http://purl.obolibrary.org/obo/UBERON_0010245;retinal tapetum lucidum; -http://purl.obolibrary.org/obo/UBERON_0010246;choroidal guanine tapetum; -http://purl.obolibrary.org/obo/UBERON_0010247;choroidal tapetum cellulosum;choroid tapetum cellulosum -http://purl.obolibrary.org/obo/UBERON_0010248;choroidal tapetum fibrosum; -http://purl.obolibrary.org/obo/UBERON_0010249;posterior meningeal artery;terminal branch of ascending pharyngeal artery -http://purl.obolibrary.org/obo/UBERON_0010250;middle meningeal artery; -http://purl.obolibrary.org/obo/UBERON_0010251;anterior meningeal artery;anterior meningeal branch of anterior ethmoidal artery -http://purl.obolibrary.org/obo/UBERON_0010251;anterior meningeal artery;ramus meningeus anterior (arteria ethmoidalis anterioris) -http://purl.obolibrary.org/obo/UBERON_0010252;1st arch mandibular mesenchyme from neural crest; -http://purl.obolibrary.org/obo/UBERON_0010253;1st arch maxillary mesenchyme from neural crest; -http://purl.obolibrary.org/obo/UBERON_0010254;2nd arch mesenchyme from neural crest;neural crest derived arch 2 mesenchyme -http://purl.obolibrary.org/obo/UBERON_0010254;2nd arch mesenchyme from neural crest;pharyngeal arch 2 mesenchyme from neural crest -http://purl.obolibrary.org/obo/UBERON_0010255;3rd arch mesenchyme from neural crest;3rd pharyngeal arch mesenchyme derived from neural crest -http://purl.obolibrary.org/obo/UBERON_0010255;3rd arch mesenchyme from neural crest;mesenchyme derived from neural crest of mesenchyme of 3rd arch -http://purl.obolibrary.org/obo/UBERON_0010255;3rd arch mesenchyme from neural crest;neural crest derived arch 3 mesenchyme -http://purl.obolibrary.org/obo/UBERON_0010255;3rd arch mesenchyme from neural crest;pharyngeal arch 3 mesenchyme from neural crest -http://purl.obolibrary.org/obo/UBERON_0010256;4th arch mesenchyme from neural crest;4th pharyngeal arch mesenchyme derived from neural crest -http://purl.obolibrary.org/obo/UBERON_0010256;4th arch mesenchyme from neural crest;mesenchyme derived from neural crest of mesenchyme of 4th arch -http://purl.obolibrary.org/obo/UBERON_0010256;4th arch mesenchyme from neural crest;neural crest derived arch 4 mesenchyme -http://purl.obolibrary.org/obo/UBERON_0010256;4th arch mesenchyme from neural crest;pharyngeal arch 4 mesenchyme from neural crest -http://purl.obolibrary.org/obo/UBERON_0010257;6th arch mesenchyme from neural crest;neural crest derived arch 6 mesenchyme -http://purl.obolibrary.org/obo/UBERON_0010257;6th arch mesenchyme from neural crest;pharyngeal arch 6 mesenchyme from neural crest -http://purl.obolibrary.org/obo/UBERON_0010258;mesenchyme from rhombencephalic neural crest; -http://purl.obolibrary.org/obo/UBERON_0010259;1st arch mesenchyme from neural crest;mesenchyme derived from neural crest of mesenchyme of 1st arch -http://purl.obolibrary.org/obo/UBERON_0010259;1st arch mesenchyme from neural crest;neural crest derived arch 1 mesenchyme -http://purl.obolibrary.org/obo/UBERON_0010259;1st arch mesenchyme from neural crest;pharyngeal arch 1 mesenchyme from neural crest -http://purl.obolibrary.org/obo/UBERON_0010260;umbilical blood vessel;allantoic vessel -http://purl.obolibrary.org/obo/UBERON_0010260;umbilical blood vessel;umbilical cord blood vessel -http://purl.obolibrary.org/obo/UBERON_0010260;umbilical blood vessel;umbilical vessel -http://purl.obolibrary.org/obo/UBERON_0010262;operculum of brain; -http://purl.obolibrary.org/obo/UBERON_0010264;hepatopancreas; -http://purl.obolibrary.org/obo/UBERON_0010265;mollusc hepatopancreas; -http://purl.obolibrary.org/obo/UBERON_0010266;arthropod hepatopancreas; -http://purl.obolibrary.org/obo/UBERON_0010269;filum terminale internum;internal part of filum terminale -http://purl.obolibrary.org/obo/UBERON_0010270;filum terminale externum;external part of filum terminale -http://purl.obolibrary.org/obo/UBERON_0010271;musculus retractor bulbi;M. retractor bulbi -http://purl.obolibrary.org/obo/UBERON_0010271;musculus retractor bulbi;retractor bulbi -http://purl.obolibrary.org/obo/UBERON_0010271;musculus retractor bulbi;retractor bulbi muscle -http://purl.obolibrary.org/obo/UBERON_0010272;hyoid apparatus; -http://purl.obolibrary.org/obo/UBERON_0010273;zone of hyoid bone;hyoid bone zone -http://purl.obolibrary.org/obo/UBERON_0010276;space in vertebral column;vertebral column opening -http://purl.obolibrary.org/obo/UBERON_0010276;space in vertebral column;vertebral conduit -http://purl.obolibrary.org/obo/UBERON_0010277;mesocardium; -http://purl.obolibrary.org/obo/UBERON_0010279;pericardial sinus; -http://purl.obolibrary.org/obo/UBERON_0010283;oblique pericardial sinus;oblique sinus of pericardial cavity -http://purl.obolibrary.org/obo/UBERON_0010284;lacrimal punctum; -http://purl.obolibrary.org/obo/UBERON_0010285;midbrain basal plate;basal plate midbrain -http://purl.obolibrary.org/obo/UBERON_0010285;midbrain basal plate;basal plate midbrain region -http://purl.obolibrary.org/obo/UBERON_0010286;midbrain neural tube; -http://purl.obolibrary.org/obo/UBERON_0010287;motor root of facial nerve;facial nerve motor root -http://purl.obolibrary.org/obo/UBERON_0010287;motor root of facial nerve;motor component of the VIIth (facial) nerve -http://purl.obolibrary.org/obo/UBERON_0010287;motor root of facial nerve;seventh cranial nerve motor root -http://purl.obolibrary.org/obo/UBERON_0010289;scleral cartilage;scleral cartilage element -http://purl.obolibrary.org/obo/UBERON_0010289;scleral cartilage;sclerotic cartilage -http://purl.obolibrary.org/obo/UBERON_0010290;scleral ossicle;scleral ossicle -http://purl.obolibrary.org/obo/UBERON_0010290;scleral ossicle;sclerotic bone -http://purl.obolibrary.org/obo/UBERON_0010290;scleral ossicle;sclerotic ossicle -http://purl.obolibrary.org/obo/UBERON_0010291;layer of sclera; -http://purl.obolibrary.org/obo/UBERON_0010292;episcleral layer of eyeball;episclera -http://purl.obolibrary.org/obo/UBERON_0010292;episcleral layer of eyeball;episcleral layer -http://purl.obolibrary.org/obo/UBERON_0010292;episcleral layer of eyeball;lamina episcleralis -http://purl.obolibrary.org/obo/UBERON_0010293;suprachoroid lamina;lamina suprachorioidea -http://purl.obolibrary.org/obo/UBERON_0010293;suprachoroid lamina;lamina suprachoroidea -http://purl.obolibrary.org/obo/UBERON_0010294;scleral endothelium; -http://purl.obolibrary.org/obo/UBERON_0010295;substantia propria of sclera;scleral stroma -http://purl.obolibrary.org/obo/UBERON_0010295;substantia propria of sclera;stroma of sclera -http://purl.obolibrary.org/obo/UBERON_0010295;substantia propria of sclera;subsantia propria sclerae -http://purl.obolibrary.org/obo/UBERON_0010295;substantia propria of sclera;substantia propria sclerae -http://purl.obolibrary.org/obo/UBERON_0010296;scleral skeletal element; -http://purl.obolibrary.org/obo/UBERON_0010297;endochondral scleral ossicle; -http://purl.obolibrary.org/obo/UBERON_0010298;intramembranous scleral ossicle; -http://purl.obolibrary.org/obo/UBERON_0010299;scleral mesenchyme; -http://purl.obolibrary.org/obo/UBERON_0010300;epithelial scleral papilla layer;scleral papillae -http://purl.obolibrary.org/obo/UBERON_0010302;amnioserosa; -http://purl.obolibrary.org/obo/UBERON_0010303;extraembryonic epithelium;extra-embryonic epithelium -http://purl.obolibrary.org/obo/UBERON_0010304;non-keratinized stratified squamous epithelium;epithelium stratificatum squamosum noncornificatum -http://purl.obolibrary.org/obo/UBERON_0010304;non-keratinized stratified squamous epithelium;nonkeratinizing stratified squamous epithelium -http://purl.obolibrary.org/obo/UBERON_0010304;non-keratinized stratified squamous epithelium;stratified squamous non-keratinized epithelium -http://purl.obolibrary.org/obo/UBERON_0010304;non-keratinized stratified squamous epithelium;stratified squamous nonkeratinizing epithelium -http://purl.obolibrary.org/obo/UBERON_0010305;subdivision of conjunctiva;conjunctiva region -http://purl.obolibrary.org/obo/UBERON_0010305;subdivision of conjunctiva;region of conjunctiva -http://purl.obolibrary.org/obo/UBERON_0010306;bulbar conjunctiva;ocular conjunctiva -http://purl.obolibrary.org/obo/UBERON_0010307;conjunctival fornix;conjunctiva fornix -http://purl.obolibrary.org/obo/UBERON_0010307;conjunctival fornix;forniceal conjunctiva -http://purl.obolibrary.org/obo/UBERON_0010307;conjunctival fornix;fornix conjunctiva -http://purl.obolibrary.org/obo/UBERON_0010308;os opticus;Gemminger's ossicle -http://purl.obolibrary.org/obo/UBERON_0010308;os opticus;os nervi optici -http://purl.obolibrary.org/obo/UBERON_0010309;palpebral bone; -http://purl.obolibrary.org/obo/UBERON_0010310;nictitating membrane lamina;cartilago intercipiens -http://purl.obolibrary.org/obo/UBERON_0010310;nictitating membrane lamina;nictitating membrane cartilage -http://purl.obolibrary.org/obo/UBERON_0010311;scleral sesamoid bone;scleral sesamoid -http://purl.obolibrary.org/obo/UBERON_0010311;scleral sesamoid bone;scleral sesamoid element -http://purl.obolibrary.org/obo/UBERON_0010311;scleral sesamoid bone;sesamoideum esclerae -http://purl.obolibrary.org/obo/UBERON_0010312;immature eye;future eye -http://purl.obolibrary.org/obo/UBERON_0010313;neural crest-derived structure; -http://purl.obolibrary.org/obo/UBERON_0010314;structure with developmental contribution from neural crest; -http://purl.obolibrary.org/obo/UBERON_0010316;germ layer / neural crest; -http://purl.obolibrary.org/obo/UBERON_0010321;skeletal element of eye region; -http://purl.obolibrary.org/obo/UBERON_0010323;cranial skeletal system;cranial skeleton -http://purl.obolibrary.org/obo/UBERON_0010323;cranial skeletal system;cranium -http://purl.obolibrary.org/obo/UBERON_0010323;cranial skeletal system;osteocranium -http://purl.obolibrary.org/obo/UBERON_0010326;optic pedicel; -http://purl.obolibrary.org/obo/UBERON_0010328;limb bud mesenchyme; -http://purl.obolibrary.org/obo/UBERON_0010329;paired limb/fin bud mesenchyme; -http://purl.obolibrary.org/obo/UBERON_0010330;eyelid mesenchyme; -http://purl.obolibrary.org/obo/UBERON_0010332;epithelium of handplate;handplate epithelium -http://purl.obolibrary.org/obo/UBERON_0010333;extraembryonic membrane mesenchyme; -http://purl.obolibrary.org/obo/UBERON_0010334;maxillary process mesenchyme from neural crest; -http://purl.obolibrary.org/obo/UBERON_0010335;maxillary process mesenchyme from head mesenchyme; -http://purl.obolibrary.org/obo/UBERON_0010336;mandibular process mesenchyme from neural crest; -http://purl.obolibrary.org/obo/UBERON_0010337;mandibular process mesenchyme from head mesenchyme; -http://purl.obolibrary.org/obo/UBERON_0010338;1st arch maxillary mesenchyme from head mesenchyme; -http://purl.obolibrary.org/obo/UBERON_0010339;1st arch mandibular mesenchyme from head mesenchyme; -http://purl.obolibrary.org/obo/UBERON_0010341;1st arch mesenchyme from head mesenchyme;mesenchyme derived from head mesoderm of mesenchyme of 1st arch -http://purl.obolibrary.org/obo/UBERON_0010343;2nd arch mesenchyme from head mesenchyme;head mesenchyme derived arch 2 mesenchyme -http://purl.obolibrary.org/obo/UBERON_0010343;2nd arch mesenchyme from head mesenchyme;mesenchyme derived from head mesoderm of mesenchyme of 2nd arch -http://purl.obolibrary.org/obo/UBERON_0010343;2nd arch mesenchyme from head mesenchyme;pharyngeal arch 2 mesenchyme from head mesenchyme -http://purl.obolibrary.org/obo/UBERON_0010344;3rd arch mesenchyme from head mesenchyme;head mesenchyme derived arch 3 mesenchyme -http://purl.obolibrary.org/obo/UBERON_0010344;3rd arch mesenchyme from head mesenchyme;mesenchyme derived from head mesoderm of mesenchyme of 3rd arch -http://purl.obolibrary.org/obo/UBERON_0010344;3rd arch mesenchyme from head mesenchyme;pharyngeal arch 3 mesenchyme from head mesenchyme -http://purl.obolibrary.org/obo/UBERON_0010345;4th arch mesenchyme from head mesenchyme;head mesenchyme derived arch 4 mesenchyme -http://purl.obolibrary.org/obo/UBERON_0010345;4th arch mesenchyme from head mesenchyme;mesenchyme derived from head mesoderm of mesenchyme of 4th arch -http://purl.obolibrary.org/obo/UBERON_0010345;4th arch mesenchyme from head mesenchyme;pharyngeal arch 4 mesenchyme from head mesenchyme -http://purl.obolibrary.org/obo/UBERON_0010347;6th arch mesenchyme from head mesenchyme;head mesenchyme derived arch 6 mesenchyme -http://purl.obolibrary.org/obo/UBERON_0010347;6th arch mesenchyme from head mesenchyme;pharyngeal arch 6 mesenchyme from head mesenchyme -http://purl.obolibrary.org/obo/UBERON_0010348;hyoid pre-muscle mass; -http://purl.obolibrary.org/obo/UBERON_0010349;otic capsule pre-cartilage condensation;otic capsule anlage -http://purl.obolibrary.org/obo/UBERON_0010354;Reichert's cartilage pre-cartilage condensation;future Reichert's cartilage -http://purl.obolibrary.org/obo/UBERON_0010354;Reichert's cartilage pre-cartilage condensation;hyoid cartilage pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010355;ossification center;centrum ossificationis -http://purl.obolibrary.org/obo/UBERON_0010355;ossification center;ossification centre -http://purl.obolibrary.org/obo/UBERON_0010356;primary ossification center;centrum ossificationis primarium -http://purl.obolibrary.org/obo/UBERON_0010356;primary ossification center;primary ossification centre -http://purl.obolibrary.org/obo/UBERON_0010357;secondary ossification center;centrum ossificationis secundarium -http://purl.obolibrary.org/obo/UBERON_0010357;secondary ossification center;secondary ossification centre -http://purl.obolibrary.org/obo/UBERON_0010358;arch of centrum of vertebra; -http://purl.obolibrary.org/obo/UBERON_0010359;pharyngeal arch mesenchyme from neural crest;arch mesenchyme from neural crest -http://purl.obolibrary.org/obo/UBERON_0010359;pharyngeal arch mesenchyme from neural crest;branchial arch mesenchyme from neural crest -http://purl.obolibrary.org/obo/UBERON_0010359;pharyngeal arch mesenchyme from neural crest;neural crest derived arch mesenchyme -http://purl.obolibrary.org/obo/UBERON_0010360;pharyngeal arch mesenchyme from head mesenchyme;arch mesenchyme from head mesenchyme -http://purl.obolibrary.org/obo/UBERON_0010360;pharyngeal arch mesenchyme from head mesenchyme;branchial arch mesenchyme from head mesenchyme -http://purl.obolibrary.org/obo/UBERON_0010360;pharyngeal arch mesenchyme from head mesenchyme;head mesenchyme derived arch mesenchyme -http://purl.obolibrary.org/obo/UBERON_0010361;synostosis;bony union -http://purl.obolibrary.org/obo/UBERON_0010361;synostosis;junctura ossea -http://purl.obolibrary.org/obo/UBERON_0010362;endoskeleton;replacement skeleton -http://purl.obolibrary.org/obo/UBERON_0010363;endochondral element;endochondral replacement element -http://purl.obolibrary.org/obo/UBERON_0010364;dermal skeleton; -http://purl.obolibrary.org/obo/UBERON_0010365;odontoid tissue;odontogenic tissue -http://purl.obolibrary.org/obo/UBERON_0010366;conjunctival vasculature;conjunctival veins -http://purl.obolibrary.org/obo/UBERON_0010366;conjunctival vasculature;conjunctival veins set -http://purl.obolibrary.org/obo/UBERON_0010366;conjunctival vasculature;set of conjunctival veins -http://purl.obolibrary.org/obo/UBERON_0010366;conjunctival vasculature;venae conjunctivales -http://purl.obolibrary.org/obo/UBERON_0010367;conjunctival vein; -http://purl.obolibrary.org/obo/UBERON_0010368;pulmonary lobule;lobulus pulmonis -http://purl.obolibrary.org/obo/UBERON_0010369;secondary pulmonary lobule;lobulus pulmonis secondarius -http://purl.obolibrary.org/obo/UBERON_0010370;tibial vein;vena tibialis -http://purl.obolibrary.org/obo/UBERON_0010371;ecto-epithelium;ectoderm-derived epithelium -http://purl.obolibrary.org/obo/UBERON_0010372;uncinate process of ethmoid;uncinate process of the ethmoid -http://purl.obolibrary.org/obo/UBERON_0010372;uncinate process of ethmoid;uncinate process of the ethmoid bone -http://purl.obolibrary.org/obo/UBERON_0010373;uncinate process of pancreas;Winslow's pancreas -http://purl.obolibrary.org/obo/UBERON_0010373;uncinate process of pancreas;lesser pancreas -http://purl.obolibrary.org/obo/UBERON_0010373;uncinate process of pancreas;processus uncinatus (pancreas) -http://purl.obolibrary.org/obo/UBERON_0010373;uncinate process of pancreas;processus uncinatus pancreatis -http://purl.obolibrary.org/obo/UBERON_0010375;pancreas dorsal primordium; -http://purl.obolibrary.org/obo/UBERON_0010376;pancreas ventral primordium; -http://purl.obolibrary.org/obo/UBERON_0010377;mesenchyme from somatopleure; -http://purl.obolibrary.org/obo/UBERON_0010378;mesenchyme from splanchnopleure; -http://purl.obolibrary.org/obo/UBERON_0010379;superior tarsal muscle;Mueller's muscle -http://purl.obolibrary.org/obo/UBERON_0010380;enteric nerve; -http://purl.obolibrary.org/obo/UBERON_0010384;lumen of laryngopharynx;laryngopharynx lumen -http://purl.obolibrary.org/obo/UBERON_0010386;Peyer's patch follicle;Peyer's patch follicle -http://purl.obolibrary.org/obo/UBERON_0010387;Peyer's patch T cell area; -http://purl.obolibrary.org/obo/UBERON_0010388;proximal segment of rib;proximal part of rib -http://purl.obolibrary.org/obo/UBERON_0010388;proximal segment of rib;proximal rib -http://purl.obolibrary.org/obo/UBERON_0010388;proximal segment of rib;proximal rib segment -http://purl.obolibrary.org/obo/UBERON_0010389;pterygoid bone;lamina lateralis (processus pterygoideus) -http://purl.obolibrary.org/obo/UBERON_0010389;pterygoid bone;lamina lateralis processi pterygoideus ossis sphenoidalis -http://purl.obolibrary.org/obo/UBERON_0010389;pterygoid bone;lateral lamina of pterygoid process -http://purl.obolibrary.org/obo/UBERON_0010389;pterygoid bone;lateral plate of pterygoid process -http://purl.obolibrary.org/obo/UBERON_0010389;pterygoid bone;lateral plate of sphenoid -http://purl.obolibrary.org/obo/UBERON_0010389;pterygoid bone;lateral pterygoid plate -http://purl.obolibrary.org/obo/UBERON_0010390;lumen of urethra;urethral lumen -http://purl.obolibrary.org/obo/UBERON_0010391;parametrium; -http://purl.obolibrary.org/obo/UBERON_0010392;B cell domain; -http://purl.obolibrary.org/obo/UBERON_0010393;T cell domain; -http://purl.obolibrary.org/obo/UBERON_0010394;lymphocyte domain; -http://purl.obolibrary.org/obo/UBERON_0010395;lymph node primary follicle;primary follicle of lymph node -http://purl.obolibrary.org/obo/UBERON_0010396;afferent lymphatic vessel;vasa afferentia lymphoglandula -http://purl.obolibrary.org/obo/UBERON_0010396;afferent lymphatic vessel;vasa afferentia lymphoglandulae -http://purl.obolibrary.org/obo/UBERON_0010397;efferent lymphatic vessel; -http://purl.obolibrary.org/obo/UBERON_0010398;spleen marginal sinus;splenic marginal sinus -http://purl.obolibrary.org/obo/UBERON_0010399;spleen trabecular artery; -http://purl.obolibrary.org/obo/UBERON_0010400;spleen trabecular vein; -http://purl.obolibrary.org/obo/UBERON_0010401;spleen central arteriole;follicular arteriole -http://purl.obolibrary.org/obo/UBERON_0010401;spleen central arteriole;splenic central arteriole -http://purl.obolibrary.org/obo/UBERON_0010402;epidermis suprabasal layer;suprabasal cell layer of skin -http://purl.obolibrary.org/obo/UBERON_0010402;epidermis suprabasal layer;suprabasal layer of epidermis -http://purl.obolibrary.org/obo/UBERON_0010403;brain marginal zone;brain marginal zone -http://purl.obolibrary.org/obo/UBERON_0010404;lateral ventricle subependymal layer; -http://purl.obolibrary.org/obo/UBERON_0010405;spinal cord lateral motor column; -http://purl.obolibrary.org/obo/UBERON_0010406;cholinergic enteric nerve; -http://purl.obolibrary.org/obo/UBERON_0010408;ocular angle artery;angular artery -http://purl.obolibrary.org/obo/UBERON_0010409;ocular surface region;eye surface -http://purl.obolibrary.org/obo/UBERON_0010409;ocular surface region;eye surface region -http://purl.obolibrary.org/obo/UBERON_0010409;ocular surface region;ocular surface -http://purl.obolibrary.org/obo/UBERON_0010410;inguinal fat pad;fat depot of inguinal region -http://purl.obolibrary.org/obo/UBERON_0010410;inguinal fat pad;inguinal fat depot -http://purl.obolibrary.org/obo/UBERON_0010411;retroperitoneal fat pad;retroperitoneal fat depot -http://purl.obolibrary.org/obo/UBERON_0010412;epididymal fat pad;periepididymal fat pad -http://purl.obolibrary.org/obo/UBERON_0010413;parametrial fat pad;parametrial fat depot -http://purl.obolibrary.org/obo/UBERON_0010414;omental fat pad;omental fat depot -http://purl.obolibrary.org/obo/UBERON_0010415;barrel cortex; -http://purl.obolibrary.org/obo/UBERON_0010416;lymph node B cell domain;lymph node B cell dependent cortex -http://purl.obolibrary.org/obo/UBERON_0010416;lymph node B cell domain;lymph node B-cell domain -http://purl.obolibrary.org/obo/UBERON_0010416;lymph node B cell domain;nodular lymph node cortex -http://purl.obolibrary.org/obo/UBERON_0010417;lymph node T cell domain;T cell zone of lymph node -http://purl.obolibrary.org/obo/UBERON_0010417;lymph node T cell domain;T zone of lymph node -http://purl.obolibrary.org/obo/UBERON_0010417;lymph node T cell domain;lymph node T cell dependent paracortex -http://purl.obolibrary.org/obo/UBERON_0010417;lymph node T cell domain;lymph node T zone -http://purl.obolibrary.org/obo/UBERON_0010417;lymph node T cell domain;lymph node T-cell domain -http://purl.obolibrary.org/obo/UBERON_0010417;lymph node T cell domain;lymph node deep cortex -http://purl.obolibrary.org/obo/UBERON_0010418;urethral opening;urethral orifice -http://purl.obolibrary.org/obo/UBERON_0010419;vibrissa follicle;follicle of sinus hair -http://purl.obolibrary.org/obo/UBERON_0010419;vibrissa follicle;follicle of vibrissa -http://purl.obolibrary.org/obo/UBERON_0010419;vibrissa follicle;vibrissal follicle -http://purl.obolibrary.org/obo/UBERON_0010420;lymph node germinal center mantle zone;lymph node B cell corona -http://purl.obolibrary.org/obo/UBERON_0010420;lymph node germinal center mantle zone;lymph node follicular corona -http://purl.obolibrary.org/obo/UBERON_0010420;lymph node germinal center mantle zone;lymph node follicular mantle -http://purl.obolibrary.org/obo/UBERON_0010420;lymph node germinal center mantle zone;lymph node inactive zone -http://purl.obolibrary.org/obo/UBERON_0010420;lymph node germinal center mantle zone;lymph node peripheral zone -http://purl.obolibrary.org/obo/UBERON_0010420;lymph node germinal center mantle zone;mantle zone of lymph node germinal center -http://purl.obolibrary.org/obo/UBERON_0010421;spleen B cell corona;follicle mantle -http://purl.obolibrary.org/obo/UBERON_0010421;spleen B cell corona;spleen B cell corona -http://purl.obolibrary.org/obo/UBERON_0010421;spleen B cell corona;spleen B-cell corona -http://purl.obolibrary.org/obo/UBERON_0010421;spleen B cell corona;spleen lymphocytic corona -http://purl.obolibrary.org/obo/UBERON_0010421;spleen B cell corona;splenic B cell corona -http://purl.obolibrary.org/obo/UBERON_0010422;primary nodular lymphoid tissue;primary lymphoid follicle -http://purl.obolibrary.org/obo/UBERON_0010422;primary nodular lymphoid tissue;primary lymphoid nodule -http://purl.obolibrary.org/obo/UBERON_0010423;primary lymphoid nodule of tonsil; -http://purl.obolibrary.org/obo/UBERON_0010424;distal segment of rib;distal part of rib -http://purl.obolibrary.org/obo/UBERON_0010424;distal segment of rib;distal rib -http://purl.obolibrary.org/obo/UBERON_0010424;distal segment of rib;distal rib segment -http://purl.obolibrary.org/obo/UBERON_0010425;internal naris;choana -http://purl.obolibrary.org/obo/UBERON_0010425;internal naris;internal choana -http://purl.obolibrary.org/obo/UBERON_0010426;oropharyngeal choana;choana of oropharynx -http://purl.obolibrary.org/obo/UBERON_0010426;oropharyngeal choana;oropharyngeal naris -http://purl.obolibrary.org/obo/UBERON_0010426;oropharyngeal choana;palatal choana -http://purl.obolibrary.org/obo/UBERON_0010427;ciliary processes;ciliary processes -http://purl.obolibrary.org/obo/UBERON_0010427;ciliary processes;ciliary processes set -http://purl.obolibrary.org/obo/UBERON_0010427;ciliary processes;processus ciliares -http://purl.obolibrary.org/obo/UBERON_0010427;ciliary processes;set of ciliary processes -http://purl.obolibrary.org/obo/UBERON_0010428;flat bone; -http://purl.obolibrary.org/obo/UBERON_0010437;zygomaticus muscle;m. zygomaticus -http://purl.obolibrary.org/obo/UBERON_0010437;zygomaticus muscle;zygomaticus -http://purl.obolibrary.org/obo/UBERON_0010467;teres muscle;teres -http://purl.obolibrary.org/obo/UBERON_0010496;teres minor muscle;teres minor -http://purl.obolibrary.org/obo/UBERON_0010498;pseudostratified columnar epithelium; -http://purl.obolibrary.org/obo/UBERON_0010499;pseudostratified ciliated columnar epithelium;epithelium pseudostratificatum columnare ciliatum (trachea et bronchi) -http://purl.obolibrary.org/obo/UBERON_0010501;pseudostratified smooth columnar epithelium; -http://purl.obolibrary.org/obo/UBERON_0010505;periosteal dura mater;outer layer of dura mater -http://purl.obolibrary.org/obo/UBERON_0010505;periosteal dura mater;outer periosteal layer of dura mater -http://purl.obolibrary.org/obo/UBERON_0010505;periosteal dura mater;periosteal dura -http://purl.obolibrary.org/obo/UBERON_0010505;periosteal dura mater;periosteal layer of dura mater -http://purl.obolibrary.org/obo/UBERON_0010506;meningeal dura mater;inner layer of dura mater -http://purl.obolibrary.org/obo/UBERON_0010506;meningeal dura mater;meningeal dura -http://purl.obolibrary.org/obo/UBERON_0010506;meningeal dura mater;meningeal layer of dura mater -http://purl.obolibrary.org/obo/UBERON_0010507;layer of dura mater; -http://purl.obolibrary.org/obo/UBERON_0010509;strand of pelage hair;pelage hair -http://purl.obolibrary.org/obo/UBERON_0010510;strand of auchene hair;auchene hair -http://purl.obolibrary.org/obo/UBERON_0010511;strand of awl hair;awl hair -http://purl.obolibrary.org/obo/UBERON_0010512;strand of guard hair;guard hair -http://purl.obolibrary.org/obo/UBERON_0010512;strand of guard hair;guardhair -http://purl.obolibrary.org/obo/UBERON_0010512;strand of guard hair;monotrich hair -http://purl.obolibrary.org/obo/UBERON_0010513;strand of zigzag hair;zigzag hair -http://purl.obolibrary.org/obo/UBERON_0010514;strand of duvet hair;duvet hair -http://purl.obolibrary.org/obo/UBERON_0010515;brille; -http://purl.obolibrary.org/obo/UBERON_0010516;clasper; -http://purl.obolibrary.org/obo/UBERON_0010517;cephalic clasper; -http://purl.obolibrary.org/obo/UBERON_0010518;pelvic fin clasper;myxopterygium -http://purl.obolibrary.org/obo/UBERON_0010519;tail electric organ;electric organ of tail -http://purl.obolibrary.org/obo/UBERON_0010520;head electric organ; -http://purl.obolibrary.org/obo/UBERON_0010521;electroreceptor organ;electric sense organ -http://purl.obolibrary.org/obo/UBERON_0010521;electroreceptor organ;electroreception organ -http://purl.obolibrary.org/obo/UBERON_0010522;replacement element; -http://purl.obolibrary.org/obo/UBERON_0010523;microcirculatory vessel;microcirculatory vessels -http://purl.obolibrary.org/obo/UBERON_0010524;fibularis tertius;musculus peroneus tertius -http://purl.obolibrary.org/obo/UBERON_0010524;fibularis tertius;peroneus digiti quinti -http://purl.obolibrary.org/obo/UBERON_0010524;fibularis tertius;peroneus tertius -http://purl.obolibrary.org/obo/UBERON_0010524;fibularis tertius;peroneus tertius muscle -http://purl.obolibrary.org/obo/UBERON_0010526;fibularis brevis;musculus peroneus brevis -http://purl.obolibrary.org/obo/UBERON_0010526;fibularis brevis;peronaeus brevis -http://purl.obolibrary.org/obo/UBERON_0010526;fibularis brevis;peroneus brevis -http://purl.obolibrary.org/obo/UBERON_0010526;fibularis brevis;peroneus brevis muscle -http://purl.obolibrary.org/obo/UBERON_0010527;cavity of bone organ;bone organ cavity -http://purl.obolibrary.org/obo/UBERON_0010528;pneumatic cavity of bone;air space of bone -http://purl.obolibrary.org/obo/UBERON_0010531;metanephros induced blastemal cells;induced blastemal cells -http://purl.obolibrary.org/obo/UBERON_0010531;metanephros induced blastemal cells;nephrogenic interstitium of nephrogenic zone -http://purl.obolibrary.org/obo/UBERON_0010532;primitive nephron;future nephron -http://purl.obolibrary.org/obo/UBERON_0010532;primitive nephron;presumptive nephron -http://purl.obolibrary.org/obo/UBERON_0010533;metanephros cortex; -http://purl.obolibrary.org/obo/UBERON_0010534;primitive mesonephric nephron;developing mesonephric nephron -http://purl.obolibrary.org/obo/UBERON_0010534;primitive mesonephric nephron;primitive mesonephric nephron -http://purl.obolibrary.org/obo/UBERON_0010535;primitive metanephric nephron;developing metanephric nephron -http://purl.obolibrary.org/obo/UBERON_0010535;primitive metanephric nephron;primitive metanephric nephron -http://purl.obolibrary.org/obo/UBERON_0010536;nephron progenitor; -http://purl.obolibrary.org/obo/UBERON_0010537;mesonephric nephron progenitor; -http://purl.obolibrary.org/obo/UBERON_0010538;paired limb/fin segment;limb/fin segment -http://purl.obolibrary.org/obo/UBERON_0010540;tarsus pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0010541;tarsus cartilage element; -http://purl.obolibrary.org/obo/UBERON_0010543;acropodial skeleton;acropodial skeleton -http://purl.obolibrary.org/obo/UBERON_0010543;acropodial skeleton;acropodium skeleton -http://purl.obolibrary.org/obo/UBERON_0010543;acropodial skeleton;set of phalanges -http://purl.obolibrary.org/obo/UBERON_0010543;acropodial skeleton;skeletal parts of acropodial region -http://purl.obolibrary.org/obo/UBERON_0010544;metacarpus skeleton;anterior metapodial skeleton -http://purl.obolibrary.org/obo/UBERON_0010544;metacarpus skeleton;metacarpal bones -http://purl.obolibrary.org/obo/UBERON_0010544;metacarpus skeleton;metacarpal skeleton -http://purl.obolibrary.org/obo/UBERON_0010544;metacarpus skeleton;metacarpals [I-V] -http://purl.obolibrary.org/obo/UBERON_0010544;metacarpus skeleton;metacarpals set -http://purl.obolibrary.org/obo/UBERON_0010544;metacarpus skeleton;ossa metacarpalia [I-V] -http://purl.obolibrary.org/obo/UBERON_0010544;metacarpus skeleton;ossa metacarpi [I-V] -http://purl.obolibrary.org/obo/UBERON_0010544;metacarpus skeleton;set of metacarpal bones -http://purl.obolibrary.org/obo/UBERON_0010544;metacarpus skeleton;set of metacarpals -http://purl.obolibrary.org/obo/UBERON_0010544;metacarpus skeleton;set of metacarpals [I-V] -http://purl.obolibrary.org/obo/UBERON_0010544;metacarpus skeleton;skeleton of metacarpus -http://purl.obolibrary.org/obo/UBERON_0010545;metatarsus skeleton;metatarsal bones set -http://purl.obolibrary.org/obo/UBERON_0010545;metatarsus skeleton;metatarsal skeleton -http://purl.obolibrary.org/obo/UBERON_0010545;metatarsus skeleton;metatarsals [I-V] -http://purl.obolibrary.org/obo/UBERON_0010545;metatarsus skeleton;ossa metatarsalia [I-V] -http://purl.obolibrary.org/obo/UBERON_0010545;metatarsus skeleton;ossa metatarsi[I-V] -http://purl.obolibrary.org/obo/UBERON_0010545;metatarsus skeleton;posterior metapodial skeleton -http://purl.obolibrary.org/obo/UBERON_0010545;metatarsus skeleton;set of metatarsal bones -http://purl.obolibrary.org/obo/UBERON_0010545;metatarsus skeleton;set of metatarsals [I-V] -http://purl.obolibrary.org/obo/UBERON_0010545;metatarsus skeleton;skeleton of metatarsus -http://purl.obolibrary.org/obo/UBERON_0010546;metapodial skeleton;metacarpal/metatarsal skeleton -http://purl.obolibrary.org/obo/UBERON_0010546;metapodial skeleton;metapodial skeleton -http://purl.obolibrary.org/obo/UBERON_0010546;metapodial skeleton;metapodium skeleton -http://purl.obolibrary.org/obo/UBERON_0010546;metapodial skeleton;skeletal parts of metapodium -http://purl.obolibrary.org/obo/UBERON_0010546;metapodial skeleton;skeleton of metapodium -http://purl.obolibrary.org/obo/UBERON_0010547;pedal digit 1 metatarsal pre-cartilage condensation;hind limb digit 1 metatarsal pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010547;pedal digit 1 metatarsal pre-cartilage condensation;pedal digit I metatarsal pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010547;pedal digit 1 metatarsal pre-cartilage condensation;toe 1 metatarsal pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010548;pedal digit 2 metatarsal pre-cartilage condensation;hind limb digit 2 metatarsal pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010548;pedal digit 2 metatarsal pre-cartilage condensation;pedal digit II metatarsal pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010548;pedal digit 2 metatarsal pre-cartilage condensation;toe 2 metatarsal pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010549;pedal digit 3 metatarsal pre-cartilage condensation;hind limb digit 3 metatarsal pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010549;pedal digit 3 metatarsal pre-cartilage condensation;pedal digit III metatarsal pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010549;pedal digit 3 metatarsal pre-cartilage condensation;toe 3 metatarsal pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010550;pedal digit 4 metatarsal pre-cartilage condensation;hind limb digit 4 metatarsal pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010550;pedal digit 4 metatarsal pre-cartilage condensation;pedal digit IV metatarsal pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010550;pedal digit 4 metatarsal pre-cartilage condensation;toe 4 metatarsal pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010551;pedal digit 5 metatarsal pre-cartilage condensation;hind limb digit 5 metatarsal pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010551;pedal digit 5 metatarsal pre-cartilage condensation;pedal digit V metatarsal pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010551;pedal digit 5 metatarsal pre-cartilage condensation;toe 5 metatarsal pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010557;pedal digit 1 metatarsal cartilage element;hind limb digit 1 metatarsal cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010557;pedal digit 1 metatarsal cartilage element;pedal digit I metatarsal cartilage element -http://purl.obolibrary.org/obo/UBERON_0010557;pedal digit 1 metatarsal cartilage element;toe 1 metatarsal cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010558;pedal digit 2 metatarsal cartilage element;hind limb digit 2 metatarsal cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010558;pedal digit 2 metatarsal cartilage element;pedal digit II metatarsal cartilage element -http://purl.obolibrary.org/obo/UBERON_0010558;pedal digit 2 metatarsal cartilage element;toe 2 metatarsal cartilage element -http://purl.obolibrary.org/obo/UBERON_0010559;pedal digit 3 metatarsal cartilage element;hind limb digit 3 metatarsal cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010559;pedal digit 3 metatarsal cartilage element;pedal digit III metatarsal cartilage element -http://purl.obolibrary.org/obo/UBERON_0010559;pedal digit 3 metatarsal cartilage element;toe 3 metatarsal cartilage element -http://purl.obolibrary.org/obo/UBERON_0010560;pedal digit 4 metatarsal cartilage element;hind limb digit 4 metatarsal cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010560;pedal digit 4 metatarsal cartilage element;pedal digit IV metatarsal cartilage element -http://purl.obolibrary.org/obo/UBERON_0010560;pedal digit 4 metatarsal cartilage element;toe 4 metatarsal cartilage element -http://purl.obolibrary.org/obo/UBERON_0010561;pedal digit 5 metatarsal cartilage element;hind limb digit 5 metatarsal cartilage element -http://purl.obolibrary.org/obo/UBERON_0010561;pedal digit 5 metatarsal cartilage element;pedal digit V metatarsal cartilage element -http://purl.obolibrary.org/obo/UBERON_0010561;pedal digit 5 metatarsal cartilage element;toe 5 metatarsal cartilage element -http://purl.obolibrary.org/obo/UBERON_0010562;pedal digit 1 mesenchyme;hind limb digit 1 mesenchyme -http://purl.obolibrary.org/obo/UBERON_0010562;pedal digit 1 mesenchyme;pedal digit I mesenchyme -http://purl.obolibrary.org/obo/UBERON_0010564;manual digit 1 mesenchyme;fore limb digit 1 mesenchyme -http://purl.obolibrary.org/obo/UBERON_0010564;manual digit 1 mesenchyme;manual digit I mesenchyme -http://purl.obolibrary.org/obo/UBERON_0010565;manual digit 1 metacarpus pre-cartilage condensation;finger 1 metacarpus pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010565;manual digit 1 metacarpus pre-cartilage condensation;fore limb digit 1 metacarpus pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010565;manual digit 1 metacarpus pre-cartilage condensation;manual digit I metacarpus pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010565;manual digit 1 metacarpus pre-cartilage condensation;metacarpal 1 pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010566;manual digit 2 metacarpus pre-cartilage condensation;finger 2 metacarpus pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010566;manual digit 2 metacarpus pre-cartilage condensation;fore limb digit 2 metacarpus pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010566;manual digit 2 metacarpus pre-cartilage condensation;manual digit II metacarpus pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010566;manual digit 2 metacarpus pre-cartilage condensation;metacarpal 2 pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010567;manual digit 3 metacarpus pre-cartilage condensation;finger 3 metacarpus pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010567;manual digit 3 metacarpus pre-cartilage condensation;fore limb digit 3 metacarpus pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010567;manual digit 3 metacarpus pre-cartilage condensation;manual digit III metacarpus pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010567;manual digit 3 metacarpus pre-cartilage condensation;metacarpal 3 pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010568;manual digit 4 metacarpus pre-cartilage condensation;finger 4 metacarpus pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010568;manual digit 4 metacarpus pre-cartilage condensation;fore limb digit 4 metacarpus pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010568;manual digit 4 metacarpus pre-cartilage condensation;manual digit IV metacarpus pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010568;manual digit 4 metacarpus pre-cartilage condensation;metacarpal 4 pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010569;manual digit 5 metacarpus pre-cartilage condensation;finger 5 metacarpus pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010569;manual digit 5 metacarpus pre-cartilage condensation;fore limb digit 5 metacarpus pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010569;manual digit 5 metacarpus pre-cartilage condensation;manual digit V metacarpus pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010569;manual digit 5 metacarpus pre-cartilage condensation;metacarpal 5 pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010570;manual digit 1 metacarpus cartilage element;finger 1 metacarpus cartilage element -http://purl.obolibrary.org/obo/UBERON_0010570;manual digit 1 metacarpus cartilage element;fore limb digit 1 metacarpus cartilage element -http://purl.obolibrary.org/obo/UBERON_0010570;manual digit 1 metacarpus cartilage element;manual digit I metacarpus cartilage element -http://purl.obolibrary.org/obo/UBERON_0010570;manual digit 1 metacarpus cartilage element;metacarpus 1 cartilage element -http://purl.obolibrary.org/obo/UBERON_0010571;manual digit 2 metacarpus cartilage element;finger 2 metacarpus cartilage element -http://purl.obolibrary.org/obo/UBERON_0010571;manual digit 2 metacarpus cartilage element;fore limb digit 2 metacarpus cartilage element -http://purl.obolibrary.org/obo/UBERON_0010571;manual digit 2 metacarpus cartilage element;manual digit II metacarpus cartilage element -http://purl.obolibrary.org/obo/UBERON_0010571;manual digit 2 metacarpus cartilage element;metacarpus 2 cartilage element -http://purl.obolibrary.org/obo/UBERON_0010572;manual digit 3 metacarpus cartilage element;finger 3 metacarpus cartilage element -http://purl.obolibrary.org/obo/UBERON_0010572;manual digit 3 metacarpus cartilage element;fore limb digit 3 metacarpus cartilage element -http://purl.obolibrary.org/obo/UBERON_0010572;manual digit 3 metacarpus cartilage element;manual digit III metacarpus cartilage element -http://purl.obolibrary.org/obo/UBERON_0010572;manual digit 3 metacarpus cartilage element;metacarpus 3 cartilage element -http://purl.obolibrary.org/obo/UBERON_0010573;manual digit 4 metacarpus cartilage element;finger 4 metacarpus cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010573;manual digit 4 metacarpus cartilage element;fore limb digit 4 metacarpus cartilage element -http://purl.obolibrary.org/obo/UBERON_0010573;manual digit 4 metacarpus cartilage element;manual digit IV metacarpus cartilage element -http://purl.obolibrary.org/obo/UBERON_0010573;manual digit 4 metacarpus cartilage element;metacarpus 4 cartilage element -http://purl.obolibrary.org/obo/UBERON_0010574;manual digit 5 metacarpus cartilage element;finger 5 metacarpus cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010574;manual digit 5 metacarpus cartilage element;fore limb digit 5 metacarpus cartilage element -http://purl.obolibrary.org/obo/UBERON_0010574;manual digit 5 metacarpus cartilage element;manual digit V metacarpus cartilage element -http://purl.obolibrary.org/obo/UBERON_0010574;manual digit 5 metacarpus cartilage element;metacarpus 5 cartilage element -http://purl.obolibrary.org/obo/UBERON_0010575;manual digit 1 phalanx pre-cartilage condensation;fore limb digit 1 phalanx pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010575;manual digit 1 phalanx pre-cartilage condensation;manual digit I phalanx pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010576;manual digit 2 phalanx pre-cartilage condensation;fore limb digit 2 phalanx pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010576;manual digit 2 phalanx pre-cartilage condensation;manual digit II phalanx pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010577;manual digit 3 phalanx pre-cartilage condensation;fore limb digit 3 phalanx pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010577;manual digit 3 phalanx pre-cartilage condensation;manual digit III phalanx pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010578;manual digit 4 phalanx pre-cartilage condensation;fore limb digit 4 phalanx pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010578;manual digit 4 phalanx pre-cartilage condensation;manual digit IV phalanx pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010579;manual digit 5 phalanx pre-cartilage condensation;fore limb digit 5 phalanx pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010579;manual digit 5 phalanx pre-cartilage condensation;manual digit V phalanx pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010580;pedal digit 1 phalanx pre-cartilage condensation;hind limb digit 1 phalanx pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010580;pedal digit 1 phalanx pre-cartilage condensation;pedal digit I phalanx pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010581;pedal digit 2 phalanx pre-cartilage condensation;hind limb digit 2 phalanx pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010581;pedal digit 2 phalanx pre-cartilage condensation;pedal digit II phalanx pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010582;pedal digit 3 phalanx pre-cartilage condensation;hind limb digit 3 phalanx pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010582;pedal digit 3 phalanx pre-cartilage condensation;pedal digit III phalanx pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010583;pedal digit 4 phalanx pre-cartilage condensation;hind limb digit 4 phalanx pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010583;pedal digit 4 phalanx pre-cartilage condensation;pedal digit IV phalanx pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010584;pedal digit 5 phalanx pre-cartilage condensation;hind limb digit 5 phalanx pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010584;pedal digit 5 phalanx pre-cartilage condensation;pedal digit V phalanx pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010585;pedal digit phalanx pre-cartilage condensation;foot phalanx pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010585;pedal digit phalanx pre-cartilage condensation;hind limb digit phalanx pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010585;pedal digit phalanx pre-cartilage condensation;hindlimb phalanx pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010585;pedal digit phalanx pre-cartilage condensation;pes phalanx pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010586;manual digit phalanx pre-cartilage condensation;fore limb digit phalanx pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010586;manual digit phalanx pre-cartilage condensation;forelimb phalanx pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010586;manual digit phalanx pre-cartilage condensation;hand phalanx pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010586;manual digit phalanx pre-cartilage condensation;manus phalanx pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010675;manual digit 1 phalanx cartilage element;fore limb digit 1 phalanx cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010675;manual digit 1 phalanx cartilage element;manual digit I phalanx cartilage element -http://purl.obolibrary.org/obo/UBERON_0010676;manual digit 2 phalanx cartilage element;fore limb digit 2 phalanx cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010676;manual digit 2 phalanx cartilage element;manual digit II phalanx cartilage element -http://purl.obolibrary.org/obo/UBERON_0010677;manual digit 3 phalanx cartilage element;fore limb digit 3 phalanx cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010677;manual digit 3 phalanx cartilage element;manual digit III phalanx cartilage element -http://purl.obolibrary.org/obo/UBERON_0010678;manual digit 4 phalanx cartilage element;fore limb digit 4 phalanx cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010678;manual digit 4 phalanx cartilage element;manual digit IV phalanx cartilage element -http://purl.obolibrary.org/obo/UBERON_0010679;manual digit 5 phalanx cartilage element;fore limb digit 5 phalanx cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010679;manual digit 5 phalanx cartilage element;manual digit V phalanx cartilage element -http://purl.obolibrary.org/obo/UBERON_0010680;pedal digit 1 phalanx cartilage element;hind limb digit 1 phalanx cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010680;pedal digit 1 phalanx cartilage element;pedal digit I phalanx cartilage element -http://purl.obolibrary.org/obo/UBERON_0010681;pedal digit 2 phalanx cartilage element;hind limb digit 2 phalanx cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010681;pedal digit 2 phalanx cartilage element;pedal digit II phalanx cartilage element -http://purl.obolibrary.org/obo/UBERON_0010682;pedal digit 3 phalanx cartilage element;hind limb digit 3 phalanx cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010682;pedal digit 3 phalanx cartilage element;pedal digit III phalanx cartilage element -http://purl.obolibrary.org/obo/UBERON_0010683;pedal digit 4 phalanx cartilage element;hind limb digit 4 phalanx cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010683;pedal digit 4 phalanx cartilage element;pedal digit IV phalanx cartilage element -http://purl.obolibrary.org/obo/UBERON_0010684;pedal digit 5 phalanx cartilage element;hind limb digit 5 phalanx cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010684;pedal digit 5 phalanx cartilage element;pedal digit V phalanx cartilage element -http://purl.obolibrary.org/obo/UBERON_0010685;pedal digit phalanx cartilage element;hind limb digit phalanx cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010686;manual digit phalanx cartilage element;fore limb digit phalanx cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010687;pedal digit metatarsal pre-cartilage condensation;hind limb digit metatarsal pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010687;pedal digit metatarsal pre-cartilage condensation;metatarsal bone pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010687;pedal digit metatarsal pre-cartilage condensation;metatarsus pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010688;skeleton of manual acropodium;all phalanges in forelimb autopod -http://purl.obolibrary.org/obo/UBERON_0010688;skeleton of manual acropodium;anterior acropodium skeleton -http://purl.obolibrary.org/obo/UBERON_0010688;skeleton of manual acropodium;fore acropodium skeleton -http://purl.obolibrary.org/obo/UBERON_0010688;skeleton of manual acropodium;hand digit skeleton -http://purl.obolibrary.org/obo/UBERON_0010688;skeleton of manual acropodium;manual digit skeleton -http://purl.obolibrary.org/obo/UBERON_0010688;skeleton of manual acropodium;manual phalanges -http://purl.obolibrary.org/obo/UBERON_0010688;skeleton of manual acropodium;phalanges of hand -http://purl.obolibrary.org/obo/UBERON_0010688;skeleton of manual acropodium;phalanges of manus -http://purl.obolibrary.org/obo/UBERON_0010688;skeleton of manual acropodium;set of manual phalanges -http://purl.obolibrary.org/obo/UBERON_0010688;skeleton of manual acropodium;set of phalanges of hand -http://purl.obolibrary.org/obo/UBERON_0010688;skeleton of manual acropodium;set of phalanges of manus -http://purl.obolibrary.org/obo/UBERON_0010690;manual digit 1 epithelium;fore limb digit 1 epithelium -http://purl.obolibrary.org/obo/UBERON_0010690;manual digit 1 epithelium;manual digit I epithelium -http://purl.obolibrary.org/obo/UBERON_0010693;pedal digit 1 epithelium;hind limb digit 1 epithelium -http://purl.obolibrary.org/obo/UBERON_0010693;pedal digit 1 epithelium;pedal digit I epithelium -http://purl.obolibrary.org/obo/UBERON_0010695;mesenchyme of tarsal region; -http://purl.obolibrary.org/obo/UBERON_0010696;skeleton of pedal acropodium;all phalanges in hindlimb autopod -http://purl.obolibrary.org/obo/UBERON_0010696;skeleton of pedal acropodium;foot digit skeleton -http://purl.obolibrary.org/obo/UBERON_0010696;skeleton of pedal acropodium;hind acropodium skeleton -http://purl.obolibrary.org/obo/UBERON_0010696;skeleton of pedal acropodium;pedal phalanges -http://purl.obolibrary.org/obo/UBERON_0010696;skeleton of pedal acropodium;phalanges of foot -http://purl.obolibrary.org/obo/UBERON_0010696;skeleton of pedal acropodium;phalanges of pes -http://purl.obolibrary.org/obo/UBERON_0010696;skeleton of pedal acropodium;posterior acropodium skeleton -http://purl.obolibrary.org/obo/UBERON_0010696;skeleton of pedal acropodium;set of pedal phalanges -http://purl.obolibrary.org/obo/UBERON_0010696;skeleton of pedal acropodium;set of phalanges of foot -http://purl.obolibrary.org/obo/UBERON_0010696;skeleton of pedal acropodium;set of phalanges of pes -http://purl.obolibrary.org/obo/UBERON_0010697;pedal digit metatarsal cartilage element;hind limb digit metatarsal cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010698;manual digit metacarpus pre-cartilage condensation;fore limb digit metacarpus pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010698;manual digit metacarpus pre-cartilage condensation;metacarpal bone pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010698;manual digit metacarpus pre-cartilage condensation;metacarpal pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010698;manual digit metacarpus pre-cartilage condensation;metacarpus pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010699;manual digit metacarpus cartilage element;finger metacarpus cartilage element -http://purl.obolibrary.org/obo/UBERON_0010699;manual digit metacarpus cartilage element;fore limb digit metacarpus cartilage element -http://purl.obolibrary.org/obo/UBERON_0010699;manual digit metacarpus cartilage element;metacarpal cartilage element -http://purl.obolibrary.org/obo/UBERON_0010699;manual digit metacarpus cartilage element;metacarpus cartilage element -http://purl.obolibrary.org/obo/UBERON_0010700;phalanx pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0010701;phalanx cartilage element;phalanx cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010702;digit mesenchyme; -http://purl.obolibrary.org/obo/UBERON_0010703;forelimb zeugopod skeleton;antebrachial skeleton -http://purl.obolibrary.org/obo/UBERON_0010703;forelimb zeugopod skeleton;antebrachium skeleton -http://purl.obolibrary.org/obo/UBERON_0010703;forelimb zeugopod skeleton;anterior zeugopodium skeleton -http://purl.obolibrary.org/obo/UBERON_0010703;forelimb zeugopod skeleton;fore epipodium skeleton -http://purl.obolibrary.org/obo/UBERON_0010703;forelimb zeugopod skeleton;forearm skeleton -http://purl.obolibrary.org/obo/UBERON_0010703;forelimb zeugopod skeleton;skeleton of forearm -http://purl.obolibrary.org/obo/UBERON_0010704;parenchyma of quadrate lobe of liver;liver right quadrate lobe parenchyma -http://purl.obolibrary.org/obo/UBERON_0010704;parenchyma of quadrate lobe of liver;parenchyma of quadrate lobe -http://purl.obolibrary.org/obo/UBERON_0010706;parenchyma of caudate lobe of liver;liver right caudate lobe parenchyma -http://purl.obolibrary.org/obo/UBERON_0010706;parenchyma of caudate lobe of liver;parenchyma of caudate lobe -http://purl.obolibrary.org/obo/UBERON_0010707;appendage girdle complex;appendage complex -http://purl.obolibrary.org/obo/UBERON_0010707;appendage girdle complex;appendage-girdle complex -http://purl.obolibrary.org/obo/UBERON_0010707;appendage girdle complex;appendage/girdle complex -http://purl.obolibrary.org/obo/UBERON_0010707;appendage girdle complex;girdle plus limb or fin -http://purl.obolibrary.org/obo/UBERON_0010707;appendage girdle complex;limb -http://purl.obolibrary.org/obo/UBERON_0010708;pectoral complex;pectoral appendage/girdle complex -http://purl.obolibrary.org/obo/UBERON_0010708;pectoral complex;pectoral girdle plus anterior limb or fin -http://purl.obolibrary.org/obo/UBERON_0010708;pectoral complex;pectoral girdle plus pectoral limb or fin -http://purl.obolibrary.org/obo/UBERON_0010709;pelvic complex;pelvic appendage/girdle complex -http://purl.obolibrary.org/obo/UBERON_0010709;pelvic complex;pelvic girdle plus pelvic limb or fin -http://purl.obolibrary.org/obo/UBERON_0010709;pelvic complex;pelvic girdle plus posterior limb or fin -http://purl.obolibrary.org/obo/UBERON_0010710;pectoral fin skeleton;forefin skeleton -http://purl.obolibrary.org/obo/UBERON_0010711;pelvic fin skeleton; -http://purl.obolibrary.org/obo/UBERON_0010712;limb skeleton subdivision; -http://purl.obolibrary.org/obo/UBERON_0010713;paired fin skeleton; -http://purl.obolibrary.org/obo/UBERON_0010714;iliac cartilage element; -http://purl.obolibrary.org/obo/UBERON_0010718;pubic cartilage element; -http://purl.obolibrary.org/obo/UBERON_0010719;girdle skeleton;skeleton of girdle -http://purl.obolibrary.org/obo/UBERON_0010720;hindlimb zeugopod skeleton;crural skeleton -http://purl.obolibrary.org/obo/UBERON_0010720;hindlimb zeugopod skeleton;crus skeleton -http://purl.obolibrary.org/obo/UBERON_0010720;hindlimb zeugopod skeleton;hindlimb zygopod skeleton -http://purl.obolibrary.org/obo/UBERON_0010720;hindlimb zeugopod skeleton;posterior zeugopodium skeleton -http://purl.obolibrary.org/obo/UBERON_0010720;hindlimb zeugopod skeleton;skeleton cruris -http://purl.obolibrary.org/obo/UBERON_0010721;distal tarsal bone;cuneiform bone -http://purl.obolibrary.org/obo/UBERON_0010721;distal tarsal bone;distal tarsal -http://purl.obolibrary.org/obo/UBERON_0010721;distal tarsal bone;distal tarsal bone -http://purl.obolibrary.org/obo/UBERON_0010721;distal tarsal bone;os cuneiform -http://purl.obolibrary.org/obo/UBERON_0010721;distal tarsal bone;os cuneiforme -http://purl.obolibrary.org/obo/UBERON_0010722;accessory bone; -http://purl.obolibrary.org/obo/UBERON_0010723;os vesalianum pedis;pedal vesalian bone -http://purl.obolibrary.org/obo/UBERON_0010724;lateral tubercle of talus;accessory talus -http://purl.obolibrary.org/obo/UBERON_0010724;lateral tubercle of talus;os trigonum -http://purl.obolibrary.org/obo/UBERON_0010724;lateral tubercle of talus;os trigonum of talus -http://purl.obolibrary.org/obo/UBERON_0010724;lateral tubercle of talus;tuberculum laterale (talus) -http://purl.obolibrary.org/obo/UBERON_0010725;accessory navicular bone; -http://purl.obolibrary.org/obo/UBERON_0010726;os vesalianum manus;manual vesalian bone -http://purl.obolibrary.org/obo/UBERON_0010727;sutural bone;Wormian bone -http://purl.obolibrary.org/obo/UBERON_0010728;sphenoid lesser wing pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0010732;alisphenoid pre-cartilage condensation;sphenoid greater wing pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010733;alisphenoid cartilage element;sphenoid greater wing cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010737;distal tarsal bone 4;os tarsale IV -http://purl.obolibrary.org/obo/UBERON_0010738;distal tarsal bone 5;distal tarsal 5 -http://purl.obolibrary.org/obo/UBERON_0010738;distal tarsal bone 5;tarsal 5 -http://purl.obolibrary.org/obo/UBERON_0010739;distal carpal bone 5;distal carpal 5 -http://purl.obolibrary.org/obo/UBERON_0010740;bone of appendage girdle complex; -http://purl.obolibrary.org/obo/UBERON_0010741;bone of pectoral complex; -http://purl.obolibrary.org/obo/UBERON_0010742;bone of pelvic complex; -http://purl.obolibrary.org/obo/UBERON_0010743;meningeal cluster;cerebral meninges -http://purl.obolibrary.org/obo/UBERON_0010743;meningeal cluster;cluster of meninges -http://purl.obolibrary.org/obo/UBERON_0010743;meningeal cluster;meninges -http://purl.obolibrary.org/obo/UBERON_0010744;sacral vertebra pre-cartilage condensation;sacral vertebral pre-cartilage condensation group -http://purl.obolibrary.org/obo/UBERON_0010745;sacral vertebra cartilage element;sacral vertebral cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010745;sacral vertebra cartilage element;sacral vertebral cartilage condensation group -http://purl.obolibrary.org/obo/UBERON_0010746;iliac blade;a. ossis ilii -http://purl.obolibrary.org/obo/UBERON_0010746;iliac blade;ala of ilium -http://purl.obolibrary.org/obo/UBERON_0010746;iliac blade;ala ossis ilii -http://purl.obolibrary.org/obo/UBERON_0010746;iliac blade;ilium ala -http://purl.obolibrary.org/obo/UBERON_0010746;iliac blade;wing of ilium -http://purl.obolibrary.org/obo/UBERON_0010746;iliac blade;wing of the ilium -http://purl.obolibrary.org/obo/UBERON_0010747;body of ilium;ilium body -http://purl.obolibrary.org/obo/UBERON_0010748;lymph node follicle;follicle of lymph node -http://purl.obolibrary.org/obo/UBERON_0010749;middle pharyngeal constrictor;middle constrictor -http://purl.obolibrary.org/obo/UBERON_0010749;middle pharyngeal constrictor;middle constrictor of pharynx -http://purl.obolibrary.org/obo/UBERON_0010749;middle pharyngeal constrictor;middle constrictor pharyngeus -http://purl.obolibrary.org/obo/UBERON_0010749;middle pharyngeal constrictor;musculus constrictor pharyngis medius -http://purl.obolibrary.org/obo/UBERON_0010750;prefrontal bone; -http://purl.obolibrary.org/obo/UBERON_0010751;squamous part of temporal bone primordium;squamosal bone primordium -http://purl.obolibrary.org/obo/UBERON_0010751;squamous part of temporal bone primordium;squamosal primordium -http://purl.obolibrary.org/obo/UBERON_0010752;exoccipital cartilage element; -http://purl.obolibrary.org/obo/UBERON_0010753;lymph node secondary follicle; -http://purl.obolibrary.org/obo/UBERON_0010754;germinal center;central zone of follice -http://purl.obolibrary.org/obo/UBERON_0010754;germinal center;reaction center of follicle -http://purl.obolibrary.org/obo/UBERON_0010755;secondary follicle corona;inactive zone of follicle -http://purl.obolibrary.org/obo/UBERON_0010755;secondary follicle corona;peripheral zone of follicle -http://purl.obolibrary.org/obo/UBERON_0010756;spleen follicular dendritic cell network;spleen FDC network -http://purl.obolibrary.org/obo/UBERON_0010756;spleen follicular dendritic cell network;splenic follicular dendritic cell network -http://purl.obolibrary.org/obo/UBERON_0010757;rib 8;costa VIII -http://purl.obolibrary.org/obo/UBERON_0010757;rib 8;eighth rib -http://purl.obolibrary.org/obo/UBERON_0010758;subdivision of organism along appendicular axis;appendage segment -http://purl.obolibrary.org/obo/UBERON_0010758;subdivision of organism along appendicular axis;appendicular segment -http://purl.obolibrary.org/obo/UBERON_0010759;equine distal sesamoid; -http://purl.obolibrary.org/obo/UBERON_0010760;supraglenoid tubercle;supraglenoid tuberosity -http://purl.obolibrary.org/obo/UBERON_0010801;calcaneum pre-cartilage condensation;calcaneous pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010842;calcaneum cartilage element;calcaneous cartilage element -http://purl.obolibrary.org/obo/UBERON_0010843;clavicle cartilage element; -http://purl.obolibrary.org/obo/UBERON_0010844;clavicle pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0010846;radius pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0010847;ulna pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0010848;radius-ulna cartilage element;radio-ulna cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010849;tibia cartilage element; -http://purl.obolibrary.org/obo/UBERON_0010850;tibia pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0010851;fibula cartilage element;fibulal cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010851;fibula cartilage element;fibular cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010852;fibula pre-cartilage condensation;fibulal pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010852;fibula pre-cartilage condensation;fibular pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010853;capitulum of humerus;humeral capitulum -http://purl.obolibrary.org/obo/UBERON_0010854;skin of front of neck;skin of anterior neck -http://purl.obolibrary.org/obo/UBERON_0010854;skin of front of neck;skin of anterior part of neck -http://purl.obolibrary.org/obo/UBERON_0010854;skin of front of neck;skin of anterior portion of neck -http://purl.obolibrary.org/obo/UBERON_0010854;skin of front of neck;skin of throat -http://purl.obolibrary.org/obo/UBERON_0010855;skin of forelimb wing; -http://purl.obolibrary.org/obo/UBERON_0010856;patagium; -http://purl.obolibrary.org/obo/UBERON_0010858;inter limb-segment region; -http://purl.obolibrary.org/obo/UBERON_0010861;propatagium; -http://purl.obolibrary.org/obo/UBERON_0010862;dactylopatagium; -http://purl.obolibrary.org/obo/UBERON_0010863;dactylopatagium brevis; -http://purl.obolibrary.org/obo/UBERON_0010864;dactylopatagium minus; -http://purl.obolibrary.org/obo/UBERON_0010865;dactylopatagium medius; -http://purl.obolibrary.org/obo/UBERON_0010866;dactylopatagium major; -http://purl.obolibrary.org/obo/UBERON_0010867;plagiopatagium; -http://purl.obolibrary.org/obo/UBERON_0010868;uropropatagium;interfemoral membrane -http://purl.obolibrary.org/obo/UBERON_0010868;uropropatagium;interfemoral wing membrane -http://purl.obolibrary.org/obo/UBERON_0010869;calcar;calcar spur -http://purl.obolibrary.org/obo/UBERON_0010878;humeral patagium; -http://purl.obolibrary.org/obo/UBERON_0010879;tusk; -http://purl.obolibrary.org/obo/UBERON_0010880;gular fold; -http://purl.obolibrary.org/obo/UBERON_0010881;limb cartilage element; -http://purl.obolibrary.org/obo/UBERON_0010882;limb bone pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0010883;forelimb cartilage element; -http://purl.obolibrary.org/obo/UBERON_0010884;forelimb bone pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0010885;hindlimb cartilage element;hindlimb cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010886;hindlimb pre-cartilage condensation;hindlimb pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0010887;tragus;tragal part of pinna -http://purl.obolibrary.org/obo/UBERON_0010889;ectethmoid;dorsal nasal capsule -http://purl.obolibrary.org/obo/UBERON_0010890;pelvic complex muscle;pelvic girdle and hind limb muscles -http://purl.obolibrary.org/obo/UBERON_0010891;pectoral complex muscle;pectoral girdle and fore limb muscles -http://purl.obolibrary.org/obo/UBERON_0010892;mesethmoid element;ventral nasal capsule -http://purl.obolibrary.org/obo/UBERON_0010893;median external naris;median anterior naris -http://purl.obolibrary.org/obo/UBERON_0010893;median external naris;median nostril -http://purl.obolibrary.org/obo/UBERON_0010893;median external naris;nasohypophysial opening -http://purl.obolibrary.org/obo/UBERON_0010894;keratinous tooth;horny denticle -http://purl.obolibrary.org/obo/UBERON_0010895;sequential hermaphroditic organism; -http://purl.obolibrary.org/obo/UBERON_0010896;piston cartilage;lingual cartilage -http://purl.obolibrary.org/obo/UBERON_0010898;gastralium;abdominal rib -http://purl.obolibrary.org/obo/UBERON_0010898;gastralium;belly rib -http://purl.obolibrary.org/obo/UBERON_0010898;gastralium;gastralia -http://purl.obolibrary.org/obo/UBERON_0010899;synchronous hermaphroditic organism;serially hermaphroditic organism -http://purl.obolibrary.org/obo/UBERON_0010899;synchronous hermaphroditic organism;simultaneous hermaphroditic organism -http://purl.obolibrary.org/obo/UBERON_0010900;tarsometatarsus cartilage element; -http://purl.obolibrary.org/obo/UBERON_0010901;tarsometatarsus pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0010902;tibiotarsus cartilage element; -http://purl.obolibrary.org/obo/UBERON_0010903;tibiotarsus pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0010905;clavicle bone primordium;clavicle primordium -http://purl.obolibrary.org/obo/UBERON_0010907;parafibula; -http://purl.obolibrary.org/obo/UBERON_0010908;paraglossale;paraglossale bone -http://purl.obolibrary.org/obo/UBERON_0010910;opisthotic; -http://purl.obolibrary.org/obo/UBERON_0010911;ossicle; -http://purl.obolibrary.org/obo/UBERON_0010912;subdivision of skeleton;skeletal subdivision -http://purl.obolibrary.org/obo/UBERON_0010913;vertebral element;vertebra element -http://purl.obolibrary.org/obo/UBERON_0010921;thyrohyoid ligament; -http://purl.obolibrary.org/obo/UBERON_0010925;median thyrohyoid ligament;ligamentum thyrohyoideum medianum -http://purl.obolibrary.org/obo/UBERON_0010925;median thyrohyoid ligament;middle thyrohyoid ligament -http://purl.obolibrary.org/obo/UBERON_0010926;lateral thyrohyoid ligament;ligamentum hyothyreoideum laterale -http://purl.obolibrary.org/obo/UBERON_0010926;lateral thyrohyoid ligament;ligamentum thyrohyoideum laterale -http://purl.obolibrary.org/obo/UBERON_0010927;thyroepiglotticus muscle;pars thyroepiglottica (musculus thyroarytenoideus) -http://purl.obolibrary.org/obo/UBERON_0010927;thyroepiglotticus muscle;pars thyroepiglottica musculus thyroarytenoidei -http://purl.obolibrary.org/obo/UBERON_0010927;thyroepiglotticus muscle;thyro-epiglottic part of thyro-arytenoid -http://purl.obolibrary.org/obo/UBERON_0010927;thyroepiglotticus muscle;thyroepiglottic -http://purl.obolibrary.org/obo/UBERON_0010927;thyroepiglotticus muscle;thyroepiglottic muscle -http://purl.obolibrary.org/obo/UBERON_0010927;thyroepiglotticus muscle;thyroepiglotticus -http://purl.obolibrary.org/obo/UBERON_0010927;thyroepiglotticus muscle;thyroepiglottus -http://purl.obolibrary.org/obo/UBERON_0010927;thyroepiglotticus muscle;thyroepiglottus muscle -http://purl.obolibrary.org/obo/UBERON_0010928;cricopharyngeus muscle;cricopharyngeal part of inferior constrictor pharyngeus -http://purl.obolibrary.org/obo/UBERON_0010928;cricopharyngeus muscle;cricopharyngeal part of inferior pharyngeal constrictor -http://purl.obolibrary.org/obo/UBERON_0010928;cricopharyngeus muscle;cricopharyngeal part of inferior pharyngeal constrictor muscle -http://purl.obolibrary.org/obo/UBERON_0010928;cricopharyngeus muscle;cricopharyngeus -http://purl.obolibrary.org/obo/UBERON_0010928;cricopharyngeus muscle;cricopharyngeus portion of the inferior pharyngeal constrictor -http://purl.obolibrary.org/obo/UBERON_0010928;cricopharyngeus muscle;musculus cricopharyngeus -http://purl.obolibrary.org/obo/UBERON_0010928;cricopharyngeus muscle;pars cricopharyngea (musculus constrictor pharyngis inferior) -http://purl.obolibrary.org/obo/UBERON_0010928;cricopharyngeus muscle;pars cricopharyngea musculus constrictoris pharyngis inferioris -http://purl.obolibrary.org/obo/UBERON_0010929;stapedius pre-muscle condensation; -http://purl.obolibrary.org/obo/UBERON_0010930;interhyoideus;interhyoideus muscle -http://purl.obolibrary.org/obo/UBERON_0010931;intermandibularis;intermandibularis muscle -http://purl.obolibrary.org/obo/UBERON_0010932;crico-arytenoid muscle;crico-arytenoid -http://purl.obolibrary.org/obo/UBERON_0010932;crico-arytenoid muscle;cricoarytenoid -http://purl.obolibrary.org/obo/UBERON_0010932;crico-arytenoid muscle;cricoarytenoid muscle -http://purl.obolibrary.org/obo/UBERON_0010932;crico-arytenoid muscle;cricoarytenoideus -http://purl.obolibrary.org/obo/UBERON_0010933;orbicularis oris muscle;orbicularis oris -http://purl.obolibrary.org/obo/UBERON_0010935;tensor tympani pre-muscle condensation; -http://purl.obolibrary.org/obo/UBERON_0010936;thyropharyngeus muscle;musculus thyropharyngeus -http://purl.obolibrary.org/obo/UBERON_0010936;thyropharyngeus muscle;pars thyropharyngea (musculus constrictor pharyngis inferior) -http://purl.obolibrary.org/obo/UBERON_0010936;thyropharyngeus muscle;pars thyropharyngea musculus constrictoris pharyngis inferioris -http://purl.obolibrary.org/obo/UBERON_0010936;thyropharyngeus muscle;thyropharyngeal part of inferior constrictor pharyngeus -http://purl.obolibrary.org/obo/UBERON_0010936;thyropharyngeus muscle;thyropharyngeal part of inferior constrictor pharyngeus muscle -http://purl.obolibrary.org/obo/UBERON_0010936;thyropharyngeus muscle;thyropharyngeal part of inferior pharyngeal constrictor -http://purl.obolibrary.org/obo/UBERON_0010936;thyropharyngeus muscle;thyropharyngeus -http://purl.obolibrary.org/obo/UBERON_0010937;salpingopharyngeus muscle;salpingopharyngeus -http://purl.obolibrary.org/obo/UBERON_0010938;muscle belly;belly of muscle -http://purl.obolibrary.org/obo/UBERON_0010939;zygomaticomandibularis muscle;zygomaticomandibularis -http://purl.obolibrary.org/obo/UBERON_0010939;zygomaticomandibularis muscle;zygomaticomandibularis muscle -http://purl.obolibrary.org/obo/UBERON_0010940;muscle of digastric group; -http://purl.obolibrary.org/obo/UBERON_0010943;anterior digastric muscle;anterior belly of digastric -http://purl.obolibrary.org/obo/UBERON_0010943;anterior digastric muscle;anterior belly of digastric muscle -http://purl.obolibrary.org/obo/UBERON_0010943;anterior digastric muscle;anterior digastric -http://purl.obolibrary.org/obo/UBERON_0010943;anterior digastric muscle;anterior digastric muscle -http://purl.obolibrary.org/obo/UBERON_0010943;anterior digastric muscle;digastric, anterior -http://purl.obolibrary.org/obo/UBERON_0010943;anterior digastric muscle;digastricus anterior -http://purl.obolibrary.org/obo/UBERON_0010943;anterior digastric muscle;digastricus anterior belly -http://purl.obolibrary.org/obo/UBERON_0010943;anterior digastric muscle;digastricus, venter rostralis -http://purl.obolibrary.org/obo/UBERON_0010943;anterior digastric muscle;venter anterior (musculus digastricus) -http://purl.obolibrary.org/obo/UBERON_0010943;anterior digastric muscle;venter posterior musculus digastrici anterior -http://purl.obolibrary.org/obo/UBERON_0010944;posterior digastric muscle;digastric, posterior -http://purl.obolibrary.org/obo/UBERON_0010944;posterior digastric muscle;digastricus posterior -http://purl.obolibrary.org/obo/UBERON_0010944;posterior digastric muscle;digastricus posterior belly -http://purl.obolibrary.org/obo/UBERON_0010944;posterior digastric muscle;digastricus, venter caudalis -http://purl.obolibrary.org/obo/UBERON_0010944;posterior digastric muscle;m. digastricus posterior -http://purl.obolibrary.org/obo/UBERON_0010944;posterior digastric muscle;posterior belly of digastric -http://purl.obolibrary.org/obo/UBERON_0010944;posterior digastric muscle;posterior belly of digastric muscle -http://purl.obolibrary.org/obo/UBERON_0010944;posterior digastric muscle;posterior digastric muscle -http://purl.obolibrary.org/obo/UBERON_0010944;posterior digastric muscle;venter posterior musculus digastrici -http://purl.obolibrary.org/obo/UBERON_0010945;jugulohyoideus muscle; -http://purl.obolibrary.org/obo/UBERON_0010946;occipitofrontalis muscle; -http://purl.obolibrary.org/obo/UBERON_0010947;occipitalis;occipital belly of occipitofrontalis -http://purl.obolibrary.org/obo/UBERON_0010947;occipitalis;occipital part of occipitofrontalis -http://purl.obolibrary.org/obo/UBERON_0010947;occipitalis;venter occipitalis (musculus occipitofrontalis) -http://purl.obolibrary.org/obo/UBERON_0010947;occipitalis;venter transversa musculi occipitofrontalis occipitalis -http://purl.obolibrary.org/obo/UBERON_0010947;occipitalis;venter transversa musculus occipitofrontalis occipitalis -http://purl.obolibrary.org/obo/UBERON_0010948;cleidooccipital muscle;cleido-occipitalis -http://purl.obolibrary.org/obo/UBERON_0010948;cleidooccipital muscle;cleido-occipitalis muscle -http://purl.obolibrary.org/obo/UBERON_0010948;cleidooccipital muscle;cleidooccipital -http://purl.obolibrary.org/obo/UBERON_0010949;sternooccipital muscle;sternooccipital -http://purl.obolibrary.org/obo/UBERON_0010950;styloauricular muscle;mandibulo-auricularis -http://purl.obolibrary.org/obo/UBERON_0010950;styloauricular muscle;mandibulo-auricularis muscle -http://purl.obolibrary.org/obo/UBERON_0010950;styloauricular muscle;stylo-auricularis -http://purl.obolibrary.org/obo/UBERON_0010950;styloauricular muscle;stylo-auricularis muscle -http://purl.obolibrary.org/obo/UBERON_0010950;styloauricular muscle;styloauricularis -http://purl.obolibrary.org/obo/UBERON_0010951;interscutular muscle;interscutularis -http://purl.obolibrary.org/obo/UBERON_0010951;interscutular muscle;musculus interscutularis -http://purl.obolibrary.org/obo/UBERON_0010952;frontalis muscle belly;frontal belly of occipitofrontalis -http://purl.obolibrary.org/obo/UBERON_0010952;frontalis muscle belly;frontal part of occipitofrontalis -http://purl.obolibrary.org/obo/UBERON_0010952;frontalis muscle belly;frontalis -http://purl.obolibrary.org/obo/UBERON_0010952;frontalis muscle belly;frontalis muscke -http://purl.obolibrary.org/obo/UBERON_0010952;frontalis muscle belly;orbito-temporo-auricularis -http://purl.obolibrary.org/obo/UBERON_0010952;frontalis muscle belly;venter frontalis (musculus occipitofrontalis) -http://purl.obolibrary.org/obo/UBERON_0010952;frontalis muscle belly;venter frontalis musculus occipitofrontalis -http://purl.obolibrary.org/obo/UBERON_0010953;nasalis muscle;nasalis -http://purl.obolibrary.org/obo/UBERON_0010954;ceratohyoideus muscle;ceratohyoideus -http://purl.obolibrary.org/obo/UBERON_0010955;trapezius pre-muscle mass; -http://purl.obolibrary.org/obo/UBERON_0010956;pterygopharyngeal part of superior pharyngeal constrictor;pars pterygopharyngea (musculus constrictor pharyngis superior) -http://purl.obolibrary.org/obo/UBERON_0010956;pterygopharyngeal part of superior pharyngeal constrictor;pars pterygopharyngea musculus constrictoris pharyngis superioris -http://purl.obolibrary.org/obo/UBERON_0010956;pterygopharyngeal part of superior pharyngeal constrictor;pterygopharyngeal part of superior constrictor pharyngeus -http://purl.obolibrary.org/obo/UBERON_0010958;arytenoid muscle; -http://purl.obolibrary.org/obo/UBERON_0010959;craniocervical muscle;muscle of head or neck -http://purl.obolibrary.org/obo/UBERON_0010961;erector spinae pre-muscle mass; -http://purl.obolibrary.org/obo/UBERON_0010962;extensor pre-muscle mass; -http://purl.obolibrary.org/obo/UBERON_0010963;trunk and cervical myotome group; -http://purl.obolibrary.org/obo/UBERON_0010970;intercostal pre-muscle mass; -http://purl.obolibrary.org/obo/UBERON_0010974;external intercostal pre-muscle mass; -http://purl.obolibrary.org/obo/UBERON_0010975;external oblique pre-muscle mass; -http://purl.obolibrary.org/obo/UBERON_0010977;flexor pre-muscle mass; -http://purl.obolibrary.org/obo/UBERON_0010981;internal intercostal pre-muscle mass; -http://purl.obolibrary.org/obo/UBERON_0010982;latissimus dorsi pre-muscle mass; -http://purl.obolibrary.org/obo/UBERON_0010983;levator scapulae pre-muscle mass; -http://purl.obolibrary.org/obo/UBERON_0010984;pectoral pre-muscle mass; -http://purl.obolibrary.org/obo/UBERON_0010985;rhomboid pre-muscle mass; -http://purl.obolibrary.org/obo/UBERON_0010986;serratus ventralis pre-muscle mass;serratus anterior pre-muscle mass -http://purl.obolibrary.org/obo/UBERON_0010987;sterno-mastoid pre-muscle mass; -http://purl.obolibrary.org/obo/UBERON_0010988;teres major pre-muscle mass; -http://purl.obolibrary.org/obo/UBERON_0010989;transverospinalis pre-muscle mass; -http://purl.obolibrary.org/obo/UBERON_0010990;transversospinales muscle;transverospinalis -http://purl.obolibrary.org/obo/UBERON_0010993;subscapularis pre-muscle mass; -http://purl.obolibrary.org/obo/UBERON_0010994;coronoid process of ulna;coronoid process of the ulna -http://purl.obolibrary.org/obo/UBERON_0010994;coronoid process of ulna;processus coronoideus -http://purl.obolibrary.org/obo/UBERON_0010994;coronoid process of ulna;ulnar coronoid process -http://purl.obolibrary.org/obo/UBERON_0010995;deep part of masseter muscle;deep layer of masseter -http://purl.obolibrary.org/obo/UBERON_0010995;deep part of masseter muscle;deep part of masseter -http://purl.obolibrary.org/obo/UBERON_0010995;deep part of masseter muscle;masseter, deep -http://purl.obolibrary.org/obo/UBERON_0010995;deep part of masseter muscle;masseter, profundus -http://purl.obolibrary.org/obo/UBERON_0010995;deep part of masseter muscle;pars profunda (musculus masseter) -http://purl.obolibrary.org/obo/UBERON_0010995;deep part of masseter muscle;pars profunda musculus masseterica -http://purl.obolibrary.org/obo/UBERON_0010995;deep part of masseter muscle;pars profunda of masseter muscle -http://purl.obolibrary.org/obo/UBERON_0010996;articular cartilage of joint;articular cartilage -http://purl.obolibrary.org/obo/UBERON_0010996;articular cartilage of joint;cartilago articularis -http://purl.obolibrary.org/obo/UBERON_0011002;articular cartilage element; -http://purl.obolibrary.org/obo/UBERON_0011004;pharyngeal arch cartilage;pharyngeal arch cartilages -http://purl.obolibrary.org/obo/UBERON_0011004;pharyngeal arch cartilage;splanchnocranium cartilage -http://purl.obolibrary.org/obo/UBERON_0011005;endocardium of auricle;auricle endocardium -http://purl.obolibrary.org/obo/UBERON_0011006;endocardium of left auricle;left atrium auricular region endocardium -http://purl.obolibrary.org/obo/UBERON_0011006;endocardium of left auricle;left auricle endocardium -http://purl.obolibrary.org/obo/UBERON_0011007;endocardium of right auricle;right auricle endocardium -http://purl.obolibrary.org/obo/UBERON_0011011;brachioradialis;brachioradialis muscle -http://purl.obolibrary.org/obo/UBERON_0011012;flexor pollicis brevis muscle;flexor pollicis brevis -http://purl.obolibrary.org/obo/UBERON_0011013;spinalis muscle;spinal muscle -http://purl.obolibrary.org/obo/UBERON_0011013;spinalis muscle;spinalis -http://purl.obolibrary.org/obo/UBERON_0011014;spinalis capitis muscle;spinal muscle of head -http://purl.obolibrary.org/obo/UBERON_0011014;spinalis capitis muscle;spinalis capitis -http://purl.obolibrary.org/obo/UBERON_0011015;iliac fossa; -http://purl.obolibrary.org/obo/UBERON_0011016;pyramidalis;pyramidalis muscle -http://purl.obolibrary.org/obo/UBERON_0011017;semispinalis muscle;semispinalis -http://purl.obolibrary.org/obo/UBERON_0011022;flexor hallucis brevis muscle;flexor hallucis brevis -http://purl.obolibrary.org/obo/UBERON_0011022;flexor hallucis brevis muscle;flexor hallucis brevis muscle -http://purl.obolibrary.org/obo/UBERON_0011022;flexor hallucis brevis muscle;m.flexor hallucis brevis -http://purl.obolibrary.org/obo/UBERON_0011024;extrinsic extensor muscle of manus;extrinsic extensor muscle of hand -http://purl.obolibrary.org/obo/UBERON_0011025;aryepiglotticus muscle;ary-epiglottic part of oblique arytenoid -http://purl.obolibrary.org/obo/UBERON_0011025;aryepiglotticus muscle;aryepiglottic -http://purl.obolibrary.org/obo/UBERON_0011025;aryepiglotticus muscle;aryepiglottic muscle -http://purl.obolibrary.org/obo/UBERON_0011025;aryepiglotticus muscle;aryepiglotticus -http://purl.obolibrary.org/obo/UBERON_0011025;aryepiglotticus muscle;aryepiglottus -http://purl.obolibrary.org/obo/UBERON_0011025;aryepiglotticus muscle;aryepiglottus muscle -http://purl.obolibrary.org/obo/UBERON_0011025;aryepiglotticus muscle;pars aryepiglottica (musculus arytenoideus obliquus) -http://purl.obolibrary.org/obo/UBERON_0011025;aryepiglotticus muscle;pars aryepiglottica musculus arytenoidei obliqui -http://purl.obolibrary.org/obo/UBERON_0011043;obturator muscle; -http://purl.obolibrary.org/obo/UBERON_0011048;obturator internus;internal obturator -http://purl.obolibrary.org/obo/UBERON_0011048;obturator internus;musculus obturator internus -http://purl.obolibrary.org/obo/UBERON_0011049;uterovesical pouch;excavatio vesico-uterina -http://purl.obolibrary.org/obo/UBERON_0011049;uterovesical pouch;excavatio vesicouterina -http://purl.obolibrary.org/obo/UBERON_0011049;uterovesical pouch;vesico-uterine pouch -http://purl.obolibrary.org/obo/UBERON_0011049;uterovesical pouch;vesicouterine pouch -http://purl.obolibrary.org/obo/UBERON_0011050;thoracic vertebra 8;T8 vertebra -http://purl.obolibrary.org/obo/UBERON_0011050;thoracic vertebra 8;eighth dorsal vertebra -http://purl.obolibrary.org/obo/UBERON_0011050;thoracic vertebra 8;eighth thoracic vertebra -http://purl.obolibrary.org/obo/UBERON_0011060;perilymphatic channel;ductus perilymphaticus -http://purl.obolibrary.org/obo/UBERON_0011078;endolymphatic space; -http://purl.obolibrary.org/obo/UBERON_0011079;angular bone; -http://purl.obolibrary.org/obo/UBERON_0011085;palatoquadrate arch;dorsal visceral arch 1 -http://purl.obolibrary.org/obo/UBERON_0011085;palatoquadrate arch;upper pharyngeal jaw -http://purl.obolibrary.org/obo/UBERON_0011087;pharyngeal arch 7;gill arch 5 -http://purl.obolibrary.org/obo/UBERON_0011087;pharyngeal arch 7;visceral arch 7 -http://purl.obolibrary.org/obo/UBERON_0011088;ligament of knee joint;knee joint ligament -http://purl.obolibrary.org/obo/UBERON_0011090;skeleton of right pelvic girdle; -http://purl.obolibrary.org/obo/UBERON_0011091;skeleton of left pelvic girdle; -http://purl.obolibrary.org/obo/UBERON_0011092;right pelvic girdle region;right pelvic girdle -http://purl.obolibrary.org/obo/UBERON_0011093;left pelvic girdle region;left pelvic girdle -http://purl.obolibrary.org/obo/UBERON_0011094;vertebra cartilage element;vertebral cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0011095;vertebra pre-cartilage condensation;vertebral pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0011096;lacrimal nerve;nervus lacrimalis -http://purl.obolibrary.org/obo/UBERON_0011104;epiphysis of fifth metacarpal bone;fifth metacarpal bone epiphysis -http://purl.obolibrary.org/obo/UBERON_0011104;epiphysis of fifth metacarpal bone;metacarpal 5 epiphysis -http://purl.obolibrary.org/obo/UBERON_0011106;cruciate ligament of atlas;cruciate ligament of dens -http://purl.obolibrary.org/obo/UBERON_0011106;cruciate ligament of atlas;cruciform ligament of atlas -http://purl.obolibrary.org/obo/UBERON_0011106;cruciate ligament of atlas;cruciform ligament of dens -http://purl.obolibrary.org/obo/UBERON_0011106;cruciate ligament of atlas;ligamentum cruciforme atlantis -http://purl.obolibrary.org/obo/UBERON_0011107;synovial joint of pelvic girdle;joint of pelvic girdle -http://purl.obolibrary.org/obo/UBERON_0011107;synovial joint of pelvic girdle;pelvic girdle joint -http://purl.obolibrary.org/obo/UBERON_0011108;synovial joint of pectoral girdle;joint of shoulder girdle -http://purl.obolibrary.org/obo/UBERON_0011108;synovial joint of pectoral girdle;pectoral girdle joint -http://purl.obolibrary.org/obo/UBERON_0011110;humeroulnar joint;articulatio humeroulnaris -http://purl.obolibrary.org/obo/UBERON_0011110;humeroulnar joint;humero-ulnar joint -http://purl.obolibrary.org/obo/UBERON_0011111;humeroradial joint;articulatio humeroradialis -http://purl.obolibrary.org/obo/UBERON_0011111;humeroradial joint;humero-radial joint -http://purl.obolibrary.org/obo/UBERON_0011112;tibiofibular joint;fibulatibial joint -http://purl.obolibrary.org/obo/UBERON_0011112;tibiofibular joint;fibulotibial joint -http://purl.obolibrary.org/obo/UBERON_0011112;tibiofibular joint;tibiafibular joint -http://purl.obolibrary.org/obo/UBERON_0011113;inferior tibiofibular joint;distal tibiofibular joint -http://purl.obolibrary.org/obo/UBERON_0011113;inferior tibiofibular joint;syndesmosis tibiofibularis -http://purl.obolibrary.org/obo/UBERON_0011113;inferior tibiofibular joint;tibiofibular syndesmosis -http://purl.obolibrary.org/obo/UBERON_0011117;superior tibiofibular joint;proximal tibiofibular joint -http://purl.obolibrary.org/obo/UBERON_0011118;tarsometatarsal joint;tarso-metatarsal join -http://purl.obolibrary.org/obo/UBERON_0011119;carpometacarpal joint;articulationes carpometacarpeæ -http://purl.obolibrary.org/obo/UBERON_0011120;laryngeal joint;joint of larynx -http://purl.obolibrary.org/obo/UBERON_0011120;laryngeal joint;laryngeal articulation -http://purl.obolibrary.org/obo/UBERON_0011121;cricothyroid joint;cricothyroid articulation -http://purl.obolibrary.org/obo/UBERON_0011122;cricoarytenoid joint;crico-arytenoid joint -http://purl.obolibrary.org/obo/UBERON_0011122;cricoarytenoid joint;cricoarytenoid articulation -http://purl.obolibrary.org/obo/UBERON_0011123;stifle joint; -http://purl.obolibrary.org/obo/UBERON_0011124;xiphisternal joint;synchondrosis xiphisternalis -http://purl.obolibrary.org/obo/UBERON_0011130;temporomandibular joint primordium;temporo-mandibular joint primordium -http://purl.obolibrary.org/obo/UBERON_0011131;intermetacarpal joint; -http://purl.obolibrary.org/obo/UBERON_0011132;intercarpal joint;carpal joint -http://purl.obolibrary.org/obo/UBERON_0011133;intermetatarsal joint; -http://purl.obolibrary.org/obo/UBERON_0011134;nonsynovial joint;solid joint -http://purl.obolibrary.org/obo/UBERON_0011135;intervertebral cartilage; -http://purl.obolibrary.org/obo/UBERON_0011136;ligament of vertebral column;vertebral column ligament -http://purl.obolibrary.org/obo/UBERON_0011137;axial skeletal system; -http://purl.obolibrary.org/obo/UBERON_0011138;postcranial axial skeletal system;post-cranial axial skeletal system -http://purl.obolibrary.org/obo/UBERON_0011139;synovial limb joint;synovial joint of free limb segment -http://purl.obolibrary.org/obo/UBERON_0011140;superficial part of masseter muscle;masseter, superficial -http://purl.obolibrary.org/obo/UBERON_0011140;superficial part of masseter muscle;pars profunda musculus masseterica superficialis -http://purl.obolibrary.org/obo/UBERON_0011140;superficial part of masseter muscle;pars superficialis (musculus masseter) -http://purl.obolibrary.org/obo/UBERON_0011140;superficial part of masseter muscle;pars superficialis of masseter muscle -http://purl.obolibrary.org/obo/UBERON_0011140;superficial part of masseter muscle;superficial layer of masseter -http://purl.obolibrary.org/obo/UBERON_0011140;superficial part of masseter muscle;superficial part of masseter -http://purl.obolibrary.org/obo/UBERON_0011141;appendicular ossicle;ossicle of appendicular skeleton -http://purl.obolibrary.org/obo/UBERON_0011142;axial ossicle;ossicle of axial skeleton -http://purl.obolibrary.org/obo/UBERON_0011142;axial ossicle;ossicle of postcranial-axial skeleton -http://purl.obolibrary.org/obo/UBERON_0011143;upper urinary tract; -http://purl.obolibrary.org/obo/UBERON_0011144;adductor muscle of hip;adductor group (leg) -http://purl.obolibrary.org/obo/UBERON_0011145;adductor muscle; -http://purl.obolibrary.org/obo/UBERON_0011146;silk gland; -http://purl.obolibrary.org/obo/UBERON_0011147;Verson's gland; -http://purl.obolibrary.org/obo/UBERON_0011148;submucosal gland; -http://purl.obolibrary.org/obo/UBERON_0011149;Marshall's gland; -http://purl.obolibrary.org/obo/UBERON_0011150;pharyngeal arch derived gill; -http://purl.obolibrary.org/obo/UBERON_0011151;jaw depressor muscle; -http://purl.obolibrary.org/obo/UBERON_0011152;dorsal hyoid arch skeleton;dorsal hyoid arch -http://purl.obolibrary.org/obo/UBERON_0011152;dorsal hyoid arch skeleton;dorsal pharyngeal arch 2 skeleton -http://purl.obolibrary.org/obo/UBERON_0011152;dorsal hyoid arch skeleton;dorsal visceral arch 2 -http://purl.obolibrary.org/obo/UBERON_0011153;ventral hyoid arch skeleton;ventral hyoid arch -http://purl.obolibrary.org/obo/UBERON_0011153;ventral hyoid arch skeleton;ventral pharyngeal arch 2 skeleton -http://purl.obolibrary.org/obo/UBERON_0011153;ventral hyoid arch skeleton;ventral visceral arch 2 -http://purl.obolibrary.org/obo/UBERON_0011154;gular region; -http://purl.obolibrary.org/obo/UBERON_0011155;Sylvian cistern; -http://purl.obolibrary.org/obo/UBERON_0011156;facial skeleton;facial skeleton -http://purl.obolibrary.org/obo/UBERON_0011157;cuneiform cartilage;Wrisbergi cartilage -http://purl.obolibrary.org/obo/UBERON_0011157;cuneiform cartilage;cartilage of Morgagni -http://purl.obolibrary.org/obo/UBERON_0011157;cuneiform cartilage;cartilage of Wrisberg -http://purl.obolibrary.org/obo/UBERON_0011158;primary subdivision of skull;skull subdivision -http://purl.obolibrary.org/obo/UBERON_0011158;primary subdivision of skull;subdivision of skull -http://purl.obolibrary.org/obo/UBERON_0011159;primary subdivision of cranial skeletal system; -http://purl.obolibrary.org/obo/UBERON_0011160;nasal suture; -http://purl.obolibrary.org/obo/UBERON_0011161;spheno-occipital synchondrosis; -http://purl.obolibrary.org/obo/UBERON_0011162;supraoccipital cartilage element;supra-occipital cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0011162;supraoccipital cartilage element;supraoccipital cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0011163;supraoccipital pre-cartilage condensation;supra-occipital pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0011164;neurocranium bone;chondrocranium bone -http://purl.obolibrary.org/obo/UBERON_0011165;crico-esophageal tendon;crico-oesophageal tendon -http://purl.obolibrary.org/obo/UBERON_0011165;crico-esophageal tendon;cricoesophageal tendon -http://purl.obolibrary.org/obo/UBERON_0011165;crico-esophageal tendon;tendo cricoesophageus -http://purl.obolibrary.org/obo/UBERON_0011166;patellofemoral joint;femorapatellar joint -http://purl.obolibrary.org/obo/UBERON_0011166;patellofemoral joint;femoropatellar joint -http://purl.obolibrary.org/obo/UBERON_0011166;patellofemoral joint;patello femoral joint -http://purl.obolibrary.org/obo/UBERON_0011167;septomaxilla bone;septomaxilla -http://purl.obolibrary.org/obo/UBERON_0011168;postfrontal bone; -http://purl.obolibrary.org/obo/UBERON_0011169;postorbital bone; -http://purl.obolibrary.org/obo/UBERON_0011170;quadrate-articular joint; -http://purl.obolibrary.org/obo/UBERON_0011171;joint connecting upper and lower jaws; -http://purl.obolibrary.org/obo/UBERON_0011172;retrorubral area of midbrain reticular nucleus;midbrain reticular nucleus, retrorubral area -http://purl.obolibrary.org/obo/UBERON_0011172;retrorubral area of midbrain reticular nucleus;retrorubral area -http://purl.obolibrary.org/obo/UBERON_0011173;anterior division of bed nuclei of stria terminalis;anterior division -http://purl.obolibrary.org/obo/UBERON_0011173;anterior division of bed nuclei of stria terminalis;anterior nuclei of stria terminalis -http://purl.obolibrary.org/obo/UBERON_0011173;anterior division of bed nuclei of stria terminalis;anterior part of the bed nucleus of the stria terminalis -http://purl.obolibrary.org/obo/UBERON_0011173;anterior division of bed nuclei of stria terminalis;bed nuclei of the stria terminalis anterior division -http://purl.obolibrary.org/obo/UBERON_0011173;anterior division of bed nuclei of stria terminalis;bed nuclei of the stria terminalis, anterior division -http://purl.obolibrary.org/obo/UBERON_0011173;anterior division of bed nuclei of stria terminalis;bed nuclei of the stria terminals anterior division -http://purl.obolibrary.org/obo/UBERON_0011173;anterior division of bed nuclei of stria terminalis;bed nucleus of the stria terminalis anterior division -http://purl.obolibrary.org/obo/UBERON_0011173;anterior division of bed nuclei of stria terminalis;bed nucleus of the stria terminalis anterior part -http://purl.obolibrary.org/obo/UBERON_0011173;anterior division of bed nuclei of stria terminalis;bed nucleus of thestria terminalis anterior division -http://purl.obolibrary.org/obo/UBERON_0011175;fusiform nucleus of stria terminalis;bed nuclei of the stria terminalis, anterior division, fusiform nucleus -http://purl.obolibrary.org/obo/UBERON_0011176;oval nucleus of stria terminalis;bed nuclei of the stria terminalis, anterior division, oval nucleus -http://purl.obolibrary.org/obo/UBERON_0011176;oval nucleus of stria terminalis;oval nucleus -http://purl.obolibrary.org/obo/UBERON_0011177;posterior division of bed nuclei of stria terminalis;bed nuclei of the stria terminalis, posterior division -http://purl.obolibrary.org/obo/UBERON_0011177;posterior division of bed nuclei of stria terminalis;posterior nuclei of stria terminalis -http://purl.obolibrary.org/obo/UBERON_0011178;principal nucleus of stria terminalis;bed nuclei of the stria terminalis, posterior division, principal nucleus -http://purl.obolibrary.org/obo/UBERON_0011179;transverse nucleus of stria terminalis;bed nuclei of the stria terminalis, posterior division, transverse nucleus -http://purl.obolibrary.org/obo/UBERON_0011183;corpus spongiosum of penis;corpus cavernosum urethra -http://purl.obolibrary.org/obo/UBERON_0011183;corpus spongiosum of penis;corpus cavernosum urethrae -http://purl.obolibrary.org/obo/UBERON_0011183;corpus spongiosum of penis;corpus spongiosum -http://purl.obolibrary.org/obo/UBERON_0011183;corpus spongiosum of penis;spongiose body of penis -http://purl.obolibrary.org/obo/UBERON_0011184;epithelium of crypt of Lieberkuhn;intestinal crypt epithelium -http://purl.obolibrary.org/obo/UBERON_0011185;gastrointestinal sphincter; -http://purl.obolibrary.org/obo/UBERON_0011186;Krause's gland;Krause gland -http://purl.obolibrary.org/obo/UBERON_0011187;ventral tubercle of humerus;greater tubercle -http://purl.obolibrary.org/obo/UBERON_0011187;ventral tubercle of humerus;greater tubercle of humerus -http://purl.obolibrary.org/obo/UBERON_0011187;ventral tubercle of humerus;greater tuberosity of humerus -http://purl.obolibrary.org/obo/UBERON_0011187;ventral tubercle of humerus;tuberculum majus -http://purl.obolibrary.org/obo/UBERON_0011187;ventral tubercle of humerus;tuberculum majus humeri -http://purl.obolibrary.org/obo/UBERON_0011188;lesser tubercle of humerus;lesser tubercle -http://purl.obolibrary.org/obo/UBERON_0011188;lesser tubercle of humerus;lesser tuberosity of humerus -http://purl.obolibrary.org/obo/UBERON_0011188;lesser tubercle of humerus;tuberculum minus -http://purl.obolibrary.org/obo/UBERON_0011189;lamina propria of large intestine;lamina propria of mucosa of large intestine -http://purl.obolibrary.org/obo/UBERON_0011189;lamina propria of large intestine;large intestinal lamina propria -http://purl.obolibrary.org/obo/UBERON_0011189;lamina propria of large intestine;large intestine lamina propria -http://purl.obolibrary.org/obo/UBERON_0011190;lunule of nail;lunula -http://purl.obolibrary.org/obo/UBERON_0011190;lunule of nail;lunula unguis -http://purl.obolibrary.org/obo/UBERON_0011190;lunule of nail;nail lunule -http://purl.obolibrary.org/obo/UBERON_0011191;ophthalmic vein;opthalmic vein -http://purl.obolibrary.org/obo/UBERON_0011192;superior ophthalmic vein; -http://purl.obolibrary.org/obo/UBERON_0011193;inferior ophthalmic vein; -http://purl.obolibrary.org/obo/UBERON_0011194;ophthalmic plexus;ophthalmic nerve plexus -http://purl.obolibrary.org/obo/UBERON_0011194;ophthalmic plexus;ophthalmic plexus -http://purl.obolibrary.org/obo/UBERON_0011194;ophthalmic plexus;opthalmic plexus -http://purl.obolibrary.org/obo/UBERON_0011194;ophthalmic plexus;plexus ophthalmicus -http://purl.obolibrary.org/obo/UBERON_0011195;inferior parathyroid epithelium;parathyroid III epithelium -http://purl.obolibrary.org/obo/UBERON_0011196;superior parathyroid epithelium; -http://purl.obolibrary.org/obo/UBERON_0011197;parathyroid epithelium; -http://purl.obolibrary.org/obo/UBERON_0011198;muscle layer of large intestine;muscular coat of large intestine -http://purl.obolibrary.org/obo/UBERON_0011198;muscle layer of large intestine;muscular layer of large intestine -http://purl.obolibrary.org/obo/UBERON_0011198;muscle layer of large intestine;muscularis externa of large intestine -http://purl.obolibrary.org/obo/UBERON_0011198;muscle layer of large intestine;tunica muscularis intestini crassi -http://purl.obolibrary.org/obo/UBERON_0011199;prostatic utricle;sinus pocularis -http://purl.obolibrary.org/obo/UBERON_0011199;prostatic utricle;uterus masculinus -http://purl.obolibrary.org/obo/UBERON_0011199;prostatic utricle;utricle of prostate -http://purl.obolibrary.org/obo/UBERON_0011199;prostatic utricle;utriculus of prostate -http://purl.obolibrary.org/obo/UBERON_0011199;prostatic utricle;vagina masculina -http://purl.obolibrary.org/obo/UBERON_0011200;sacrococcygeal symphysis;sacrococcygeal joint -http://purl.obolibrary.org/obo/UBERON_0011201;muscle layer of small intestine;muscular coat of small intestine -http://purl.obolibrary.org/obo/UBERON_0011201;muscle layer of small intestine;muscular layer of small intestine -http://purl.obolibrary.org/obo/UBERON_0011201;muscle layer of small intestine;muscularis externa of small intestine -http://purl.obolibrary.org/obo/UBERON_0011201;muscle layer of small intestine;small intestine muscularis propria -http://purl.obolibrary.org/obo/UBERON_0011201;muscle layer of small intestine;tunica muscularis (intestinum tenue) -http://purl.obolibrary.org/obo/UBERON_0011201;muscle layer of small intestine;tunica muscularis intestini tenuis -http://purl.obolibrary.org/obo/UBERON_0011202;urachus epithelium; -http://purl.obolibrary.org/obo/UBERON_0011203;urachus mesenchyme; -http://purl.obolibrary.org/obo/UBERON_0011204;rectovesical pouch;excavatio rectovesicalis -http://purl.obolibrary.org/obo/UBERON_0011204;rectovesical pouch;recto-vesical pouch -http://purl.obolibrary.org/obo/UBERON_0011204;rectovesical pouch;rectovesical space -http://purl.obolibrary.org/obo/UBERON_0011205;carpometacarpus;carpometacarpus bone -http://purl.obolibrary.org/obo/UBERON_0011206;hinge joint; -http://purl.obolibrary.org/obo/UBERON_0011207;iliocostalis lumborum; -http://purl.obolibrary.org/obo/UBERON_0011208;medial migration pathway NC-derived mesenchyme;medial migration pathway mesenchyme -http://purl.obolibrary.org/obo/UBERON_0011209;lateral migration pathway NC-derived mesenchyme;lateral migration pathway mesenchyme -http://purl.obolibrary.org/obo/UBERON_0011210;migration pathway NC-derived mesenchyme;migration pathway mesenchyme -http://purl.obolibrary.org/obo/UBERON_0011213;root of vagus nerve;rootlet of vagus nerve -http://purl.obolibrary.org/obo/UBERON_0011213;root of vagus nerve;vagal root -http://purl.obolibrary.org/obo/UBERON_0011213;root of vagus nerve;vagus nerve root -http://purl.obolibrary.org/obo/UBERON_0011213;root of vagus nerve;vagus root -http://purl.obolibrary.org/obo/UBERON_0011214;nucleus of midbrain tectum;nucleus of tectum -http://purl.obolibrary.org/obo/UBERON_0011215;central nervous system cell part cluster;cell part cluster of neuraxis -http://purl.obolibrary.org/obo/UBERON_0011215;central nervous system cell part cluster;neuraxis layer -http://purl.obolibrary.org/obo/UBERON_0011216;organ system subdivision; -http://purl.obolibrary.org/obo/UBERON_0011217;serratus dorsalis muscle;serratus dorsalis -http://purl.obolibrary.org/obo/UBERON_0011217;serratus dorsalis muscle;serratus posterior -http://purl.obolibrary.org/obo/UBERON_0011217;serratus dorsalis muscle;serratus posterior muscle -http://purl.obolibrary.org/obo/UBERON_0011218;spinalis cervicis muscle;spinal muscle of neck -http://purl.obolibrary.org/obo/UBERON_0011219;longissimus lumborum muscle;longissimus lumborum -http://purl.obolibrary.org/obo/UBERON_0011220;mastoid process of temporal bone;mastoid process -http://purl.obolibrary.org/obo/UBERON_0011220;mastoid process of temporal bone;mastoid process of skull -http://purl.obolibrary.org/obo/UBERON_0011221;ora serrata of retina;ora serrata -http://purl.obolibrary.org/obo/UBERON_0011221;ora serrata of retina;ora serrata retinae -http://purl.obolibrary.org/obo/UBERON_0011222;intra-ocular muscle;intrinsic muscle of eyeball -http://purl.obolibrary.org/obo/UBERON_0011222;intra-ocular muscle;intrinsic ocular muscle -http://purl.obolibrary.org/obo/UBERON_0011233;synovial membrane of synovial tendon sheath; -http://purl.obolibrary.org/obo/UBERON_0011234;fibrous membrane of synovial tendon sheath; -http://purl.obolibrary.org/obo/UBERON_0011236;deep fascia;fascia profunda -http://purl.obolibrary.org/obo/UBERON_0011237;visceral fascia; -http://purl.obolibrary.org/obo/UBERON_0011238;mesethmoid bone; -http://purl.obolibrary.org/obo/UBERON_0011241;ethmoid region; -http://purl.obolibrary.org/obo/UBERON_0011242;ethmoid cartilage;ethmoid cartilages -http://purl.obolibrary.org/obo/UBERON_0011244;perpendicular plate of ethmoid;lamina perpendicularis (os ethmoidale) -http://purl.obolibrary.org/obo/UBERON_0011244;perpendicular plate of ethmoid;lamina perpendicularis of ethmoid bone -http://purl.obolibrary.org/obo/UBERON_0011245;infra-orbital canal of maxilla;canalis infra-orbitalis -http://purl.obolibrary.org/obo/UBERON_0011245;infra-orbital canal of maxilla;canalis infraorbitalis -http://purl.obolibrary.org/obo/UBERON_0011246;procoracoid bone; -http://purl.obolibrary.org/obo/UBERON_0011247;procoracoid cartilage; -http://purl.obolibrary.org/obo/UBERON_0011248;procoracoid element;procoracoid -http://purl.obolibrary.org/obo/UBERON_0011249;appendicular skeletal system; -http://purl.obolibrary.org/obo/UBERON_0011250;autopod bone; -http://purl.obolibrary.org/obo/UBERON_0011251;levator claviculae muscle;cleidocervicalis -http://purl.obolibrary.org/obo/UBERON_0011251;levator claviculae muscle;cleidocervicalis muscle -http://purl.obolibrary.org/obo/UBERON_0011251;levator claviculae muscle;levator claviculae -http://purl.obolibrary.org/obo/UBERON_0011251;levator claviculae muscle;musculus levator claviculae -http://purl.obolibrary.org/obo/UBERON_0011251;levator claviculae muscle;omocervicalis -http://purl.obolibrary.org/obo/UBERON_0011251;levator claviculae muscle;tracheloacromial muscle -http://purl.obolibrary.org/obo/UBERON_0011252;scent gland; -http://purl.obolibrary.org/obo/UBERON_0011253;gland of anal sac;anal sac gland -http://purl.obolibrary.org/obo/UBERON_0011255;Eimer's organ; -http://purl.obolibrary.org/obo/UBERON_0011256;rhinarium; -http://purl.obolibrary.org/obo/UBERON_0011263;femoral gland; -http://purl.obolibrary.org/obo/UBERON_0011264;femoral pore; -http://purl.obolibrary.org/obo/UBERON_0011265;carpometacarpal joint of digit 1;carpometacarpal joint of digit I -http://purl.obolibrary.org/obo/UBERON_0011265;carpometacarpal joint of digit 1;carpometacarpal joint of pollex -http://purl.obolibrary.org/obo/UBERON_0011265;carpometacarpal joint of digit 1;carpometacarpal joint of thumb -http://purl.obolibrary.org/obo/UBERON_0011267;quadratojugal bone;quadratojugal -http://purl.obolibrary.org/obo/UBERON_0011268;sublingua; -http://purl.obolibrary.org/obo/UBERON_0011270;dorsal trunk;back of trunk -http://purl.obolibrary.org/obo/UBERON_0011270;dorsal trunk;dorsal part of trunk -http://purl.obolibrary.org/obo/UBERON_0011270;dorsal trunk;dorsum of trunk -http://purl.obolibrary.org/obo/UBERON_0011270;dorsal trunk;trunk back -http://purl.obolibrary.org/obo/UBERON_0011271;caudal-sacral region of vertebral column;caudal-sacral vertebrae series -http://purl.obolibrary.org/obo/UBERON_0011272;embryonic skin basal layer; -http://purl.obolibrary.org/obo/UBERON_0011273;nail of manual digit 1;claw of digit 1 of fore-paw -http://purl.obolibrary.org/obo/UBERON_0011273;nail of manual digit 1;nail of manual digit I -http://purl.obolibrary.org/obo/UBERON_0011273;nail of manual digit 1;nail of thumb -http://purl.obolibrary.org/obo/UBERON_0011273;nail of manual digit 1;nail plate of thumb -http://purl.obolibrary.org/obo/UBERON_0011273;nail of manual digit 1;thumb nail -http://purl.obolibrary.org/obo/UBERON_0011274;nail of manual digit 2;claw of digit 2 of fore-paw -http://purl.obolibrary.org/obo/UBERON_0011274;nail of manual digit 2;index finger nail -http://purl.obolibrary.org/obo/UBERON_0011274;nail of manual digit 2;nail of index finger -http://purl.obolibrary.org/obo/UBERON_0011274;nail of manual digit 2;nail of manual digit II -http://purl.obolibrary.org/obo/UBERON_0011274;nail of manual digit 2;nail of second finger -http://purl.obolibrary.org/obo/UBERON_0011274;nail of manual digit 2;nail plate of index finger -http://purl.obolibrary.org/obo/UBERON_0011275;nail of manual digit 3;claw of digit 3 of fore-paw -http://purl.obolibrary.org/obo/UBERON_0011275;nail of manual digit 3;middle finger nail -http://purl.obolibrary.org/obo/UBERON_0011275;nail of manual digit 3;nail of manual digit III -http://purl.obolibrary.org/obo/UBERON_0011275;nail of manual digit 3;nail of middle finger -http://purl.obolibrary.org/obo/UBERON_0011275;nail of manual digit 3;nail of third finger -http://purl.obolibrary.org/obo/UBERON_0011275;nail of manual digit 3;nail plate of middle finger -http://purl.obolibrary.org/obo/UBERON_0011276;nail of manual digit 4;claw of digit 4 of fore-paw -http://purl.obolibrary.org/obo/UBERON_0011276;nail of manual digit 4;nail of fourth finger -http://purl.obolibrary.org/obo/UBERON_0011276;nail of manual digit 4;nail of manual digit IV -http://purl.obolibrary.org/obo/UBERON_0011276;nail of manual digit 4;nail of ring finger -http://purl.obolibrary.org/obo/UBERON_0011276;nail of manual digit 4;nail plate of ring finger -http://purl.obolibrary.org/obo/UBERON_0011276;nail of manual digit 4;ring finger nail -http://purl.obolibrary.org/obo/UBERON_0011277;nail of manual digit 5;claw of digit 5 of fore-paw -http://purl.obolibrary.org/obo/UBERON_0011277;nail of manual digit 5;little finger nail -http://purl.obolibrary.org/obo/UBERON_0011277;nail of manual digit 5;nail of fifth finger -http://purl.obolibrary.org/obo/UBERON_0011277;nail of manual digit 5;nail of manual digit V -http://purl.obolibrary.org/obo/UBERON_0011277;nail of manual digit 5;nail plate of little finger -http://purl.obolibrary.org/obo/UBERON_0011278;nail of pedal digit 1;big toe nail -http://purl.obolibrary.org/obo/UBERON_0011278;nail of pedal digit 1;claw of digit 1 of hind-paw -http://purl.obolibrary.org/obo/UBERON_0011278;nail of pedal digit 1;nail of big toe -http://purl.obolibrary.org/obo/UBERON_0011278;nail of pedal digit 1;nail of great toe -http://purl.obolibrary.org/obo/UBERON_0011278;nail of pedal digit 1;nail of pedal digit I -http://purl.obolibrary.org/obo/UBERON_0011278;nail of pedal digit 1;nail plate of big toe -http://purl.obolibrary.org/obo/UBERON_0011279;nail of pedal digit 2;claw of digit 2 of hind-paw -http://purl.obolibrary.org/obo/UBERON_0011279;nail of pedal digit 2;nail of pedal digit II -http://purl.obolibrary.org/obo/UBERON_0011279;nail of pedal digit 2;nail of second toe -http://purl.obolibrary.org/obo/UBERON_0011279;nail of pedal digit 2;nail plate of second toe -http://purl.obolibrary.org/obo/UBERON_0011279;nail of pedal digit 2;second toe nail -http://purl.obolibrary.org/obo/UBERON_0011280;nail of pedal digit 3;claw of digit 3 of hind-paw -http://purl.obolibrary.org/obo/UBERON_0011280;nail of pedal digit 3;nail of pedal digit III -http://purl.obolibrary.org/obo/UBERON_0011280;nail of pedal digit 3;nail of third toe -http://purl.obolibrary.org/obo/UBERON_0011280;nail of pedal digit 3;nail plate of third toe -http://purl.obolibrary.org/obo/UBERON_0011280;nail of pedal digit 3;third toe nail -http://purl.obolibrary.org/obo/UBERON_0011281;nail of pedal digit 4;claw of digit 4 of hind-paw -http://purl.obolibrary.org/obo/UBERON_0011281;nail of pedal digit 4;fourth toe nail -http://purl.obolibrary.org/obo/UBERON_0011281;nail of pedal digit 4;nail of fourth toe -http://purl.obolibrary.org/obo/UBERON_0011281;nail of pedal digit 4;nail of pedal digit IV -http://purl.obolibrary.org/obo/UBERON_0011281;nail of pedal digit 4;nail plate of fourth toe -http://purl.obolibrary.org/obo/UBERON_0011282;nail of pedal digit 5;claw of digit 5 of hind-paw -http://purl.obolibrary.org/obo/UBERON_0011282;nail of pedal digit 5;little toe nail -http://purl.obolibrary.org/obo/UBERON_0011282;nail of pedal digit 5;nail of fifth toe -http://purl.obolibrary.org/obo/UBERON_0011282;nail of pedal digit 5;nail of little toe -http://purl.obolibrary.org/obo/UBERON_0011282;nail of pedal digit 5;nail of pedal digit V -http://purl.obolibrary.org/obo/UBERON_0011282;nail of pedal digit 5;nail plate of little toe -http://purl.obolibrary.org/obo/UBERON_0011283;epoophoron;organ of Rosenmuller -http://purl.obolibrary.org/obo/UBERON_0011287;rostral organ; -http://purl.obolibrary.org/obo/UBERON_0011288;stomochord; -http://purl.obolibrary.org/obo/UBERON_0011289;pharyngobasilar fascia;pharyngeal aponeurosis -http://purl.obolibrary.org/obo/UBERON_0011298;submucosa of uterine tube;submucosa of fallopian tube -http://purl.obolibrary.org/obo/UBERON_0011298;submucosa of uterine tube;tela submucosa tubae uterinae -http://purl.obolibrary.org/obo/UBERON_0011299;white matter of telencephalon;predominantly white regional part of telencephalon -http://purl.obolibrary.org/obo/UBERON_0011299;white matter of telencephalon;telencephalic tract/commissure -http://purl.obolibrary.org/obo/UBERON_0011299;white matter of telencephalon;telencephalic tracts -http://purl.obolibrary.org/obo/UBERON_0011299;white matter of telencephalon;telencephalic white matter -http://purl.obolibrary.org/obo/UBERON_0011300;gray matter of telencephalon;predominantly gray regional part of telencephalon -http://purl.obolibrary.org/obo/UBERON_0011301;manubrium sternum pre-cartilage condensation;manubrium sterni pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0011302;tunicate tunic; -http://purl.obolibrary.org/obo/UBERON_0011303;lamprey sucker; -http://purl.obolibrary.org/obo/UBERON_0011304;tunicate postabdomen; -http://purl.obolibrary.org/obo/UBERON_0011305;superficial part of temporalis;anterior temporal -http://purl.obolibrary.org/obo/UBERON_0011305;superficial part of temporalis;temporal muscle anterolateral part -http://purl.obolibrary.org/obo/UBERON_0011305;superficial part of temporalis;temporales -http://purl.obolibrary.org/obo/UBERON_0011305;superficial part of temporalis;temporalis anterior head -http://purl.obolibrary.org/obo/UBERON_0011305;superficial part of temporalis;temporalis pars anterior -http://purl.obolibrary.org/obo/UBERON_0011305;superficial part of temporalis;temporalis pars superficialis -http://purl.obolibrary.org/obo/UBERON_0011306;deep part of temporalis;medial temporal -http://purl.obolibrary.org/obo/UBERON_0011306;deep part of temporalis;posterior temporal -http://purl.obolibrary.org/obo/UBERON_0011306;deep part of temporalis;temporal muscle posterior part -http://purl.obolibrary.org/obo/UBERON_0011306;deep part of temporalis;temporalis bbHauptmassebb -http://purl.obolibrary.org/obo/UBERON_0011306;deep part of temporalis;temporalis lamina profunda -http://purl.obolibrary.org/obo/UBERON_0011306;deep part of temporalis;temporalis pars posterior -http://purl.obolibrary.org/obo/UBERON_0011306;deep part of temporalis;temporalis pars profunda -http://purl.obolibrary.org/obo/UBERON_0011306;deep part of temporalis;temporalis posterior head -http://purl.obolibrary.org/obo/UBERON_0011307;suprazygomatic part of temporalis;temporalis pars suprazygomatica -http://purl.obolibrary.org/obo/UBERON_0011307;suprazygomatic part of temporalis;zygomatic temporalis -http://purl.obolibrary.org/obo/UBERON_0011308;pars reflexa of masseter;masseter, pars reflexa -http://purl.obolibrary.org/obo/UBERON_0011309;body of mandible;corpus mandibulae -http://purl.obolibrary.org/obo/UBERON_0011309;body of mandible;mandibular body -http://purl.obolibrary.org/obo/UBERON_0011310;masseteric fossa; -http://purl.obolibrary.org/obo/UBERON_0011311;hyoepiglottic ligament;hyo-epiglottic ligament -http://purl.obolibrary.org/obo/UBERON_0011311;hyoepiglottic ligament;igamentum hyoepiglotticum -http://purl.obolibrary.org/obo/UBERON_0011312;hyoepiglottic muscle;hyo-epiglottic muscle -http://purl.obolibrary.org/obo/UBERON_0011312;hyoepiglottic muscle;hyoepiglotticus -http://purl.obolibrary.org/obo/UBERON_0011312;hyoepiglottic muscle;hyoepiglottus -http://purl.obolibrary.org/obo/UBERON_0011313;posterior subdivision of masseter;masseter, posterior -http://purl.obolibrary.org/obo/UBERON_0011314;anterior subdivision of masseter;masseter, anterior -http://purl.obolibrary.org/obo/UBERON_0011315;digastric branch of facial nerve;digastric branch of facial nerve (CN VII) -http://purl.obolibrary.org/obo/UBERON_0011315;digastric branch of facial nerve;facial nerve, digastric branch -http://purl.obolibrary.org/obo/UBERON_0011315;digastric branch of facial nerve;nerve to posterior belly of digastric -http://purl.obolibrary.org/obo/UBERON_0011315;digastric branch of facial nerve;ramus digastricus (nervus facialis) -http://purl.obolibrary.org/obo/UBERON_0011315;digastric branch of facial nerve;ramus digastricus nervus facialis -http://purl.obolibrary.org/obo/UBERON_0011316;nerve to stylohyoid from facial nerve;facial nerve stylohyoid branch -http://purl.obolibrary.org/obo/UBERON_0011316;nerve to stylohyoid from facial nerve;nerve to stylohyoid -http://purl.obolibrary.org/obo/UBERON_0011316;nerve to stylohyoid from facial nerve;ramus stylohyoideus -http://purl.obolibrary.org/obo/UBERON_0011316;nerve to stylohyoid from facial nerve;ramus stylohyoideus nervus facialis -http://purl.obolibrary.org/obo/UBERON_0011316;nerve to stylohyoid from facial nerve;stylodigastric nerve -http://purl.obolibrary.org/obo/UBERON_0011316;nerve to stylohyoid from facial nerve;stylohyoid branch of facial nerve -http://purl.obolibrary.org/obo/UBERON_0011317;nerve to stylopharyngeus from glossopharyngeal nerve;branch of glossopharyngeal nerve to stylopharyngeus -http://purl.obolibrary.org/obo/UBERON_0011317;nerve to stylopharyngeus from glossopharyngeal nerve;nerve to stylopharyngeus -http://purl.obolibrary.org/obo/UBERON_0011317;nerve to stylopharyngeus from glossopharyngeal nerve;ramus musculi stylopharyngei nervus glossopharyngei -http://purl.obolibrary.org/obo/UBERON_0011317;nerve to stylopharyngeus from glossopharyngeal nerve;stylopharyngeal branch of glossopharyngeal nerve -http://purl.obolibrary.org/obo/UBERON_0011318;capsule of temporomandibular joint;articular capsule of temporomandibular joint -http://purl.obolibrary.org/obo/UBERON_0011318;capsule of temporomandibular joint;capsula articularis articulationis temporomandibularis -http://purl.obolibrary.org/obo/UBERON_0011319;disk of temporomandibular joint;articular disc of temporomandibular joint -http://purl.obolibrary.org/obo/UBERON_0011319;disk of temporomandibular joint;articular disk of temporomandibular joint -http://purl.obolibrary.org/obo/UBERON_0011319;disk of temporomandibular joint;discus articularis (articulatio temporomandibularis) -http://purl.obolibrary.org/obo/UBERON_0011319;disk of temporomandibular joint;discus articularis articulationis temporomandibularis -http://purl.obolibrary.org/obo/UBERON_0011319;disk of temporomandibular joint;temporomandibular articular disk -http://purl.obolibrary.org/obo/UBERON_0011320;ligament of temporomandibular joint;temporomandibular joint ligament -http://purl.obolibrary.org/obo/UBERON_0011321;masseteric nerve;nervus massetericus -http://purl.obolibrary.org/obo/UBERON_0011322;mylohyoid nerve;branch of inferior alveolar nerve to mylohyoid -http://purl.obolibrary.org/obo/UBERON_0011322;mylohyoid nerve;mylodigastric nerve -http://purl.obolibrary.org/obo/UBERON_0011322;mylohyoid nerve;mylohyoid branch of inferior alveolar nerve -http://purl.obolibrary.org/obo/UBERON_0011322;mylohyoid nerve;nerve to mylohyoid -http://purl.obolibrary.org/obo/UBERON_0011322;mylohyoid nerve;nervus mylohyoideus -http://purl.obolibrary.org/obo/UBERON_0011325;pharyngeal nerve plexus;pharyngeal nerve plexus -http://purl.obolibrary.org/obo/UBERON_0011325;pharyngeal nerve plexus;pharyngeal plexus of vagus nerve -http://purl.obolibrary.org/obo/UBERON_0011325;pharyngeal nerve plexus;plexus pharyngeus nervi vagi -http://purl.obolibrary.org/obo/UBERON_0011325;pharyngeal nerve plexus;vagus nerve pharyngeal plexus -http://purl.obolibrary.org/obo/UBERON_0011326;superior laryngeal nerve;nervus laryngealis superior -http://purl.obolibrary.org/obo/UBERON_0011326;superior laryngeal nerve;nervus laryngeus superior -http://purl.obolibrary.org/obo/UBERON_0011326;superior laryngeal nerve;superior laryngeal branch of inferior vagal ganglion -http://purl.obolibrary.org/obo/UBERON_0011326;superior laryngeal nerve;superior laryngeal branch of vagus -http://purl.obolibrary.org/obo/UBERON_0011327;deep temporal nerve;nervi temporales profundi -http://purl.obolibrary.org/obo/UBERON_0011332;extrinsic tongue pre-muscle mass; -http://purl.obolibrary.org/obo/UBERON_0011342;surface of mandible;mandibular surface -http://purl.obolibrary.org/obo/UBERON_0011343;medial surface of mandible;medial surface of ramus of mandible -http://purl.obolibrary.org/obo/UBERON_0011344;lateral surface of mandible;lateral surface of ramus of mandible -http://purl.obolibrary.org/obo/UBERON_0011345;pharyngeal raphe;raphe pharyngis -http://purl.obolibrary.org/obo/UBERON_0011346;palatine raphe;raphe palati -http://purl.obolibrary.org/obo/UBERON_0011347;raphe of hard palate; -http://purl.obolibrary.org/obo/UBERON_0011348;raphe of soft palate; -http://purl.obolibrary.org/obo/UBERON_0011349;pterygomandibular raphe; -http://purl.obolibrary.org/obo/UBERON_0011350;mylohyoid raphe; -http://purl.obolibrary.org/obo/UBERON_0011357;Reissner's fiber;Reissner's fibre -http://purl.obolibrary.org/obo/UBERON_0011358;infundibular organ;infundibular organ of Boeke -http://purl.obolibrary.org/obo/UBERON_0011358;infundibular organ;ventral infundibular organ -http://purl.obolibrary.org/obo/UBERON_0011359;urophysis; -http://purl.obolibrary.org/obo/UBERON_0011360;ampulla caudalis; -http://purl.obolibrary.org/obo/UBERON_0011362;cranial blood vasculature;cranial blood vessel -http://purl.obolibrary.org/obo/UBERON_0011362;cranial blood vasculature;set of blood vessels of head -http://purl.obolibrary.org/obo/UBERON_0011363;cranial lymph vasculature;cranial lymph vessel -http://purl.obolibrary.org/obo/UBERON_0011363;cranial lymph vasculature;cranial lymphatics -http://purl.obolibrary.org/obo/UBERON_0011363;cranial lymph vasculature;set of lymphatic vessels of head -http://purl.obolibrary.org/obo/UBERON_0011364;cleidocephalicus muscle;cleidocephalic -http://purl.obolibrary.org/obo/UBERON_0011364;cleidocephalicus muscle;cleidocephalic muscle -http://purl.obolibrary.org/obo/UBERON_0011364;cleidocephalicus muscle;cleidocephalicus -http://purl.obolibrary.org/obo/UBERON_0011366;cleidobrachialis muscle;cleidobrachial -http://purl.obolibrary.org/obo/UBERON_0011366;cleidobrachialis muscle;cleidobrachial muscle -http://purl.obolibrary.org/obo/UBERON_0011366;cleidobrachialis muscle;cleidobrachialis -http://purl.obolibrary.org/obo/UBERON_0011368;brachiocephalic muscle; -http://purl.obolibrary.org/obo/UBERON_0011369;omotransversarius muscle;omotransverse -http://purl.obolibrary.org/obo/UBERON_0011369;omotransversarius muscle;omotransverse muscle -http://purl.obolibrary.org/obo/UBERON_0011370;transverse process of atlas; -http://purl.obolibrary.org/obo/UBERON_0011371;sternocephalicus muscle;sternocephalicus -http://purl.obolibrary.org/obo/UBERON_0011374;prepuce; -http://purl.obolibrary.org/obo/UBERON_0011375;skin of prepuce of clitoris;preputial skin of clitoris -http://purl.obolibrary.org/obo/UBERON_0011376;iliothoracic muscle;iliothoracic -http://purl.obolibrary.org/obo/UBERON_0011377;femorothoracic muscle;femorothoracic -http://purl.obolibrary.org/obo/UBERON_0011379;male external urethral sphincter;external urethral sphincter of male urethra -http://purl.obolibrary.org/obo/UBERON_0011379;male external urethral sphincter;male sphincter urethrae -http://purl.obolibrary.org/obo/UBERON_0011379;male external urethral sphincter;male sphincter urethrae muscle -http://purl.obolibrary.org/obo/UBERON_0011379;male external urethral sphincter;male urethral sphincter muscle -http://purl.obolibrary.org/obo/UBERON_0011379;male external urethral sphincter;musculus sphincter urethrae externus (urethra masculina) -http://purl.obolibrary.org/obo/UBERON_0011379;male external urethral sphincter;musculus sphincter urethrae externus urethrae masculinae -http://purl.obolibrary.org/obo/UBERON_0011379;male external urethral sphincter;musculus sphincter urethrae membranaceae -http://purl.obolibrary.org/obo/UBERON_0011380;female external urethral sphincter;external urethral sphincter of female urethra -http://purl.obolibrary.org/obo/UBERON_0011380;female external urethral sphincter;musculus sphincter urethrae externus (urethra feminina) -http://purl.obolibrary.org/obo/UBERON_0011380;female external urethral sphincter;musculus sphincter urethrae externus urethrae femininae -http://purl.obolibrary.org/obo/UBERON_0011380;female external urethral sphincter;outer muscle layer of female urethra -http://purl.obolibrary.org/obo/UBERON_0011380;female external urethral sphincter;rhabdosphincter of female urethra -http://purl.obolibrary.org/obo/UBERON_0011380;female external urethral sphincter;striated muscle layer of female urethra -http://purl.obolibrary.org/obo/UBERON_0011383;inferior pancreaticoduodenal vein;inferior pancreatico-duodenal vein -http://purl.obolibrary.org/obo/UBERON_0011384;superior pancreaticoduodenal vein;superior pancreatico-duodenal vein -http://purl.obolibrary.org/obo/UBERON_0011384;superior pancreaticoduodenal vein;vena pancreaticoduodenalis superior -http://purl.obolibrary.org/obo/UBERON_0011385;parotidoauricular muscle;parotidoauricular -http://purl.obolibrary.org/obo/UBERON_0011385;parotidoauricular muscle;parotidoauricularis -http://purl.obolibrary.org/obo/UBERON_0011386;facial modiolus;modiolus anguli oris -http://purl.obolibrary.org/obo/UBERON_0011387;constrictor vulvae muscle;constrictor vulvae -http://purl.obolibrary.org/obo/UBERON_0011388;male bulbospongiosus muscle;bulbospongiosus of male -http://purl.obolibrary.org/obo/UBERON_0011388;male bulbospongiosus muscle;male bulbospongiosus -http://purl.obolibrary.org/obo/UBERON_0011389;bulbospongiosus muscle;bulbospongiosus -http://purl.obolibrary.org/obo/UBERON_0011389;bulbospongiosus muscle;musculus bulbospongiosus -http://purl.obolibrary.org/obo/UBERON_0011390;pudendal nerve;internal pudendal nerve -http://purl.obolibrary.org/obo/UBERON_0011390;pudendal nerve;nervus pudendae -http://purl.obolibrary.org/obo/UBERON_0011390;pudendal nerve;nervus pudendales -http://purl.obolibrary.org/obo/UBERON_0011390;pudendal nerve;pudenal nerve -http://purl.obolibrary.org/obo/UBERON_0011390;pudendal nerve;pudendal -http://purl.obolibrary.org/obo/UBERON_0011391;perineal nerve;perineal branch of pudendal nerve -http://purl.obolibrary.org/obo/UBERON_0011392;blood vessel internal elastic membrane;inner elastic lamina -http://purl.obolibrary.org/obo/UBERON_0011392;blood vessel internal elastic membrane;internal elastic lamina -http://purl.obolibrary.org/obo/UBERON_0011392;blood vessel internal elastic membrane;internal elastic membrane -http://purl.obolibrary.org/obo/UBERON_0011415;cutaneous trunci muscle;cutaneous trunci -http://purl.obolibrary.org/obo/UBERON_0011464;levator nasolabialis muscle;levator nasolabialis -http://purl.obolibrary.org/obo/UBERON_0011465;longissimus atlantis muscle;longissimus atlantis -http://purl.obolibrary.org/obo/UBERON_0011472;ventral lateral sacrocaudal muscle;lumbosacrocaudalis -http://purl.obolibrary.org/obo/UBERON_0011472;ventral lateral sacrocaudal muscle;lumbosacrocaudalis muscle -http://purl.obolibrary.org/obo/UBERON_0011472;ventral lateral sacrocaudal muscle;ventral lateral sacrocaudal -http://purl.obolibrary.org/obo/UBERON_0011495;rectus thoracis muscle;rectus thoracis -http://purl.obolibrary.org/obo/UBERON_0011508;sphincter colli superficialis muscle;M. sphincter colli superficialis -http://purl.obolibrary.org/obo/UBERON_0011508;sphincter colli superficialis muscle;sphincter colli superficialis -http://purl.obolibrary.org/obo/UBERON_0011509;sphincter colli profundus muscle;M. sphincter colli profundus -http://purl.obolibrary.org/obo/UBERON_0011509;sphincter colli profundus muscle;sphincter colli profundus -http://purl.obolibrary.org/obo/UBERON_0011510;cloacal bursa; -http://purl.obolibrary.org/obo/UBERON_0011511;iliococcygeus muscle;iliococcygeus -http://purl.obolibrary.org/obo/UBERON_0011511;iliococcygeus muscle;musculus iliococcygeus -http://purl.obolibrary.org/obo/UBERON_0011512;puborectalis muscle;puborectalis -http://purl.obolibrary.org/obo/UBERON_0011528;pubococcygeus muscle;levator prostatae -http://purl.obolibrary.org/obo/UBERON_0011528;pubococcygeus muscle;musculus pubococcygeus -http://purl.obolibrary.org/obo/UBERON_0011528;pubococcygeus muscle;musculus pubovaginalis -http://purl.obolibrary.org/obo/UBERON_0011531;male pubococcygeus muscle;levator prostate -http://purl.obolibrary.org/obo/UBERON_0011531;male pubococcygeus muscle;levator prostate muscle -http://purl.obolibrary.org/obo/UBERON_0011531;male pubococcygeus muscle;musculus levator prostatae -http://purl.obolibrary.org/obo/UBERON_0011532;female pubococcygeus muscle;pubovaginalis -http://purl.obolibrary.org/obo/UBERON_0011532;female pubococcygeus muscle;pubovaginalis muscle -http://purl.obolibrary.org/obo/UBERON_0011533;abductor pollicis, radioulna-prepollox; -http://purl.obolibrary.org/obo/UBERON_0011534;abductor pollicis muscle; -http://purl.obolibrary.org/obo/UBERON_0011535;chondroglossus muscle;chondroglossal -http://purl.obolibrary.org/obo/UBERON_0011535;chondroglossus muscle;chondroglossus -http://purl.obolibrary.org/obo/UBERON_0011564;adductor pollicis muscle of prepollex; -http://purl.obolibrary.org/obo/UBERON_0011565;lumen of gastrointestinal system;cavity of digestive tract -http://purl.obolibrary.org/obo/UBERON_0011565;lumen of gastrointestinal system;cavity of gastrointestinal tract -http://purl.obolibrary.org/obo/UBERON_0011565;lumen of gastrointestinal system;gastrointestinal tract lumen -http://purl.obolibrary.org/obo/UBERON_0011565;lumen of gastrointestinal system;lumen of gastrointestinal tract -http://purl.obolibrary.org/obo/UBERON_0011566;lumen of esophagus;cavity of eosophagus -http://purl.obolibrary.org/obo/UBERON_0011566;lumen of esophagus;cavity of esophagus -http://purl.obolibrary.org/obo/UBERON_0011566;lumen of esophagus;eosophageal cavity -http://purl.obolibrary.org/obo/UBERON_0011566;lumen of esophagus;eosophageal lumen -http://purl.obolibrary.org/obo/UBERON_0011566;lumen of esophagus;eosophagus lumen -http://purl.obolibrary.org/obo/UBERON_0011566;lumen of esophagus;esophageal cavity -http://purl.obolibrary.org/obo/UBERON_0011566;lumen of esophagus;esophageal lumen -http://purl.obolibrary.org/obo/UBERON_0011566;lumen of esophagus;esophagus lumen -http://purl.obolibrary.org/obo/UBERON_0011574;mesonephric duct lumen;nephric duct lumen -http://purl.obolibrary.org/obo/UBERON_0011575;styloid process of ulna;processus styloideus ulnae -http://purl.obolibrary.org/obo/UBERON_0011575;styloid process of ulna;ulnar styloid process -http://purl.obolibrary.org/obo/UBERON_0011576;supraorbital ridge;margo supraorbitalis -http://purl.obolibrary.org/obo/UBERON_0011576;supraorbital ridge;superior orbital rim -http://purl.obolibrary.org/obo/UBERON_0011576;supraorbital ridge;supra-orbital margin -http://purl.obolibrary.org/obo/UBERON_0011576;supraorbital ridge;supra-orbital ridge -http://purl.obolibrary.org/obo/UBERON_0011576;supraorbital ridge;supraorbital margin -http://purl.obolibrary.org/obo/UBERON_0011577;flexural organ; -http://purl.obolibrary.org/obo/UBERON_0011579;venom gland; -http://purl.obolibrary.org/obo/UBERON_0011580;platypus crural gland; -http://purl.obolibrary.org/obo/UBERON_0011581;platypus calcaneus spur; -http://purl.obolibrary.org/obo/UBERON_0011582;paired limb/fin skeleton;limb/fin skeleton -http://purl.obolibrary.org/obo/UBERON_0011582;paired limb/fin skeleton;skeletal parts of limb/fin -http://purl.obolibrary.org/obo/UBERON_0011582;paired limb/fin skeleton;skeleton of limb/fin -http://purl.obolibrary.org/obo/UBERON_0011583;stylopodial skeleton;stylopodium skeleton -http://purl.obolibrary.org/obo/UBERON_0011584;zeugopodial skeleton;epipodial skeleton -http://purl.obolibrary.org/obo/UBERON_0011584;zeugopodial skeleton;skeleton of zeugopod -http://purl.obolibrary.org/obo/UBERON_0011584;zeugopodial skeleton;zeugopod skeleton -http://purl.obolibrary.org/obo/UBERON_0011585;cell condensation; -http://purl.obolibrary.org/obo/UBERON_0011587;pre-dentine;pre-dentine tissue -http://purl.obolibrary.org/obo/UBERON_0011587;pre-dentine;predentin -http://purl.obolibrary.org/obo/UBERON_0011587;pre-dentine;predentine tissue -http://purl.obolibrary.org/obo/UBERON_0011588;pre-enamel;pre-enamel tissue -http://purl.obolibrary.org/obo/UBERON_0011588;pre-enamel;preenamel tissue -http://purl.obolibrary.org/obo/UBERON_0011589;non-mineralized cartilage tissue; -http://purl.obolibrary.org/obo/UBERON_0011590;commissure of diencephalon;diencephalon commissure -http://purl.obolibrary.org/obo/UBERON_0011591;tract of diencephalon;diencephalon tract -http://purl.obolibrary.org/obo/UBERON_0011592;future upper lip;upper jaw future lip -http://purl.obolibrary.org/obo/UBERON_0011593;maxillary tooth;maxillary teeth -http://purl.obolibrary.org/obo/UBERON_0011594;dentary tooth; -http://purl.obolibrary.org/obo/UBERON_0011595;jaw region; -http://purl.obolibrary.org/obo/UBERON_0011596;future lower lip;lower jaw future lip -http://purl.obolibrary.org/obo/UBERON_0011597;bone of upper jaw;upper jaw bone -http://purl.obolibrary.org/obo/UBERON_0011598;coronoid bone; -http://purl.obolibrary.org/obo/UBERON_0011599;lenticular process of incus bone;incus crus longum -http://purl.obolibrary.org/obo/UBERON_0011599;lenticular process of incus bone;lenticular process of incus -http://purl.obolibrary.org/obo/UBERON_0011599;lenticular process of incus bone;processus lenticularis (incus) -http://purl.obolibrary.org/obo/UBERON_0011599;lenticular process of incus bone;processus lenticularis incudis -http://purl.obolibrary.org/obo/UBERON_0011601;gingiva of upper jaw;gum of maxilla -http://purl.obolibrary.org/obo/UBERON_0011601;gingiva of upper jaw;gum of upper jaw -http://purl.obolibrary.org/obo/UBERON_0011601;gingiva of upper jaw;upper gingiva -http://purl.obolibrary.org/obo/UBERON_0011601;gingiva of upper jaw;upper jaw gingiva -http://purl.obolibrary.org/obo/UBERON_0011602;gingiva of lower jaw;gum of lower jaw -http://purl.obolibrary.org/obo/UBERON_0011602;gingiva of lower jaw;gum of mandible -http://purl.obolibrary.org/obo/UBERON_0011602;gingiva of lower jaw;lower gingiva -http://purl.obolibrary.org/obo/UBERON_0011602;gingiva of lower jaw;lower jaw gingiva -http://purl.obolibrary.org/obo/UBERON_0011603;coronoid tooth;coronoid teeth -http://purl.obolibrary.org/obo/UBERON_0011604;carina of sternum; -http://purl.obolibrary.org/obo/UBERON_0011605;supracoracoideus muscle of wing; -http://purl.obolibrary.org/obo/UBERON_0011606;hyomandibular bone; -http://purl.obolibrary.org/obo/UBERON_0011607;hyomandibular cartilage;hyosymplectic cartilage -http://purl.obolibrary.org/obo/UBERON_0011607;hyomandibular cartilage;symplectic cartilage -http://purl.obolibrary.org/obo/UBERON_0011608;hyomandibular element;hyomandibula - stapes -http://purl.obolibrary.org/obo/UBERON_0011608;hyomandibular element;hyomandibula element -http://purl.obolibrary.org/obo/UBERON_0011609;ceratohyal element; -http://purl.obolibrary.org/obo/UBERON_0011610;ceratohyal cartilage; -http://purl.obolibrary.org/obo/UBERON_0011611;ceratohyal bone;anterior ceratohyal -http://purl.obolibrary.org/obo/UBERON_0011611;ceratohyal bone;anterohyal -http://purl.obolibrary.org/obo/UBERON_0011611;ceratohyal bone;ceratohyal -http://purl.obolibrary.org/obo/UBERON_0011611;ceratohyal bone;ceratohyal anterior -http://purl.obolibrary.org/obo/UBERON_0011611;ceratohyal bone;ceratohyal bone -http://purl.obolibrary.org/obo/UBERON_0011611;ceratohyal bone;ceratohyoid bone -http://purl.obolibrary.org/obo/UBERON_0011611;ceratohyal bone;distal ceratohyal -http://purl.obolibrary.org/obo/UBERON_0011611;ceratohyal bone;rostral ceratohyal -http://purl.obolibrary.org/obo/UBERON_0011612;hypohyal cartilage; -http://purl.obolibrary.org/obo/UBERON_0011613;hypohyal element; -http://purl.obolibrary.org/obo/UBERON_0011614;basihyal element; -http://purl.obolibrary.org/obo/UBERON_0011615;basihyal cartilage; -http://purl.obolibrary.org/obo/UBERON_0011618;basihyal bone;basihyoid -http://purl.obolibrary.org/obo/UBERON_0011618;basihyal bone;glossohyal -http://purl.obolibrary.org/obo/UBERON_0011619;stylohyoid bone; -http://purl.obolibrary.org/obo/UBERON_0011620;basihyal lingual process;lingual process of basihyoid -http://purl.obolibrary.org/obo/UBERON_0011620;basihyal lingual process;lingual process of basihyoid bone -http://purl.obolibrary.org/obo/UBERON_0011621;thyrohyoid cartilage; -http://purl.obolibrary.org/obo/UBERON_0011622;thyrohyoid bone; -http://purl.obolibrary.org/obo/UBERON_0011623;horn of thyroid cartilage;cornu of thyroid cartilage -http://purl.obolibrary.org/obo/UBERON_0011623;horn of thyroid cartilage;thyroid cartilage horn -http://purl.obolibrary.org/obo/UBERON_0011624;superior horn of thyroid cartilage;cornu superius (cartilago thyroidea) -http://purl.obolibrary.org/obo/UBERON_0011624;superior horn of thyroid cartilage;cornu superius cartilaginis thyroideae -http://purl.obolibrary.org/obo/UBERON_0011624;superior horn of thyroid cartilage;superior cornu of thyroid cartilage -http://purl.obolibrary.org/obo/UBERON_0011625;inferior horn of thyroid cartilage;cornu inferius (cartilago thyroidea) -http://purl.obolibrary.org/obo/UBERON_0011625;inferior horn of thyroid cartilage;cornu inferius cartilaginis thyroidea -http://purl.obolibrary.org/obo/UBERON_0011625;inferior horn of thyroid cartilage;cornu inferius cartilaginis thyroideae -http://purl.obolibrary.org/obo/UBERON_0011626;tympanohyoid cartilage; -http://purl.obolibrary.org/obo/UBERON_0011627;orbital part of frontal bone;pars orbitalis (os frontale) -http://purl.obolibrary.org/obo/UBERON_0011627;orbital part of frontal bone;pars orbitalis ossis frontalis -http://purl.obolibrary.org/obo/UBERON_0011628;early premaxilla;future premaxilla -http://purl.obolibrary.org/obo/UBERON_0011629;supratemporal bone;supratemporal -http://purl.obolibrary.org/obo/UBERON_0011630;intertemporal bone;intertemporal -http://purl.obolibrary.org/obo/UBERON_0011631;tabular bone;tabular -http://purl.obolibrary.org/obo/UBERON_0011634;ectopterygoid bone;ectopterygoid -http://purl.obolibrary.org/obo/UBERON_0011635;splenial bone;splenial -http://purl.obolibrary.org/obo/UBERON_0011636;surangular bone;surangular -http://purl.obolibrary.org/obo/UBERON_0011637;prearticular bone;prearticular -http://purl.obolibrary.org/obo/UBERON_0011638;pharyngeal arch 8;gill arch 6 -http://purl.obolibrary.org/obo/UBERON_0011638;pharyngeal arch 8;visceral arch 8 -http://purl.obolibrary.org/obo/UBERON_0011639;frontoparietal bone;frontoparietal -http://purl.obolibrary.org/obo/UBERON_0011640;palatoglossal arch;anterior pillar of fauces -http://purl.obolibrary.org/obo/UBERON_0011640;palatoglossal arch;arcus glossopalatinus -http://purl.obolibrary.org/obo/UBERON_0011640;palatoglossal arch;arcus palatoglossus -http://purl.obolibrary.org/obo/UBERON_0011640;palatoglossal arch;glossopalatine arch -http://purl.obolibrary.org/obo/UBERON_0011640;palatoglossal arch;plica anterior faucium -http://purl.obolibrary.org/obo/UBERON_0011641;odontogenic mesenchyme of molar;molar mesenchyme -http://purl.obolibrary.org/obo/UBERON_0011641;odontogenic mesenchyme of molar;odontogenic mesenchyme of molar tooth -http://purl.obolibrary.org/obo/UBERON_0011642;oral epithelium from ectoderm; -http://purl.obolibrary.org/obo/UBERON_0011643;puboischiofemoralis internus muscle;puboischiofemoralis internus -http://purl.obolibrary.org/obo/UBERON_0011644;puboischiofemoralis externus muscle;puboischiofemoralis externus -http://purl.obolibrary.org/obo/UBERON_0011645;iliofemoralis muscle;iliofemoralis -http://purl.obolibrary.org/obo/UBERON_0011646;patagialis muscle; -http://purl.obolibrary.org/obo/UBERON_0011647;depressor mandibulae muscle;depressor labi mandibularis -http://purl.obolibrary.org/obo/UBERON_0011647;depressor mandibulae muscle;depressor labi mandibularis muscle -http://purl.obolibrary.org/obo/UBERON_0011647;depressor mandibulae muscle;depressor mandibulae -http://purl.obolibrary.org/obo/UBERON_0011648;jaw muscle;mandibular muscle -http://purl.obolibrary.org/obo/UBERON_0011648;jaw muscle;mandibular muscles -http://purl.obolibrary.org/obo/UBERON_0011649;levator operculi;levator operculae -http://purl.obolibrary.org/obo/UBERON_0011649;levator operculi;levator operculi muscle -http://purl.obolibrary.org/obo/UBERON_0011650;epihyoidean; -http://purl.obolibrary.org/obo/UBERON_0011651;ventral head of rib;capitulum of costa -http://purl.obolibrary.org/obo/UBERON_0011651;ventral head of rib;capitulum of rib -http://purl.obolibrary.org/obo/UBERON_0011651;ventral head of rib;costal capitulum -http://purl.obolibrary.org/obo/UBERON_0011652;dorsal head of rib;tuberculum of rib -http://purl.obolibrary.org/obo/UBERON_0011653;diapophysis of neural arch; -http://purl.obolibrary.org/obo/UBERON_0011655;interclavicle;interclavicle bone -http://purl.obolibrary.org/obo/UBERON_0011657;dermal element of plastron;plastron element -http://purl.obolibrary.org/obo/UBERON_0011658;epiplastron; -http://purl.obolibrary.org/obo/UBERON_0011659;entoplastron; -http://purl.obolibrary.org/obo/UBERON_0011660;hypoplastron; -http://purl.obolibrary.org/obo/UBERON_0011661;xiphiplastron; -http://purl.obolibrary.org/obo/UBERON_0011662;plastron-carapace bridge; -http://purl.obolibrary.org/obo/UBERON_0011663;anterior plastron-carapace bridge; -http://purl.obolibrary.org/obo/UBERON_0011664;posterior plastron-carapace bridge; -http://purl.obolibrary.org/obo/UBERON_0011665;carapace bone; -http://purl.obolibrary.org/obo/UBERON_0011666;peripheral plate of carapace; -http://purl.obolibrary.org/obo/UBERON_0011667;pleural plate of carapace; -http://purl.obolibrary.org/obo/UBERON_0011669;neural plate of carapace; -http://purl.obolibrary.org/obo/UBERON_0011670;pygal plate of carapace; -http://purl.obolibrary.org/obo/UBERON_0011671;nuchal plate of carapace; -http://purl.obolibrary.org/obo/UBERON_0011672;suprapygal plate of carapace;suprapygal bone -http://purl.obolibrary.org/obo/UBERON_0011672;suprapygal plate of carapace;suprapygal plate -http://purl.obolibrary.org/obo/UBERON_0011673;plastron scute; -http://purl.obolibrary.org/obo/UBERON_0011674;carapace scute; -http://purl.obolibrary.org/obo/UBERON_0011675;perichordal ring; -http://purl.obolibrary.org/obo/UBERON_0011676;subdivision of organism along main body axis;axial subdivision of organism -http://purl.obolibrary.org/obo/UBERON_0011676;subdivision of organism along main body axis;body segment -http://purl.obolibrary.org/obo/UBERON_0011676;subdivision of organism along main body axis;main body segment -http://purl.obolibrary.org/obo/UBERON_0011677;trunk vertebra;thoracolumbar vertebra -http://purl.obolibrary.org/obo/UBERON_0011678;hindlimb intermedium bone;hidlimb intermedium -http://purl.obolibrary.org/obo/UBERON_0011678;hindlimb intermedium bone;intermedium (hind) -http://purl.obolibrary.org/obo/UBERON_0011678;hindlimb intermedium bone;intermedium of pes -http://purl.obolibrary.org/obo/UBERON_0011678;hindlimb intermedium bone;pedal intermedium -http://purl.obolibrary.org/obo/UBERON_0011679;proximal tarsal bone; -http://purl.obolibrary.org/obo/UBERON_0011683;adductor mandibulae;dorsal adductor mandibulae -http://purl.obolibrary.org/obo/UBERON_0011683;adductor mandibulae;m. adductor mandibulae -http://purl.obolibrary.org/obo/UBERON_0011684;levator palatoquadrati; -http://purl.obolibrary.org/obo/UBERON_0011685;preorbitalis muscle;preorbitalis -http://purl.obolibrary.org/obo/UBERON_0011686;spiracularis muscle;spiracularis -http://purl.obolibrary.org/obo/UBERON_0011687;levator hyomandibulae muscle;levator hyomandibulae -http://purl.obolibrary.org/obo/UBERON_0011688;pre-enameloid;non-mineralized enameloid tissue -http://purl.obolibrary.org/obo/UBERON_0011692;enameloid;bitypic enamel -http://purl.obolibrary.org/obo/UBERON_0011692;enameloid;durodentine -http://purl.obolibrary.org/obo/UBERON_0011692;enameloid;enameloid tissue -http://purl.obolibrary.org/obo/UBERON_0011692;enameloid;vitrodentine -http://purl.obolibrary.org/obo/UBERON_0011693;extraembryonic portion of umbilical artery;extraembryonic umbilical artery -http://purl.obolibrary.org/obo/UBERON_0011694;embryo portion of umbilical artery;embryonic umbilical artery -http://purl.obolibrary.org/obo/UBERON_0011695;embryonic cardiovascular system;conceptus cardiovascular system -http://purl.obolibrary.org/obo/UBERON_0011696;left extraembryonic umbilical artery;extraembryonic umbilical artery left -http://purl.obolibrary.org/obo/UBERON_0011697;right extraembryonic umbilical artery;extraembryonic umbilical artery right -http://purl.obolibrary.org/obo/UBERON_0011698;midgut loop; -http://purl.obolibrary.org/obo/UBERON_0011737;caudate lobe hepatic sinusoid;liver right caudate lobe hepatic sinusoids -http://purl.obolibrary.org/obo/UBERON_0011738;quadrate lobe hepatic sinusoid;liver right quadrate lobe hepatic sinusoids -http://purl.obolibrary.org/obo/UBERON_0011741;cardiac valve leaflet; -http://purl.obolibrary.org/obo/UBERON_0011742;aortic valve leaflet;aortic valve leaflets -http://purl.obolibrary.org/obo/UBERON_0011745;pulmonary valve leaflets; -http://purl.obolibrary.org/obo/UBERON_0011754;genital swelling;labioscrotal swelling -http://purl.obolibrary.org/obo/UBERON_0011755;female labial swelling;labioscrotal swelling of female -http://purl.obolibrary.org/obo/UBERON_0011756;male genital swelling;labioscrotal swelling of male -http://purl.obolibrary.org/obo/UBERON_0011756;male genital swelling;scrotal bulge -http://purl.obolibrary.org/obo/UBERON_0011756;male genital swelling;scrotal primordium -http://purl.obolibrary.org/obo/UBERON_0011757;differentiated genital tubercle; -http://purl.obolibrary.org/obo/UBERON_0011765;jugular lymph sac; -http://purl.obolibrary.org/obo/UBERON_0011766;left recurrent laryngeal nerve;left recurrent laryngeal branch -http://purl.obolibrary.org/obo/UBERON_0011766;left recurrent laryngeal nerve;left recurrent laryngeal nerve -http://purl.obolibrary.org/obo/UBERON_0011766;left recurrent laryngeal nerve;vagus X nerve left recurrent laryngeal branch -http://purl.obolibrary.org/obo/UBERON_0011767;right recurrent laryngeal nerve;right recurrent laryngeal branch -http://purl.obolibrary.org/obo/UBERON_0011767;right recurrent laryngeal nerve;right recurrent laryngeal nerve -http://purl.obolibrary.org/obo/UBERON_0011767;right recurrent laryngeal nerve;vagus X nerve right recurrent laryngeal branch -http://purl.obolibrary.org/obo/UBERON_0011768;pineal gland stalk;epiphyseal stalk -http://purl.obolibrary.org/obo/UBERON_0011768;pineal gland stalk;pineal stalk -http://purl.obolibrary.org/obo/UBERON_0011769;cartilaginous projection;cartilage process -http://purl.obolibrary.org/obo/UBERON_0011769;cartilaginous projection;cartilaginous process -http://purl.obolibrary.org/obo/UBERON_0011770;mentomeckelian; -http://purl.obolibrary.org/obo/UBERON_0011772;lower jaw opening; -http://purl.obolibrary.org/obo/UBERON_0011773;upper jaw opening; -http://purl.obolibrary.org/obo/UBERON_0011774;utriculosaccular duct;Böttcher's canal -http://purl.obolibrary.org/obo/UBERON_0011774;utriculosaccular duct;ductus utricosaccularis -http://purl.obolibrary.org/obo/UBERON_0011774;utriculosaccular duct;utricosaccular duct -http://purl.obolibrary.org/obo/UBERON_0011774;utriculosaccular duct;utricosaccular duct of membranous labyrinth -http://purl.obolibrary.org/obo/UBERON_0011774;utriculosaccular duct;utriculo-saccular duct -http://purl.obolibrary.org/obo/UBERON_0011775;vagus nerve nucleus;nodosal nucleus -http://purl.obolibrary.org/obo/UBERON_0011775;vagus nerve nucleus;nucleus of Xth nerve -http://purl.obolibrary.org/obo/UBERON_0011775;vagus nerve nucleus;nucleus of vagal X nerve -http://purl.obolibrary.org/obo/UBERON_0011775;vagus nerve nucleus;nucleus of vagal nerve -http://purl.obolibrary.org/obo/UBERON_0011775;vagus nerve nucleus;nucleus of vagus nerve -http://purl.obolibrary.org/obo/UBERON_0011775;vagus nerve nucleus;tenth cranial nerve nucleus -http://purl.obolibrary.org/obo/UBERON_0011775;vagus nerve nucleus;vagal X nucleus -http://purl.obolibrary.org/obo/UBERON_0011775;vagus nerve nucleus;vagal nucleus -http://purl.obolibrary.org/obo/UBERON_0011775;vagus nerve nucleus;vagus nucleus -http://purl.obolibrary.org/obo/UBERON_0011776;dorsal commissural nucleus of spinal cord; -http://purl.obolibrary.org/obo/UBERON_0011777;nucleus of spinal cord;spinal cord nucleus -http://purl.obolibrary.org/obo/UBERON_0011778;motor nucleus of vagal nerve;motor nucleus X -http://purl.obolibrary.org/obo/UBERON_0011778;motor nucleus of vagal nerve;motor nucleus of X -http://purl.obolibrary.org/obo/UBERON_0011778;motor nucleus of vagal nerve;nX -http://purl.obolibrary.org/obo/UBERON_0011778;motor nucleus of vagal nerve;nucleus motorius of nervi vagi -http://purl.obolibrary.org/obo/UBERON_0011778;motor nucleus of vagal nerve;vagal lobe -http://purl.obolibrary.org/obo/UBERON_0011779;nerve of head region;cephalic nerve -http://purl.obolibrary.org/obo/UBERON_0011779;nerve of head region;head nerve -http://purl.obolibrary.org/obo/UBERON_0011782;feather follicle; -http://purl.obolibrary.org/obo/UBERON_0011783;feather follicle placode;feather bud primordium -http://purl.obolibrary.org/obo/UBERON_0011783;feather follicle placode;feather placode -http://purl.obolibrary.org/obo/UBERON_0011783;feather follicle placode;feather primordium -http://purl.obolibrary.org/obo/UBERON_0011784;feather shaft;feather shaft -http://purl.obolibrary.org/obo/UBERON_0011784;feather shaft;shaft of feather -http://purl.obolibrary.org/obo/UBERON_0011784;feather shaft;stem of feather -http://purl.obolibrary.org/obo/UBERON_0011785;ramus of feather barb;main shaft of feather barb -http://purl.obolibrary.org/obo/UBERON_0011786;ramus of feather barbule;main shaft of feather barbule -http://purl.obolibrary.org/obo/UBERON_0011792;feather muscle; -http://purl.obolibrary.org/obo/UBERON_0011793;flight feather; -http://purl.obolibrary.org/obo/UBERON_0011794;rectrix feather;rectrices -http://purl.obolibrary.org/obo/UBERON_0011794;rectrix feather;rectrix -http://purl.obolibrary.org/obo/UBERON_0011794;rectrix feather;retrices -http://purl.obolibrary.org/obo/UBERON_0011794;rectrix feather;retrix -http://purl.obolibrary.org/obo/UBERON_0011794;rectrix feather;retrix feather -http://purl.obolibrary.org/obo/UBERON_0011795;remex feather;remiges -http://purl.obolibrary.org/obo/UBERON_0011796;primary remex feather;primary flight feather -http://purl.obolibrary.org/obo/UBERON_0011796;primary remex feather;primary remex -http://purl.obolibrary.org/obo/UBERON_0011796;primary remex feather;primary remiges -http://purl.obolibrary.org/obo/UBERON_0011797;secondary remex feather;secondary flight feather -http://purl.obolibrary.org/obo/UBERON_0011797;secondary remex feather;secondary remex -http://purl.obolibrary.org/obo/UBERON_0011797;secondary remex feather;secondary remiges -http://purl.obolibrary.org/obo/UBERON_0011798;tertial remex feather;tertial flight feather -http://purl.obolibrary.org/obo/UBERON_0011798;tertial remex feather;tertial remex -http://purl.obolibrary.org/obo/UBERON_0011798;tertial remex feather;tertial remiges -http://purl.obolibrary.org/obo/UBERON_0011798;tertial remex feather;tertiary flight feather -http://purl.obolibrary.org/obo/UBERON_0011798;tertial remex feather;tertiary remex -http://purl.obolibrary.org/obo/UBERON_0011798;tertial remex feather;tertiary remiges -http://purl.obolibrary.org/obo/UBERON_0011798;tertial remex feather;true tertial -http://purl.obolibrary.org/obo/UBERON_0011799;cavity of feather shaft; -http://purl.obolibrary.org/obo/UBERON_0011800;dermal pulp of feather shaft; -http://purl.obolibrary.org/obo/UBERON_0011801;dermal condensation of feather follicle; -http://purl.obolibrary.org/obo/UBERON_0011802;feather bud;elongate feather bud -http://purl.obolibrary.org/obo/UBERON_0011802;feather bud;feather papilla -http://purl.obolibrary.org/obo/UBERON_0011803;feather bud, dermal component;dermal core of feather papilla -http://purl.obolibrary.org/obo/UBERON_0011803;feather bud, dermal component;dermal papilla of feather bud -http://purl.obolibrary.org/obo/UBERON_0011803;feather bud, dermal component;dermal papilla of feather papilla -http://purl.obolibrary.org/obo/UBERON_0011804;feather bud, epidermal component;feather bud epithelium -http://purl.obolibrary.org/obo/UBERON_0011805;cavity of feather follicle; -http://purl.obolibrary.org/obo/UBERON_0011806;dermis of feather follicle; -http://purl.obolibrary.org/obo/UBERON_0011807;epidermis of feather follicle; -http://purl.obolibrary.org/obo/UBERON_0011808;outer epidermal layer of feather follicle; -http://purl.obolibrary.org/obo/UBERON_0011809;inner epidermal layer of feather follicle;epidermal collar of feather follicle -http://purl.obolibrary.org/obo/UBERON_0011809;inner epidermal layer of feather follicle;follicle collar of feather follicle -http://purl.obolibrary.org/obo/UBERON_0011810;collection of feathers;feather coat -http://purl.obolibrary.org/obo/UBERON_0011810;collection of feathers;plumage -http://purl.obolibrary.org/obo/UBERON_0011814;non-neurogenic ectodermal placode; -http://purl.obolibrary.org/obo/UBERON_0011817;skin appendage placode;cutaneous appendage follicle placode -http://purl.obolibrary.org/obo/UBERON_0011817;skin appendage placode;skin follicle placode -http://purl.obolibrary.org/obo/UBERON_0011818;superficial fascia;subcutaneous tissue -http://purl.obolibrary.org/obo/UBERON_0011818;superficial fascia;superficial fascial layer -http://purl.obolibrary.org/obo/UBERON_0011818;superficial fascia;tela subcutanea -http://purl.obolibrary.org/obo/UBERON_0011819;lumen of atrioventricular canal;AVC lumen -http://purl.obolibrary.org/obo/UBERON_0011819;lumen of atrioventricular canal;cavity of atrioventricular canal -http://purl.obolibrary.org/obo/UBERON_0011819;lumen of atrioventricular canal;lumen of AVC -http://purl.obolibrary.org/obo/UBERON_0011820;atrioventricular region; -http://purl.obolibrary.org/obo/UBERON_0011821;irregular connective tissue; -http://purl.obolibrary.org/obo/UBERON_0011822;dense irregular connective tissue;irregular dense connective tissue -http://purl.obolibrary.org/obo/UBERON_0011822;dense irregular connective tissue;typus irregularis (textus connectivus collagenosus compactus) -http://purl.obolibrary.org/obo/UBERON_0011823;dense connective tissue; -http://purl.obolibrary.org/obo/UBERON_0011824;fibrous connective tissue; -http://purl.obolibrary.org/obo/UBERON_0011825;loose connective tissue;textus connectivus collagenosus laxus -http://purl.obolibrary.org/obo/UBERON_0011825;loose connective tissue;textus connectivus laxus -http://purl.obolibrary.org/obo/UBERON_0011826;vestibular gland; -http://purl.obolibrary.org/obo/UBERON_0011827;areolar gland;Montgomery's gland -http://purl.obolibrary.org/obo/UBERON_0011827;areolar gland;accessory gland of Montgomery -http://purl.obolibrary.org/obo/UBERON_0011827;areolar gland;accessory gland of breast -http://purl.obolibrary.org/obo/UBERON_0011827;areolar gland;gland of Montgomery -http://purl.obolibrary.org/obo/UBERON_0011828;areolar tubercle;Montgomery tubercle -http://purl.obolibrary.org/obo/UBERON_0011828;areolar tubercle;Montgomery's tubercle -http://purl.obolibrary.org/obo/UBERON_0011828;areolar tubercle;tubercle of Montgomery -http://purl.obolibrary.org/obo/UBERON_0011830;duct of lesser vestibular gland;lesser vestibular gland duct -http://purl.obolibrary.org/obo/UBERON_0011831;duct of vestibular gland;vestibular gland duct -http://purl.obolibrary.org/obo/UBERON_0011844;duct of areolar gland;areolar gland duct -http://purl.obolibrary.org/obo/UBERON_0011845;duct of sebaceous gland;sebaceous gland duct -http://purl.obolibrary.org/obo/UBERON_0011846;acinus of sebaceous gland;sebaceous gland acinus -http://purl.obolibrary.org/obo/UBERON_0011847;acinus of parotid gland;parotid gland acinus -http://purl.obolibrary.org/obo/UBERON_0011850;acinus of salivary gland;salivary gland acinus -http://purl.obolibrary.org/obo/UBERON_0011854;acinus of areolar gland;areolar gland acinus -http://purl.obolibrary.org/obo/UBERON_0011856;acinus of lactiferous gland;lactiferous gland acinus -http://purl.obolibrary.org/obo/UBERON_0011857;acinus of lacrimal gland;lacrimal gland acinus -http://purl.obolibrary.org/obo/UBERON_0011858;acinus of exocrine gland;exocrine gland acinus -http://purl.obolibrary.org/obo/UBERON_0011859;internal acoustic meatus; -http://purl.obolibrary.org/obo/UBERON_0011860;collection of collagen fibrils; -http://purl.obolibrary.org/obo/UBERON_0011861;aorta collagen fibril; -http://purl.obolibrary.org/obo/UBERON_0011862;pulmonary collagen fibril; -http://purl.obolibrary.org/obo/UBERON_0011863;bone collagen fibril; -http://purl.obolibrary.org/obo/UBERON_0011864;tendon collagen fibril; -http://purl.obolibrary.org/obo/UBERON_0011865;corneal stroma collagen fibril; -http://purl.obolibrary.org/obo/UBERON_0011866;condylar joint; -http://purl.obolibrary.org/obo/UBERON_0011867;extensor carpi radialis muscle;extensor carpi radialis -http://purl.obolibrary.org/obo/UBERON_0011868;midcarpal joint;articulatio mediocarpalis -http://purl.obolibrary.org/obo/UBERON_0011868;midcarpal joint;transverse carpal joint -http://purl.obolibrary.org/obo/UBERON_0011869;pisiform joint;articulatio ossis pisiformis -http://purl.obolibrary.org/obo/UBERON_0011870;pisotriquetral joint; -http://purl.obolibrary.org/obo/UBERON_0011871;nasomaxillary suture;nasomaxillary suture of skull -http://purl.obolibrary.org/obo/UBERON_0011873;synarthrosis; -http://purl.obolibrary.org/obo/UBERON_0011874;amphiarthrosis; -http://purl.obolibrary.org/obo/UBERON_0011875;ligament of sternoclavicular joint;ligamentum sternoclavicularis -http://purl.obolibrary.org/obo/UBERON_0011875;ligament of sternoclavicular joint;sternoclavicular joint ligament -http://purl.obolibrary.org/obo/UBERON_0011876;body of tongue;corpus linguae -http://purl.obolibrary.org/obo/UBERON_0011876;body of tongue;tongue body -http://purl.obolibrary.org/obo/UBERON_0011877;margin of tongue;margo linguae -http://purl.obolibrary.org/obo/UBERON_0011877;margin of tongue;tongue margin -http://purl.obolibrary.org/obo/UBERON_0011878;muscle layer of esophagus;muscle coat of esophagus -http://purl.obolibrary.org/obo/UBERON_0011878;muscle layer of esophagus;muscular coat of oesophagus -http://purl.obolibrary.org/obo/UBERON_0011878;muscle layer of esophagus;muscular layer of oesophagus -http://purl.obolibrary.org/obo/UBERON_0011878;muscle layer of esophagus;tela muscularis (oesophagus) -http://purl.obolibrary.org/obo/UBERON_0011878;muscle layer of esophagus;tunica muscularis esophagi -http://purl.obolibrary.org/obo/UBERON_0011878;muscle layer of esophagus;tunica muscularis oesophageae -http://purl.obolibrary.org/obo/UBERON_0011879;mesorchium; -http://purl.obolibrary.org/obo/UBERON_0011892;anterior uvea;Haller tunica vascula -http://purl.obolibrary.org/obo/UBERON_0011892;anterior uvea;anterior part of uveal tract -http://purl.obolibrary.org/obo/UBERON_0011892;anterior uvea;anterior uveal tract -http://purl.obolibrary.org/obo/UBERON_0011892;anterior uvea;anterior vascular layer of the eyeball -http://purl.obolibrary.org/obo/UBERON_0011892;anterior uvea;anterior vascular tunic of the eye -http://purl.obolibrary.org/obo/UBERON_0011892;anterior uvea;ciliary body and iris -http://purl.obolibrary.org/obo/UBERON_0011892;anterior uvea;tunica vasculosa bulbosa -http://purl.obolibrary.org/obo/UBERON_0011892;anterior uvea;vasculosa oculi -http://purl.obolibrary.org/obo/UBERON_0011892;anterior uvea;ventral uveal tract -http://purl.obolibrary.org/obo/UBERON_0011893;endoneurial fluid; -http://purl.obolibrary.org/obo/UBERON_0011894;lumen of vagina;vaginal lumen -http://purl.obolibrary.org/obo/UBERON_0011895;endomysium;fascia of muscle fiber -http://purl.obolibrary.org/obo/UBERON_0011896;smooth muscle endomysium; -http://purl.obolibrary.org/obo/UBERON_0011897;cardiac endomysium;endomysium of cardiac muscle cell -http://purl.obolibrary.org/obo/UBERON_0011897;cardiac endomysium;fibrocollagenous sheath of cardiac muscle cell -http://purl.obolibrary.org/obo/UBERON_0011898;skeletal muscle endomysium; -http://purl.obolibrary.org/obo/UBERON_0011899;epimysium;fascia of muscle organ -http://purl.obolibrary.org/obo/UBERON_0011900;perimysium;fascia of muscle fasciculus -http://purl.obolibrary.org/obo/UBERON_0011901;hair matrix; -http://purl.obolibrary.org/obo/UBERON_0011903;gizzard smooth muscle; -http://purl.obolibrary.org/obo/UBERON_0011904;gastrolith; -http://purl.obolibrary.org/obo/UBERON_0011905;plantaris;musculus plantaris -http://purl.obolibrary.org/obo/UBERON_0011905;plantaris;plantaris -http://purl.obolibrary.org/obo/UBERON_0011906;muscle head;caput (musculus) -http://purl.obolibrary.org/obo/UBERON_0011906;muscle head;caput musculi -http://purl.obolibrary.org/obo/UBERON_0011906;muscle head;head of muscle organ -http://purl.obolibrary.org/obo/UBERON_0011906;muscle head;muscular organ head -http://purl.obolibrary.org/obo/UBERON_0011907;gastrocnemius medialis;caput mediale (musculus gastrocnemius) -http://purl.obolibrary.org/obo/UBERON_0011907;gastrocnemius medialis;caput mediale musculus gastrocnemii -http://purl.obolibrary.org/obo/UBERON_0011907;gastrocnemius medialis;medial head of gastrocnemius -http://purl.obolibrary.org/obo/UBERON_0011907;gastrocnemius medialis;medial head of gastrocnemius muscle -http://purl.obolibrary.org/obo/UBERON_0011908;gastrocnemius lateralis;caput laterale (musculus gastrocnemius) -http://purl.obolibrary.org/obo/UBERON_0011908;gastrocnemius lateralis;caput laterale musculus gastrocnemii -http://purl.obolibrary.org/obo/UBERON_0011908;gastrocnemius lateralis;lateral head of gastrocnemius -http://purl.obolibrary.org/obo/UBERON_0011908;gastrocnemius lateralis;lateral head of gastrocnemius muscle -http://purl.obolibrary.org/obo/UBERON_0011909;gastrocnemius internus;M. gastrocnemius internus -http://purl.obolibrary.org/obo/UBERON_0011909;gastrocnemius internus;musculus gastrocnemius internus -http://purl.obolibrary.org/obo/UBERON_0011910;gastrocnemius externus;M. gastrocnemius externus -http://purl.obolibrary.org/obo/UBERON_0011910;gastrocnemius externus;musculus gastrocnemius externus -http://purl.obolibrary.org/obo/UBERON_0011915;cerebellar glomerulus;cerebellar glomeruli -http://purl.obolibrary.org/obo/UBERON_0011917;thalamic glomerulus;thalamic glomeruli -http://purl.obolibrary.org/obo/UBERON_0011918;line of Schwalbe;Schwalbe line -http://purl.obolibrary.org/obo/UBERON_0011918;line of Schwalbe;Schwalbe's line -http://purl.obolibrary.org/obo/UBERON_0011918;line of Schwalbe;Schwalbe's ring -http://purl.obolibrary.org/obo/UBERON_0011919;yolk sac blood island;visceral yolk sac blood island -http://purl.obolibrary.org/obo/UBERON_0011919;yolk sac blood island;yolk sac blood islands -http://purl.obolibrary.org/obo/UBERON_0011921;connecting stalk blood islands;blood island of umbilical vesicle -http://purl.obolibrary.org/obo/UBERON_0011921;connecting stalk blood islands;insula sanguinea vesiculae umbilicalis -http://purl.obolibrary.org/obo/UBERON_0011922;cochlear basement membrane;basement membrane of cochlear labyrinth -http://purl.obolibrary.org/obo/UBERON_0011922;cochlear basement membrane;cochlea basement membrane -http://purl.obolibrary.org/obo/UBERON_0011924;postganglionic autonomic fiber;postganglionic autonomic fibre -http://purl.obolibrary.org/obo/UBERON_0011924;postganglionic autonomic fiber;postganglionic nerve fiber -http://purl.obolibrary.org/obo/UBERON_0011925;preganglionic autonomic fiber;preganglionic nerve fiber -http://purl.obolibrary.org/obo/UBERON_0011926;postganglionic sympathetic fiber; -http://purl.obolibrary.org/obo/UBERON_0011927;preganglionic sympathetic fiber; -http://purl.obolibrary.org/obo/UBERON_0011929;postganglionic parasympathetic fiber;parasympathetic postganglionic fiber -http://purl.obolibrary.org/obo/UBERON_0011930;preganglionic parasympathetic fiber; -http://purl.obolibrary.org/obo/UBERON_0011931;nasal hair;hair of nose -http://purl.obolibrary.org/obo/UBERON_0011931;nasal hair;hair of vestibular part of nose -http://purl.obolibrary.org/obo/UBERON_0011931;nasal hair;nose hair -http://purl.obolibrary.org/obo/UBERON_0011932;pilosebaceous unit;fabrica pilosebacea -http://purl.obolibrary.org/obo/UBERON_0011932;pilosebaceous unit;pilo-sebaceous apparatus -http://purl.obolibrary.org/obo/UBERON_0011932;pilosebaceous unit;pilo-sebaceous unit -http://purl.obolibrary.org/obo/UBERON_0011932;pilosebaceous unit;pilosebaceous apparatus -http://purl.obolibrary.org/obo/UBERON_0011932;pilosebaceous unit;pilosebaceous gland -http://purl.obolibrary.org/obo/UBERON_0011933;vibrissa unit;vibrissa -http://purl.obolibrary.org/obo/UBERON_0011936;vibrissa hair bulb;bulb of sinus hair -http://purl.obolibrary.org/obo/UBERON_0011936;vibrissa hair bulb;bulb of vibrissa follicle -http://purl.obolibrary.org/obo/UBERON_0011936;vibrissa hair bulb;vibrissa bulb -http://purl.obolibrary.org/obo/UBERON_0011937;vibrissa root sheath;root sheath of sinus hair -http://purl.obolibrary.org/obo/UBERON_0011937;vibrissa root sheath;root sheath of vibrissa -http://purl.obolibrary.org/obo/UBERON_0011937;vibrissa root sheath;root sheath of vibrissa hair -http://purl.obolibrary.org/obo/UBERON_0011938;vibrissa inner root sheath; -http://purl.obolibrary.org/obo/UBERON_0011939;vibrissa outer root sheath; -http://purl.obolibrary.org/obo/UBERON_0011940;arrector pili muscle of vibrissa;arrector pilorum muscle of vibrissa -http://purl.obolibrary.org/obo/UBERON_0011941;lateral angle of scapula;angulus lateralis (scapula) -http://purl.obolibrary.org/obo/UBERON_0011941;lateral angle of scapula;angulus lateralis scapulae -http://purl.obolibrary.org/obo/UBERON_0011944;subintestinal vein;SIV -http://purl.obolibrary.org/obo/UBERON_0011945;luminal layer of epithelium; -http://purl.obolibrary.org/obo/UBERON_0011946;subluminal layer of epithelium; -http://purl.obolibrary.org/obo/UBERON_0011947;ureter luminal urothelium; -http://purl.obolibrary.org/obo/UBERON_0011948;ureter subluminal urothelium; -http://purl.obolibrary.org/obo/UBERON_0011949;endometrium luminal epithelium; -http://purl.obolibrary.org/obo/UBERON_0011950;mammary gland luminal epithelium;lumina layer of epithelium of lactiferous gland -http://purl.obolibrary.org/obo/UBERON_0011951;prostate luminal epithelium;subdivision of luminal layer of epithelium of prostatic gland -http://purl.obolibrary.org/obo/UBERON_0011952;non-glandular epithelium; -http://purl.obolibrary.org/obo/UBERON_0011953;stomach glandular region; -http://purl.obolibrary.org/obo/UBERON_0011954;stomach non-glandular region;stomach cutaneous region -http://purl.obolibrary.org/obo/UBERON_0011954;stomach non-glandular region;stomach ependymal region -http://purl.obolibrary.org/obo/UBERON_0011955;left hepatic vein; -http://purl.obolibrary.org/obo/UBERON_0011956;right hepatic vein; -http://purl.obolibrary.org/obo/UBERON_0011957;middle hepatic vein; -http://purl.obolibrary.org/obo/UBERON_0011958;acetabular labrum;labrum acetabuli -http://purl.obolibrary.org/obo/UBERON_0011958;acetabular labrum;labrum of acetabulum -http://purl.obolibrary.org/obo/UBERON_0011959;glenoid labrum of scapula;glenoidal labrum of glenohumeral joint -http://purl.obolibrary.org/obo/UBERON_0011959;glenoid labrum of scapula;glenoidal labrum of scapula -http://purl.obolibrary.org/obo/UBERON_0011959;glenoid labrum of scapula;labrum glenoidale -http://purl.obolibrary.org/obo/UBERON_0011960;articular capsule of glenohumeral joint;articular capsule of humerus -http://purl.obolibrary.org/obo/UBERON_0011960;articular capsule of glenohumeral joint;articular capsule of shoulder joint -http://purl.obolibrary.org/obo/UBERON_0011960;articular capsule of glenohumeral joint;capsule of shoulder joint -http://purl.obolibrary.org/obo/UBERON_0011960;articular capsule of glenohumeral joint;fibrous capsule of glenohumeral joint -http://purl.obolibrary.org/obo/UBERON_0011961;articular capsule of hip joint;capsula articularis coxae -http://purl.obolibrary.org/obo/UBERON_0011961;articular capsule of hip joint;capsule of hip joint -http://purl.obolibrary.org/obo/UBERON_0011961;articular capsule of hip joint;fibrous capsule of hip joint -http://purl.obolibrary.org/obo/UBERON_0011962;transverse tarsal joint;articulatio tarsi transversa -http://purl.obolibrary.org/obo/UBERON_0011962;transverse tarsal joint;chopart's joint -http://purl.obolibrary.org/obo/UBERON_0011962;transverse tarsal joint;midtarsal joint -http://purl.obolibrary.org/obo/UBERON_0011963;talocalcaneonavicular joint;articulatio talocalcaneonavicularis -http://purl.obolibrary.org/obo/UBERON_0011963;talocalcaneonavicular joint;talocalcaneonavicular articulation -http://purl.obolibrary.org/obo/UBERON_0011964;calcaneocuboid joint;articulatio calcaneocubiodea -http://purl.obolibrary.org/obo/UBERON_0011964;calcaneocuboid joint;calcaneocuboid articulation -http://purl.obolibrary.org/obo/UBERON_0011964;calcaneocuboid joint;calcaneocuboidal joint -http://purl.obolibrary.org/obo/UBERON_0011965;saddle joint;sellar joint -http://purl.obolibrary.org/obo/UBERON_0011966;manubriosternal joint;manubriosternal symphysis -http://purl.obolibrary.org/obo/UBERON_0011967;costotransverse joint; -http://purl.obolibrary.org/obo/UBERON_0011968;radio-carpal joint;articulatio radiocarpea -http://purl.obolibrary.org/obo/UBERON_0011968;radio-carpal joint;radiocarpal articulation -http://purl.obolibrary.org/obo/UBERON_0011968;radio-carpal joint;radiocarpal joint -http://purl.obolibrary.org/obo/UBERON_0011969;mesotarsal joint; -http://purl.obolibrary.org/obo/UBERON_0011970;talofibular ligament;ligamentum talofibulare -http://purl.obolibrary.org/obo/UBERON_0011970;talofibular ligament;talo-fibular ligament -http://purl.obolibrary.org/obo/UBERON_0011971;calcaneofibular ligament;ligamentum calcaneofibulare -http://purl.obolibrary.org/obo/UBERON_0011972;medial ligament of ankle joint;deltoid collateral ligament of ankle joint -http://purl.obolibrary.org/obo/UBERON_0011972;medial ligament of ankle joint;deltoid ligament of ankle joint -http://purl.obolibrary.org/obo/UBERON_0011972;medial ligament of ankle joint;ligamentum collaterale mediale (articulatio talocruralis) -http://purl.obolibrary.org/obo/UBERON_0011972;medial ligament of ankle joint;ligamentum collaterale mediale articulationis talocruralis -http://purl.obolibrary.org/obo/UBERON_0011972;medial ligament of ankle joint;ligamentum deltoideum -http://purl.obolibrary.org/obo/UBERON_0011972;medial ligament of ankle joint;ligamentum deltoideum (articulatio talocruralis) -http://purl.obolibrary.org/obo/UBERON_0011972;medial ligament of ankle joint;medial collateral ligament of ankle joint -http://purl.obolibrary.org/obo/UBERON_0011973;epiphysis of phalanx of pes;epiphysis of phalanx of toe -http://purl.obolibrary.org/obo/UBERON_0011974;epiphysis of proximal phalanx of pes;epiphysis of proximal phalanx of toe -http://purl.obolibrary.org/obo/UBERON_0011975;epiphysis of middle phalanx of pes;epiphysis of middle phalanx of toe -http://purl.obolibrary.org/obo/UBERON_0011976;epiphysis of distal phalanx of pes;epiphysis of distal phalanx of toe -http://purl.obolibrary.org/obo/UBERON_0011977;epiphysis of proximal phalanx of manus;epiphysis of proximal phalanx of finger -http://purl.obolibrary.org/obo/UBERON_0011978;epiphysis of middle phalanx of manus;epiphysis of middle phalanx of finger -http://purl.obolibrary.org/obo/UBERON_0011979;epiphysis of distal phalanx of manus;epiphysis of distal phalanx of finger -http://purl.obolibrary.org/obo/UBERON_0011980;crurotarsal joint; -http://purl.obolibrary.org/obo/UBERON_0011981;manual digit 6;6th finger -http://purl.obolibrary.org/obo/UBERON_0011981;manual digit 6;fore digit VI -http://purl.obolibrary.org/obo/UBERON_0011981;manual digit 6;fore limb digit 6 -http://purl.obolibrary.org/obo/UBERON_0011981;manual digit 6;manual digit VI -http://purl.obolibrary.org/obo/UBERON_0011981;manual digit 6;sixth finger -http://purl.obolibrary.org/obo/UBERON_0011982;manual digit 7;fore digit VII -http://purl.obolibrary.org/obo/UBERON_0011982;manual digit 7;fore limb digit 7 -http://purl.obolibrary.org/obo/UBERON_0011982;manual digit 7;manual digit VII -http://purl.obolibrary.org/obo/UBERON_0011982;manual digit 7;seventh finger -http://purl.obolibrary.org/obo/UBERON_0011983;manual digit 8;eighth finger -http://purl.obolibrary.org/obo/UBERON_0011983;manual digit 8;fore digit VIII -http://purl.obolibrary.org/obo/UBERON_0011983;manual digit 8;fore limb digit 8 -http://purl.obolibrary.org/obo/UBERON_0011983;manual digit 8;manual digit VIII -http://purl.obolibrary.org/obo/UBERON_0011984;pedal digit 6;digitus sextus pedis -http://purl.obolibrary.org/obo/UBERON_0011984;pedal digit 6;hind digit 6 -http://purl.obolibrary.org/obo/UBERON_0011984;pedal digit 6;hind digit VI -http://purl.obolibrary.org/obo/UBERON_0011984;pedal digit 6;hind limb digit 6 -http://purl.obolibrary.org/obo/UBERON_0011984;pedal digit 6;pedal digit VI -http://purl.obolibrary.org/obo/UBERON_0011984;pedal digit 6;pes digit VI -http://purl.obolibrary.org/obo/UBERON_0011984;pedal digit 6;sixth toe -http://purl.obolibrary.org/obo/UBERON_0011984;pedal digit 6;toe 6 -http://purl.obolibrary.org/obo/UBERON_0011985;infraorbital sinus;sinus infraorbitalis -http://purl.obolibrary.org/obo/UBERON_0011986;mucosa of infraorbital sinus;infraorbital sinus mucosa -http://purl.obolibrary.org/obo/UBERON_0011996;pharyngeal adductor; -http://purl.obolibrary.org/obo/UBERON_0011997;coelom; -http://purl.obolibrary.org/obo/UBERON_0012054;myocoele; -http://purl.obolibrary.org/obo/UBERON_0012055;left lung lower lobe bronchiole;bronchiole of left lower lobe -http://purl.obolibrary.org/obo/UBERON_0012055;left lung lower lobe bronchiole;bronchiole of left lower lobe of lung -http://purl.obolibrary.org/obo/UBERON_0012055;left lung lower lobe bronchiole;left lung caudal lobe bronchiole -http://purl.obolibrary.org/obo/UBERON_0012056;left lung upper lobe bronchiole;bronchiole of left cranial lobe -http://purl.obolibrary.org/obo/UBERON_0012056;left lung upper lobe bronchiole;bronchiole of left upper lobe -http://purl.obolibrary.org/obo/UBERON_0012056;left lung upper lobe bronchiole;bronchiole of left upper lobe of lung -http://purl.obolibrary.org/obo/UBERON_0012056;left lung upper lobe bronchiole;left lung cranial lobe bronchiole -http://purl.obolibrary.org/obo/UBERON_0012059;right lung lower lobe bronchiole;bronchiole of right cranial lobe -http://purl.obolibrary.org/obo/UBERON_0012059;right lung lower lobe bronchiole;bronchiole of right lower lobe -http://purl.obolibrary.org/obo/UBERON_0012059;right lung lower lobe bronchiole;bronchiole of right lower lobe of lung -http://purl.obolibrary.org/obo/UBERON_0012059;right lung lower lobe bronchiole;right lung caudal lobe bronchiole -http://purl.obolibrary.org/obo/UBERON_0012063;lobar bronchus of right lung middle lobe;bronchus of right middle lobe -http://purl.obolibrary.org/obo/UBERON_0012063;lobar bronchus of right lung middle lobe;middle lobar bronchus -http://purl.obolibrary.org/obo/UBERON_0012063;lobar bronchus of right lung middle lobe;middle lobe bronchus -http://purl.obolibrary.org/obo/UBERON_0012065;lobar bronchus of left lung upper lobe;bronchus of left upper lobe -http://purl.obolibrary.org/obo/UBERON_0012065;lobar bronchus of left lung upper lobe;left superior lobar bronchus -http://purl.obolibrary.org/obo/UBERON_0012065;lobar bronchus of left lung upper lobe;left upper lobar bronchus -http://purl.obolibrary.org/obo/UBERON_0012065;lobar bronchus of left lung upper lobe;left upper lobe bronchus -http://purl.obolibrary.org/obo/UBERON_0012066;lobar bronchus of left lung lower lobe;bronchus of left lower lobe -http://purl.obolibrary.org/obo/UBERON_0012066;lobar bronchus of left lung lower lobe;left inferior lobar bronchus -http://purl.obolibrary.org/obo/UBERON_0012066;lobar bronchus of left lung lower lobe;left lower lobar bronchus -http://purl.obolibrary.org/obo/UBERON_0012066;lobar bronchus of left lung lower lobe;left lower lobe bronchus -http://purl.obolibrary.org/obo/UBERON_0012067;primary bronchiole;proximal bronchiole -http://purl.obolibrary.org/obo/UBERON_0012068;right lung middle lobe bronchiole;bronchiole of middle right lobe -http://purl.obolibrary.org/obo/UBERON_0012068;right lung middle lobe bronchiole;bronchiole of right middle lobe -http://purl.obolibrary.org/obo/UBERON_0012068;right lung middle lobe bronchiole;bronchiole of right middle lobe of lung -http://purl.obolibrary.org/obo/UBERON_0012069;epithelium-associated lymphoid tissue; -http://purl.obolibrary.org/obo/UBERON_0012070;palatal tooth;palatal teeth -http://purl.obolibrary.org/obo/UBERON_0012071;palate bone;palatal bone -http://purl.obolibrary.org/obo/UBERON_0012072;palatal part of dermatocranium; -http://purl.obolibrary.org/obo/UBERON_0012073;tooth of palatine bone;palatine teeth -http://purl.obolibrary.org/obo/UBERON_0012073;tooth of palatine bone;palatine tooth -http://purl.obolibrary.org/obo/UBERON_0012074;bony part of hard palate;bony palate -http://purl.obolibrary.org/obo/UBERON_0012074;bony part of hard palate;hard palate skeleton -http://purl.obolibrary.org/obo/UBERON_0012074;bony part of hard palate;palatum osseum -http://purl.obolibrary.org/obo/UBERON_0012075;replacement bone;replacement bones -http://purl.obolibrary.org/obo/UBERON_0012076;tibiotalar joint; -http://purl.obolibrary.org/obo/UBERON_0012078;fovea capitis of femur;fovea capitis femoris -http://purl.obolibrary.org/obo/UBERON_0012078;fovea capitis of femur;fovea capitis femoris (caput femoris) -http://purl.obolibrary.org/obo/UBERON_0012078;fovea capitis of femur;fovea capitis of femoral head -http://purl.obolibrary.org/obo/UBERON_0012078;fovea capitis of femur;fovea for ligament of head of femur -http://purl.obolibrary.org/obo/UBERON_0012079;metapterygial axis; -http://purl.obolibrary.org/obo/UBERON_0012080;patella cartilage element; -http://purl.obolibrary.org/obo/UBERON_0012081;patella pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0012082;bronchial lumen;bronchial lumen -http://purl.obolibrary.org/obo/UBERON_0012082;bronchial lumen;lumen of bronchus -http://purl.obolibrary.org/obo/UBERON_0012083;lumen of primary bronchus;lumen of main bronchus -http://purl.obolibrary.org/obo/UBERON_0012083;lumen of primary bronchus;main bronchial lumen -http://purl.obolibrary.org/obo/UBERON_0012083;lumen of primary bronchus;principal bronchial lumen -http://purl.obolibrary.org/obo/UBERON_0012084;lumen of secondary bronchus;lobar bronchial lumen -http://purl.obolibrary.org/obo/UBERON_0012084;lumen of secondary bronchus;lumen of lobar bronchus -http://purl.obolibrary.org/obo/UBERON_0012084;lumen of secondary bronchus;secondary bronchial lumen -http://purl.obolibrary.org/obo/UBERON_0012085;lumen of tertiary bronchus;lumen of segmental bronchus -http://purl.obolibrary.org/obo/UBERON_0012085;lumen of tertiary bronchus;segmental bronchial lumen -http://purl.obolibrary.org/obo/UBERON_0012086;lumen of parabronchus; -http://purl.obolibrary.org/obo/UBERON_0012087;air capillary of parabronchus;air capillary -http://purl.obolibrary.org/obo/UBERON_0012087;air capillary of parabronchus;air vesicle -http://purl.obolibrary.org/obo/UBERON_0012088;lateroobronchus; -http://purl.obolibrary.org/obo/UBERON_0012100;appendicocostalis muscle;appendicocostalis -http://purl.obolibrary.org/obo/UBERON_0012102;buccal salivary gland; -http://purl.obolibrary.org/obo/UBERON_0012103;suspensory ligament of breast;retinaculum cutis mammae -http://purl.obolibrary.org/obo/UBERON_0012103;suspensory ligament of breast;suspensory ligament of cooper -http://purl.obolibrary.org/obo/UBERON_0012103;suspensory ligament of breast;suspensory retinaculum of breast -http://purl.obolibrary.org/obo/UBERON_0012104;sesamoid bone of the peroneus longus muscle;os peroneum -http://purl.obolibrary.org/obo/UBERON_0012105;baleen plate; -http://purl.obolibrary.org/obo/UBERON_0012106;baleen plate bristle;baleen plate fringe -http://purl.obolibrary.org/obo/UBERON_0012106;baleen plate bristle;fringe of baleen plate -http://purl.obolibrary.org/obo/UBERON_0012108;postorbital bar;post-orbital bar -http://purl.obolibrary.org/obo/UBERON_0012109;zygomatic process of frontal bone;frontal bone - zygomatic process -http://purl.obolibrary.org/obo/UBERON_0012109;zygomatic process of frontal bone;processus zygomaticus (os frontale) -http://purl.obolibrary.org/obo/UBERON_0012109;zygomatic process of frontal bone;processus zygomaticus ossis frontalis -http://purl.obolibrary.org/obo/UBERON_0012110;frontal process of zygomatic bone;processus frontalis (os zygomaticum) -http://purl.obolibrary.org/obo/UBERON_0012110;frontal process of zygomatic bone;processus frontalis ossis zygomatici -http://purl.obolibrary.org/obo/UBERON_0012110;frontal process of zygomatic bone;zygomatic bone - frontal process -http://purl.obolibrary.org/obo/UBERON_0012111;diastema;interdental space -http://purl.obolibrary.org/obo/UBERON_0012112;ingested food; -http://purl.obolibrary.org/obo/UBERON_0012113;bolus of food;bolus of ingested food -http://purl.obolibrary.org/obo/UBERON_0012113;bolus of food;food bolus -http://purl.obolibrary.org/obo/UBERON_0012114;cud; -http://purl.obolibrary.org/obo/UBERON_0012115;dental comb;tooth comb -http://purl.obolibrary.org/obo/UBERON_0012115;dental comb;toothcomb -http://purl.obolibrary.org/obo/UBERON_0012116;nutrient foramen conduit; -http://purl.obolibrary.org/obo/UBERON_0012117;lumen of nutrient foramen;nutrient foramen -http://purl.obolibrary.org/obo/UBERON_0012117;lumen of nutrient foramen;nutrient foramina -http://purl.obolibrary.org/obo/UBERON_0012118;infraspinatus tendon;tendon of infraspinatus muscle -http://purl.obolibrary.org/obo/UBERON_0012119;vinculum tendon of wing; -http://purl.obolibrary.org/obo/UBERON_0012120;vinculum of tendon;tendon vinculum -http://purl.obolibrary.org/obo/UBERON_0012121;respiratory velum; -http://purl.obolibrary.org/obo/UBERON_0012124;avian scapholunar bone; -http://purl.obolibrary.org/obo/UBERON_0012125;dermatological-muscosal system;dermatological system -http://purl.obolibrary.org/obo/UBERON_0012126;fibulare; -http://purl.obolibrary.org/obo/UBERON_0012127;feather barbicel;feather hooklet -http://purl.obolibrary.org/obo/UBERON_0012128;nose tip;apex nasi -http://purl.obolibrary.org/obo/UBERON_0012128;nose tip;apex of nose -http://purl.obolibrary.org/obo/UBERON_0012128;nose tip;nasal tip -http://purl.obolibrary.org/obo/UBERON_0012128;nose tip;tip of nose -http://purl.obolibrary.org/obo/UBERON_0012129;radial head of humerus;capitellum of humerus -http://purl.obolibrary.org/obo/UBERON_0012129;radial head of humerus;radial condyle of humerus -http://purl.obolibrary.org/obo/UBERON_0012130;olecranon fossa;fossa olecrani -http://purl.obolibrary.org/obo/UBERON_0012131;centrale;central mesopodium bone -http://purl.obolibrary.org/obo/UBERON_0012131;centrale;os centrale -http://purl.obolibrary.org/obo/UBERON_0012132;intercuneiform joint; -http://purl.obolibrary.org/obo/UBERON_0012133;lateral-intermediate intercuneiform joint; -http://purl.obolibrary.org/obo/UBERON_0012134;medial-intermediate intercuneiform joint; -http://purl.obolibrary.org/obo/UBERON_0012135;prepollex skeleton; -http://purl.obolibrary.org/obo/UBERON_0012136;prehallux; -http://purl.obolibrary.org/obo/UBERON_0012137;pedal digit 7;hind digit 7 -http://purl.obolibrary.org/obo/UBERON_0012137;pedal digit 7;hind digit VII -http://purl.obolibrary.org/obo/UBERON_0012137;pedal digit 7;hind limb digit 7 -http://purl.obolibrary.org/obo/UBERON_0012137;pedal digit 7;pedal digit VII -http://purl.obolibrary.org/obo/UBERON_0012137;pedal digit 7;pes digit VII -http://purl.obolibrary.org/obo/UBERON_0012137;pedal digit 7;seventh toe -http://purl.obolibrary.org/obo/UBERON_0012137;pedal digit 7;toe 7 -http://purl.obolibrary.org/obo/UBERON_0012138;pedal digit 8;digitus octus pedis -http://purl.obolibrary.org/obo/UBERON_0012138;pedal digit 8;eigth toe -http://purl.obolibrary.org/obo/UBERON_0012138;pedal digit 8;hind digit 8 -http://purl.obolibrary.org/obo/UBERON_0012138;pedal digit 8;hind digit VIII -http://purl.obolibrary.org/obo/UBERON_0012138;pedal digit 8;hind limb digit 8 -http://purl.obolibrary.org/obo/UBERON_0012138;pedal digit 8;pedal digit VIII -http://purl.obolibrary.org/obo/UBERON_0012138;pedal digit 8;pes digit VIII -http://purl.obolibrary.org/obo/UBERON_0012138;pedal digit 8;toe 8 -http://purl.obolibrary.org/obo/UBERON_0012139;segment of autopod; -http://purl.obolibrary.org/obo/UBERON_0012140;digitopodium region; -http://purl.obolibrary.org/obo/UBERON_0012141;manual digitopodium region; -http://purl.obolibrary.org/obo/UBERON_0012142;pedal digitopodium region; -http://purl.obolibrary.org/obo/UBERON_0012150;skeleton of digitopodium; -http://purl.obolibrary.org/obo/UBERON_0012151;skeleton of manual digitopodium; -http://purl.obolibrary.org/obo/UBERON_0012152;skeleton of pedal digitopodium; -http://purl.obolibrary.org/obo/UBERON_0012167;buccal fat pad;Bichat's fat pad -http://purl.obolibrary.org/obo/UBERON_0012167;buccal fat pad;cheek fat pad -http://purl.obolibrary.org/obo/UBERON_0012168;umbilical cord blood; -http://purl.obolibrary.org/obo/UBERON_0012170;core of nucleus accumbens;accumbens nucleus core -http://purl.obolibrary.org/obo/UBERON_0012170;core of nucleus accumbens;accumbens nucleus, core -http://purl.obolibrary.org/obo/UBERON_0012170;core of nucleus accumbens;core of nucleus accumbens -http://purl.obolibrary.org/obo/UBERON_0012170;core of nucleus accumbens;core region of nucleus accumbens -http://purl.obolibrary.org/obo/UBERON_0012170;core of nucleus accumbens;nucleus accumbens core -http://purl.obolibrary.org/obo/UBERON_0012170;core of nucleus accumbens;nucleusa ccumbens core -http://purl.obolibrary.org/obo/UBERON_0012171;shell of nucleus accumbens;accumbens nucleus shell -http://purl.obolibrary.org/obo/UBERON_0012171;shell of nucleus accumbens;accumbens nucleus, shell -http://purl.obolibrary.org/obo/UBERON_0012171;shell of nucleus accumbens;nucleus accumbens shell -http://purl.obolibrary.org/obo/UBERON_0012171;shell of nucleus accumbens;shell of nucleus accumbens -http://purl.obolibrary.org/obo/UBERON_0012171;shell of nucleus accumbens;shell region of nucleus accumbens -http://purl.obolibrary.org/obo/UBERON_0012172;stomach primordium; -http://purl.obolibrary.org/obo/UBERON_0012173;middle suprarenal artery;middle suprarenal arterial tree -http://purl.obolibrary.org/obo/UBERON_0012175;acoustico-facial VII-VIII ganglion complex;acousticofacial ganglion -http://purl.obolibrary.org/obo/UBERON_0012175;acoustico-facial VII-VIII ganglion complex;facio-acoustic ganglion -http://purl.obolibrary.org/obo/UBERON_0012175;acoustico-facial VII-VIII ganglion complex;facio-acoustic ganglion complex VII-VIII -http://purl.obolibrary.org/obo/UBERON_0012176;comb; -http://purl.obolibrary.org/obo/UBERON_0012177;skin apocrine gland; -http://purl.obolibrary.org/obo/UBERON_0012179;bone of pelvis; -http://purl.obolibrary.org/obo/UBERON_0012180;head or neck skin; -http://purl.obolibrary.org/obo/UBERON_0012181;tonsil crypt;cryptae tonsillares -http://purl.obolibrary.org/obo/UBERON_0012181;tonsil crypt;tonsillar crypt -http://purl.obolibrary.org/obo/UBERON_0012186;ovary growing follicle; -http://purl.obolibrary.org/obo/UBERON_0012187;frontal artery;supratrochlear artery -http://purl.obolibrary.org/obo/UBERON_0012187;frontal artery;supratrochlear branch of ophthalmic artery -http://purl.obolibrary.org/obo/UBERON_0012193;phrenic vein; -http://purl.obolibrary.org/obo/UBERON_0012194;superior intercostal vein; -http://purl.obolibrary.org/obo/UBERON_0012195;left superior intercostal vein; -http://purl.obolibrary.org/obo/UBERON_0012196;right superior intercostal vein; -http://purl.obolibrary.org/obo/UBERON_0012197;intercostal vein; -http://purl.obolibrary.org/obo/UBERON_0012198;intercostal space; -http://purl.obolibrary.org/obo/UBERON_0012199;posterior intercostal vein;venae intercostalis posterior -http://purl.obolibrary.org/obo/UBERON_0012200;anterior intercostal vein; -http://purl.obolibrary.org/obo/UBERON_0012236;intercostal lymph node;intercostal node -http://purl.obolibrary.org/obo/UBERON_0012236;intercostal lymph node;nodi lymphoidei intercostales -http://purl.obolibrary.org/obo/UBERON_0012236;intercostal lymph node;nodus intercostale -http://purl.obolibrary.org/obo/UBERON_0012237;superior phrenic vein; -http://purl.obolibrary.org/obo/UBERON_0012238;ureteric bud trunk; -http://purl.obolibrary.org/obo/UBERON_0012239;urinary bladder vasculature;bladder vasculature -http://purl.obolibrary.org/obo/UBERON_0012239;urinary bladder vasculature;blood vessels of bladder -http://purl.obolibrary.org/obo/UBERON_0012239;urinary bladder vasculature;set of urinary bladder blood vessels -http://purl.obolibrary.org/obo/UBERON_0012240;urethral meatus;external meatus of urethra -http://purl.obolibrary.org/obo/UBERON_0012240;urethral meatus;external urethral orifice -http://purl.obolibrary.org/obo/UBERON_0012240;urethral meatus;external urethral ostium -http://purl.obolibrary.org/obo/UBERON_0012240;urethral meatus;external urinary meatus -http://purl.obolibrary.org/obo/UBERON_0012240;urethral meatus;meatus urinarius -http://purl.obolibrary.org/obo/UBERON_0012240;urethral meatus;orificium urethrae externum -http://purl.obolibrary.org/obo/UBERON_0012240;urethral meatus;orificium urethræ externum -http://purl.obolibrary.org/obo/UBERON_0012240;urethral meatus;urethral meatus -http://purl.obolibrary.org/obo/UBERON_0012241;male urethral meatus;external orifice of male urethra -http://purl.obolibrary.org/obo/UBERON_0012241;male urethral meatus;external urethral orifice (male) -http://purl.obolibrary.org/obo/UBERON_0012241;male urethral meatus;male urethra ostium -http://purl.obolibrary.org/obo/UBERON_0012241;male urethral meatus;ostium urethrae externum (urethra masculina) -http://purl.obolibrary.org/obo/UBERON_0012241;male urethral meatus;urethral meatus of penile urethra -http://purl.obolibrary.org/obo/UBERON_0012242;internal urethral orifice;internal meatus of urethra -http://purl.obolibrary.org/obo/UBERON_0012242;internal urethral orifice;internal urethral orifice of urinary bladder -http://purl.obolibrary.org/obo/UBERON_0012242;internal urethral orifice;internal urethral ostium -http://purl.obolibrary.org/obo/UBERON_0012242;internal urethral orifice;orificium urethrae internum -http://purl.obolibrary.org/obo/UBERON_0012242;internal urethral orifice;ostium orificium internum -http://purl.obolibrary.org/obo/UBERON_0012242;internal urethral orifice;ostium urethrae internum -http://purl.obolibrary.org/obo/UBERON_0012242;internal urethral orifice;vesicourethral orifice -http://purl.obolibrary.org/obo/UBERON_0012243;nuptial pad;nuptial ball -http://purl.obolibrary.org/obo/UBERON_0012243;nuptial pad;nuptial excrescence -http://purl.obolibrary.org/obo/UBERON_0012244;stratum intermedium of epidermis; -http://purl.obolibrary.org/obo/UBERON_0012245;silk; -http://purl.obolibrary.org/obo/UBERON_0012246;thyroid follicular lumen;lumen of thyroid follicle -http://purl.obolibrary.org/obo/UBERON_0012246;thyroid follicular lumen;thyroid follicle lumen -http://purl.obolibrary.org/obo/UBERON_0012246;thyroid follicular lumen;thyroid follicular space -http://purl.obolibrary.org/obo/UBERON_0012247;cervical gland;glandulae cervicales -http://purl.obolibrary.org/obo/UBERON_0012248;cervical mucosa; -http://purl.obolibrary.org/obo/UBERON_0012249;ectocervix;ectocervix -http://purl.obolibrary.org/obo/UBERON_0012249;ectocervix;portio vaginalis -http://purl.obolibrary.org/obo/UBERON_0012249;ectocervix;portio vaginalis cervicis -http://purl.obolibrary.org/obo/UBERON_0012249;ectocervix;uterine ectocervix -http://purl.obolibrary.org/obo/UBERON_0012249;ectocervix;vaginal part of cervix -http://purl.obolibrary.org/obo/UBERON_0012250;cervix glandular epithelium; -http://purl.obolibrary.org/obo/UBERON_0012251;ectocervical epithelium;exocervical epithelium -http://purl.obolibrary.org/obo/UBERON_0012252;endocervical epithelium;endocervical glandular epithelium -http://purl.obolibrary.org/obo/UBERON_0012253;cervical squamo-columnar junction;squamo-columnar junction of uterine cervix -http://purl.obolibrary.org/obo/UBERON_0012253;cervical squamo-columnar junction;squamocolumnar junction of uterine cervix -http://purl.obolibrary.org/obo/UBERON_0012254;abdominal aorta artery;abdominal artery -http://purl.obolibrary.org/obo/UBERON_0012254;abdominal aorta artery;artery of abdomen -http://purl.obolibrary.org/obo/UBERON_0012255;inferior phrenic artery;arteriae phrenicae inferiores -http://purl.obolibrary.org/obo/UBERON_0012256;digestive syncytial vacuole; -http://purl.obolibrary.org/obo/UBERON_0012260;alular digit; -http://purl.obolibrary.org/obo/UBERON_0012261;manual major digit (Aves); -http://purl.obolibrary.org/obo/UBERON_0012262;manual minor digit (Aves); -http://purl.obolibrary.org/obo/UBERON_0012267;equine splint bone;splint bone -http://purl.obolibrary.org/obo/UBERON_0012268;equine forelimb splint bone;forelimb splint bone -http://purl.obolibrary.org/obo/UBERON_0012269;equine hindlimb splint bone;hindlimb splint bone -http://purl.obolibrary.org/obo/UBERON_0012270;forestomach-glandular stomach junction; -http://purl.obolibrary.org/obo/UBERON_0012271;major duodenal papilla;greater duodenal papilla -http://purl.obolibrary.org/obo/UBERON_0012271;major duodenal papilla;tubercle of Vater -http://purl.obolibrary.org/obo/UBERON_0012272;minor duodenal papilla;Santorini's caruncle -http://purl.obolibrary.org/obo/UBERON_0012272;minor duodenal papilla;Santorini's minor caruncle -http://purl.obolibrary.org/obo/UBERON_0012272;minor duodenal papilla;lesser duodenal papilla -http://purl.obolibrary.org/obo/UBERON_0012273;periampullary region of duodenum;periampullary region -http://purl.obolibrary.org/obo/UBERON_0012274;columnar epithelium; -http://purl.obolibrary.org/obo/UBERON_0012275;meso-epithelium;mesoderm-derived epithelium -http://purl.obolibrary.org/obo/UBERON_0012275;meso-epithelium;mesoepithelium -http://purl.obolibrary.org/obo/UBERON_0012276;endometrium glandular epithelium;glandular part of endometrium -http://purl.obolibrary.org/obo/UBERON_0012276;endometrium glandular epithelium;uterine glands -http://purl.obolibrary.org/obo/UBERON_0012276;endometrium glandular epithelium;uterine glands set -http://purl.obolibrary.org/obo/UBERON_0012278;gland of nasal mucosa;glandula nasalis -http://purl.obolibrary.org/obo/UBERON_0012278;gland of nasal mucosa;glandulae nasales -http://purl.obolibrary.org/obo/UBERON_0012279;chromaffin paraganglion; -http://purl.obolibrary.org/obo/UBERON_0012281;perianal sebaceous gland; -http://purl.obolibrary.org/obo/UBERON_0012282;mammary fat pad; -http://purl.obolibrary.org/obo/UBERON_0012283;femoral fat pad;femoral fat depot -http://purl.obolibrary.org/obo/UBERON_0012284;animal hemisphere; -http://purl.obolibrary.org/obo/UBERON_0012285;vegetal hemisphere; -http://purl.obolibrary.org/obo/UBERON_0012286;hemisphere of embryo; -http://purl.obolibrary.org/obo/UBERON_0012287;Rathkes pouch epithelium; -http://purl.obolibrary.org/obo/UBERON_0012288;centroquartal bone;os centroquartale -http://purl.obolibrary.org/obo/UBERON_0012288;centroquartal bone;os naviculocuboideum -http://purl.obolibrary.org/obo/UBERON_0012289;fused tarsal bones 2 and 3;fused tarsals 2 and 3 -http://purl.obolibrary.org/obo/UBERON_0012289;fused tarsal bones 2 and 3;os cuneiforme intermediolaterale -http://purl.obolibrary.org/obo/UBERON_0012289;fused tarsal bones 2 and 3;os tarsale II et III -http://purl.obolibrary.org/obo/UBERON_0012290;fused carpal bones 2 and 3;fused carpals 2 and 3 -http://purl.obolibrary.org/obo/UBERON_0012291;lateral malleolus of fibula; -http://purl.obolibrary.org/obo/UBERON_0012292;embryonic cloacal fold; -http://purl.obolibrary.org/obo/UBERON_0012293;anal fold; -http://purl.obolibrary.org/obo/UBERON_0012294;navicular fossa of spongiose part of urethra;fossa navicularis of urethra -http://purl.obolibrary.org/obo/UBERON_0012294;navicular fossa of spongiose part of urethra;fossa navicularis urethrae -http://purl.obolibrary.org/obo/UBERON_0012294;navicular fossa of spongiose part of urethra;fossa navicularis urethrae (pars spongiosa, urethra masculina) -http://purl.obolibrary.org/obo/UBERON_0012294;navicular fossa of spongiose part of urethra;navicular fossa -http://purl.obolibrary.org/obo/UBERON_0012294;navicular fossa of spongiose part of urethra;navicular fossa of urethra -http://purl.obolibrary.org/obo/UBERON_0012295;Guérin's valve;Guerin's valve -http://purl.obolibrary.org/obo/UBERON_0012295;Guérin's valve;Guérin's fold -http://purl.obolibrary.org/obo/UBERON_0012295;Guérin's valve;Guérin's valvule -http://purl.obolibrary.org/obo/UBERON_0012295;Guérin's valve;urethral valve of Guérin -http://purl.obolibrary.org/obo/UBERON_0012295;Guérin's valve;valve of fossa navicularis of urethra -http://purl.obolibrary.org/obo/UBERON_0012295;Guérin's valve;valvula fossae navicularis -http://purl.obolibrary.org/obo/UBERON_0012296;urethral crest;crista of urethra -http://purl.obolibrary.org/obo/UBERON_0012296;urethral crest;crista urethralis -http://purl.obolibrary.org/obo/UBERON_0012296;urethral crest;urethral crista -http://purl.obolibrary.org/obo/UBERON_0012297;male urethral crest;crista phallica -http://purl.obolibrary.org/obo/UBERON_0012297;male urethral crest;crista urethralis masculinae -http://purl.obolibrary.org/obo/UBERON_0012297;male urethral crest;urethral crest (male) -http://purl.obolibrary.org/obo/UBERON_0012297;male urethral crest;urethral crest of male -http://purl.obolibrary.org/obo/UBERON_0012298;female urethral crest;crista urethralis femininae -http://purl.obolibrary.org/obo/UBERON_0012298;female urethral crest;urethral crest (female) -http://purl.obolibrary.org/obo/UBERON_0012298;female urethral crest;urethral crest of female -http://purl.obolibrary.org/obo/UBERON_0012299;mucosa of urethra;mucous membrane of urethra -http://purl.obolibrary.org/obo/UBERON_0012299;mucosa of urethra;tunica mucosa urethrae -http://purl.obolibrary.org/obo/UBERON_0012299;mucosa of urethra;urethral mucosa -http://purl.obolibrary.org/obo/UBERON_0012300;limb paddle; -http://purl.obolibrary.org/obo/UBERON_0012301;female membranous urethra; -http://purl.obolibrary.org/obo/UBERON_0012302;male membranous urethra; -http://purl.obolibrary.org/obo/UBERON_0012303;ureteral orifice;Mercier's bar -http://purl.obolibrary.org/obo/UBERON_0012303;ureteral orifice;orifice of ureter -http://purl.obolibrary.org/obo/UBERON_0012303;ureteral orifice;orificium ureteris -http://purl.obolibrary.org/obo/UBERON_0012303;ureteral orifice;ostium ureteris -http://purl.obolibrary.org/obo/UBERON_0012303;ureteral orifice;ureteral meatus -http://purl.obolibrary.org/obo/UBERON_0012303;ureteral orifice;ureteral opening -http://purl.obolibrary.org/obo/UBERON_0012303;ureteral orifice;ureteric orifice -http://purl.obolibrary.org/obo/UBERON_0012303;ureteral orifice;ureteric ostium -http://purl.obolibrary.org/obo/UBERON_0012303;ureteral orifice;ureterovesical orifice -http://purl.obolibrary.org/obo/UBERON_0012304;nasal diverticulum; -http://purl.obolibrary.org/obo/UBERON_0012305;marginal cutaneous pouch of ear; -http://purl.obolibrary.org/obo/UBERON_0012306;lateral cervical lymph node;lateral cervical node -http://purl.obolibrary.org/obo/UBERON_0012307;anterior cervical lymph node;anterior cervical node -http://purl.obolibrary.org/obo/UBERON_0012308;superficial lateral cervical lymph node;superficial lateral cervical node -http://purl.obolibrary.org/obo/UBERON_0012309;superficial anterior cervical lymph node;anterior jugular lymph node -http://purl.obolibrary.org/obo/UBERON_0012310;deep lateral cervical lymph node;deep lateral cervical node -http://purl.obolibrary.org/obo/UBERON_0012311;deep anterior cervical lymph node; -http://purl.obolibrary.org/obo/UBERON_0012312;maxillary process ectoderm; -http://purl.obolibrary.org/obo/UBERON_0012313;1st arch maxillary ectoderm;ectoderm of maxillary component -http://purl.obolibrary.org/obo/UBERON_0012314;embryonic facial prominence; -http://purl.obolibrary.org/obo/UBERON_0012315;incisive foramen;Stenson's foramen -http://purl.obolibrary.org/obo/UBERON_0012315;incisive foramen;foramina incisivum -http://purl.obolibrary.org/obo/UBERON_0012315;incisive foramen;nasopalatine foramen -http://purl.obolibrary.org/obo/UBERON_0012316;primitive palate; -http://purl.obolibrary.org/obo/UBERON_0012317;vagina orifice;opening of vagina -http://purl.obolibrary.org/obo/UBERON_0012317;vagina orifice;orifice of vagina -http://purl.obolibrary.org/obo/UBERON_0012317;vagina orifice;ostium vaginae -http://purl.obolibrary.org/obo/UBERON_0012317;vagina orifice;vagina opening -http://purl.obolibrary.org/obo/UBERON_0012317;vagina orifice;vaginal orifice -http://purl.obolibrary.org/obo/UBERON_0012318;anterior ethmoidal artery;a. ethmoidalis anterior -http://purl.obolibrary.org/obo/UBERON_0012318;anterior ethmoidal artery;arteria ethmoidalis anterior -http://purl.obolibrary.org/obo/UBERON_0012319;posterior ethmoidal artery;a. ethmoidalis posterior -http://purl.obolibrary.org/obo/UBERON_0012319;posterior ethmoidal artery;arteria ethmoidalis posterior -http://purl.obolibrary.org/obo/UBERON_0012320;cervical artery; -http://purl.obolibrary.org/obo/UBERON_0012321;deep cervical artery; -http://purl.obolibrary.org/obo/UBERON_0012322;ascending cervical artery; -http://purl.obolibrary.org/obo/UBERON_0012324;transverse cervical artery; -http://purl.obolibrary.org/obo/UBERON_0012325;retrocerebral complex; -http://purl.obolibrary.org/obo/UBERON_0012326;gubernacular bulb; -http://purl.obolibrary.org/obo/UBERON_0012327;pearly penile papule;hirsuties coronae glandis -http://purl.obolibrary.org/obo/UBERON_0012327;pearly penile papule;hirsutoid papilloma -http://purl.obolibrary.org/obo/UBERON_0012328;penile spine; -http://purl.obolibrary.org/obo/UBERON_0012329;keratinized stratified squamous epithelium;epithelium stratificatum squamosum cornificatum -http://purl.obolibrary.org/obo/UBERON_0012330;nasal-associated lymphoid tissue;NALT -http://purl.obolibrary.org/obo/UBERON_0012330;nasal-associated lymphoid tissue;naso-pharyngeal lymphoid tissue -http://purl.obolibrary.org/obo/UBERON_0012331;mesosalpinx; -http://purl.obolibrary.org/obo/UBERON_0012332;broad ligament of uterus;broad uterine ligament -http://purl.obolibrary.org/obo/UBERON_0012333;ovarian bursa; -http://purl.obolibrary.org/obo/UBERON_0012334;navicular bursa;bursa podotrochlearis -http://purl.obolibrary.org/obo/UBERON_0012335;navicular bursa of manus;bursa podotrochlearis manus -http://purl.obolibrary.org/obo/UBERON_0012335;navicular bursa of manus;navicular bursa of forelimb -http://purl.obolibrary.org/obo/UBERON_0012336;perianal skin;skin of perianal area -http://purl.obolibrary.org/obo/UBERON_0012337;cauda equina; -http://purl.obolibrary.org/obo/UBERON_0012343;navicular bursa of pes;bursa podotrochlearis pes -http://purl.obolibrary.org/obo/UBERON_0012343;navicular bursa of pes;navicular bursa of hindlimb -http://purl.obolibrary.org/obo/UBERON_0012344;holocrine gland; -http://purl.obolibrary.org/obo/UBERON_0012348;autopod pad; -http://purl.obolibrary.org/obo/UBERON_0012349;digital pad;acropodial pad -http://purl.obolibrary.org/obo/UBERON_0012349;digital pad;acropodium pad -http://purl.obolibrary.org/obo/UBERON_0012349;digital pad;interdigital pad -http://purl.obolibrary.org/obo/UBERON_0012350;carpal pad; -http://purl.obolibrary.org/obo/UBERON_0012351;urachal lumen;urachus lumen -http://purl.obolibrary.org/obo/UBERON_0012352;mesangial matrix;extracellular mesangial matrix -http://purl.obolibrary.org/obo/UBERON_0012353;fin skeleton;skeleton of fin -http://purl.obolibrary.org/obo/UBERON_0012354;acropodium region;acropodial limb segment -http://purl.obolibrary.org/obo/UBERON_0012354;acropodium region;acropodial region -http://purl.obolibrary.org/obo/UBERON_0012354;acropodium region;acropodial segment of autopod -http://purl.obolibrary.org/obo/UBERON_0012354;acropodium region;set of digits -http://purl.obolibrary.org/obo/UBERON_0012355;manual acropodium region;acropodial hindlimb segment -http://purl.obolibrary.org/obo/UBERON_0012355;manual acropodium region;acropodial region of manus -http://purl.obolibrary.org/obo/UBERON_0012355;manual acropodium region;acropodial segment of manus -http://purl.obolibrary.org/obo/UBERON_0012355;manual acropodium region;all fingers -http://purl.obolibrary.org/obo/UBERON_0012355;manual acropodium region;anterior acropodium region -http://purl.obolibrary.org/obo/UBERON_0012355;manual acropodium region;anterior acropodium segment of limb -http://purl.obolibrary.org/obo/UBERON_0012355;manual acropodium region;digiti manus -http://purl.obolibrary.org/obo/UBERON_0012355;manual acropodium region;digits of hand -http://purl.obolibrary.org/obo/UBERON_0012355;manual acropodium region;fingers including thumb -http://purl.obolibrary.org/obo/UBERON_0012355;manual acropodium region;fingers set -http://purl.obolibrary.org/obo/UBERON_0012355;manual acropodium region;manual acropodium region -http://purl.obolibrary.org/obo/UBERON_0012355;manual acropodium region;manual acropodium segment of limb -http://purl.obolibrary.org/obo/UBERON_0012355;manual acropodium region;set of digits of hand -http://purl.obolibrary.org/obo/UBERON_0012355;manual acropodium region;set of fingers -http://purl.obolibrary.org/obo/UBERON_0012356;pedal acropodium region;acropodial forelimb segment -http://purl.obolibrary.org/obo/UBERON_0012356;pedal acropodium region;acropodial region of pes -http://purl.obolibrary.org/obo/UBERON_0012356;pedal acropodium region;acropodial segment of pes -http://purl.obolibrary.org/obo/UBERON_0012356;pedal acropodium region;all toes -http://purl.obolibrary.org/obo/UBERON_0012356;pedal acropodium region;digits of foot -http://purl.obolibrary.org/obo/UBERON_0012356;pedal acropodium region;pedal acropodium region -http://purl.obolibrary.org/obo/UBERON_0012356;pedal acropodium region;set of toes -http://purl.obolibrary.org/obo/UBERON_0012356;pedal acropodium region;toes set -http://purl.obolibrary.org/obo/UBERON_0012357;digitopodium bone; -http://purl.obolibrary.org/obo/UBERON_0012358;manual digitopodium bone;bone of forelimb digitopodium -http://purl.obolibrary.org/obo/UBERON_0012359;pedal digitopodium bone;bone of hindlimb digitopodium -http://purl.obolibrary.org/obo/UBERON_0012360;bone of jaw;jaw bone -http://purl.obolibrary.org/obo/UBERON_0012361;internal anal region; -http://purl.obolibrary.org/obo/UBERON_0012363;thyroid follicle epithelium;epithelium of thyroid follicle -http://purl.obolibrary.org/obo/UBERON_0012363;thyroid follicle epithelium;thyroid follicle epithelium -http://purl.obolibrary.org/obo/UBERON_0012363;thyroid follicle epithelium;wall of thyroid follicle -http://purl.obolibrary.org/obo/UBERON_0012364;colloid of thyroid follicle;thyroid colloid -http://purl.obolibrary.org/obo/UBERON_0012364;colloid of thyroid follicle;thyroid follicle colloid -http://purl.obolibrary.org/obo/UBERON_0012367;muscle layer of intestine;intestinal muscularis propria -http://purl.obolibrary.org/obo/UBERON_0012367;muscle layer of intestine;muscularis externa of intestine -http://purl.obolibrary.org/obo/UBERON_0012367;muscle layer of intestine;smooth muscle of intestine -http://purl.obolibrary.org/obo/UBERON_0012368;circular muscle layer of muscular coat;circular muscle layer -http://purl.obolibrary.org/obo/UBERON_0012368;circular muscle layer of muscular coat;circular smooth muscle -http://purl.obolibrary.org/obo/UBERON_0012368;circular muscle layer of muscular coat;inner muscularis -http://purl.obolibrary.org/obo/UBERON_0012368;circular muscle layer of muscular coat;inner muscularis layer -http://purl.obolibrary.org/obo/UBERON_0012369;longitudinal muscle layer of muscular coat;longitudinal muscle layer -http://purl.obolibrary.org/obo/UBERON_0012369;longitudinal muscle layer of muscular coat;longitudinal smooth muscle -http://purl.obolibrary.org/obo/UBERON_0012369;longitudinal muscle layer of muscular coat;outer muscularis -http://purl.obolibrary.org/obo/UBERON_0012369;longitudinal muscle layer of muscular coat;outer muscularis layer -http://purl.obolibrary.org/obo/UBERON_0012373;sympathetic nerve plexus; -http://purl.obolibrary.org/obo/UBERON_0012374;subserosal plexus;subserous nerve plexus -http://purl.obolibrary.org/obo/UBERON_0012374;subserosal plexus;subserous plexus -http://purl.obolibrary.org/obo/UBERON_0012374;subserosal plexus;tela subserosa -http://purl.obolibrary.org/obo/UBERON_0012375;subserosa; -http://purl.obolibrary.org/obo/UBERON_0012376;retromolar triangle; -http://purl.obolibrary.org/obo/UBERON_0012377;muscle layer of jejunum;muscularis externa of jejunum -http://purl.obolibrary.org/obo/UBERON_0012378;muscle layer of urinary bladder;bladder muscular coat -http://purl.obolibrary.org/obo/UBERON_0012378;muscle layer of urinary bladder;muscle layer of urinary bladder -http://purl.obolibrary.org/obo/UBERON_0012378;muscle layer of urinary bladder;muscular coat of bladder -http://purl.obolibrary.org/obo/UBERON_0012378;muscle layer of urinary bladder;muscular coat of urinary bladder -http://purl.obolibrary.org/obo/UBERON_0012378;muscle layer of urinary bladder;muscular layer of bladder -http://purl.obolibrary.org/obo/UBERON_0012378;muscle layer of urinary bladder;muscular layer of urinary bladder -http://purl.obolibrary.org/obo/UBERON_0012378;muscle layer of urinary bladder;tunica musculari vesicae -http://purl.obolibrary.org/obo/UBERON_0012378;muscle layer of urinary bladder;tunica muscularis (vesica urinaria) -http://purl.obolibrary.org/obo/UBERON_0012398;large intestine smooth muscle circular layer; -http://purl.obolibrary.org/obo/UBERON_0012399;large intestine smooth muscle longitudinal layer;longitudinal muscle layer of zone of large intestine -http://purl.obolibrary.org/obo/UBERON_0012401;small intestine smooth muscle circular layer;circular layer of small intestine muscularis propria -http://purl.obolibrary.org/obo/UBERON_0012401;small intestine smooth muscle circular layer;circular muscle coat of small intestine -http://purl.obolibrary.org/obo/UBERON_0012401;small intestine smooth muscle circular layer;circular muscle layer of small intestine -http://purl.obolibrary.org/obo/UBERON_0012401;small intestine smooth muscle circular layer;circular muscle of small intestine -http://purl.obolibrary.org/obo/UBERON_0012401;small intestine smooth muscle circular layer;short pitch helicoidal muscle layer of small intestine -http://purl.obolibrary.org/obo/UBERON_0012401;small intestine smooth muscle circular layer;stratum circulare (tunica muscularis)(intestinum tenue) -http://purl.obolibrary.org/obo/UBERON_0012401;small intestine smooth muscle circular layer;stratum circulare tunicae muscularis intestini tenuis -http://purl.obolibrary.org/obo/UBERON_0012401;small intestine smooth muscle circular layer;stratum helicoidale brevis gradus tunicae muscularis intestini tenuis -http://purl.obolibrary.org/obo/UBERON_0012402;small intestine smooth muscle longitudinal layer;long pitch helicoidal muscle layer of small intestine -http://purl.obolibrary.org/obo/UBERON_0012402;small intestine smooth muscle longitudinal layer;longitudinal layer of small intestine muscularis propria -http://purl.obolibrary.org/obo/UBERON_0012402;small intestine smooth muscle longitudinal layer;longitudinal muscle coat of small intestine -http://purl.obolibrary.org/obo/UBERON_0012402;small intestine smooth muscle longitudinal layer;longitudinal muscle layer of small intestine -http://purl.obolibrary.org/obo/UBERON_0012402;small intestine smooth muscle longitudinal layer;longitudinal muscle of small intestine -http://purl.obolibrary.org/obo/UBERON_0012402;small intestine smooth muscle longitudinal layer;stratum helicoidale longi gradus tunicae muscularis intestini tenuis -http://purl.obolibrary.org/obo/UBERON_0012402;small intestine smooth muscle longitudinal layer;stratum longitudinale (tunica muscularis) (intestinum tenue) -http://purl.obolibrary.org/obo/UBERON_0012402;small intestine smooth muscle longitudinal layer;stratum longitudinale tunicae muscularis intestini tenuis -http://purl.obolibrary.org/obo/UBERON_0012416;respiratory system arterial smooth muscle; -http://purl.obolibrary.org/obo/UBERON_0012418;respiratory system venous smooth muscle; -http://purl.obolibrary.org/obo/UBERON_0012419;taenia coli;longitudinal band of large intestine muscularis -http://purl.obolibrary.org/obo/UBERON_0012420;coprodeum;cloacal coprodeum -http://purl.obolibrary.org/obo/UBERON_0012420;coprodeum;coprodaeum -http://purl.obolibrary.org/obo/UBERON_0012420;coprodeum;coprodeal portion of cloaca -http://purl.obolibrary.org/obo/UBERON_0012421;urodeum;cloacal urodeum -http://purl.obolibrary.org/obo/UBERON_0012421;urodeum;urodaeum -http://purl.obolibrary.org/obo/UBERON_0012421;urodeum;urodeal portion of cloaca -http://purl.obolibrary.org/obo/UBERON_0012422;secretion of crop; -http://purl.obolibrary.org/obo/UBERON_0012423;layer of microvilli; -http://purl.obolibrary.org/obo/UBERON_0012424;brush border layer; -http://purl.obolibrary.org/obo/UBERON_0012425;striated border microvillus layer; -http://purl.obolibrary.org/obo/UBERON_0012426;short microvillus layer; -http://purl.obolibrary.org/obo/UBERON_0012427;intestinal brush border layer;brush border microvillus layer of intestine -http://purl.obolibrary.org/obo/UBERON_0012427;intestinal brush border layer;intestinal brush border -http://purl.obolibrary.org/obo/UBERON_0012428;proximal convoluted tubule brush border; -http://purl.obolibrary.org/obo/UBERON_0012429;hematopoietic tissue;haemopoietic tissue -http://purl.obolibrary.org/obo/UBERON_0012429;hematopoietic tissue;hematopoietic tissue -http://purl.obolibrary.org/obo/UBERON_0012429;hematopoietic tissue;hemopoietic tissue -http://purl.obolibrary.org/obo/UBERON_0012429;hematopoietic tissue;textus haemopoieticus -http://purl.obolibrary.org/obo/UBERON_0012430;tunica fibrosa of eyeball;fibrous layer of eyeball -http://purl.obolibrary.org/obo/UBERON_0012437;epithelial-mesenchymal boundary; -http://purl.obolibrary.org/obo/UBERON_0012438;blastema of regenerating fin/limb; -http://purl.obolibrary.org/obo/UBERON_0012439;blastema of regenerating digit tip; -http://purl.obolibrary.org/obo/UBERON_0012441;endothelium of peritubular capillary;peritubular capillary endothelium -http://purl.obolibrary.org/obo/UBERON_0012442;epiploic foramen;aditus to lesser sac -http://purl.obolibrary.org/obo/UBERON_0012442;epiploic foramen;epiploic foramen of Winslow -http://purl.obolibrary.org/obo/UBERON_0012442;epiploic foramen;foramen of Winslow -http://purl.obolibrary.org/obo/UBERON_0012442;epiploic foramen;foramen omentale -http://purl.obolibrary.org/obo/UBERON_0012442;epiploic foramen;foramen omentale (epiploicum) -http://purl.obolibrary.org/obo/UBERON_0012442;epiploic foramen;omental foramen -http://purl.obolibrary.org/obo/UBERON_0012443;row of scales; -http://purl.obolibrary.org/obo/UBERON_0012444;gastropege; -http://purl.obolibrary.org/obo/UBERON_0012447;podotheca; -http://purl.obolibrary.org/obo/UBERON_0012448;Herbst's corpuscle; -http://purl.obolibrary.org/obo/UBERON_0012449;mechanoreceptor; -http://purl.obolibrary.org/obo/UBERON_0012450;Meissner's corpuscle; -http://purl.obolibrary.org/obo/UBERON_0012451;sensory receptor;peripheral ending of sensory neuron -http://purl.obolibrary.org/obo/UBERON_0012453;nerve ending; -http://purl.obolibrary.org/obo/UBERON_0012456;Merkel nerve ending;Merkel's disc -http://purl.obolibrary.org/obo/UBERON_0012456;Merkel nerve ending;Merkel's disk -http://purl.obolibrary.org/obo/UBERON_0012456;Merkel nerve ending;Merkel's receptor -http://purl.obolibrary.org/obo/UBERON_0012456;Merkel nerve ending;Merkel's tactile disc -http://purl.obolibrary.org/obo/UBERON_0012457;Ruffini nerve ending;Ruffini's corpuscle -http://purl.obolibrary.org/obo/UBERON_0012457;Ruffini nerve ending;corpusculum sensorium fusiforme -http://purl.obolibrary.org/obo/UBERON_0012458;antler velvet;velvet of antler -http://purl.obolibrary.org/obo/UBERON_0012459;antler pedicle; -http://purl.obolibrary.org/obo/UBERON_0012462;proctodeum portion of cloaca; -http://purl.obolibrary.org/obo/UBERON_0012463;cloacal lumen;cloaca lumen -http://purl.obolibrary.org/obo/UBERON_0012463;cloacal lumen;cloacal chamber -http://purl.obolibrary.org/obo/UBERON_0012464;cloacal vent;cloacal opening -http://purl.obolibrary.org/obo/UBERON_0012465;lumen of terminal part of digestive tract; -http://purl.obolibrary.org/obo/UBERON_0012466;extraembryonic cavity; -http://purl.obolibrary.org/obo/UBERON_0012467;enclosed anatomical space;closed anatomical space -http://purl.obolibrary.org/obo/UBERON_0012468;anal tooth;anal teeth -http://purl.obolibrary.org/obo/UBERON_0012469;external anal region; -http://purl.obolibrary.org/obo/UBERON_0012470;wheel papilla; -http://purl.obolibrary.org/obo/UBERON_0012471;hepatogastric ligament;gastro-hepatic ligament -http://purl.obolibrary.org/obo/UBERON_0012471;hepatogastric ligament;gastrohepatic ligament -http://purl.obolibrary.org/obo/UBERON_0012471;hepatogastric ligament;hepato-gastric ligament -http://purl.obolibrary.org/obo/UBERON_0012471;hepatogastric ligament;ligamentum hepatogastricum -http://purl.obolibrary.org/obo/UBERON_0012472;hepatoduodenal ligament;ligamentum hepatoduodenale -http://purl.obolibrary.org/obo/UBERON_0012473;oral cirrus;buccal cilia -http://purl.obolibrary.org/obo/UBERON_0012473;oral cirrus;buccal cirri -http://purl.obolibrary.org/obo/UBERON_0012473;oral cirrus;buccal cirrus -http://purl.obolibrary.org/obo/UBERON_0012473;oral cirrus;buccal tentacle -http://purl.obolibrary.org/obo/UBERON_0012473;oral cirrus;oral cilia -http://purl.obolibrary.org/obo/UBERON_0012473;oral cirrus;oral cirri -http://purl.obolibrary.org/obo/UBERON_0012473;oral cirrus;oral tentacle -http://purl.obolibrary.org/obo/UBERON_0012474;hepatic cecum;hepatic caecum -http://purl.obolibrary.org/obo/UBERON_0012475;skeleton of pectoral complex; -http://purl.obolibrary.org/obo/UBERON_0012476;skeleton of pelvic complex; -http://purl.obolibrary.org/obo/UBERON_0012477;dorsal part of neck;back of neck -http://purl.obolibrary.org/obo/UBERON_0012477;dorsal part of neck;nape of neck -http://purl.obolibrary.org/obo/UBERON_0012477;dorsal part of neck;neck back -http://purl.obolibrary.org/obo/UBERON_0012477;dorsal part of neck;nucha -http://purl.obolibrary.org/obo/UBERON_0012477;dorsal part of neck;nuchal region -http://purl.obolibrary.org/obo/UBERON_0012477;dorsal part of neck;posterior cervical region -http://purl.obolibrary.org/obo/UBERON_0012477;dorsal part of neck;posterior neck region -http://purl.obolibrary.org/obo/UBERON_0012477;dorsal part of neck;posterior part of neck -http://purl.obolibrary.org/obo/UBERON_0012477;dorsal part of neck;regio cervicalis posterior -http://purl.obolibrary.org/obo/UBERON_0012478;cloacal gland; -http://purl.obolibrary.org/obo/UBERON_0012479;urodeal gland;urodaeal gland -http://purl.obolibrary.org/obo/UBERON_0012480;cloacal mucosa;cloaca mucosa -http://purl.obolibrary.org/obo/UBERON_0012480;cloacal mucosa;cloaca mucosa of organ -http://purl.obolibrary.org/obo/UBERON_0012480;cloacal mucosa;cloaca mucous membrane -http://purl.obolibrary.org/obo/UBERON_0012480;cloacal mucosa;cloaca organ mucosa -http://purl.obolibrary.org/obo/UBERON_0012480;cloacal mucosa;cloacal mucous membrane -http://purl.obolibrary.org/obo/UBERON_0012480;cloacal mucosa;mucosa of cloaca -http://purl.obolibrary.org/obo/UBERON_0012480;cloacal mucosa;mucosa of organ of cloaca -http://purl.obolibrary.org/obo/UBERON_0012480;cloacal mucosa;mucous membrane of cloaca -http://purl.obolibrary.org/obo/UBERON_0012480;cloacal mucosa;organ mucosa of cloaca -http://purl.obolibrary.org/obo/UBERON_0012481;cloacal epithelium; -http://purl.obolibrary.org/obo/UBERON_0012482;submucosa of cloaca;cloaca submucosa -http://purl.obolibrary.org/obo/UBERON_0012482;submucosa of cloaca;cloacal submucosa -http://purl.obolibrary.org/obo/UBERON_0012483;serosa of cloaca;cloaca serosa -http://purl.obolibrary.org/obo/UBERON_0012483;serosa of cloaca;cloaca serous membrane -http://purl.obolibrary.org/obo/UBERON_0012483;serosa of cloaca;cloacal serosa -http://purl.obolibrary.org/obo/UBERON_0012483;serosa of cloaca;serous membrane of cloaca -http://purl.obolibrary.org/obo/UBERON_0012483;serosa of cloaca;visceral peritoneum of cloaca -http://purl.obolibrary.org/obo/UBERON_0012485;cloacal villus;cloacal villi -http://purl.obolibrary.org/obo/UBERON_0012486;muscle layer of cloaca;muscularis externa of cloaca -http://purl.obolibrary.org/obo/UBERON_0012487;vaginal sphincter;sphincter of vagina -http://purl.obolibrary.org/obo/UBERON_0012488;muscle layer of duodenum;duodenal muscularis propria -http://purl.obolibrary.org/obo/UBERON_0012488;muscle layer of duodenum;muscularis externa of duodenum -http://purl.obolibrary.org/obo/UBERON_0012489;muscle layer of colon;colonic muscularis propria -http://purl.obolibrary.org/obo/UBERON_0012489;muscle layer of colon;muscular coat of colon -http://purl.obolibrary.org/obo/UBERON_0012489;muscle layer of colon;muscular layer of colon -http://purl.obolibrary.org/obo/UBERON_0012489;muscle layer of colon;muscularis externa of colon -http://purl.obolibrary.org/obo/UBERON_0012489;muscle layer of colon;tunica muscularis coli -http://purl.obolibrary.org/obo/UBERON_0012490;muscle layer of anal canal;anal canal muscularis propria -http://purl.obolibrary.org/obo/UBERON_0012490;muscle layer of anal canal;anal muscularis propria -http://purl.obolibrary.org/obo/UBERON_0012490;muscle layer of anal canal;muscular coat of anal canal -http://purl.obolibrary.org/obo/UBERON_0012490;muscle layer of anal canal;muscular layer of anal canal -http://purl.obolibrary.org/obo/UBERON_0012490;muscle layer of anal canal;muscularis externa of anal canal -http://purl.obolibrary.org/obo/UBERON_0012490;muscle layer of anal canal;muscularis propria of anal canal -http://purl.obolibrary.org/obo/UBERON_0012494;muscularis mucosae of duodenum;lamina muscularis of duodenal mucous membrane -http://purl.obolibrary.org/obo/UBERON_0012494;muscularis mucosae of duodenum;lamina muscularis of duodenum -http://purl.obolibrary.org/obo/UBERON_0012497;muscularis mucosae of rectum;lamina muscularis of rectal mucosa -http://purl.obolibrary.org/obo/UBERON_0012497;muscularis mucosae of rectum;lamina muscularis of rectal mucous membrane -http://purl.obolibrary.org/obo/UBERON_0012498;serosa of appendix;appendiceal serosa -http://purl.obolibrary.org/obo/UBERON_0012498;serosa of appendix;appendix serosa -http://purl.obolibrary.org/obo/UBERON_0012498;serosa of appendix;serosa of vermiform appendix -http://purl.obolibrary.org/obo/UBERON_0012498;serosa of appendix;visceral peritoneum of vermiform appendix -http://purl.obolibrary.org/obo/UBERON_0012499;serosa of uterine tube;serosa of fallopian tube -http://purl.obolibrary.org/obo/UBERON_0012499;serosa of uterine tube;serosa of oviduct -http://purl.obolibrary.org/obo/UBERON_0012499;serosa of uterine tube;serous coat of uterine tube -http://purl.obolibrary.org/obo/UBERON_0012499;serosa of uterine tube;tunica serosa (tuba uterina) -http://purl.obolibrary.org/obo/UBERON_0012499;serosa of uterine tube;tunica serosa tubae uterinae -http://purl.obolibrary.org/obo/UBERON_0012499;serosa of uterine tube;uterine tubal serosa -http://purl.obolibrary.org/obo/UBERON_0012499;serosa of uterine tube;uterine tube serosa -http://purl.obolibrary.org/obo/UBERON_0012503;serosa of fundus of stomach;visceral peritoneum of fundus of stomach -http://purl.obolibrary.org/obo/UBERON_0012504;adventitia of esophagus;adventitia of oesophagus -http://purl.obolibrary.org/obo/UBERON_0012504;adventitia of esophagus;adventitious layer of esophagus -http://purl.obolibrary.org/obo/UBERON_0012504;adventitia of esophagus;esophageal adventitia -http://purl.obolibrary.org/obo/UBERON_0012504;adventitia of esophagus;esophagus adventitia -http://purl.obolibrary.org/obo/UBERON_0012504;adventitia of esophagus;tunica adventitia (esophagus) -http://purl.obolibrary.org/obo/UBERON_0012504;adventitia of esophagus;tunica adventitia oesophageae -http://purl.obolibrary.org/obo/UBERON_0012520;forelimb epitrochlearis muscle;epitrochlearis -http://purl.obolibrary.org/obo/UBERON_0012615;umbilical smooth muscle; -http://purl.obolibrary.org/obo/UBERON_0012621;muscle of Aristotle's lantern;lantern muscle -http://purl.obolibrary.org/obo/UBERON_0012641;body of tubeworm; -http://purl.obolibrary.org/obo/UBERON_0012642;vestimentum muscle;vestimentum -http://purl.obolibrary.org/obo/UBERON_0012643;plume; -http://purl.obolibrary.org/obo/UBERON_0012644;trophosome; -http://purl.obolibrary.org/obo/UBERON_0012645;opisthosome; -http://purl.obolibrary.org/obo/UBERON_0012646;tubeworm tube; -http://purl.obolibrary.org/obo/UBERON_0012648;ampulla of uterine tube;ampulla of fallopian tube -http://purl.obolibrary.org/obo/UBERON_0012648;ampulla of uterine tube;ampulla of oviduct -http://purl.obolibrary.org/obo/UBERON_0012648;ampulla of uterine tube;ampulla tubae uterinae -http://purl.obolibrary.org/obo/UBERON_0012648;ampulla of uterine tube;uterine tube ampulla -http://purl.obolibrary.org/obo/UBERON_0012649;anococcygeus muscle;anococcygeus -http://purl.obolibrary.org/obo/UBERON_0012650;gastroduodenal junction; -http://purl.obolibrary.org/obo/UBERON_0012651;mucosa of gastroduodenal junction;gastroduodenal mucosa -http://purl.obolibrary.org/obo/UBERON_0012652;colorectum; -http://purl.obolibrary.org/obo/UBERON_0012925;bronchial bud; -http://purl.obolibrary.org/obo/UBERON_0013067;colorectal mucosa; -http://purl.obolibrary.org/obo/UBERON_0013068;palatine torus;torus palatinus -http://purl.obolibrary.org/obo/UBERON_0013069;popliteal area;popliteal fossa -http://purl.obolibrary.org/obo/UBERON_0013070;prepatagium; -http://purl.obolibrary.org/obo/UBERON_0013073;rattle;snake rattle -http://purl.obolibrary.org/obo/UBERON_0013074;cornual diverticulum;cornual sinus -http://purl.obolibrary.org/obo/UBERON_0013075;venom gland duct;duct of venom gland -http://purl.obolibrary.org/obo/UBERON_0013076;snake venom; -http://purl.obolibrary.org/obo/UBERON_0013078;venom-injecting tooth; -http://purl.obolibrary.org/obo/UBERON_0013106;elapid venom; -http://purl.obolibrary.org/obo/UBERON_0013110;hydrophid venom; -http://purl.obolibrary.org/obo/UBERON_0013112;viper venom; -http://purl.obolibrary.org/obo/UBERON_0013113;angular/surangular bone; -http://purl.obolibrary.org/obo/UBERON_0013114;compressor glandulae muscle; -http://purl.obolibrary.org/obo/UBERON_0013115;pterygoideus glandulae muscle; -http://purl.obolibrary.org/obo/UBERON_0013116;venom gland musculature; -http://purl.obolibrary.org/obo/UBERON_0013118;sulcus of brain;cerebral sulci -http://purl.obolibrary.org/obo/UBERON_0013119;haemal node;hemal node -http://purl.obolibrary.org/obo/UBERON_0013120;eyelid submuscular connective tissue; -http://purl.obolibrary.org/obo/UBERON_0013121;proximal epiphysis of phalanx of pes;basal epiphysis of phalanx of foot -http://purl.obolibrary.org/obo/UBERON_0013121;proximal epiphysis of phalanx of pes;base of phalanx of foot -http://purl.obolibrary.org/obo/UBERON_0013121;proximal epiphysis of phalanx of pes;basis phalangis (pedis) -http://purl.obolibrary.org/obo/UBERON_0013121;proximal epiphysis of phalanx of pes;basis phalangis pedis -http://purl.obolibrary.org/obo/UBERON_0013121;proximal epiphysis of phalanx of pes;proximal epiphysis of phalanx of toe -http://purl.obolibrary.org/obo/UBERON_0013122;distal epiphysis of phalanx of pes;caput phalangis (pedis) -http://purl.obolibrary.org/obo/UBERON_0013122;distal epiphysis of phalanx of pes;caput phalangis pedis -http://purl.obolibrary.org/obo/UBERON_0013122;distal epiphysis of phalanx of pes;distal end of phalanx of foot -http://purl.obolibrary.org/obo/UBERON_0013122;distal epiphysis of phalanx of pes;distal epiphysis of phalanx of toe -http://purl.obolibrary.org/obo/UBERON_0013122;distal epiphysis of phalanx of pes;head of phalanx of foot -http://purl.obolibrary.org/obo/UBERON_0013124;left posterior cardinal vein;left postcardinal vein -http://purl.obolibrary.org/obo/UBERON_0013124;left posterior cardinal vein;posterior cardinal vein left -http://purl.obolibrary.org/obo/UBERON_0013125;left subcardinal vein;subcardinal vein left -http://purl.obolibrary.org/obo/UBERON_0013126;vein of abdomen;abdominal vein -http://purl.obolibrary.org/obo/UBERON_0013127;pulmonary venous system;pulmonary venous circulatory system -http://purl.obolibrary.org/obo/UBERON_0013128;bulb of penis;bulbus penis -http://purl.obolibrary.org/obo/UBERON_0013128;bulb of penis;penile bulb -http://purl.obolibrary.org/obo/UBERON_0013128;bulb of penis;urethral bulb -http://purl.obolibrary.org/obo/UBERON_0013129;bulb of vestibule;bulbus vestibuli vaginae -http://purl.obolibrary.org/obo/UBERON_0013129;bulb of vestibule;vestibular bulb -http://purl.obolibrary.org/obo/UBERON_0013129;bulb of vestibule;vestibular bulb of vagina -http://purl.obolibrary.org/obo/UBERON_0013131;lobe of tail; -http://purl.obolibrary.org/obo/UBERON_0013132;penicillar arteriole;penicilli -http://purl.obolibrary.org/obo/UBERON_0013132;penicillar arteriole;penicillus -http://purl.obolibrary.org/obo/UBERON_0013133;superior phrenic artery;arteria phrenicea superioris -http://purl.obolibrary.org/obo/UBERON_0013133;superior phrenic artery;arteriae phrenicae superiores -http://purl.obolibrary.org/obo/UBERON_0013135;interdental plate; -http://purl.obolibrary.org/obo/UBERON_0013136;vein of lip;labial vein of face -http://purl.obolibrary.org/obo/UBERON_0013136;vein of lip;lip vein -http://purl.obolibrary.org/obo/UBERON_0013136;vein of lip;vena labialis -http://purl.obolibrary.org/obo/UBERON_0013137;external pudendal artery;arteriae pudendae externa -http://purl.obolibrary.org/obo/UBERON_0013137;external pudendal artery;arteriae pudendales externa -http://purl.obolibrary.org/obo/UBERON_0013138;coronary ligament of liver;coronary ligament -http://purl.obolibrary.org/obo/UBERON_0013138;coronary ligament of liver;ligamentum coronarium -http://purl.obolibrary.org/obo/UBERON_0013138;coronary ligament of liver;ligamentum coronarium hepatis -http://purl.obolibrary.org/obo/UBERON_0013139;ligament of liver;hepatic ligament -http://purl.obolibrary.org/obo/UBERON_0013139;ligament of liver;liver ligament -http://purl.obolibrary.org/obo/UBERON_0013140;systemic vein;systemic venous tree organ part -http://purl.obolibrary.org/obo/UBERON_0013141;capillary bed; -http://purl.obolibrary.org/obo/UBERON_0013142;soleal vein;soleus vein -http://purl.obolibrary.org/obo/UBERON_0013142;soleal vein;vein of soleus muscle -http://purl.obolibrary.org/obo/UBERON_0013142;soleal vein;vena solealis -http://purl.obolibrary.org/obo/UBERON_0013143;gastrocnemius vein;vein of gastrocnemius muscle -http://purl.obolibrary.org/obo/UBERON_0013143;gastrocnemius vein;vena gastrocnemii -http://purl.obolibrary.org/obo/UBERON_0013144;vein of genicular venous plexus; -http://purl.obolibrary.org/obo/UBERON_0013145;accessory saphenous vein;posteromedial vein of thigh -http://purl.obolibrary.org/obo/UBERON_0013146;venous system of brain;brain venous system -http://purl.obolibrary.org/obo/UBERON_0013147;early mesencephalic vesicle;mesencephalic vesicle -http://purl.obolibrary.org/obo/UBERON_0013148;early midbrain vesicle;midbrain vesicle -http://purl.obolibrary.org/obo/UBERON_0013149;hindbrain vesicle;rhombencephalic vesicle -http://purl.obolibrary.org/obo/UBERON_0013150;future brain vesicle;early brain vesicle -http://purl.obolibrary.org/obo/UBERON_0013150;future brain vesicle;primitive brain vesicle -http://purl.obolibrary.org/obo/UBERON_0013151;choroidal artery;artery of choroid plexus -http://purl.obolibrary.org/obo/UBERON_0013151;choroidal artery;choroid artery -http://purl.obolibrary.org/obo/UBERON_0013152;interventricular foramen of heart; -http://purl.obolibrary.org/obo/UBERON_0013153;arachnoid villus; -http://purl.obolibrary.org/obo/UBERON_0013154;1st arch maxillary endoderm;endoderm of maxillary component -http://purl.obolibrary.org/obo/UBERON_0013155;1st arch mandibular ectoderm;ectoderm of mandibular component -http://purl.obolibrary.org/obo/UBERON_0013156;1st arch mandibular endoderm;endoderm of mandibular component -http://purl.obolibrary.org/obo/UBERON_0013157;1st arch maxillary-mandibular cleft;1st arch maxillary-mandibular groove ectoderm -http://purl.obolibrary.org/obo/UBERON_0013157;1st arch maxillary-mandibular cleft;ectoderm of maxillary-mandibular groove -http://purl.obolibrary.org/obo/UBERON_0013158;foregut-midgut junction gland;gland of foregut-midgut junction -http://purl.obolibrary.org/obo/UBERON_0013159;epithalamus mantle layer;mantle layer epithalamus -http://purl.obolibrary.org/obo/UBERON_0013159;epithalamus mantle layer;mantle layer of epithalamus -http://purl.obolibrary.org/obo/UBERON_0013160;epithalamus ventricular layer;ventricular layer epithalamus -http://purl.obolibrary.org/obo/UBERON_0013160;epithalamus ventricular layer;ventricular layer of epithalamus -http://purl.obolibrary.org/obo/UBERON_0013161;left lateral ventricle;left telencephalic ventricle -http://purl.obolibrary.org/obo/UBERON_0013162;right lateral ventricle;right telencephalic ventricle -http://purl.obolibrary.org/obo/UBERON_0013164;molariform tooth;postcanine tooth -http://purl.obolibrary.org/obo/UBERON_0013165;epiglottic vallecula;vallecula epiglottica -http://purl.obolibrary.org/obo/UBERON_0013165;epiglottic vallecula;vallecula of epiglottis -http://purl.obolibrary.org/obo/UBERON_0013166;vallecula of cerebellum;vallecula cerebelli -http://purl.obolibrary.org/obo/UBERON_0013167;cricopharyngeal ligament;crico-pharyngeal ligament -http://purl.obolibrary.org/obo/UBERON_0013167;cricopharyngeal ligament;ligamentum cricopharyngeum -http://purl.obolibrary.org/obo/UBERON_0013168;thyroepiglottic ligament;ligamentum thyroepiglotticum -http://purl.obolibrary.org/obo/UBERON_0013168;thyroepiglottic ligament;thyroepiglottic ligament -http://purl.obolibrary.org/obo/UBERON_0013169;vestibular ligament;ligamentum vestibulare -http://purl.obolibrary.org/obo/UBERON_0013169;vestibular ligament;ventricular ligament -http://purl.obolibrary.org/obo/UBERON_0013169;vestibular ligament;vestibular ligament of larynx -http://purl.obolibrary.org/obo/UBERON_0013170;cricoarytenoid ligament;crico-arytenoid ligament -http://purl.obolibrary.org/obo/UBERON_0013170;cricoarytenoid ligament;ligamentum cricoaryteneoideum -http://purl.obolibrary.org/obo/UBERON_0013171;cricothyroid ligament;crico-thyroid ligament -http://purl.obolibrary.org/obo/UBERON_0013171;cricothyroid ligament;ligamentum cricothyreoideum -http://purl.obolibrary.org/obo/UBERON_0013172;cricotracheal ligament; -http://purl.obolibrary.org/obo/UBERON_0013173;anterior part of tympanic bone;anterior surface of tympanic plate -http://purl.obolibrary.org/obo/UBERON_0013173;anterior part of tympanic bone;anterior wall of tympanic cavity -http://purl.obolibrary.org/obo/UBERON_0013173;anterior part of tympanic bone;anterior wall of tympanum -http://purl.obolibrary.org/obo/UBERON_0013174;sigmoid process of tympanic bone;sigmoid process -http://purl.obolibrary.org/obo/UBERON_0013174;sigmoid process of tympanic bone;sigmoid process of auditory bulla -http://purl.obolibrary.org/obo/UBERON_0013175;nasal air sac;blowhole air sac -http://purl.obolibrary.org/obo/UBERON_0013176;phonic lip; -http://purl.obolibrary.org/obo/UBERON_0013177;dorsal bursa; -http://purl.obolibrary.org/obo/UBERON_0013178;anterior dorsal bursa; -http://purl.obolibrary.org/obo/UBERON_0013179;posterior dorsal bursa; -http://purl.obolibrary.org/obo/UBERON_0013180;bursal cartilage; -http://purl.obolibrary.org/obo/UBERON_0013181;blowhole ligament; -http://purl.obolibrary.org/obo/UBERON_0013182;core of melon organ; -http://purl.obolibrary.org/obo/UBERON_0013188;monkey lips dorsal bursa complex;MLDB complex -http://purl.obolibrary.org/obo/UBERON_0013189;junk chamber; -http://purl.obolibrary.org/obo/UBERON_0013190;entotympanic bone; -http://purl.obolibrary.org/obo/UBERON_0013191;ovarian cortex;cortex of ovary -http://purl.obolibrary.org/obo/UBERON_0013191;ovarian cortex;cortex ovarii (zona parenchymatosa) -http://purl.obolibrary.org/obo/UBERON_0013192;ovarian medulla;medulla of ovary -http://purl.obolibrary.org/obo/UBERON_0013192;ovarian medulla;medulla ovarii (zona vasculosa) -http://purl.obolibrary.org/obo/UBERON_0013193;parakeratinized epithelium; -http://purl.obolibrary.org/obo/UBERON_0013194;orthokeratinized epithelium; -http://purl.obolibrary.org/obo/UBERON_0013195;parakeratinized epithelium of gingiva;gingival parakeratinized epithelium -http://purl.obolibrary.org/obo/UBERON_0013196;strand of wool; -http://purl.obolibrary.org/obo/UBERON_0013198;cocoon; -http://purl.obolibrary.org/obo/UBERON_0013199;stria of neuraxis;neuraxis stria -http://purl.obolibrary.org/obo/UBERON_0013199;stria of neuraxis;neuraxis striae -http://purl.obolibrary.org/obo/UBERON_0013199;stria of neuraxis;stria -http://purl.obolibrary.org/obo/UBERON_0013199;stria of neuraxis;striae -http://purl.obolibrary.org/obo/UBERON_0013201;olfactory pathway; -http://purl.obolibrary.org/obo/UBERON_0013203;hypogastrium;hypogastric part of abdomen -http://purl.obolibrary.org/obo/UBERON_0013203;hypogastrium;hypogastric region -http://purl.obolibrary.org/obo/UBERON_0013203;hypogastrium;pubic part of abdomen -http://purl.obolibrary.org/obo/UBERON_0013203;hypogastrium;pubic region -http://purl.obolibrary.org/obo/UBERON_0013203;hypogastrium;regio pubica -http://purl.obolibrary.org/obo/UBERON_0013203;hypogastrium;suprapubic region -http://purl.obolibrary.org/obo/UBERON_0013204;epipubic bone; -http://purl.obolibrary.org/obo/UBERON_0013206;nasal tentacle; -http://purl.obolibrary.org/obo/UBERON_0013207;entepicondylar foramen; -http://purl.obolibrary.org/obo/UBERON_0013208;Grueneberg ganglion;Grüneberg ganglion -http://purl.obolibrary.org/obo/UBERON_0013211;cerumen gland;cerumen-secreting gland -http://purl.obolibrary.org/obo/UBERON_0013211;cerumen gland;ceruminous gland -http://purl.obolibrary.org/obo/UBERON_0013211;cerumen gland;ceruminous sweat gland -http://purl.obolibrary.org/obo/UBERON_0013211;cerumen gland;earwax gland -http://purl.obolibrary.org/obo/UBERON_0013212;anal sac gland secretion; -http://purl.obolibrary.org/obo/UBERON_0013213;ossicone; -http://purl.obolibrary.org/obo/UBERON_0013216;udder; -http://purl.obolibrary.org/obo/UBERON_0013217;zygomatic plate; -http://purl.obolibrary.org/obo/UBERON_0013218;rete mirabile; -http://purl.obolibrary.org/obo/UBERON_0013219;parotoid gland; -http://purl.obolibrary.org/obo/UBERON_0013220;foramen of Panizza; -http://purl.obolibrary.org/obo/UBERON_0013221;caudofemoralis;M. caudofemoralis -http://purl.obolibrary.org/obo/UBERON_0013221;caudofemoralis;caudofemoralis muscle -http://purl.obolibrary.org/obo/UBERON_0013222;otic notch; -http://purl.obolibrary.org/obo/UBERON_0013223;alveolar gland; -http://purl.obolibrary.org/obo/UBERON_0013224;Ciaccio's gland;Wolfring's gland -http://purl.obolibrary.org/obo/UBERON_0013224;Ciaccio's gland;gland of Wolfring -http://purl.obolibrary.org/obo/UBERON_0013224;Ciaccio's gland;gland of Wolfring and Ciacco -http://purl.obolibrary.org/obo/UBERON_0013226;accessory lacrimal gland;glandulae lacrimales accessoriae -http://purl.obolibrary.org/obo/UBERON_0013227;crypt of Henle;Henle's gland -http://purl.obolibrary.org/obo/UBERON_0013227;crypt of Henle;crypts of Henle -http://purl.obolibrary.org/obo/UBERON_0013227;crypt of Henle;gland of Henle -http://purl.obolibrary.org/obo/UBERON_0013228;sweat gland of eyelid;Moll's gland -http://purl.obolibrary.org/obo/UBERON_0013228;sweat gland of eyelid;ciliary gland -http://purl.obolibrary.org/obo/UBERON_0013228;sweat gland of eyelid;ciliary gland of moll -http://purl.obolibrary.org/obo/UBERON_0013228;sweat gland of eyelid;ciliary sweat gland of eyelid -http://purl.obolibrary.org/obo/UBERON_0013228;sweat gland of eyelid;gland of Moll -http://purl.obolibrary.org/obo/UBERON_0013229;eyelid gland;gland of eyelid -http://purl.obolibrary.org/obo/UBERON_0013230;nictitans gland; -http://purl.obolibrary.org/obo/UBERON_0013231;sebaceous gland of eyelid; -http://purl.obolibrary.org/obo/UBERON_0013232;serous acinus;acinus of serous gland -http://purl.obolibrary.org/obo/UBERON_0013233;supraorbital gland; -http://purl.obolibrary.org/obo/UBERON_0013234;violet gland; -http://purl.obolibrary.org/obo/UBERON_0013235;ventrum;front of body proper -http://purl.obolibrary.org/obo/UBERON_0013235;ventrum;ventral part of organism -http://purl.obolibrary.org/obo/UBERON_0013235;ventrum;ventral region of organism -http://purl.obolibrary.org/obo/UBERON_0013236;ventral trunk;anterolateral part of trunk -http://purl.obolibrary.org/obo/UBERON_0013236;ventral trunk;front of trunk -http://purl.obolibrary.org/obo/UBERON_0013236;ventral trunk;trunk front -http://purl.obolibrary.org/obo/UBERON_0013236;ventral trunk;trunk proper -http://purl.obolibrary.org/obo/UBERON_0013237;genital papilla of vulva;mammalian genital papilla -http://purl.obolibrary.org/obo/UBERON_0013238;future glans; -http://purl.obolibrary.org/obo/UBERON_0013239;future glans penis;glans of male genital tubercle -http://purl.obolibrary.org/obo/UBERON_0013240;future glans clitoris;glans of female genital tubercle -http://purl.obolibrary.org/obo/UBERON_0013241;embryonic urethral groove;sulcus urethralis primarius -http://purl.obolibrary.org/obo/UBERON_0013241;embryonic urethral groove;urethral groove -http://purl.obolibrary.org/obo/UBERON_0013241;embryonic urethral groove;urethral sulcus -http://purl.obolibrary.org/obo/UBERON_0013244;vaginal plate; -http://purl.obolibrary.org/obo/UBERON_0013245;sinovaginal bulb; -http://purl.obolibrary.org/obo/UBERON_0013247;male paramesonephric duct; -http://purl.obolibrary.org/obo/UBERON_0013248;paradidymis;Waldeyer's organ -http://purl.obolibrary.org/obo/UBERON_0013248;paradidymis;organ of Giraldes -http://purl.obolibrary.org/obo/UBERON_0013248;paradidymis;organ of Giraldés -http://purl.obolibrary.org/obo/UBERON_0013249;paroophoron;Kobelt's tubules -http://purl.obolibrary.org/obo/UBERON_0013250;vesicular appendage of epoophoron;appendix vesiculosus -http://purl.obolibrary.org/obo/UBERON_0013250;vesicular appendage of epoophoron;female cystic vesicular appendage -http://purl.obolibrary.org/obo/UBERON_0013262;remnnant of ductus deferens;ductus deferens vestige -http://purl.obolibrary.org/obo/UBERON_0013262;remnnant of ductus deferens;ductus deferens vestigialis -http://purl.obolibrary.org/obo/UBERON_0013262;remnnant of ductus deferens;vestige of ductus deferens -http://purl.obolibrary.org/obo/UBERON_0013277;remnant of processus vaginalis;processus vaginalis vestige -http://purl.obolibrary.org/obo/UBERON_0013277;remnant of processus vaginalis;vestige of processus vaginalis -http://purl.obolibrary.org/obo/UBERON_0013278;canal of Nuck; -http://purl.obolibrary.org/obo/UBERON_0013279;diaphysis of fibula;body of fibula -http://purl.obolibrary.org/obo/UBERON_0013279;diaphysis of fibula;corpus fibulae -http://purl.obolibrary.org/obo/UBERON_0013279;diaphysis of fibula;fibula diaphysis -http://purl.obolibrary.org/obo/UBERON_0013279;diaphysis of fibula;shaft of fibula -http://purl.obolibrary.org/obo/UBERON_0013280;diaphysis of tibia;body of tibia -http://purl.obolibrary.org/obo/UBERON_0013280;diaphysis of tibia;corpus tibiae -http://purl.obolibrary.org/obo/UBERON_0013280;diaphysis of tibia;shaft of tibia -http://purl.obolibrary.org/obo/UBERON_0013280;diaphysis of tibia;tibial diaphysis -http://purl.obolibrary.org/obo/UBERON_0013397;stratum argenteum of choroid;choroid stratum argenteum -http://purl.obolibrary.org/obo/UBERON_0013398;choroidal gland; -http://purl.obolibrary.org/obo/UBERON_0013399;blood vessel layer of choroid;lamina choroideae vasculosa -http://purl.obolibrary.org/obo/UBERON_0013399;blood vessel layer of choroid;lamina vasculosa (choroid) -http://purl.obolibrary.org/obo/UBERON_0013399;blood vessel layer of choroid;lamina vasculosa of choroid -http://purl.obolibrary.org/obo/UBERON_0013399;blood vessel layer of choroid;outer layer of choroid proper -http://purl.obolibrary.org/obo/UBERON_0013399;blood vessel layer of choroid;vessel layer of choroid -http://purl.obolibrary.org/obo/UBERON_0013403;asterion of skull; -http://purl.obolibrary.org/obo/UBERON_0013406;bregma; -http://purl.obolibrary.org/obo/UBERON_0013411;cranial cavity;cavitas cranii -http://purl.obolibrary.org/obo/UBERON_0013412;crotaphion; -http://purl.obolibrary.org/obo/UBERON_0013417;epicranium; -http://purl.obolibrary.org/obo/UBERON_0013420;groove for sigmoid sinus; -http://purl.obolibrary.org/obo/UBERON_0013422;infratemporal fossa; -http://purl.obolibrary.org/obo/UBERON_0013423;jugal point; -http://purl.obolibrary.org/obo/UBERON_0013424;anatomical point connecting sagittal and lambdoidal sutures; -http://purl.obolibrary.org/obo/UBERON_0013426;obelion; -http://purl.obolibrary.org/obo/UBERON_0013427;occipital bun; -http://purl.obolibrary.org/obo/UBERON_0013428;ophryon; -http://purl.obolibrary.org/obo/UBERON_0013436;porion; -http://purl.obolibrary.org/obo/UBERON_0013442;postorbital process; -http://purl.obolibrary.org/obo/UBERON_0013445;pterygomaxillary fissure; -http://purl.obolibrary.org/obo/UBERON_0013447;sagittal crest of skull;crista sagittalis externa -http://purl.obolibrary.org/obo/UBERON_0013448;sagittal keel; -http://purl.obolibrary.org/obo/UBERON_0013450;simian shelf; -http://purl.obolibrary.org/obo/UBERON_0013454;spheno-maxillary fossa; -http://purl.obolibrary.org/obo/UBERON_0013455;spheno-petrosal fissure;fissura sphenopetrosa -http://purl.obolibrary.org/obo/UBERON_0013455;spheno-petrosal fissure;sphenopetrosal fissure -http://purl.obolibrary.org/obo/UBERON_0013459;stephanion; -http://purl.obolibrary.org/obo/UBERON_0013460;suprainiac fossa; -http://purl.obolibrary.org/obo/UBERON_0013462;sylvian point; -http://purl.obolibrary.org/obo/UBERON_0013463;temporal fossa; -http://purl.obolibrary.org/obo/UBERON_0013468;zygomatic fossa; -http://purl.obolibrary.org/obo/UBERON_0013469;external occipital protuberance; -http://purl.obolibrary.org/obo/UBERON_0013471;retromolar space;retromolar gap -http://purl.obolibrary.org/obo/UBERON_0013472;upper esophagus; -http://purl.obolibrary.org/obo/UBERON_0013473;lower esophagus;distal part of esophagus -http://purl.obolibrary.org/obo/UBERON_0013473;lower esophagus;lower third of esophagus -http://purl.obolibrary.org/obo/UBERON_0013474;middle part of esophagus; -http://purl.obolibrary.org/obo/UBERON_0013475;gustatory gland;posterior deep lingual gland -http://purl.obolibrary.org/obo/UBERON_0013475;gustatory gland;posterior lingual serous gland -http://purl.obolibrary.org/obo/UBERON_0013475;gustatory gland;von Ebner gland -http://purl.obolibrary.org/obo/UBERON_0013475;gustatory gland;von Ebner's gland -http://purl.obolibrary.org/obo/UBERON_0013476;dermal layer of tongue;tongue (dermal layer) -http://purl.obolibrary.org/obo/UBERON_0013477;blowhole; -http://purl.obolibrary.org/obo/UBERON_0013478;cecal tonsil;caecal tonsil -http://purl.obolibrary.org/obo/UBERON_0013479;lung endothelium; -http://purl.obolibrary.org/obo/UBERON_0013481;crypt of Lieberkuhn of ileum;ileal crypt -http://purl.obolibrary.org/obo/UBERON_0013481;crypt of Lieberkuhn of ileum;ileal crypt of Lieberkuhn -http://purl.obolibrary.org/obo/UBERON_0013481;crypt of Lieberkuhn of ileum;ileal intestinal crypt -http://purl.obolibrary.org/obo/UBERON_0013482;crypt of Lieberkuhn of duodenum;duodenal crypt -http://purl.obolibrary.org/obo/UBERON_0013482;crypt of Lieberkuhn of duodenum;duodenal crypt of Lieberkuhn -http://purl.obolibrary.org/obo/UBERON_0013483;crypt of Lieberkuhn of jejunum;jejunal crypt -http://purl.obolibrary.org/obo/UBERON_0013483;crypt of Lieberkuhn of jejunum;jejunal crypt of Lieberkuhn -http://purl.obolibrary.org/obo/UBERON_0013485;crypt of Lieberkuhn of colon;colonic crypt -http://purl.obolibrary.org/obo/UBERON_0013485;crypt of Lieberkuhn of colon;colonic crypt of Lieberkuhn -http://purl.obolibrary.org/obo/UBERON_0013486;crypt of Lieberkuhn of appendix;appendiceal crypt -http://purl.obolibrary.org/obo/UBERON_0013486;crypt of Lieberkuhn of appendix;appendiceal crypt of Lieberkuhn -http://purl.obolibrary.org/obo/UBERON_0013487;epidermal ridge of digit; -http://purl.obolibrary.org/obo/UBERON_0013488;panniculus adiposus;panniculus adiposus group -http://purl.obolibrary.org/obo/UBERON_0013488;panniculus adiposus;subcutaneous fat -http://purl.obolibrary.org/obo/UBERON_0013489;superficial cervical fascia;lamina superficialis fasciae cervicalis -http://purl.obolibrary.org/obo/UBERON_0013489;superficial cervical fascia;superficial cervical fascia -http://purl.obolibrary.org/obo/UBERON_0013489;superficial cervical fascia;superficial layer of cervical fascia -http://purl.obolibrary.org/obo/UBERON_0013489;superficial cervical fascia;superficial layer of deep cervical fascia -http://purl.obolibrary.org/obo/UBERON_0013490;deep cervical fascia;deep cervical fascia -http://purl.obolibrary.org/obo/UBERON_0013490;deep cervical fascia;deep fascia of neck -http://purl.obolibrary.org/obo/UBERON_0013490;deep cervical fascia;investing cervical fascia -http://purl.obolibrary.org/obo/UBERON_0013490;deep cervical fascia;investing layer of cervical fascia -http://purl.obolibrary.org/obo/UBERON_0013491;cervical fascia;fascia of neck -http://purl.obolibrary.org/obo/UBERON_0013492;prevertebral cervical fascia;lamina prevertebralis (fascia cervicalis) -http://purl.obolibrary.org/obo/UBERON_0013492;prevertebral cervical fascia;lamina prevertebralis fasciae cervicalis -http://purl.obolibrary.org/obo/UBERON_0013492;prevertebral cervical fascia;prevertebral fascia -http://purl.obolibrary.org/obo/UBERON_0013492;prevertebral cervical fascia;prevertebral layer of cervical fascia -http://purl.obolibrary.org/obo/UBERON_0013492;prevertebral cervical fascia;prevertebral layer of deep cervical fascia -http://purl.obolibrary.org/obo/UBERON_0013493;abdominal fascia;endo-abdominopelvic fascia -http://purl.obolibrary.org/obo/UBERON_0013493;abdominal fascia;fascia of abdomen -http://purl.obolibrary.org/obo/UBERON_0013494;keratin-coated spine; -http://purl.obolibrary.org/obo/UBERON_0013495;barbed keratin-coated spine;quill -http://purl.obolibrary.org/obo/UBERON_0013496;unbarbed keratin-coated spine;hedgehog spine -http://purl.obolibrary.org/obo/UBERON_0013497;muscularis orbicularis;orbicularis muscle -http://purl.obolibrary.org/obo/UBERON_0013498;vestibulo-cochlear VIII ganglion complex;vestibulocochlear VIII ganglion complex -http://purl.obolibrary.org/obo/UBERON_0013498;vestibulo-cochlear VIII ganglion complex;vestibulocochlear ganglion complex -http://purl.obolibrary.org/obo/UBERON_0013499;glossopharyngeal-vagus IX-X preganglion complex; -http://purl.obolibrary.org/obo/UBERON_0013500;glossopharyngeal-vagus IX-X ganglion complex; -http://purl.obolibrary.org/obo/UBERON_0013501;cloacal sphincter;sphincter cloacae -http://purl.obolibrary.org/obo/UBERON_0013502;5th arch mesenchyme;5th pharyngeal arch mesenchyme -http://purl.obolibrary.org/obo/UBERON_0013503;caudal vertebra cartilage element;coccygeal vertebra cartilage element -http://purl.obolibrary.org/obo/UBERON_0013503;caudal vertebra cartilage element;coccygeal vertebral cartilage condensation group -http://purl.obolibrary.org/obo/UBERON_0013503;caudal vertebra cartilage element;tail vertebral cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0013504;caudal vertebra pre-cartilage condensation;coccygeal vertebra pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0013504;caudal vertebra pre-cartilage condensation;tail vertebral pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0013505;cervical vertebra cartilage element;cervical vertebral cartilage condensation group -http://purl.obolibrary.org/obo/UBERON_0013506;cervical vertebra pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0013507;thoracic vertebra cartilage element;thoracic vertebral cartilage condensation group -http://purl.obolibrary.org/obo/UBERON_0013508;thoracic vertebra pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0013509;lumbar vertebra cartilage element;lumbar vertebral cartilage condensation group -http://purl.obolibrary.org/obo/UBERON_0013510;lumbar vertebra pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0013511;ambiens muscle; -http://purl.obolibrary.org/obo/UBERON_0013512;row of feathers;feather row -http://purl.obolibrary.org/obo/UBERON_0013512;row of feathers;feather tract -http://purl.obolibrary.org/obo/UBERON_0013513;anal pterya; -http://purl.obolibrary.org/obo/UBERON_0013514;space surrounding organism;external to organism -http://purl.obolibrary.org/obo/UBERON_0013514;space surrounding organism;outside of body -http://purl.obolibrary.org/obo/UBERON_0013515;subdivision of oviduct;subdivision of fallopian tube -http://purl.obolibrary.org/obo/UBERON_0013515;subdivision of oviduct;subdivision of oviduct -http://purl.obolibrary.org/obo/UBERON_0013515;subdivision of oviduct;subdivision of uterine tube -http://purl.obolibrary.org/obo/UBERON_0013515;subdivision of oviduct;uterine tube zone -http://purl.obolibrary.org/obo/UBERON_0013515;subdivision of oviduct;zone of uterine tube -http://purl.obolibrary.org/obo/UBERON_0013516;uterine tube magnum;magnum of oviduct -http://purl.obolibrary.org/obo/UBERON_0013516;uterine tube magnum;magnum of uterine tube -http://purl.obolibrary.org/obo/UBERON_0013519;avian uterine tube isthmus;isthmus of oviduct -http://purl.obolibrary.org/obo/UBERON_0013519;avian uterine tube isthmus;isthmus of uterine tube -http://purl.obolibrary.org/obo/UBERON_0013522;subdivision of tube; -http://purl.obolibrary.org/obo/UBERON_0013523;lateral vaginal canal;lateral vagina -http://purl.obolibrary.org/obo/UBERON_0013523;lateral vaginal canal;lateral vaginae -http://purl.obolibrary.org/obo/UBERON_0013524;median vaginal canal;central pseudovaginal canal -http://purl.obolibrary.org/obo/UBERON_0013524;median vaginal canal;central vagina -http://purl.obolibrary.org/obo/UBERON_0013524;median vaginal canal;median pseudovaginal canal -http://purl.obolibrary.org/obo/UBERON_0013524;median vaginal canal;median vagina -http://purl.obolibrary.org/obo/UBERON_0013525;stomach lumen;cavity of stomach -http://purl.obolibrary.org/obo/UBERON_0013526;otocyst lumen;lumen of otocyst -http://purl.obolibrary.org/obo/UBERON_0013527;pectoral flipper tubercle; -http://purl.obolibrary.org/obo/UBERON_0013528;Brodmann (1909) area 11;B09-11 -http://purl.obolibrary.org/obo/UBERON_0013528;Brodmann (1909) area 11;Brodmann (1909) area 11 -http://purl.obolibrary.org/obo/UBERON_0013528;Brodmann (1909) area 11;Brodmann area 11, prefrontal -http://purl.obolibrary.org/obo/UBERON_0013528;Brodmann (1909) area 11;area 11 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0013528;Brodmann (1909) area 11;area 11 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0013528;Brodmann (1909) area 11;medial orbital area -http://purl.obolibrary.org/obo/UBERON_0013529;Brodmann area; -http://purl.obolibrary.org/obo/UBERON_0013531;retrosplenial region; -http://purl.obolibrary.org/obo/UBERON_0013533;Brodmann (1909) area 2;B09-2 -http://purl.obolibrary.org/obo/UBERON_0013533;Brodmann (1909) area 2;Brodmann (1909) area 2 -http://purl.obolibrary.org/obo/UBERON_0013533;Brodmann (1909) area 2;Brodmann area 2 -http://purl.obolibrary.org/obo/UBERON_0013533;Brodmann (1909) area 2;Brodmann area 2, caudal postcentral -http://purl.obolibrary.org/obo/UBERON_0013533;Brodmann (1909) area 2;Brodmann's area 2 -http://purl.obolibrary.org/obo/UBERON_0013533;Brodmann (1909) area 2;area 2 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0013533;Brodmann (1909) area 2;area 2 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0013533;Brodmann (1909) area 2;area postcentralis caudalis -http://purl.obolibrary.org/obo/UBERON_0013533;Brodmann (1909) area 2;caudal postcentral area -http://purl.obolibrary.org/obo/UBERON_0013535;Brodmann (1909) area 4;B09-4 -http://purl.obolibrary.org/obo/UBERON_0013535;Brodmann (1909) area 4;Brodmann (1909) area 4 -http://purl.obolibrary.org/obo/UBERON_0013535;Brodmann (1909) area 4;Brodmann area 4 -http://purl.obolibrary.org/obo/UBERON_0013535;Brodmann (1909) area 4;Brodmann area 4, gigantopyramidal -http://purl.obolibrary.org/obo/UBERON_0013535;Brodmann (1909) area 4;Brodmann's area 4 -http://purl.obolibrary.org/obo/UBERON_0013535;Brodmann (1909) area 4;area 4 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0013535;Brodmann (1909) area 4;area 4 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0013535;Brodmann (1909) area 4;area gigantopyramidalis -http://purl.obolibrary.org/obo/UBERON_0013535;Brodmann (1909) area 4;giant pyramidal area -http://purl.obolibrary.org/obo/UBERON_0013538;Brodmann (1909) area 7;B09-7 -http://purl.obolibrary.org/obo/UBERON_0013538;Brodmann (1909) area 7;Brodmann (1909) area 7 -http://purl.obolibrary.org/obo/UBERON_0013538;Brodmann (1909) area 7;Brodmann area 7 -http://purl.obolibrary.org/obo/UBERON_0013538;Brodmann (1909) area 7;Brodmann area 7, superior parietal -http://purl.obolibrary.org/obo/UBERON_0013538;Brodmann (1909) area 7;area 7 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0013538;Brodmann (1909) area 7;area 7 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0013538;Brodmann (1909) area 7;area parietalis superior -http://purl.obolibrary.org/obo/UBERON_0013539;Brodmann (1909) area 8;B09-8 -http://purl.obolibrary.org/obo/UBERON_0013539;Brodmann (1909) area 8;Brodmann (1909) area 8 -http://purl.obolibrary.org/obo/UBERON_0013539;Brodmann (1909) area 8;Brodmann area 8 -http://purl.obolibrary.org/obo/UBERON_0013539;Brodmann (1909) area 8;Brodmann area 8, intermediate frontal -http://purl.obolibrary.org/obo/UBERON_0013539;Brodmann (1909) area 8;area 8 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0013539;Brodmann (1909) area 8;area 8 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0013539;Brodmann (1909) area 8;area frontalis intermedia -http://purl.obolibrary.org/obo/UBERON_0013539;Brodmann (1909) area 8;intermediate frontal area -http://purl.obolibrary.org/obo/UBERON_0013540;Brodmann (1909) area 9;B09-9 -http://purl.obolibrary.org/obo/UBERON_0013540;Brodmann (1909) area 9;Brodmann (1909) area 9 -http://purl.obolibrary.org/obo/UBERON_0013540;Brodmann (1909) area 9;Brodmann area 9 -http://purl.obolibrary.org/obo/UBERON_0013540;Brodmann (1909) area 9;Brodmann area 9, granular frontal -http://purl.obolibrary.org/obo/UBERON_0013540;Brodmann (1909) area 9;area 9 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0013540;Brodmann (1909) area 9;area 9 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0013540;Brodmann (1909) area 9;area frontalis granularis -http://purl.obolibrary.org/obo/UBERON_0013540;Brodmann (1909) area 9;granular frontal area -http://purl.obolibrary.org/obo/UBERON_0013541;Brodmann (1909) area 10;B09-10 -http://purl.obolibrary.org/obo/UBERON_0013541;Brodmann (1909) area 10;Brodmann (1909) area 10 -http://purl.obolibrary.org/obo/UBERON_0013541;Brodmann (1909) area 10;Brodmann area 10 -http://purl.obolibrary.org/obo/UBERON_0013541;Brodmann (1909) area 10;Brodmann area 10, frontoplar -http://purl.obolibrary.org/obo/UBERON_0013541;Brodmann (1909) area 10;area 10 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0013541;Brodmann (1909) area 10;area 10 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0013541;Brodmann (1909) area 10;area frontopolaris -http://purl.obolibrary.org/obo/UBERON_0013541;Brodmann (1909) area 10;lateral orbital area -http://purl.obolibrary.org/obo/UBERON_0013543;Brodmann (1909) area 12;B09-12 -http://purl.obolibrary.org/obo/UBERON_0013543;Brodmann (1909) area 12;Brodmann (1909) area 12 -http://purl.obolibrary.org/obo/UBERON_0013543;Brodmann (1909) area 12;Brodmann area 12 -http://purl.obolibrary.org/obo/UBERON_0013543;Brodmann (1909) area 12;Brodmann area 12, prefrontal -http://purl.obolibrary.org/obo/UBERON_0013543;Brodmann (1909) area 12;area 12 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0013543;Brodmann (1909) area 12;area 12 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0013543;Brodmann (1909) area 12;area praefrontalis -http://purl.obolibrary.org/obo/UBERON_0013543;Brodmann (1909) area 12;frontopolar area -http://purl.obolibrary.org/obo/UBERON_0013544;Brodmann (1909) area 13;B09-13 -http://purl.obolibrary.org/obo/UBERON_0013544;Brodmann (1909) area 13;Brodmann (1909) area 13 -http://purl.obolibrary.org/obo/UBERON_0013544;Brodmann (1909) area 13;Brodmann area 13 -http://purl.obolibrary.org/obo/UBERON_0013544;Brodmann (1909) area 13;area 13 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0013545;Brodmann (1909) area 14;B09-14 -http://purl.obolibrary.org/obo/UBERON_0013545;Brodmann (1909) area 14;Brodmann (1909) area 14 -http://purl.obolibrary.org/obo/UBERON_0013545;Brodmann (1909) area 14;Brodmann area 14 -http://purl.obolibrary.org/obo/UBERON_0013545;Brodmann (1909) area 14;area 14 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0013546;Brodmann (1909) area 15;B09-15 -http://purl.obolibrary.org/obo/UBERON_0013546;Brodmann (1909) area 15;Brodmann (1909) area 15 -http://purl.obolibrary.org/obo/UBERON_0013546;Brodmann (1909) area 15;Brodmann area 15 -http://purl.obolibrary.org/obo/UBERON_0013546;Brodmann (1909) area 15;area 15 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0013547;Brodmann (1909) area 16;B09-16 -http://purl.obolibrary.org/obo/UBERON_0013547;Brodmann (1909) area 16;Brodmann (1909) area 16 -http://purl.obolibrary.org/obo/UBERON_0013547;Brodmann (1909) area 16;Brodmann area 16 -http://purl.obolibrary.org/obo/UBERON_0013547;Brodmann (1909) area 16;area 16 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0013547;Brodmann (1909) area 16;area 16 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0013550;Brodmann (1909) area 19;B09-19 -http://purl.obolibrary.org/obo/UBERON_0013550;Brodmann (1909) area 19;Brodmann (1909) area 19 -http://purl.obolibrary.org/obo/UBERON_0013550;Brodmann (1909) area 19;Brodmann area 19 -http://purl.obolibrary.org/obo/UBERON_0013550;Brodmann (1909) area 19;Brodmann area 19, peristriate -http://purl.obolibrary.org/obo/UBERON_0013550;Brodmann (1909) area 19;Brodmann's area 19 -http://purl.obolibrary.org/obo/UBERON_0013550;Brodmann (1909) area 19;area 19 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0013550;Brodmann (1909) area 19;area 19 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0013550;Brodmann (1909) area 19;area peristriata -http://purl.obolibrary.org/obo/UBERON_0013550;Brodmann (1909) area 19;preoccipital area -http://purl.obolibrary.org/obo/UBERON_0013551;Brodmann (1909) area 20;B09-20 -http://purl.obolibrary.org/obo/UBERON_0013551;Brodmann (1909) area 20;Brodmann (1909) area 20 -http://purl.obolibrary.org/obo/UBERON_0013551;Brodmann (1909) area 20;Brodmann area 20 -http://purl.obolibrary.org/obo/UBERON_0013551;Brodmann (1909) area 20;Brodmann area 20, inferior temporal -http://purl.obolibrary.org/obo/UBERON_0013551;Brodmann (1909) area 20;area 20 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0013551;Brodmann (1909) area 20;area 20 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0013551;Brodmann (1909) area 20;area temporalis inferior -http://purl.obolibrary.org/obo/UBERON_0013551;Brodmann (1909) area 20;inferior temporal area -http://purl.obolibrary.org/obo/UBERON_0013552;Brodmann (1909) area 21;B09-21 -http://purl.obolibrary.org/obo/UBERON_0013552;Brodmann (1909) area 21;BA21 -http://purl.obolibrary.org/obo/UBERON_0013552;Brodmann (1909) area 21;Brodmann (1909) area 21 -http://purl.obolibrary.org/obo/UBERON_0013552;Brodmann (1909) area 21;Brodmann area 21 -http://purl.obolibrary.org/obo/UBERON_0013552;Brodmann (1909) area 21;Brodmann area 21, middle temporal -http://purl.obolibrary.org/obo/UBERON_0013552;Brodmann (1909) area 21;area 21 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0013552;Brodmann (1909) area 21;area 21 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0013553;Brodmann (1909) area 22;B09-22 -http://purl.obolibrary.org/obo/UBERON_0013553;Brodmann (1909) area 22;Brodmann (1909) area 22 -http://purl.obolibrary.org/obo/UBERON_0013553;Brodmann (1909) area 22;Brodmann area 22 -http://purl.obolibrary.org/obo/UBERON_0013553;Brodmann (1909) area 22;Brodmann area 22, superior temporal -http://purl.obolibrary.org/obo/UBERON_0013553;Brodmann (1909) area 22;Superior temporal area -http://purl.obolibrary.org/obo/UBERON_0013553;Brodmann (1909) area 22;area 22 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0013553;Brodmann (1909) area 22;area 22 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0013553;Brodmann (1909) area 22;area temporalis superior -http://purl.obolibrary.org/obo/UBERON_0013554;Brodmann (1909) area 23;B09-23 -http://purl.obolibrary.org/obo/UBERON_0013554;Brodmann (1909) area 23;Brodmann (1909) area 23 -http://purl.obolibrary.org/obo/UBERON_0013554;Brodmann (1909) area 23;Brodmann area 23 -http://purl.obolibrary.org/obo/UBERON_0013554;Brodmann (1909) area 23;Brodmann area 23, ventral posterior cingulate -http://purl.obolibrary.org/obo/UBERON_0013554;Brodmann (1909) area 23;area 23 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0013554;Brodmann (1909) area 23;area 23 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0013554;Brodmann (1909) area 23;area cingularis posterior ventralis -http://purl.obolibrary.org/obo/UBERON_0013554;Brodmann (1909) area 23;granular cingulate area -http://purl.obolibrary.org/obo/UBERON_0013554;Brodmann (1909) area 23;posterior cingulate area -http://purl.obolibrary.org/obo/UBERON_0013556;Brodmann (1909) area 25;B09-25 -http://purl.obolibrary.org/obo/UBERON_0013556;Brodmann (1909) area 25;Brodmann (1909) area 25 -http://purl.obolibrary.org/obo/UBERON_0013556;Brodmann (1909) area 25;Brodmann area 25 -http://purl.obolibrary.org/obo/UBERON_0013556;Brodmann (1909) area 25;Brodmann area 25, subgenual -http://purl.obolibrary.org/obo/UBERON_0013556;Brodmann (1909) area 25;Brodmann's area 25 -http://purl.obolibrary.org/obo/UBERON_0013556;Brodmann (1909) area 25;area 25 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0013556;Brodmann (1909) area 25;area 25 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0013556;Brodmann (1909) area 25;area subgenualis -http://purl.obolibrary.org/obo/UBERON_0013558;Brodmann (1909) area 27;B09-27 -http://purl.obolibrary.org/obo/UBERON_0013558;Brodmann (1909) area 27;BA27 -http://purl.obolibrary.org/obo/UBERON_0013558;Brodmann (1909) area 27;Brodmann (1909) area 27 -http://purl.obolibrary.org/obo/UBERON_0013558;Brodmann (1909) area 27;Brodmann area 26, presubicular -http://purl.obolibrary.org/obo/UBERON_0013558;Brodmann (1909) area 27;Brodmann area 27 -http://purl.obolibrary.org/obo/UBERON_0013558;Brodmann (1909) area 27;area 27 -http://purl.obolibrary.org/obo/UBERON_0013558;Brodmann (1909) area 27;area 27 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0013558;Brodmann (1909) area 27;area 27 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0013558;Brodmann (1909) area 27;area praesubicularis -http://purl.obolibrary.org/obo/UBERON_0013558;Brodmann (1909) area 27;presubicular area -http://purl.obolibrary.org/obo/UBERON_0013559;Brodmann (1909) area 28;B09-28 -http://purl.obolibrary.org/obo/UBERON_0013559;Brodmann (1909) area 28;BA28 -http://purl.obolibrary.org/obo/UBERON_0013559;Brodmann (1909) area 28;Brodmann (1909) area 28 -http://purl.obolibrary.org/obo/UBERON_0013559;Brodmann (1909) area 28;Brodmann area 28 -http://purl.obolibrary.org/obo/UBERON_0013559;Brodmann (1909) area 28;Brodmann area 28, entorhinal -http://purl.obolibrary.org/obo/UBERON_0013559;Brodmann (1909) area 28;area 28 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0013559;Brodmann (1909) area 28;area 28 of Brodmann (Crosby) -http://purl.obolibrary.org/obo/UBERON_0013559;Brodmann (1909) area 28;area 28 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0013559;Brodmann (1909) area 28;area entorhinalis -http://purl.obolibrary.org/obo/UBERON_0013559;Brodmann (1909) area 28;area entorhinalis ventralis -http://purl.obolibrary.org/obo/UBERON_0013560;Brodmann (1909) area 32;B09-32 -http://purl.obolibrary.org/obo/UBERON_0013560;Brodmann (1909) area 32;Brodmann (1909) area 32 -http://purl.obolibrary.org/obo/UBERON_0013560;Brodmann (1909) area 32;Brodmann area 32 -http://purl.obolibrary.org/obo/UBERON_0013560;Brodmann (1909) area 32;Brodmann area 32, dorsal anterior cingulate -http://purl.obolibrary.org/obo/UBERON_0013560;Brodmann (1909) area 32;area 32 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0013560;Brodmann (1909) area 32;area 32 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0013560;Brodmann (1909) area 32;area cingularis anterior dorsalis -http://purl.obolibrary.org/obo/UBERON_0013561;Brodmann (1909) area 43;B09-43 -http://purl.obolibrary.org/obo/UBERON_0013561;Brodmann (1909) area 43;Brodmann (1909) area 43 -http://purl.obolibrary.org/obo/UBERON_0013561;Brodmann (1909) area 43;Brodmann area 43 -http://purl.obolibrary.org/obo/UBERON_0013561;Brodmann (1909) area 43;Brodmann area 43, subcentral -http://purl.obolibrary.org/obo/UBERON_0013561;Brodmann (1909) area 43;area 43 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0013561;Brodmann (1909) area 43;area 43 of brodmann -http://purl.obolibrary.org/obo/UBERON_0013561;Brodmann (1909) area 43;area subcentralis -http://purl.obolibrary.org/obo/UBERON_0013562;Brodmann (1909) area 8a;B09-8a -http://purl.obolibrary.org/obo/UBERON_0013562;Brodmann (1909) area 8a;Brodmann (1909) area 8a -http://purl.obolibrary.org/obo/UBERON_0013562;Brodmann (1909) area 8a;Brodmann area 8a -http://purl.obolibrary.org/obo/UBERON_0013562;Brodmann (1909) area 8a;area 8a of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0013573;Brodmann (1909) area 40;B09-40 -http://purl.obolibrary.org/obo/UBERON_0013573;Brodmann (1909) area 40;Brodmann (1909) area 40 -http://purl.obolibrary.org/obo/UBERON_0013573;Brodmann (1909) area 40;Brodmann area 40 -http://purl.obolibrary.org/obo/UBERON_0013573;Brodmann (1909) area 40;Brodmann area 40, supramarginal -http://purl.obolibrary.org/obo/UBERON_0013573;Brodmann (1909) area 40;Supramarginal area 40 -http://purl.obolibrary.org/obo/UBERON_0013573;Brodmann (1909) area 40;area 40 of Brodmann -http://purl.obolibrary.org/obo/UBERON_0013573;Brodmann (1909) area 40;area 40 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_0013573;Brodmann (1909) area 40;area supramarginalis -http://purl.obolibrary.org/obo/UBERON_0013581;metapodium bone 1;metapodium 1 -http://purl.obolibrary.org/obo/UBERON_0013581;metapodium bone 1;metapodium I -http://purl.obolibrary.org/obo/UBERON_0013582;metapodium bone 2;metapodium 2 -http://purl.obolibrary.org/obo/UBERON_0013582;metapodium bone 2;metapodium II -http://purl.obolibrary.org/obo/UBERON_0013583;metapodium bone 3;3rd metapodium bone -http://purl.obolibrary.org/obo/UBERON_0013583;metapodium bone 3;metapodial bone III -http://purl.obolibrary.org/obo/UBERON_0013583;metapodium bone 3;metapodium 3 -http://purl.obolibrary.org/obo/UBERON_0013583;metapodium bone 3;metapodium III -http://purl.obolibrary.org/obo/UBERON_0013584;metapodium bone 4;metapodium 4 -http://purl.obolibrary.org/obo/UBERON_0013584;metapodium bone 4;metapodium IV -http://purl.obolibrary.org/obo/UBERON_0013585;metapodium bone 5;metapodium 5 -http://purl.obolibrary.org/obo/UBERON_0013585;metapodium bone 5;metapodium V -http://purl.obolibrary.org/obo/UBERON_0013586;fused metapodial bones 3 and 4;fused metapodials 3/4 -http://purl.obolibrary.org/obo/UBERON_0013586;fused metapodial bones 3 and 4;os metapodiale III et IV -http://purl.obolibrary.org/obo/UBERON_0013587;fused metacarpal bones 3 and 4;fused metacarpal 3/4 -http://purl.obolibrary.org/obo/UBERON_0013587;fused metacarpal bones 3 and 4;os metacarpale III et IV -http://purl.obolibrary.org/obo/UBERON_0013588;fused metatarsal bones 3 and 4;fused metatarsal 3/4 -http://purl.obolibrary.org/obo/UBERON_0013588;fused metatarsal bones 3 and 4;os metatarsale III et IV (Ru) -http://purl.obolibrary.org/obo/UBERON_0013589;koniocortex; -http://purl.obolibrary.org/obo/UBERON_0013590;cruciate sulcus;cruciate sulci -http://purl.obolibrary.org/obo/UBERON_0013591;postsylvian sulcus; -http://purl.obolibrary.org/obo/UBERON_0013592;presylvian sulcus; -http://purl.obolibrary.org/obo/UBERON_0013593;suprasylvian sulcus; -http://purl.obolibrary.org/obo/UBERON_0013594;ectosylvian sulcus; -http://purl.obolibrary.org/obo/UBERON_0013595;postlateral sulcus; -http://purl.obolibrary.org/obo/UBERON_0013596;brain coronal sulcus;coronal sulcus of brain -http://purl.obolibrary.org/obo/UBERON_0013598;accessory nucleus of optic tract;nuclei accessorii tractus optici -http://purl.obolibrary.org/obo/UBERON_0013598;accessory nucleus of optic tract;nucleus of accessory optic system -http://purl.obolibrary.org/obo/UBERON_0013598;accessory nucleus of optic tract;terminal nucleus of accessory optic tract -http://purl.obolibrary.org/obo/UBERON_0013599;dorsal accessory nucleus of optic tract;dorsal terminal nucleus of accessory optic tract -http://purl.obolibrary.org/obo/UBERON_0013599;dorsal accessory nucleus of optic tract;dorsal terminal nucleus of the accessory optic tract -http://purl.obolibrary.org/obo/UBERON_0013599;dorsal accessory nucleus of optic tract;nucleus accessorius posterior tractus optici -http://purl.obolibrary.org/obo/UBERON_0013599;dorsal accessory nucleus of optic tract;posterior accessory nucleus of optic tract -http://purl.obolibrary.org/obo/UBERON_0013599;dorsal accessory nucleus of optic tract;posterior terminal nucleus of accessory optic tract -http://purl.obolibrary.org/obo/UBERON_0013600;lateral accessory nucleus of optic tract;lateral terminal nucleus of the accessory optic tract -http://purl.obolibrary.org/obo/UBERON_0013600;lateral accessory nucleus of optic tract;nucleus accessorius lateralis tractus optici -http://purl.obolibrary.org/obo/UBERON_0013601;medial accessory nucleus of optic tract;medial terminal nucleus of the accessory optic tract -http://purl.obolibrary.org/obo/UBERON_0013601;medial accessory nucleus of optic tract;nucleus accessorius medialis tractus optici -http://purl.obolibrary.org/obo/UBERON_0013605;layer of lateral geniculate body; -http://purl.obolibrary.org/obo/UBERON_0013606;magnocellular layer of dorsal nucleus of lateral geniculate body;lateral geniculate nucleus magnocellular layer -http://purl.obolibrary.org/obo/UBERON_0013606;magnocellular layer of dorsal nucleus of lateral geniculate body;magnocellular layer of lateral geniculate nucleus -http://purl.obolibrary.org/obo/UBERON_0013606;magnocellular layer of dorsal nucleus of lateral geniculate body;strata magnocellularia nuclei dorsalis corporis geniculati lateralis -http://purl.obolibrary.org/obo/UBERON_0013607;parvocellular layer of dorsal nucleus of lateral geniculate body;parvocellular layer of lateral geniculate nucleus -http://purl.obolibrary.org/obo/UBERON_0013607;parvocellular layer of dorsal nucleus of lateral geniculate body;strata parvocellularia nuclei dorsalis corporis geniculati lateralis -http://purl.obolibrary.org/obo/UBERON_0013608;inferior olive dorsal accessory nucleus;dorsal accessory nucleus of inferior olivary complex -http://purl.obolibrary.org/obo/UBERON_0013609;inferior olive medial accessory nucleus;medial accessory nucleus of inferior olivary complex -http://purl.obolibrary.org/obo/UBERON_0013610;inferior olive ventral accessory nucleus;ventral accessory nucleus of inferior olivary complex -http://purl.obolibrary.org/obo/UBERON_0013612;lower jaw cingulum; -http://purl.obolibrary.org/obo/UBERON_0013613;upper jaw cingulum; -http://purl.obolibrary.org/obo/UBERON_0013614;fasciculus aberans; -http://purl.obolibrary.org/obo/UBERON_0013615;koniocellular layer of dorsal nucleus of lateral geniculate body;konioocellular layer of lateral geniculate nucleus -http://purl.obolibrary.org/obo/UBERON_0013615;koniocellular layer of dorsal nucleus of lateral geniculate body;stratum koniocellulare nuclei dorsalis corporis geniculati lateralis -http://purl.obolibrary.org/obo/UBERON_0013616;primary molar tooth;deciduous molar tooth -http://purl.obolibrary.org/obo/UBERON_0013616;primary molar tooth;primary molar tooth -http://purl.obolibrary.org/obo/UBERON_0013616;primary molar tooth;temporary molar tooth -http://purl.obolibrary.org/obo/UBERON_0013617;upper primary molar tooth;primary upper molar tooth -http://purl.obolibrary.org/obo/UBERON_0013617;upper primary molar tooth;upper deciduous molar -http://purl.obolibrary.org/obo/UBERON_0013617;upper primary molar tooth;upper deciduous molar tooth -http://purl.obolibrary.org/obo/UBERON_0013617;upper primary molar tooth;upper primary molar tooth -http://purl.obolibrary.org/obo/UBERON_0013618;secondary molar tooth;permanent molar tooth -http://purl.obolibrary.org/obo/UBERON_0013618;secondary molar tooth;secondary molar tooth -http://purl.obolibrary.org/obo/UBERON_0013619;upper secondary molar tooth;maxillary secondary molar tooth -http://purl.obolibrary.org/obo/UBERON_0013619;upper secondary molar tooth;upper permanent molar tooth -http://purl.obolibrary.org/obo/UBERON_0013619;upper secondary molar tooth;upper secondary molar tooth -http://purl.obolibrary.org/obo/UBERON_0013620;lower primary molar tooth;lower deciduous molar tooth -http://purl.obolibrary.org/obo/UBERON_0013620;lower primary molar tooth;primary lower molar tooth -http://purl.obolibrary.org/obo/UBERON_0013621;lower secondary molar tooth;lower permanent molar -http://purl.obolibrary.org/obo/UBERON_0013621;lower secondary molar tooth;lower permanent molar tooth -http://purl.obolibrary.org/obo/UBERON_0013621;lower secondary molar tooth;mandibular secondary molar tooth -http://purl.obolibrary.org/obo/UBERON_0013622;manual autopod pad; -http://purl.obolibrary.org/obo/UBERON_0013623;pedal autopod pad; -http://purl.obolibrary.org/obo/UBERON_0013626;medial metatarsal pad;thenar pad -http://purl.obolibrary.org/obo/UBERON_0013627;lateral metatarsal pad;hypothenar pad -http://purl.obolibrary.org/obo/UBERON_0013628;pollical pad;interdigital pad 1 of manus -http://purl.obolibrary.org/obo/UBERON_0013629;hallical pad;interdigital pad 1 of pes -http://purl.obolibrary.org/obo/UBERON_0013630;short bone; -http://purl.obolibrary.org/obo/UBERON_0013631;sesamoid element;sesamoid -http://purl.obolibrary.org/obo/UBERON_0013632;sesamoid cartilage;cartilago sesamoidea -http://purl.obolibrary.org/obo/UBERON_0013632;sesamoid cartilage;sesamoid cartilage of cricopharyngeal ligament -http://purl.obolibrary.org/obo/UBERON_0013633;intertrochanteric crest; -http://purl.obolibrary.org/obo/UBERON_0013634;intertrochanteric line; -http://purl.obolibrary.org/obo/UBERON_0013635;sphincter colli muscle;sphincter colli -http://purl.obolibrary.org/obo/UBERON_0013636;epithelium of intestinal villus;intestinal villus epithelium -http://purl.obolibrary.org/obo/UBERON_0013637;prostate gland lateral lobe;lateral lobe of prostate -http://purl.obolibrary.org/obo/UBERON_0013637;prostate gland lateral lobe;lateral lobe of prostate gland -http://purl.obolibrary.org/obo/UBERON_0013638;horny papilla of tongue;horny papilla -http://purl.obolibrary.org/obo/UBERON_0013639;mechanical papilla of tongue;mechanical papilla -http://purl.obolibrary.org/obo/UBERON_0013640;internal cheek pouch;internal buccal pouch -http://purl.obolibrary.org/obo/UBERON_0013641;external cheek pouch;external buccal pouch -http://purl.obolibrary.org/obo/UBERON_0013642;ring of oral cilia; -http://purl.obolibrary.org/obo/UBERON_0013643;lophophore; -http://purl.obolibrary.org/obo/UBERON_0013644;duodenal ampulla;ampulla (duodenum) -http://purl.obolibrary.org/obo/UBERON_0013644;duodenal ampulla;ampulla duodeni -http://purl.obolibrary.org/obo/UBERON_0013644;duodenal ampulla;ampulla of duodenum -http://purl.obolibrary.org/obo/UBERON_0013644;duodenal ampulla;bulbus (duodenum) -http://purl.obolibrary.org/obo/UBERON_0013644;duodenal ampulla;bulbus duodeni -http://purl.obolibrary.org/obo/UBERON_0013644;duodenal ampulla;duodenal cap -http://purl.obolibrary.org/obo/UBERON_0013644;duodenal ampulla;duodenal cap viewed radiologically -http://purl.obolibrary.org/obo/UBERON_0013645;gular gland; -http://purl.obolibrary.org/obo/UBERON_0013646;buccal nerve;buccinator nerve -http://purl.obolibrary.org/obo/UBERON_0013646;buccal nerve;long buccal nerve -http://purl.obolibrary.org/obo/UBERON_0013647;lateral pterygoid nerve;branch of buccal nerve to lateral pterygoid -http://purl.obolibrary.org/obo/UBERON_0013647;lateral pterygoid nerve;nerve to lateral pterygoid -http://purl.obolibrary.org/obo/UBERON_0013647;lateral pterygoid nerve;nervus pterygoideus lateralis -http://purl.obolibrary.org/obo/UBERON_0013648;masseteric artery;arteria masseterica -http://purl.obolibrary.org/obo/UBERON_0013649;fused tarsal bones 1 and 2;fused tarsals 1 and 2 -http://purl.obolibrary.org/obo/UBERON_0013649;fused tarsal bones 1 and 2;os cuneiforme mediointermedium -http://purl.obolibrary.org/obo/UBERON_0013649;fused tarsal bones 1 and 2;os tarsale I et II -http://purl.obolibrary.org/obo/UBERON_0013653;velar skeleton;skeleton of velum -http://purl.obolibrary.org/obo/UBERON_0013655;elastica externa of notochord;elastica externa -http://purl.obolibrary.org/obo/UBERON_0013655;elastica externa of notochord;membrana elastica externa -http://purl.obolibrary.org/obo/UBERON_0013656;dulla;dulaa -http://purl.obolibrary.org/obo/UBERON_0013656;dulla;dulah -http://purl.obolibrary.org/obo/UBERON_0013657;hump;CamelHump -http://purl.obolibrary.org/obo/UBERON_0013657;hump;camel hump -http://purl.obolibrary.org/obo/UBERON_0013658;corpus cavernosum maxillaris;palatal corpus cavernosum maxillaris -http://purl.obolibrary.org/obo/UBERON_0013658;corpus cavernosum maxillaris;palatal reital organ -http://purl.obolibrary.org/obo/UBERON_0013659;spongiose tissue of corpus cavernosum maxillaris; -http://purl.obolibrary.org/obo/UBERON_0013670;midline of corpus cavernosum maxillaris; -http://purl.obolibrary.org/obo/UBERON_0013671;nerve ending of of corpus cavernosum maxillaris; -http://purl.obolibrary.org/obo/UBERON_0013672;priapium; -http://purl.obolibrary.org/obo/UBERON_0013673;os priapium; -http://purl.obolibrary.org/obo/UBERON_0013674;ctenactinium; -http://purl.obolibrary.org/obo/UBERON_0013675;toxactinium; -http://purl.obolibrary.org/obo/UBERON_0013676;aproctal bone of priapium; -http://purl.obolibrary.org/obo/UBERON_0013677;serrated projection of ctenactinium; -http://purl.obolibrary.org/obo/UBERON_0013678;anatomical line between inner canthi;inter inner canthal line -http://purl.obolibrary.org/obo/UBERON_0013678;anatomical line between inner canthi;inter medial canthal line -http://purl.obolibrary.org/obo/UBERON_0013679;inner canthus of right eye;right inner canthus -http://purl.obolibrary.org/obo/UBERON_0013679;inner canthus of right eye;right medial canthus -http://purl.obolibrary.org/obo/UBERON_0013679;inner canthus of right eye;right medial palpebral commissure -http://purl.obolibrary.org/obo/UBERON_0013680;inner canthus of left eye;left inner canthus -http://purl.obolibrary.org/obo/UBERON_0013680;inner canthus of left eye;left medial canthus -http://purl.obolibrary.org/obo/UBERON_0013680;inner canthus of left eye;left medial palpebral commissure -http://purl.obolibrary.org/obo/UBERON_0013682;peripheral region of retina;peripheral retina -http://purl.obolibrary.org/obo/UBERON_0013683;left dorsal thalamus; -http://purl.obolibrary.org/obo/UBERON_0013684;right dorsal thalamus; -http://purl.obolibrary.org/obo/UBERON_0013685;foramen of skull;foramen of skull -http://purl.obolibrary.org/obo/UBERON_0013686;anatomical conduit space; -http://purl.obolibrary.org/obo/UBERON_0013687;pericranium;periosteum externum cranii -http://purl.obolibrary.org/obo/UBERON_0013688;tonsil germinal center; -http://purl.obolibrary.org/obo/UBERON_0013689;appendix lymphoid tissue;lymphatic tissue of appendix -http://purl.obolibrary.org/obo/UBERON_0013689;appendix lymphoid tissue;lymphatic tissue of vermiform appendix -http://purl.obolibrary.org/obo/UBERON_0013691;buttock;clunis -http://purl.obolibrary.org/obo/UBERON_0013691;buttock;gluteal part of pelvic girdle -http://purl.obolibrary.org/obo/UBERON_0013691;buttock;gluteal region -http://purl.obolibrary.org/obo/UBERON_0013691;buttock;regio glutealis -http://purl.obolibrary.org/obo/UBERON_0013692;inframammary fold; -http://purl.obolibrary.org/obo/UBERON_0013693;cerebral cortex neuropil;neuropil of cerebral cortex -http://purl.obolibrary.org/obo/UBERON_0013694;brain endothelium; -http://purl.obolibrary.org/obo/UBERON_0013695;colon endothelium; -http://purl.obolibrary.org/obo/UBERON_0013696;tonsil epithelium; -http://purl.obolibrary.org/obo/UBERON_0013697;exocrine pancreas epithelium; -http://purl.obolibrary.org/obo/UBERON_0013698;strand of pubic hair;pubic hair -http://purl.obolibrary.org/obo/UBERON_0013699;strand of axillary hair;axilla hair -http://purl.obolibrary.org/obo/UBERON_0013699;strand of axillary hair;axillary hair -http://purl.obolibrary.org/obo/UBERON_0013699;strand of axillary hair;hair of axilla -http://purl.obolibrary.org/obo/UBERON_0013700;axial musculature; -http://purl.obolibrary.org/obo/UBERON_0013701;main body axis; -http://purl.obolibrary.org/obo/UBERON_0013702;body proper;body -http://purl.obolibrary.org/obo/UBERON_0013702;body proper;whole body -http://purl.obolibrary.org/obo/UBERON_0013703;integumentary projection; -http://purl.obolibrary.org/obo/UBERON_0013704;notochordal canal; -http://purl.obolibrary.org/obo/UBERON_0013705;fascia of Scarpa;Colles' fascia -http://purl.obolibrary.org/obo/UBERON_0013705;fascia of Scarpa;Scarpa's fascia -http://purl.obolibrary.org/obo/UBERON_0013705;fascia of Scarpa;deep layer of superficial fascia of abdomen -http://purl.obolibrary.org/obo/UBERON_0013705;fascia of Scarpa;membranous layer of subcutaneous tissue of abdomen -http://purl.obolibrary.org/obo/UBERON_0013705;fascia of Scarpa;membranous layer of superficial fascia of abdomen -http://purl.obolibrary.org/obo/UBERON_0013705;fascia of Scarpa;stratum membranosum telae subcutaneae abdominis -http://purl.obolibrary.org/obo/UBERON_0013706;bone spine; -http://purl.obolibrary.org/obo/UBERON_0013707;iliac spine; -http://purl.obolibrary.org/obo/UBERON_0013708;anterior superior iliac spine;anterior superior iliac spine (volume) -http://purl.obolibrary.org/obo/UBERON_0013709;anterior inferior iliac spine;anterior inferior iliac spine (volume) -http://purl.obolibrary.org/obo/UBERON_0013710;posterior superior iliac spine;posterior superior iliac spine (volume) -http://purl.obolibrary.org/obo/UBERON_0013711;posterior inferior iliac spine;posterior inferior iliac spine (volume) -http://purl.obolibrary.org/obo/UBERON_0013712;anterior iliac spine; -http://purl.obolibrary.org/obo/UBERON_0013713;posterior iliac spine; -http://purl.obolibrary.org/obo/UBERON_0013715;ilio-marsupialis muscle;M. ilio-marsupialis -http://purl.obolibrary.org/obo/UBERON_0013715;ilio-marsupialis muscle;ilio-marsupialis -http://purl.obolibrary.org/obo/UBERON_0013716;branch of ilio-marsupialis muscle; -http://purl.obolibrary.org/obo/UBERON_0013717;superficial inguinal ring; -http://purl.obolibrary.org/obo/UBERON_0013718;dartos muscle; -http://purl.obolibrary.org/obo/UBERON_0013719;dartos muscle of scrotum;dartos layer of scrotum -http://purl.obolibrary.org/obo/UBERON_0013720;dartos muscle of labia majora;dartos layer of labia -http://purl.obolibrary.org/obo/UBERON_0013721;deep inguinal ring; -http://purl.obolibrary.org/obo/UBERON_0013725;anterior talofibular ligament;ligamentum talofibulare anterius -http://purl.obolibrary.org/obo/UBERON_0013726;posterior talofibular ligament;ligamentum talofibulare posterius -http://purl.obolibrary.org/obo/UBERON_0013727;notochordal fluid;notochord fluid -http://purl.obolibrary.org/obo/UBERON_0013727;notochordal fluid;portion of notochordal fluid -http://purl.obolibrary.org/obo/UBERON_0013730;mycetome; -http://purl.obolibrary.org/obo/UBERON_0013731;basilar papilla;papilla basilaris -http://purl.obolibrary.org/obo/UBERON_0013732;vestibule of nasal cavity; -http://purl.obolibrary.org/obo/UBERON_0013733;caudal linear nucleus;CLi -http://purl.obolibrary.org/obo/UBERON_0013733;caudal linear nucleus;posterior linear nucleus -http://purl.obolibrary.org/obo/UBERON_0013734;rostral linear nucleus;RLi -http://purl.obolibrary.org/obo/UBERON_0013734;rostral linear nucleus;anterior linear nucleus -http://purl.obolibrary.org/obo/UBERON_0013736;interfascicular linear nucleus; -http://purl.obolibrary.org/obo/UBERON_0013737;paranigral nucleus; -http://purl.obolibrary.org/obo/UBERON_0013738;parabrachial pigmental nucleus;parabrachial pigmented nucleus -http://purl.obolibrary.org/obo/UBERON_0013739;base of crypt of Lieberkuhn;basal portion of intestinal gland -http://purl.obolibrary.org/obo/UBERON_0013739;base of crypt of Lieberkuhn;base of intestinal gland -http://purl.obolibrary.org/obo/UBERON_0013739;base of crypt of Lieberkuhn;base part of epithelium of intestinal gland -http://purl.obolibrary.org/obo/UBERON_0013740;wall of crypt of Lieberkuhn;wall of intestinal gland -http://purl.obolibrary.org/obo/UBERON_0013740;wall of crypt of Lieberkuhn;wall part of epithelium of intestinal gland -http://purl.obolibrary.org/obo/UBERON_0013741;base of crypt of Lieberkuhn of large intestine; -http://purl.obolibrary.org/obo/UBERON_0013742;wall of crypt of Lieberkuhn of large intestine; -http://purl.obolibrary.org/obo/UBERON_0013743;base of crypt of Lieberkuhn of small intestine; -http://purl.obolibrary.org/obo/UBERON_0013744;wall of crypt of Lieberkuhn of small intestine; -http://purl.obolibrary.org/obo/UBERON_0013745;zona intermedia of adrenal gland;zona intermedia -http://purl.obolibrary.org/obo/UBERON_0013745;zona intermedia of adrenal gland;zona intermedia of suprarenal gland -http://purl.obolibrary.org/obo/UBERON_0013746;basibranchial element;basibranchial -http://purl.obolibrary.org/obo/UBERON_0013746;basibranchial element;basibranchials -http://purl.obolibrary.org/obo/UBERON_0013747;basibranchial cartilage; -http://purl.obolibrary.org/obo/UBERON_0013748;ulnar metaphysis;metaphysis of ulna -http://purl.obolibrary.org/obo/UBERON_0013749;metaphysis of humerus;diaphyseal end of humerus -http://purl.obolibrary.org/obo/UBERON_0013749;metaphysis of humerus;humeral metaphysis -http://purl.obolibrary.org/obo/UBERON_0013750;metaphysis of tibia;tibial metaphysis -http://purl.obolibrary.org/obo/UBERON_0013751;metaphysis of radius;radial metaphysis -http://purl.obolibrary.org/obo/UBERON_0013752;diaphysis of metacarpal bone;body of metacarpal -http://purl.obolibrary.org/obo/UBERON_0013752;diaphysis of metacarpal bone;corpus ossis metacarpi -http://purl.obolibrary.org/obo/UBERON_0013752;diaphysis of metacarpal bone;metacarpal bone diaphysis -http://purl.obolibrary.org/obo/UBERON_0013752;diaphysis of metacarpal bone;shaft of metacarpal -http://purl.obolibrary.org/obo/UBERON_0013752;diaphysis of metacarpal bone;shaft of metacarpal bone -http://purl.obolibrary.org/obo/UBERON_0013753;distal epiphysis of metacarpal bone;caput ossis metacarpi -http://purl.obolibrary.org/obo/UBERON_0013753;distal epiphysis of metacarpal bone;distal end of metacarpal bone -http://purl.obolibrary.org/obo/UBERON_0013753;distal epiphysis of metacarpal bone;head of metacarpal bone -http://purl.obolibrary.org/obo/UBERON_0013753;distal epiphysis of metacarpal bone;lower end of metacarpal bone -http://purl.obolibrary.org/obo/UBERON_0013754;integumentary system layer;layer of skin -http://purl.obolibrary.org/obo/UBERON_0013754;integumentary system layer;skin layer -http://purl.obolibrary.org/obo/UBERON_0013755;arterial blood;arterial blood -http://purl.obolibrary.org/obo/UBERON_0013755;arterial blood;blood in artery -http://purl.obolibrary.org/obo/UBERON_0013755;arterial blood;portion of arterial blood -http://purl.obolibrary.org/obo/UBERON_0013756;venous blood;blood in vein -http://purl.obolibrary.org/obo/UBERON_0013756;venous blood;portion of venous blood -http://purl.obolibrary.org/obo/UBERON_0013756;venous blood;venous blood -http://purl.obolibrary.org/obo/UBERON_0013757;capillary blood;blood in capillary -http://purl.obolibrary.org/obo/UBERON_0013757;capillary blood;portion of blood in capillary -http://purl.obolibrary.org/obo/UBERON_0013757;capillary blood;portion of capillary blood -http://purl.obolibrary.org/obo/UBERON_0013758;cervical os; -http://purl.obolibrary.org/obo/UBERON_0013759;internal cervical os; -http://purl.obolibrary.org/obo/UBERON_0013760;external cervical os;external os of uterus -http://purl.obolibrary.org/obo/UBERON_0013760;external cervical os;ostium uteri -http://purl.obolibrary.org/obo/UBERON_0013761;cervical cavity;lumen of cervix of uterus -http://purl.obolibrary.org/obo/UBERON_0013764;common crus of semicircular duct;common membranous limb of membranous semicircular ducts -http://purl.obolibrary.org/obo/UBERON_0013764;common crus of semicircular duct;common membranous limb of semicircular ducts -http://purl.obolibrary.org/obo/UBERON_0013764;common crus of semicircular duct;crus membranaceum commune ductus semicircularis -http://purl.obolibrary.org/obo/UBERON_0013764;common crus of semicircular duct;crus membranaceum commune ductuum semicircularium -http://purl.obolibrary.org/obo/UBERON_0013765;digestive system element;digestive organ -http://purl.obolibrary.org/obo/UBERON_0013765;digestive system element;digestive system organ -http://purl.obolibrary.org/obo/UBERON_0013766;epicanthal fold;epicanthic fold -http://purl.obolibrary.org/obo/UBERON_0013766;epicanthal fold;epicanthus -http://purl.obolibrary.org/obo/UBERON_0013766;epicanthal fold;eye fold -http://purl.obolibrary.org/obo/UBERON_0013766;epicanthal fold;medial canthic fold -http://purl.obolibrary.org/obo/UBERON_0013766;epicanthal fold;palpebronasal fold -http://purl.obolibrary.org/obo/UBERON_0013766;epicanthal fold;plica palpebronasalis -http://purl.obolibrary.org/obo/UBERON_0013767;frontal process of maxilla;processus frontalis (maxilla) -http://purl.obolibrary.org/obo/UBERON_0013768;great vessel of heart;great vessel -http://purl.obolibrary.org/obo/UBERON_0013768;great vessel of heart;great vessel of thorax -http://purl.obolibrary.org/obo/UBERON_0013769;uterine lumen;cavity of uterus -http://purl.obolibrary.org/obo/UBERON_0013769;uterine lumen;uterine cavity -http://purl.obolibrary.org/obo/UBERON_0013769;uterine lumen;uterine space -http://purl.obolibrary.org/obo/UBERON_0013770;intermammary cleft; -http://purl.obolibrary.org/obo/UBERON_0013771;line connecting laterally paired nipples;intermammary line -http://purl.obolibrary.org/obo/UBERON_0013772;left nipple; -http://purl.obolibrary.org/obo/UBERON_0013773;right nipple; -http://purl.obolibrary.org/obo/UBERON_0013774;diaphysis of metatarsal bone;diaphysis of metatarsal -http://purl.obolibrary.org/obo/UBERON_0013774;diaphysis of metatarsal bone;metatarsal bone diaphysis -http://purl.obolibrary.org/obo/UBERON_0013774;diaphysis of metatarsal bone;metatarsal diaphysis -http://purl.obolibrary.org/obo/UBERON_0013774;diaphysis of metatarsal bone;shaft of metatarsal bone -http://purl.obolibrary.org/obo/UBERON_0013776;skin of palmar/plantar part of autopod; -http://purl.obolibrary.org/obo/UBERON_0013777;skin of palm of manus;palmar skin of hand -http://purl.obolibrary.org/obo/UBERON_0013777;skin of palm of manus;skin of palmar area of hand -http://purl.obolibrary.org/obo/UBERON_0013778;skin of sole of pes;plantar skin of foot -http://purl.obolibrary.org/obo/UBERON_0013778;skin of sole of pes;skin of plantar part of foot -http://purl.obolibrary.org/obo/UBERON_0013778;skin of sole of pes;skin of sole of foot -http://purl.obolibrary.org/obo/UBERON_0014169;nigrostriatal tract;comb bundle -http://purl.obolibrary.org/obo/UBERON_0014169;nigrostriatal tract;nigrostriatal bundle -http://purl.obolibrary.org/obo/UBERON_0014169;nigrostriatal tract;nigrostriatal fibers -http://purl.obolibrary.org/obo/UBERON_0014169;nigrostriatal tract;nigrostriatal tract -http://purl.obolibrary.org/obo/UBERON_0014277;piriform cortex layer 1;layer 1 of piriform cortex -http://purl.obolibrary.org/obo/UBERON_0014277;piriform cortex layer 1;piriform cortex layer 1 -http://purl.obolibrary.org/obo/UBERON_0014277;piriform cortex layer 1;piriform cortex plexiform layer -http://purl.obolibrary.org/obo/UBERON_0014277;piriform cortex layer 1;plexiform layer of piriform cortex -http://purl.obolibrary.org/obo/UBERON_0014277;piriform cortex layer 1;pyriform cortex layer 1 -http://purl.obolibrary.org/obo/UBERON_0014280;piriform cortex layer 2;layer 2 of piriform cortex -http://purl.obolibrary.org/obo/UBERON_0014280;piriform cortex layer 2;layer II of piriform cortex -http://purl.obolibrary.org/obo/UBERON_0014280;piriform cortex layer 2;piriform cortex layer 2 -http://purl.obolibrary.org/obo/UBERON_0014280;piriform cortex layer 2;piriform cortex layer II -http://purl.obolibrary.org/obo/UBERON_0014283;piriform cortex layer 3;layer 3 of piriform cortex -http://purl.obolibrary.org/obo/UBERON_0014283;piriform cortex layer 3;piriform cortex layer 3 -http://purl.obolibrary.org/obo/UBERON_0014284;endopiriform nucleus;endopiriform nucleus -http://purl.obolibrary.org/obo/UBERON_0014284;endopiriform nucleus;layer 4 of piriform cortex -http://purl.obolibrary.org/obo/UBERON_0014284;endopiriform nucleus;layer IV of piriform cortex -http://purl.obolibrary.org/obo/UBERON_0014286;dorsal cap of Kooy;dorsal cap of kooy -http://purl.obolibrary.org/obo/UBERON_0014287;medial accessory olive;MAO -http://purl.obolibrary.org/obo/UBERON_0014287;medial accessory olive;medial accessory olive -http://purl.obolibrary.org/obo/UBERON_0014370;extrastriate cortex;extrastriate areas -http://purl.obolibrary.org/obo/UBERON_0014370;extrastriate cortex;extrastriate cortex -http://purl.obolibrary.org/obo/UBERON_0014371;future telencephalon;presumptive telencephalon -http://purl.obolibrary.org/obo/UBERON_0014372;fibroelastic membrane of larynx;fibro-elastic membrane of larynx -http://purl.obolibrary.org/obo/UBERON_0014372;fibroelastic membrane of larynx;membrana fibroelastica laryngis -http://purl.obolibrary.org/obo/UBERON_0014374;embryoid body; -http://purl.obolibrary.org/obo/UBERON_0014375;intrinsic muscle of manus;intrinsic hand muscle -http://purl.obolibrary.org/obo/UBERON_0014375;intrinsic muscle of manus;intrinsic muscle of hand -http://purl.obolibrary.org/obo/UBERON_0014376;thenar muscle; -http://purl.obolibrary.org/obo/UBERON_0014377;hypothenar muscle; -http://purl.obolibrary.org/obo/UBERON_0014378;intrinsic muscle of pes;intrinsic muscle of foot -http://purl.obolibrary.org/obo/UBERON_0014379;adductor hallucis muscle;adductor hallucis -http://purl.obolibrary.org/obo/UBERON_0014380;flexor digitorum brevis muscle;flexor digitorum brevis -http://purl.obolibrary.org/obo/UBERON_0014380;flexor digitorum brevis muscle;flexor digitorum brevis of foot -http://purl.obolibrary.org/obo/UBERON_0014380;flexor digitorum brevis muscle;musculus flexor digitorum brevis -http://purl.obolibrary.org/obo/UBERON_0014381;whorl of hair; -http://purl.obolibrary.org/obo/UBERON_0014382;collection of hairs on head or neck; -http://purl.obolibrary.org/obo/UBERON_0014385;aryepiglottic fold;ary-epiglottic fold -http://purl.obolibrary.org/obo/UBERON_0014386;vertebral endplate; -http://purl.obolibrary.org/obo/UBERON_0014387;mesenchyme derived from neural crest;mesenchyme from neural crest -http://purl.obolibrary.org/obo/UBERON_0014387;mesenchyme derived from neural crest;neural crest derived mesenchyme -http://purl.obolibrary.org/obo/UBERON_0014387;mesenchyme derived from neural crest;neural crest mesenchyme -http://purl.obolibrary.org/obo/UBERON_0014388;kidney collecting duct epithelium;collecting duct of renal tubule epithelium -http://purl.obolibrary.org/obo/UBERON_0014388;kidney collecting duct epithelium;epithelium of collecting duct of renal tubule -http://purl.obolibrary.org/obo/UBERON_0014388;kidney collecting duct epithelium;epithelium of renal collecting tubule -http://purl.obolibrary.org/obo/UBERON_0014389;gustatory papilla of tongue;gustatory papilla -http://purl.obolibrary.org/obo/UBERON_0014389;gustatory papilla of tongue;taste papilla -http://purl.obolibrary.org/obo/UBERON_0014390;muscle layer of ileum;muscularis externa of ileum -http://purl.obolibrary.org/obo/UBERON_0014391;palmar/plantar sweat gland; -http://purl.obolibrary.org/obo/UBERON_0014392;sweat of palm;palm sweat -http://purl.obolibrary.org/obo/UBERON_0014392;sweat of palm;palmar sweat -http://purl.obolibrary.org/obo/UBERON_0014393;sweat of axilla;axillary sweat -http://purl.obolibrary.org/obo/UBERON_0014394;uterine fat pad;uterine fat depot -http://purl.obolibrary.org/obo/UBERON_0014395;proximal mesopodial bone; -http://purl.obolibrary.org/obo/UBERON_0014396;interscapular fat pad;interscapular fat depot -http://purl.obolibrary.org/obo/UBERON_0014397;lateral process of malleus;malleus process brevis -http://purl.obolibrary.org/obo/UBERON_0014397;lateral process of malleus;processus lateralis (malleus) -http://purl.obolibrary.org/obo/UBERON_0014397;lateral process of malleus;processus lateralis mallei -http://purl.obolibrary.org/obo/UBERON_0014397;lateral process of malleus;processus lateralis malleus -http://purl.obolibrary.org/obo/UBERON_0014397;lateral process of malleus;short process of malleus -http://purl.obolibrary.org/obo/UBERON_0014397;lateral process of malleus;tuberculum mallei -http://purl.obolibrary.org/obo/UBERON_0014398;respiratory muscle; -http://purl.obolibrary.org/obo/UBERON_0014399;sinusoidal space;lumen of sinusoid -http://purl.obolibrary.org/obo/UBERON_0014399;sinusoidal space;sinusoid lumen -http://purl.obolibrary.org/obo/UBERON_0014400;hepatic sinusoidal space;lumen of hepatic sinusoid -http://purl.obolibrary.org/obo/UBERON_0014401;renal venous blood vessel;kidney venous blood vessel -http://purl.obolibrary.org/obo/UBERON_0014401;renal venous blood vessel;venous blood vessel of kidney -http://purl.obolibrary.org/obo/UBERON_0014402;sex-specific anatomical structure;gender-specific -http://purl.obolibrary.org/obo/UBERON_0014402;sex-specific anatomical structure;gender-specific anatomical structure -http://purl.obolibrary.org/obo/UBERON_0014402;sex-specific anatomical structure;sex-specific -http://purl.obolibrary.org/obo/UBERON_0014403;male anatomical structure;male-specific structure -http://purl.obolibrary.org/obo/UBERON_0014404;female anatomical structure; -http://purl.obolibrary.org/obo/UBERON_0014409;metacromion;metacromion of scapula -http://purl.obolibrary.org/obo/UBERON_0014409;metacromion;metacromion process -http://purl.obolibrary.org/obo/UBERON_0014409;metacromion;scapular metacromion -http://purl.obolibrary.org/obo/UBERON_0014410;fibularis quartus;fibularis quartus muscle -http://purl.obolibrary.org/obo/UBERON_0014410;fibularis quartus;peroneus digiti quarti -http://purl.obolibrary.org/obo/UBERON_0014410;fibularis quartus;peroneus quartus -http://purl.obolibrary.org/obo/UBERON_0014410;fibularis quartus;peroneus quartus muscle -http://purl.obolibrary.org/obo/UBERON_0014411;greater sciatic notch;greater sacrosciatic notch -http://purl.obolibrary.org/obo/UBERON_0014411;greater sciatic notch;incisura ischiadica major -http://purl.obolibrary.org/obo/UBERON_0014430;sciatic notch; -http://purl.obolibrary.org/obo/UBERON_0014436;lesser sciatic notch;incisura ischiadica minor -http://purl.obolibrary.org/obo/UBERON_0014437;iliac crest; -http://purl.obolibrary.org/obo/UBERON_0014438;superior pubic ramus;superior ramus of pubis -http://purl.obolibrary.org/obo/UBERON_0014439;inferior pubic ramus;inferior ramus of pubis -http://purl.obolibrary.org/obo/UBERON_0014440;ischiopubic ramus;conjoint ramus -http://purl.obolibrary.org/obo/UBERON_0014441;ischial ramus;ramus of ischium -http://purl.obolibrary.org/obo/UBERON_0014441;ischial ramus;ramus ossis ischii -http://purl.obolibrary.org/obo/UBERON_0014441;ischial ramus;ramusi ossis ischii -http://purl.obolibrary.org/obo/UBERON_0014442;superior ischial ramus; -http://purl.obolibrary.org/obo/UBERON_0014443;inferior ischial ramus; -http://purl.obolibrary.org/obo/UBERON_0014444;pubic ramus;ramus of pubis -http://purl.obolibrary.org/obo/UBERON_0014445;acetabular fossa;fossa acetabularis -http://purl.obolibrary.org/obo/UBERON_0014445;acetabular fossa;fossa acetabularis (acetabuli) -http://purl.obolibrary.org/obo/UBERON_0014445;acetabular fossa;fossa acetabuli -http://purl.obolibrary.org/obo/UBERON_0014446;acetabular notch; -http://purl.obolibrary.org/obo/UBERON_0014447;feathered facial disc;facial disk -http://purl.obolibrary.org/obo/UBERON_0014447;feathered facial disc;facial diss -http://purl.obolibrary.org/obo/UBERON_0014448;feathered ear tuft;ear tuft -http://purl.obolibrary.org/obo/UBERON_0014450;pretectal nucleus;nucleus of pretectal area -http://purl.obolibrary.org/obo/UBERON_0014450;pretectal nucleus;pretectal area nucleus -http://purl.obolibrary.org/obo/UBERON_0014450;pretectal nucleus;pretectal nucleus -http://purl.obolibrary.org/obo/UBERON_0014451;tongue taste bud;gustatory papilla taste bud -http://purl.obolibrary.org/obo/UBERON_0014451;tongue taste bud;gustatory papillae taste bud -http://purl.obolibrary.org/obo/UBERON_0014452;gustatory epithelium of tongue;lingual gustatory epithelium -http://purl.obolibrary.org/obo/UBERON_0014453;gustatory epithelium of palate;palatal gustatory epithelium -http://purl.obolibrary.org/obo/UBERON_0014454;visceral abdominal adipose tissue; -http://purl.obolibrary.org/obo/UBERON_0014455;subcutaneous abdominal adipose tissue;abdominal subcutaneous adipose tissue -http://purl.obolibrary.org/obo/UBERON_0014455;subcutaneous abdominal adipose tissue;subcutaneous abdominal fat -http://purl.obolibrary.org/obo/UBERON_0014455;subcutaneous abdominal adipose tissue;subcutaneous fat of abdominal region -http://purl.obolibrary.org/obo/UBERON_0014456;extraperitoneal space;spatium extraperitoneale -http://purl.obolibrary.org/obo/UBERON_0014458;female bulbospongiosus muscle;bulbospongiosus of female -http://purl.obolibrary.org/obo/UBERON_0014458;female bulbospongiosus muscle;female bulbospongiosus -http://purl.obolibrary.org/obo/UBERON_0014459;temporal fenestra; -http://purl.obolibrary.org/obo/UBERON_0014460;supratemporal fenestra;upper temporal fenestra -http://purl.obolibrary.org/obo/UBERON_0014461;infratemporal fenestra;lateral temporal fenestra -http://purl.obolibrary.org/obo/UBERON_0014461;infratemporal fenestra;lower temporal fenestra -http://purl.obolibrary.org/obo/UBERON_0014463;cardiac ganglion;Wrisberg ganglion -http://purl.obolibrary.org/obo/UBERON_0014463;cardiac ganglion;cardiac ganglia set -http://purl.obolibrary.org/obo/UBERON_0014463;cardiac ganglion;cardiac ganglion of Wrisberg -http://purl.obolibrary.org/obo/UBERON_0014463;cardiac ganglion;ganglia cardiaca -http://purl.obolibrary.org/obo/UBERON_0014463;cardiac ganglion;ganglion of Wrisberg -http://purl.obolibrary.org/obo/UBERON_0014464;renal fat pad; -http://purl.obolibrary.org/obo/UBERON_0014465;antorbital fenestra; -http://purl.obolibrary.org/obo/UBERON_0014466;subarachnoid fissure; -http://purl.obolibrary.org/obo/UBERON_0014468;ansoparamedian fissure of cerebellum;ansoparamedian fissure -http://purl.obolibrary.org/obo/UBERON_0014468;ansoparamedian fissure of cerebellum;fissura ansoparamedianis -http://purl.obolibrary.org/obo/UBERON_0014468;ansoparamedian fissure of cerebellum;fissura lunogracilis -http://purl.obolibrary.org/obo/UBERON_0014468;ansoparamedian fissure of cerebellum;lunogracile fissure -http://purl.obolibrary.org/obo/UBERON_0014468;ansoparamedian fissure of cerebellum;lunogracile fissure of cerebellum -http://purl.obolibrary.org/obo/UBERON_0014471;primary fissure of cerebellum;fissura preclivalis -http://purl.obolibrary.org/obo/UBERON_0014471;primary fissure of cerebellum;fissura prima -http://purl.obolibrary.org/obo/UBERON_0014471;primary fissure of cerebellum;fissura prima cerebelli -http://purl.obolibrary.org/obo/UBERON_0014471;primary fissure of cerebellum;fissura superior anterior -http://purl.obolibrary.org/obo/UBERON_0014471;primary fissure of cerebellum;preclival fissure -http://purl.obolibrary.org/obo/UBERON_0014471;primary fissure of cerebellum;primary sulcus of cerebellum -http://purl.obolibrary.org/obo/UBERON_0014473;precentral fissure of cerebellum;fissura postlingualis cerebelli -http://purl.obolibrary.org/obo/UBERON_0014473;precentral fissure of cerebellum;fissura praecentralis -http://purl.obolibrary.org/obo/UBERON_0014473;precentral fissure of cerebellum;fissura precentralis cerebelli -http://purl.obolibrary.org/obo/UBERON_0014473;precentral fissure of cerebellum;post-lingual fissure of cerebellum -http://purl.obolibrary.org/obo/UBERON_0014473;precentral fissure of cerebellum;postlingual fissure -http://purl.obolibrary.org/obo/UBERON_0014473;precentral fissure of cerebellum;precentral fissure -http://purl.obolibrary.org/obo/UBERON_0014474;postcentral fissure of cerebellum;fissura postcentralis cerebelli -http://purl.obolibrary.org/obo/UBERON_0014474;postcentral fissure of cerebellum;fissura praeculminata -http://purl.obolibrary.org/obo/UBERON_0014474;postcentral fissure of cerebellum;post-central fissure of cerebellum -http://purl.obolibrary.org/obo/UBERON_0014474;postcentral fissure of cerebellum;postcentral fissure-2 -http://purl.obolibrary.org/obo/UBERON_0014475;endostylar duct;duct of endostyle -http://purl.obolibrary.org/obo/UBERON_0014477;thoracic skeleton;skeleton of thorax -http://purl.obolibrary.org/obo/UBERON_0014477;thoracic skeleton;thoracic part of axial skeleton -http://purl.obolibrary.org/obo/UBERON_0014477;thoracic skeleton;thoracic skeleton -http://purl.obolibrary.org/obo/UBERON_0014478;rib skeletal system;rib series -http://purl.obolibrary.org/obo/UBERON_0014479;elephant trunk;trunk of elephant -http://purl.obolibrary.org/obo/UBERON_0014480;blood feather; -http://purl.obolibrary.org/obo/UBERON_0014481;sex skin; -http://purl.obolibrary.org/obo/UBERON_0014482;ischial callosity; -http://purl.obolibrary.org/obo/UBERON_0014483;distal phalanx of digit 1;digit 1 distal phalanx -http://purl.obolibrary.org/obo/UBERON_0014483;distal phalanx of digit 1;distal phalanx of digit I -http://purl.obolibrary.org/obo/UBERON_0014483;distal phalanx of digit 1;distal phalanx of first digit -http://purl.obolibrary.org/obo/UBERON_0014484;distal phalanx of digit 2;2nd digit distal phalanx -http://purl.obolibrary.org/obo/UBERON_0014484;distal phalanx of digit 2;digit 2 distal phalanx -http://purl.obolibrary.org/obo/UBERON_0014484;distal phalanx of digit 2;distal phalanx of 2nd digit -http://purl.obolibrary.org/obo/UBERON_0014484;distal phalanx of digit 2;distal phalanx of digit II -http://purl.obolibrary.org/obo/UBERON_0014484;distal phalanx of digit 2;distal phalanx of index digit -http://purl.obolibrary.org/obo/UBERON_0014484;distal phalanx of digit 2;distal phalanx of second digit -http://purl.obolibrary.org/obo/UBERON_0014484;distal phalanx of digit 2;second digit distal phalanx -http://purl.obolibrary.org/obo/UBERON_0014484;distal phalanx of digit 2;second distal phalanx -http://purl.obolibrary.org/obo/UBERON_0014485;distal phalanx of digit 3;3rd digit distal phalanx -http://purl.obolibrary.org/obo/UBERON_0014485;distal phalanx of digit 3;digit 3 distal phalanx -http://purl.obolibrary.org/obo/UBERON_0014485;distal phalanx of digit 3;distal phalanx of 3rd digit -http://purl.obolibrary.org/obo/UBERON_0014485;distal phalanx of digit 3;distal phalanx of digit III -http://purl.obolibrary.org/obo/UBERON_0014485;distal phalanx of digit 3;distal phalanx of middle digit -http://purl.obolibrary.org/obo/UBERON_0014485;distal phalanx of digit 3;distal phalanx of third digit -http://purl.obolibrary.org/obo/UBERON_0014485;distal phalanx of digit 3;equine 3rd phalanx of digit 3 -http://purl.obolibrary.org/obo/UBERON_0014485;distal phalanx of digit 3;equine distal phalanx -http://purl.obolibrary.org/obo/UBERON_0014485;distal phalanx of digit 3;third digit distal phalanx -http://purl.obolibrary.org/obo/UBERON_0014485;distal phalanx of digit 3;third distal phalanx -http://purl.obolibrary.org/obo/UBERON_0014486;distal phalanx of digit 4;4th digit distal phalanx -http://purl.obolibrary.org/obo/UBERON_0014486;distal phalanx of digit 4;digit 4 distal phalanx -http://purl.obolibrary.org/obo/UBERON_0014486;distal phalanx of digit 4;distal phalanx of 4th digit -http://purl.obolibrary.org/obo/UBERON_0014486;distal phalanx of digit 4;distal phalanx of digit IV -http://purl.obolibrary.org/obo/UBERON_0014486;distal phalanx of digit 4;distal phalanx of fourth digit -http://purl.obolibrary.org/obo/UBERON_0014486;distal phalanx of digit 4;distal phalanx of ring digit -http://purl.obolibrary.org/obo/UBERON_0014486;distal phalanx of digit 4;fourth digit distal phalanx -http://purl.obolibrary.org/obo/UBERON_0014486;distal phalanx of digit 4;fourth distal phalanx -http://purl.obolibrary.org/obo/UBERON_0014487;distal phalanx of digit 5;5th digit distal phalanx -http://purl.obolibrary.org/obo/UBERON_0014487;distal phalanx of digit 5;digit 5 distal phalanx -http://purl.obolibrary.org/obo/UBERON_0014487;distal phalanx of digit 5;distal phalanx of 5th digit -http://purl.obolibrary.org/obo/UBERON_0014487;distal phalanx of digit 5;distal phalanx of digit V -http://purl.obolibrary.org/obo/UBERON_0014487;distal phalanx of digit 5;distal phalanx of fifth digit -http://purl.obolibrary.org/obo/UBERON_0014487;distal phalanx of digit 5;distal phalanx of little digit -http://purl.obolibrary.org/obo/UBERON_0014487;distal phalanx of digit 5;fifth digit distal phalanx -http://purl.obolibrary.org/obo/UBERON_0014487;distal phalanx of digit 5;fifth distal phalanx -http://purl.obolibrary.org/obo/UBERON_0014488;middle phalanx of digit 2;2nd digit intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0014488;middle phalanx of digit 2;2nd digit middle phalanx -http://purl.obolibrary.org/obo/UBERON_0014488;middle phalanx of digit 2;2nd digit of intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0014488;middle phalanx of digit 2;2nd digit of middle phalanx -http://purl.obolibrary.org/obo/UBERON_0014488;middle phalanx of digit 2;digit 2 intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0014488;middle phalanx of digit 2;digit 2 middle phalanx -http://purl.obolibrary.org/obo/UBERON_0014488;middle phalanx of digit 2;intermediate phalanx of 2nd digit -http://purl.obolibrary.org/obo/UBERON_0014488;middle phalanx of digit 2;intermediate phalanx of digit 2 -http://purl.obolibrary.org/obo/UBERON_0014488;middle phalanx of digit 2;intermediate phalanx of second digit -http://purl.obolibrary.org/obo/UBERON_0014488;middle phalanx of digit 2;middle phalanx of 2nd digit -http://purl.obolibrary.org/obo/UBERON_0014488;middle phalanx of digit 2;middle phalanx of digit II -http://purl.obolibrary.org/obo/UBERON_0014488;middle phalanx of digit 2;middle phalanx of index digit -http://purl.obolibrary.org/obo/UBERON_0014488;middle phalanx of digit 2;middle phalanx of second digit -http://purl.obolibrary.org/obo/UBERON_0014488;middle phalanx of digit 2;second digit intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0014488;middle phalanx of digit 2;second digit middle phalanx -http://purl.obolibrary.org/obo/UBERON_0014488;middle phalanx of digit 2;second middle phalanx -http://purl.obolibrary.org/obo/UBERON_0014489;middle phalanx of digit 3;3rd digit intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0014489;middle phalanx of digit 3;3rd digit middle phalanx -http://purl.obolibrary.org/obo/UBERON_0014489;middle phalanx of digit 3;3rd digit of intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0014489;middle phalanx of digit 3;3rd digit of middle phalanx -http://purl.obolibrary.org/obo/UBERON_0014489;middle phalanx of digit 3;digit 3 intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0014489;middle phalanx of digit 3;digit 3 middle phalanx -http://purl.obolibrary.org/obo/UBERON_0014489;middle phalanx of digit 3;intermediate phalanx of 3rd digit -http://purl.obolibrary.org/obo/UBERON_0014489;middle phalanx of digit 3;intermediate phalanx of digit 3 -http://purl.obolibrary.org/obo/UBERON_0014489;middle phalanx of digit 3;intermediate phalanx of third digit -http://purl.obolibrary.org/obo/UBERON_0014489;middle phalanx of digit 3;middle phalanx of 3rd digit -http://purl.obolibrary.org/obo/UBERON_0014489;middle phalanx of digit 3;middle phalanx of digit III -http://purl.obolibrary.org/obo/UBERON_0014489;middle phalanx of digit 3;middle phalanx of middle digit -http://purl.obolibrary.org/obo/UBERON_0014489;middle phalanx of digit 3;middle phalanx of third digit -http://purl.obolibrary.org/obo/UBERON_0014489;middle phalanx of digit 3;third digit intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0014489;middle phalanx of digit 3;third digit middle phalanx -http://purl.obolibrary.org/obo/UBERON_0014489;middle phalanx of digit 3;third middle phalanx -http://purl.obolibrary.org/obo/UBERON_0014490;middle phalanx of digit 4;4th digit intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0014490;middle phalanx of digit 4;4th digit middle phalanx -http://purl.obolibrary.org/obo/UBERON_0014490;middle phalanx of digit 4;4th digit of intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0014490;middle phalanx of digit 4;4th digit of middle phalanx -http://purl.obolibrary.org/obo/UBERON_0014490;middle phalanx of digit 4;digit 4 intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0014490;middle phalanx of digit 4;digit 4 middle phalanx -http://purl.obolibrary.org/obo/UBERON_0014490;middle phalanx of digit 4;fourth digit intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0014490;middle phalanx of digit 4;fourth digit middle phalanx -http://purl.obolibrary.org/obo/UBERON_0014490;middle phalanx of digit 4;fourth middle phalanx -http://purl.obolibrary.org/obo/UBERON_0014490;middle phalanx of digit 4;intermediate phalanx of 4th digit -http://purl.obolibrary.org/obo/UBERON_0014490;middle phalanx of digit 4;intermediate phalanx of digit 4 -http://purl.obolibrary.org/obo/UBERON_0014490;middle phalanx of digit 4;intermediate phalanx of fourth digit -http://purl.obolibrary.org/obo/UBERON_0014490;middle phalanx of digit 4;middle phalanx of 4th digit -http://purl.obolibrary.org/obo/UBERON_0014490;middle phalanx of digit 4;middle phalanx of digit IV -http://purl.obolibrary.org/obo/UBERON_0014490;middle phalanx of digit 4;middle phalanx of fourth digit -http://purl.obolibrary.org/obo/UBERON_0014490;middle phalanx of digit 4;middle phalanx of ring digit -http://purl.obolibrary.org/obo/UBERON_0014491;middle phalanx of digit 5;5th digit intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0014491;middle phalanx of digit 5;5th digit middle phalanx -http://purl.obolibrary.org/obo/UBERON_0014491;middle phalanx of digit 5;5th digit of intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0014491;middle phalanx of digit 5;5th digit of middle phalanx -http://purl.obolibrary.org/obo/UBERON_0014491;middle phalanx of digit 5;digit 5 intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0014491;middle phalanx of digit 5;digit 5 middle phalanx -http://purl.obolibrary.org/obo/UBERON_0014491;middle phalanx of digit 5;fifth digit intermediate phalanx -http://purl.obolibrary.org/obo/UBERON_0014491;middle phalanx of digit 5;fifth digit middle phalanx -http://purl.obolibrary.org/obo/UBERON_0014491;middle phalanx of digit 5;fifth middle phalanx -http://purl.obolibrary.org/obo/UBERON_0014491;middle phalanx of digit 5;intermediate phalanx of 5th digit -http://purl.obolibrary.org/obo/UBERON_0014491;middle phalanx of digit 5;intermediate phalanx of digit 5 -http://purl.obolibrary.org/obo/UBERON_0014491;middle phalanx of digit 5;intermediate phalanx of fifth digit -http://purl.obolibrary.org/obo/UBERON_0014491;middle phalanx of digit 5;middle phalanx of 5th digit -http://purl.obolibrary.org/obo/UBERON_0014491;middle phalanx of digit 5;middle phalanx of digit V -http://purl.obolibrary.org/obo/UBERON_0014491;middle phalanx of digit 5;middle phalanx of fifth digit -http://purl.obolibrary.org/obo/UBERON_0014491;middle phalanx of digit 5;middle phalanx of little digit -http://purl.obolibrary.org/obo/UBERON_0014501;proximal phalanx of digit 1;digit I P1 -http://purl.obolibrary.org/obo/UBERON_0014501;proximal phalanx of digit 1;digit I-1 -http://purl.obolibrary.org/obo/UBERON_0014501;proximal phalanx of digit 1;first proximal phalanx of autopod -http://purl.obolibrary.org/obo/UBERON_0014501;proximal phalanx of digit 1;proximal phalanx of digit I -http://purl.obolibrary.org/obo/UBERON_0014501;proximal phalanx of digit 1;proximal phalanx of first digit of autopod -http://purl.obolibrary.org/obo/UBERON_0014502;proximal phalanx of digit 2;2nd digit of autopod proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0014502;proximal phalanx of digit 2;2nd digit proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0014502;proximal phalanx of digit 2;autopod digit 2 proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0014502;proximal phalanx of digit 2;digit II-1 -http://purl.obolibrary.org/obo/UBERON_0014502;proximal phalanx of digit 2;digit IU P1 -http://purl.obolibrary.org/obo/UBERON_0014502;proximal phalanx of digit 2;proximal phalanx of 2nd digit -http://purl.obolibrary.org/obo/UBERON_0014502;proximal phalanx of digit 2;proximal phalanx of 2nd digit of autopod -http://purl.obolibrary.org/obo/UBERON_0014502;proximal phalanx of digit 2;proximal phalanx of digit II -http://purl.obolibrary.org/obo/UBERON_0014502;proximal phalanx of digit 2;proximal phalanx of index digit -http://purl.obolibrary.org/obo/UBERON_0014502;proximal phalanx of digit 2;proximal phalanx of second digit -http://purl.obolibrary.org/obo/UBERON_0014502;proximal phalanx of digit 2;proximal phalanx of second digit of autopod -http://purl.obolibrary.org/obo/UBERON_0014502;proximal phalanx of digit 2;second digit proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0014502;proximal phalanx of digit 2;second proximal phalanx of autopod -http://purl.obolibrary.org/obo/UBERON_0014503;proximal phalanx of digit 3;3rd digit of autopod proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0014503;proximal phalanx of digit 3;3rd digit proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0014503;proximal phalanx of digit 3;autopod digit 3 proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0014503;proximal phalanx of digit 3;digit III P1 -http://purl.obolibrary.org/obo/UBERON_0014503;proximal phalanx of digit 3;digit III-1 -http://purl.obolibrary.org/obo/UBERON_0014503;proximal phalanx of digit 3;proximal phalanx of 3rd digit -http://purl.obolibrary.org/obo/UBERON_0014503;proximal phalanx of digit 3;proximal phalanx of 3rd digit of autopod -http://purl.obolibrary.org/obo/UBERON_0014503;proximal phalanx of digit 3;proximal phalanx of digit III -http://purl.obolibrary.org/obo/UBERON_0014503;proximal phalanx of digit 3;proximal phalanx of middle digit -http://purl.obolibrary.org/obo/UBERON_0014503;proximal phalanx of digit 3;proximal phalanx of third digit -http://purl.obolibrary.org/obo/UBERON_0014503;proximal phalanx of digit 3;proximal phalanx of third digit of autopod -http://purl.obolibrary.org/obo/UBERON_0014503;proximal phalanx of digit 3;third digit proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0014503;proximal phalanx of digit 3;third proximal phalanx of autopod -http://purl.obolibrary.org/obo/UBERON_0014504;proximal phalanx of digit 4;4th digit of autopod proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0014504;proximal phalanx of digit 4;4th digit proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0014504;proximal phalanx of digit 4;autopod digit 4 proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0014504;proximal phalanx of digit 4;digit IV P1 -http://purl.obolibrary.org/obo/UBERON_0014504;proximal phalanx of digit 4;digit IV-1 -http://purl.obolibrary.org/obo/UBERON_0014504;proximal phalanx of digit 4;fourth digit proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0014504;proximal phalanx of digit 4;fourth proximal phalanx of autopod -http://purl.obolibrary.org/obo/UBERON_0014504;proximal phalanx of digit 4;proximal phalanx of 4th digit -http://purl.obolibrary.org/obo/UBERON_0014504;proximal phalanx of digit 4;proximal phalanx of 4th digit of autopod -http://purl.obolibrary.org/obo/UBERON_0014504;proximal phalanx of digit 4;proximal phalanx of digit IV -http://purl.obolibrary.org/obo/UBERON_0014504;proximal phalanx of digit 4;proximal phalanx of fourth digit -http://purl.obolibrary.org/obo/UBERON_0014504;proximal phalanx of digit 4;proximal phalanx of fourth digit of autopod -http://purl.obolibrary.org/obo/UBERON_0014504;proximal phalanx of digit 4;proximal phalanx of ring digit -http://purl.obolibrary.org/obo/UBERON_0014505;proximal phalanx of digit 5;5th digit of autopod proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0014505;proximal phalanx of digit 5;5th digit proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0014505;proximal phalanx of digit 5;autopod digit 5 proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0014505;proximal phalanx of digit 5;digit V P1 -http://purl.obolibrary.org/obo/UBERON_0014505;proximal phalanx of digit 5;digit V-1 -http://purl.obolibrary.org/obo/UBERON_0014505;proximal phalanx of digit 5;fifth digit proximal phalanx -http://purl.obolibrary.org/obo/UBERON_0014505;proximal phalanx of digit 5;fifth proximal phalanx of autopod -http://purl.obolibrary.org/obo/UBERON_0014505;proximal phalanx of digit 5;proximal phalanx of 5th digit -http://purl.obolibrary.org/obo/UBERON_0014505;proximal phalanx of digit 5;proximal phalanx of 5th digit of autopod -http://purl.obolibrary.org/obo/UBERON_0014505;proximal phalanx of digit 5;proximal phalanx of digit V -http://purl.obolibrary.org/obo/UBERON_0014505;proximal phalanx of digit 5;proximal phalanx of fifth digit -http://purl.obolibrary.org/obo/UBERON_0014505;proximal phalanx of digit 5;proximal phalanx of fifth digit of autopod -http://purl.obolibrary.org/obo/UBERON_0014505;proximal phalanx of digit 5;proximal phalanx of little digit -http://purl.obolibrary.org/obo/UBERON_0014506;distal interphalangeal joint of digit 3;distal interphalangeal joint of digit III -http://purl.obolibrary.org/obo/UBERON_0014507;distal interphalangeal joint of pedal digit 3;distal interphalangeal joint of pedal digit III -http://purl.obolibrary.org/obo/UBERON_0014507;distal interphalangeal joint of pedal digit 3;distal interphalangeal joint of third digit of foot -http://purl.obolibrary.org/obo/UBERON_0014507;distal interphalangeal joint of pedal digit 3;distal interphalangeal joint of third toe -http://purl.obolibrary.org/obo/UBERON_0014508;distal interphalangeal joint of manual digit 3;distal interphalangeal joint of manual digit III -http://purl.obolibrary.org/obo/UBERON_0014508;distal interphalangeal joint of manual digit 3;distal interphalangeal joint of middle finger -http://purl.obolibrary.org/obo/UBERON_0014509;distal sesamoid impar ligament;DSIL -http://purl.obolibrary.org/obo/UBERON_0014509;distal sesamoid impar ligament;distal sesamoidean impar ligament -http://purl.obolibrary.org/obo/UBERON_0014509;distal sesamoid impar ligament;impar ligament of distal equine limb -http://purl.obolibrary.org/obo/UBERON_0014510;lamina of omasum;omasal lamina -http://purl.obolibrary.org/obo/UBERON_0014510;lamina of omasum;omasal laminae -http://purl.obolibrary.org/obo/UBERON_0014521;anterodorsal nucleus of medial geniculate body;anterodorsal nucleus of medial geniculate complex -http://purl.obolibrary.org/obo/UBERON_0014522;dorsolateral oculomotor nucleus;dorsolateral nucleus of oculomotor nuclear complex -http://purl.obolibrary.org/obo/UBERON_0014522;dorsolateral oculomotor nucleus;nucleus dorsalis nervi oculomotorii -http://purl.obolibrary.org/obo/UBERON_0014522;dorsolateral oculomotor nucleus;oculomotor nerve dorsolateral nucleus -http://purl.obolibrary.org/obo/UBERON_0014523;oculomotor division of oculomotor nuclear complex; -http://purl.obolibrary.org/obo/UBERON_0014524;electromotor division of oculomotor nuclear complex; -http://purl.obolibrary.org/obo/UBERON_0014525;limb of internal capsule of telencephalon;internal capsule subdivision -http://purl.obolibrary.org/obo/UBERON_0014525;limb of internal capsule of telencephalon;limb of internal capsule -http://purl.obolibrary.org/obo/UBERON_0014525;limb of internal capsule of telencephalon;subdivision of internal capsule -http://purl.obolibrary.org/obo/UBERON_0014526;anterior limb of internal capsule;capsula interna, pars anterior -http://purl.obolibrary.org/obo/UBERON_0014526;anterior limb of internal capsule;crus anterius capsulae internae -http://purl.obolibrary.org/obo/UBERON_0014527;posterior limb of internal capsule;capsula interna, pars posterior -http://purl.obolibrary.org/obo/UBERON_0014527;posterior limb of internal capsule;crus posterius capsulae internae -http://purl.obolibrary.org/obo/UBERON_0014528;extreme capsule; -http://purl.obolibrary.org/obo/UBERON_0014529;lenticular fasciculus;dorsal division of ansa lenticularis -http://purl.obolibrary.org/obo/UBERON_0014529;lenticular fasciculus;fasciculus lenticularis -http://purl.obolibrary.org/obo/UBERON_0014529;lenticular fasciculus;fasciculus lenticularis [h2] -http://purl.obolibrary.org/obo/UBERON_0014529;lenticular fasciculus;forel's field h2 -http://purl.obolibrary.org/obo/UBERON_0014529;lenticular fasciculus;lenticular fasciculus -http://purl.obolibrary.org/obo/UBERON_0014529;lenticular fasciculus;lenticular fasciculus [h2] -http://purl.obolibrary.org/obo/UBERON_0014529;lenticular fasciculus;lenticular fasciculus of diencephalon -http://purl.obolibrary.org/obo/UBERON_0014529;lenticular fasciculus;lenticular fasciculus of telencephalon -http://purl.obolibrary.org/obo/UBERON_0014529;lenticular fasciculus;tegmental area h2 -http://purl.obolibrary.org/obo/UBERON_0014530;white matter lamina of neuraxis; -http://purl.obolibrary.org/obo/UBERON_0014531;white matter lamina of diencephalon; -http://purl.obolibrary.org/obo/UBERON_0014532;white matter lamina of cerebral hemisphere; -http://purl.obolibrary.org/obo/UBERON_0014533;medullary lamina of thalamus; -http://purl.obolibrary.org/obo/UBERON_0014534;external medullary lamina of thalamus;external medullary lamina -http://purl.obolibrary.org/obo/UBERON_0014534;external medullary lamina of thalamus;lamella medullaris externa -http://purl.obolibrary.org/obo/UBERON_0014534;external medullary lamina of thalamus;lamina medullaris externa -http://purl.obolibrary.org/obo/UBERON_0014534;external medullary lamina of thalamus;lamina medullaris externa thalami -http://purl.obolibrary.org/obo/UBERON_0014534;external medullary lamina of thalamus;lamina medullaris lateralis thalami -http://purl.obolibrary.org/obo/UBERON_0014534;external medullary lamina of thalamus;lamina medullaris thalami externa -http://purl.obolibrary.org/obo/UBERON_0014537;periamygdaloid cortex;periamygdaloid cortex -http://purl.obolibrary.org/obo/UBERON_0014538;subdivision of spinal cord central canal;regional part of spinal cord central canal -http://purl.obolibrary.org/obo/UBERON_0014539;precommissural fornix of forebrain;fornix precommissuralis -http://purl.obolibrary.org/obo/UBERON_0014539;precommissural fornix of forebrain;precommissural fornix -http://purl.obolibrary.org/obo/UBERON_0014540;white matter lamina of cerebellum;lamina alba of cerebellar cortex -http://purl.obolibrary.org/obo/UBERON_0014540;white matter lamina of cerebellum;laminae albae of cerebellar cortex -http://purl.obolibrary.org/obo/UBERON_0014540;white matter lamina of cerebellum;white lamina of cerebellum -http://purl.obolibrary.org/obo/UBERON_0014540;white matter lamina of cerebellum;white laminae of cerebellum -http://purl.obolibrary.org/obo/UBERON_0014541;thoracic division of spinal cord central canal;thoracic spinal cord central canal -http://purl.obolibrary.org/obo/UBERON_0014542;cervical division of cord spinal central canal;cervical spinal cord central canal -http://purl.obolibrary.org/obo/UBERON_0014543;lumbar division of spinal cord central canal;lumbar spinal cord central canal -http://purl.obolibrary.org/obo/UBERON_0014544;frontomarginal sulcus;frontomarginal sulcus -http://purl.obolibrary.org/obo/UBERON_0014547;sacral division of spinal cord central canal;sacral spinal cord central canal -http://purl.obolibrary.org/obo/UBERON_0014548;pyramidal layer of CA1;CA1 part of stratum pyramidale hippocampi -http://purl.obolibrary.org/obo/UBERON_0014548;pyramidal layer of CA1;CA1 pyramidal cell layer -http://purl.obolibrary.org/obo/UBERON_0014548;pyramidal layer of CA1;CA1 stratum pyramidale -http://purl.obolibrary.org/obo/UBERON_0014548;pyramidal layer of CA1;CA1 stratum pyramidale hippocampi -http://purl.obolibrary.org/obo/UBERON_0014548;pyramidal layer of CA1;field CA1, pyramidal layer -http://purl.obolibrary.org/obo/UBERON_0014548;pyramidal layer of CA1;stratum pyramidale of CA1 -http://purl.obolibrary.org/obo/UBERON_0014548;pyramidal layer of CA1;stratum pyramidale of the CA1 field -http://purl.obolibrary.org/obo/UBERON_0014549;pyramidal layer of CA2;CA2 part of stratum pyramidale hippocampi -http://purl.obolibrary.org/obo/UBERON_0014549;pyramidal layer of CA2;CA2 stratum pyramidale hippocampi -http://purl.obolibrary.org/obo/UBERON_0014549;pyramidal layer of CA2;field CA2, pyramidal layer -http://purl.obolibrary.org/obo/UBERON_0014549;pyramidal layer of CA2;stratum pyramidale of CA2 -http://purl.obolibrary.org/obo/UBERON_0014549;pyramidal layer of CA2;stratum pyramidale of the CA2 field -http://purl.obolibrary.org/obo/UBERON_0014550;pyramidal layer of CA3;CA3 part of stratum pyramidale hippocampi -http://purl.obolibrary.org/obo/UBERON_0014550;pyramidal layer of CA3;CA3 stratum pyramidale hippocampi -http://purl.obolibrary.org/obo/UBERON_0014550;pyramidal layer of CA3;field CA3, pyramidal layer -http://purl.obolibrary.org/obo/UBERON_0014550;pyramidal layer of CA3;stratum pyramidale of CA3 -http://purl.obolibrary.org/obo/UBERON_0014550;pyramidal layer of CA3;stratum pyramidale of the CA3 field -http://purl.obolibrary.org/obo/UBERON_0014551;CA2 stratum oriens;CA2 part of stratum oriens -http://purl.obolibrary.org/obo/UBERON_0014551;CA2 stratum oriens;CA2 stratum oriens -http://purl.obolibrary.org/obo/UBERON_0014551;CA2 stratum oriens;oriens layer of CA2 field -http://purl.obolibrary.org/obo/UBERON_0014551;CA2 stratum oriens;stratum oriens of the CA2 field -http://purl.obolibrary.org/obo/UBERON_0014552;CA1 stratum oriens;CA1 part of stratum oriens -http://purl.obolibrary.org/obo/UBERON_0014552;CA1 stratum oriens;CA1 stratum oriens -http://purl.obolibrary.org/obo/UBERON_0014552;CA1 stratum oriens;oriens layer of CA1 field -http://purl.obolibrary.org/obo/UBERON_0014552;CA1 stratum oriens;stratum oriens of the CA1 field -http://purl.obolibrary.org/obo/UBERON_0014553;CA3 stratum oriens;CA3 part of stratum oriens -http://purl.obolibrary.org/obo/UBERON_0014553;CA3 stratum oriens;CA3 stratum oriens -http://purl.obolibrary.org/obo/UBERON_0014553;CA3 stratum oriens;oriens layer of CA3 field -http://purl.obolibrary.org/obo/UBERON_0014553;CA3 stratum oriens;stratum oriens of the CA3 field -http://purl.obolibrary.org/obo/UBERON_0014554;CA1 stratum radiatum;CA1 part of stratum radiatum -http://purl.obolibrary.org/obo/UBERON_0014554;CA1 stratum radiatum;CA1 stratum radiatum -http://purl.obolibrary.org/obo/UBERON_0014554;CA1 stratum radiatum;radiate layer of CA1 field -http://purl.obolibrary.org/obo/UBERON_0014554;CA1 stratum radiatum;stratum radiatum of the CA1 field -http://purl.obolibrary.org/obo/UBERON_0014555;CA2 stratum radiatum;CA2 part of stratum radiatum -http://purl.obolibrary.org/obo/UBERON_0014555;CA2 stratum radiatum;CA2 stratum radiatum -http://purl.obolibrary.org/obo/UBERON_0014555;CA2 stratum radiatum;radiate layer of CA2 field -http://purl.obolibrary.org/obo/UBERON_0014555;CA2 stratum radiatum;stratum radiatum of the CA2 field -http://purl.obolibrary.org/obo/UBERON_0014556;CA3 stratum radiatum;CA3 part of stratum radiatum -http://purl.obolibrary.org/obo/UBERON_0014556;CA3 stratum radiatum;CA3 stratum radiatum -http://purl.obolibrary.org/obo/UBERON_0014556;CA3 stratum radiatum;radiate layer of CA3 field -http://purl.obolibrary.org/obo/UBERON_0014556;CA3 stratum radiatum;stratum radiatum of the CA3 field -http://purl.obolibrary.org/obo/UBERON_0014557;CA1 stratum lacunosum moleculare;CA1 part of stratum lacunosum moleculare -http://purl.obolibrary.org/obo/UBERON_0014557;CA1 stratum lacunosum moleculare;CA1 stratum lacunosum moleculare -http://purl.obolibrary.org/obo/UBERON_0014557;CA1 stratum lacunosum moleculare;lacunar-molecular layer of CA1 field -http://purl.obolibrary.org/obo/UBERON_0014557;CA1 stratum lacunosum moleculare;stratum lacunosum moleculare of the CA1 field -http://purl.obolibrary.org/obo/UBERON_0014558;CA2 stratum lacunosum moleculare;CA2 part of stratum lacunosum moleculare -http://purl.obolibrary.org/obo/UBERON_0014558;CA2 stratum lacunosum moleculare;CA2 stratum lacunosum moleculare -http://purl.obolibrary.org/obo/UBERON_0014558;CA2 stratum lacunosum moleculare;lacunar-molecular layer of CA2 field -http://purl.obolibrary.org/obo/UBERON_0014558;CA2 stratum lacunosum moleculare;stratum lacunosum moleculare of the CA2 field -http://purl.obolibrary.org/obo/UBERON_0014559;CA3 stratum lacunosum moleculare;CA3 part of stratum lacunosum moleculare -http://purl.obolibrary.org/obo/UBERON_0014559;CA3 stratum lacunosum moleculare;CA3 stratum lacunosum moleculare -http://purl.obolibrary.org/obo/UBERON_0014559;CA3 stratum lacunosum moleculare;lacunar-molecular layer of CA3 field -http://purl.obolibrary.org/obo/UBERON_0014559;CA3 stratum lacunosum moleculare;stratum lacunosum moleculare of the CA3 field -http://purl.obolibrary.org/obo/UBERON_0014560;CA3 stratum lucidum;CA3 stratum lucidum -http://purl.obolibrary.org/obo/UBERON_0014560;CA3 stratum lucidum;stratum lucidum of the CA3 field -http://purl.obolibrary.org/obo/UBERON_0014567;layer of hippocampal field;hippocampal field layer -http://purl.obolibrary.org/obo/UBERON_0014568;dorsal tegmental nucleus pars dorsalis;dorsal tegmental nucleus pars dorsalis -http://purl.obolibrary.org/obo/UBERON_0014569;dorsal tegmental nucleus pars ventralis;dorsal tegmental nucleus pars ventralis -http://purl.obolibrary.org/obo/UBERON_0014570;CA1 alveus;alveus of the CA1 field -http://purl.obolibrary.org/obo/UBERON_0014571;CA3 alveus;alveus of the CA3 field -http://purl.obolibrary.org/obo/UBERON_0014589;anterior nucleus of hypothalamus anterior part;anterior nucleus of hypothalamus anterior part -http://purl.obolibrary.org/obo/UBERON_0014590;anterior nucleus of hypothalamus central part;anterior nucleus of hypothalamus central part -http://purl.obolibrary.org/obo/UBERON_0014591;anterior nucleus of hypothalamus posterior part;anterior nucleus of hypothalamus posterior part -http://purl.obolibrary.org/obo/UBERON_0014592;anterior nucleus of hypothalamus dorsal part;anterior nucleus of hypothalamus dorsal part -http://purl.obolibrary.org/obo/UBERON_0014593;tuberomammillary nucleus dorsal part;tuberomammillary nucleus dorsal part -http://purl.obolibrary.org/obo/UBERON_0014594;tuberomammillary nucleus ventral part;tuberomammillary nucleus ventral part -http://purl.obolibrary.org/obo/UBERON_0014595;paraventricular nucleus of the hypothalamus descending division - medial parvocellular part, ventral zone;paraventricular nucleus of the hypothalamus descending division - medial parvicellular part, ventral zone -http://purl.obolibrary.org/obo/UBERON_0014596;paraventricular nucleus of the hypothalamus descending division - dorsal parvocellular part;paraventricular nucleus of the hypothalamus descending division - dorsal parvicellular part -http://purl.obolibrary.org/obo/UBERON_0014597;paraventricular nucleus of the hypothalamus descending division - lateral parvocellular part;paraventricular nucleus of the hypothalamus descending division - lateral parvicellular part -http://purl.obolibrary.org/obo/UBERON_0014598;paraventricular nucleus of the hypothalamus descending division - forniceal part;paraventricular nucleus of the hypothalamus descending division - forniceal part -http://purl.obolibrary.org/obo/UBERON_0014599;paraventricular nucleus of the hypothalamus magnocellular division - anterior magnocellular part;paraventricular nucleus of the hypothalamus magnocellular division - anterior magnocellular part -http://purl.obolibrary.org/obo/UBERON_0014600;paraventricular nucleus of the hypothalamus magnocellular division - medial magnocellular part;paraventricular nucleus of the hypothalamus magnocellular division - medial magnocellular part -http://purl.obolibrary.org/obo/UBERON_0014601;paraventricular nucleus of the hypothalamus magnocellular division - posterior magnocellular part;paraventricular nucleus of the hypothalamus magnocellular division - posterior magnocellular part -http://purl.obolibrary.org/obo/UBERON_0014602;paraventricular nucleus of the hypothalamus descending division;paraventricular nucleus of the hypothalamus descending division -http://purl.obolibrary.org/obo/UBERON_0014603;paraventricular nucleus of the hypothalamus magnocellular division;paraventricular nucleus of the hypothalamus magnocellular division -http://purl.obolibrary.org/obo/UBERON_0014604;paraventricular nucleus of the hypothalamus parvocellular division;paraventricular nucleus of the hypothalamus parvicellular division -http://purl.obolibrary.org/obo/UBERON_0014605;fundus striati;fundus striati -http://purl.obolibrary.org/obo/UBERON_0014607;thoracic spinal cord lateral horn;thoracic spinal cord lateral horn -http://purl.obolibrary.org/obo/UBERON_0014608;inferior occipital gyrus;inferior occipital gyrus -http://purl.obolibrary.org/obo/UBERON_0014609;thoracic spinal cord dorsal horn;thoracic spinal cord dorsal horn -http://purl.obolibrary.org/obo/UBERON_0014610;thoracic spinal cord ventral horn;thoracic spinal cord ventral horn -http://purl.obolibrary.org/obo/UBERON_0014611;apex of thoracic spinal cord dorsal horn;apex of thoracic spinal cord dorsal horn -http://purl.obolibrary.org/obo/UBERON_0014612;substantia gelatinosa of thoracic spinal cord dorsal horn;substantia gelatinosa of thoracic spinal cord dorsal horn -http://purl.obolibrary.org/obo/UBERON_0014613;cervical spinal cord gray matter;cervical spinal cord gray matter -http://purl.obolibrary.org/obo/UBERON_0014614;cervical spinal cord white matter;cervical spinal cord white matter -http://purl.obolibrary.org/obo/UBERON_0014615;accessory nerve root;accessory nerve root -http://purl.obolibrary.org/obo/UBERON_0014615;accessory nerve root;root of accessory nerve -http://purl.obolibrary.org/obo/UBERON_0014616;dorsal nerve root of thoracic spinal cord;dorsal nerve root of thoracic spinal cord -http://purl.obolibrary.org/obo/UBERON_0014617;Ventral nerve root of thoracic spinal cord;anterior nerve root of thoracic spinal cord -http://purl.obolibrary.org/obo/UBERON_0014617;Ventral nerve root of thoracic spinal cord;ventral nerve root of thoracic spinal cord -http://purl.obolibrary.org/obo/UBERON_0014617;ventral nerve root of thoracic spinal cord;anterior nerve root of thoracic spinal cord -http://purl.obolibrary.org/obo/UBERON_0014617;ventral nerve root of thoracic spinal cord;ventral nerve root of thoracic spinal cord -http://purl.obolibrary.org/obo/UBERON_0014618;middle frontal sulcus;middle frontal sulcus -http://purl.obolibrary.org/obo/UBERON_0014619;cervical spinal cord lateral horn;cervical spinal cord lateral horn -http://purl.obolibrary.org/obo/UBERON_0014620;cervical spinal cord dorsal horn;cervical spinal cord dorsal horn -http://purl.obolibrary.org/obo/UBERON_0014621;cervical spinal cord ventral horn;cervical spinal cord ventral horn -http://purl.obolibrary.org/obo/UBERON_0014622;apex of cervical spinal cord dorsal horn;apex of cervical spinal cord dorsal horn -http://purl.obolibrary.org/obo/UBERON_0014623;substantia gelatinosa of cervical spinal cord dorsal horn;substantia gelatinosa of cervical spinal cord dorsal horn -http://purl.obolibrary.org/obo/UBERON_0014624;basis modioli;base of modiolus cochleae -http://purl.obolibrary.org/obo/UBERON_0014624;basis modioli;basis cochleae -http://purl.obolibrary.org/obo/UBERON_0014624;basis modioli;basis modioli -http://purl.obolibrary.org/obo/UBERON_0014626;base of cochlear canal;base of the cochlear canal -http://purl.obolibrary.org/obo/UBERON_0014628;vestibular fissure of the cochlear canal;vestibular fissure of the cochlear canal -http://purl.obolibrary.org/obo/UBERON_0014629;terminal part of the cochlear canal;terminal part of the cochlear canal -http://purl.obolibrary.org/obo/UBERON_0014630;ventral gray commissure of spinal cord;anterior grey commissure of spinal cord -http://purl.obolibrary.org/obo/UBERON_0014630;ventral gray commissure of spinal cord;commissura grisea anterior medullae spinalis -http://purl.obolibrary.org/obo/UBERON_0014630;ventral gray commissure of spinal cord;spinal cord anterior gray commissure -http://purl.obolibrary.org/obo/UBERON_0014630;ventral gray commissure of spinal cord;ventral grey commissure of spinal cord -http://purl.obolibrary.org/obo/UBERON_0014631;dorsal gray commissure of spinal cord;commissura grisea posterior medullae spinalis -http://purl.obolibrary.org/obo/UBERON_0014631;dorsal gray commissure of spinal cord;dorsal gray commissure -http://purl.obolibrary.org/obo/UBERON_0014631;dorsal gray commissure of spinal cord;dorsal grey commissure of spinal cord -http://purl.obolibrary.org/obo/UBERON_0014631;dorsal gray commissure of spinal cord;posterior grey commissure of spinal cord -http://purl.obolibrary.org/obo/UBERON_0014631;dorsal gray commissure of spinal cord;spinal cord posterior gray commissure -http://purl.obolibrary.org/obo/UBERON_0014632;apex of lumbar spinal cord dorsal horn;apex of lumbar spinal cord dorsal horn -http://purl.obolibrary.org/obo/UBERON_0014633;substantia gelatinosa of lumbar spinal cord dorsal horn;substantia gelatinosa of lumbar spinal cord dorsal horn -http://purl.obolibrary.org/obo/UBERON_0014634;ventral nerve root of cervical spinal cord;ventral nerve root of cervical spinal cord -http://purl.obolibrary.org/obo/UBERON_0014635;dorsal nerve root of cervical spinal cord;dorsal nerve root of cervical spinal cord -http://purl.obolibrary.org/obo/UBERON_0014636;thoracic spinal cord gray matter;thoracic spinal cord gray matter -http://purl.obolibrary.org/obo/UBERON_0014637;thoracic spinal cord white matter;thoracic spinal cord white matter -http://purl.obolibrary.org/obo/UBERON_0014638;lumbar spinal cord dorsal horn;lumbar spinal cord dorsal horn -http://purl.obolibrary.org/obo/UBERON_0014639;frontal sulcus;frontal lobe sulci -http://purl.obolibrary.org/obo/UBERON_0014639;frontal sulcus;frontal lobe sulcus -http://purl.obolibrary.org/obo/UBERON_0014640;occipital gyrus; -http://purl.obolibrary.org/obo/UBERON_0014641;terminal nerve root;cranial nerve 0 root -http://purl.obolibrary.org/obo/UBERON_0014641;terminal nerve root;root of terminal nerve -http://purl.obolibrary.org/obo/UBERON_0014641;terminal nerve root;terminal nerve root -http://purl.obolibrary.org/obo/UBERON_0014642;vestibulocerebellum;archicerebellum -http://purl.obolibrary.org/obo/UBERON_0014643;spinocerebellum;paleocerebellum -http://purl.obolibrary.org/obo/UBERON_0014644;cerebrocerebellum;cerebellum lateral hemisphere -http://purl.obolibrary.org/obo/UBERON_0014644;cerebrocerebellum;cerebellum lateral zone -http://purl.obolibrary.org/obo/UBERON_0014644;cerebrocerebellum;neocerebellum -http://purl.obolibrary.org/obo/UBERON_0014644;cerebrocerebellum;pontocerebellum -http://purl.obolibrary.org/obo/UBERON_0014645;nucleus H of ventral tegmentum; -http://purl.obolibrary.org/obo/UBERON_0014646;nucleus K of ventral tegmentum; -http://purl.obolibrary.org/obo/UBERON_0014647;hemisphere part of cerebellar anterior lobe;hemisphere of anterior lobe -http://purl.obolibrary.org/obo/UBERON_0014647;hemisphere part of cerebellar anterior lobe;hemisphere of anterior lobe of cerebellum -http://purl.obolibrary.org/obo/UBERON_0014647;hemisphere part of cerebellar anterior lobe;hemispherium lobus anterior -http://purl.obolibrary.org/obo/UBERON_0014648;hemisphere part of cerebellar posterior lobe;hemisphere of posterior lobe -http://purl.obolibrary.org/obo/UBERON_0014648;hemisphere part of cerebellar posterior lobe;hemisphere of posterior lobe of cerebellum -http://purl.obolibrary.org/obo/UBERON_0014648;hemisphere part of cerebellar posterior lobe;hemispherium lobus posterior -http://purl.obolibrary.org/obo/UBERON_0014649;white matter of medulla oblongata;substantia alba medullae oblongatae -http://purl.obolibrary.org/obo/UBERON_0014649;white matter of medulla oblongata;white matter of medulla -http://purl.obolibrary.org/obo/UBERON_0014649;white matter of medulla oblongata;white substance of medulla -http://purl.obolibrary.org/obo/UBERON_0014650;dorsal hypothalamic nucleus;dorsal nucleus of hypothalamus -http://purl.obolibrary.org/obo/UBERON_0014663;nucleus recessus lateralis; -http://purl.obolibrary.org/obo/UBERON_0014664;nucleus recessus posterioris; -http://purl.obolibrary.org/obo/UBERON_0014665;nucleus preopticus; -http://purl.obolibrary.org/obo/UBERON_0014666;nucleus recessus preopticus; -http://purl.obolibrary.org/obo/UBERON_0014667;periventricular nucleus of hypothalamus; -http://purl.obolibrary.org/obo/UBERON_0014668;distal interphalangeal joint of manual digit 2;distal interphalangeal joint of index finger -http://purl.obolibrary.org/obo/UBERON_0014668;distal interphalangeal joint of manual digit 2;distal interphalangeal joint of manual digit II -http://purl.obolibrary.org/obo/UBERON_0014670;distal interphalangeal joint of manual digit 4;distal interphalangeal joint of manual digit IV -http://purl.obolibrary.org/obo/UBERON_0014670;distal interphalangeal joint of manual digit 4;distal interphalangeal joint of ring finger -http://purl.obolibrary.org/obo/UBERON_0014671;distal interphalangeal joint of manural digit 5;distal interphalangeal joint of little finger -http://purl.obolibrary.org/obo/UBERON_0014671;distal interphalangeal joint of manural digit 5;distal interphalangeal joint of manural digit V -http://purl.obolibrary.org/obo/UBERON_0014672;distal interphalangeal joint of pedal digit 2;distal interphalangeal joint of pedal digit II -http://purl.obolibrary.org/obo/UBERON_0014672;distal interphalangeal joint of pedal digit 2;distal interphalangeal joint of second digit of foot -http://purl.obolibrary.org/obo/UBERON_0014672;distal interphalangeal joint of pedal digit 2;distal interphalangeal joint of second toe -http://purl.obolibrary.org/obo/UBERON_0014674;distal interphalangeal joint of pedal digit 4;distal interphalangeal joint of fourth digit of foot -http://purl.obolibrary.org/obo/UBERON_0014674;distal interphalangeal joint of pedal digit 4;distal interphalangeal joint of fourth toe -http://purl.obolibrary.org/obo/UBERON_0014674;distal interphalangeal joint of pedal digit 4;distal interphalangeal joint of pedal digit IV -http://purl.obolibrary.org/obo/UBERON_0014675;distal interphalangeal joint of pedal digit 5;distal interphalangeal joint of fifth digit of foot -http://purl.obolibrary.org/obo/UBERON_0014675;distal interphalangeal joint of pedal digit 5;distal interphalangeal joint of fifth toe -http://purl.obolibrary.org/obo/UBERON_0014675;distal interphalangeal joint of pedal digit 5;distal interphalangeal joint of little toe -http://purl.obolibrary.org/obo/UBERON_0014675;distal interphalangeal joint of pedal digit 5;distal interphalangeal joint of pedal digit V -http://purl.obolibrary.org/obo/UBERON_0014677;distal interphalangeal joint of digit 2;distal interphalangeal joint of digit II -http://purl.obolibrary.org/obo/UBERON_0014679;distal interphalangeal joint of digit 4;distal interphalangeal joint of digit IV -http://purl.obolibrary.org/obo/UBERON_0014680;distal interphalangeal joint of digit 5;distal interphalangeal joint of digit V -http://purl.obolibrary.org/obo/UBERON_0014682;tooth whorl;tooth spiral -http://purl.obolibrary.org/obo/UBERON_0014682;tooth whorl;whorl of teeth -http://purl.obolibrary.org/obo/UBERON_0014683;parasymphisial tooth whorl;parasymphisial tooth spiral -http://purl.obolibrary.org/obo/UBERON_0014683;parasymphisial tooth whorl;parasymphysical tooth spiral -http://purl.obolibrary.org/obo/UBERON_0014684;Helicoprion tooth whorl; -http://purl.obolibrary.org/obo/UBERON_0014685;pterygoid plexus;plexus venosus pterygoideus -http://purl.obolibrary.org/obo/UBERON_0014685;pterygoid plexus;pterygoid venous plexus -http://purl.obolibrary.org/obo/UBERON_0014686;angular vein; -http://purl.obolibrary.org/obo/UBERON_0014687;temporal sulcus;temporal lobe sulci -http://purl.obolibrary.org/obo/UBERON_0014687;temporal sulcus;temporal lobe sulcus -http://purl.obolibrary.org/obo/UBERON_0014689;middle temporal sulcus; -http://purl.obolibrary.org/obo/UBERON_0014690;left gastric vein;vena gastrica sinistra -http://purl.obolibrary.org/obo/UBERON_0014691;right gastric vein;vena gastrica dextra -http://purl.obolibrary.org/obo/UBERON_0014692;superficial epigastric vein; -http://purl.obolibrary.org/obo/UBERON_0014693;inferior alveolar artery; -http://purl.obolibrary.org/obo/UBERON_0014694;posterior auricular artery; -http://purl.obolibrary.org/obo/UBERON_0014695;deep auricular artery; -http://purl.obolibrary.org/obo/UBERON_0014696;anterior choroidal artery; -http://purl.obolibrary.org/obo/UBERON_0014697;posterior choroidal artery; -http://purl.obolibrary.org/obo/UBERON_0014698;lacrimal caruncle;caruncula lacrimalis -http://purl.obolibrary.org/obo/UBERON_0014699;extraembryonic venous system; -http://purl.obolibrary.org/obo/UBERON_0014701;extraembryonic vascular system; -http://purl.obolibrary.org/obo/UBERON_0014702;frontonasal process epithelium; -http://purl.obolibrary.org/obo/UBERON_0014703;anal membrane ectodermal component; -http://purl.obolibrary.org/obo/UBERON_0014704;pleuroperitoneal canal lumen;pleuro-peritoneal canal cavity -http://purl.obolibrary.org/obo/UBERON_0014705;median lingual swelling epithelium; -http://purl.obolibrary.org/obo/UBERON_0014706;primitive renal collecting duct system;metanephros primitive collecting ducts -http://purl.obolibrary.org/obo/UBERON_0014706;primitive renal collecting duct system;primitive collecting duct -http://purl.obolibrary.org/obo/UBERON_0014707;hyoplastron; -http://purl.obolibrary.org/obo/UBERON_0014708;costal plate of carapace; -http://purl.obolibrary.org/obo/UBERON_0014709;carapace primordium; -http://purl.obolibrary.org/obo/UBERON_0014710;carapacial ridge; -http://purl.obolibrary.org/obo/UBERON_0014711;carapacial ridge mesenchyme; -http://purl.obolibrary.org/obo/UBERON_0014712;carapacial ridge ectoderm; -http://purl.obolibrary.org/obo/UBERON_0014716;interlobular duct; -http://purl.obolibrary.org/obo/UBERON_0014717;mucous acinus;acinus of mucuous gland -http://purl.obolibrary.org/obo/UBERON_0014717;mucous acinus;mucus acinus -http://purl.obolibrary.org/obo/UBERON_0014719;intralobular duct; -http://purl.obolibrary.org/obo/UBERON_0014720;interlobar duct; -http://purl.obolibrary.org/obo/UBERON_0014725;intercalated duct; -http://purl.obolibrary.org/obo/UBERON_0014726;intercalated duct of pancreas;ductus intercalatus (pancreas) -http://purl.obolibrary.org/obo/UBERON_0014726;intercalated duct of pancreas;pancreatic ductule -http://purl.obolibrary.org/obo/UBERON_0014727;intercalated duct of salivary gland; -http://purl.obolibrary.org/obo/UBERON_0014729;striated duct of salivary gland; -http://purl.obolibrary.org/obo/UBERON_0014730;osteon;haversian system -http://purl.obolibrary.org/obo/UBERON_0014730;osteon;osteonum -http://purl.obolibrary.org/obo/UBERON_0014731;haversian canal; -http://purl.obolibrary.org/obo/UBERON_0014732;compound cell cluster organ; -http://purl.obolibrary.org/obo/UBERON_0014733;dorsal ventricular ridge of pallium;dorsal ventricular ridge -http://purl.obolibrary.org/obo/UBERON_0014734;allocortex; -http://purl.obolibrary.org/obo/UBERON_0014735;paleocortex;palaeocortex -http://purl.obolibrary.org/obo/UBERON_0014735;paleocortex;paleocortex (semicortex) -http://purl.obolibrary.org/obo/UBERON_0014736;periallocortex;periallocortex -http://purl.obolibrary.org/obo/UBERON_0014738;medial pallium;lateral zone of dorsal telencephalon -http://purl.obolibrary.org/obo/UBERON_0014738;medial pallium;medial zone of dorsal telencephalic area -http://purl.obolibrary.org/obo/UBERON_0014738;medial pallium;medial zone of dorsal telencephalon -http://purl.obolibrary.org/obo/UBERON_0014740;dorsal pallium;area dorsalis telencephali, zona dorsalis -http://purl.obolibrary.org/obo/UBERON_0014740;dorsal pallium;dorsal zone of dorsal telencephalic area -http://purl.obolibrary.org/obo/UBERON_0014740;dorsal pallium;dorsal zone of dorsal telencephalon -http://purl.obolibrary.org/obo/UBERON_0014741;lateral pallium;area dorsalis telencephali, zona lateralis -http://purl.obolibrary.org/obo/UBERON_0014741;lateral pallium;lateral zone of D -http://purl.obolibrary.org/obo/UBERON_0014741;lateral pallium;lateral zone of dorsal telencephalic area -http://purl.obolibrary.org/obo/UBERON_0014742;central nucleus of pallium; -http://purl.obolibrary.org/obo/UBERON_0014751;P1 area of pallium (Myxiniformes); -http://purl.obolibrary.org/obo/UBERON_0014752;P2 area of pallium (Myxiniformes); -http://purl.obolibrary.org/obo/UBERON_0014753;P3 area of pallium (Myxiniformes); -http://purl.obolibrary.org/obo/UBERON_0014754;P4 area of pallium (Myxiniformes); -http://purl.obolibrary.org/obo/UBERON_0014755;P5 area of pallium (Myxiniformes); -http://purl.obolibrary.org/obo/UBERON_0014756;Wulst; -http://purl.obolibrary.org/obo/UBERON_0014757;hyperpallium apicale; -http://purl.obolibrary.org/obo/UBERON_0014758;interstitial part of hyperpallium apicale; -http://purl.obolibrary.org/obo/UBERON_0014759;entopallium; -http://purl.obolibrary.org/obo/UBERON_0014760;gustatory nucleus; -http://purl.obolibrary.org/obo/UBERON_0014761;spinal trigeminal tract; -http://purl.obolibrary.org/obo/UBERON_0014762;fused metapodial bones 2-4;fused central metapodials -http://purl.obolibrary.org/obo/UBERON_0014762;fused metapodial bones 2-4;fused metapodials 2-4 -http://purl.obolibrary.org/obo/UBERON_0014763;fused metatarsal bones 2-4;fused central metatarsals -http://purl.obolibrary.org/obo/UBERON_0014763;fused metatarsal bones 2-4;fused metatarsals 2-4 -http://purl.obolibrary.org/obo/UBERON_0014764;anatomical line along groove;line delineating groove -http://purl.obolibrary.org/obo/UBERON_0014765;crus of diaphragm;crural diaphragm -http://purl.obolibrary.org/obo/UBERON_0014766;right crus of diaphragm;crus dextrum (Diaphragma) -http://purl.obolibrary.org/obo/UBERON_0014766;right crus of diaphragm;crus dextrum diaphragmatis -http://purl.obolibrary.org/obo/UBERON_0014766;right crus of diaphragm;external sphincter of esophagus -http://purl.obolibrary.org/obo/UBERON_0014766;right crus of diaphragm;right crus of diaphragm -http://purl.obolibrary.org/obo/UBERON_0014766;right crus of diaphragm;right crus of lumbar part of diaphragm -http://purl.obolibrary.org/obo/UBERON_0014767;left crus of diaphragm;crus sinistrum (Diaphragma) -http://purl.obolibrary.org/obo/UBERON_0014767;left crus of diaphragm;crus sinistrum diaphragmatis -http://purl.obolibrary.org/obo/UBERON_0014767;left crus of diaphragm;left crus of diaphragm -http://purl.obolibrary.org/obo/UBERON_0014767;left crus of diaphragm;left crus of lumbar part of diaphragm -http://purl.obolibrary.org/obo/UBERON_0014768;superior palpebral vein; -http://purl.obolibrary.org/obo/UBERON_0014769;palpebral vein; -http://purl.obolibrary.org/obo/UBERON_0014770;palpebral artery; -http://purl.obolibrary.org/obo/UBERON_0014772;lateral palpebral artery;lateral palpebral branch of ophthalmic artery -http://purl.obolibrary.org/obo/UBERON_0014773;medial palpebral artery;medial palpebral branch of ophthalmic artery -http://purl.obolibrary.org/obo/UBERON_0014775;prosomere;forebrain neuromere -http://purl.obolibrary.org/obo/UBERON_0014776;midbrain neuromere;mesomere of nervous system -http://purl.obolibrary.org/obo/UBERON_0014776;midbrain neuromere;neuromere of mesomere group -http://purl.obolibrary.org/obo/UBERON_0014777;spinal neuromere;spinal cord metameric segment -http://purl.obolibrary.org/obo/UBERON_0014777;spinal neuromere;spinal neuromeres -http://purl.obolibrary.org/obo/UBERON_0014778;cell group;group of cells -http://purl.obolibrary.org/obo/UBERON_0014779;liver reticuloendothelial system; -http://purl.obolibrary.org/obo/UBERON_0014780;palatine aponeurosis;aponeurosis of tensor veli palatini -http://purl.obolibrary.org/obo/UBERON_0014780;palatine aponeurosis;aponeurosis palatina -http://purl.obolibrary.org/obo/UBERON_0014781;stomodeal ectoderm; -http://purl.obolibrary.org/obo/UBERON_0014782;allantois of embryonic urinary system; -http://purl.obolibrary.org/obo/UBERON_0014783;cloacal muscle; -http://purl.obolibrary.org/obo/UBERON_0014784;transverse cloacal muscle;m. transversus cloacae -http://purl.obolibrary.org/obo/UBERON_0014784;transverse cloacal muscle;musculus transversus cloacae -http://purl.obolibrary.org/obo/UBERON_0014785;levator cloacae;m. retractor phalli caudalis -http://purl.obolibrary.org/obo/UBERON_0014785;levator cloacae;musculus levator cloacae -http://purl.obolibrary.org/obo/UBERON_0014785;levator cloacae;musculus retractor phalli caudalis -http://purl.obolibrary.org/obo/UBERON_0014786;extraembryonic umbilical vein;extraembryonic umbilical vein -http://purl.obolibrary.org/obo/UBERON_0014787;left extraembryonic umbilical vein;extraembryonic umbilical vein left -http://purl.obolibrary.org/obo/UBERON_0014788;right extraembryonic umbilical vein;extraembryonic umbilical vein right -http://purl.obolibrary.org/obo/UBERON_0014789;embryo portion of umbilical vein;embryonic umbilical vein -http://purl.obolibrary.org/obo/UBERON_0014790;lingual septum;septum of tongue -http://purl.obolibrary.org/obo/UBERON_0014791;musculature of forelimb stylopod; -http://purl.obolibrary.org/obo/UBERON_0014792;musculature of pelvic complex; -http://purl.obolibrary.org/obo/UBERON_0014793;musculature of pectoral complex; -http://purl.obolibrary.org/obo/UBERON_0014794;pectoral appendage muscle; -http://purl.obolibrary.org/obo/UBERON_0014795;pelvic appendage muscle; -http://purl.obolibrary.org/obo/UBERON_0014796;common tendinous ring;anulus of Zinn -http://purl.obolibrary.org/obo/UBERON_0014796;common tendinous ring;anulus tendineus communis -http://purl.obolibrary.org/obo/UBERON_0014796;common tendinous ring;common annular tendon -http://purl.obolibrary.org/obo/UBERON_0014796;common tendinous ring;common anular tendon -http://purl.obolibrary.org/obo/UBERON_0014797;hypobranchial group muscle; -http://purl.obolibrary.org/obo/UBERON_0014798;clavotrapezius muscle;clavotrapezius -http://purl.obolibrary.org/obo/UBERON_0014799;acromiotrapezius muscle;acromiotrapezius -http://purl.obolibrary.org/obo/UBERON_0014800;spinotrapezius muscle;spinotrapezius -http://purl.obolibrary.org/obo/UBERON_0014800;spinotrapezius muscle;thoracic trapezius -http://purl.obolibrary.org/obo/UBERON_0014800;spinotrapezius muscle;thoracic trapezius muscle -http://purl.obolibrary.org/obo/UBERON_0014801;nuchal line attachment site; -http://purl.obolibrary.org/obo/UBERON_0014802;highest nuchal line attachment site; -http://purl.obolibrary.org/obo/UBERON_0014803;superior nuchal line attachment site; -http://purl.obolibrary.org/obo/UBERON_0014804;median nuchal line attachment site; -http://purl.obolibrary.org/obo/UBERON_0014805;inferior nuchal line attachment site; -http://purl.obolibrary.org/obo/UBERON_0014835;serratus muscle; -http://purl.obolibrary.org/obo/UBERON_0014836;levator arcuum muscle;levator arcuum -http://purl.obolibrary.org/obo/UBERON_0014836;levator arcuum muscle;levatores arcuum -http://purl.obolibrary.org/obo/UBERON_0014837;pectoantebrachialis; -http://purl.obolibrary.org/obo/UBERON_0014838;xiphihumeralis; -http://purl.obolibrary.org/obo/UBERON_0014840;supracoracoideus muscle; -http://purl.obolibrary.org/obo/UBERON_0014842;puboischiofemoralis muscle; -http://purl.obolibrary.org/obo/UBERON_0014847;vastus intermedius; -http://purl.obolibrary.org/obo/UBERON_0014848;tendon of quadriceps femoris;common tendon of quadriceps femoris -http://purl.obolibrary.org/obo/UBERON_0014848;tendon of quadriceps femoris;quadriceps femoris tendon -http://purl.obolibrary.org/obo/UBERON_0014848;tendon of quadriceps femoris;quadriceps tendon -http://purl.obolibrary.org/obo/UBERON_0014849;hemotrichorial placental membrane;placenta hemotrichorial membrane -http://purl.obolibrary.org/obo/UBERON_0014850;hemomonochorial placental membrane;placenta hemomonochorial membrane -http://purl.obolibrary.org/obo/UBERON_0014851;chorda tendinea of left ventricle; -http://purl.obolibrary.org/obo/UBERON_0014852;chorda tendinea of right ventricle; -http://purl.obolibrary.org/obo/UBERON_0014853;commissural leaflet of mitral valve;commissural cusp of mitral valve -http://purl.obolibrary.org/obo/UBERON_0014854;anterior leaflet of mitral valve;anterior cusp of mitral valve -http://purl.obolibrary.org/obo/UBERON_0014854;anterior leaflet of mitral valve;anterior mitral leaflet -http://purl.obolibrary.org/obo/UBERON_0014854;anterior leaflet of mitral valve;anteromedial leaflet of mitral valve -http://purl.obolibrary.org/obo/UBERON_0014854;anterior leaflet of mitral valve;aortic leaflet of mitral valve -http://purl.obolibrary.org/obo/UBERON_0014854;anterior leaflet of mitral valve;aortic leaflet of the left-sided mitral valve -http://purl.obolibrary.org/obo/UBERON_0014854;anterior leaflet of mitral valve;cuspis anterior valvae atrioventricularis sinistri -http://purl.obolibrary.org/obo/UBERON_0014854;anterior leaflet of mitral valve;greater leaflet of mitral valve -http://purl.obolibrary.org/obo/UBERON_0014854;anterior leaflet of mitral valve;septal leaflet of mitral valve -http://purl.obolibrary.org/obo/UBERON_0014855;posterior leaflet of mitral valve;cuspis posterior (valva mitralis) -http://purl.obolibrary.org/obo/UBERON_0014855;posterior leaflet of mitral valve;cuspis posterior valvae atrioventricularis sinistri -http://purl.obolibrary.org/obo/UBERON_0014855;posterior leaflet of mitral valve;mural leaflet of mitral valve -http://purl.obolibrary.org/obo/UBERON_0014855;posterior leaflet of mitral valve;posterior cusp of mitral valve -http://purl.obolibrary.org/obo/UBERON_0014855;posterior leaflet of mitral valve;posterior mitral leaflet -http://purl.obolibrary.org/obo/UBERON_0014855;posterior leaflet of mitral valve;posterolateral leaflet of mitral valve -http://purl.obolibrary.org/obo/UBERON_0014855;posterior leaflet of mitral valve;smaller leaflet of mitral valve -http://purl.obolibrary.org/obo/UBERON_0014855;posterior leaflet of mitral valve;ventricular leaflet of mitral valve -http://purl.obolibrary.org/obo/UBERON_0014870;inferior orbital fissure; -http://purl.obolibrary.org/obo/UBERON_0014871;distal epiphysis of distal phalanx of pedal digit 1;distal end of distal phalanx of big toe -http://purl.obolibrary.org/obo/UBERON_0014871;distal epiphysis of distal phalanx of pedal digit 1;distal epiphysis of distal phalanx of big toe -http://purl.obolibrary.org/obo/UBERON_0014871;distal epiphysis of distal phalanx of pedal digit 1;distal epiphysis of distal phalanx of pedal digit I -http://purl.obolibrary.org/obo/UBERON_0014871;distal epiphysis of distal phalanx of pedal digit 1;head of distal phalanx of big toe -http://purl.obolibrary.org/obo/UBERON_0014871;distal epiphysis of distal phalanx of pedal digit 1;head of distal phalanx of first digit of foot -http://purl.obolibrary.org/obo/UBERON_0014871;distal epiphysis of distal phalanx of pedal digit 1;head of distal phalanx of great toe -http://purl.obolibrary.org/obo/UBERON_0014872;distal epiphysis of distal phalanx of pedal digit 2;distal end of distal phalanx of second toe -http://purl.obolibrary.org/obo/UBERON_0014872;distal epiphysis of distal phalanx of pedal digit 2;distal epiphysis of distal phalanx of pedal digit II -http://purl.obolibrary.org/obo/UBERON_0014872;distal epiphysis of distal phalanx of pedal digit 2;distal epiphysis of distal phalanx of second toe -http://purl.obolibrary.org/obo/UBERON_0014872;distal epiphysis of distal phalanx of pedal digit 2;head of distal phalanx of second toe -http://purl.obolibrary.org/obo/UBERON_0014873;distal epiphysis of distal phalanx of pedal digit 3;distal end of distal phalanx of third toe -http://purl.obolibrary.org/obo/UBERON_0014873;distal epiphysis of distal phalanx of pedal digit 3;distal epiphysis of distal phalanx of pedal digit III -http://purl.obolibrary.org/obo/UBERON_0014873;distal epiphysis of distal phalanx of pedal digit 3;distal epiphysis of distal phalanx of third toe -http://purl.obolibrary.org/obo/UBERON_0014873;distal epiphysis of distal phalanx of pedal digit 3;head of distal phalanx of third digit of foot -http://purl.obolibrary.org/obo/UBERON_0014873;distal epiphysis of distal phalanx of pedal digit 3;head of distal phalanx of third toe -http://purl.obolibrary.org/obo/UBERON_0014874;distal epiphysis of distal phalanx of pedal digit 4;distal end of distal phalanx of fourth toe -http://purl.obolibrary.org/obo/UBERON_0014874;distal epiphysis of distal phalanx of pedal digit 4;distal epiphysis of distal phalanx of fourth toe -http://purl.obolibrary.org/obo/UBERON_0014874;distal epiphysis of distal phalanx of pedal digit 4;distal epiphysis of distal phalanx of pedal digit IV -http://purl.obolibrary.org/obo/UBERON_0014874;distal epiphysis of distal phalanx of pedal digit 4;head of distal phalanx of fourth digit of foot -http://purl.obolibrary.org/obo/UBERON_0014874;distal epiphysis of distal phalanx of pedal digit 4;head of distal phalanx of fourth toe -http://purl.obolibrary.org/obo/UBERON_0014875;distal epiphysis of distal phalanx of pedal digit 5;distal end of distal phalanx of little toe -http://purl.obolibrary.org/obo/UBERON_0014875;distal epiphysis of distal phalanx of pedal digit 5;distal epiphysis of distal phalanx of little toe -http://purl.obolibrary.org/obo/UBERON_0014875;distal epiphysis of distal phalanx of pedal digit 5;distal epiphysis of distal phalanx of pedal digit V -http://purl.obolibrary.org/obo/UBERON_0014875;distal epiphysis of distal phalanx of pedal digit 5;head of distal phalanx of fifth digit of foot -http://purl.obolibrary.org/obo/UBERON_0014875;distal epiphysis of distal phalanx of pedal digit 5;head of distal phalanx of fifth toe -http://purl.obolibrary.org/obo/UBERON_0014875;distal epiphysis of distal phalanx of pedal digit 5;head of distal phalanx of little toe -http://purl.obolibrary.org/obo/UBERON_0014876;distal epiphysis of distal phalanx of pedal digit;distal end of distal phalanx of toe -http://purl.obolibrary.org/obo/UBERON_0014876;distal epiphysis of distal phalanx of pedal digit;head of distal phalanx of digit of foot -http://purl.obolibrary.org/obo/UBERON_0014876;distal epiphysis of distal phalanx of pedal digit;head of distal phalanx of digit of pes -http://purl.obolibrary.org/obo/UBERON_0014876;distal epiphysis of distal phalanx of pedal digit;head of distal phalanx of toe -http://purl.obolibrary.org/obo/UBERON_0014881;distal epiphysis of distal phalanx of manual digit 1;distal end of phalanx of right thumb -http://purl.obolibrary.org/obo/UBERON_0014881;distal epiphysis of distal phalanx of manual digit 1;distal epiphysis of distal phalanx of manual digit I -http://purl.obolibrary.org/obo/UBERON_0014881;distal epiphysis of distal phalanx of manual digit 1;distal epiphysis of distal phalanx of thumb -http://purl.obolibrary.org/obo/UBERON_0014881;distal epiphysis of distal phalanx of manual digit 1;head of distal phalanx of first digit of hand -http://purl.obolibrary.org/obo/UBERON_0014881;distal epiphysis of distal phalanx of manual digit 1;head of distal phalanx of thumb -http://purl.obolibrary.org/obo/UBERON_0014882;distal epiphysis of distal phalanx of manual digit 2;distal end of distal phalanx of index finger -http://purl.obolibrary.org/obo/UBERON_0014882;distal epiphysis of distal phalanx of manual digit 2;distal end of distal phalanx of second finger -http://purl.obolibrary.org/obo/UBERON_0014882;distal epiphysis of distal phalanx of manual digit 2;distal epiphysis of distal phalanx of index finger -http://purl.obolibrary.org/obo/UBERON_0014882;distal epiphysis of distal phalanx of manual digit 2;distal epiphysis of distal phalanx of manual digit II -http://purl.obolibrary.org/obo/UBERON_0014882;distal epiphysis of distal phalanx of manual digit 2;head of distal phalanx of index finger -http://purl.obolibrary.org/obo/UBERON_0014882;distal epiphysis of distal phalanx of manual digit 2;head of distal phalanx of second finger -http://purl.obolibrary.org/obo/UBERON_0014883;distal epiphysis of distal phalanx of manual digit 3;distal end of distal phalanx of middle finger -http://purl.obolibrary.org/obo/UBERON_0014883;distal epiphysis of distal phalanx of manual digit 3;distal end of distal phalanx of third finger -http://purl.obolibrary.org/obo/UBERON_0014883;distal epiphysis of distal phalanx of manual digit 3;distal epiphysis of distal phalanx of manual digit III -http://purl.obolibrary.org/obo/UBERON_0014883;distal epiphysis of distal phalanx of manual digit 3;distal epiphysis of distal phalanx of middle finger -http://purl.obolibrary.org/obo/UBERON_0014883;distal epiphysis of distal phalanx of manual digit 3;head of distal phalanx of middle finger -http://purl.obolibrary.org/obo/UBERON_0014883;distal epiphysis of distal phalanx of manual digit 3;head of distal phalanx of third digit of hand -http://purl.obolibrary.org/obo/UBERON_0014883;distal epiphysis of distal phalanx of manual digit 3;head of distal phalanx of third finger -http://purl.obolibrary.org/obo/UBERON_0014884;distal epiphysis of distal phalanx of manual digit 4;distal end of distal phalanx of fourth finger -http://purl.obolibrary.org/obo/UBERON_0014884;distal epiphysis of distal phalanx of manual digit 4;distal end of distal phalanx of ring finger -http://purl.obolibrary.org/obo/UBERON_0014884;distal epiphysis of distal phalanx of manual digit 4;distal epiphysis of distal phalanx of manual digit IV -http://purl.obolibrary.org/obo/UBERON_0014884;distal epiphysis of distal phalanx of manual digit 4;distal epiphysis of distal phalanx of ring finger -http://purl.obolibrary.org/obo/UBERON_0014884;distal epiphysis of distal phalanx of manual digit 4;head of distal phalanx of fourth digit of hand -http://purl.obolibrary.org/obo/UBERON_0014884;distal epiphysis of distal phalanx of manual digit 4;head of distal phalanx of fourth finger -http://purl.obolibrary.org/obo/UBERON_0014884;distal epiphysis of distal phalanx of manual digit 4;head of distal phalanx of ring finger -http://purl.obolibrary.org/obo/UBERON_0014885;distal epiphysis of distal phalanx of manual digit 5;distal end of distal phalanx of fifth finger -http://purl.obolibrary.org/obo/UBERON_0014885;distal epiphysis of distal phalanx of manual digit 5;distal end of distal phalanx of little finger -http://purl.obolibrary.org/obo/UBERON_0014885;distal epiphysis of distal phalanx of manual digit 5;distal epiphysis of distal phalanx of little finger -http://purl.obolibrary.org/obo/UBERON_0014885;distal epiphysis of distal phalanx of manual digit 5;distal epiphysis of distal phalanx of manual digit V -http://purl.obolibrary.org/obo/UBERON_0014885;distal epiphysis of distal phalanx of manual digit 5;head of distal phalanx of fifth digit of hand -http://purl.obolibrary.org/obo/UBERON_0014885;distal epiphysis of distal phalanx of manual digit 5;head of distal phalanx of fifth finger -http://purl.obolibrary.org/obo/UBERON_0014885;distal epiphysis of distal phalanx of manual digit 5;head of distal phalanx of little finger -http://purl.obolibrary.org/obo/UBERON_0014886;distal epiphysis of distal phalanx of manual digit;distal end of distal phalanx of finger -http://purl.obolibrary.org/obo/UBERON_0014886;distal epiphysis of distal phalanx of manual digit;head of distal phalanx of digit of hand -http://purl.obolibrary.org/obo/UBERON_0014886;distal epiphysis of distal phalanx of manual digit;head of distal phalanx of digit of manus -http://purl.obolibrary.org/obo/UBERON_0014886;distal epiphysis of distal phalanx of manual digit;head of distal phalanx of finger -http://purl.obolibrary.org/obo/UBERON_0014887;distal epiphysis of distal phalanx of digit;distal end of distal phalanx of digit -http://purl.obolibrary.org/obo/UBERON_0014887;distal epiphysis of distal phalanx of digit;head of distal phalanx -http://purl.obolibrary.org/obo/UBERON_0014887;distal epiphysis of distal phalanx of digit;head of distal phalanx of digit -http://purl.obolibrary.org/obo/UBERON_0014887;distal epiphysis of distal phalanx of digit;head of distal phalanx of digit of autopod -http://purl.obolibrary.org/obo/UBERON_0014888;iliotibialis muscle;m. iliotibilias -http://purl.obolibrary.org/obo/UBERON_0014889;left hemisphere of cerebellum; -http://purl.obolibrary.org/obo/UBERON_0014890;right hemisphere of cerebellum; -http://purl.obolibrary.org/obo/UBERON_0014891;brainstem white matter;brain stem white matter -http://purl.obolibrary.org/obo/UBERON_0014891;brainstem white matter;brainstem tract/commissure -http://purl.obolibrary.org/obo/UBERON_0014891;brainstem white matter;brainstem tracts -http://purl.obolibrary.org/obo/UBERON_0014891;brainstem white matter;brainstem tracts and commissures -http://purl.obolibrary.org/obo/UBERON_0014892;skeletal muscle organ;skeletal muscle -http://purl.obolibrary.org/obo/UBERON_0014895;somatic muscle; -http://purl.obolibrary.org/obo/UBERON_0014896;transversely striated somatic muscle; -http://purl.obolibrary.org/obo/UBERON_0014897;obliquely striated somatic muscle; -http://purl.obolibrary.org/obo/UBERON_0014898;lamina terminalis of ischium; -http://purl.obolibrary.org/obo/UBERON_0014899;anterolateral ligament of knee;(mid-third) lateral capsular ligament -http://purl.obolibrary.org/obo/UBERON_0014899;anterolateral ligament of knee;ALL -http://purl.obolibrary.org/obo/UBERON_0014899;anterolateral ligament of knee;anterolateral ligament -http://purl.obolibrary.org/obo/UBERON_0014899;anterolateral ligament of knee;capsulo-osseous layer of the iliotibial band -http://purl.obolibrary.org/obo/UBERON_0014899;anterolateral ligament of knee;ligament of Segond -http://purl.obolibrary.org/obo/UBERON_0014903;primordial vasculature; -http://purl.obolibrary.org/obo/UBERON_0014904;intersegmental pulmonary vein;infrasegmental part of pulmonary vein -http://purl.obolibrary.org/obo/UBERON_0014904;intersegmental pulmonary vein;intersegmental part of pulmonary vein -http://purl.obolibrary.org/obo/UBERON_0014904;intersegmental pulmonary vein;partes intersegmentales venarum pulmonum -http://purl.obolibrary.org/obo/UBERON_0014907;intersomitic vessel;intersegmental vessel -http://purl.obolibrary.org/obo/UBERON_0014907;intersomitic vessel;intersegmental vessels -http://purl.obolibrary.org/obo/UBERON_0014907;intersomitic vessel;intersomitic blood vessel -http://purl.obolibrary.org/obo/UBERON_0014907;intersomitic vessel;intersomitic vessels -http://purl.obolibrary.org/obo/UBERON_0014907;intersomitic vessel;segmental vessel -http://purl.obolibrary.org/obo/UBERON_0014908;cerebellopontine angle; -http://purl.obolibrary.org/obo/UBERON_0014912;thalamic eminence;eminentia thalami -http://purl.obolibrary.org/obo/UBERON_0014913;ventral pallium; -http://purl.obolibrary.org/obo/UBERON_0014914;haemolymphatic fluid-testis barrier; -http://purl.obolibrary.org/obo/UBERON_0014915;genu of facial nerve;genu nervi facialis -http://purl.obolibrary.org/obo/UBERON_0014916;velar vocal fold; -http://purl.obolibrary.org/obo/UBERON_0014917;pouch sphincter; -http://purl.obolibrary.org/obo/UBERON_0014918;retrosplenial granular cortex; -http://purl.obolibrary.org/obo/UBERON_0014930;perivascular space;Virchow-Robin space -http://purl.obolibrary.org/obo/UBERON_0014930;perivascular space;perivascular region -http://purl.obolibrary.org/obo/UBERON_0014931;periungual skin; -http://purl.obolibrary.org/obo/UBERON_0014932;periventricular white matter; -http://purl.obolibrary.org/obo/UBERON_0014933;periventricular gray matter;periventricular grey matter -http://purl.obolibrary.org/obo/UBERON_0014935;cerebral cortex marginal layer;cortical marginal layer -http://purl.obolibrary.org/obo/UBERON_0014935;cerebral cortex marginal layer;cortical marginal zone -http://purl.obolibrary.org/obo/UBERON_0014935;cerebral cortex marginal layer;future cortical layer I -http://purl.obolibrary.org/obo/UBERON_0014936;cerebral cortex ventricular layer; -http://purl.obolibrary.org/obo/UBERON_0014940;cerebral cortex subventricular zone; -http://purl.obolibrary.org/obo/UBERON_0014950;layer of developing cerebral cortex; -http://purl.obolibrary.org/obo/UBERON_0014951;proisocortex; -http://purl.obolibrary.org/obo/UBERON_0015001;radius endochondral element;radius element -http://purl.obolibrary.org/obo/UBERON_0015002;radius-ulna endochondral element;radius-ulna element -http://purl.obolibrary.org/obo/UBERON_0015003;ulna endochondral element;ulna element -http://purl.obolibrary.org/obo/UBERON_0015004;tibia endochondral element;tibia element -http://purl.obolibrary.org/obo/UBERON_0015007;cervical vertebra endochondral element;cervical vertebra element -http://purl.obolibrary.org/obo/UBERON_0015008;thoracic vertebra endochondral element;thoracic vertebra element -http://purl.obolibrary.org/obo/UBERON_0015009;lumbar vertebra endochondral element;lumbar vertebra element -http://purl.obolibrary.org/obo/UBERON_0015010;sacral vertebra endochondral element;sacral vertebra element -http://purl.obolibrary.org/obo/UBERON_0015011;tibiotarsus endochondral element;tibiotarsus element -http://purl.obolibrary.org/obo/UBERON_0015012;tarsometatarsus endochondral element;tarsometatarsus element -http://purl.obolibrary.org/obo/UBERON_0015013;fibula endochondral element;fibula element -http://purl.obolibrary.org/obo/UBERON_0015014;calcaneum endochondral element;calcaneum element -http://purl.obolibrary.org/obo/UBERON_0015015;supraoccipital endochondral element;supraoccipital element -http://purl.obolibrary.org/obo/UBERON_0015016;stapes endochondral element;stapes element -http://purl.obolibrary.org/obo/UBERON_0015017;incus endochondral element;incus element -http://purl.obolibrary.org/obo/UBERON_0015018;malleus endochondral element;malleus element -http://purl.obolibrary.org/obo/UBERON_0015019;rib endochondral element;rib element -http://purl.obolibrary.org/obo/UBERON_0015021;forelimb endochondral element; -http://purl.obolibrary.org/obo/UBERON_0015022;hindlimb endochondral element; -http://purl.obolibrary.org/obo/UBERON_0015023;phalanx endochondral element;phalanx element -http://purl.obolibrary.org/obo/UBERON_0015024;manual digit phalanx endochondral element;manual digit phalanx element -http://purl.obolibrary.org/obo/UBERON_0015025;manual digit 1 phalanx endochondral element;manual digit 1 phalanx element -http://purl.obolibrary.org/obo/UBERON_0015025;manual digit 1 phalanx endochondral element;manual digit I phalanx endochondral element -http://purl.obolibrary.org/obo/UBERON_0015026;manual digit 2 phalanx endochondral element;manual digit 2 phalanx element -http://purl.obolibrary.org/obo/UBERON_0015026;manual digit 2 phalanx endochondral element;manual digit II phalanx endochondral element -http://purl.obolibrary.org/obo/UBERON_0015027;manual digit 3 phalanx endochondral element;manual digit 3 phalanx element -http://purl.obolibrary.org/obo/UBERON_0015027;manual digit 3 phalanx endochondral element;manual digit III phalanx endochondral element -http://purl.obolibrary.org/obo/UBERON_0015028;manual digit 4 phalanx endochondral element;manual digit 4 phalanx element -http://purl.obolibrary.org/obo/UBERON_0015028;manual digit 4 phalanx endochondral element;manual digit IV phalanx endochondral element -http://purl.obolibrary.org/obo/UBERON_0015029;manual digit 5 phalanx endochondral element;manual digit 5 phalanx element -http://purl.obolibrary.org/obo/UBERON_0015029;manual digit 5 phalanx endochondral element;manual digit V phalanx endochondral element -http://purl.obolibrary.org/obo/UBERON_0015030;pedal digit phalanx endochondral element;pedal digit phalanx element -http://purl.obolibrary.org/obo/UBERON_0015031;pedal digit 1 phalanx endochondral element;pedal digit 1 phalanx element -http://purl.obolibrary.org/obo/UBERON_0015031;pedal digit 1 phalanx endochondral element;pedal digit I phalanx endochondral element -http://purl.obolibrary.org/obo/UBERON_0015032;pedal digit 2 phalanx endochondral element;pedal digit 2 phalanx element -http://purl.obolibrary.org/obo/UBERON_0015032;pedal digit 2 phalanx endochondral element;pedal digit II phalanx endochondral element -http://purl.obolibrary.org/obo/UBERON_0015033;pedal digit 3 phalanx endochondral element;pedal digit 3 phalanx element -http://purl.obolibrary.org/obo/UBERON_0015033;pedal digit 3 phalanx endochondral element;pedal digit III phalanx endochondral element -http://purl.obolibrary.org/obo/UBERON_0015034;pedal digit 4 phalanx endochondral element;pedal digit 4 phalanx element -http://purl.obolibrary.org/obo/UBERON_0015034;pedal digit 4 phalanx endochondral element;pedal digit IV phalanx endochondral element -http://purl.obolibrary.org/obo/UBERON_0015035;pedal digit 5 phalanx endochondral element;pedal digit 5 phalanx element -http://purl.obolibrary.org/obo/UBERON_0015035;pedal digit 5 phalanx endochondral element;pedal digit V phalanx endochondral element -http://purl.obolibrary.org/obo/UBERON_0015036;pedal digit metatarsal endochondral element;pedal digit metatarsal element -http://purl.obolibrary.org/obo/UBERON_0015037;pedal digit 1 metatarsal endochondral element;pedal digit 1 metatarsal element -http://purl.obolibrary.org/obo/UBERON_0015037;pedal digit 1 metatarsal endochondral element;pedal digit I metatarsal endochondral element -http://purl.obolibrary.org/obo/UBERON_0015038;pedal digit 2 metatarsal endochondral element;pedal digit 2 metatarsal element -http://purl.obolibrary.org/obo/UBERON_0015038;pedal digit 2 metatarsal endochondral element;pedal digit II metatarsal endochondral element -http://purl.obolibrary.org/obo/UBERON_0015039;pedal digit 3 metatarsal endochondral element;pedal digit 3 metatarsal element -http://purl.obolibrary.org/obo/UBERON_0015039;pedal digit 3 metatarsal endochondral element;pedal digit III metatarsal endochondral element -http://purl.obolibrary.org/obo/UBERON_0015040;pedal digit 4 metatarsal endochondral element;pedal digit 4 metatarsal element -http://purl.obolibrary.org/obo/UBERON_0015040;pedal digit 4 metatarsal endochondral element;pedal digit IV metatarsal endochondral element -http://purl.obolibrary.org/obo/UBERON_0015041;pedal digit 5 metatarsal endochondral element;pedal digit 5 metatarsal element -http://purl.obolibrary.org/obo/UBERON_0015041;pedal digit 5 metatarsal endochondral element;pedal digit V metatarsal endochondral element -http://purl.obolibrary.org/obo/UBERON_0015042;manual digit metacarpus endochondral element;manual digit metacarpus element -http://purl.obolibrary.org/obo/UBERON_0015043;manual digit 1 metacarpus endochondral element;manual digit 1 metacarpus element -http://purl.obolibrary.org/obo/UBERON_0015043;manual digit 1 metacarpus endochondral element;manual digit I metacarpus endochondral element -http://purl.obolibrary.org/obo/UBERON_0015044;manual digit 2 metacarpus endochondral element;manual digit 2 metacarpus element -http://purl.obolibrary.org/obo/UBERON_0015044;manual digit 2 metacarpus endochondral element;manual digit II metacarpus endochondral element -http://purl.obolibrary.org/obo/UBERON_0015045;manual digit 3 metacarpus endochondral element;manual digit 3 metacarpus element -http://purl.obolibrary.org/obo/UBERON_0015045;manual digit 3 metacarpus endochondral element;manual digit III metacarpus endochondral element -http://purl.obolibrary.org/obo/UBERON_0015046;manual digit 4 metacarpus endochondral element;manual digit 4 metacarpus element -http://purl.obolibrary.org/obo/UBERON_0015046;manual digit 4 metacarpus endochondral element;manual digit IV metacarpus endochondral element -http://purl.obolibrary.org/obo/UBERON_0015047;manual digit 5 metacarpus endochondral element;manual digit 5 metacarpus element -http://purl.obolibrary.org/obo/UBERON_0015047;manual digit 5 metacarpus endochondral element;manual digit V metacarpus endochondral element -http://purl.obolibrary.org/obo/UBERON_0015048;basioccipital endochondral element;basioccipital element -http://purl.obolibrary.org/obo/UBERON_0015049;carpus endochondral element;carpus element -http://purl.obolibrary.org/obo/UBERON_0015050;tarsus endochondral element;tarsus element -http://purl.obolibrary.org/obo/UBERON_0015051;exoccipital endochondral element;exoccipital element -http://purl.obolibrary.org/obo/UBERON_0015052;femur endochondral element;femur element -http://purl.obolibrary.org/obo/UBERON_0015053;humerus endochondral element;humerus element -http://purl.obolibrary.org/obo/UBERON_0015054;iliac endochondral element;iliac element -http://purl.obolibrary.org/obo/UBERON_0015055;pubic endochondral element;pubic element -http://purl.obolibrary.org/obo/UBERON_0015056;ischial endochondral element;ischial element -http://purl.obolibrary.org/obo/UBERON_0015057;scapula endochondral element;scapula element -http://purl.obolibrary.org/obo/UBERON_0015058;alisphenoid endochondral element;alisphenoid element -http://purl.obolibrary.org/obo/UBERON_0015059;orbitosphenoid endochondral element;orbitosphenoid element -http://purl.obolibrary.org/obo/UBERON_0015060;sphenoid endochondral element;sphenoid element -http://purl.obolibrary.org/obo/UBERON_0015061;limb endochondral element;limb bone endochondral element -http://purl.obolibrary.org/obo/UBERON_0015062;bone condensation; -http://purl.obolibrary.org/obo/UBERON_0015063;autopod endochondral element; -http://purl.obolibrary.org/obo/UBERON_0015064;autopod cartilage; -http://purl.obolibrary.org/obo/UBERON_0015067;centrale endochondral element;central mesopodium element -http://purl.obolibrary.org/obo/UBERON_0015068;distal carpal endochondral element; -http://purl.obolibrary.org/obo/UBERON_0015069;distal carpal cartilage element; -http://purl.obolibrary.org/obo/UBERON_0015077;centrale cartilage; -http://purl.obolibrary.org/obo/UBERON_0015078;proximal carpal endochondral element;proximal carpal element -http://purl.obolibrary.org/obo/UBERON_0015079;proximal carpal cartilage; -http://purl.obolibrary.org/obo/UBERON_0015080;proximal carpal bone pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0015081;proximal tarsal endochondral element; -http://purl.obolibrary.org/obo/UBERON_0015082;proximal tarsal cartilage; -http://purl.obolibrary.org/obo/UBERON_0015083;proximal tarsal bone pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0015084;distal carpal bone 1 endochondral element; -http://purl.obolibrary.org/obo/UBERON_0015085;distal carpal bone 1 cartilage; -http://purl.obolibrary.org/obo/UBERON_0015086;distal carpal bone 1 pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0015087;distal carpal bone 2 endochondral element; -http://purl.obolibrary.org/obo/UBERON_0015088;distal carpal bone 2 cartilage; -http://purl.obolibrary.org/obo/UBERON_0015089;distal carpal bone 2 pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0015090;distal carpal bone 3 endochondral element; -http://purl.obolibrary.org/obo/UBERON_0015091;distal carpal bone 3 cartilage; -http://purl.obolibrary.org/obo/UBERON_0015092;distal carpal bone 3 pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0015093;distal carpal bone 4 endochondral element; -http://purl.obolibrary.org/obo/UBERON_0015094;distal carpal bone 4 cartilage; -http://purl.obolibrary.org/obo/UBERON_0015095;distal carpal bone 4 pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0015096;distal carpal bone 5 endochondral element; -http://purl.obolibrary.org/obo/UBERON_0015097;distal carpal bone 5 cartilage; -http://purl.obolibrary.org/obo/UBERON_0015098;distal carpal bone 5 pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0015099;distal tarsal endochondral element; -http://purl.obolibrary.org/obo/UBERON_0015100;distal tarsal cartilage; -http://purl.obolibrary.org/obo/UBERON_0015101;distal tarsal bone pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0015102;distal tarsal bone 1 endochondral element; -http://purl.obolibrary.org/obo/UBERON_0015103;distal tarsal bone 1 cartilage;distal tarsal 1 cartilage -http://purl.obolibrary.org/obo/UBERON_0015103;distal tarsal bone 1 cartilage;distal tarsal 1 cartilage element -http://purl.obolibrary.org/obo/UBERON_0015104;distal tarsal bone 1 pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0015105;distal tarsal bone 2 endochondral element; -http://purl.obolibrary.org/obo/UBERON_0015106;distal tarsal bone 2 cartilage;distal tarsal 2 cartilage -http://purl.obolibrary.org/obo/UBERON_0015106;distal tarsal bone 2 cartilage;distal tarsal 2 cartilage element -http://purl.obolibrary.org/obo/UBERON_0015107;distal tarsal bone 2 pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0015108;distal tarsal bone 3 endochondral element; -http://purl.obolibrary.org/obo/UBERON_0015109;distal tarsal bone 3 cartilage; -http://purl.obolibrary.org/obo/UBERON_0015110;distal tarsal bone 3 pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0015111;distal tarsal bone 4 endochondral element; -http://purl.obolibrary.org/obo/UBERON_0015112;distal tarsal bone 4 cartilage; -http://purl.obolibrary.org/obo/UBERON_0015113;distal tarsal bone 4 pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0015114;distal tarsal bone 5 endochondral element; -http://purl.obolibrary.org/obo/UBERON_0015115;distal tarsal bone 5 cartilage; -http://purl.obolibrary.org/obo/UBERON_0015116;distal tarsal bone 5 pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0015117;lamina terminalis of cerebral hemisphere; -http://purl.obolibrary.org/obo/UBERON_0015119;scolex; -http://purl.obolibrary.org/obo/UBERON_0015120;right outer canthus;right angle of eye -http://purl.obolibrary.org/obo/UBERON_0015120;right outer canthus;right lateral palpebral commissure -http://purl.obolibrary.org/obo/UBERON_0015121;left outer canthus;left angle of eye -http://purl.obolibrary.org/obo/UBERON_0015121;left outer canthus;left lateral palpebral commissure -http://purl.obolibrary.org/obo/UBERON_0015122;anatomical line between outer canthi;inter lateral canthal line -http://purl.obolibrary.org/obo/UBERON_0015122;anatomical line between outer canthi;inter outer canthal line -http://purl.obolibrary.org/obo/UBERON_0015125;anterior internodal tract;anterior internodal fasciculus -http://purl.obolibrary.org/obo/UBERON_0015125;anterior internodal tract;anterior internodal tract muscle tissue -http://purl.obolibrary.org/obo/UBERON_0015126;middle internodal tract;internodal tract of Wenckebach -http://purl.obolibrary.org/obo/UBERON_0015126;middle internodal tract;middle internodal fasciculus -http://purl.obolibrary.org/obo/UBERON_0015126;middle internodal tract;middle internodal tract muscle tissue -http://purl.obolibrary.org/obo/UBERON_0015127;posterior internodal tract;internodal tract of Thorel -http://purl.obolibrary.org/obo/UBERON_0015127;posterior internodal tract;posterior internodal fasciculus -http://purl.obolibrary.org/obo/UBERON_0015127;posterior internodal tract;posterior internodal tract muscle tissue -http://purl.obolibrary.org/obo/UBERON_0015128;subepicardial layer of epicardium;perimysial connective tissue of subepicardium -http://purl.obolibrary.org/obo/UBERON_0015128;subepicardial layer of epicardium;subepicardial connective tissue -http://purl.obolibrary.org/obo/UBERON_0015129;epicardial fat;epicardial adipose tissue -http://purl.obolibrary.org/obo/UBERON_0015129;epicardial fat;pericardial adipose tissue -http://purl.obolibrary.org/obo/UBERON_0015130;connective tissue of prostate gland;connective tissue of prostate -http://purl.obolibrary.org/obo/UBERON_0015131;subepithelial connective tissue of prostatic gland; -http://purl.obolibrary.org/obo/UBERON_0015132;extralobar lactiferous duct; -http://purl.obolibrary.org/obo/UBERON_0015133;terminal lactiferous duct;branch of lactiferous duct proper -http://purl.obolibrary.org/obo/UBERON_0015133;terminal lactiferous duct;lobular lactiferous duct -http://purl.obolibrary.org/obo/UBERON_0015134;main lactiferous duct; -http://purl.obolibrary.org/obo/UBERON_0015135;primary lactiferous duct; -http://purl.obolibrary.org/obo/UBERON_0015136;secondary lactiferous duct; -http://purl.obolibrary.org/obo/UBERON_0015137;tertiary lactiferous duct; -http://purl.obolibrary.org/obo/UBERON_0015138;quarternary lactiferous duct; -http://purl.obolibrary.org/obo/UBERON_0015139;infundibulum of gallbladder;gallbladder infundibulum -http://purl.obolibrary.org/obo/UBERON_0015139;infundibulum of gallbladder;infundibulum vesicae biliaris -http://purl.obolibrary.org/obo/UBERON_0015142;falciform fat; -http://purl.obolibrary.org/obo/UBERON_0015143;mesenteric fat pad;mesenteric fat depot -http://purl.obolibrary.org/obo/UBERON_0015144;autopod hair;hair of hand/foot -http://purl.obolibrary.org/obo/UBERON_0015144;autopod hair;hand/foot hair -http://purl.obolibrary.org/obo/UBERON_0015145;pes hair;foot hair -http://purl.obolibrary.org/obo/UBERON_0015145;pes hair;hair of foot -http://purl.obolibrary.org/obo/UBERON_0015145;pes hair;hind foot hair -http://purl.obolibrary.org/obo/UBERON_0015146;manus hair;hair of hand -http://purl.obolibrary.org/obo/UBERON_0015146;manus hair;hand hair -http://purl.obolibrary.org/obo/UBERON_0015147;pinna hair; -http://purl.obolibrary.org/obo/UBERON_0015148;tail hair; -http://purl.obolibrary.org/obo/UBERON_0015149;ventral hair; -http://purl.obolibrary.org/obo/UBERON_0015150;dorsal hair; -http://purl.obolibrary.org/obo/UBERON_0015151;Harderian gland duct;duct of Harder's gland -http://purl.obolibrary.org/obo/UBERON_0015151;Harderian gland duct;duct of Harderian gland -http://purl.obolibrary.org/obo/UBERON_0015152;gland of ocular region;ocular gland -http://purl.obolibrary.org/obo/UBERON_0015152;gland of ocular region;orbital gland -http://purl.obolibrary.org/obo/UBERON_0015153;medial gland of ocular region;medial ocular gland -http://purl.obolibrary.org/obo/UBERON_0015153;medial gland of ocular region;medial orbital gland -http://purl.obolibrary.org/obo/UBERON_0015154;lateral gland of orbital region;lateral ocular gland -http://purl.obolibrary.org/obo/UBERON_0015154;lateral gland of orbital region;lateral orbital gland -http://purl.obolibrary.org/obo/UBERON_0015155;conjunctival space;cavity of conjunctival sac -http://purl.obolibrary.org/obo/UBERON_0015155;conjunctival space;conjunctival sac cavity -http://purl.obolibrary.org/obo/UBERON_0015155;conjunctival space;subconjunctival space -http://purl.obolibrary.org/obo/UBERON_0015156;terminal branch of ophthalmic artery; -http://purl.obolibrary.org/obo/UBERON_0015157;zygomatico-orbital artery; -http://purl.obolibrary.org/obo/UBERON_0015158;ophthalmotemporal branch of external ophthalmic artery; -http://purl.obolibrary.org/obo/UBERON_0015160;supraorbital artery;arteria supraorbitalis -http://purl.obolibrary.org/obo/UBERON_0015160;supraorbital artery;supra-orbital artery -http://purl.obolibrary.org/obo/UBERON_0015160;supraorbital artery;supraorbital artery -http://purl.obolibrary.org/obo/UBERON_0015161;inferior branch of oculomotor nerve;inferior ramus of oculomotor nerve -http://purl.obolibrary.org/obo/UBERON_0015161;inferior branch of oculomotor nerve;oculomotor nerve inferior division -http://purl.obolibrary.org/obo/UBERON_0015161;inferior branch of oculomotor nerve;ramus inferior (nervus oculomotorius [III]) -http://purl.obolibrary.org/obo/UBERON_0015161;inferior branch of oculomotor nerve;ramus inferior nervi oculomotorii -http://purl.obolibrary.org/obo/UBERON_0015161;inferior branch of oculomotor nerve;ramus inferior nervus oculomotorii -http://purl.obolibrary.org/obo/UBERON_0015162;superior branch of oculomotor nerve;oculomotor nerve superior division -http://purl.obolibrary.org/obo/UBERON_0015162;superior branch of oculomotor nerve;ramus superior (nervus oculomotorius [III]) -http://purl.obolibrary.org/obo/UBERON_0015162;superior branch of oculomotor nerve;ramus superior nervi oculomotorii -http://purl.obolibrary.org/obo/UBERON_0015162;superior branch of oculomotor nerve;ramus superior nervus oculomotorii -http://purl.obolibrary.org/obo/UBERON_0015162;superior branch of oculomotor nerve;superior ramus of oculomotor nerve -http://purl.obolibrary.org/obo/UBERON_0015165;multi-unit eye; -http://purl.obolibrary.org/obo/UBERON_0015169;tapetum;tapetal layer -http://purl.obolibrary.org/obo/UBERON_0015169;tapetum;tapetum layer -http://purl.obolibrary.org/obo/UBERON_0015170;nauplius eye; -http://purl.obolibrary.org/obo/UBERON_0015171;uterine spiral artery;endometrial spiral arteriole -http://purl.obolibrary.org/obo/UBERON_0015171;uterine spiral artery;endometrial spiral artery -http://purl.obolibrary.org/obo/UBERON_0015172;endometrial blood vessel;blood vessel of endometrium -http://purl.obolibrary.org/obo/UBERON_0015173;helicine branch of uterine artery;arcuate artery of uterus -http://purl.obolibrary.org/obo/UBERON_0015173;helicine branch of uterine artery;helicine artery of uterus -http://purl.obolibrary.org/obo/UBERON_0015173;helicine branch of uterine artery;rami helicini uterinae -http://purl.obolibrary.org/obo/UBERON_0015174;helicine artery of penis;arteriae helicinae penis -http://purl.obolibrary.org/obo/UBERON_0015177;helicine artery;helicine arteries -http://purl.obolibrary.org/obo/UBERON_0015178;somite border; -http://purl.obolibrary.org/obo/UBERON_0015179;somite boundary epithelium;intersomitic epithelium -http://purl.obolibrary.org/obo/UBERON_0015179;somite boundary epithelium;intersomitic membrane -http://purl.obolibrary.org/obo/UBERON_0015180;neck of talus;talar neck -http://purl.obolibrary.org/obo/UBERON_0015180;neck of talus;talus neck -http://purl.obolibrary.org/obo/UBERON_0015181;neck of tooth;cervix dentis -http://purl.obolibrary.org/obo/UBERON_0015181;neck of tooth;cervix of tooth -http://purl.obolibrary.org/obo/UBERON_0015181;neck of tooth;collumn dentis -http://purl.obolibrary.org/obo/UBERON_0015181;neck of tooth;dental neck -http://purl.obolibrary.org/obo/UBERON_0015181;neck of tooth;tooth neck -http://purl.obolibrary.org/obo/UBERON_0015189;perineural vascular plexus;PNVP -http://purl.obolibrary.org/obo/UBERON_0015202;lymph heart; -http://purl.obolibrary.org/obo/UBERON_0015203;non-connected functional system; -http://purl.obolibrary.org/obo/UBERON_0015204;glandular system; -http://purl.obolibrary.org/obo/UBERON_0015212;lateral structure; -http://purl.obolibrary.org/obo/UBERON_0015213;barnacle cement gland; -http://purl.obolibrary.org/obo/UBERON_0015214;arcuate ligament; -http://purl.obolibrary.org/obo/UBERON_0015215;median arcuate ligament; -http://purl.obolibrary.org/obo/UBERON_0015216;nasal meatus; -http://purl.obolibrary.org/obo/UBERON_0015219;middle nasal meatus; -http://purl.obolibrary.org/obo/UBERON_0015220;inferior nasal meatus; -http://purl.obolibrary.org/obo/UBERON_0015221;common nasal meatus; -http://purl.obolibrary.org/obo/UBERON_0015222;ventral nasal meatus; -http://purl.obolibrary.org/obo/UBERON_0015223;dorsal nasal meatus; -http://purl.obolibrary.org/obo/UBERON_0015224;interventricular foramen intermedium;interventricular ostium intermedium -http://purl.obolibrary.org/obo/UBERON_0015225;atrial foramen intermedium;interatrial ostium intermedium -http://purl.obolibrary.org/obo/UBERON_0015226;bulbar spiral septum; -http://purl.obolibrary.org/obo/UBERON_0015227;peristaltic circulatory vessel;peristaltic heart -http://purl.obolibrary.org/obo/UBERON_0015228;circulatory organ;cardiac pump -http://purl.obolibrary.org/obo/UBERON_0015228;circulatory organ;cardiac structure -http://purl.obolibrary.org/obo/UBERON_0015228;circulatory organ;circulatory vessel -http://purl.obolibrary.org/obo/UBERON_0015228;circulatory organ;heart -http://purl.obolibrary.org/obo/UBERON_0015228;circulatory organ;heart or heart like organ -http://purl.obolibrary.org/obo/UBERON_0015229;accessory circulatory organ; -http://purl.obolibrary.org/obo/UBERON_0015230;dorsal vessel heart; -http://purl.obolibrary.org/obo/UBERON_0015231;circulatory system dorsal vessel; -http://purl.obolibrary.org/obo/UBERON_0015232;nematode pharynx; -http://purl.obolibrary.org/obo/UBERON_0015233;nucleus of dorsal thalamus;dorsal thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0015233;nucleus of dorsal thalamus;nucleus of thalamus proper -http://purl.obolibrary.org/obo/UBERON_0015234;nucleus of ventral thalamus;ventral thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0015238;pineal complex; -http://purl.obolibrary.org/obo/UBERON_0015241;parapineal organ; -http://purl.obolibrary.org/obo/UBERON_0015243;lower part of vagina;caudal vagina -http://purl.obolibrary.org/obo/UBERON_0015243;lower part of vagina;perineal part of vagina -http://purl.obolibrary.org/obo/UBERON_0015243;lower part of vagina;vagina lower part -http://purl.obolibrary.org/obo/UBERON_0015244;accessory olfactory bulb granule cell layer;AOB, granular layer -http://purl.obolibrary.org/obo/UBERON_0015244;accessory olfactory bulb granule cell layer;accessory olfactory bulb, granular layer -http://purl.obolibrary.org/obo/UBERON_0015245;septal olfactory organ; -http://purl.obolibrary.org/obo/UBERON_0015246;septal organ of Masera; -http://purl.obolibrary.org/obo/UBERON_0015247;bifurcation of trachea;bifurcatio tracheae -http://purl.obolibrary.org/obo/UBERON_0015247;bifurcation of trachea;tracheal bifurcation -http://purl.obolibrary.org/obo/UBERON_0015249;digit skin; -http://purl.obolibrary.org/obo/UBERON_0015250;inferior olivary commissure; -http://purl.obolibrary.org/obo/UBERON_0015251;modified sebaceous gland; -http://purl.obolibrary.org/obo/UBERON_0015252;coat hair follicle; -http://purl.obolibrary.org/obo/UBERON_0015280;pancreas left lobe; -http://purl.obolibrary.org/obo/UBERON_0015281;pancreas right lobe; -http://purl.obolibrary.org/obo/UBERON_0015329;respiratory system basement membrane; -http://purl.obolibrary.org/obo/UBERON_0015350;saphenous artery;ramus saphenus (arteria descendentis genus) -http://purl.obolibrary.org/obo/UBERON_0015410;heart plus pericardium;heart/pericardium -http://purl.obolibrary.org/obo/UBERON_0015418;urethra mesenchymal layer; -http://purl.obolibrary.org/obo/UBERON_0015420;ureteral valve;ureteral valve -http://purl.obolibrary.org/obo/UBERON_0015420;ureteral valve;valve or ureter -http://purl.obolibrary.org/obo/UBERON_0015423;hilar portion of hepatic duct;hilar part of hepatic duct -http://purl.obolibrary.org/obo/UBERON_0015430;levator auris longus muscle;levator auris longus -http://purl.obolibrary.org/obo/UBERON_0015432;accessory olfactory bulb mitral cell layer;accessory olfactory bulb, mitral layer -http://purl.obolibrary.org/obo/UBERON_0015433;blood vessel external elastic membrane;external elastic lamina -http://purl.obolibrary.org/obo/UBERON_0015433;blood vessel external elastic membrane;external elastic membrane -http://purl.obolibrary.org/obo/UBERON_0015445;anterior lingual gland duct; -http://purl.obolibrary.org/obo/UBERON_0015453;subcutaneous lymph node; -http://purl.obolibrary.org/obo/UBERON_0015454;pancreatic fat pad; -http://purl.obolibrary.org/obo/UBERON_0015455;accessory hepatic vein; -http://purl.obolibrary.org/obo/UBERON_0015458;mediastinal fat pad; -http://purl.obolibrary.org/obo/UBERON_0015469;splenic lymph node; -http://purl.obolibrary.org/obo/UBERON_0015472;tracheobronchial lymph node;nodus tracheobronchiale lymphaticus -http://purl.obolibrary.org/obo/UBERON_0015472;tracheobronchial lymph node;tracheobronchal lymph node -http://purl.obolibrary.org/obo/UBERON_0015472;tracheobronchial lymph node;tracheobronchal node -http://purl.obolibrary.org/obo/UBERON_0015472;tracheobronchial lymph node;tracheobronchial node -http://purl.obolibrary.org/obo/UBERON_0015474;axilla skin;axillary skin -http://purl.obolibrary.org/obo/UBERON_0015474;axilla skin;skin of axilla -http://purl.obolibrary.org/obo/UBERON_0015476;nose skin;external nasal skin -http://purl.obolibrary.org/obo/UBERON_0015476;nose skin;skin of external nose -http://purl.obolibrary.org/obo/UBERON_0015476;nose skin;skin of nose -http://purl.obolibrary.org/obo/UBERON_0015477;axillary fat pad; -http://purl.obolibrary.org/obo/UBERON_0015479;scrotum skin;scrotal skin -http://purl.obolibrary.org/obo/UBERON_0015479;scrotum skin;skin of scrotum -http://purl.obolibrary.org/obo/UBERON_0015480;proper hepatic artery;hepatic artery proper -http://purl.obolibrary.org/obo/UBERON_0015481;left hepatic artery;left branch of hepatic artery -http://purl.obolibrary.org/obo/UBERON_0015481;left hepatic artery;left part of hepatic artery proper -http://purl.obolibrary.org/obo/UBERON_0015481;left hepatic artery;ramus sinister (arteria hepatica propria) -http://purl.obolibrary.org/obo/UBERON_0015482;right hepatic artery;ramus dexter (arteria hepatica propria) -http://purl.obolibrary.org/obo/UBERON_0015482;right hepatic artery;right branch of hepatic artery proper -http://purl.obolibrary.org/obo/UBERON_0015482;right hepatic artery;right part of hepatic artery proper -http://purl.obolibrary.org/obo/UBERON_0015484;epidermis of metapodial pad; -http://purl.obolibrary.org/obo/UBERON_0015485;choledocho-duodenal junction;choledochoduodenal junction -http://purl.obolibrary.org/obo/UBERON_0015488;sural nerve; -http://purl.obolibrary.org/obo/UBERON_0015510;body of corpus callosum;corpus callosum body -http://purl.obolibrary.org/obo/UBERON_0015510;body of corpus callosum;truncus corporis callosi -http://purl.obolibrary.org/obo/UBERON_0015593;frontal gyrus; -http://purl.obolibrary.org/obo/UBERON_0015599;genu of corpus callosum;corpus callosum genu -http://purl.obolibrary.org/obo/UBERON_0015703;rostrum of corpus callosum; -http://purl.obolibrary.org/obo/UBERON_0015704;sagittal sinus; -http://purl.obolibrary.org/obo/UBERON_0015708;splenium of the corpus callosum;corpus callosum splenium -http://purl.obolibrary.org/obo/UBERON_0015708;splenium of the corpus callosum;corpus callosum, splenium -http://purl.obolibrary.org/obo/UBERON_0015716;anal canal epithelium;anal canal epithelium -http://purl.obolibrary.org/obo/UBERON_0015716;anal canal epithelium;epithelium of anal canal -http://purl.obolibrary.org/obo/UBERON_0015717;smooth muscle tissue layer of ejaculatory duct;muscle layer of ejaculatory duct -http://purl.obolibrary.org/obo/UBERON_0015751;inferior tarsal muscle; -http://purl.obolibrary.org/obo/UBERON_0015757;heterogeneous tissue;portion of heterogeneous tissue -http://purl.obolibrary.org/obo/UBERON_0015760;mixed stratified cuboidal and columnar epithelium; -http://purl.obolibrary.org/obo/UBERON_0015764;dense regular elastic tissue;dense elastic connective tissue -http://purl.obolibrary.org/obo/UBERON_0015764;dense regular elastic tissue;dense regular elastic connective tissue -http://purl.obolibrary.org/obo/UBERON_0015766;epithelium of duct of salivary gland;epithelium of salivary duct -http://purl.obolibrary.org/obo/UBERON_0015766;epithelium of duct of salivary gland;salivary duct epithelium -http://purl.obolibrary.org/obo/UBERON_0015766;epithelium of duct of salivary gland;salivary ductal epithelium -http://purl.obolibrary.org/obo/UBERON_0015777;transitional epithelium of prostatic urethra; -http://purl.obolibrary.org/obo/UBERON_0015783;smooth muscle layer in fatty layer of subcutaneous tissue;muscle layer in fatty layer of subcutaneous tissue -http://purl.obolibrary.org/obo/UBERON_0015783;smooth muscle layer in fatty layer of subcutaneous tissue;stratum musculosum panniculi adiposi telae subcutaneae -http://purl.obolibrary.org/obo/UBERON_0015784;duct of olfactory gland;olfactory gland duct -http://purl.obolibrary.org/obo/UBERON_0015785;acinus of olfactory gland;acinar part of olfactory gland -http://purl.obolibrary.org/obo/UBERON_0015785;acinus of olfactory gland;olfactory gland acinus -http://purl.obolibrary.org/obo/UBERON_0015786;respiratory segment of nasal mucosa;pars respiratoria tunicae mucosae nasi -http://purl.obolibrary.org/obo/UBERON_0015786;respiratory segment of nasal mucosa;respiratory zone of nasal mucosa -http://purl.obolibrary.org/obo/UBERON_0015787;upper respiratory conduit;respiratory conduit -http://purl.obolibrary.org/obo/UBERON_0015788;olfactory apparatus chamber; -http://purl.obolibrary.org/obo/UBERON_0015789;cranial or facial muscle;cranial/facial muscle -http://purl.obolibrary.org/obo/UBERON_0015790;autopod skin; -http://purl.obolibrary.org/obo/UBERON_0015791;digit connective tissue; -http://purl.obolibrary.org/obo/UBERON_0015792;prostate gland dorsal lobe; -http://purl.obolibrary.org/obo/UBERON_0015793;induseum griseum;gray stria of Lancisi -http://purl.obolibrary.org/obo/UBERON_0015793;induseum griseum;gyrus epicallosus -http://purl.obolibrary.org/obo/UBERON_0015793;induseum griseum;gyrus indusium griseum -http://purl.obolibrary.org/obo/UBERON_0015793;induseum griseum;indusium griseum -http://purl.obolibrary.org/obo/UBERON_0015793;induseum griseum;supracallosal gyrus -http://purl.obolibrary.org/obo/UBERON_0015794;left lung lobar bronchus epithelium; -http://purl.obolibrary.org/obo/UBERON_0015795;right lung lobar bronchus epitheium; -http://purl.obolibrary.org/obo/UBERON_0015796;liver blood vessel; -http://purl.obolibrary.org/obo/UBERON_0015800;taenia tectum of brain;taenia tecta -http://purl.obolibrary.org/obo/UBERON_0015800;taenia tectum of brain;taenia tectum -http://purl.obolibrary.org/obo/UBERON_0015800;taenia tectum of brain;tenia tecta -http://purl.obolibrary.org/obo/UBERON_0015800;taenia tectum of brain;tenia tectum -http://purl.obolibrary.org/obo/UBERON_0015807;ear epithelium; -http://purl.obolibrary.org/obo/UBERON_0015808;eye epithelium; -http://purl.obolibrary.org/obo/UBERON_0015813;middle ear epithelium; -http://purl.obolibrary.org/obo/UBERON_0015814;outer ear epithelium; -http://purl.obolibrary.org/obo/UBERON_0015828;cerebellum ventricular layer; -http://purl.obolibrary.org/obo/UBERON_0015829;forebrain ventricular layer; -http://purl.obolibrary.org/obo/UBERON_0015833;foregut epithelium; -http://purl.obolibrary.org/obo/UBERON_0015834;duodenum lamina propria;duodenal lamina propria -http://purl.obolibrary.org/obo/UBERON_0015834;duodenum lamina propria;lamina propria mucosae of duodenum -http://purl.obolibrary.org/obo/UBERON_0015834;duodenum lamina propria;lamina propria of duodenum -http://purl.obolibrary.org/obo/UBERON_0015837;incisor dental pulp; -http://purl.obolibrary.org/obo/UBERON_0015838;molar dental pulp; -http://purl.obolibrary.org/obo/UBERON_0015839;molar epithelium;epithelium of molar -http://purl.obolibrary.org/obo/UBERON_0015839;molar epithelium;epithelium of molar tooth -http://purl.obolibrary.org/obo/UBERON_0015840;incisor dental lamina; -http://purl.obolibrary.org/obo/UBERON_0015841;molar dental lamina; -http://purl.obolibrary.org/obo/UBERON_0015842;incisor enamel organ; -http://purl.obolibrary.org/obo/UBERON_0015843;molar enamel organ; -http://purl.obolibrary.org/obo/UBERON_0015844;molar dental papilla;molar odontogenic papilla -http://purl.obolibrary.org/obo/UBERON_0015844;molar dental papilla;molar tooth odontogenic papilla -http://purl.obolibrary.org/obo/UBERON_0015846;incisor mesenchyme; -http://purl.obolibrary.org/obo/UBERON_0015847;upper left incisor tooth; -http://purl.obolibrary.org/obo/UBERON_0015848;incisor tusk; -http://purl.obolibrary.org/obo/UBERON_0015849;canine tusk; -http://purl.obolibrary.org/obo/UBERON_0015850;upper left incisor tusk; -http://purl.obolibrary.org/obo/UBERON_0015851;upper right incisor tusk; -http://purl.obolibrary.org/obo/UBERON_0015852;narwhal tusk;median incisor tusk -http://purl.obolibrary.org/obo/UBERON_0015853;dental pulp of median incisor tusk; -http://purl.obolibrary.org/obo/UBERON_0015854;interpedicular line;inter-vertebral-pedicle line -http://purl.obolibrary.org/obo/UBERON_0015855;ventral ectodermal ridge; -http://purl.obolibrary.org/obo/UBERON_0015857;parotid lymph node;parotid node -http://purl.obolibrary.org/obo/UBERON_0015859;hepatic lymph node;hepatic node -http://purl.obolibrary.org/obo/UBERON_0015859;hepatic lymph node;lymphoglandulae hepaticae -http://purl.obolibrary.org/obo/UBERON_0015859;hepatic lymph node;lymphoglandulæ hepaticæ -http://purl.obolibrary.org/obo/UBERON_0015859;hepatic lymph node;nodi lymphoidei hepatici -http://purl.obolibrary.org/obo/UBERON_0015859;hepatic lymph node;portal lymph node -http://purl.obolibrary.org/obo/UBERON_0015860;visceral abdominal lymph node; -http://purl.obolibrary.org/obo/UBERON_0015863;gastric lymph node;gastric node -http://purl.obolibrary.org/obo/UBERON_0015863;gastric lymph node;nodi lymphoidei gastrici -http://purl.obolibrary.org/obo/UBERON_0015865;pancreaticosplenic lymph node;pancreaticosplenic node -http://purl.obolibrary.org/obo/UBERON_0015866;pyloric lymph node;pyloric node -http://purl.obolibrary.org/obo/UBERON_0015867;cystic lymph node;cystic node -http://purl.obolibrary.org/obo/UBERON_0015868;lymph node of epiploic foramen;lymph node of anterior border of epiploic foramen -http://purl.obolibrary.org/obo/UBERON_0015868;lymph node of epiploic foramen;lymph node of anterior border of omental foramen -http://purl.obolibrary.org/obo/UBERON_0015868;lymph node of epiploic foramen;node of anterior border of epiploic foramen -http://purl.obolibrary.org/obo/UBERON_0015868;lymph node of epiploic foramen;node of anterior border of omental foramen -http://purl.obolibrary.org/obo/UBERON_0015868;lymph node of epiploic foramen;nodus foraminalis -http://purl.obolibrary.org/obo/UBERON_0015868;lymph node of epiploic foramen;nodus lymphoideus foraminalis -http://purl.obolibrary.org/obo/UBERON_0015869;retropharyngeal lymph node;retropharyngeal node -http://purl.obolibrary.org/obo/UBERON_0015870;lymph node of head; -http://purl.obolibrary.org/obo/UBERON_0015871;facial lymph node;buccal lymph node -http://purl.obolibrary.org/obo/UBERON_0015872;mandibular lymph node;mandibular node -http://purl.obolibrary.org/obo/UBERON_0015872;mandibular lymph node;nodus mandibularis -http://purl.obolibrary.org/obo/UBERON_0015873;heel skin;skin of heel -http://purl.obolibrary.org/obo/UBERON_0015875;heel;calcaneal region -http://purl.obolibrary.org/obo/UBERON_0015875;heel;heel region -http://purl.obolibrary.org/obo/UBERON_0015875;heel;regio calcanea -http://purl.obolibrary.org/obo/UBERON_0015876;pelvic lymph node;lymph node of pelvis -http://purl.obolibrary.org/obo/UBERON_0015877;parietal pelvic lymph node; -http://purl.obolibrary.org/obo/UBERON_0015878;common iliac lymph node;common iliac node -http://purl.obolibrary.org/obo/UBERON_0015878;common iliac lymph node;iliac lymph node -http://purl.obolibrary.org/obo/UBERON_0015880;external iliac lymph node;external iliac node -http://purl.obolibrary.org/obo/UBERON_0015881;internal iliac lymph node;internal iliac node -http://purl.obolibrary.org/obo/UBERON_0015883;gluteal lymph node;gluteal node -http://purl.obolibrary.org/obo/UBERON_0015884;presymphysial lymph node;presymphysial node -http://purl.obolibrary.org/obo/UBERON_0015885;cymba conchae of pinna;cymba conchae of auricle -http://purl.obolibrary.org/obo/UBERON_0015886;root of nail;nail groove -http://purl.obolibrary.org/obo/UBERON_0015886;root of nail;nail root -http://purl.obolibrary.org/obo/UBERON_0015895;proximal deep inguinal lymph node;nodus inguinales profundi proximalis -http://purl.obolibrary.org/obo/UBERON_0015895;proximal deep inguinal lymph node;nodus lymphoideus inguinales profundi proximalis -http://purl.obolibrary.org/obo/UBERON_0015895;proximal deep inguinal lymph node;proximal deep inguinal node -http://purl.obolibrary.org/obo/UBERON_0015895;proximal deep inguinal lymph node;proximal inguinal lymph node -http://purl.obolibrary.org/obo/UBERON_0015895;proximal deep inguinal lymph node;rosenmuller's gland -http://purl.obolibrary.org/obo/UBERON_0015895;proximal deep inguinal lymph node;rosenmuller's node -http://purl.obolibrary.org/obo/UBERON_0015917;superficial lymph node; -http://purl.obolibrary.org/obo/UBERON_0015918;deep lymph node; -http://purl.obolibrary.org/obo/UBERON_0015922;accessory mandibular lymph node; -http://purl.obolibrary.org/obo/UBERON_0015923;superficial parotid lymph node;superficial parotid node -http://purl.obolibrary.org/obo/UBERON_0015925;superficial intraparotid lymph node;superficial intraparotid node -http://purl.obolibrary.org/obo/UBERON_0015926;cranial deep lymph node;cranial deep node -http://purl.obolibrary.org/obo/UBERON_0016374;sciatic lymph node; -http://purl.obolibrary.org/obo/UBERON_0016378;ileocolic lymph node;nodi lymphoidei ileocolici -http://purl.obolibrary.org/obo/UBERON_0016382;prescapular lymph node; -http://purl.obolibrary.org/obo/UBERON_0016386;paraaortic lymph node;lateral aortic lymph node -http://purl.obolibrary.org/obo/UBERON_0016386;paraaortic lymph node;lateral aortic node -http://purl.obolibrary.org/obo/UBERON_0016386;paraaortic lymph node;para-aortic lymph node -http://purl.obolibrary.org/obo/UBERON_0016390;auricular lymph node; -http://purl.obolibrary.org/obo/UBERON_0016391;thymic lymph node; -http://purl.obolibrary.org/obo/UBERON_0016392;mastoid lymph node;mastoid node -http://purl.obolibrary.org/obo/UBERON_0016392;mastoid lymph node;postauricular lymph node -http://purl.obolibrary.org/obo/UBERON_0016392;mastoid lymph node;retro-auricular lymph node -http://purl.obolibrary.org/obo/UBERON_0016392;mastoid lymph node;retro-auricular node -http://purl.obolibrary.org/obo/UBERON_0016393;deep parotid lymph node;deep parotid node -http://purl.obolibrary.org/obo/UBERON_0016394;anterior auricular lymph node;pre-auricular lymph node -http://purl.obolibrary.org/obo/UBERON_0016394;anterior auricular lymph node;pre-auricular node -http://purl.obolibrary.org/obo/UBERON_0016394;anterior auricular lymph node;preauricular lymph node -http://purl.obolibrary.org/obo/UBERON_0016394;anterior auricular lymph node;preauricular node -http://purl.obolibrary.org/obo/UBERON_0016395;infra-auricular lymph node;infra-auricular deep node -http://purl.obolibrary.org/obo/UBERON_0016395;infra-auricular lymph node;infra-auricular deep parotid lymph node -http://purl.obolibrary.org/obo/UBERON_0016395;infra-auricular lymph node;infra-auricular deep parotid node -http://purl.obolibrary.org/obo/UBERON_0016395;infra-auricular lymph node;infra-auricular node -http://purl.obolibrary.org/obo/UBERON_0016396;intraglandular lymph node;intraglandular node -http://purl.obolibrary.org/obo/UBERON_0016397;submental lymph node;level Ia neck node -http://purl.obolibrary.org/obo/UBERON_0016397;submental lymph node;submental node -http://purl.obolibrary.org/obo/UBERON_0016398;lymph node of lower limb; -http://purl.obolibrary.org/obo/UBERON_0016399;lymph node of upper limb; -http://purl.obolibrary.org/obo/UBERON_0016400;infrapatellar fat pad; -http://purl.obolibrary.org/obo/UBERON_0016401;pancreaticoduodenal lymph node;pancreaticoduodenal node -http://purl.obolibrary.org/obo/UBERON_0016402;mesocolic lymph node; -http://purl.obolibrary.org/obo/UBERON_0016403;thoracic wall; -http://purl.obolibrary.org/obo/UBERON_0016404;cervical vertebral arch joint;cervical facet joint -http://purl.obolibrary.org/obo/UBERON_0016404;cervical vertebral arch joint;joint of cervical vertebral arch -http://purl.obolibrary.org/obo/UBERON_0016404;cervical vertebral arch joint;joint of cervical vertebral articular process -http://purl.obolibrary.org/obo/UBERON_0016404;cervical vertebral arch joint;zygapophyseal joint of cervical vertebrae -http://purl.obolibrary.org/obo/UBERON_0016404;cervical vertebral arch joint;zygapophysial joint of cervical vertebrae -http://purl.obolibrary.org/obo/UBERON_0016405;pulmonary capillary;capillary of lung -http://purl.obolibrary.org/obo/UBERON_0016408;corona of glans penis;corona of penis -http://purl.obolibrary.org/obo/UBERON_0016408;corona of glans penis;glans corona -http://purl.obolibrary.org/obo/UBERON_0016409;base of glans penis;glans penile base -http://purl.obolibrary.org/obo/UBERON_0016410;male breast;mamma masculina -http://purl.obolibrary.org/obo/UBERON_0016412;central part of body of bony vertebral centrum;central part of body of vertebra -http://purl.obolibrary.org/obo/UBERON_0016413;medullary cavity of long bone; -http://purl.obolibrary.org/obo/UBERON_0016416;anterior chest;anterior thoracic region -http://purl.obolibrary.org/obo/UBERON_0016416;anterior chest;front of chest -http://purl.obolibrary.org/obo/UBERON_0016416;anterior chest;ventral chest -http://purl.obolibrary.org/obo/UBERON_0016418;nasion; -http://purl.obolibrary.org/obo/UBERON_0016419;bony part of vertebral arch;bony part of arch of vertebra -http://purl.obolibrary.org/obo/UBERON_0016422;compact bone of long bone; -http://purl.obolibrary.org/obo/UBERON_0016423;compact bone of diaphysis; -http://purl.obolibrary.org/obo/UBERON_0016425;epiphyseal plate of radius; -http://purl.obolibrary.org/obo/UBERON_0016426;proximal interphalangeal joint of little finger; -http://purl.obolibrary.org/obo/UBERON_0016430;palmar branch of median nerve;median nerve palmar branch -http://purl.obolibrary.org/obo/UBERON_0016430;palmar branch of median nerve;palmar branch of anterior interosseous nerve -http://purl.obolibrary.org/obo/UBERON_0016430;palmar branch of median nerve;palmar cutaneous branch of median nerve -http://purl.obolibrary.org/obo/UBERON_0016430;palmar branch of median nerve;ramus palmaris (nervus medianus) -http://purl.obolibrary.org/obo/UBERON_0016430;palmar branch of median nerve;ramus palmaris nervus interossei antebrachii anterior -http://purl.obolibrary.org/obo/UBERON_0016435;chest wall; -http://purl.obolibrary.org/obo/UBERON_0016440;glabella region of bone;glabellar surface of frontal bone -http://purl.obolibrary.org/obo/UBERON_0016442;median palatine suture;median palatine suture of skull -http://purl.obolibrary.org/obo/UBERON_0016442;median palatine suture;middle palatine suture of skull -http://purl.obolibrary.org/obo/UBERON_0016442;median palatine suture;midpalatal suture of skull -http://purl.obolibrary.org/obo/UBERON_0016446;hair of head;head hair -http://purl.obolibrary.org/obo/UBERON_0016447;hair of trunk;trunk hair -http://purl.obolibrary.org/obo/UBERON_0016452;upper secondary premolar tooth;maxillary secondary premolar tooth -http://purl.obolibrary.org/obo/UBERON_0016452;upper secondary premolar tooth;upper permanent premolar tooth -http://purl.obolibrary.org/obo/UBERON_0016453;lower secondary premolar tooth;lower permanent premolar tooth -http://purl.obolibrary.org/obo/UBERON_0016453;lower secondary premolar tooth;mandibular secondary premolar tooth -http://purl.obolibrary.org/obo/UBERON_0016454;upper central secondary incisor tooth;maxillary central permanent incisor tooth -http://purl.obolibrary.org/obo/UBERON_0016454;upper central secondary incisor tooth;maxillary central secondary incisor tooth -http://purl.obolibrary.org/obo/UBERON_0016454;upper central secondary incisor tooth;upper central permanent incisor tooth -http://purl.obolibrary.org/obo/UBERON_0016455;upper lateral secondary incisor tooth;maxillary lateral secondary incisor tooth -http://purl.obolibrary.org/obo/UBERON_0016455;upper lateral secondary incisor tooth;upper lateral permanent incisor tooth -http://purl.obolibrary.org/obo/UBERON_0016458;esophageal hiatus;esophageal hiatus of diaphragm -http://purl.obolibrary.org/obo/UBERON_0016458;esophageal hiatus;oesophageal aperture -http://purl.obolibrary.org/obo/UBERON_0016458;esophageal hiatus;oesophageal hiatus -http://purl.obolibrary.org/obo/UBERON_0016459;posterior pole of lens;polus posterior (lens) -http://purl.obolibrary.org/obo/UBERON_0016459;posterior pole of lens;polus posterior lentis -http://purl.obolibrary.org/obo/UBERON_0016462;periorbital skin;skin of orbital part of face -http://purl.obolibrary.org/obo/UBERON_0016464;dorsum of nose;nasal dorsum -http://purl.obolibrary.org/obo/UBERON_0016466;antihelix;antihelical part of pinna -http://purl.obolibrary.org/obo/UBERON_0016466;antihelix;antihelix (auricula) -http://purl.obolibrary.org/obo/UBERON_0016466;antihelix;antihelix of pinna -http://purl.obolibrary.org/obo/UBERON_0016467;antitragus;antitragal part of pinna -http://purl.obolibrary.org/obo/UBERON_0016475;skin of forehead;forehead skin -http://purl.obolibrary.org/obo/UBERON_0016476;primary incisor tooth;deciduous incisor tooth -http://purl.obolibrary.org/obo/UBERON_0016476;primary incisor tooth;temporary incisor tooth -http://purl.obolibrary.org/obo/UBERON_0016477;zygomatic process of maxilla;malar process of maxilla -http://purl.obolibrary.org/obo/UBERON_0016477;zygomatic process of maxilla;processus zygomaticus (maxilla) -http://purl.obolibrary.org/obo/UBERON_0016477;zygomatic process of maxilla;processus zygomaticus maxillae -http://purl.obolibrary.org/obo/UBERON_0016477;zygomatic process of maxilla;zygomaticoorbital process of maxilla -http://purl.obolibrary.org/obo/UBERON_0016478;liver stroma;hepatic stroma -http://purl.obolibrary.org/obo/UBERON_0016478;liver stroma;stroma of liver -http://purl.obolibrary.org/obo/UBERON_0016479;capsule of liver;capsula fibrosa perivascularis -http://purl.obolibrary.org/obo/UBERON_0016479;capsule of liver;fibrous capsule of liver -http://purl.obolibrary.org/obo/UBERON_0016479;capsule of liver;glisson's capsule -http://purl.obolibrary.org/obo/UBERON_0016479;capsule of liver;hepatic capsule -http://purl.obolibrary.org/obo/UBERON_0016479;capsule of liver;tunica fibrosa (hepar) -http://purl.obolibrary.org/obo/UBERON_0016479;capsule of liver;tunica fibrosa hepatis -http://purl.obolibrary.org/obo/UBERON_0016480;interlobular stroma of liver; -http://purl.obolibrary.org/obo/UBERON_0016481;bronchial lymph node; -http://purl.obolibrary.org/obo/UBERON_0016482;dental plaque; -http://purl.obolibrary.org/obo/UBERON_0016484;subgingival dental plaque; -http://purl.obolibrary.org/obo/UBERON_0016485;supragingival dental plaque; -http://purl.obolibrary.org/obo/UBERON_0016486;posterior fornix of vagina;pars posterior fornicis vaginae -http://purl.obolibrary.org/obo/UBERON_0016486;posterior fornix of vagina;posterior part of fornix of vagina -http://purl.obolibrary.org/obo/UBERON_0016487;anterior fornix of vagina;anterior part of fornix of vagina -http://purl.obolibrary.org/obo/UBERON_0016487;anterior fornix of vagina;pars anterior fornicis vaginae -http://purl.obolibrary.org/obo/UBERON_0016490;auditory system; -http://purl.obolibrary.org/obo/UBERON_0016491;vertebral centrum element;centrum of vertebra -http://purl.obolibrary.org/obo/UBERON_0016492;foramen spinosum of sphenoid bone;foramen spinosum -http://purl.obolibrary.org/obo/UBERON_0016493;palmaris longus muscle;musculus palmaris longus -http://purl.obolibrary.org/obo/UBERON_0016493;palmaris longus muscle;palmaris longus -http://purl.obolibrary.org/obo/UBERON_0016496;tendon of palmaris longus;palmaris longus tendon -http://purl.obolibrary.org/obo/UBERON_0016497;epicondyle of humerus; -http://purl.obolibrary.org/obo/UBERON_0016498;intestinal-cloacal junction;intestinal opening -http://purl.obolibrary.org/obo/UBERON_0016499;esophageal-pneumatic duct sphincter; -http://purl.obolibrary.org/obo/UBERON_0016500;muscularis mucosa of fundus of urinary bladder; -http://purl.obolibrary.org/obo/UBERON_0016501;muscularis mucosae of fundus of stomach; -http://purl.obolibrary.org/obo/UBERON_0016502;stomach fundus lumen;cavity of fundus of stomach -http://purl.obolibrary.org/obo/UBERON_0016502;stomach fundus lumen;lumen of fundus of stomach -http://purl.obolibrary.org/obo/UBERON_0016502;stomach fundus lumen;lumen of stomach fundus -http://purl.obolibrary.org/obo/UBERON_0016504;umbilical ring; -http://purl.obolibrary.org/obo/UBERON_0016505;Mullerian tubercle;Muellerian tubercle -http://purl.obolibrary.org/obo/UBERON_0016505;Mullerian tubercle;Müllerian tubercle -http://purl.obolibrary.org/obo/UBERON_0016505;Mullerian tubercle;mullerian tubercle -http://purl.obolibrary.org/obo/UBERON_0016508;pelvic ganglion;inferior hypogastric ganglion -http://purl.obolibrary.org/obo/UBERON_0016508;pelvic ganglion;pelvic ganglia -http://purl.obolibrary.org/obo/UBERON_0016509;cavity of right ventricle;right ventricle lumen -http://purl.obolibrary.org/obo/UBERON_0016509;cavity of right ventricle;right ventricular cavity -http://purl.obolibrary.org/obo/UBERON_0016510;epithelium of male urethra;male urethral epithelium -http://purl.obolibrary.org/obo/UBERON_0016510;epithelium of male urethra;urethral epithelium of male -http://purl.obolibrary.org/obo/UBERON_0016511;lamina propria of fundus of stomach;lamina propria mucosae of fundus of stomach -http://purl.obolibrary.org/obo/UBERON_0016512;lumen of duodenum;doudenal lumen -http://purl.obolibrary.org/obo/UBERON_0016512;lumen of duodenum;duodenal lumen -http://purl.obolibrary.org/obo/UBERON_0016513;cavity of left atrium;left atrial cavity -http://purl.obolibrary.org/obo/UBERON_0016513;cavity of left atrium;left atrium lumen -http://purl.obolibrary.org/obo/UBERON_0016514;cavity of left ventricle;left ventricular cavity -http://purl.obolibrary.org/obo/UBERON_0016515;muscular layer of prostatic urethra;muscle layer of prostatic part of urethra -http://purl.obolibrary.org/obo/UBERON_0016515;muscular layer of prostatic urethra;muscle layer of prostatic urethra -http://purl.obolibrary.org/obo/UBERON_0016515;muscular layer of prostatic urethra;muscular coat of prostatic urethra -http://purl.obolibrary.org/obo/UBERON_0016516;lamina propria of prostatic urethra;lamina propria of prostatic part of urethra -http://purl.obolibrary.org/obo/UBERON_0016516;lamina propria of prostatic urethra;lamina propria of prostatic urethra -http://purl.obolibrary.org/obo/UBERON_0016517;lumen of jejunum;jejunal lumen -http://purl.obolibrary.org/obo/UBERON_0016517;lumen of jejunum;jejunum lumen -http://purl.obolibrary.org/obo/UBERON_0016519;muscularis mucosae of jejunum; -http://purl.obolibrary.org/obo/UBERON_0016520;epithelium of female urethra;female urethral epithelium -http://purl.obolibrary.org/obo/UBERON_0016520;epithelium of female urethra;urethral epithelium of female -http://purl.obolibrary.org/obo/UBERON_0016522;cavity of right atrium;right atrial cavity -http://purl.obolibrary.org/obo/UBERON_0016524;muscle layer of spongiose part of urethra;muscle layer of penile urethra -http://purl.obolibrary.org/obo/UBERON_0016524;muscle layer of spongiose part of urethra;muscle layer of spongy urethra -http://purl.obolibrary.org/obo/UBERON_0016524;muscle layer of spongiose part of urethra;muscular coat of spongy urethra -http://purl.obolibrary.org/obo/UBERON_0016524;muscle layer of spongiose part of urethra;muscular layer of spongy urethra -http://purl.obolibrary.org/obo/UBERON_0016524;muscle layer of spongiose part of urethra;tunica muscularis urethrae spongiosa -http://purl.obolibrary.org/obo/UBERON_0016525;frontal lobe;lobi frontales -http://purl.obolibrary.org/obo/UBERON_0016525;frontal lobe;lobus frontalis -http://purl.obolibrary.org/obo/UBERON_0016526;lobe of cerebral hemisphere;cerebral cortical segment -http://purl.obolibrary.org/obo/UBERON_0016526;lobe of cerebral hemisphere;cerebral hemisphere lobe -http://purl.obolibrary.org/obo/UBERON_0016526;lobe of cerebral hemisphere;cerebral lobe -http://purl.obolibrary.org/obo/UBERON_0016526;lobe of cerebral hemisphere;lobe of cerebral cortex -http://purl.obolibrary.org/obo/UBERON_0016526;lobe of cerebral hemisphere;lobe parts of cerebral cortex -http://purl.obolibrary.org/obo/UBERON_0016526;lobe of cerebral hemisphere;lobes of the brain -http://purl.obolibrary.org/obo/UBERON_0016526;lobe of cerebral hemisphere;lobi cerebri -http://purl.obolibrary.org/obo/UBERON_0016526;lobe of cerebral hemisphere;regional organ part of cerebral cortex -http://purl.obolibrary.org/obo/UBERON_0016526;lobe of cerebral hemisphere;segment of cerebral cortex -http://purl.obolibrary.org/obo/UBERON_0016527;white matter of cerebral lobe; -http://purl.obolibrary.org/obo/UBERON_0016528;white matter of frontal lobe;frontal lobe white matter -http://purl.obolibrary.org/obo/UBERON_0016529;cortex of cerebral lobe;cortex of cerebral hemisphere lobe -http://purl.obolibrary.org/obo/UBERON_0016529;cortex of cerebral lobe;cortex of lobe of cerebral hemisphere -http://purl.obolibrary.org/obo/UBERON_0016529;cortex of cerebral lobe;gray matter of lobe of cerebral hemisphere -http://purl.obolibrary.org/obo/UBERON_0016529;cortex of cerebral lobe;neocortical part of cerebral hemisphere -http://purl.obolibrary.org/obo/UBERON_0016530;parietal cortex;cortex of parietal lobe -http://purl.obolibrary.org/obo/UBERON_0016530;parietal cortex;gray matter of parietal lobe -http://purl.obolibrary.org/obo/UBERON_0016530;parietal cortex;parietal lobe cortex -http://purl.obolibrary.org/obo/UBERON_0016530;parietal cortex;parietal neocortex -http://purl.obolibrary.org/obo/UBERON_0016531;white matter of parietal lobe; -http://purl.obolibrary.org/obo/UBERON_0016534;white matter of temporal lobe; -http://purl.obolibrary.org/obo/UBERON_0016535;white matter of occipital lobe; -http://purl.obolibrary.org/obo/UBERON_0016536;white matter of limbic lobe; -http://purl.obolibrary.org/obo/UBERON_0016538;temporal cortex;cortex of temporal lobe -http://purl.obolibrary.org/obo/UBERON_0016538;temporal cortex;temporal lobe cortex -http://purl.obolibrary.org/obo/UBERON_0016538;temporal cortex;temporal neocortex -http://purl.obolibrary.org/obo/UBERON_0016540;occipital cortex;cortex of occipital lobe -http://purl.obolibrary.org/obo/UBERON_0016540;occipital cortex;occipital lobe cortex -http://purl.obolibrary.org/obo/UBERON_0016540;occipital cortex;occipital neocortex -http://purl.obolibrary.org/obo/UBERON_0016542;limbic cortex;cortex of limbic lobe -http://purl.obolibrary.org/obo/UBERON_0016542;limbic cortex;limbic lobe cortex -http://purl.obolibrary.org/obo/UBERON_0016545;pharyngeal ectoderm; -http://purl.obolibrary.org/obo/UBERON_0016547;lower foregut region endoderm; -http://purl.obolibrary.org/obo/UBERON_0016548;central nervous system gray matter layer;CNS gray matter layer -http://purl.obolibrary.org/obo/UBERON_0016548;central nervous system gray matter layer;CNS grey matter layer -http://purl.obolibrary.org/obo/UBERON_0016548;central nervous system gray matter layer;gray matter layer of neuraxis -http://purl.obolibrary.org/obo/UBERON_0016548;central nervous system gray matter layer;grey matter layer -http://purl.obolibrary.org/obo/UBERON_0016548;central nervous system gray matter layer;grey matter layer of neuraxis -http://purl.obolibrary.org/obo/UBERON_0016549;central nervous system white matter layer;CNS white matter layer -http://purl.obolibrary.org/obo/UBERON_0016549;central nervous system white matter layer;white matter layer -http://purl.obolibrary.org/obo/UBERON_0016549;central nervous system white matter layer;white matter layer of neuraxis -http://purl.obolibrary.org/obo/UBERON_0016550;spinal cord column; -http://purl.obolibrary.org/obo/UBERON_0016551;subdivision of spinal cord ventral column; -http://purl.obolibrary.org/obo/UBERON_0016552;phlegm; -http://purl.obolibrary.org/obo/UBERON_0016553;respiratory system mucus; -http://purl.obolibrary.org/obo/UBERON_0016554;white matter of midbrain;mesencephalic white matter -http://purl.obolibrary.org/obo/UBERON_0016555;stria of telencephalon;telencephalon stria -http://purl.obolibrary.org/obo/UBERON_0016559;superficial cerebral vein;cortical cerebral vein -http://purl.obolibrary.org/obo/UBERON_0016564;deep cerebral vein; -http://purl.obolibrary.org/obo/UBERON_0016565;cerebral blood vessel; -http://purl.obolibrary.org/obo/UBERON_0016566;pit; -http://purl.obolibrary.org/obo/UBERON_0016567;statoconial membrane;otoconial-statoconial membrane -http://purl.obolibrary.org/obo/UBERON_0016568;gelatinous layer of statoconial membrane; -http://purl.obolibrary.org/obo/UBERON_0016569;subcupular meshwork of statoconial membrane; -http://purl.obolibrary.org/obo/UBERON_0016570;lamina of gray matter of spinal cord;rexed lamina -http://purl.obolibrary.org/obo/UBERON_0016574;lamina III of gray matter of spinal cord;lamina spinale III -http://purl.obolibrary.org/obo/UBERON_0016574;lamina III of gray matter of spinal cord;rexed lamina III -http://purl.obolibrary.org/obo/UBERON_0016574;lamina III of gray matter of spinal cord;spinal lamina III -http://purl.obolibrary.org/obo/UBERON_0016575;lamina IV of gray matter of spinal cord;lamina spinale IV -http://purl.obolibrary.org/obo/UBERON_0016575;lamina IV of gray matter of spinal cord;rexed lamina IV -http://purl.obolibrary.org/obo/UBERON_0016575;lamina IV of gray matter of spinal cord;spinal lamina IV -http://purl.obolibrary.org/obo/UBERON_0016576;lamina V of gray matter of spinal cord;Rexed's lamina V -http://purl.obolibrary.org/obo/UBERON_0016576;lamina V of gray matter of spinal cord;lamina 5 -http://purl.obolibrary.org/obo/UBERON_0016576;lamina V of gray matter of spinal cord;lamina V -http://purl.obolibrary.org/obo/UBERON_0016576;lamina V of gray matter of spinal cord;lamina spinalis V -http://purl.obolibrary.org/obo/UBERON_0016576;lamina V of gray matter of spinal cord;neck of the dorsal horn -http://purl.obolibrary.org/obo/UBERON_0016576;lamina V of gray matter of spinal cord;rexed lamina V -http://purl.obolibrary.org/obo/UBERON_0016576;lamina V of gray matter of spinal cord;spinal lamina V -http://purl.obolibrary.org/obo/UBERON_0016577;lamina VI of gray matter of spinal cord;rexed lamina VI -http://purl.obolibrary.org/obo/UBERON_0016577;lamina VI of gray matter of spinal cord;spinal lamina VI -http://purl.obolibrary.org/obo/UBERON_0016578;lamina VII of gray matter of spinal cord;Rexed's lamina VII -http://purl.obolibrary.org/obo/UBERON_0016578;lamina VII of gray matter of spinal cord;lamina 7 -http://purl.obolibrary.org/obo/UBERON_0016578;lamina VII of gray matter of spinal cord;lamina VII -http://purl.obolibrary.org/obo/UBERON_0016578;lamina VII of gray matter of spinal cord;lamina spinalis VII -http://purl.obolibrary.org/obo/UBERON_0016578;lamina VII of gray matter of spinal cord;rexed lamina VII -http://purl.obolibrary.org/obo/UBERON_0016578;lamina VII of gray matter of spinal cord;spinal lamina VII -http://purl.obolibrary.org/obo/UBERON_0016579;lamina VIII of gray matter of spinal cord;rexed lamina VIII -http://purl.obolibrary.org/obo/UBERON_0016579;lamina VIII of gray matter of spinal cord;spinal lamina VIII -http://purl.obolibrary.org/obo/UBERON_0016580;lamina IX of gray matter of spinal cord;rexed lamina IX -http://purl.obolibrary.org/obo/UBERON_0016580;lamina IX of gray matter of spinal cord;spinal lamina IX -http://purl.obolibrary.org/obo/UBERON_0016610;nucleus proprius of spinal cord;nucleus proprius -http://purl.obolibrary.org/obo/UBERON_0016610;nucleus proprius of spinal cord;nucleus proprius columnae posterioris -http://purl.obolibrary.org/obo/UBERON_0016610;nucleus proprius of spinal cord;nucleus proprius cornu dorsalis -http://purl.obolibrary.org/obo/UBERON_0016610;nucleus proprius of spinal cord;nucleus proprius dorsalis -http://purl.obolibrary.org/obo/UBERON_0016610;nucleus proprius of spinal cord;nucleus proprius medullae spinalis -http://purl.obolibrary.org/obo/UBERON_0016610;nucleus proprius of spinal cord;nucleus proprius of the spinal cord -http://purl.obolibrary.org/obo/UBERON_0016610;nucleus proprius of spinal cord;proper sensory nucleus -http://purl.obolibrary.org/obo/UBERON_0016611;auditory hillocks, pharyngeal arch 1 derived; -http://purl.obolibrary.org/obo/UBERON_0016612;auditory hillocks, pharyngeal arch 2 derived; -http://purl.obolibrary.org/obo/UBERON_0016618;baleen feeding system; -http://purl.obolibrary.org/obo/UBERON_0016619;Y-shaped fibrocartilage skeleton of ventral pouch;YSFS -http://purl.obolibrary.org/obo/UBERON_0016620;ventral throat pleat; -http://purl.obolibrary.org/obo/UBERON_0016621;lunge feeding organ; -http://purl.obolibrary.org/obo/UBERON_0016622;lunge feeding organ papilla; -http://purl.obolibrary.org/obo/UBERON_0016624;lunge feeding vibrissa; -http://purl.obolibrary.org/obo/UBERON_0016628;stem of Y-shaped fibrocartilage skeleton of ventral pouch;YSF stem -http://purl.obolibrary.org/obo/UBERON_0016629;branch of Y-shaped fibrocartilage skeleton of ventral pouch;YSF branch -http://purl.obolibrary.org/obo/UBERON_0016630;neurovascular bundle; -http://purl.obolibrary.org/obo/UBERON_0016631;actinopterygian frontal-parietal joint; -http://purl.obolibrary.org/obo/UBERON_0016632;isthmus of fallopian tube;isthmus tubae uterinae -http://purl.obolibrary.org/obo/UBERON_0016633;parvocellular reticular nucleus;nucleus reticularis parvocellularis -http://purl.obolibrary.org/obo/UBERON_0016633;parvocellular reticular nucleus;parvicellular reticular nucleus -http://purl.obolibrary.org/obo/UBERON_0016633;parvocellular reticular nucleus;parvocellular reticular nucleus -http://purl.obolibrary.org/obo/UBERON_0016634;premotor cortex;premotor cortex (area 6) -http://purl.obolibrary.org/obo/UBERON_0016635;paragigantocellular nucleus; -http://purl.obolibrary.org/obo/UBERON_0016636;supplemental motor cortex; -http://purl.obolibrary.org/obo/UBERON_0016637;lateral periolivary nucleus; -http://purl.obolibrary.org/obo/UBERON_0016641;subparafascicular nucleus; -http://purl.obolibrary.org/obo/UBERON_0016824;lateral paragigantocellular nucleus;lateral paragigantocellular reticular nucleus -http://purl.obolibrary.org/obo/UBERON_0016824;lateral paragigantocellular nucleus;paragigantocellular nucleus, lateral part -http://purl.obolibrary.org/obo/UBERON_0016825;dorsal paragigantocellular nucleus;dorsal paragigantocellular reticular nucleus -http://purl.obolibrary.org/obo/UBERON_0016825;dorsal paragigantocellular nucleus;paragigantocellular nucleus, dorsal part -http://purl.obolibrary.org/obo/UBERON_0016825;dorsal paragigantocellular nucleus;posterior paragigantocellular reticular nucleus -http://purl.obolibrary.org/obo/UBERON_0016826;paramedian medullary reticular complex;paramedian group (medullary reticular formation) -http://purl.obolibrary.org/obo/UBERON_0016826;paramedian medullary reticular complex;paramedian medullary reticular group -http://purl.obolibrary.org/obo/UBERON_0016827;dorsal paramedian reticular nucleus;dorsal paramedian nuclei of raphe -http://purl.obolibrary.org/obo/UBERON_0016827;dorsal paramedian reticular nucleus;dorsal paramedian nucleus -http://purl.obolibrary.org/obo/UBERON_0016827;dorsal paramedian reticular nucleus;posterior paramedian nucleus -http://purl.obolibrary.org/obo/UBERON_0016832;paratrigeminal nucleus; -http://purl.obolibrary.org/obo/UBERON_0016843;lateral nucleus of trapezoid body;LNTB -http://purl.obolibrary.org/obo/UBERON_0016848;retroambiguus nucleus;nucleus retroambigualis -http://purl.obolibrary.org/obo/UBERON_0016848;retroambiguus nucleus;nucleus retroambiguus -http://purl.obolibrary.org/obo/UBERON_0016848;retroambiguus nucleus;retroambiguus nucleus -http://purl.obolibrary.org/obo/UBERON_0016850;nucleus of phrenic nerve;nucleus nervi phrenici -http://purl.obolibrary.org/obo/UBERON_0016850;nucleus of phrenic nerve;nucleus of phrenic nerve -http://purl.obolibrary.org/obo/UBERON_0016850;nucleus of phrenic nerve;nucleus of the phrenic nerve -http://purl.obolibrary.org/obo/UBERON_0016850;nucleus of phrenic nerve;nucleus phrenicus columnae anterioris medullae spinalis -http://purl.obolibrary.org/obo/UBERON_0016850;nucleus of phrenic nerve;phrenic neural nucleus -http://purl.obolibrary.org/obo/UBERON_0016850;nucleus of phrenic nerve;phrenic nucleus -http://purl.obolibrary.org/obo/UBERON_0016850;nucleus of phrenic nerve;phrenic nucleus of anterior column of spinal cord -http://purl.obolibrary.org/obo/UBERON_0016851;renal fascia;fascia of Zuckerkandl -http://purl.obolibrary.org/obo/UBERON_0016851;renal fascia;gerota's capsule -http://purl.obolibrary.org/obo/UBERON_0016851;renal fascia;gerota's fascia -http://purl.obolibrary.org/obo/UBERON_0016852;skin scent gland;cutaneous scent gland -http://purl.obolibrary.org/obo/UBERON_0016853;interdigital gland;interdigital sinus -http://purl.obolibrary.org/obo/UBERON_0016854;dorsal part of optic cup;dorsal optic cup -http://purl.obolibrary.org/obo/UBERON_0016854;dorsal part of optic cup;dorsal region of optic cup -http://purl.obolibrary.org/obo/UBERON_0016855;ventral part of optic cup;ventral optic cup -http://purl.obolibrary.org/obo/UBERON_0016855;ventral part of optic cup;ventral region of optic cup -http://purl.obolibrary.org/obo/UBERON_0016856;digit 6;autopod digit 6 -http://purl.obolibrary.org/obo/UBERON_0016856;digit 6;digit VI -http://purl.obolibrary.org/obo/UBERON_0016856;digit 6;limb digit 6 -http://purl.obolibrary.org/obo/UBERON_0016856;digit 6;sixth digit -http://purl.obolibrary.org/obo/UBERON_0016857;digit 7;autopod digit 7 -http://purl.obolibrary.org/obo/UBERON_0016857;digit 7;digit VII -http://purl.obolibrary.org/obo/UBERON_0016857;digit 7;limb digit 7 -http://purl.obolibrary.org/obo/UBERON_0016857;digit 7;seventh digit -http://purl.obolibrary.org/obo/UBERON_0016858;digit 8;autopod digit 8 -http://purl.obolibrary.org/obo/UBERON_0016858;digit 8;digit VIII -http://purl.obolibrary.org/obo/UBERON_0016858;digit 8;eighth digit -http://purl.obolibrary.org/obo/UBERON_0016858;digit 8;limb digit 8 -http://purl.obolibrary.org/obo/UBERON_0016866;digit 6 plus metapodial segment;digit 6 digitopodial subdivision -http://purl.obolibrary.org/obo/UBERON_0016866;digit 6 plus metapodial segment;digit 6 ray -http://purl.obolibrary.org/obo/UBERON_0016866;digit 6 plus metapodial segment;digit VI plus metapodial segment -http://purl.obolibrary.org/obo/UBERON_0016867;digit 7 plus metapodial segment;digit 7 digitopodial subdivision -http://purl.obolibrary.org/obo/UBERON_0016867;digit 7 plus metapodial segment;digit 7 ray -http://purl.obolibrary.org/obo/UBERON_0016867;digit 7 plus metapodial segment;digit VII plus metapodial segment -http://purl.obolibrary.org/obo/UBERON_0016868;digit 8 plus metapodial segment;digit 8 digitopodial subdivision -http://purl.obolibrary.org/obo/UBERON_0016868;digit 8 plus metapodial segment;digit 8 ray -http://purl.obolibrary.org/obo/UBERON_0016868;digit 8 plus metapodial segment;digit VIII plus metapodial segment -http://purl.obolibrary.org/obo/UBERON_0016876;digit 6 digitopodial skeleton;digit VI digitopodial skeleton -http://purl.obolibrary.org/obo/UBERON_0016877;digit 7 digitopodial skeleton;digit VII digitopodial skeleton -http://purl.obolibrary.org/obo/UBERON_0016878;digit 8 digitopodial skeleton;digit VIII digitopodial skeleton -http://purl.obolibrary.org/obo/UBERON_0016879;future central nervous system;future CNS -http://purl.obolibrary.org/obo/UBERON_0016879;future central nervous system;presumptive central nervous system -http://purl.obolibrary.org/obo/UBERON_0016880;future nervous system;presumptive nervous system -http://purl.obolibrary.org/obo/UBERON_0016881;craniopharyngeal canal; -http://purl.obolibrary.org/obo/UBERON_0016882;intertarsal-type crurotarsal joint; -http://purl.obolibrary.org/obo/UBERON_0016883;ovarian fossa;Claudius fossa -http://purl.obolibrary.org/obo/UBERON_0016883;ovarian fossa;fossa ovarica -http://purl.obolibrary.org/obo/UBERON_0016884;shoulder joint;joint of shoulder region -http://purl.obolibrary.org/obo/UBERON_0016885;epithelium of terminal part of digestive tract; -http://purl.obolibrary.org/obo/UBERON_0016886;muscle tissue of terminal part of digestive tract; -http://purl.obolibrary.org/obo/UBERON_0016887;entire extraembryonic component;extra-embryonic component -http://purl.obolibrary.org/obo/UBERON_0016887;entire extraembryonic component;extraembryonic component -http://purl.obolibrary.org/obo/UBERON_0016888;transitional anatomical structure; -http://purl.obolibrary.org/obo/UBERON_0016890;intrahepatic branch of portal vein;intrahepatic part of portal vein -http://purl.obolibrary.org/obo/UBERON_0016896;periosteum of long bone;long bone periosteum -http://purl.obolibrary.org/obo/UBERON_0016910;frenulum of lip;frenulum labii -http://purl.obolibrary.org/obo/UBERON_0016910;frenulum of lip;labial frenulum -http://purl.obolibrary.org/obo/UBERON_0016910;frenulum of lip;lip frenulum -http://purl.obolibrary.org/obo/UBERON_0016912;frenulum of upper lip;f. labii superioris -http://purl.obolibrary.org/obo/UBERON_0016912;frenulum of upper lip;frenulum labii superioris -http://purl.obolibrary.org/obo/UBERON_0016912;frenulum of upper lip;upper lip frenulum -http://purl.obolibrary.org/obo/UBERON_0016913;frenulum of lower lip;frenulum labii inferioris -http://purl.obolibrary.org/obo/UBERON_0016913;frenulum of lower lip;lower lip frenulum -http://purl.obolibrary.org/obo/UBERON_0016914;lamina lucida;electron-lucent layer of basal lamina of connective tissue -http://purl.obolibrary.org/obo/UBERON_0016914;lamina lucida;lamina rara -http://purl.obolibrary.org/obo/UBERON_0016915;vermilion;vermilion border of lip -http://purl.obolibrary.org/obo/UBERON_0016915;vermilion;vermilion of lip -http://purl.obolibrary.org/obo/UBERON_0016918;upper vermilion;vermilion border of upper lip -http://purl.obolibrary.org/obo/UBERON_0016918;upper vermilion;vermilion of upper lip -http://purl.obolibrary.org/obo/UBERON_0016919;lower vermilion;vermilion border of lower lip -http://purl.obolibrary.org/obo/UBERON_0016919;lower vermilion;vermilion of lower lip -http://purl.obolibrary.org/obo/UBERON_0016920;descending trunk of arch of aorta;descending aortic arch -http://purl.obolibrary.org/obo/UBERON_0016920;descending trunk of arch of aorta;descending limb of arch of aorta -http://purl.obolibrary.org/obo/UBERON_0016920;descending trunk of arch of aorta;descending trunk of aortic arch -http://purl.obolibrary.org/obo/UBERON_0016923;preductal region of aortic arch;preligamental region of aortic arch -http://purl.obolibrary.org/obo/UBERON_0016924;postductal region of aortic arch;postligamental region of aortic arch -http://purl.obolibrary.org/obo/UBERON_0016925;juxtaductal region of aortic arch;isthmus aorta -http://purl.obolibrary.org/obo/UBERON_0016925;juxtaductal region of aortic arch;juxtaligamental region of aortic arch -http://purl.obolibrary.org/obo/UBERON_0016926;mucus body coating; -http://purl.obolibrary.org/obo/UBERON_0016927;mucus cocoon; -http://purl.obolibrary.org/obo/UBERON_0016928;metaphysis of fibula;fibula metaphysis -http://purl.obolibrary.org/obo/UBERON_0016928;metaphysis of fibula;fibular metaphysis -http://purl.obolibrary.org/obo/UBERON_0016929;lingual cusp of tooth;cuspis lingualis -http://purl.obolibrary.org/obo/UBERON_0016929;lingual cusp of tooth;lingual cusp -http://purl.obolibrary.org/obo/UBERON_0016930;ridge of tooth;crista of tooth -http://purl.obolibrary.org/obo/UBERON_0016930;ridge of tooth;tooth ridge -http://purl.obolibrary.org/obo/UBERON_0016931;transverse ridge of tooth;crista transversalis (corona dentis) -http://purl.obolibrary.org/obo/UBERON_0016931;transverse ridge of tooth;crista transversalis dentis -http://purl.obolibrary.org/obo/UBERON_0016931;transverse ridge of tooth;crista transversalis of tooth -http://purl.obolibrary.org/obo/UBERON_0016931;transverse ridge of tooth;transverse ridge of crown of tooth -http://purl.obolibrary.org/obo/UBERON_0016932;triangular ridge of tooth;crista triangularis (corona dentis) -http://purl.obolibrary.org/obo/UBERON_0016932;triangular ridge of tooth;crista triangularis dentis -http://purl.obolibrary.org/obo/UBERON_0016932;triangular ridge of tooth;crista triangularis of tooth -http://purl.obolibrary.org/obo/UBERON_0016932;triangular ridge of tooth;triangular ridge of crown of tooth -http://purl.obolibrary.org/obo/UBERON_0016933;oblique ridge of tooth;crista obliqua (corona dentis) -http://purl.obolibrary.org/obo/UBERON_0016933;oblique ridge of tooth;crista obliqua dentis -http://purl.obolibrary.org/obo/UBERON_0016933;oblique ridge of tooth;oblique ridge of crown of tooth -http://purl.obolibrary.org/obo/UBERON_0016934;marginal ridge of tooth;crista marginalis (dentis) -http://purl.obolibrary.org/obo/UBERON_0016934;marginal ridge of tooth;crista marginalis dentis -http://purl.obolibrary.org/obo/UBERON_0016934;marginal ridge of tooth;crista marginalis of tooth -http://purl.obolibrary.org/obo/UBERON_0016937;transverse marginal ridge of tooth;transverse marginal ridge of tooth -http://purl.obolibrary.org/obo/UBERON_0016938;mesial marginal ridge of tooth;mesial marginal ridge of tooth -http://purl.obolibrary.org/obo/UBERON_0016939;distal marginal ridge of tooth;distal marginal ridge of tooth -http://purl.obolibrary.org/obo/UBERON_0016942;rostral margin of orbit; -http://purl.obolibrary.org/obo/UBERON_0016943;lower premolar tooth;lower premolar tooth -http://purl.obolibrary.org/obo/UBERON_0016943;lower premolar tooth;mandibular premolar tooth -http://purl.obolibrary.org/obo/UBERON_0016944;upper premolar tooth;maxillary premolar tooth -http://purl.obolibrary.org/obo/UBERON_0016944;upper premolar tooth;upper premolar tooth -http://purl.obolibrary.org/obo/UBERON_0017098;retractor lateralis posterior muscle;M. retractor lateralis posterior -http://purl.obolibrary.org/obo/UBERON_0017098;retractor lateralis posterior muscle;posterior retractor lateralis -http://purl.obolibrary.org/obo/UBERON_0017099;retractor lateralis anterior muscle;M. retractor lateralis anterior -http://purl.obolibrary.org/obo/UBERON_0017099;retractor lateralis anterior muscle;anterior retractor lateralis -http://purl.obolibrary.org/obo/UBERON_0017102;flexor cruris lateralis pars accessoria muscle;M. flexor cruris lateralis pars accessoria -http://purl.obolibrary.org/obo/UBERON_0017102;flexor cruris lateralis pars accessoria muscle;pars accessoria of M. flexor cruris lateralis -http://purl.obolibrary.org/obo/UBERON_0017156;flexor cruris lateralis muscle;M. flexor cruris lateralis -http://purl.obolibrary.org/obo/UBERON_0017157;exoccipital-atlas joint;atlanto-exoccipital joint -http://purl.obolibrary.org/obo/UBERON_0017160;lumen of hemipenial sheath;hemipenis sheath lumen -http://purl.obolibrary.org/obo/UBERON_0017161;hemipenial mucuous gland;mucuous gland of hemipenis sheath -http://purl.obolibrary.org/obo/UBERON_0017162;hemipenial holocrine gland;holocrine gland of hemipenis -http://purl.obolibrary.org/obo/UBERON_0017162;hemipenial holocrine gland;holoctine gland of hemipenis sheath -http://purl.obolibrary.org/obo/UBERON_0017163;skin bony tubercle; -http://purl.obolibrary.org/obo/UBERON_0017164;dorsal cloacal gland; -http://purl.obolibrary.org/obo/UBERON_0017180;hemipenis keratinized epithelium; -http://purl.obolibrary.org/obo/UBERON_0017196;retractor lateralis muscle;m. retractor lateralis -http://purl.obolibrary.org/obo/UBERON_0017249;incisive process of premaxilla; -http://purl.obolibrary.org/obo/UBERON_0017258;placentome of cotyledonary placenta;placentome -http://purl.obolibrary.org/obo/UBERON_0017259;placental caruncle; -http://purl.obolibrary.org/obo/UBERON_0017261;intertarsal sesamoid; -http://purl.obolibrary.org/obo/UBERON_0017269;primary premolar tooth;deciduous premolar tooth -http://purl.obolibrary.org/obo/UBERON_0017269;primary premolar tooth;primary premolar -http://purl.obolibrary.org/obo/UBERON_0017270;secondary premolar tooth;permanent premolar tooth -http://purl.obolibrary.org/obo/UBERON_0017270;secondary premolar tooth;secondary premolar -http://purl.obolibrary.org/obo/UBERON_0017271;upper primary premolar tooth;maxillary primary premolar tooth -http://purl.obolibrary.org/obo/UBERON_0017271;upper primary premolar tooth;upper deciduous premolar tooth -http://purl.obolibrary.org/obo/UBERON_0017272;lower primary premolar tooth;lower deciduous premolar tooth -http://purl.obolibrary.org/obo/UBERON_0017272;lower primary premolar tooth;mandibular primary premolar tooth -http://purl.obolibrary.org/obo/UBERON_0017294;horn of hemipenis;hemipenis horn -http://purl.obolibrary.org/obo/UBERON_0017295;cingulum of tooth;cingulum (dentis) -http://purl.obolibrary.org/obo/UBERON_0017295;cingulum of tooth;cingulum dentis -http://purl.obolibrary.org/obo/UBERON_0017295;cingulum of tooth;tooth cingulum -http://purl.obolibrary.org/obo/UBERON_0017296;cingulum of incisor tooth;incisor tooth cingulum -http://purl.obolibrary.org/obo/UBERON_0017297;cingulum of canine tooth;canine tooth cingulum -http://purl.obolibrary.org/obo/UBERON_0017298;cingulum of upper incisor tooth;cingulum of maxillary incisor tooth -http://purl.obolibrary.org/obo/UBERON_0017298;cingulum of upper incisor tooth;upper incisor tooth cingulum -http://purl.obolibrary.org/obo/UBERON_0017299;cingulum of lower incisor tooth;cingulum of mandibular incisor tooth -http://purl.obolibrary.org/obo/UBERON_0017299;cingulum of lower incisor tooth;lower incisor tooth cingulum -http://purl.obolibrary.org/obo/UBERON_0017312;cingulum of upper canine tooth;cingulum of maxillary canine tooth -http://purl.obolibrary.org/obo/UBERON_0017312;cingulum of upper canine tooth;upper canine tooth cingulum -http://purl.obolibrary.org/obo/UBERON_0017313;cingulum of lower canine tooth;cingulum of mandibular canine tooth -http://purl.obolibrary.org/obo/UBERON_0017313;cingulum of lower canine tooth;lower canine tooth cingulum -http://purl.obolibrary.org/obo/UBERON_0017612;cingulum of lower jaw molar;cingulid of molar tooth -http://purl.obolibrary.org/obo/UBERON_0017613;cingulum of upper jaw molar; -http://purl.obolibrary.org/obo/UBERON_0017614;cingulum of molar tooth; -http://purl.obolibrary.org/obo/UBERON_0017615;vomerine dentition; -http://purl.obolibrary.org/obo/UBERON_0017616;afferent spiracular artery; -http://purl.obolibrary.org/obo/UBERON_0017617;efferent spiracular artery; -http://purl.obolibrary.org/obo/UBERON_0017618;extensor pollicis brevis muscle;extensor pollicis brevis -http://purl.obolibrary.org/obo/UBERON_0017620;spine appendage of head; -http://purl.obolibrary.org/obo/UBERON_0017621;cephalic spine; -http://purl.obolibrary.org/obo/UBERON_0017623;prepelvic clasper;pre-pelvic tenaculum -http://purl.obolibrary.org/obo/UBERON_0017623;prepelvic clasper;prepelvic tenaculum -http://purl.obolibrary.org/obo/UBERON_0017624;pseudoclasper; -http://purl.obolibrary.org/obo/UBERON_0017625;pterygopodial gland; -http://purl.obolibrary.org/obo/UBERON_0017626;transverse folds of rectum;Houston's valve (middle of three) -http://purl.obolibrary.org/obo/UBERON_0017626;transverse folds of rectum;Kohlrausch's fold (middle of three) -http://purl.obolibrary.org/obo/UBERON_0017626;transverse folds of rectum;plicae transversae recti -http://purl.obolibrary.org/obo/UBERON_0017626;transverse folds of rectum;set of transverse folds of rectum -http://purl.obolibrary.org/obo/UBERON_0017626;transverse folds of rectum;transverse folds of rectum -http://purl.obolibrary.org/obo/UBERON_0017627;rectal valve; -http://purl.obolibrary.org/obo/UBERON_0017628;swim bladder gas gland;gas gland -http://purl.obolibrary.org/obo/UBERON_0017629;mormyromast organ;mormyromast -http://purl.obolibrary.org/obo/UBERON_0017631;calcified structure of brain; -http://purl.obolibrary.org/obo/UBERON_0017632;pineal corpora arenacea; -http://purl.obolibrary.org/obo/UBERON_0017633;choroid plexus corpora arenacea; -http://purl.obolibrary.org/obo/UBERON_0017634;xenarthrale;xenarthrous articulation -http://purl.obolibrary.org/obo/UBERON_0017634;xenarthrale;xenarthrous joint -http://purl.obolibrary.org/obo/UBERON_0017635;paired venous dural sinus;paired dural venous sinus -http://purl.obolibrary.org/obo/UBERON_0017637;marginal venous sinus;intracranial marginal sinus -http://purl.obolibrary.org/obo/UBERON_0017638;primitive marginal sinus; -http://purl.obolibrary.org/obo/UBERON_0017639;sinus of von Szily;marginal sinus (v. Szily) -http://purl.obolibrary.org/obo/UBERON_0017639;sinus of von Szily;marginal sinus of von Szily -http://purl.obolibrary.org/obo/UBERON_0017640;unpaired venous dural sinus;unpaired dural venous sinus -http://purl.obolibrary.org/obo/UBERON_0017641;meningeal branch of spinal nerve;ramus meningeus nervorum spinales -http://purl.obolibrary.org/obo/UBERON_0017641;meningeal branch of spinal nerve;recurrent meningeal branch of spinal nerve -http://purl.obolibrary.org/obo/UBERON_0017641;meningeal branch of spinal nerve;sinuvertebral branch of spinal nerve -http://purl.obolibrary.org/obo/UBERON_0017642;communicating branch of spinal nerve;rami communicantes -http://purl.obolibrary.org/obo/UBERON_0017642;communicating branch of spinal nerve;rami communicantes of spinal nerve -http://purl.obolibrary.org/obo/UBERON_0017643;external thoracic vein; -http://purl.obolibrary.org/obo/UBERON_0017646;internal mammary vein; -http://purl.obolibrary.org/obo/UBERON_0017647;prevertebral muscle of neck; -http://purl.obolibrary.org/obo/UBERON_0017648;ventral body wall; -http://purl.obolibrary.org/obo/UBERON_0017649;dorsal body wall; -http://purl.obolibrary.org/obo/UBERON_0017650;developing mesenchymal structure; -http://purl.obolibrary.org/obo/UBERON_0017651;salivary gland primordium; -http://purl.obolibrary.org/obo/UBERON_0017652;intermaxillary gland (sensu Osteolepiformes); -http://purl.obolibrary.org/obo/UBERON_0017653;intermaxillary salivary gland; -http://purl.obolibrary.org/obo/UBERON_0017654;buccal gland; -http://purl.obolibrary.org/obo/UBERON_0017659;ventral surface of penis;urethral surface of penis -http://purl.obolibrary.org/obo/UBERON_0017670;bony part of cervical vertebral arch;bony part of arch of cervical vertebra -http://purl.obolibrary.org/obo/UBERON_0017671;bony part of vertebral arch of first sacral vertebra;bony part of vertebral arch of first sacral segment -http://purl.obolibrary.org/obo/UBERON_0017672;abdominal viscera;abdominal viscera -http://purl.obolibrary.org/obo/UBERON_0017672;abdominal viscera;abdominal viscera set -http://purl.obolibrary.org/obo/UBERON_0017672;abdominal viscera;set of abdominal viscera -http://purl.obolibrary.org/obo/UBERON_0017690;internal surface of frontal bone;facies interna (os frontale) -http://purl.obolibrary.org/obo/UBERON_0017690;internal surface of frontal bone;facies interna ossis frontalis -http://purl.obolibrary.org/obo/UBERON_0017692;internal surface of cranial base;basis cranii interna -http://purl.obolibrary.org/obo/UBERON_0017716;thenar eminence;thenar part of palm -http://purl.obolibrary.org/obo/UBERON_0017717;hypothenar eminence;hypothenar part of palm -http://purl.obolibrary.org/obo/UBERON_0017732;raphe of scrotum;scrotal raphe -http://purl.obolibrary.org/obo/UBERON_0017748;lower primary incisor tooth;lower deciduous incisor tooth -http://purl.obolibrary.org/obo/UBERON_0017748;lower primary incisor tooth;primary lower incisor tooth -http://purl.obolibrary.org/obo/UBERON_0017749;withers; -http://purl.obolibrary.org/obo/UBERON_0017750;proximal mesopodial endochondral element; -http://purl.obolibrary.org/obo/UBERON_0017751;proximal mesopodial cartilage element; -http://purl.obolibrary.org/obo/UBERON_0018099;distal mesopodial endochondral element;distal mesopodial -http://purl.obolibrary.org/obo/UBERON_0018100;distal mesopodial cartilage element; -http://purl.obolibrary.org/obo/UBERON_0018101;distal mesopodial pre-cartilage condensation; -http://purl.obolibrary.org/obo/UBERON_0018102;distal mesopodial bone; -http://purl.obolibrary.org/obo/UBERON_0018103;posterior fascicle of palatopharyngeus;fasciculus posterior (musculus palatopharyngeus) -http://purl.obolibrary.org/obo/UBERON_0018103;posterior fascicle of palatopharyngeus;fasciculus posterior musculus palatopharyngei -http://purl.obolibrary.org/obo/UBERON_0018103;posterior fascicle of palatopharyngeus;musculus sphincter palatopharyngeus -http://purl.obolibrary.org/obo/UBERON_0018103;posterior fascicle of palatopharyngeus;palatopharyngeal sphincter -http://purl.obolibrary.org/obo/UBERON_0018103;posterior fascicle of palatopharyngeus;velopharyngeal sphincter -http://purl.obolibrary.org/obo/UBERON_0018104;parafoveal part of retina; -http://purl.obolibrary.org/obo/UBERON_0018105;perifoveal part of retina; -http://purl.obolibrary.org/obo/UBERON_0018107;foveola of retina; -http://purl.obolibrary.org/obo/UBERON_0018108;superior auricular muscle;auricularis superior -http://purl.obolibrary.org/obo/UBERON_0018109;anterior auricular muscle;auricularis anterior -http://purl.obolibrary.org/obo/UBERON_0018110;posterior auricular muscle;auricularis posterior -http://purl.obolibrary.org/obo/UBERON_0018111;muscle layer of rectum;muscular coat of rectum -http://purl.obolibrary.org/obo/UBERON_0018111;muscle layer of rectum;muscularis externa of rectum -http://purl.obolibrary.org/obo/UBERON_0018111;muscle layer of rectum;rectal muscularis propria -http://purl.obolibrary.org/obo/UBERON_0018111;muscle layer of rectum;tunica muscularis (rectum) -http://purl.obolibrary.org/obo/UBERON_0018111;muscle layer of rectum;tunica muscularis recti -http://purl.obolibrary.org/obo/UBERON_0018112;rectum smooth muscle tissue;rectal smooth muscle tissue -http://purl.obolibrary.org/obo/UBERON_0018112;rectum smooth muscle tissue;rectum smooth muscle -http://purl.obolibrary.org/obo/UBERON_0018112;rectum smooth muscle tissue;smooth muscle of rectum -http://purl.obolibrary.org/obo/UBERON_0018113;left kidney interstitium;left renal stroma -http://purl.obolibrary.org/obo/UBERON_0018113;left kidney interstitium;stroma of left kidney -http://purl.obolibrary.org/obo/UBERON_0018114;right kidney interstitium;right renal stroma -http://purl.obolibrary.org/obo/UBERON_0018114;right kidney interstitium;stroma of right kidney -http://purl.obolibrary.org/obo/UBERON_0018115;left renal pelvis;pelvis of left ureter -http://purl.obolibrary.org/obo/UBERON_0018115;left renal pelvis;renal pelvis of left kidney -http://purl.obolibrary.org/obo/UBERON_0018116;right renal pelvis;pelvis of right kidney -http://purl.obolibrary.org/obo/UBERON_0018116;right renal pelvis;pelvis of right ureter -http://purl.obolibrary.org/obo/UBERON_0018117;left renal cortex interstitium;cortical interstitial tissue of left kidney -http://purl.obolibrary.org/obo/UBERON_0018118;right renal cortex interstitium;cortical interstitial tissue of right kidney -http://purl.obolibrary.org/obo/UBERON_0018119;left renal medulla interstitium;medullary interstitial tissue of left kidney -http://purl.obolibrary.org/obo/UBERON_0018120;right renal medulla interstitium;medullary interstitial tissue of right kidney -http://purl.obolibrary.org/obo/UBERON_0018131;periovarian fat pad;periovarian fat depot -http://purl.obolibrary.org/obo/UBERON_0018132;tail fat pad;tail fat depot -http://purl.obolibrary.org/obo/UBERON_0018133;monotreme bill; -http://purl.obolibrary.org/obo/UBERON_0018134;rugal fold of scrotum;folded ridge of skin of scrotum -http://purl.obolibrary.org/obo/UBERON_0018134;rugal fold of scrotum;scrotal rugae -http://purl.obolibrary.org/obo/UBERON_0018135;fibrocollagenous connective tissue; -http://purl.obolibrary.org/obo/UBERON_0018136;maxillary fenestra; -http://purl.obolibrary.org/obo/UBERON_0018137;premaxillary fenestra; -http://purl.obolibrary.org/obo/UBERON_0018140;mammary lobe; -http://purl.obolibrary.org/obo/UBERON_0018141;anterior perforated substance;anterior perforated area -http://purl.obolibrary.org/obo/UBERON_0018141;anterior perforated substance;anterior perforated space -http://purl.obolibrary.org/obo/UBERON_0018141;anterior perforated substance;olfactory area (mai) -http://purl.obolibrary.org/obo/UBERON_0018141;anterior perforated substance;substantia perforata anterior -http://purl.obolibrary.org/obo/UBERON_0018142;caudal vertebra endochondral element;caudal vertebra element -http://purl.obolibrary.org/obo/UBERON_0018142;caudal vertebra endochondral element;tail vertebra element -http://purl.obolibrary.org/obo/UBERON_0018143;transverse process of cervical vertebra; -http://purl.obolibrary.org/obo/UBERON_0018144;cervical rib; -http://purl.obolibrary.org/obo/UBERON_0018145;lumbar rib; -http://purl.obolibrary.org/obo/UBERON_0018146;transverse process of lumbar vertebra;costa lumbalis -http://purl.obolibrary.org/obo/UBERON_0018146;transverse process of lumbar vertebra;lumbar transverse process -http://purl.obolibrary.org/obo/UBERON_0018148;ampullary gland secretion; -http://purl.obolibrary.org/obo/UBERON_0018149;angle of oral opening;angle of mouth -http://purl.obolibrary.org/obo/UBERON_0018149;angle of oral opening;mouth angle -http://purl.obolibrary.org/obo/UBERON_0018150;skin of lower lip;lower lip skin -http://purl.obolibrary.org/obo/UBERON_0018151;skin of upper lip;upper lip skin -http://purl.obolibrary.org/obo/UBERON_0018152;pars flaccida of tympanic membrane;Shrapnell's membrane -http://purl.obolibrary.org/obo/UBERON_0018152;pars flaccida of tympanic membrane;pars flaccida (membrana tympanica) -http://purl.obolibrary.org/obo/UBERON_0018152;pars flaccida of tympanic membrane;pars flaccida membranae tympanicae -http://purl.obolibrary.org/obo/UBERON_0018153;pars tensa of tympanic membrane;pars tensa (membrana tympanica) -http://purl.obolibrary.org/obo/UBERON_0018153;pars tensa of tympanic membrane;pars tensa membranae tympanicae -http://purl.obolibrary.org/obo/UBERON_0018154;ligament of middle ear; -http://purl.obolibrary.org/obo/UBERON_0018155;posterior incudal ligament; -http://purl.obolibrary.org/obo/UBERON_0018156;malleal ligament; -http://purl.obolibrary.org/obo/UBERON_0018157;lateral malleal ligament; -http://purl.obolibrary.org/obo/UBERON_0018158;superior malleal ligament; -http://purl.obolibrary.org/obo/UBERON_0018159;anterior malleal ligament; -http://purl.obolibrary.org/obo/UBERON_0018160;anterior process of malleus;folian process -http://purl.obolibrary.org/obo/UBERON_0018160;anterior process of malleus;processus anterior (malleus) -http://purl.obolibrary.org/obo/UBERON_0018160;anterior process of malleus;processus anterior mallei -http://purl.obolibrary.org/obo/UBERON_0018160;anterior process of malleus;rau's process -http://purl.obolibrary.org/obo/UBERON_0018161;annular ligament of stapes;annular ligament of base of stapes -http://purl.obolibrary.org/obo/UBERON_0018161;annular ligament of stapes;annular stapedial ligament -http://purl.obolibrary.org/obo/UBERON_0018161;annular ligament of stapes;ligamentum anulare stapedis -http://purl.obolibrary.org/obo/UBERON_0018226;pulmonary part of lymphatic system;pulmonary lymphatic chain -http://purl.obolibrary.org/obo/UBERON_0018227;pulmonary lymphatic vessel;lymphatic vessel of lung -http://purl.obolibrary.org/obo/UBERON_0018228;extrahepatic branch of portal vein;extrahepatic part of portal vein -http://purl.obolibrary.org/obo/UBERON_0018229;renin-angiotensin system; -http://purl.obolibrary.org/obo/UBERON_0018230;femoral canal; -http://purl.obolibrary.org/obo/UBERON_0018231;labyrinthine artery;arteria auditiva interna -http://purl.obolibrary.org/obo/UBERON_0018231;labyrinthine artery;arteria labyrinthi -http://purl.obolibrary.org/obo/UBERON_0018231;labyrinthine artery;internal auditory artery -http://purl.obolibrary.org/obo/UBERON_0018232;axillary sweat gland;axillary apocrine sweat gland -http://purl.obolibrary.org/obo/UBERON_0018232;axillary sweat gland;sweat gland of axilla -http://purl.obolibrary.org/obo/UBERON_0018233;gland of Zeis;Zeis gland -http://purl.obolibrary.org/obo/UBERON_0018233;gland of Zeis;ciliary sebaceous gland of eyelid -http://purl.obolibrary.org/obo/UBERON_0018233;gland of Zeis;gland of Zeis -http://purl.obolibrary.org/obo/UBERON_0018233;gland of Zeis;gland of Zeiss -http://purl.obolibrary.org/obo/UBERON_0018234;stroma of pancreas;pancreatic stroma -http://purl.obolibrary.org/obo/UBERON_0018235;capsule of pancreas;pancreatic capsule -http://purl.obolibrary.org/obo/UBERON_0018236;nucleus of Bischoff;nucleus of Bishoff -http://purl.obolibrary.org/obo/UBERON_0018237;dorsal column-medial lemniscus pathway;DCML -http://purl.obolibrary.org/obo/UBERON_0018237;dorsal column-medial lemniscus pathway;DCML pathway -http://purl.obolibrary.org/obo/UBERON_0018237;dorsal column-medial lemniscus pathway;dorsal column -http://purl.obolibrary.org/obo/UBERON_0018237;dorsal column-medial lemniscus pathway;dorsal column tract -http://purl.obolibrary.org/obo/UBERON_0018237;dorsal column-medial lemniscus pathway;dorsal column-medial lemniscus pathway -http://purl.obolibrary.org/obo/UBERON_0018237;dorsal column-medial lemniscus pathway;dorsal column-medial lemniscus system -http://purl.obolibrary.org/obo/UBERON_0018237;dorsal column-medial lemniscus pathway;dorsal column-medial lemniscus tract -http://purl.obolibrary.org/obo/UBERON_0018237;dorsal column-medial lemniscus pathway;medial lemniscus tracts -http://purl.obolibrary.org/obo/UBERON_0018237;dorsal column-medial lemniscus pathway;posterior column pathway -http://purl.obolibrary.org/obo/UBERON_0018237;dorsal column-medial lemniscus pathway;posterior column-medial leminscus pathway -http://purl.obolibrary.org/obo/UBERON_0018237;dorsal column-medial lemniscus pathway;posterior column-medial lemniscus system -http://purl.obolibrary.org/obo/UBERON_0018237;dorsal column-medial lemniscus pathway;posterior column/medial leminscus pathway -http://purl.obolibrary.org/obo/UBERON_0018238;dorsal column nucleus;dorsal column nuclei -http://purl.obolibrary.org/obo/UBERON_0018239;rhombomere boundary;rhombomere junction -http://purl.obolibrary.org/obo/UBERON_0018240;panniculus carnosus muscle;panniculus carnosus -http://purl.obolibrary.org/obo/UBERON_0018240;panniculus carnosus muscle;panniculus carnosus group -http://purl.obolibrary.org/obo/UBERON_0018242;palatine bone horizontal plate;horizontal plate of palatine bone -http://purl.obolibrary.org/obo/UBERON_0018242;palatine bone horizontal plate;lamina horizontalis (os palatinum) -http://purl.obolibrary.org/obo/UBERON_0018242;palatine bone horizontal plate;lamina horizontalis ossis palatini -http://purl.obolibrary.org/obo/UBERON_0018243;thymic artery;thymic branch of internal thoracic artery -http://purl.obolibrary.org/obo/UBERON_0018244;superficial cervical thymus; -http://purl.obolibrary.org/obo/UBERON_0018245;deep cervical thymus; -http://purl.obolibrary.org/obo/UBERON_0018246;thyroid vein; -http://purl.obolibrary.org/obo/UBERON_0018247;cervical thymic artery; -http://purl.obolibrary.org/obo/UBERON_0018248;inferior superficial cervical thymic artery; -http://purl.obolibrary.org/obo/UBERON_0018249;superior superficial cervical thymic artery; -http://purl.obolibrary.org/obo/UBERON_0018250;middle thyroid artery; -http://purl.obolibrary.org/obo/UBERON_0018251;meningeal vein; -http://purl.obolibrary.org/obo/UBERON_0018252;internal pudendal vein;vena pudenda interna -http://purl.obolibrary.org/obo/UBERON_0018253;external pudendal vein;vena pudenda externa -http://purl.obolibrary.org/obo/UBERON_0018254;skeletal musculature; -http://purl.obolibrary.org/obo/UBERON_0018255;jejunal artery; -http://purl.obolibrary.org/obo/UBERON_0018256;lacrimal vein; -http://purl.obolibrary.org/obo/UBERON_0018257;submucosa of digestive tract; -http://purl.obolibrary.org/obo/UBERON_0018260;layer of muscle tissue; -http://purl.obolibrary.org/obo/UBERON_0018261;muscular coat of digestive tract;muscular layer of digestive tract -http://purl.obolibrary.org/obo/UBERON_0018261;muscular coat of digestive tract;muscularis externa of digestive tract -http://purl.obolibrary.org/obo/UBERON_0018261;muscular coat of digestive tract;tunica externa of digestive tract -http://purl.obolibrary.org/obo/UBERON_0018261;muscular coat of digestive tract;tunica muscularis of digestive tract -http://purl.obolibrary.org/obo/UBERON_0018262;dorsal zone of medial entorhinal cortex;entorhinal area, medial part, dorsal zone -http://purl.obolibrary.org/obo/UBERON_0018263;ventral zone of medial entorhinal cortex;entorhinal area, medial part, ventral zone -http://purl.obolibrary.org/obo/UBERON_0018264;dorsal lateral ganglionic eminence; -http://purl.obolibrary.org/obo/UBERON_0018265;anterior root of zygomatic arch; -http://purl.obolibrary.org/obo/UBERON_0018266;third phalanx; -http://purl.obolibrary.org/obo/UBERON_0018267;atlantal spinal nerve foramen; -http://purl.obolibrary.org/obo/UBERON_0018268;type 1 adrenal tissue; -http://purl.obolibrary.org/obo/UBERON_0018269;type 2 adrenal tissue; -http://purl.obolibrary.org/obo/UBERON_0018270;type 3 adrenal tissue; -http://purl.obolibrary.org/obo/UBERON_0018271;type 4 adrenal tissue; -http://purl.obolibrary.org/obo/UBERON_0018272;apex of paracone; -http://purl.obolibrary.org/obo/UBERON_0018273;caniniform region; -http://purl.obolibrary.org/obo/UBERON_0018274;postcingulum of deciduous premolar 5;dP5 postcingulum -http://purl.obolibrary.org/obo/UBERON_0018275;posthypocrista of deciduous premolar 5;dP5 posthypocrista -http://purl.obolibrary.org/obo/UBERON_0018276;egg tooth; -http://purl.obolibrary.org/obo/UBERON_0018277;calcareous egg tooth; -http://purl.obolibrary.org/obo/UBERON_0018278;epidermal egg tooth; -http://purl.obolibrary.org/obo/UBERON_0018279;hypoconid; -http://purl.obolibrary.org/obo/UBERON_0018281;lower deciduous premolar 5; -http://purl.obolibrary.org/obo/UBERON_0018282;lower molar 3; -http://purl.obolibrary.org/obo/UBERON_0018283;lower pharyngobranchial toothplate;lower pharyngeal toothplate -http://purl.obolibrary.org/obo/UBERON_0018284;lower premolar 1; -http://purl.obolibrary.org/obo/UBERON_0018285;lower premolar 2; -http://purl.obolibrary.org/obo/UBERON_0018286;molar 1 posteroloph;M1 posteroloph -http://purl.obolibrary.org/obo/UBERON_0018287;premolar 1 hypoconoid;p1 hypoconoid -http://purl.obolibrary.org/obo/UBERON_0018288;paracone; -http://purl.obolibrary.org/obo/UBERON_0018289;paracristid; -http://purl.obolibrary.org/obo/UBERON_0018290;postcingulum; -http://purl.obolibrary.org/obo/UBERON_0018291;posteroloph; -http://purl.obolibrary.org/obo/UBERON_0018292;posthypocrista; -http://purl.obolibrary.org/obo/UBERON_0018293;precingulum; -http://purl.obolibrary.org/obo/UBERON_0018294;premolar 1;first premolar tooth -http://purl.obolibrary.org/obo/UBERON_0018295;preprotocrista; -http://purl.obolibrary.org/obo/UBERON_0018296;replacement tooth; -http://purl.obolibrary.org/obo/UBERON_0018297;resorption pit; -http://purl.obolibrary.org/obo/UBERON_0018298;stylocone; -http://purl.obolibrary.org/obo/UBERON_0018299;mandibular symphyseal tooth;lower jaw symphyseal tooth -http://purl.obolibrary.org/obo/UBERON_0018300;upper canine 1;UC1 -http://purl.obolibrary.org/obo/UBERON_0018300;upper canine 1;upper canine UC1 -http://purl.obolibrary.org/obo/UBERON_0018301;upper deciduous premolar 5; -http://purl.obolibrary.org/obo/UBERON_0018302;upper molar 1; -http://purl.obolibrary.org/obo/UBERON_0018303;adrenal tissue;adrenal gland tissue -http://purl.obolibrary.org/obo/UBERON_0018304;post-axial region of pectoral appendage; -http://purl.obolibrary.org/obo/UBERON_0018305;bicipital surface; -http://purl.obolibrary.org/obo/UBERON_0018307;keel; -http://purl.obolibrary.org/obo/UBERON_0018308;caudal melanophore spot; -http://purl.obolibrary.org/obo/UBERON_0018309;central figure of scute;central figure -http://purl.obolibrary.org/obo/UBERON_0018310;cephalic dermal scale; -http://purl.obolibrary.org/obo/UBERON_0018312;cheek scale; -http://purl.obolibrary.org/obo/UBERON_0018313;cheek scale row; -http://purl.obolibrary.org/obo/UBERON_0018314;choanal groove; -http://purl.obolibrary.org/obo/UBERON_0018315;clasper plate; -http://purl.obolibrary.org/obo/UBERON_0018316;cuboid facet of calcaneum; -http://purl.obolibrary.org/obo/UBERON_0018317;dorsal osteoderm; -http://purl.obolibrary.org/obo/UBERON_0018318;entocarotid fossa; -http://purl.obolibrary.org/obo/UBERON_0018319;extramural oviduct; -http://purl.obolibrary.org/obo/UBERON_0018320;flexor sesamoid; -http://purl.obolibrary.org/obo/UBERON_0018321;foramen for glossopharyngeal nerve; -http://purl.obolibrary.org/obo/UBERON_0018322;fourth phalanx; -http://purl.obolibrary.org/obo/UBERON_0018323;hyoid articular area; -http://purl.obolibrary.org/obo/UBERON_0018324;hypochordal radial; -http://purl.obolibrary.org/obo/UBERON_0018325;caudal fin radial element; -http://purl.obolibrary.org/obo/UBERON_0018326;ilioischiadic foramen; -http://purl.obolibrary.org/obo/UBERON_0018328;incisura fossa; -http://purl.obolibrary.org/obo/UBERON_0018329;interpterygoid region; -http://purl.obolibrary.org/obo/UBERON_0018330;interpterygoid vacuity; -http://purl.obolibrary.org/obo/UBERON_0018331;intraramal joint; -http://purl.obolibrary.org/obo/UBERON_0018332;jugal bar;angulus tomialis -http://purl.obolibrary.org/obo/UBERON_0018333;labial cartilage; -http://purl.obolibrary.org/obo/UBERON_0018334;lateral condyle of quadrate; -http://purl.obolibrary.org/obo/UBERON_0018335;lateral dorsal aorta canal; -http://purl.obolibrary.org/obo/UBERON_0018336;maxillary shank; -http://purl.obolibrary.org/obo/UBERON_0018337;medial condyle of quadrate; -http://purl.obolibrary.org/obo/UBERON_0018338;medial cotyla; -http://purl.obolibrary.org/obo/UBERON_0018339;metotic fissure; -http://purl.obolibrary.org/obo/UBERON_0018340;midbody melanophore spot;midbody spot -http://purl.obolibrary.org/obo/UBERON_0018341;nasal process of premaxilla; -http://purl.obolibrary.org/obo/UBERON_0018342;nuchal hump; -http://purl.obolibrary.org/obo/UBERON_0018343;oviduct mucosal fold;endosalpinx -http://purl.obolibrary.org/obo/UBERON_0018344;parastyle; -http://purl.obolibrary.org/obo/UBERON_0018345;stylar shelf; -http://purl.obolibrary.org/obo/UBERON_0018346;parietal notch; -http://purl.obolibrary.org/obo/UBERON_0018347;pars canalicularis of petrosal; -http://purl.obolibrary.org/obo/UBERON_0018348;petrosal bone; -http://purl.obolibrary.org/obo/UBERON_0018349;pharyngeal apophysis;neurocranium apophysis -http://purl.obolibrary.org/obo/UBERON_0018351;precerebral fontanelle; -http://purl.obolibrary.org/obo/UBERON_0018352;prismatic cartilage;prismatic calcified tissue -http://purl.obolibrary.org/obo/UBERON_0018353;quadrate condyle; -http://purl.obolibrary.org/obo/UBERON_0018354;recessus vena jugularis; -http://purl.obolibrary.org/obo/UBERON_0018355;rictal bristle; -http://purl.obolibrary.org/obo/UBERON_0018356;rostral entotympanic element; -http://purl.obolibrary.org/obo/UBERON_0018357;sensory pore;sensory canal pore -http://purl.obolibrary.org/obo/UBERON_0018358;spina externa; -http://purl.obolibrary.org/obo/UBERON_0018359;subolfactory process; -http://purl.obolibrary.org/obo/UBERON_0018360;suborbital foramen; -http://purl.obolibrary.org/obo/UBERON_0018361;suborbital shelf; -http://purl.obolibrary.org/obo/UBERON_0018362;supracondylar tubercle; -http://purl.obolibrary.org/obo/UBERON_0018364;suprameatal foramen; -http://purl.obolibrary.org/obo/UBERON_0018365;supratemporal process; -http://purl.obolibrary.org/obo/UBERON_0018366;supratendinal bridge; -http://purl.obolibrary.org/obo/UBERON_0018367;processus ventralis of thoracic vertebra;hypapophysis, crista ventralis corporis, crista ventralis, processus latus -http://purl.obolibrary.org/obo/UBERON_0018367;processus ventralis of thoracic vertebra;processus ventralis -http://purl.obolibrary.org/obo/UBERON_0018368;processus ventrolateralis of thoracic vertebra;crista ventrolateralis, processus inferolateralis -http://purl.obolibrary.org/obo/UBERON_0018368;processus ventrolateralis of thoracic vertebra;processus ventrolateralis -http://purl.obolibrary.org/obo/UBERON_0018369;upper lateral line; -http://purl.obolibrary.org/obo/UBERON_0018370;ventral lateral line; -http://purl.obolibrary.org/obo/UBERON_0018371;ventral supracondylar tubercle; -http://purl.obolibrary.org/obo/UBERON_0018372;dorsal supracondylar tubercle; -http://purl.obolibrary.org/obo/UBERON_0018373;vidian canal;pterygoid canal -http://purl.obolibrary.org/obo/UBERON_0018374;sallet; -http://purl.obolibrary.org/obo/UBERON_0018375;deciduous premolar 5;deciduous premolar 5 -http://purl.obolibrary.org/obo/UBERON_0018375;deciduous premolar 5;primary premolar 5 tooth -http://purl.obolibrary.org/obo/UBERON_0018376;molar tooth 1;first molar tooth -http://purl.obolibrary.org/obo/UBERON_0018376;molar tooth 1;molar 1 -http://purl.obolibrary.org/obo/UBERON_0018376;molar tooth 1;molar 1 tooth -http://purl.obolibrary.org/obo/UBERON_0018377;molar tooth 3;molar 3 -http://purl.obolibrary.org/obo/UBERON_0018377;molar tooth 3;molar 3 tooth -http://purl.obolibrary.org/obo/UBERON_0018377;molar tooth 3;third molar tooth -http://purl.obolibrary.org/obo/UBERON_0018379;metacestode; -http://purl.obolibrary.org/obo/UBERON_0018382;second instar larva; -http://purl.obolibrary.org/obo/UBERON_0018385;metacercaria; -http://purl.obolibrary.org/obo/UBERON_0018388;cercaria; -http://purl.obolibrary.org/obo/UBERON_0018389;interoceptor;enteroceptor -http://purl.obolibrary.org/obo/UBERON_0018389;interoceptor;visceroceptor -http://purl.obolibrary.org/obo/UBERON_0018391;chemoreceptor; -http://purl.obolibrary.org/obo/UBERON_0018392;arterial baroreceptor; -http://purl.obolibrary.org/obo/UBERON_0018393;low-pressure baroreceptor; -http://purl.obolibrary.org/obo/UBERON_0018394;vein baroreceptor; -http://purl.obolibrary.org/obo/UBERON_0018395;cardiac baroreceptor; -http://purl.obolibrary.org/obo/UBERON_0018396;pulmonary baroreceptor; -http://purl.obolibrary.org/obo/UBERON_0018397;posterior superior alveolar artery;superior posterior alveolar artery -http://purl.obolibrary.org/obo/UBERON_0018398;superior alveolar nerve;superior dental nerve -http://purl.obolibrary.org/obo/UBERON_0018401;posterior superior alveolar nerve;posterior superior dental nerve -http://purl.obolibrary.org/obo/UBERON_0018405;inferior alveolar nerve;inferior dental nerve -http://purl.obolibrary.org/obo/UBERON_0018406;mental nerve; -http://purl.obolibrary.org/obo/UBERON_0018407;infra-orbital foramen of maxilla;foramen infraorbitale -http://purl.obolibrary.org/obo/UBERON_0018407;infra-orbital foramen of maxilla;infra-orbital foramen -http://purl.obolibrary.org/obo/UBERON_0018407;infra-orbital foramen of maxilla;infraorbital foramen -http://purl.obolibrary.org/obo/UBERON_0018408;infra-orbital nerve;infraorbital nerve -http://purl.obolibrary.org/obo/UBERON_0018409;infra-orbital groove of maxilla;infra-orbital groove -http://purl.obolibrary.org/obo/UBERON_0018409;infra-orbital groove of maxilla;infraorbital groove -http://purl.obolibrary.org/obo/UBERON_0018410;lacteal;lymphatic capillary of small intestine -http://purl.obolibrary.org/obo/UBERON_0018410;lacteal;small intestine lymphatic capillary -http://purl.obolibrary.org/obo/UBERON_0018411;ligament of hip joint;hip joint ligament -http://purl.obolibrary.org/obo/UBERON_0018412;vidian nerve;nerve of pterygoid canal -http://purl.obolibrary.org/obo/UBERON_0018412;vidian nerve;nerve of the pterygoid canal -http://purl.obolibrary.org/obo/UBERON_0018412;vidian nerve;pterygoid canal nerve -http://purl.obolibrary.org/obo/UBERON_0018412;vidian nerve;vidian nerve -http://purl.obolibrary.org/obo/UBERON_0018413;facial nerve canal;canalis nervi facialis -http://purl.obolibrary.org/obo/UBERON_0018413;facial nerve canal;facial canal -http://purl.obolibrary.org/obo/UBERON_0018415;ethmoid foramen;ethmoidal foramen -http://purl.obolibrary.org/obo/UBERON_0018415;ethmoid foramen;foramina ethmoidalia -http://purl.obolibrary.org/obo/UBERON_0018424;petrosal foramen;Foramen petrosum -http://purl.obolibrary.org/obo/UBERON_0018508;foramen of nasal bone;foramina nasalia -http://purl.obolibrary.org/obo/UBERON_0018508;foramen of nasal bone;nasal foramen -http://purl.obolibrary.org/obo/UBERON_0018529;female inguinal ring; -http://purl.obolibrary.org/obo/UBERON_0018530;male inguinal ring; -http://purl.obolibrary.org/obo/UBERON_0018531;female superficial inguinal ring;female external inguinal ring -http://purl.obolibrary.org/obo/UBERON_0018532;female deep inguinal ring;female internal inguinal ring -http://purl.obolibrary.org/obo/UBERON_0018533;crus of penis or clitoris; -http://purl.obolibrary.org/obo/UBERON_0018535;forelimb feather;feather of forelimb -http://purl.obolibrary.org/obo/UBERON_0018536;wing feather;feather of forelimb wing -http://purl.obolibrary.org/obo/UBERON_0018537;tail feather;feather of tail -http://purl.obolibrary.org/obo/UBERON_0018538;breast feather;feather of breast -http://purl.obolibrary.org/obo/UBERON_0018538;breast feather;feather of mammary region -http://purl.obolibrary.org/obo/UBERON_0018538;breast feather;feather of upper chest -http://purl.obolibrary.org/obo/UBERON_0018538;breast feather;feather of upper ventral region -http://purl.obolibrary.org/obo/UBERON_0018539;dorsal feather;feather of back -http://purl.obolibrary.org/obo/UBERON_0018539;dorsal feather;feather of dorsum -http://purl.obolibrary.org/obo/UBERON_0018540;breast feather tract;feather tract of breast -http://purl.obolibrary.org/obo/UBERON_0018540;breast feather tract;feather tract of mammary region -http://purl.obolibrary.org/obo/UBERON_0018540;breast feather tract;feather tract of upper chest -http://purl.obolibrary.org/obo/UBERON_0018540;breast feather tract;feather tract of upper ventral region -http://purl.obolibrary.org/obo/UBERON_0018540;breast feather tract;row of feathers on breast -http://purl.obolibrary.org/obo/UBERON_0018540;breast feather tract;row of feathers on mammary region -http://purl.obolibrary.org/obo/UBERON_0018540;breast feather tract;row of feathers on upper chest -http://purl.obolibrary.org/obo/UBERON_0018540;breast feather tract;row of feathers on upper ventral region -http://purl.obolibrary.org/obo/UBERON_0018542;mandibular symphyseal region; -http://purl.obolibrary.org/obo/UBERON_0018543;lumen of intestine;intestinal lumen -http://purl.obolibrary.org/obo/UBERON_0018543;lumen of intestine;intestine lumen -http://purl.obolibrary.org/obo/UBERON_0018544;trigeminal nerve muscle;muscle innervated by the trigeminal nerve -http://purl.obolibrary.org/obo/UBERON_0018544;trigeminal nerve muscle;muscles innervated by the trigeminal nerve -http://purl.obolibrary.org/obo/UBERON_0018545;nucleus of the bulbocavernosus; -http://purl.obolibrary.org/obo/UBERON_0018549;ventral wall of dorsal aorta;DA-PCV joint -http://purl.obolibrary.org/obo/UBERON_0018549;ventral wall of dorsal aorta;dorsal aorta - posterior cardinal vein joint -http://purl.obolibrary.org/obo/UBERON_0018550;secondary incisor tooth;permanent incisor -http://purl.obolibrary.org/obo/UBERON_0018550;secondary incisor tooth;permanent incisor tooth -http://purl.obolibrary.org/obo/UBERON_0018551;central incisor tooth;central incisor -http://purl.obolibrary.org/obo/UBERON_0018552;lateral incisor tooth;lateral incisor -http://purl.obolibrary.org/obo/UBERON_0018553;primary central incisor tooth;primary central incisor -http://purl.obolibrary.org/obo/UBERON_0018554;primary lateral incisor tooth;primary lateral incisor -http://purl.obolibrary.org/obo/UBERON_0018561;upper secondary canine tooth;maxillary secondary canine tooth -http://purl.obolibrary.org/obo/UBERON_0018561;upper secondary canine tooth;upper permanent canine tooth -http://purl.obolibrary.org/obo/UBERON_0018562;lower secondary canine tooth;lower permanent canine tooth -http://purl.obolibrary.org/obo/UBERON_0018562;lower secondary canine tooth;mandibular secondary canine tooth -http://purl.obolibrary.org/obo/UBERON_0018568;lower central secondary incisor tooth;lower central permanent incisor tooth -http://purl.obolibrary.org/obo/UBERON_0018568;lower central secondary incisor tooth;mandibular central permanent incisor -http://purl.obolibrary.org/obo/UBERON_0018568;lower central secondary incisor tooth;mandibular central secondary incisor tooth -http://purl.obolibrary.org/obo/UBERON_0018570;lower lateral secondary incisor tooth;lower lateral permanent incisor tooth -http://purl.obolibrary.org/obo/UBERON_0018570;lower lateral secondary incisor tooth;mandibular lateral permanent incisor -http://purl.obolibrary.org/obo/UBERON_0018570;lower lateral secondary incisor tooth;mandibular lateral secondary incisor tooth -http://purl.obolibrary.org/obo/UBERON_0018571;upper first secondary premolar tooth;maxillary first secondary premolar tooth -http://purl.obolibrary.org/obo/UBERON_0018571;upper first secondary premolar tooth;upper first permanent premolar tooth -http://purl.obolibrary.org/obo/UBERON_0018572;upper second secondary premolar tooth;maxillary second secondary premolar tooth -http://purl.obolibrary.org/obo/UBERON_0018572;upper second secondary premolar tooth;upper second permanent premolar tooth -http://purl.obolibrary.org/obo/UBERON_0018573;lower first secondary premolar tooth;lower first permanent premolar tooth -http://purl.obolibrary.org/obo/UBERON_0018573;lower first secondary premolar tooth;mandibular first secondary premolar tooth -http://purl.obolibrary.org/obo/UBERON_0018574;lower second secondary premolar tooth;lower second permanent premolar tooth -http://purl.obolibrary.org/obo/UBERON_0018574;lower second secondary premolar tooth;mandibular second secondary premolar tooth -http://purl.obolibrary.org/obo/UBERON_0018575;upper first secondary molar tooth;maxillary first secondary molar tooth -http://purl.obolibrary.org/obo/UBERON_0018575;upper first secondary molar tooth;upper first permanent molar tooth -http://purl.obolibrary.org/obo/UBERON_0018576;upper second secondary molar tooth;maxillary second secondary molar tooth -http://purl.obolibrary.org/obo/UBERON_0018576;upper second secondary molar tooth;upper second permanent tooth -http://purl.obolibrary.org/obo/UBERON_0018577;upper third secondary molar tooth;dens serotinus (upper) -http://purl.obolibrary.org/obo/UBERON_0018577;upper third secondary molar tooth;maxillary third secondary molar tooth -http://purl.obolibrary.org/obo/UBERON_0018577;upper third secondary molar tooth;upper third permanent molar tooth -http://purl.obolibrary.org/obo/UBERON_0018577;upper third secondary molar tooth;upper wisdom tooth -http://purl.obolibrary.org/obo/UBERON_0018578;lower first secondary molar tooth;lower first permanent molar tooth -http://purl.obolibrary.org/obo/UBERON_0018578;lower first secondary molar tooth;mandibular first secondary molar tooth -http://purl.obolibrary.org/obo/UBERON_0018579;lower second secondary molar tooth;lower second permanent molar tooth -http://purl.obolibrary.org/obo/UBERON_0018579;lower second secondary molar tooth;lower secondary molar 2 -http://purl.obolibrary.org/obo/UBERON_0018579;lower second secondary molar tooth;mandibular second secondary molar tooth -http://purl.obolibrary.org/obo/UBERON_0018580;lower third secondary molar tooth;lower secondary molar 3 -http://purl.obolibrary.org/obo/UBERON_0018580;lower third secondary molar tooth;lower third permanent molar tooth -http://purl.obolibrary.org/obo/UBERON_0018580;lower third secondary molar tooth;lower wisdom tooth -http://purl.obolibrary.org/obo/UBERON_0018580;lower third secondary molar tooth;mandibular third secondary molar tooth -http://purl.obolibrary.org/obo/UBERON_0018583;primary canine tooth;deciduous canine tooth -http://purl.obolibrary.org/obo/UBERON_0018583;primary canine tooth;primary tooth C -http://purl.obolibrary.org/obo/UBERON_0018583;primary canine tooth;temporary canine tooth -http://purl.obolibrary.org/obo/UBERON_0018584;secondary canine tooth;permanent canine tooth -http://purl.obolibrary.org/obo/UBERON_0018588;upper first primary molar tooth;upper first deciduous molar tooth -http://purl.obolibrary.org/obo/UBERON_0018588;upper first primary molar tooth;upper primary tooth D -http://purl.obolibrary.org/obo/UBERON_0018589;lower first primary molar tooth;lower first deciduous molar tooth -http://purl.obolibrary.org/obo/UBERON_0018589;lower first primary molar tooth;lower primary molar 1 -http://purl.obolibrary.org/obo/UBERON_0018589;lower first primary molar tooth;lower primary tooth D -http://purl.obolibrary.org/obo/UBERON_0018591;upper primary incisor tooth;upper deciduous incisor tooth -http://purl.obolibrary.org/obo/UBERON_0018593;upper central primary incisor tooth;upper central deciduous incisor tooth -http://purl.obolibrary.org/obo/UBERON_0018593;upper central primary incisor tooth;upper primary tooth A -http://purl.obolibrary.org/obo/UBERON_0018594;upper lateral primary incisor tooth;upper lateral deciduous incisor tooth -http://purl.obolibrary.org/obo/UBERON_0018594;upper lateral primary incisor tooth;upper primary tooth B -http://purl.obolibrary.org/obo/UBERON_0018595;lower central primary incisor tooth;lower central deciduous incisor tooth -http://purl.obolibrary.org/obo/UBERON_0018595;lower central primary incisor tooth;lower primary tooth A -http://purl.obolibrary.org/obo/UBERON_0018596;lower lateral primary incisor tooth;lower lateral deciduous incisor tooth -http://purl.obolibrary.org/obo/UBERON_0018596;lower lateral primary incisor tooth;lower primary tooth B -http://purl.obolibrary.org/obo/UBERON_0018596;lower lateral primary incisor tooth;mandibular lateral primary incisor -http://purl.obolibrary.org/obo/UBERON_0018597;upper primary canine tooth;upper deciduous canine tooth -http://purl.obolibrary.org/obo/UBERON_0018597;upper primary canine tooth;upper primary tooth C -http://purl.obolibrary.org/obo/UBERON_0018598;lower primary canine tooth;lower deciduous canine tooth -http://purl.obolibrary.org/obo/UBERON_0018598;lower primary canine tooth;lower primary tooth C -http://purl.obolibrary.org/obo/UBERON_0018598;lower primary canine tooth;primary lower canine tooth -http://purl.obolibrary.org/obo/UBERON_0018599;upper second primary molar tooth;upper primary tooth E -http://purl.obolibrary.org/obo/UBERON_0018599;upper second primary molar tooth;upper second deciduous molar tooth -http://purl.obolibrary.org/obo/UBERON_0018600;lower second primary molar tooth;lower primary tooth E -http://purl.obolibrary.org/obo/UBERON_0018600;lower second primary molar tooth;lower second deciduous molar tooth -http://purl.obolibrary.org/obo/UBERON_0018601;lower central incisor tooth;lower central incisor -http://purl.obolibrary.org/obo/UBERON_0018601;lower central incisor tooth;mandibular central incisor -http://purl.obolibrary.org/obo/UBERON_0018602;lower lateral incisor tooth;lower lateral incisor -http://purl.obolibrary.org/obo/UBERON_0018602;lower lateral incisor tooth;mandibular lateral incisor -http://purl.obolibrary.org/obo/UBERON_0018603;upper central incisor tooth;maxillary central incisor -http://purl.obolibrary.org/obo/UBERON_0018603;upper central incisor tooth;upper central incisor -http://purl.obolibrary.org/obo/UBERON_0018604;upper lateral incisor tooth;maxillary lateral incisor -http://purl.obolibrary.org/obo/UBERON_0018604;upper lateral incisor tooth;upper lateral incisor -http://purl.obolibrary.org/obo/UBERON_0018606;molar tooth 2;molar 2 -http://purl.obolibrary.org/obo/UBERON_0018606;molar tooth 2;molar 2 tooth -http://purl.obolibrary.org/obo/UBERON_0018606;molar tooth 2;second molar tooth -http://purl.obolibrary.org/obo/UBERON_0018607;permanent molar tooth 2;permanent second molar tooth -http://purl.obolibrary.org/obo/UBERON_0018607;permanent molar tooth 2;second permanent molar -http://purl.obolibrary.org/obo/UBERON_0018607;permanent molar tooth 2;second permanent molar tooth -http://purl.obolibrary.org/obo/UBERON_0018607;permanent molar tooth 2;secondary second molar tooth -http://purl.obolibrary.org/obo/UBERON_0018608;permanent molar tooth 1;first permanent molar -http://purl.obolibrary.org/obo/UBERON_0018608;permanent molar tooth 1;first permanent molar tooth -http://purl.obolibrary.org/obo/UBERON_0018608;permanent molar tooth 1;permanent first molar tooth -http://purl.obolibrary.org/obo/UBERON_0018613;secondary upper tooth;permanent upper tooth -http://purl.obolibrary.org/obo/UBERON_0018614;permanent lower tooth;secondary lower tooth -http://purl.obolibrary.org/obo/UBERON_0018616;primary upper tooth;deciduous upper tooth -http://purl.obolibrary.org/obo/UBERON_0018617;primary lower tooth;deciduous lower tooth -http://purl.obolibrary.org/obo/UBERON_0018621;upper canine tooth;maxillary canine tooth -http://purl.obolibrary.org/obo/UBERON_0018621;upper canine tooth;upper canine -http://purl.obolibrary.org/obo/UBERON_0018621;upper canine tooth;upper cuspid -http://purl.obolibrary.org/obo/UBERON_0018622;lower canine tooth;lower canine -http://purl.obolibrary.org/obo/UBERON_0018622;lower canine tooth;lower cuspid -http://purl.obolibrary.org/obo/UBERON_0018622;lower canine tooth;mandibular canine tooth -http://purl.obolibrary.org/obo/UBERON_0018623;lower secondary incisor tooth;lower permanent incisor tooth -http://purl.obolibrary.org/obo/UBERON_0018623;lower secondary incisor tooth;mandibular secondary incisor tooth -http://purl.obolibrary.org/obo/UBERON_0018640;premolar 2;second premolar tooth -http://purl.obolibrary.org/obo/UBERON_0018643;deciduous molar tooth 2;deciduous second molar tooth -http://purl.obolibrary.org/obo/UBERON_0018644;deciduous molar tooth 1;deciduous first molar tooth -http://purl.obolibrary.org/obo/UBERON_0018644;deciduous molar tooth 1;deciduous molar 1 -http://purl.obolibrary.org/obo/UBERON_0018644;deciduous molar tooth 1;first temporarary molar -http://purl.obolibrary.org/obo/UBERON_0018645;incisor region of dentition; -http://purl.obolibrary.org/obo/UBERON_0018646;premolar tooth 5;premolar 5 -http://purl.obolibrary.org/obo/UBERON_0018647;premolar tooth 4;premolar 4 -http://purl.obolibrary.org/obo/UBERON_0018648;upper premolar 4; -http://purl.obolibrary.org/obo/UBERON_0018649;cardiac muscle tissue of ventricle;ventricular cardiac muscle tissue -http://purl.obolibrary.org/obo/UBERON_0018649;cardiac muscle tissue of ventricle;ventricular heart muscle -http://purl.obolibrary.org/obo/UBERON_0018650;annelid peristomium; -http://purl.obolibrary.org/obo/UBERON_0018651;foramen lacerum; -http://purl.obolibrary.org/obo/UBERON_0018652;maxillary recess;recessus maxillaris -http://purl.obolibrary.org/obo/UBERON_0018653;anterior ethmoidal foramen;foramina ethmoidalia anterius -http://purl.obolibrary.org/obo/UBERON_0018654;posterior ethmoidal foramen;foramina ethmoidalia posterius -http://purl.obolibrary.org/obo/UBERON_0018655;pars endotympanica; -http://purl.obolibrary.org/obo/UBERON_0018656;puparium; -http://purl.obolibrary.org/obo/UBERON_0018657;pupal case; -http://purl.obolibrary.org/obo/UBERON_0018663;recessus basilaris;basilar papillar recess -http://purl.obolibrary.org/obo/UBERON_0018664;neck of bone element;bone neck -http://purl.obolibrary.org/obo/UBERON_0018664;neck of bone element;neck of bone -http://purl.obolibrary.org/obo/UBERON_0018667;neck of scapula;anatomical neck of scapula -http://purl.obolibrary.org/obo/UBERON_0018667;neck of scapula;collum scapulae -http://purl.obolibrary.org/obo/UBERON_0018667;neck of scapula;scapular neck -http://purl.obolibrary.org/obo/UBERON_0018673;neck of fibula;fibula neck -http://purl.obolibrary.org/obo/UBERON_0018673;neck of fibula;fibular neck -http://purl.obolibrary.org/obo/UBERON_0018674;heart vasculature;cardiac vasculature -http://purl.obolibrary.org/obo/UBERON_0018675;pelvic splanchnic nerve;nervi erigentes -http://purl.obolibrary.org/obo/UBERON_0018675;pelvic splanchnic nerve;nervi pelvici splanchnici -http://purl.obolibrary.org/obo/UBERON_0018675;pelvic splanchnic nerve;nervi splanchnici pelvici -http://purl.obolibrary.org/obo/UBERON_0018675;pelvic splanchnic nerve;nn erigentes -http://purl.obolibrary.org/obo/UBERON_0018675;pelvic splanchnic nerve;pelvic splanchnic nerve -http://purl.obolibrary.org/obo/UBERON_0018675;pelvic splanchnic nerve;pelvic splanchnic parasympathetic nerve -http://purl.obolibrary.org/obo/UBERON_0018676;renal nerve plexus;plexus renalis -http://purl.obolibrary.org/obo/UBERON_0018676;renal nerve plexus;renal plexus -http://purl.obolibrary.org/obo/UBERON_0018679;thoracic splanchnic nerve; -http://purl.obolibrary.org/obo/UBERON_0018680;greater splanchnic nerve;greater thoracic splanchnic nerve -http://purl.obolibrary.org/obo/UBERON_0018681;lesser splanchnic nerve;lesser thoracic splanchnic nerve -http://purl.obolibrary.org/obo/UBERON_0018683;lumbar splanchnic nerve;lumbar splanchnic nerve -http://purl.obolibrary.org/obo/UBERON_0018684;sacral splanchnic nerve; -http://purl.obolibrary.org/obo/UBERON_0018687;glial limiting membrane;glia limitans -http://purl.obolibrary.org/obo/UBERON_0018688;hindlimb feather;feather of hindlimb -http://purl.obolibrary.org/obo/UBERON_0018689;crural feather;tibial feather -http://purl.obolibrary.org/obo/UBERON_0018690;feather covering of ventral part of tail; -http://purl.obolibrary.org/obo/UBERON_0018691;ventral side of post-anal tail; -http://purl.obolibrary.org/obo/UBERON_0018692;dorsal side of post-anal tail; -http://purl.obolibrary.org/obo/UBERON_0018707;bladder organ;bladder -http://purl.obolibrary.org/obo/UBERON_0019042;reproductive system mucosa;genital mucosa -http://purl.obolibrary.org/obo/UBERON_0019143;intramuscular adipose tissue; -http://purl.obolibrary.org/obo/UBERON_0019189;carotid artery endothelium; -http://purl.obolibrary.org/obo/UBERON_0019190;mucous gland of lung;bronchial gland -http://purl.obolibrary.org/obo/UBERON_0019190;mucous gland of lung;bronchial mucous gland -http://purl.obolibrary.org/obo/UBERON_0019190;mucous gland of lung;peribronchial gland -http://purl.obolibrary.org/obo/UBERON_0019196;iliac artery endothelium; -http://purl.obolibrary.org/obo/UBERON_0019197;dorsal nerve of penis;nervus dorsalis penis -http://purl.obolibrary.org/obo/UBERON_0019197;dorsal nerve of penis;nervus dorsalis penis -http://purl.obolibrary.org/obo/UBERON_0019198;dorsal nerve of clitoris;nervus dorsalis clitoridis -http://purl.obolibrary.org/obo/UBERON_0019199;lateral side of chest;side of chest -http://purl.obolibrary.org/obo/UBERON_0019200;skin of anterior chest;anterior chest skin -http://purl.obolibrary.org/obo/UBERON_0019200;skin of anterior chest;skin of anterior part of thorax -http://purl.obolibrary.org/obo/UBERON_0019200;skin of anterior chest;skin of ventral chest -http://purl.obolibrary.org/obo/UBERON_0019200;skin of anterior chest;ventral chest skin -http://purl.obolibrary.org/obo/UBERON_0019201;gemellus muscle; -http://purl.obolibrary.org/obo/UBERON_0019202;inferior gemellus muscle;gemellus inferior -http://purl.obolibrary.org/obo/UBERON_0019202;inferior gemellus muscle;inferior gemellus -http://purl.obolibrary.org/obo/UBERON_0019202;inferior gemellus muscle;musculus gemellus inferior -http://purl.obolibrary.org/obo/UBERON_0019203;superior gemellus muscle;gemellus superior -http://purl.obolibrary.org/obo/UBERON_0019203;superior gemellus muscle;musculus gemellus superior -http://purl.obolibrary.org/obo/UBERON_0019203;superior gemellus muscle;superior gemellus -http://purl.obolibrary.org/obo/UBERON_0019204;skin epithelium; -http://purl.obolibrary.org/obo/UBERON_0019206;tongue papilla epithelium; -http://purl.obolibrary.org/obo/UBERON_0019207;chorioretinal region;chorioretina -http://purl.obolibrary.org/obo/UBERON_0019207;chorioretinal region;choroid and retina -http://purl.obolibrary.org/obo/UBERON_0019207;chorioretinal region;retinachoroid -http://purl.obolibrary.org/obo/UBERON_0019207;chorioretinal region;retinachoroidal region -http://purl.obolibrary.org/obo/UBERON_0019208;anterior pole of lens;polus anterior (lens) -http://purl.obolibrary.org/obo/UBERON_0019208;anterior pole of lens;polus anterior lentis -http://purl.obolibrary.org/obo/UBERON_0019210;pole of lens;lens pole -http://purl.obolibrary.org/obo/UBERON_0019210;pole of lens;lens zone -http://purl.obolibrary.org/obo/UBERON_0019211;supcapsular region of anterior region of lens; -http://purl.obolibrary.org/obo/UBERON_0019212;supcapsular region of posterior region of lens; -http://purl.obolibrary.org/obo/UBERON_0019221;digit 1 or 5; -http://purl.obolibrary.org/obo/UBERON_0019222;digit 2, 3 or 4; -http://purl.obolibrary.org/obo/UBERON_0019231;manual digit 1 or 5; -http://purl.obolibrary.org/obo/UBERON_0019232;manual digit 2, 3 or 4; -http://purl.obolibrary.org/obo/UBERON_0019241;pedal digit 1 or 5; -http://purl.obolibrary.org/obo/UBERON_0019242;pedal digit 2, 3 or 4; -http://purl.obolibrary.org/obo/UBERON_0019243;skin crease; -http://purl.obolibrary.org/obo/UBERON_0019246;palmar skin crease;skin crease of palmar part of manus -http://purl.obolibrary.org/obo/UBERON_0019247;plantar skin crease;skin crease of plantar part of pes -http://purl.obolibrary.org/obo/UBERON_0019248;early embryo; -http://purl.obolibrary.org/obo/UBERON_0019249;2-cell stage embryo; -http://purl.obolibrary.org/obo/UBERON_0019250;4-8 cell stage embryo; -http://purl.obolibrary.org/obo/UBERON_0019251;4-cell stage embryo; -http://purl.obolibrary.org/obo/UBERON_0019252;8-cell stage embryo; -http://purl.obolibrary.org/obo/UBERON_0019253;upper secondary incisor tooth;maxillary secondary incisor tooth -http://purl.obolibrary.org/obo/UBERON_0019253;upper secondary incisor tooth;upper permanent incisor -http://purl.obolibrary.org/obo/UBERON_0019253;upper secondary incisor tooth;upper permanent incisor tooth -http://purl.obolibrary.org/obo/UBERON_0019254;upper eyelash;eyelash of upper eyelid -http://purl.obolibrary.org/obo/UBERON_0019254;upper eyelash;upper eyelid cilium -http://purl.obolibrary.org/obo/UBERON_0019254;upper eyelash;upper eyelid eyelash -http://purl.obolibrary.org/obo/UBERON_0019255;lower eyelash;eyelash of lower eyelid -http://purl.obolibrary.org/obo/UBERON_0019255;lower eyelash;lower eyelid cilium -http://purl.obolibrary.org/obo/UBERON_0019255;lower eyelash;lower eyelid eyelash -http://purl.obolibrary.org/obo/UBERON_0019258;white matter of hindbrain; -http://purl.obolibrary.org/obo/UBERON_0019261;white matter of forebrain; -http://purl.obolibrary.org/obo/UBERON_0019262;white matter of myelencephalon;myelencephalic white matter -http://purl.obolibrary.org/obo/UBERON_0019263;gray matter of hindbrain;gray matter of the hindbrain -http://purl.obolibrary.org/obo/UBERON_0019264;gray matter of forebrain; -http://purl.obolibrary.org/obo/UBERON_0019267;gray matter of midbrain; -http://purl.obolibrary.org/obo/UBERON_0019269;gray matter of diencephalon; -http://purl.obolibrary.org/obo/UBERON_0019272;mesomere 1;mesomere M1 -http://purl.obolibrary.org/obo/UBERON_0019274;mesomere 2;mesomere 2 (preisthmus or caudal midbrain) -http://purl.obolibrary.org/obo/UBERON_0019274;mesomere 2;mesomere M2 -http://purl.obolibrary.org/obo/UBERON_0019275;uncinate fasciculus of the forebrain; -http://purl.obolibrary.org/obo/UBERON_0019278;inferior rostral gyrus; -http://purl.obolibrary.org/obo/UBERON_0019279;superior rostral gyrus;superior rostral gyrus -http://purl.obolibrary.org/obo/UBERON_0019280;rostral gyrus; -http://purl.obolibrary.org/obo/UBERON_0019283;lateral longitudinal stria;lateral white stria of lancisi -http://purl.obolibrary.org/obo/UBERON_0019284;rhombomere 9;r9 -http://purl.obolibrary.org/obo/UBERON_0019285;rhombomere 10;r10 -http://purl.obolibrary.org/obo/UBERON_0019286;rhombomere 11;r11 -http://purl.obolibrary.org/obo/UBERON_0019289;accessory olfactory bulb external plexiform layer;AOB, outer plexiform layer -http://purl.obolibrary.org/obo/UBERON_0019290;accessory olfactory bulb internal plexiform layer;AOB, internal plexiform layer -http://purl.obolibrary.org/obo/UBERON_0019291;white matter of metencephalon; -http://purl.obolibrary.org/obo/UBERON_0019292;white matter of pons; -http://purl.obolibrary.org/obo/UBERON_0019293;white matter of pontine tegmentum;pontine white matter tracts -http://purl.obolibrary.org/obo/UBERON_0019293;white matter of pontine tegmentum;predominantly white regional part of pontine tegmentum -http://purl.obolibrary.org/obo/UBERON_0019293;white matter of pontine tegmentum;substantia alba tegmenti pontis -http://purl.obolibrary.org/obo/UBERON_0019293;white matter of pontine tegmentum;white matter of pontile tegmentum -http://purl.obolibrary.org/obo/UBERON_0019293;white matter of pontine tegmentum;white substance of pontile tegmentum -http://purl.obolibrary.org/obo/UBERON_0019294;commissure of telencephalon;telencephalic commissures -http://purl.obolibrary.org/obo/UBERON_0019295;caudal intralaminar nuclear group;caudal group of intralaminar nuclei -http://purl.obolibrary.org/obo/UBERON_0019295;caudal intralaminar nuclear group;posterior group of intralaminar nuclei -http://purl.obolibrary.org/obo/UBERON_0019303;occipital sulcus;occipital lobe sulcus -http://purl.obolibrary.org/obo/UBERON_0019304;sensory organ epithelium; -http://purl.obolibrary.org/obo/UBERON_0019306;nose epithelium; -http://purl.obolibrary.org/obo/UBERON_0019307;epithelium of external nose;epithelium of skin of external nose -http://purl.obolibrary.org/obo/UBERON_0019308;septohypothalamic nucleus; -http://purl.obolibrary.org/obo/UBERON_0019310;glossopharyngeal nerve root;glossopharyngeal nerve root -http://purl.obolibrary.org/obo/UBERON_0019311;root of olfactory nerve;olfactory nerve root -http://purl.obolibrary.org/obo/UBERON_0019312;ventrolateral nucleus of solitary tract;ventrolateral subnucleus of solitary tract -http://purl.obolibrary.org/obo/UBERON_0019312;ventrolateral nucleus of solitary tract;ventrolateral subnucleus of solitary tract, left -http://purl.obolibrary.org/obo/UBERON_0019314;epifascicular nucleus; -http://purl.obolibrary.org/obo/UBERON_0019315;meibum; -http://purl.obolibrary.org/obo/UBERON_0019319;exocrine gland of integumental system;integumental exocrine gland -http://purl.obolibrary.org/obo/UBERON_0019319;exocrine gland of integumental system;integumental system exocrine gland -http://purl.obolibrary.org/obo/UBERON_0019320;precordial region;precordial region -http://purl.obolibrary.org/obo/UBERON_0019320;precordial region;precordium -http://purl.obolibrary.org/obo/UBERON_0019324;intraorbital lacrimal gland; -http://purl.obolibrary.org/obo/UBERON_0019325;exorbital lacrimal gland;exorbital lacrimal gland -http://purl.obolibrary.org/obo/UBERON_0019326;lobe of lacrimal gland;lacrimal gland zone -http://purl.obolibrary.org/obo/UBERON_0019326;lobe of lacrimal gland;zone of lacrimal gland -http://purl.obolibrary.org/obo/UBERON_0019327;orbital lobe of lacrimal gland;orbital part of lacrimal gland -http://purl.obolibrary.org/obo/UBERON_0019327;orbital lobe of lacrimal gland;pars orbitalis (glandula lacrimalis) -http://purl.obolibrary.org/obo/UBERON_0019327;orbital lobe of lacrimal gland;pars orbitalis glandulae lacrimalis -http://purl.obolibrary.org/obo/UBERON_0019328;palpebral lobe of lacrimal gland;palpebral part of lacrimal gland -http://purl.obolibrary.org/obo/UBERON_0019328;palpebral lobe of lacrimal gland;pars palpebralis glandulae lacrimalis -http://purl.obolibrary.org/obo/UBERON_0020358;accessory XI nerve nucleus;accessory neural nucleus -http://purl.obolibrary.org/obo/UBERON_0020550;auricular blood vessel; -http://purl.obolibrary.org/obo/UBERON_0022229;posterior amygdaloid nucleus;posterior amygdalar nucleus -http://purl.obolibrary.org/obo/UBERON_0022230;retrohippocampal region;retrohippocampal cortex -http://purl.obolibrary.org/obo/UBERON_0022232;secondary visual cortex; -http://purl.obolibrary.org/obo/UBERON_0022234;medial longitudinal stria;medial longitudinal stria of lancisi -http://purl.obolibrary.org/obo/UBERON_0022234;medial longitudinal stria;medial stripe of lancisi -http://purl.obolibrary.org/obo/UBERON_0022234;medial longitudinal stria;medial white stria of lancisi -http://purl.obolibrary.org/obo/UBERON_0022234;medial longitudinal stria;stria of lancisi -http://purl.obolibrary.org/obo/UBERON_0022235;peduncle of diencephalon;diencephalon peduncle -http://purl.obolibrary.org/obo/UBERON_0022236;peduncle of thalamus;thalamic peduncle -http://purl.obolibrary.org/obo/UBERON_0022237;anterior thalamic peduncle;anterior peduncle -http://purl.obolibrary.org/obo/UBERON_0022237;anterior thalamic peduncle;frontal peduncle -http://purl.obolibrary.org/obo/UBERON_0022237;anterior thalamic peduncle;frontal thalamic peduncle -http://purl.obolibrary.org/obo/UBERON_0022237;anterior thalamic peduncle;pedunculus rostralis thalami -http://purl.obolibrary.org/obo/UBERON_0022237;anterior thalamic peduncle;rostral peduncle of thalamus -http://purl.obolibrary.org/obo/UBERON_0022241;superior thalamic peduncle;centroparietal peduncle -http://purl.obolibrary.org/obo/UBERON_0022241;superior thalamic peduncle;centroparietal thalamic peduncle -http://purl.obolibrary.org/obo/UBERON_0022241;superior thalamic peduncle;middle thalamic peduncle -http://purl.obolibrary.org/obo/UBERON_0022241;superior thalamic peduncle;pedunculus thalami superior -http://purl.obolibrary.org/obo/UBERON_0022241;superior thalamic peduncle;superior peduncle -http://purl.obolibrary.org/obo/UBERON_0022242;inferior thalamic peduncle;inferior peduncle -http://purl.obolibrary.org/obo/UBERON_0022242;inferior thalamic peduncle;pedunculus inferior thalami -http://purl.obolibrary.org/obo/UBERON_0022242;inferior thalamic peduncle;pedunculus thalami caudalis -http://purl.obolibrary.org/obo/UBERON_0022242;inferior thalamic peduncle;pedunculus thalami inferior -http://purl.obolibrary.org/obo/UBERON_0022242;inferior thalamic peduncle;pedunculus thalamicus inferior -http://purl.obolibrary.org/obo/UBERON_0022242;inferior thalamic peduncle;temporal peduncle -http://purl.obolibrary.org/obo/UBERON_0022242;inferior thalamic peduncle;temporal thalamic peduncle -http://purl.obolibrary.org/obo/UBERON_0022243;posterior thalamic peduncle;occipital peduncle -http://purl.obolibrary.org/obo/UBERON_0022243;posterior thalamic peduncle;occipital thalamic peduncle -http://purl.obolibrary.org/obo/UBERON_0022243;posterior thalamic peduncle;pedunculus ventrocaudalis thalami -http://purl.obolibrary.org/obo/UBERON_0022243;posterior thalamic peduncle;posterior peduncle -http://purl.obolibrary.org/obo/UBERON_0022243;posterior thalamic peduncle;ventrocaudal thalamic peduncle -http://purl.obolibrary.org/obo/UBERON_0022244;anterior orbital gyrus; -http://purl.obolibrary.org/obo/UBERON_0022246;superior longitudinal fasciculus; -http://purl.obolibrary.org/obo/UBERON_0022247;forebrain ipsilateral fiber tracts; -http://purl.obolibrary.org/obo/UBERON_0022248;cerebral nerve fasciculus;cerebral fascicle -http://purl.obolibrary.org/obo/UBERON_0022248;cerebral nerve fasciculus;cerebral fasciculus -http://purl.obolibrary.org/obo/UBERON_0022248;cerebral nerve fasciculus;nerve fascicle of telencephalon -http://purl.obolibrary.org/obo/UBERON_0022248;cerebral nerve fasciculus;telencephalic fascicle -http://purl.obolibrary.org/obo/UBERON_0022248;cerebral nerve fasciculus;telencephalic nerve fascicle -http://purl.obolibrary.org/obo/UBERON_0022250;subcallosal fasciculus;fasciculus occipitofrontalis superior -http://purl.obolibrary.org/obo/UBERON_0022250;subcallosal fasciculus;fasciculus subcallosus -http://purl.obolibrary.org/obo/UBERON_0022250;subcallosal fasciculus;superior occipitofrontal fasciculus -http://purl.obolibrary.org/obo/UBERON_0022252;precentral sulcus; -http://purl.obolibrary.org/obo/UBERON_0022254;ventral thalamic fasciculus;area subthalamica tegmentalis, pars dorsomedialis -http://purl.obolibrary.org/obo/UBERON_0022254;ventral thalamic fasciculus;area tegmentalis H1 -http://purl.obolibrary.org/obo/UBERON_0022254;ventral thalamic fasciculus;area tegmentalis, pars dorsalis -http://purl.obolibrary.org/obo/UBERON_0022254;ventral thalamic fasciculus;area tegmentalis, pars dorsalis (Forel) -http://purl.obolibrary.org/obo/UBERON_0022254;ventral thalamic fasciculus;campus foreli (pars dorsalis) -http://purl.obolibrary.org/obo/UBERON_0022254;ventral thalamic fasciculus;fasciculus thalamicus -http://purl.obolibrary.org/obo/UBERON_0022254;ventral thalamic fasciculus;fasciculus thalamicus [h1] -http://purl.obolibrary.org/obo/UBERON_0022254;ventral thalamic fasciculus;fasciculus thalamicus hypothalami -http://purl.obolibrary.org/obo/UBERON_0022254;ventral thalamic fasciculus;field H1 -http://purl.obolibrary.org/obo/UBERON_0022254;ventral thalamic fasciculus;forel's field h1 -http://purl.obolibrary.org/obo/UBERON_0022254;ventral thalamic fasciculus;forelli campus I -http://purl.obolibrary.org/obo/UBERON_0022254;ventral thalamic fasciculus;h1 bundle of Forel -http://purl.obolibrary.org/obo/UBERON_0022254;ventral thalamic fasciculus;h1 field of Forel -http://purl.obolibrary.org/obo/UBERON_0022254;ventral thalamic fasciculus;tegmental area h1 -http://purl.obolibrary.org/obo/UBERON_0022254;ventral thalamic fasciculus;thalamic fasciculus -http://purl.obolibrary.org/obo/UBERON_0022254;ventral thalamic fasciculus;thalamic fasciculus [h1] -http://purl.obolibrary.org/obo/UBERON_0022256;subthalamic fasciculus; -http://purl.obolibrary.org/obo/UBERON_0022258;endolemniscal nucleus; -http://purl.obolibrary.org/obo/UBERON_0022259;white matter radiation;neuraxis radiation -http://purl.obolibrary.org/obo/UBERON_0022259;white matter radiation;radiation of neuraxis -http://purl.obolibrary.org/obo/UBERON_0022260;radiation of cerebral hemisphere;cerebral hemisphere radiation -http://purl.obolibrary.org/obo/UBERON_0022262;auditory radiation;acoustic radiation -http://purl.obolibrary.org/obo/UBERON_0022262;auditory radiation;geniculotemporal radiation -http://purl.obolibrary.org/obo/UBERON_0022262;auditory radiation;geniculotemporal tract -http://purl.obolibrary.org/obo/UBERON_0022262;auditory radiation;radiatio acustica -http://purl.obolibrary.org/obo/UBERON_0022264;optic radiation;Gratiolet's radiation -http://purl.obolibrary.org/obo/UBERON_0022268;planum temporale; -http://purl.obolibrary.org/obo/UBERON_0022271;corticopontine fibers;cortico-pontine fibers -http://purl.obolibrary.org/obo/UBERON_0022271;corticopontine fibers;cortico-pontine fibers, pontine part -http://purl.obolibrary.org/obo/UBERON_0022271;corticopontine fibers;corticopontine fibers -http://purl.obolibrary.org/obo/UBERON_0022271;corticopontine fibers;corticopontine fibers of pons -http://purl.obolibrary.org/obo/UBERON_0022271;corticopontine fibers;corticopontine fibers set -http://purl.obolibrary.org/obo/UBERON_0022271;corticopontine fibers;corticopontine fibres -http://purl.obolibrary.org/obo/UBERON_0022271;corticopontine fibers;fibrae corticopontinae -http://purl.obolibrary.org/obo/UBERON_0022271;corticopontine fibers;tractus corticopontinus -http://purl.obolibrary.org/obo/UBERON_0022272;corticobulbar tract; -http://purl.obolibrary.org/obo/UBERON_0022273;lacrimal lake;lacrymal lake -http://purl.obolibrary.org/obo/UBERON_0022273;lacrimal lake;lacus lacrimalis -http://purl.obolibrary.org/obo/UBERON_0022274;lacrimal papilla;papilla lacrimalis -http://purl.obolibrary.org/obo/UBERON_0022275;colic flexure;flexura coli -http://purl.obolibrary.org/obo/UBERON_0022276;splenic flexure of colon;flexura coli splenica -http://purl.obolibrary.org/obo/UBERON_0022276;splenic flexure of colon;left colic flexure -http://purl.obolibrary.org/obo/UBERON_0022276;splenic flexure of colon;splenic flexure -http://purl.obolibrary.org/obo/UBERON_0022276;splenic flexure of colon;splenic flexure of colon -http://purl.obolibrary.org/obo/UBERON_0022277;hepatic flexure of colon;flexura coli heaptica -http://purl.obolibrary.org/obo/UBERON_0022277;hepatic flexure of colon;hepatic flexure -http://purl.obolibrary.org/obo/UBERON_0022277;hepatic flexure of colon;hepatic flexure of colon -http://purl.obolibrary.org/obo/UBERON_0022277;hepatic flexure of colon;right colic flexure -http://purl.obolibrary.org/obo/UBERON_0022278;nucleus of pudendal nerve;Onuf's nucleus -http://purl.obolibrary.org/obo/UBERON_0022278;nucleus of pudendal nerve;nucleus of Onuf -http://purl.obolibrary.org/obo/UBERON_0022278;nucleus of pudendal nerve;pudendal neural nucleus -http://purl.obolibrary.org/obo/UBERON_0022279;strand of hair on external ear;hair of external ear -http://purl.obolibrary.org/obo/UBERON_0022279;strand of hair on external ear;hair of tragus -http://purl.obolibrary.org/obo/UBERON_0022279;strand of hair on external ear;tragus hair -http://purl.obolibrary.org/obo/UBERON_0022280;epithelium of crypt of Lieberkuhn of small intestine;epithelium of small intestinal crypt of Lieberkuhn -http://purl.obolibrary.org/obo/UBERON_0022281;epithelium of crypt of Lieberkuhn of large intestine; -http://purl.obolibrary.org/obo/UBERON_0022282;secretion of Harderian gland;Harderian gland fluid -http://purl.obolibrary.org/obo/UBERON_0022282;secretion of Harderian gland;Harderian gland secretion -http://purl.obolibrary.org/obo/UBERON_0022283;pineal recess of third ventricle;pineal recess -http://purl.obolibrary.org/obo/UBERON_0022283;pineal recess of third ventricle;pineal recess of 3V -http://purl.obolibrary.org/obo/UBERON_0022283;pineal recess of third ventricle;recessus pinealis -http://purl.obolibrary.org/obo/UBERON_0022284;lacrimal gland bud; -http://purl.obolibrary.org/obo/UBERON_0022285;strand of tylotrich hair; -http://purl.obolibrary.org/obo/UBERON_0022286;secretion of nictitans gland;nictitans gland fluid -http://purl.obolibrary.org/obo/UBERON_0022286;secretion of nictitans gland;nictitans gland secretion -http://purl.obolibrary.org/obo/UBERON_0022287;tear film;precorneal film -http://purl.obolibrary.org/obo/UBERON_0022288;surface of eyeball; -http://purl.obolibrary.org/obo/UBERON_0022292;splenic arteriole; -http://purl.obolibrary.org/obo/UBERON_0022293;reproductive gland secretion; -http://purl.obolibrary.org/obo/UBERON_0022294;morphological boundary; -http://purl.obolibrary.org/obo/UBERON_0022295;integumental surface; -http://purl.obolibrary.org/obo/UBERON_0022296;inferior palpebral branch of infra-orbital nerve;rami palpebrales inferiores nervi infraorbitalis -http://purl.obolibrary.org/obo/UBERON_0022297;palpebral branch of infra-orbital nerve;palpebral branch of maxillary nerve -http://purl.obolibrary.org/obo/UBERON_0022298;lower eyelid nerve; -http://purl.obolibrary.org/obo/UBERON_0022299;upper eyelid nerve; -http://purl.obolibrary.org/obo/UBERON_0022300;nasociliary nerve;nasal nerve -http://purl.obolibrary.org/obo/UBERON_0022300;nasociliary nerve;nasociliary -http://purl.obolibrary.org/obo/UBERON_0022300;nasociliary nerve;nasociliary nerve -http://purl.obolibrary.org/obo/UBERON_0022300;nasociliary nerve;nervus nasociliaris -http://purl.obolibrary.org/obo/UBERON_0022301;long ciliary nerve;long ciliary nerve -http://purl.obolibrary.org/obo/UBERON_0022301;long ciliary nerve;nervi ciliares longi -http://purl.obolibrary.org/obo/UBERON_0022302;short ciliary nerve;lower branch of ciliary ganglion -http://purl.obolibrary.org/obo/UBERON_0022302;short ciliary nerve;nervi ciliares breves -http://purl.obolibrary.org/obo/UBERON_0022302;short ciliary nerve;nervi ciliares brevis -http://purl.obolibrary.org/obo/UBERON_0022302;short ciliary nerve;short ciliary nerve -http://purl.obolibrary.org/obo/UBERON_0022303;Cell layer;lamina -http://purl.obolibrary.org/obo/UBERON_0022303;Cell layer;layer -http://purl.obolibrary.org/obo/UBERON_0022303;nervous system cell part layer;lamina -http://purl.obolibrary.org/obo/UBERON_0022303;nervous system cell part layer;layer -http://purl.obolibrary.org/obo/UBERON_0022314;superior colliculus stratum zonale; -http://purl.obolibrary.org/obo/UBERON_0022315;primary motor cortex layer 5; -http://purl.obolibrary.org/obo/UBERON_0022316;primary motor cortex layer 6; -http://purl.obolibrary.org/obo/UBERON_0022317;olfactory cortex layer 1;layer 1 of olfactory cortex -http://purl.obolibrary.org/obo/UBERON_0022317;olfactory cortex layer 1;olfactory cortex plexiform layer -http://purl.obolibrary.org/obo/UBERON_0022318;olfactory cortex layer 2;layer 2 of olfactory cortex -http://purl.obolibrary.org/obo/UBERON_0022319;lateral geniculate nucleus parvocellular layer;LGN P-cell layer -http://purl.obolibrary.org/obo/UBERON_0022320;dorsal cochlear nucleus pyramidal cell layer; -http://purl.obolibrary.org/obo/UBERON_0022323;entorhinal cortex layer 4; -http://purl.obolibrary.org/obo/UBERON_0022325;entorhinal cortex layer 5;entorhinal cortex layer V -http://purl.obolibrary.org/obo/UBERON_0022326;molecular layer of dorsal cochlear nucleus;MoC -http://purl.obolibrary.org/obo/UBERON_0022326;molecular layer of dorsal cochlear nucleus;dorsal cochlear nucleus molecular layer -http://purl.obolibrary.org/obo/UBERON_0022327;entorhinal cortex layer 3;entorhinal cortex, pyramidal layer -http://purl.obolibrary.org/obo/UBERON_0022327;entorhinal cortex layer 3;pyramidal layer of entorhinal cortex -http://purl.obolibrary.org/obo/UBERON_0022329;entorhinal cortex layer 6;entorhinal cortex layer VI -http://purl.obolibrary.org/obo/UBERON_0022336;entorhinal cortex layer 1;molecular layer of entorhinal cortex -http://purl.obolibrary.org/obo/UBERON_0022336;entorhinal cortex layer 1;superficial plexiform layer of entorhinal cortex -http://purl.obolibrary.org/obo/UBERON_0022337;entorhinal cortex layer 2; -http://purl.obolibrary.org/obo/UBERON_0022340;piriform cortex layer 2a; -http://purl.obolibrary.org/obo/UBERON_0022341;piriform cortex layer 2b; -http://purl.obolibrary.org/obo/UBERON_0022346;dentate gyrus molecular layer middle; -http://purl.obolibrary.org/obo/UBERON_0022347;dentate gyrus molecular layer inner;DG inner stratum moleculare -http://purl.obolibrary.org/obo/UBERON_0022347;dentate gyrus molecular layer inner;inner layer of dentate gyrus molecular layer -http://purl.obolibrary.org/obo/UBERON_0022348;dentate gyrus granule cell layer inner blade; -http://purl.obolibrary.org/obo/UBERON_0022349;dentate gyrus granule cell layer outer blade; -http://purl.obolibrary.org/obo/UBERON_0022350;visceral serous membrane;visceral wall of serous membrane -http://purl.obolibrary.org/obo/UBERON_0022351;parietal serous membrane;parietal wall of serous membrane -http://purl.obolibrary.org/obo/UBERON_0022352;medial orbital frontal cortex;medial orbitofrontal cortex -http://purl.obolibrary.org/obo/UBERON_0022353;posterior cingulate cortex; -http://purl.obolibrary.org/obo/UBERON_0022355;basal layer of endometrium;pars basalis of endometrium -http://purl.obolibrary.org/obo/UBERON_0022355;basal layer of endometrium;stratum basalis of endometrium -http://purl.obolibrary.org/obo/UBERON_0022356;outer layer of endometrium;functional layer of endometrium -http://purl.obolibrary.org/obo/UBERON_0022356;outer layer of endometrium;stratum functionalis of endometrium -http://purl.obolibrary.org/obo/UBERON_0022357;mesentery of ileum;ileal mesentery -http://purl.obolibrary.org/obo/UBERON_0022357;mesentery of ileum;ileum mesentery -http://purl.obolibrary.org/obo/UBERON_0022357;mesentery of ileum;mesoileum -http://purl.obolibrary.org/obo/UBERON_0022358;placenta blood vessel; -http://purl.obolibrary.org/obo/UBERON_0022360;male mammary gland duct; -http://purl.obolibrary.org/obo/UBERON_0022361;lung field;lung field -http://purl.obolibrary.org/obo/UBERON_0022364;occipital fusiform gyrus;occipital fusiform gyrus (OF) -http://purl.obolibrary.org/obo/UBERON_0022364;occipital fusiform gyrus;occipitotemporal (fusiform) gyrus, occipital part -http://purl.obolibrary.org/obo/UBERON_0022367;inferior lateral occipital cortex;lateral occipital cortex, inferior division -http://purl.obolibrary.org/obo/UBERON_0022367;inferior lateral occipital cortex;lateral occipital cortex, inferior division (OLI) -http://purl.obolibrary.org/obo/UBERON_0022368;superior lateral occipital cortex;lateral occipital cortex, superior division -http://purl.obolibrary.org/obo/UBERON_0022383;anterior parahippocampal gyrus;parahippocampal gyrus, anterior division -http://purl.obolibrary.org/obo/UBERON_0022394;posterior parahippocampal white matter; -http://purl.obolibrary.org/obo/UBERON_0022395;temporal fusiform gyrus;occipitotemporal (fusiform) gyrus, temporal part -http://purl.obolibrary.org/obo/UBERON_0022396;anterior temporal fusiform gyrus;occipitotemporal (fusiform) gyrus, anterior division -http://purl.obolibrary.org/obo/UBERON_0022397;posterior temporal fusiform gyrus;occipitotemporal (fusiform) gyrus, posterior division -http://purl.obolibrary.org/obo/UBERON_0022398;paracingulate gyrus;paracingulate gyrus (PAC) -http://purl.obolibrary.org/obo/UBERON_0022420;temporal part of superior longitudinal fasciculus;superior longitudinal fasciculus, temporal division -http://purl.obolibrary.org/obo/UBERON_0022421;pontocerebellar tract;fibrae pontocerebellaris -http://purl.obolibrary.org/obo/UBERON_0022421;pontocerebellar tract;pontine crossing tract -http://purl.obolibrary.org/obo/UBERON_0022421;pontocerebellar tract;pontocerebellar fibers -http://purl.obolibrary.org/obo/UBERON_0022421;pontocerebellar tract;tractus pontocerebellaris -http://purl.obolibrary.org/obo/UBERON_0022423;sagulum nucleus;nucleus saguli -http://purl.obolibrary.org/obo/UBERON_0022424;supragenual nucleus of pontine tegmentum;supragenual nucleus -http://purl.obolibrary.org/obo/UBERON_0022425;anterior corona radiata;anterior portion of corona radiata -http://purl.obolibrary.org/obo/UBERON_0022426;superior corona radiata;superior portion of corona radiata -http://purl.obolibrary.org/obo/UBERON_0022427;posterior corona radiata;posterior portion of corona radiata -http://purl.obolibrary.org/obo/UBERON_0022428;cingulate cortex cingulum;cingulum (cingulate gyrus) -http://purl.obolibrary.org/obo/UBERON_0022428;cingulate cortex cingulum;cingulum bundle in cingulate cortex -http://purl.obolibrary.org/obo/UBERON_0022428;cingulate cortex cingulum;cingulum bundle in cingulate gyrus -http://purl.obolibrary.org/obo/UBERON_0022429;temporal cortex cingulum;cingulum (temporal gyrus) -http://purl.obolibrary.org/obo/UBERON_0022429;temporal cortex cingulum;cingulum bundle in temporal cortex -http://purl.obolibrary.org/obo/UBERON_0022429;temporal cortex cingulum;cingulum bundle in temporal gyrus -http://purl.obolibrary.org/obo/UBERON_0022430;hippocampus cortex cingulum;cingulum (Ammon's horn) -http://purl.obolibrary.org/obo/UBERON_0022430;hippocampus cortex cingulum;cingulum (hippocampus) -http://purl.obolibrary.org/obo/UBERON_0022430;hippocampus cortex cingulum;cingulum bundle in hippocampus -http://purl.obolibrary.org/obo/UBERON_0022434;primary superior olive;superior olive -http://purl.obolibrary.org/obo/UBERON_0022437;dorsal periolivary nucleus; -http://purl.obolibrary.org/obo/UBERON_0022438;rostral anterior cingulate cortex;rostral anterior cingulate cortex -http://purl.obolibrary.org/obo/UBERON_0022453;olfactory entorhinal cortex; -http://purl.obolibrary.org/obo/UBERON_0022469;primary olfactory cortex;primary olfactory areas -http://purl.obolibrary.org/obo/UBERON_0022534;pericalcarine cortex;pericalcarine cortex -http://purl.obolibrary.org/obo/UBERON_0022649;habenulo-interpeduncular tract of diencephalon;habenulo-interpeduncular tract of diencephalon -http://purl.obolibrary.org/obo/UBERON_0022695;orbital gyri complex;orbital gyri complex -http://purl.obolibrary.org/obo/UBERON_0022716;lateral orbital frontal cortex;lateral orbital frontal cortex -http://purl.obolibrary.org/obo/UBERON_0022730;transverse frontopolar gyri complex;transverse frontopolar gyri complex -http://purl.obolibrary.org/obo/UBERON_0022776;composite part spanning multiple base regional parts of brain;composite part spanning multiple base regional parts of brain -http://purl.obolibrary.org/obo/UBERON_0022783;paraventricular nucleus of the hypothalamus magnocellular division - posterior magnocellular part medial zone;paraventricular nucleus of the hypothalamus magnocellular division - posterior magnocellular part medial zone -http://purl.obolibrary.org/obo/UBERON_0022791;paraventricular nucleus of the hypothalamus magnocellular division - posterior magnocellular part lateral zone;paraventricular nucleus of the hypothalamus magnocellular division - posterior magnocellular part lateral zone -http://purl.obolibrary.org/obo/UBERON_0022941;dorsal nerve root of sacral spinal cord;dorsal nerve root of sacral spinal cord -http://purl.obolibrary.org/obo/UBERON_0022943;reticulospinal tract;reticulospinal tract -http://purl.obolibrary.org/obo/UBERON_0023094;posterodorsal nucleus of medial geniculate body;posterodorsal nucleus of medial geniculate body -http://purl.obolibrary.org/obo/UBERON_0023255;sub-lobar region;sub-lobar region -http://purl.obolibrary.org/obo/UBERON_0023378;medullary anterior horn;cornu anterius medullaris -http://purl.obolibrary.org/obo/UBERON_0023378;medullary anterior horn;medullary anterior horn -http://purl.obolibrary.org/obo/UBERON_0023390;medial subnucleus of solitary tract;medial subnucleus of solitary tract -http://purl.obolibrary.org/obo/UBERON_0023390;medial subnucleus of solitary tract;medial subnucleus of the solitary tract -http://purl.obolibrary.org/obo/UBERON_0023390;medial subnucleus of solitary tract;solitary nucleus, left, meidal subnucleus -http://purl.obolibrary.org/obo/UBERON_0023390;medial subnucleus of solitary tract;solitary nucleus, medial subnucleus -http://purl.obolibrary.org/obo/UBERON_0023415;lateral amygdaloid nucleus, dorsolateral part;lateral amygdaloid nucleus, dorsolateral part -http://purl.obolibrary.org/obo/UBERON_0023416;lateral amygdaloid nucleus, ventrolateral part;lateral amygdaloid nucleus, ventrolateral part -http://purl.obolibrary.org/obo/UBERON_0023417;lateral amygdaloid nucleus, ventromedial part;lateral amygdaloid nucleus, ventromedial part -http://purl.obolibrary.org/obo/UBERON_0023443;superficial feature part of forebrain;superficial feature part of forebrain -http://purl.obolibrary.org/obo/UBERON_0023462;superficial feature part of occipital lobe;superficial feature part of occipital lobe -http://purl.obolibrary.org/obo/UBERON_0023541;conical papilla;conical papilla -http://purl.obolibrary.org/obo/UBERON_0023564;cytoarchitectural part of dentate gyrus;cytoarchitectural part of dentate gyrus -http://purl.obolibrary.org/obo/UBERON_0023623;Ventral nerve root of sacral spinal cord;anterior nerve root of sacral spinal cord -http://purl.obolibrary.org/obo/UBERON_0023623;Ventral nerve root of sacral spinal cord;ventral nerve root of sacral spinal cord -http://purl.obolibrary.org/obo/UBERON_0023623;ventral nerve root of sacral spinal cord;anterior nerve root of sacral spinal cord -http://purl.obolibrary.org/obo/UBERON_0023623;ventral nerve root of sacral spinal cord;ventral nerve root of sacral spinal cord -http://purl.obolibrary.org/obo/UBERON_0023740;habenulo-interpeduncular tract of midbrain;habenulo-interpeduncular tract of midbrain -http://purl.obolibrary.org/obo/UBERON_0023752;intermediate part of hypophysis;intermediate part of hypophysis -http://purl.obolibrary.org/obo/UBERON_0023787;subicular complex;subicular complex -http://purl.obolibrary.org/obo/UBERON_0023836;gross anatomical parts of the cerebellum;gross anatomical parts of the cerebellum -http://purl.obolibrary.org/obo/UBERON_0023852;temporoparietal junction;temporoparietal junction -http://purl.obolibrary.org/obo/UBERON_0023855;commissural nucleus of the solitary tract;commissural nucleus of the solitary tract -http://purl.obolibrary.org/obo/UBERON_0023859;primary somatosensory cortex layer 6;primary somatosensory cortex lamina VI -http://purl.obolibrary.org/obo/UBERON_0023861;planum polare;planum polare -http://purl.obolibrary.org/obo/UBERON_0023862;hippocampal formation of GP94;hippocampal formation of gp94 -http://purl.obolibrary.org/obo/UBERON_0023865;medial ventral tegmental area;medial ventral tegmental area -http://purl.obolibrary.org/obo/UBERON_0023867;islands of Calleja of olfactory tubercle;islands of calleja of olfactory tubercle -http://purl.obolibrary.org/obo/UBERON_0023868;isla magna of Calleja;isla magna of calleja -http://purl.obolibrary.org/obo/UBERON_0023868;isla magna of Calleja;major island of Calleja -http://purl.obolibrary.org/obo/UBERON_0023879;neural system;neural system -http://purl.obolibrary.org/obo/UBERON_0023900;piriform cortex layer 1a;piriform cortex layer 1a -http://purl.obolibrary.org/obo/UBERON_0023901;piriform cortex layer 1b;piriform cortex layer 1b -http://purl.obolibrary.org/obo/UBERON_0023920;basal ganglia of rodent;basal ganglia of rodent -http://purl.obolibrary.org/obo/UBERON_0023927;subbrachial nucleus of mouse of Franklin and Paxinos 2008;subbrachial nucleus of mouse of franklin and paxinos 2008 -http://purl.obolibrary.org/obo/UBERON_0023928;postrhinal cortex of rodent of Burwell et al 1995;postrhinal cortex of rodent of burwell et al 1995 -http://purl.obolibrary.org/obo/UBERON_0023932;Sommer's sector;sommer's sector -http://purl.obolibrary.org/obo/UBERON_0023934;olfactory bulb main glomerular layer;olfactory bulb main glomerular layer -http://purl.obolibrary.org/obo/UBERON_0023936;perirhinal cortex of Burwell et al 1995;perirhinal cortex of burwell et al 1995 -http://purl.obolibrary.org/obo/UBERON_0023943;molecular system;molecular system -http://purl.obolibrary.org/obo/UBERON_0023958;bed nuclei of the stria terminalis oval nucleus;bed nuclei of the stria terminalis oval nucleus -http://purl.obolibrary.org/obo/UBERON_0023983;central cervical spinocerebellar tract;central cervical spinocerebellar tract -http://purl.obolibrary.org/obo/UBERON_0023984;rostral spinocerebellar tract;rostral spinocerebellar tract -http://purl.obolibrary.org/obo/UBERON_0023998;cerebellum hemispheric lobule II;hemispheric lobule ii -http://purl.obolibrary.org/obo/UBERON_0023998;cerebellum hemispheric lobule II;lobule H II of Larsell -http://purl.obolibrary.org/obo/UBERON_0023998;cerebellum hemispheric lobule II;lobule II of cerebellar hemisphere -http://purl.obolibrary.org/obo/UBERON_0023998;cerebellum hemispheric lobule II;lobule II of hemisphere of cerebellum -http://purl.obolibrary.org/obo/UBERON_0023999;cerebellum hemispheric lobule III;hemispheric lobule III -http://purl.obolibrary.org/obo/UBERON_0023999;cerebellum hemispheric lobule III;lobule H III of Larsell -http://purl.obolibrary.org/obo/UBERON_0023999;cerebellum hemispheric lobule III;lobule III of cerbellar hemisphere -http://purl.obolibrary.org/obo/UBERON_0023999;cerebellum hemispheric lobule III;lobule III of hemisphere of cerebellum -http://purl.obolibrary.org/obo/UBERON_0024000;cerebellum hemispheric lobule IV;hemispheric lobule IV -http://purl.obolibrary.org/obo/UBERON_0024000;cerebellum hemispheric lobule IV;lobule H IV of Larsell -http://purl.obolibrary.org/obo/UBERON_0024000;cerebellum hemispheric lobule IV;lobule IV of cerebellar hemisphere -http://purl.obolibrary.org/obo/UBERON_0024001;cerebellum hemispheric lobule V;hemispheric lobule V -http://purl.obolibrary.org/obo/UBERON_0024001;cerebellum hemispheric lobule V;lobule H V of Larsell -http://purl.obolibrary.org/obo/UBERON_0024001;cerebellum hemispheric lobule V;lobule V of cerebellar hemisphere -http://purl.obolibrary.org/obo/UBERON_0024003;cerebellum hemispheric lobule VII;hemispheric lobule VII -http://purl.obolibrary.org/obo/UBERON_0024009;cerebellum hemispheric lobule X;hemispheric lobule X -http://purl.obolibrary.org/obo/UBERON_0024037;vermis of the flocculonodular lobe of the cerebellum;flocculonodular vermis -http://purl.obolibrary.org/obo/UBERON_0024037;vermis of the flocculonodular lobe of the cerebellum;vermis of the flocculonodular lobe of the cerebellum -http://purl.obolibrary.org/obo/UBERON_0024043;rostral portion of the medial accessory olive;rostral portion of the medial accessory olive -http://purl.obolibrary.org/obo/UBERON_0024045;white matter of the cerebellar cortex;white matter of the cerebellar cortex -http://purl.obolibrary.org/obo/UBERON_0024046;superficial feature part of the cerebellum;superficial feature part of the cerebellum -http://purl.obolibrary.org/obo/UBERON_0024078;principal anterior division of supraoptic nucleus;principal anterior division of supraoptic nucleus -http://purl.obolibrary.org/obo/UBERON_0024079;tuberal supraoptic nucleus;tuberal supraoptic nucleus -http://purl.obolibrary.org/obo/UBERON_0024090;chemoarchitectural part of brain;chemoarchitectural part -http://purl.obolibrary.org/obo/UBERON_0024110;basis pontis;basis pontis -http://purl.obolibrary.org/obo/UBERON_0024151;tegmentum;tegmentum -http://purl.obolibrary.org/obo/UBERON_0024183;inferior transverse frontopolar gyrus;inferior transverse frontopolar gyrus -http://purl.obolibrary.org/obo/UBERON_0024193;medial transverse frontopolar gyrus;medial transverse frontopolar gyrus -http://purl.obolibrary.org/obo/UBERON_0024201;superior transverse frontopolar gyrus;superior transverse frontopolar gyrus -http://purl.obolibrary.org/obo/UBERON_0024382;Ventral nerve root of lumbar spinal cord;anterior nerve root of lumbar spinal cord -http://purl.obolibrary.org/obo/UBERON_0024382;Ventral nerve root of lumbar spinal cord;ventral nerve root of lumbar spinal cord -http://purl.obolibrary.org/obo/UBERON_0024382;ventral nerve root of lumbar spinal cord;anterior nerve root of lumbar spinal cord -http://purl.obolibrary.org/obo/UBERON_0024382;ventral nerve root of lumbar spinal cord;ventral nerve root of lumbar spinal cord -http://purl.obolibrary.org/obo/UBERON_0024900;left sub-lobar region;left sub-lobar region -http://purl.obolibrary.org/obo/UBERON_0024901;right sub-lobar region;right sub-lobar region -http://purl.obolibrary.org/obo/UBERON_0024914;circuit part of central nervous system;circuit part of central nervous system -http://purl.obolibrary.org/obo/UBERON_0024940;ganglion part of peripheral nervous system;ganglion part of peripheral nervous system -http://purl.obolibrary.org/obo/UBERON_0025096;superior calcarine sulcus;superior calcarine sulcus -http://purl.obolibrary.org/obo/UBERON_0025102;inferior occipital sulcus;inferior occipital sulcus -http://purl.obolibrary.org/obo/UBERON_0025103;inferior calcarine sulcus;inferior calcarine sulcus -http://purl.obolibrary.org/obo/UBERON_0025104;ectocalcarine sulcus;ectocalcarine sulcus -http://purl.obolibrary.org/obo/UBERON_0025261;thalamic fiber tract;thalamic fiber tracts -http://purl.obolibrary.org/obo/UBERON_0025525;motor system;motor system -http://purl.obolibrary.org/obo/UBERON_0025533;proprioceptive system;proprioceptive system -http://purl.obolibrary.org/obo/UBERON_0025534;sensorimotor system; -http://purl.obolibrary.org/obo/UBERON_0025581;perirhinal cortex of primate of Burwell et al 1995;perirhinal cortex of primate of burwell et al 1995 -http://purl.obolibrary.org/obo/UBERON_0025584;perirhinal cortex of rodent of Burwell et al 1995;perirhinal cortex of rodent of burwell et al 1995 -http://purl.obolibrary.org/obo/UBERON_0025588;histaminergic system;histaminergic system -http://purl.obolibrary.org/obo/UBERON_0025589;catecholamine system;catecholamine system -http://purl.obolibrary.org/obo/UBERON_0025591;gABAergic system;gabaergic system -http://purl.obolibrary.org/obo/UBERON_0025592;glutamatergic system;glutamatergic system -http://purl.obolibrary.org/obo/UBERON_0025593;serotonergic system;serotonergic system -http://purl.obolibrary.org/obo/UBERON_0025595;cholinergic system;cholinergic system -http://purl.obolibrary.org/obo/UBERON_0025677;paravermis parts of the cerebellar cortex;paravermis parts of the cerebellar cortex -http://purl.obolibrary.org/obo/UBERON_0025736;chemoarchitectural part of striatum;chemoarchitectural part of neostriatum -http://purl.obolibrary.org/obo/UBERON_0025763;rostral sulcus;rostral sulcus -http://purl.obolibrary.org/obo/UBERON_0025768;posterior middle temporal sulcus;posterior middle temporal sulcus -http://purl.obolibrary.org/obo/UBERON_0025772;spur of arcuate sulcus;spur of arcuate sulcus -http://purl.obolibrary.org/obo/UBERON_0025829;anterior parieto-occipital sulcus;anterior parieto-occipital sulcus -http://purl.obolibrary.org/obo/UBERON_0025883;superior ramus of arcuate sulcus;superior ramus of arcuate sulcus -http://purl.obolibrary.org/obo/UBERON_0025903;principal sulcus;principal sulcus -http://purl.obolibrary.org/obo/UBERON_0026006;dorsal nerve root of lumbar spinal cord;dorsal nerve root of lumbar spinal cord -http://purl.obolibrary.org/obo/UBERON_0026137;annectant gyrus;annectant gyrus -http://purl.obolibrary.org/obo/UBERON_0026246;sacral spinal cord white matter;sacral spinal cord white matter -http://purl.obolibrary.org/obo/UBERON_0026293;thoracic spinal cord gray commissure;thoracic spinal cord gray commissure -http://purl.obolibrary.org/obo/UBERON_0026382;inferior ramus of arcuate sulcus;inferior ramus of arcuate sulcus -http://purl.obolibrary.org/obo/UBERON_0026384;lateral orbital sulcus;lateral orbital sulcus -http://purl.obolibrary.org/obo/UBERON_0026386;lumbar spinal cord white matter;lumbar spinal cord white matter -http://purl.obolibrary.org/obo/UBERON_0026391;medial orbital sulcus;medial orbital sulcus -http://purl.obolibrary.org/obo/UBERON_0026541;dorsomedial subnucleus of solitary tract;dorsomedial subnucleus of solitary tract -http://purl.obolibrary.org/obo/UBERON_0026546;principal neuronal circuit;principal neuronal circuit -http://purl.obolibrary.org/obo/UBERON_0026547;intrinsic neuronal circuit;intrinsic neuronal circuit -http://purl.obolibrary.org/obo/UBERON_0026584;tympanic canal;canaliculus tympanicus -http://purl.obolibrary.org/obo/UBERON_0026584;tympanic canal;jacobson's canaliculus -http://purl.obolibrary.org/obo/UBERON_0026584;tympanic canal;tympanic canal -http://purl.obolibrary.org/obo/UBERON_0026584;tympanic canal;tympanic canaliculus -http://purl.obolibrary.org/obo/UBERON_0026586;vestibular canal;canaliculus vestibuli -http://purl.obolibrary.org/obo/UBERON_0026586;vestibular canal;vestibular canal -http://purl.obolibrary.org/obo/UBERON_0026586;vestibular canal;vestibular canaliculus -http://purl.obolibrary.org/obo/UBERON_0026663;dorsolateral subnucleus of solitary tract;dorsolateral subnucleus of solitary tract -http://purl.obolibrary.org/obo/UBERON_0026666;parvocellular subnucleus of solitary tract;parvicellular subnucleus of solitary tract -http://purl.obolibrary.org/obo/UBERON_0026719;intermediate frontal sulcus;intermediate frontal sulcus -http://purl.obolibrary.org/obo/UBERON_0026721;medial precentral sulcus;medial precentral sulcus -http://purl.obolibrary.org/obo/UBERON_0026722;transverse parietal sulcus;transverse parietal sulcus -http://purl.obolibrary.org/obo/UBERON_0026723;inferior parietal sulcus;inferior parietal sulcus -http://purl.obolibrary.org/obo/UBERON_0026724;superior parietal sulcus;superior parietal sulcus -http://purl.obolibrary.org/obo/UBERON_0026725;angular sulcus;angular sulcus -http://purl.obolibrary.org/obo/UBERON_0026760;inferior sagittal sulcus;inferior sagittal sulcus -http://purl.obolibrary.org/obo/UBERON_0026761;superior sagittal sulcus;superior sagittal sulcus -http://purl.obolibrary.org/obo/UBERON_0026765;Hadjikhani et al. (1998) visuotopic partition scheme region;Hadjikhani et al. (1998) visuotopic partition scheme region -http://purl.obolibrary.org/obo/UBERON_0026775;Tootell and Hadjikhani (2001) LOC/LOP complex;tootell and Hadjikhani (2001) loc/lop complex -http://purl.obolibrary.org/obo/UBERON_0026776;Press, Brewer, Dougherty, Wade and Wandell (2001) visuotopic area V7;press, brewer, dougherty, wade and wandell (2001) visuotopic area v7 -http://purl.obolibrary.org/obo/UBERON_0026777;Ongur, Price, and Ferry (2003) prefrontal cortical partition scheme region;ongur, price, and ferry (2003) prefrontal cortical partition scheme region -http://purl.obolibrary.org/obo/UBERON_0027061;isthmus of cingulate cortex;isthmus of cingulate cortex -http://purl.obolibrary.org/obo/UBERON_0027109;lateral eminence of hypophysis;lateral eminence of hypophysis -http://purl.obolibrary.org/obo/UBERON_0027113;anterior middle temporal sulcus;anterior middle temporal sulcus -http://purl.obolibrary.org/obo/UBERON_0027221;adrenergic system;adrenergic system -http://purl.obolibrary.org/obo/UBERON_0027225;noradrenergic system;noradrenergic system -http://purl.obolibrary.org/obo/UBERON_0027239;dopaminergic system;dopaminergic system -http://purl.obolibrary.org/obo/UBERON_0027244;striosomal part of body of caudate nucleus;striosomal part of body of caudate nucleus -http://purl.obolibrary.org/obo/UBERON_0027245;matrix part of head of caudate nucleus;matrix compartment of head of caudate nucleus -http://purl.obolibrary.org/obo/UBERON_0027245;matrix part of head of caudate nucleus;matrix part of head of caudate nucleus -http://purl.obolibrary.org/obo/UBERON_0027246;matrix part of tail of caudate nucleus;matrix compartment of tail of caudate nucleus -http://purl.obolibrary.org/obo/UBERON_0027246;matrix part of tail of caudate nucleus;matrix part of tail of caudate nucleus -http://purl.obolibrary.org/obo/UBERON_0027285;paravermis lobule area;paravermis of cerebellum -http://purl.obolibrary.org/obo/UBERON_0027285;paravermis lobule area;regional parts of the paravermal lobules -http://purl.obolibrary.org/obo/UBERON_0027309;paravermis of the posterior lobe of the cerebellum;paravermis of the posterior lobe of the cerebellum -http://purl.obolibrary.org/obo/UBERON_0027309;paravermis of the posterior lobe of the cerebellum;paravermis, posterior lobe portion -http://purl.obolibrary.org/obo/UBERON_0027310;paravermis of the anterior lobe of the cerebellum;paravermis of the anterior lobe of the cerebellum -http://purl.obolibrary.org/obo/UBERON_0027310;paravermis of the anterior lobe of the cerebellum;paravermis, anterior lobe portion -http://purl.obolibrary.org/obo/UBERON_0027331;flocculonodular lobe, hemisphere portion;hemispheric part of the flocculonodular lobe of the cerebellum -http://purl.obolibrary.org/obo/UBERON_0027333;arbor vitae;arbor vitae -http://purl.obolibrary.org/obo/UBERON_0027368;matrix compartment;matrix compartment -http://purl.obolibrary.org/obo/UBERON_0027371;striosome;striosomal compartment -http://purl.obolibrary.org/obo/UBERON_0027371;striosome;striosome -http://purl.obolibrary.org/obo/UBERON_0027513;posterior superior frontal sulcus;posterior superior frontal sulcus -http://purl.obolibrary.org/obo/UBERON_0027716;anterior superior frontal sulcus;anterior superior frontal sulcus -http://purl.obolibrary.org/obo/UBERON_0027768;suprachiasmatic nucleus dorsomedial part;suprachiasmatic nucleus dorsomedial part -http://purl.obolibrary.org/obo/UBERON_0027771;suprachiasmatic nucleus ventrolateral part;suprachiasmatic nucleus ventrolateral part -http://purl.obolibrary.org/obo/UBERON_0028194;spiral prominence of cochlear duct;prominentia spiralis ductus cochlearis -http://purl.obolibrary.org/obo/UBERON_0028194;spiral prominence of cochlear duct;spiral prominence of cochlea -http://purl.obolibrary.org/obo/UBERON_0028194;spiral prominence of cochlear duct;spiral prominence of cochlear duct -http://purl.obolibrary.org/obo/UBERON_0028395;calcarine sulcus (dorsal);calcarine sulcus (dorsal) -http://purl.obolibrary.org/obo/UBERON_0028396;calcarine sulcus (ventral);calcarine sulcus (ventral) -http://purl.obolibrary.org/obo/UBERON_0028398;Hadjikhani et al. (1998) visuotopic area V1d;Hadjikhani et al. (1998) visuotopic area v1d -http://purl.obolibrary.org/obo/UBERON_0028399;Hadjikhani et al. (1998) visuotopic area V1v;Hadjikhani et al. (1998) visuotopic area v1v -http://purl.obolibrary.org/obo/UBERON_0028401;Hadjikhani et al. (1998) visuotopic area V2v;Hadjikhani et al. (1998) visuotopic area v2v -http://purl.obolibrary.org/obo/UBERON_0028402;Hadjikhani et al. (1998) visuotopic area V3;Hadjikhani et al. (1998) visuotopic area v3 -http://purl.obolibrary.org/obo/UBERON_0028403;Hadjikhani et al. (1998) visuotopic area V3A;Hadjikhani et al. (1998) visuotopic area v3a -http://purl.obolibrary.org/obo/UBERON_0028404;Hadjikhani et al. (1998) visuotopic area VP;Hadjikhani et al. (1998) visuotopic area vp -http://purl.obolibrary.org/obo/UBERON_0028405;Hadjikhani et al. (1998) visuotopic area V4v;Hadjikhani et al. (1998) visuotopic area v4v -http://purl.obolibrary.org/obo/UBERON_0028406;Hadjikhani et al. (1998) visuotopic area V8;Hadjikhani et al. (1998) visuotopic area v8 -http://purl.obolibrary.org/obo/UBERON_0028412;Ongur, Price, and Ferry (2003) area 10p;ongur, price, and ferry (2003) area 10p -http://purl.obolibrary.org/obo/UBERON_0028413;Ongur, Price, and Ferry (2003) area 10r;ongur, price, and ferry (2003) area 10r -http://purl.obolibrary.org/obo/UBERON_0028414;Ongur, Price, and Ferry (2003) area 10o;ongur, price, and ferry (2003) area 10o -http://purl.obolibrary.org/obo/UBERON_0028415;Ongur, Price, and Ferry (2003) area 10m;ongur, price, and ferry (2003) area 10m -http://purl.obolibrary.org/obo/UBERON_0028416;Ongur, Price, and Ferry (2003) area 11m;ongur, price, and ferry (2003) area 11m -http://purl.obolibrary.org/obo/UBERON_0028417;Ongur, Price, and Ferry (2003) area 47s;ongur, price, and ferry (2003) area 47s -http://purl.obolibrary.org/obo/UBERON_0028418;Ongur, Price, and Ferry (2003) area 13b;ongur, price, and ferry (2003) area 13b -http://purl.obolibrary.org/obo/UBERON_0028419;Ongur, Price, and Ferry (2003) area 13a;ongur, price, and ferry (2003) area 13a -http://purl.obolibrary.org/obo/UBERON_0028420;Ongur, Price, and Ferry (2003) area 14r;ongur, price, and ferry (2003) area 14r -http://purl.obolibrary.org/obo/UBERON_0028421;Ongur, Price, and Ferry (2003) area 14c;ongur, price, and ferry (2003) area 14c -http://purl.obolibrary.org/obo/UBERON_0028422;Ongur, Price, and Ferry (2003) area 24;ongur, price, and ferry (2003) area 24 -http://purl.obolibrary.org/obo/UBERON_0028423;Ongur, Price, and Ferry (2003) area 25;ongur, price, and ferry (2003) area 25 -http://purl.obolibrary.org/obo/UBERON_0028424;Ongur, Price, and Ferry (2003) area 32;ongur, price, and ferry (2003) area 32 -http://purl.obolibrary.org/obo/UBERON_0028425;Ongur, Price, and Ferry (2003) area G;ongur, price, and ferry (2003) area g -http://purl.obolibrary.org/obo/UBERON_0028426;Ongur, Price, and Ferry (2003) area PrCO;ongur, price, and ferry (2003) area prco -http://purl.obolibrary.org/obo/UBERON_0028427;Ongur, Price, and Ferry (2003) area 11l;ongur, price, and ferry (2003) area 11l -http://purl.obolibrary.org/obo/UBERON_0028428;Ongur, Price, and Ferry (2003) area 13m;ongur, price, and ferry (2003) area 13m -http://purl.obolibrary.org/obo/UBERON_0028429;Ongur, Price, and Ferry (2003) area 13l;ongur, price, and ferry (2003) area 13l -http://purl.obolibrary.org/obo/UBERON_0028430;Ongur, Price, and Ferry (2003) area 47l;ongur, price, and ferry (2003) area 47l -http://purl.obolibrary.org/obo/UBERON_0028431;Ongur, Price, and Ferry (2003) area 47m;ongur, price, and ferry (2003) area 47m -http://purl.obolibrary.org/obo/UBERON_0028432;Ongur, Price, and Ferry (2003) area 47r;ongur, price, and ferry (2003) area 47r -http://purl.obolibrary.org/obo/UBERON_0028433;Ongur, Price, and Ferry (2003) area Iam;ongur, price, and ferry (2003) area iam -http://purl.obolibrary.org/obo/UBERON_0028434;Ongur, Price, and Ferry (2003) area Ial;ongur, price, and ferry (2003) area ial -http://purl.obolibrary.org/obo/UBERON_0028435;Ongur, Price, and Ferry (2003) area Iai;ongur, price, and ferry (2003) area iai -http://purl.obolibrary.org/obo/UBERON_0028436;Ongur, Price, and Ferry (2003) area 9;ongur, price, and ferry (2003) area 9 -http://purl.obolibrary.org/obo/UBERON_0028437;Ongur, Price, and Ferry (2003) area 10l;ongur, price, and ferry (2003) area 10l -http://purl.obolibrary.org/obo/UBERON_0028439;Ongur, Price, and Ferry (2003) area Iapm;ongur, price, and ferry (2003) area iapm -http://purl.obolibrary.org/obo/UBERON_0028440;Ongur, Price, and Ferry (2003) area AON;ongur, price, and ferry (2003) area aon -http://purl.obolibrary.org/obo/UBERON_0028622;banks of superior temporal sulcus;banks of superior temporal sulcus -http://purl.obolibrary.org/obo/UBERON_0028715;caudal anterior cingulate cortex;caudal anterior cingulate cortex -http://purl.obolibrary.org/obo/UBERON_0028918;paravermic lobule II;paravermic lobule ii -http://purl.obolibrary.org/obo/UBERON_0028919;paravermic lobule III;paravermic lobule iii -http://purl.obolibrary.org/obo/UBERON_0028920;paravermic lobule IV;paravermic lobule iv -http://purl.obolibrary.org/obo/UBERON_0028921;paravermic lobule IX;paravermic lobule ix -http://purl.obolibrary.org/obo/UBERON_0028922;paravermic lobule V;paravermic lobule v -http://purl.obolibrary.org/obo/UBERON_0028923;paravermic lobule VI;paravermic lobule vi -http://purl.obolibrary.org/obo/UBERON_0028924;paravermic lobule VII;paravermic lobule vii -http://purl.obolibrary.org/obo/UBERON_0028925;paravermic lobule VIII;paravermic lobule viii -http://purl.obolibrary.org/obo/UBERON_0029001;matrix compartment of caudate nucleus;matrix compartment of caudate nucleus -http://purl.obolibrary.org/obo/UBERON_0029002;matrix compartment of putamen;matrix compartment of putamen -http://purl.obolibrary.org/obo/UBERON_0029004;striosomal part of caudate nucleus;striosomal part of caudate nucleus -http://purl.obolibrary.org/obo/UBERON_0029005;striosomal part of putamen;striosomal part of putamen -http://purl.obolibrary.org/obo/UBERON_0029009;granular cell layer of dorsal cochlear nucleus;granular cell layer of dorsal cochlear nucleus -http://purl.obolibrary.org/obo/UBERON_0029503;sacral spinal cord gray matter;sacral spinal cord gray matter -http://purl.obolibrary.org/obo/UBERON_0029538;sacral spinal cord lateral horn;sacral spinal cord lateral horn -http://purl.obolibrary.org/obo/UBERON_0029626;cervical spinal cord gray commissure;cervical spinal cord gray commissure -http://purl.obolibrary.org/obo/UBERON_0029636;lumbar spinal cord gray matter;lumbar spinal cord gray matter -http://purl.obolibrary.org/obo/UBERON_0030276;lumbar spinal cord ventral horn;lumbar spinal cord ventral horn -http://purl.obolibrary.org/obo/UBERON_0030649;cytoarchitecture of entorhinal cortex;cytoarchitecture of entorhinal cortex -http://purl.obolibrary.org/obo/UBERON_0031111;sacral spinal cord gray commissure;sacral spinal cord gray commissure -http://purl.obolibrary.org/obo/UBERON_0031906;lumbar spinal cord lateral horn;lumbar spinal cord lateral horn -http://purl.obolibrary.org/obo/UBERON_0032748;sacral spinal cord ventral horn;sacral spinal cord ventral horn -http://purl.obolibrary.org/obo/UBERON_0033483;lumbar spinal cord gray commissure;lumbar spinal cord gray commissure -http://purl.obolibrary.org/obo/UBERON_0033939;sacral spinal cord dorsal horn;sacral spinal cord dorsal horn -http://purl.obolibrary.org/obo/UBERON_0034670;palatal taste bud;taste bud of palate -http://purl.obolibrary.org/obo/UBERON_0034671;arcuate sulcus; -http://purl.obolibrary.org/obo/UBERON_0034672;lateral eminence of fourth ventricle;lateral eminence of fourth ventricle -http://purl.obolibrary.org/obo/UBERON_0034673;amygdalohippocampal area; -http://purl.obolibrary.org/obo/UBERON_0034674;sulcus of limbic lobe; -http://purl.obolibrary.org/obo/UBERON_0034676;forceps major of corpus callosum;forceps major -http://purl.obolibrary.org/obo/UBERON_0034676;forceps major of corpus callosum;forceps major of corpus callosum -http://purl.obolibrary.org/obo/UBERON_0034676;forceps major of corpus callosum;forceps occipitalis -http://purl.obolibrary.org/obo/UBERON_0034676;forceps major of corpus callosum;major forceps -http://purl.obolibrary.org/obo/UBERON_0034676;forceps major of corpus callosum;occipital forceps -http://purl.obolibrary.org/obo/UBERON_0034676;forceps major of corpus callosum;posterior forceps -http://purl.obolibrary.org/obo/UBERON_0034676;forceps major of corpus callosum;posterior forceps of corpus callosum -http://purl.obolibrary.org/obo/UBERON_0034678;forceps minor of corpus callosum;anterior forceps -http://purl.obolibrary.org/obo/UBERON_0034678;forceps minor of corpus callosum;anterior forceps of corpus callosum -http://purl.obolibrary.org/obo/UBERON_0034678;forceps minor of corpus callosum;forceps frontalis -http://purl.obolibrary.org/obo/UBERON_0034678;forceps minor of corpus callosum;forceps minor -http://purl.obolibrary.org/obo/UBERON_0034678;forceps minor of corpus callosum;frontal forceps -http://purl.obolibrary.org/obo/UBERON_0034678;forceps minor of corpus callosum;minor forceps -http://purl.obolibrary.org/obo/UBERON_0034680;laryngeal prominence;Adam's apple -http://purl.obolibrary.org/obo/UBERON_0034680;laryngeal prominence;Adams apple -http://purl.obolibrary.org/obo/UBERON_0034681;vocal organ; -http://purl.obolibrary.org/obo/UBERON_0034688;spermatic fascia; -http://purl.obolibrary.org/obo/UBERON_0034690;external spermatic fascia; -http://purl.obolibrary.org/obo/UBERON_0034691;internal spermatic fascia; -http://purl.obolibrary.org/obo/UBERON_0034693;cremasteric artery;cremasteric part of inferior epigastric artery -http://purl.obolibrary.org/obo/UBERON_0034694;gubernacular bulb, intra-abdominal part; -http://purl.obolibrary.org/obo/UBERON_0034695;gubernacular bulb, extra-abdominal part; -http://purl.obolibrary.org/obo/UBERON_0034696;fold of peritoneum;peritoneal fold -http://purl.obolibrary.org/obo/UBERON_0034697;inflow tract;cardiac inflow tract -http://purl.obolibrary.org/obo/UBERON_0034697;inflow tract;heart inflow tract -http://purl.obolibrary.org/obo/UBERON_0034698;inflow tract of ventricle;ventricular inflow tract -http://purl.obolibrary.org/obo/UBERON_0034699;inflow tract of atrium;inflow tract of atrium -http://purl.obolibrary.org/obo/UBERON_0034703;inflow tract of right ventricle;inflow part of right ventricle -http://purl.obolibrary.org/obo/UBERON_0034703;inflow tract of right ventricle;main part of right ventricle -http://purl.obolibrary.org/obo/UBERON_0034703;inflow tract of right ventricle;right ventricle proper -http://purl.obolibrary.org/obo/UBERON_0034704;inflow tract of left ventricle;inflow part of left ventricle -http://purl.obolibrary.org/obo/UBERON_0034704;inflow tract of left ventricle;left ventricle proper -http://purl.obolibrary.org/obo/UBERON_0034705;developing neuroepithelium;embryonic neuroepithelium -http://purl.obolibrary.org/obo/UBERON_0034705;developing neuroepithelium;neuroepithelium -http://purl.obolibrary.org/obo/UBERON_0034706;proliferating neuroepithelium; -http://purl.obolibrary.org/obo/UBERON_0034707;differentiating neuroepithelium; -http://purl.obolibrary.org/obo/UBERON_0034708;cerebellum marginal layer;marginal zone of cerebellum -http://purl.obolibrary.org/obo/UBERON_0034709;hindbrain marginal layer;marginal zone of hindbrain -http://purl.obolibrary.org/obo/UBERON_0034710;spinal cord ventricular layer;spinal cord lateral wall ventricular layer -http://purl.obolibrary.org/obo/UBERON_0034711;cortical preplate; -http://purl.obolibrary.org/obo/UBERON_0034712;yellow fibrocartilage; -http://purl.obolibrary.org/obo/UBERON_0034713;cranial neuron projection bundle;cranial nerve fiber bundle -http://purl.obolibrary.org/obo/UBERON_0034713;cranial neuron projection bundle;cranial nerve fiber tract -http://purl.obolibrary.org/obo/UBERON_0034713;cranial neuron projection bundle;cranial nerve or tract -http://purl.obolibrary.org/obo/UBERON_0034713;cranial neuron projection bundle;neuron projection bundle from brain -http://purl.obolibrary.org/obo/UBERON_0034714;epiphyseal tract; -http://purl.obolibrary.org/obo/UBERON_0034715;pineal tract; -http://purl.obolibrary.org/obo/UBERON_0034716;rostral epiphyseal tract; -http://purl.obolibrary.org/obo/UBERON_0034717;integumental taste bud; -http://purl.obolibrary.org/obo/UBERON_0034718;barbel taste bud; -http://purl.obolibrary.org/obo/UBERON_0034719;lip taste bud; -http://purl.obolibrary.org/obo/UBERON_0034720;head taste bud; -http://purl.obolibrary.org/obo/UBERON_0034721;pharyngeal taste bud; -http://purl.obolibrary.org/obo/UBERON_0034722;mouth roof taste bud; -http://purl.obolibrary.org/obo/UBERON_0034723;fin taste bud; -http://purl.obolibrary.org/obo/UBERON_0034724;esophageal taste bud; -http://purl.obolibrary.org/obo/UBERON_0034725;pterygopalatine nerve;ganglionic branch of maxillary nerve to pterygopalatine ganglion -http://purl.obolibrary.org/obo/UBERON_0034725;pterygopalatine nerve;pterygopalatine nerve -http://purl.obolibrary.org/obo/UBERON_0034725;pterygopalatine nerve;radix sensoria ganglii pterygopalatini -http://purl.obolibrary.org/obo/UBERON_0034725;pterygopalatine nerve;sensory root of pterygopalatine ganglion -http://purl.obolibrary.org/obo/UBERON_0034726;trunk taste bud; -http://purl.obolibrary.org/obo/UBERON_0034727;vestibular bulb artery;arteria bulbi vestibuli -http://purl.obolibrary.org/obo/UBERON_0034727;vestibular bulb artery;artery of bulb of vestibule -http://purl.obolibrary.org/obo/UBERON_0034728;autonomic nerve;nervus visceralis -http://purl.obolibrary.org/obo/UBERON_0034728;autonomic nerve;visceral nerve -http://purl.obolibrary.org/obo/UBERON_0034729;sympathetic nerve; -http://purl.obolibrary.org/obo/UBERON_0034730;olfactory tract linking bulb to ipsilateral dorsal telencephalon; -http://purl.obolibrary.org/obo/UBERON_0034734;medial olfactory stria;stria olfactoria medialis -http://purl.obolibrary.org/obo/UBERON_0034735;oviduct albumen gland; -http://purl.obolibrary.org/obo/UBERON_0034736;coracoclavicular ligament;accessory ligament of acromioclavicular joint -http://purl.obolibrary.org/obo/UBERON_0034743;inferior longitudinal fasciculus; -http://purl.obolibrary.org/obo/UBERON_0034745;radiation of thalamus;thalamus radiation -http://purl.obolibrary.org/obo/UBERON_0034746;anterior thalamic radiation;anterior radiation of thalamus -http://purl.obolibrary.org/obo/UBERON_0034746;anterior thalamic radiation;anterior thalamic radiation -http://purl.obolibrary.org/obo/UBERON_0034746;anterior thalamic radiation;radiatio thalami anterior -http://purl.obolibrary.org/obo/UBERON_0034747;posterior thalamic radiation;posterior thalamic radiation -http://purl.obolibrary.org/obo/UBERON_0034747;posterior thalamic radiation;radiatio posterior thalami -http://purl.obolibrary.org/obo/UBERON_0034747;posterior thalamic radiation;radiatio thalamica posterior -http://purl.obolibrary.org/obo/UBERON_0034749;retrolenticular part of internal capsule;pars retrolentiformis -http://purl.obolibrary.org/obo/UBERON_0034749;retrolenticular part of internal capsule;postlenticular portion of internal capsule -http://purl.obolibrary.org/obo/UBERON_0034749;retrolenticular part of internal capsule;retrolenticular limb -http://purl.obolibrary.org/obo/UBERON_0034749;retrolenticular part of internal capsule;retrolentiform limb -http://purl.obolibrary.org/obo/UBERON_0034750;visual association cortex; -http://purl.obolibrary.org/obo/UBERON_0034751;primary auditory cortex;primary auditory cortex (core) -http://purl.obolibrary.org/obo/UBERON_0034752;secondary auditory cortex;belt auditory area -http://purl.obolibrary.org/obo/UBERON_0034752;secondary auditory cortex;peripheral auditory cortex -http://purl.obolibrary.org/obo/UBERON_0034752;secondary auditory cortex;second auditory area -http://purl.obolibrary.org/obo/UBERON_0034752;secondary auditory cortex;secondary auditory cortex (belt, area 42) -http://purl.obolibrary.org/obo/UBERON_0034753;inferior occipitofrontal fasciculus;inferior occipitofrontal fasciculus -http://purl.obolibrary.org/obo/UBERON_0034754;occipitofrontal fasciculus; -http://purl.obolibrary.org/obo/UBERON_0034762;areolar sweat gland;areolar aprocine sweat gland -http://purl.obolibrary.org/obo/UBERON_0034762;areolar sweat gland;sweat gland of areola -http://purl.obolibrary.org/obo/UBERON_0034763;hindbrain commissure; -http://purl.obolibrary.org/obo/UBERON_0034764;remnant of cardiac valve;vestigial cardiac valve -http://purl.obolibrary.org/obo/UBERON_0034765;glabella skin; -http://purl.obolibrary.org/obo/UBERON_0034766;glabella region; -http://purl.obolibrary.org/obo/UBERON_0034767;buccal vestibule; -http://purl.obolibrary.org/obo/UBERON_0034768;morphological feature; -http://purl.obolibrary.org/obo/UBERON_0034769;lymphomyeloid tissue; -http://purl.obolibrary.org/obo/UBERON_0034770;bulbourethral gland epithelium;epithelium of bulbourethral gland -http://purl.obolibrary.org/obo/UBERON_0034770;bulbourethral gland epithelium;epithelium of bulbourethral gland of male -http://purl.obolibrary.org/obo/UBERON_0034771;ventral commissural nucleus of spinal cord;commissural nucleus of spinal cord -http://purl.obolibrary.org/obo/UBERON_0034772;margin of eyelid;free margin of eyelid -http://purl.obolibrary.org/obo/UBERON_0034773;uncus of parahippocampal gyrus;uncus hippocampi -http://purl.obolibrary.org/obo/UBERON_0034774;uncal CA1; -http://purl.obolibrary.org/obo/UBERON_0034775;uncal CA2; -http://purl.obolibrary.org/obo/UBERON_0034776;uncal CA3; -http://purl.obolibrary.org/obo/UBERON_0034777;rostral CA1; -http://purl.obolibrary.org/obo/UBERON_0034778;rostral CA2; -http://purl.obolibrary.org/obo/UBERON_0034779;rostral CA3; -http://purl.obolibrary.org/obo/UBERON_0034780;caudal CA1; -http://purl.obolibrary.org/obo/UBERON_0034781;caudal CA2; -http://purl.obolibrary.org/obo/UBERON_0034782;caudal CA3; -http://purl.obolibrary.org/obo/UBERON_0034798;stratum lacunosum-moleculare of caudal CA1; -http://purl.obolibrary.org/obo/UBERON_0034799;stratum radiatum of caudal CA1; -http://purl.obolibrary.org/obo/UBERON_0034800;stratum pyramidale of caudal CA1; -http://purl.obolibrary.org/obo/UBERON_0034801;stratum oriens of caudal CA1; -http://purl.obolibrary.org/obo/UBERON_0034803;stratum lacunosum-moleculare of caudal CA2; -http://purl.obolibrary.org/obo/UBERON_0034804;stratum radiatum of caudal CA2; -http://purl.obolibrary.org/obo/UBERON_0034805;stratum pyramidale of caudal CA2; -http://purl.obolibrary.org/obo/UBERON_0034806;stratum oriens of caudal CA2; -http://purl.obolibrary.org/obo/UBERON_0034808;stratum lacunosum-moleculare of caudal CA3; -http://purl.obolibrary.org/obo/UBERON_0034809;stratum radiatum of caudal CA3; -http://purl.obolibrary.org/obo/UBERON_0034810;stratum lucidum of caudal CA3; -http://purl.obolibrary.org/obo/UBERON_0034811;stratum pyramidale of caudal CA3; -http://purl.obolibrary.org/obo/UBERON_0034812;stratum oriens of caudal CA3; -http://purl.obolibrary.org/obo/UBERON_0034828;stratum lacunosum-moleculare of rostral CA1; -http://purl.obolibrary.org/obo/UBERON_0034829;stratum radiatum of rostral CA1; -http://purl.obolibrary.org/obo/UBERON_0034830;stratum pyramidale of rostral CA1; -http://purl.obolibrary.org/obo/UBERON_0034831;stratum oriens of rostral CA1; -http://purl.obolibrary.org/obo/UBERON_0034833;stratum lacunosum-moleculare of rostral CA2; -http://purl.obolibrary.org/obo/UBERON_0034834;stratum radiatum of rostral CA2; -http://purl.obolibrary.org/obo/UBERON_0034835;stratum pyramidale of rostral CA2; -http://purl.obolibrary.org/obo/UBERON_0034836;stratum oriens of rostral CA2; -http://purl.obolibrary.org/obo/UBERON_0034838;stratum lacunosum-moleculare of rostral CA3; -http://purl.obolibrary.org/obo/UBERON_0034839;stratum radiatum of rostral CA3; -http://purl.obolibrary.org/obo/UBERON_0034840;stratum lucidum of rostral CA3; -http://purl.obolibrary.org/obo/UBERON_0034841;stratum pyramidale of rostral CA3; -http://purl.obolibrary.org/obo/UBERON_0034842;stratum oriens of rostral CA3; -http://purl.obolibrary.org/obo/UBERON_0034858;stratum lacunosum-moleculare of uncal CA1; -http://purl.obolibrary.org/obo/UBERON_0034859;stratum radiatum of uncal CA1; -http://purl.obolibrary.org/obo/UBERON_0034860;stratum pyramidale of uncal CA1; -http://purl.obolibrary.org/obo/UBERON_0034861;stratum oriens of uncal CA1; -http://purl.obolibrary.org/obo/UBERON_0034863;stratum lacunosum-moleculare of uncal CA2; -http://purl.obolibrary.org/obo/UBERON_0034864;stratum radiatum of uncal CA2; -http://purl.obolibrary.org/obo/UBERON_0034865;stratum pyramidale of uncal CA2; -http://purl.obolibrary.org/obo/UBERON_0034866;stratum oriens of uncal CA2; -http://purl.obolibrary.org/obo/UBERON_0034868;stratum lacunosum-moleculare of uncal CA3; -http://purl.obolibrary.org/obo/UBERON_0034869;stratum radiatum of uncal CA3; -http://purl.obolibrary.org/obo/UBERON_0034870;stratum lucidum of uncal CA3; -http://purl.obolibrary.org/obo/UBERON_0034871;stratum pyramidale of uncal CA3; -http://purl.obolibrary.org/obo/UBERON_0034872;stratum oriens of uncal CA3; -http://purl.obolibrary.org/obo/UBERON_0034873;bodily gas;gas in anatomical space -http://purl.obolibrary.org/obo/UBERON_0034873;bodily gas;portion of gas in anatomical space -http://purl.obolibrary.org/obo/UBERON_0034874;air in respiratory system;respiratory air -http://purl.obolibrary.org/obo/UBERON_0034874;air in respiratory system;respiratory system air -http://purl.obolibrary.org/obo/UBERON_0034875;future pituitary gland;pituitary primordium -http://purl.obolibrary.org/obo/UBERON_0034876;future neurohypophysis; -http://purl.obolibrary.org/obo/UBERON_0034877;angioblastic cord;angiogenic cell cluster -http://purl.obolibrary.org/obo/UBERON_0034878;prechordal mesoderm;prechordal mesenchyme -http://purl.obolibrary.org/obo/UBERON_0034884;juxtaglomerular arteriole; -http://purl.obolibrary.org/obo/UBERON_0034885;viscerocranial mucosa; -http://purl.obolibrary.org/obo/UBERON_0034888;primary motor cortex layer 1; -http://purl.obolibrary.org/obo/UBERON_0034889;posterior parietal cortex; -http://purl.obolibrary.org/obo/UBERON_0034891;insular cortex;cortex of insula -http://purl.obolibrary.org/obo/UBERON_0034891;insular cortex;insular neocortex -http://purl.obolibrary.org/obo/UBERON_0034892;granular insular cortex;granular insula -http://purl.obolibrary.org/obo/UBERON_0034893;agranular insular cortex;dysgranular insular cortex -http://purl.obolibrary.org/obo/UBERON_0034894;lateral nucleus of stria terminalis;lateral subdivision of BNST -http://purl.obolibrary.org/obo/UBERON_0034895;medial nucleus of stria terminalis;medial subdivision of BNST -http://purl.obolibrary.org/obo/UBERON_0034896;ansa peduncularis;ansa peduncularis in thalamo -http://purl.obolibrary.org/obo/UBERON_0034896;ansa peduncularis;ansa peduncularis in thalamus -http://purl.obolibrary.org/obo/UBERON_0034896;ansa peduncularis;peduncular loop -http://purl.obolibrary.org/obo/UBERON_0034898;alveolar ridge of premaxilla;pars dentalis of premaxilla -http://purl.obolibrary.org/obo/UBERON_0034900;palatine process of premaxilla;pars palatina of premaxilla -http://purl.obolibrary.org/obo/UBERON_0034901;cervical sympathetic nerve trunk;cervical part of sympathetic trunk -http://purl.obolibrary.org/obo/UBERON_0034901;cervical sympathetic nerve trunk;cervical sympathetic chain -http://purl.obolibrary.org/obo/UBERON_0034901;cervical sympathetic nerve trunk;cervical sympathetic trunk -http://purl.obolibrary.org/obo/UBERON_0034902;sacral sympathetic nerve trunk;sacral part of sympathetic trunk -http://purl.obolibrary.org/obo/UBERON_0034902;sacral sympathetic nerve trunk;sacral sympathetic chain -http://purl.obolibrary.org/obo/UBERON_0034902;sacral sympathetic nerve trunk;sacral sympathetic trunk -http://purl.obolibrary.org/obo/UBERON_0034903;left atrium endocardium;endocardium of left atrium -http://purl.obolibrary.org/obo/UBERON_0034903;left atrium endocardium;left atrial endocardium -http://purl.obolibrary.org/obo/UBERON_0034905;gland lumen;lumen of gland -http://purl.obolibrary.org/obo/UBERON_0034907;pineal parenchyma; -http://purl.obolibrary.org/obo/UBERON_0034908;scapular muscle; -http://purl.obolibrary.org/obo/UBERON_0034909;intermaxillary suture;intermaxillary suture of skull -http://purl.obolibrary.org/obo/UBERON_0034910;medial pretectal nucleus; -http://purl.obolibrary.org/obo/UBERON_0034918;anterior pretectal nucleus;anterior (ventral /principal) pretectal nucleus -http://purl.obolibrary.org/obo/UBERON_0034921;multi organ part structure;anatomical cluster -http://purl.obolibrary.org/obo/UBERON_0034922;cell cluster; -http://purl.obolibrary.org/obo/UBERON_0034923;disconnected anatomical group; -http://purl.obolibrary.org/obo/UBERON_0034924;aligned anatomical group; -http://purl.obolibrary.org/obo/UBERON_0034925;anatomical collection; -http://purl.obolibrary.org/obo/UBERON_0034926;anatomical row; -http://purl.obolibrary.org/obo/UBERON_0034927;arcuate artery of foot; -http://purl.obolibrary.org/obo/UBERON_0034928;dorsal surface of penis;dorsum of penis -http://purl.obolibrary.org/obo/UBERON_0034928;dorsal surface of penis;dorsum penis -http://purl.obolibrary.org/obo/UBERON_0034929;external soft tissue zone; -http://purl.obolibrary.org/obo/UBERON_0034930;auricular feather; -http://purl.obolibrary.org/obo/UBERON_0034931;perforant path; -http://purl.obolibrary.org/obo/UBERON_0034932;epithelium of biliary system;biliary system epithelium -http://purl.obolibrary.org/obo/UBERON_0034933;layer of smooth muscle tissue; -http://purl.obolibrary.org/obo/UBERON_0034934;Weber's gland;gland of Weber -http://purl.obolibrary.org/obo/UBERON_0034934;Weber's gland;posterior superficial lingual gland -http://purl.obolibrary.org/obo/UBERON_0034935;pars plicata of ciliary body;ciliary crown -http://purl.obolibrary.org/obo/UBERON_0034935;pars plicata of ciliary body;corona ciliaris -http://purl.obolibrary.org/obo/UBERON_0034936;pars plana of ciliary body;ciliary ring -http://purl.obolibrary.org/obo/UBERON_0034936;pars plana of ciliary body;orbiculus ciliaris -http://purl.obolibrary.org/obo/UBERON_0034937;pharyngeal bar; -http://purl.obolibrary.org/obo/UBERON_0034938;mucocartilage tissue;mucocartilage -http://purl.obolibrary.org/obo/UBERON_0034938;mucocartilage tissue;mucocartilaginous tissue -http://purl.obolibrary.org/obo/UBERON_0034939;future piston;future lingual cartilage -http://purl.obolibrary.org/obo/UBERON_0034940;venous sinus cavity;blood sinus cavity -http://purl.obolibrary.org/obo/UBERON_0034940;venous sinus cavity;blood sinus lumen -http://purl.obolibrary.org/obo/UBERON_0034941;blood sinus of vibrissa;sinus of vibrissa -http://purl.obolibrary.org/obo/UBERON_0034941;blood sinus of vibrissa;vibrissa sinus -http://purl.obolibrary.org/obo/UBERON_0034942;vibrissal follicle-sinus complex; -http://purl.obolibrary.org/obo/UBERON_0034943;saccus vasculosus; -http://purl.obolibrary.org/obo/UBERON_0034944;zone of organ;organ region with floating fiat boundary -http://purl.obolibrary.org/obo/UBERON_0034944;zone of organ;organ sector -http://purl.obolibrary.org/obo/UBERON_0034944;zone of organ;organ zonal region -http://purl.obolibrary.org/obo/UBERON_0034944;zone of organ;organ zone -http://purl.obolibrary.org/obo/UBERON_0034945;excreted gas; -http://purl.obolibrary.org/obo/UBERON_0034946;gas excreted from digestive tract; -http://purl.obolibrary.org/obo/UBERON_0034947;gas in respiratory system;respiratory gas -http://purl.obolibrary.org/obo/UBERON_0034947;gas in respiratory system;respiratory system gas -http://purl.obolibrary.org/obo/UBERON_0034948;carbon dioxide in respiratory system;respiratory CO2 -http://purl.obolibrary.org/obo/UBERON_0034948;carbon dioxide in respiratory system;respiratory system CO2 -http://purl.obolibrary.org/obo/UBERON_0034949;lymphatic valve;lymphatic vessel valve -http://purl.obolibrary.org/obo/UBERON_0034950;lymph sac of lymph heart; -http://purl.obolibrary.org/obo/UBERON_0034951;subcutaneous lymph sac; -http://purl.obolibrary.org/obo/UBERON_0034952;intrapleuroperitoneal lymph sac; -http://purl.obolibrary.org/obo/UBERON_0034953;embryonic lymph sac; -http://purl.obolibrary.org/obo/UBERON_0034958;retroperitoneal embryonic lymph sac; -http://purl.obolibrary.org/obo/UBERON_0034959;right lymph heart; -http://purl.obolibrary.org/obo/UBERON_0034960;left lymph heart; -http://purl.obolibrary.org/obo/UBERON_0034961;embryonic lymph heart; -http://purl.obolibrary.org/obo/UBERON_0034962;copulatory lymph heart; -http://purl.obolibrary.org/obo/UBERON_0034963;lateral fornix of vagina;lateral part of fornix of vagina -http://purl.obolibrary.org/obo/UBERON_0034963;lateral fornix of vagina;pars lateralis fornicis vaginae -http://purl.obolibrary.org/obo/UBERON_0034964;superficial epigastric artery; -http://purl.obolibrary.org/obo/UBERON_0034965;middle thyroid vein; -http://purl.obolibrary.org/obo/UBERON_0034968;sagittal sulcus; -http://purl.obolibrary.org/obo/UBERON_0034969;epithelial layer of duct; -http://purl.obolibrary.org/obo/UBERON_0034971;aortic body; -http://purl.obolibrary.org/obo/UBERON_0034972;jugular body;glomus jugulare -http://purl.obolibrary.org/obo/UBERON_0034972;jugular body;glomus tympanicum -http://purl.obolibrary.org/obo/UBERON_0034972;jugular body;jugulotympanic body -http://purl.obolibrary.org/obo/UBERON_0034972;jugular body;tympanic body -http://purl.obolibrary.org/obo/UBERON_0034978;paraganglion (generic);paraganglia -http://purl.obolibrary.org/obo/UBERON_0034979;nonchromaffin paraganglion; -http://purl.obolibrary.org/obo/UBERON_0034980;jugular bulb;bulb of jugular vein -http://purl.obolibrary.org/obo/UBERON_0034981;superior bulb of internal jugular vein;bulbus superior venae jugularis -http://purl.obolibrary.org/obo/UBERON_0034981;superior bulb of internal jugular vein;superior bulb of jugular vein -http://purl.obolibrary.org/obo/UBERON_0034982;inferior bulb of internal jugular vein;bulbus inferior venae jugularis -http://purl.obolibrary.org/obo/UBERON_0034982;inferior bulb of internal jugular vein;inferior bulb of jugular vein -http://purl.obolibrary.org/obo/UBERON_0034983;ischial tuberosity;tuber ischiale -http://purl.obolibrary.org/obo/UBERON_0034984;nerve to quadratus femoris; -http://purl.obolibrary.org/obo/UBERON_0034986;sacral nerve plexus;plexus sacralis -http://purl.obolibrary.org/obo/UBERON_0034986;sacral nerve plexus;sacral plexus -http://purl.obolibrary.org/obo/UBERON_0034987;lumbar nerve plexus;lumbar plexus -http://purl.obolibrary.org/obo/UBERON_0034987;lumbar nerve plexus;plexus lumbalis -http://purl.obolibrary.org/obo/UBERON_0034988;tendon of obturator internus;obturator internus tendon -http://purl.obolibrary.org/obo/UBERON_0034989;amygdalopiriform transition area;postpiriform transition area -http://purl.obolibrary.org/obo/UBERON_0034991;anterior cortical amygdaloid nucleus; -http://purl.obolibrary.org/obo/UBERON_0034993;basal ventral medial nucleus of thalamus;basal ventral medial thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_0034994;hindbrain cortical intermediate zone;hindbrain mantle layer -http://purl.obolibrary.org/obo/UBERON_0034995;jaw mesenchyme; -http://purl.obolibrary.org/obo/UBERON_0034996;outer renal medulla loop of Henle;loop of Henle, outer medullary portion -http://purl.obolibrary.org/obo/UBERON_0034997;renal medulla loop of Henle;loop of Henle of renal medulla -http://purl.obolibrary.org/obo/UBERON_0034997;renal medulla loop of Henle;loop of Henle, medullary portion -http://purl.obolibrary.org/obo/UBERON_0034999;posterolateral cortical amygdaloid nucleus;posterolateral cortical amygdaloid area -http://purl.obolibrary.org/obo/UBERON_0035001;posteromedial cortical amygdaloid nucleus; -http://purl.obolibrary.org/obo/UBERON_0035004;preputial swelling; -http://purl.obolibrary.org/obo/UBERON_0035005;preputial swelling of male; -http://purl.obolibrary.org/obo/UBERON_0035006;preputial swelling of female; -http://purl.obolibrary.org/obo/UBERON_0035007;nasal concha cartilage;turbinal cartilage -http://purl.obolibrary.org/obo/UBERON_0035007;nasal concha cartilage;turbinate bone primordium -http://purl.obolibrary.org/obo/UBERON_0035007;nasal concha cartilage;turbinate cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0035007;nasal concha cartilage;unossified nasal turbinal -http://purl.obolibrary.org/obo/UBERON_0035007;nasal concha cartilage;unossified nasal turbinate -http://purl.obolibrary.org/obo/UBERON_0035007;nasal concha cartilage;unossified turbinate -http://purl.obolibrary.org/obo/UBERON_0035011;central gray substance;central gray -http://purl.obolibrary.org/obo/UBERON_0035011;central gray substance;central gray substance -http://purl.obolibrary.org/obo/UBERON_0035011;central gray substance;central grey -http://purl.obolibrary.org/obo/UBERON_0035011;central gray substance;central grey substance -http://purl.obolibrary.org/obo/UBERON_0035011;central gray substance;griseum centrale -http://purl.obolibrary.org/obo/UBERON_0035011;central gray substance;griseum periventriculare -http://purl.obolibrary.org/obo/UBERON_0035011;central gray substance;stratum griseum centrale -http://purl.obolibrary.org/obo/UBERON_0035011;central gray substance;substantia grisea centralis -http://purl.obolibrary.org/obo/UBERON_0035013;temporal cortex association area; -http://purl.obolibrary.org/obo/UBERON_0035014;functional part of brain; -http://purl.obolibrary.org/obo/UBERON_0035015;association cortex; -http://purl.obolibrary.org/obo/UBERON_0035016;tactile mechanoreceptor;contact receptor -http://purl.obolibrary.org/obo/UBERON_0035017;nociceptor; -http://purl.obolibrary.org/obo/UBERON_0035018;thermoreceptor; -http://purl.obolibrary.org/obo/UBERON_0035019;inferior olive, beta nucleus;inferior olive beta subnucleus -http://purl.obolibrary.org/obo/UBERON_0035020;left vagus X nerve trunk;left vagus neural trunk -http://purl.obolibrary.org/obo/UBERON_0035020;left vagus X nerve trunk;trunk of left vagus -http://purl.obolibrary.org/obo/UBERON_0035021;right vagus X nerve trunk;right vagus neural trunk -http://purl.obolibrary.org/obo/UBERON_0035021;right vagus X nerve trunk;trunk of right vagus -http://purl.obolibrary.org/obo/UBERON_0035022;trunk of segmental spinal nerve;segmental spinal nerve trunk -http://purl.obolibrary.org/obo/UBERON_0035024;lateral spinal nucleus; -http://purl.obolibrary.org/obo/UBERON_0035026;amygdalohippocampal transition area; -http://purl.obolibrary.org/obo/UBERON_0035027;amygdalohippocampal area, magnocellular division; -http://purl.obolibrary.org/obo/UBERON_0035028;amygdalohippocampal area, parvocellular division; -http://purl.obolibrary.org/obo/UBERON_0035032;abdominal oblique muscle;oblique abdominal muscle -http://purl.obolibrary.org/obo/UBERON_0035034;eyelid epithelium; -http://purl.obolibrary.org/obo/UBERON_0035036;naris epithelium; -http://purl.obolibrary.org/obo/UBERON_0035037;jaw epithelium; -http://purl.obolibrary.org/obo/UBERON_0035038;carpal tunnel;carpal canal -http://purl.obolibrary.org/obo/UBERON_0035039;rectal artery;hemorrhoidal artery -http://purl.obolibrary.org/obo/UBERON_0035040;superior rectal artery;superior hemorrhoidal artery -http://purl.obolibrary.org/obo/UBERON_0035041;deep temporal artery; -http://purl.obolibrary.org/obo/UBERON_0035042;middle temporal artery; -http://purl.obolibrary.org/obo/UBERON_0035043;temporal branch of lateral pretrosal artery; -http://purl.obolibrary.org/obo/UBERON_0035044;olfactory cortex layer 3; -http://purl.obolibrary.org/obo/UBERON_0035045;parotid gland intralobular duct; -http://purl.obolibrary.org/obo/UBERON_0035046;parotid gland intercalated duct; -http://purl.obolibrary.org/obo/UBERON_0035047;parotid gland striated duct; -http://purl.obolibrary.org/obo/UBERON_0035048;parotid gland excretory duct; -http://purl.obolibrary.org/obo/UBERON_0035049;excretory duct of salivary gland; -http://purl.obolibrary.org/obo/UBERON_0035050;excretory duct; -http://purl.obolibrary.org/obo/UBERON_0035053;interlobular duct of salivary gland; -http://purl.obolibrary.org/obo/UBERON_0035073;duct of eccrine sweat gland;ductal part of eccrine sweat gland -http://purl.obolibrary.org/obo/UBERON_0035074;duct of apocrine sweat gland;ductal part of apocrine sweat gland -http://purl.obolibrary.org/obo/UBERON_0035075;thymus subunit; -http://purl.obolibrary.org/obo/UBERON_0035076;parotid gland myoepithelium; -http://purl.obolibrary.org/obo/UBERON_0035077;lateral nasal gland;Steno gland -http://purl.obolibrary.org/obo/UBERON_0035077;lateral nasal gland;Steno's gland -http://purl.obolibrary.org/obo/UBERON_0035077;lateral nasal gland;glandula nasalis lateralis -http://purl.obolibrary.org/obo/UBERON_0035078;parotid gland interlobular duct; -http://purl.obolibrary.org/obo/UBERON_0035079;deep intraparotid lymph node;deep intraparotid node -http://purl.obolibrary.org/obo/UBERON_0035079;deep intraparotid lymph node;intraglandular deep parotid lymph nodes -http://purl.obolibrary.org/obo/UBERON_0035080;intraparotid lymph node;intraparotid node -http://purl.obolibrary.org/obo/UBERON_0035081;caudofemoralis longus;M. caudofemoralis longus -http://purl.obolibrary.org/obo/UBERON_0035081;caudofemoralis longus;caudofemoralis longus muscle -http://purl.obolibrary.org/obo/UBERON_0035082;caudofemoralis brevis;M. caudofemoralis brevis -http://purl.obolibrary.org/obo/UBERON_0035082;caudofemoralis brevis;caudofemoralis brevis muscle -http://purl.obolibrary.org/obo/UBERON_0035083;transverse process-bearing vertebra; -http://purl.obolibrary.org/obo/UBERON_0035084;non-transverse process-bearing vertebra; -http://purl.obolibrary.org/obo/UBERON_0035085;anatomical plane; -http://purl.obolibrary.org/obo/UBERON_0035086;plane of autotomy; -http://purl.obolibrary.org/obo/UBERON_0035087;fracture plane;plane of autotomy bisecting bone -http://purl.obolibrary.org/obo/UBERON_0035088;vertebral fracture plane;plane of autotomy bisecting vertebral bone -http://purl.obolibrary.org/obo/UBERON_0035089;plane of autotomy bisecting joint; -http://purl.obolibrary.org/obo/UBERON_0035090;plane of autotomy bisecting intervertebral joint; -http://purl.obolibrary.org/obo/UBERON_0035091;extrinsic post-anal tail muscle; -http://purl.obolibrary.org/obo/UBERON_0035092;spinalis caudalis muscle;M. spinalis caudalis -http://purl.obolibrary.org/obo/UBERON_0035092;spinalis caudalis muscle;spinalis caudalis -http://purl.obolibrary.org/obo/UBERON_0035093;extensor caudae muscle;caudal extensor muscle -http://purl.obolibrary.org/obo/UBERON_0035094;extensor caudae medialis muscle;M. externsor caudae medialis -http://purl.obolibrary.org/obo/UBERON_0035094;extensor caudae medialis muscle;extensor caudae medialis -http://purl.obolibrary.org/obo/UBERON_0035095;extensor caudae lateralis muscle;M. externsor caudae lateralis -http://purl.obolibrary.org/obo/UBERON_0035095;extensor caudae lateralis muscle;extensor caudae lateralis -http://purl.obolibrary.org/obo/UBERON_0035096;fascia of tail; -http://purl.obolibrary.org/obo/UBERON_0035097;iliocaudalis muscle;M. iliocaudalis -http://purl.obolibrary.org/obo/UBERON_0035097;iliocaudalis muscle;iliocaudalis -http://purl.obolibrary.org/obo/UBERON_0035098;hemipenis transversus muscle; -http://purl.obolibrary.org/obo/UBERON_0035099;transversus perinei muscle; -http://purl.obolibrary.org/obo/UBERON_0035100;retractor penis magnus muscle; -http://purl.obolibrary.org/obo/UBERON_0035102;transverse process of caudal vertebra; -http://purl.obolibrary.org/obo/UBERON_0035103;perineal body smooth muscle muscle tissue;perineal body muscle -http://purl.obolibrary.org/obo/UBERON_0035104;raphe of penis;penile raphe -http://purl.obolibrary.org/obo/UBERON_0035104;raphe of penis;raphe penis -http://purl.obolibrary.org/obo/UBERON_0035105;sac of scrotum;scrotal comartment -http://purl.obolibrary.org/obo/UBERON_0035105;sac of scrotum;scrotal sac -http://purl.obolibrary.org/obo/UBERON_0035105;sac of scrotum;testis comartment -http://purl.obolibrary.org/obo/UBERON_0035106;raphe of perineum;perineal raphe -http://purl.obolibrary.org/obo/UBERON_0035106;raphe of perineum;raphe perinealis -http://purl.obolibrary.org/obo/UBERON_0035106;raphe of perineum;raphe perinei -http://purl.obolibrary.org/obo/UBERON_0035108;temporalis fascia;fascia of temporalis -http://purl.obolibrary.org/obo/UBERON_0035108;temporalis fascia;temporal fascia -http://purl.obolibrary.org/obo/UBERON_0035108;temporalis fascia;temporalis fascia -http://purl.obolibrary.org/obo/UBERON_0035109;plantar nerve; -http://purl.obolibrary.org/obo/UBERON_0035110;lateral plantar nerve;external plantar nerve -http://purl.obolibrary.org/obo/UBERON_0035110;lateral plantar nerve;nervus plantaris lateralis -http://purl.obolibrary.org/obo/UBERON_0035111;medial plantar nerve;internal plantar nerve -http://purl.obolibrary.org/obo/UBERON_0035111;medial plantar nerve;nervus plantaris medialis -http://purl.obolibrary.org/obo/UBERON_0035112;intrinsic muscle; -http://purl.obolibrary.org/obo/UBERON_0035113;central part of mediodorsal nucleus of the thalamus;mediodorsal nucleus of the thalamus, central part -http://purl.obolibrary.org/obo/UBERON_0035114;lateral part of mediodorsal nucleus of the thalamus;mediodorsal nucleus of the thalamus, lateral part -http://purl.obolibrary.org/obo/UBERON_0035115;diastema between central incisors;interdental space, central incisors -http://purl.obolibrary.org/obo/UBERON_0035115;diastema between central incisors;midline diastema -http://purl.obolibrary.org/obo/UBERON_0035116;diastema between upper central incisors;interdental space between maxillary central incisors -http://purl.obolibrary.org/obo/UBERON_0035116;diastema between upper central incisors;interdental space, upper central incisors -http://purl.obolibrary.org/obo/UBERON_0035116;diastema between upper central incisors;midline maxillary diastema -http://purl.obolibrary.org/obo/UBERON_0035117;diastema between lower central incisors;interdental space between mandibular central incisors -http://purl.obolibrary.org/obo/UBERON_0035117;diastema between lower central incisors;interdental space, lower central incisors -http://purl.obolibrary.org/obo/UBERON_0035117;diastema between lower central incisors;midline mandibular diastema -http://purl.obolibrary.org/obo/UBERON_0035118;material entity in digestive tract;digestive tract contents -http://purl.obolibrary.org/obo/UBERON_0035119;diastema between incisors;incisor diastema -http://purl.obolibrary.org/obo/UBERON_0035119;diastema between incisors;interdental space, incisors -http://purl.obolibrary.org/obo/UBERON_0035120;fauces; -http://purl.obolibrary.org/obo/UBERON_0035122;interincisive suture; -http://purl.obolibrary.org/obo/UBERON_0035123;palatomaxillary suture;palatomaxillary suture of skull -http://purl.obolibrary.org/obo/UBERON_0035124;palatoethmoidal suture;palato-ethmoidal suture -http://purl.obolibrary.org/obo/UBERON_0035124;palatoethmoidal suture;palatoethmoidal suture of skull -http://purl.obolibrary.org/obo/UBERON_0035124;palatoethmoidal suture;sutura palatoethmoidalis -http://purl.obolibrary.org/obo/UBERON_0035126;transverse palatine suture;transverse palatine suture of skull -http://purl.obolibrary.org/obo/UBERON_0035127;suture of hard palate;palatine suture -http://purl.obolibrary.org/obo/UBERON_0035128;manus cartilage element;hand cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0035129;pes cartilage element;foot cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0035130;auditory ossicle endochondral element;auditory skeletal element -http://purl.obolibrary.org/obo/UBERON_0035130;auditory ossicle endochondral element;middle ear ossicle element -http://purl.obolibrary.org/obo/UBERON_0035131;auditory ossicle cartilage element;ossicle cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0035132;auditory ossicle pre-cartilage element;ossicle pre-cartilage condensation -http://purl.obolibrary.org/obo/UBERON_0035133;longitudinal arch of pes;longitudinal arch of foot -http://purl.obolibrary.org/obo/UBERON_0035139;anterior nasal spine of maxilla;spina nasalis anterior corporis maxillae -http://purl.obolibrary.org/obo/UBERON_0035142;preputial space of male; -http://purl.obolibrary.org/obo/UBERON_0035143;preputial space of female; -http://purl.obolibrary.org/obo/UBERON_0035144;preputial space;preputial cavity -http://purl.obolibrary.org/obo/UBERON_0035145;nucleus sacci vasculosi; -http://purl.obolibrary.org/obo/UBERON_0035146;tractus sacci vasculosi; -http://purl.obolibrary.org/obo/UBERON_0035147;axochord; -http://purl.obolibrary.org/obo/UBERON_0035148;presumptive axochord;axochord pre-muscle mass -http://purl.obolibrary.org/obo/UBERON_0035149;gingival epithelial attachment; -http://purl.obolibrary.org/obo/UBERON_0035150;superior cerebral vein; -http://purl.obolibrary.org/obo/UBERON_0035151;dorsal cerebral vein; -http://purl.obolibrary.org/obo/UBERON_0035152;internal cerebral vein; -http://purl.obolibrary.org/obo/UBERON_0035153;dorsolateral prefrontal cortex layer 1;layer I of dorsolateral prefrontal cortex -http://purl.obolibrary.org/obo/UBERON_0035154;dorsolateral prefrontal cortex layer 2;layer II of dorsolateral prefrontal cortex -http://purl.obolibrary.org/obo/UBERON_0035155;dorsolateral prefrontal cortex layer 3;layer III of dorsolateral prefrontal cortex -http://purl.obolibrary.org/obo/UBERON_0035156;dorsolateral prefrontal cortex layer 4;granular layer IV of dorsolateral prefrontal cortex -http://purl.obolibrary.org/obo/UBERON_0035157;dorsolateral prefrontal cortex layer 5;layer V of dorsolateral prefrontal cortex -http://purl.obolibrary.org/obo/UBERON_0035158;dorsolateral prefrontal cortex layer 6;layer VI of dorsolateral prefrontal cortex -http://purl.obolibrary.org/obo/UBERON_0035159;entire surface of organism;surface of body -http://purl.obolibrary.org/obo/UBERON_0035162;infraclavicular lymph node;deltopectoral lymph node -http://purl.obolibrary.org/obo/UBERON_0035162;infraclavicular lymph node;deltopectoral node -http://purl.obolibrary.org/obo/UBERON_0035162;infraclavicular lymph node;infraclavicular node -http://purl.obolibrary.org/obo/UBERON_0035162;infraclavicular lymph node;nodus lymphaticus infraclavicularis axillae -http://purl.obolibrary.org/obo/UBERON_0035165;posterior surface of prostate;facies posterior (prostatae) -http://purl.obolibrary.org/obo/UBERON_0035165;posterior surface of prostate;facies posterior prostatae -http://purl.obolibrary.org/obo/UBERON_0035165;posterior surface of prostate;posterior surface of prostate gland -http://purl.obolibrary.org/obo/UBERON_0035168;infraclavicular region;infraclavicular part of chest -http://purl.obolibrary.org/obo/UBERON_0035168;infraclavicular region;infraclavicular region -http://purl.obolibrary.org/obo/UBERON_0035171;obturator lymph node;obturator node -http://purl.obolibrary.org/obo/UBERON_0035174;right ear; -http://purl.obolibrary.org/obo/UBERON_0035177;abdominal part of esophagus;T11 part of esophagus -http://purl.obolibrary.org/obo/UBERON_0035177;abdominal part of esophagus;abdominal esophagus -http://purl.obolibrary.org/obo/UBERON_0035177;abdominal part of esophagus;abdominal part of oesophagus -http://purl.obolibrary.org/obo/UBERON_0035177;abdominal part of esophagus;pars abdominalis (oesophagus) -http://purl.obolibrary.org/obo/UBERON_0035177;abdominal part of esophagus;pars abdominalis oesophageae -http://purl.obolibrary.org/obo/UBERON_0035180;sigmoid artery;inferior left colic artery -http://purl.obolibrary.org/obo/UBERON_0035183;calcarine artery;calcarine branch of medial occipital artery -http://purl.obolibrary.org/obo/UBERON_0035183;calcarine artery;ramus calcarinus (arteria occipitalis medialis) -http://purl.obolibrary.org/obo/UBERON_0035186;valve of foramen ovale;foramen ovale valve -http://purl.obolibrary.org/obo/UBERON_0035195;plantar metatarsal artery;plantar metatarsal branch of plantar arch -http://purl.obolibrary.org/obo/UBERON_0035198;superficial lymphatic vessel;superficial lymph vessel -http://purl.obolibrary.org/obo/UBERON_0035201;gastrocolic ligament; -http://purl.obolibrary.org/obo/UBERON_0035204;occipital lymph node;occipital node -http://purl.obolibrary.org/obo/UBERON_0035207;deep fibular nerve;deep peroneal nerve -http://purl.obolibrary.org/obo/UBERON_0035210;paracolic gutter;paracolic sulcus -http://purl.obolibrary.org/obo/UBERON_0035213;basal zone of heart;anatomical base of heart -http://purl.obolibrary.org/obo/UBERON_0035213;basal zone of heart;base of heart -http://purl.obolibrary.org/obo/UBERON_0035213;basal zone of heart;basis cordis -http://purl.obolibrary.org/obo/UBERON_0035216;thoracic part of esophagus;pars thoracica (oesophagus) -http://purl.obolibrary.org/obo/UBERON_0035216;thoracic part of esophagus;pars thoracica oesophageae -http://purl.obolibrary.org/obo/UBERON_0035216;thoracic part of esophagus;thoracic esophagus -http://purl.obolibrary.org/obo/UBERON_0035216;thoracic part of esophagus;thoracic part of oesophagus -http://purl.obolibrary.org/obo/UBERON_0035219;parasternal lymph node;internal mammary lymph node -http://purl.obolibrary.org/obo/UBERON_0035219;parasternal lymph node;nodus parasternale -http://purl.obolibrary.org/obo/UBERON_0035219;parasternal lymph node;parasternal node -http://purl.obolibrary.org/obo/UBERON_0035222;posterior parietal artery; -http://purl.obolibrary.org/obo/UBERON_0035225;anterior temporal artery; -http://purl.obolibrary.org/obo/UBERON_0035228;tonsillar fossa;tonsillar bed -http://purl.obolibrary.org/obo/UBERON_0035228;tonsillar fossa;tonsillar sinus -http://purl.obolibrary.org/obo/UBERON_0035231;superficial middle cerebral vein;Sylvian vein -http://purl.obolibrary.org/obo/UBERON_0035231;superficial middle cerebral vein;vein of Labbe -http://purl.obolibrary.org/obo/UBERON_0035234;medial circumflex femoral vein; -http://purl.obolibrary.org/obo/UBERON_0035237;branch of internal carotid artery;internal carotid arterial subdivision -http://purl.obolibrary.org/obo/UBERON_0035237;branch of internal carotid artery;subdivision of internal carotid artery -http://purl.obolibrary.org/obo/UBERON_0035240;posterior wall of oropharynx; -http://purl.obolibrary.org/obo/UBERON_0035243;anal sinus;anal crypt -http://purl.obolibrary.org/obo/UBERON_0035246;posterior longitudinal ligament; -http://purl.obolibrary.org/obo/UBERON_0035249;posterior external jugular vein; -http://purl.obolibrary.org/obo/UBERON_0035252;left subcostal vein;vena subcostalis sinistra -http://purl.obolibrary.org/obo/UBERON_0035258;mons pubis;mons veneris -http://purl.obolibrary.org/obo/UBERON_0035258;mons pubis;public mound -http://purl.obolibrary.org/obo/UBERON_0035261;posterior temporal artery; -http://purl.obolibrary.org/obo/UBERON_0035267;neck of gallbladder;cervix of gallbladder -http://purl.obolibrary.org/obo/UBERON_0035267;neck of gallbladder;gallbladder neck -http://purl.obolibrary.org/obo/UBERON_0035270;roof of nasopharynx;nasopharynx roof -http://purl.obolibrary.org/obo/UBERON_0035270;roof of nasopharynx;pharyngeal fornix -http://purl.obolibrary.org/obo/UBERON_0035270;roof of nasopharynx;roof of nasal part of pharynx -http://purl.obolibrary.org/obo/UBERON_0035270;roof of nasopharynx;superior nasopharynx -http://purl.obolibrary.org/obo/UBERON_0035270;roof of nasopharynx;superior wall of nasopharynx -http://purl.obolibrary.org/obo/UBERON_0035270;roof of nasopharynx;vault of pharynx -http://purl.obolibrary.org/obo/UBERON_0035273;superior thoracic artery; -http://purl.obolibrary.org/obo/UBERON_0035276;epigastrium;epigastric fossa -http://purl.obolibrary.org/obo/UBERON_0035276;epigastrium;epigastric part of abdomen -http://purl.obolibrary.org/obo/UBERON_0035276;epigastrium;epigastric region -http://purl.obolibrary.org/obo/UBERON_0035279;supraclavicular lymph node;nodus lymphaticus supraclavicularis axillae -http://purl.obolibrary.org/obo/UBERON_0035279;supraclavicular lymph node;supraclavicular node -http://purl.obolibrary.org/obo/UBERON_0035286;lateral wall of oropharynx; -http://purl.obolibrary.org/obo/UBERON_0035289;axillary tail of breast;axillary process -http://purl.obolibrary.org/obo/UBERON_0035289;axillary tail of breast;axillary tail -http://purl.obolibrary.org/obo/UBERON_0035289;axillary tail of breast;axillary tail of Spence -http://purl.obolibrary.org/obo/UBERON_0035289;axillary tail of breast;processus axillaris (glandula mammaria) -http://purl.obolibrary.org/obo/UBERON_0035289;axillary tail of breast;tail of Spence -http://purl.obolibrary.org/obo/UBERON_0035292;branch of posterior tibial artery;posterior tibial arterial branch -http://purl.obolibrary.org/obo/UBERON_0035295;left ear; -http://purl.obolibrary.org/obo/UBERON_0035298;tuberculum sellae; -http://purl.obolibrary.org/obo/UBERON_0035304;branch of ulnar artery;ulnar arterial branch -http://purl.obolibrary.org/obo/UBERON_0035307;branch of vertebral artery;vertebral arterial branch -http://purl.obolibrary.org/obo/UBERON_0035310;inferolateral surface of prostate;facies inferolaterales (prostatae) -http://purl.obolibrary.org/obo/UBERON_0035310;inferolateral surface of prostate;facies inferolateralis prostatae -http://purl.obolibrary.org/obo/UBERON_0035310;inferolateral surface of prostate;inferolateral surface of prostate gland -http://purl.obolibrary.org/obo/UBERON_0035313;posterior wall of laryngopharynx;posterior wall of hypopharynx -http://purl.obolibrary.org/obo/UBERON_0035316;prostatic capsule;capsule of prostate -http://purl.obolibrary.org/obo/UBERON_0035316;prostatic capsule;capsule of prostate gland -http://purl.obolibrary.org/obo/UBERON_0035319;anterior median fissure of spinal cord;fissura mediana anterior medullae spinalis -http://purl.obolibrary.org/obo/UBERON_0035319;anterior median fissure of spinal cord;ventral median fissure of spinal cord -http://purl.obolibrary.org/obo/UBERON_0035322;right common iliac artery;trunk of right common iliac arterial tree -http://purl.obolibrary.org/obo/UBERON_0035328;upper outer quadrant of breast;upper outer quadrant of female breast -http://purl.obolibrary.org/obo/UBERON_0035331;base of prostate;base of prostate gland -http://purl.obolibrary.org/obo/UBERON_0035331;base of prostate;prostatic base -http://purl.obolibrary.org/obo/UBERON_0035338;sphenoparietal sinus; -http://purl.obolibrary.org/obo/UBERON_0035341;posterior lobe of prostate;posterior lobe of prostate gland -http://purl.obolibrary.org/obo/UBERON_0035341;posterior lobe of prostate;posterior peripheral zone -http://purl.obolibrary.org/obo/UBERON_0035350;branch of middle cerebral artery;middle cerebral arterial branch -http://purl.obolibrary.org/obo/UBERON_0035359;branch of brachial artery;brachial arterial branch -http://purl.obolibrary.org/obo/UBERON_0035365;lower outer quadrant of breast;lower outer quadrant of female breast -http://purl.obolibrary.org/obo/UBERON_0035368;anterior surface of kidney;facies anterior (Ren) -http://purl.obolibrary.org/obo/UBERON_0035368;anterior surface of kidney;facies anterior renis -http://purl.obolibrary.org/obo/UBERON_0035371;retroperitoneal lymph node;retroperitoneal node -http://purl.obolibrary.org/obo/UBERON_0035374;small cardiac vein;right cardiac vein -http://purl.obolibrary.org/obo/UBERON_0035377;transverse fold of rectum;horizontal fold of rectum -http://purl.obolibrary.org/obo/UBERON_0035377;transverse fold of rectum;transverse rectal fold -http://purl.obolibrary.org/obo/UBERON_0035380;branch of anterior cerebral artery;anterior cerebral arterial branch -http://purl.obolibrary.org/obo/UBERON_0035383;lateral wall of nasopharynx;lateral nasopharynx -http://purl.obolibrary.org/obo/UBERON_0035386;space of Mall;mall space -http://purl.obolibrary.org/obo/UBERON_0035392;cystic vein;cholecystic vein -http://purl.obolibrary.org/obo/UBERON_0035395;branch of left coronary artery;left coronary arterial branch -http://purl.obolibrary.org/obo/UBERON_0035398;branch of external carotid artery;external carotid arterial subdivision -http://purl.obolibrary.org/obo/UBERON_0035398;branch of external carotid artery;subdivision of external carotid artery -http://purl.obolibrary.org/obo/UBERON_0035401;posterior wall of nasopharynx;posterior nasopharynx -http://purl.obolibrary.org/obo/UBERON_0035403;hypophysial artery; -http://purl.obolibrary.org/obo/UBERON_0035404;superior hypophysial artery;superior hypophyseal artery -http://purl.obolibrary.org/obo/UBERON_0035410;left inguinal part of abdomen;left iliac fossa viewed surgically -http://purl.obolibrary.org/obo/UBERON_0035410;left inguinal part of abdomen;left iliac region -http://purl.obolibrary.org/obo/UBERON_0035410;left inguinal part of abdomen;left inguinal region -http://purl.obolibrary.org/obo/UBERON_0035416;diaphragma sellae;sellar diaphragm -http://purl.obolibrary.org/obo/UBERON_0035419;anterior longitudinal ligament; -http://purl.obolibrary.org/obo/UBERON_0035422;circumflex branch of left coronary artery;circumflex coronary artery -http://purl.obolibrary.org/obo/UBERON_0035422;circumflex branch of left coronary artery;left circumflex branch of left coronary artery -http://purl.obolibrary.org/obo/UBERON_0035422;circumflex branch of left coronary artery;ramus circumflexus (arteria coronaria sinistra) -http://purl.obolibrary.org/obo/UBERON_0035425;falx cerebelli;cerebellar falx -http://purl.obolibrary.org/obo/UBERON_0035428;postcapillary venule; -http://purl.obolibrary.org/obo/UBERON_0035431;mediastinal pleura;mediastinal part of parietal pleura -http://purl.obolibrary.org/obo/UBERON_0035431;mediastinal pleura;pars mediastinalis (pleurae) -http://purl.obolibrary.org/obo/UBERON_0035431;mediastinal pleura;pars mediastinalis pleurae parietalis -http://purl.obolibrary.org/obo/UBERON_0035435;right suprarenal vein;vena suprarenalis (adrenalis) dextra -http://purl.obolibrary.org/obo/UBERON_0035438;mucoid tissue;mucous connective tissue -http://purl.obolibrary.org/obo/UBERON_0035438;mucoid tissue;mucous tissue -http://purl.obolibrary.org/obo/UBERON_0035441;apex of prostate;apex of prostate gland -http://purl.obolibrary.org/obo/UBERON_0035441;apex of prostate;prostatic apex -http://purl.obolibrary.org/obo/UBERON_0035444;triangular ligament of liver; -http://purl.obolibrary.org/obo/UBERON_0035445;urogenital diaphragm; -http://purl.obolibrary.org/obo/UBERON_0035450;cervical part of esophagus;cervical esophagus -http://purl.obolibrary.org/obo/UBERON_0035450;cervical part of esophagus;cervical part of oesophagus -http://purl.obolibrary.org/obo/UBERON_0035450;cervical part of esophagus;pars cervicalis (oesophagus) -http://purl.obolibrary.org/obo/UBERON_0035450;cervical part of esophagus;pars cervicalis oesophageae -http://purl.obolibrary.org/obo/UBERON_0035450;cervical part of esophagus;pars colli oesophageae -http://purl.obolibrary.org/obo/UBERON_0035453;laryngeal ventricle;ventricle of Morgagni -http://purl.obolibrary.org/obo/UBERON_0035453;laryngeal ventricle;ventricle of larynx -http://purl.obolibrary.org/obo/UBERON_0035462;anterior parietal artery; -http://purl.obolibrary.org/obo/UBERON_0035465;endometrial cavity;cavity of body of uterus -http://purl.obolibrary.org/obo/UBERON_0035465;endometrial cavity;endometrial cavity -http://purl.obolibrary.org/obo/UBERON_0035465;endometrial cavity;endometrial lumen -http://purl.obolibrary.org/obo/UBERON_0035465;endometrial cavity;intrauterine cavity -http://purl.obolibrary.org/obo/UBERON_0035468;costodiaphragmatic recess;costophrenic angle -http://purl.obolibrary.org/obo/UBERON_0035471;posterior surface of kidney;facies posterior (Ren) -http://purl.obolibrary.org/obo/UBERON_0035471;posterior surface of kidney;facies posterior renis -http://purl.obolibrary.org/obo/UBERON_0035474;right subcostal vein;vena subcostalis dextra -http://purl.obolibrary.org/obo/UBERON_0035477;lower inner quadrant of breast;lower inner quadrant of female breast -http://purl.obolibrary.org/obo/UBERON_0035480;surface of prostate;prostatic surface -http://purl.obolibrary.org/obo/UBERON_0035480;surface of prostate;surface of prostate gland -http://purl.obolibrary.org/obo/UBERON_0035483;left suprarenal vein; -http://purl.obolibrary.org/obo/UBERON_0035489;branch of basilar artery;basilar arterial branch -http://purl.obolibrary.org/obo/UBERON_0035492;inferior hypophysial artery;inferior hypophyseal artery -http://purl.obolibrary.org/obo/UBERON_0035495;hilum of lymph node;hilum nodi lymphoidei -http://purl.obolibrary.org/obo/UBERON_0035495;hilum of lymph node;lymph node hilum -http://purl.obolibrary.org/obo/UBERON_0035498;gastrophrenic ligament; -http://purl.obolibrary.org/obo/UBERON_0035501;unencapsulated tactile receptor;free nerve ending -http://purl.obolibrary.org/obo/UBERON_0035501;unencapsulated tactile receptor;unencapsulated nerve ending -http://purl.obolibrary.org/obo/UBERON_0035505;right inguinal part of abdomen;right iliac fossa viewed surgically -http://purl.obolibrary.org/obo/UBERON_0035505;right inguinal part of abdomen;right iliac region -http://purl.obolibrary.org/obo/UBERON_0035505;right inguinal part of abdomen;right inguinal region -http://purl.obolibrary.org/obo/UBERON_0035508;branch of posterior cerebral artery;posterior cerebral arterial branch -http://purl.obolibrary.org/obo/UBERON_0035514;special sense organ system; -http://purl.obolibrary.org/obo/UBERON_0035520;anterior mediastinal lymph node;anterior mediastinal node -http://purl.obolibrary.org/obo/UBERON_0035523;anterior surface of prostate;anterior surface of prostate gland -http://purl.obolibrary.org/obo/UBERON_0035523;anterior surface of prostate;facies anterior (prostatae) -http://purl.obolibrary.org/obo/UBERON_0035523;anterior surface of prostate;facies anterior prostatae -http://purl.obolibrary.org/obo/UBERON_0035526;superficial fibular nerve;superficial peroneal nerve -http://purl.obolibrary.org/obo/UBERON_0035529;left common iliac artery;trunk of left common iliac arterial tree -http://purl.obolibrary.org/obo/UBERON_0035530;basal vein;basal vein of rosenthal -http://purl.obolibrary.org/obo/UBERON_0035530;basal vein;rosenthal's vein -http://purl.obolibrary.org/obo/UBERON_0035532;deep middle cerebral vein; -http://purl.obolibrary.org/obo/UBERON_0035536;body of gallbladder;gallbladder body -http://purl.obolibrary.org/obo/UBERON_0035539;esophageal artery;aortic esophageal artery -http://purl.obolibrary.org/obo/UBERON_0035539;esophageal artery;oesophageal artery -http://purl.obolibrary.org/obo/UBERON_0035542;upper inner quadrant of breast;upper inner quadrant of female breast -http://purl.obolibrary.org/obo/UBERON_0035545;deep lymphatic vessel;deep lymph vessel -http://purl.obolibrary.org/obo/UBERON_0035546;uveal vein;ciliary vein -http://purl.obolibrary.org/obo/UBERON_0035547;posterior ciliary vein;vorticose vein -http://purl.obolibrary.org/obo/UBERON_0035548;colic artery; -http://purl.obolibrary.org/obo/UBERON_0035549;vasculature of integument;superficial part of circulatory system -http://purl.obolibrary.org/obo/UBERON_0035549;vasculature of integument;superficial vasculature -http://purl.obolibrary.org/obo/UBERON_0035550;superficial vein; -http://purl.obolibrary.org/obo/UBERON_0035551;deep vasculature;deep part of circulatory system -http://purl.obolibrary.org/obo/UBERON_0035552;deep vein; -http://purl.obolibrary.org/obo/UBERON_0035553;left cardiac chamber; -http://purl.obolibrary.org/obo/UBERON_0035554;right cardiac chamber; -http://purl.obolibrary.org/obo/UBERON_0035555;lateral line sense organ; -http://purl.obolibrary.org/obo/UBERON_0035561;styliform element; -http://purl.obolibrary.org/obo/UBERON_0035562;intermediate pretectal nucleus; -http://purl.obolibrary.org/obo/UBERON_0035563;magnocellular superficial pretectal nucleus;magnocellular superficial pretectal nuclei -http://purl.obolibrary.org/obo/UBERON_0035564;parvocellular superficial pretectal nucleus;parvocellular superficial pretectal nuclei -http://purl.obolibrary.org/obo/UBERON_0035565;caudal pretectal nucleus;caudal pretectal nuclei -http://purl.obolibrary.org/obo/UBERON_0035566;central pretectal nucleus;nucleus praetectalis centralis -http://purl.obolibrary.org/obo/UBERON_0035567;accessory pretectal nucleus;APN -http://purl.obolibrary.org/obo/UBERON_0035567;accessory pretectal nucleus;nucleus praetectalis accessorius -http://purl.obolibrary.org/obo/UBERON_0035568;superficial pretectal nucleus; -http://purl.obolibrary.org/obo/UBERON_0035569;periventricular pretectal nucleus;periventricular pretectum -http://purl.obolibrary.org/obo/UBERON_0035569;periventricular pretectal nucleus;pretectal periventricular nuclei -http://purl.obolibrary.org/obo/UBERON_0035569;periventricular pretectal nucleus;pretectal periventricular nucleus -http://purl.obolibrary.org/obo/UBERON_0035570;tectothalamic tract;tectothalamic fibers -http://purl.obolibrary.org/obo/UBERON_0035572;nucleus praetectalis profundus;nucleus pratectalis profundus -http://purl.obolibrary.org/obo/UBERON_0035572;nucleus praetectalis profundus;profundal pretectal nucleus -http://purl.obolibrary.org/obo/UBERON_0035573;dorsal pretectal periventricular nucleus; -http://purl.obolibrary.org/obo/UBERON_0035574;ventral pretectal periventricular nucleus; -http://purl.obolibrary.org/obo/UBERON_0035575;paracommissural nucleus of solitary tract; -http://purl.obolibrary.org/obo/UBERON_0035577;paracommissural periventricular pretectal nucleus;paracommissural nucleus -http://purl.obolibrary.org/obo/UBERON_0035580;nucleus geniculatus of pretectum;nucleus geniculatus pretectalis -http://purl.obolibrary.org/obo/UBERON_0035581;nucleus lentiformis of pretectum;nucleus lentiformis mesencephali -http://purl.obolibrary.org/obo/UBERON_0035582;nucleus posteriodorsalis of pretectum;nucleus posteriodorsalis -http://purl.obolibrary.org/obo/UBERON_0035583;nucleus lentiformis thalamus; -http://purl.obolibrary.org/obo/UBERON_0035584;ventral pretectal nucleus (sauropsida); -http://purl.obolibrary.org/obo/UBERON_0035585;tectal gray nucleus (Testudines);griseum tectalis -http://purl.obolibrary.org/obo/UBERON_0035586;nucleus lentiformis mesencephali (Aves); -http://purl.obolibrary.org/obo/UBERON_0035587;nucleus pretectalis diffusus; -http://purl.obolibrary.org/obo/UBERON_0035588;subpretectal complex of Aves; -http://purl.obolibrary.org/obo/UBERON_0035589;nucleus subpretectalis; -http://purl.obolibrary.org/obo/UBERON_0035590;nucleus interstitio-pretectalis-subpretectalis; -http://purl.obolibrary.org/obo/UBERON_0035591;lateral spiriform nucleus; -http://purl.obolibrary.org/obo/UBERON_0035592;medial spiriform nucleus; -http://purl.obolibrary.org/obo/UBERON_0035593;nucleus circularis of pretectum; -http://purl.obolibrary.org/obo/UBERON_0035594;accessory optic system; -http://purl.obolibrary.org/obo/UBERON_0035595;accessory optic tract; -http://purl.obolibrary.org/obo/UBERON_0035596;circular nucleus of antherior hypothalamic nucleus; -http://purl.obolibrary.org/obo/UBERON_0035597;profundal placode;ophthalmic lobe of trigeminal placode -http://purl.obolibrary.org/obo/UBERON_0035597;profundal placode;ophthalmic lobe of trigeminal placode complex -http://purl.obolibrary.org/obo/UBERON_0035597;profundal placode;ophthalmic placode -http://purl.obolibrary.org/obo/UBERON_0035597;profundal placode;profundus placode -http://purl.obolibrary.org/obo/UBERON_0035598;maxillomandibular placode;maxillomandibular lobe of trigeminal placode complex -http://purl.obolibrary.org/obo/UBERON_0035599;profundal part of trigeminal ganglion complex; -http://purl.obolibrary.org/obo/UBERON_0035601;maxillomandibular part of trigeminal ganglion complex; -http://purl.obolibrary.org/obo/UBERON_0035602;collar nerve cord; -http://purl.obolibrary.org/obo/UBERON_0035603;enteropneust proboscis; -http://purl.obolibrary.org/obo/UBERON_0035604;enteropneust collar; -http://purl.obolibrary.org/obo/UBERON_0035605;enteropneust trunk; -http://purl.obolibrary.org/obo/UBERON_0035606;cartilage of external acoustic meatus;cartilage of acoustic meatus -http://purl.obolibrary.org/obo/UBERON_0035606;cartilage of external acoustic meatus;cartilage of auditory canal -http://purl.obolibrary.org/obo/UBERON_0035606;cartilage of external acoustic meatus;cartilago meatus acustici -http://purl.obolibrary.org/obo/UBERON_0035606;cartilage of external acoustic meatus;external acoustic meatus cartilage -http://purl.obolibrary.org/obo/UBERON_0035607;accessory nerve cord of dorsal region; -http://purl.obolibrary.org/obo/UBERON_0035608;dura mater lymph vessel;dural lymph vessel -http://purl.obolibrary.org/obo/UBERON_0035609;outer root sheath companion layer; -http://purl.obolibrary.org/obo/UBERON_0035610;hair canal; -http://purl.obolibrary.org/obo/UBERON_0035611;hair peg; -http://purl.obolibrary.org/obo/UBERON_0035612;nasal turbinal;nasal turbinal -http://purl.obolibrary.org/obo/UBERON_0035612;nasal turbinal;nasal turbinal element -http://purl.obolibrary.org/obo/UBERON_0035612;nasal turbinal;nasal turbinate -http://purl.obolibrary.org/obo/UBERON_0035612;nasal turbinal;turbinal -http://purl.obolibrary.org/obo/UBERON_0035612;nasal turbinal;turbinate -http://purl.obolibrary.org/obo/UBERON_0035617;peripharyngeal space; -http://purl.obolibrary.org/obo/UBERON_0035618;parapharyngeal space;lateral pharyngeal space -http://purl.obolibrary.org/obo/UBERON_0035618;parapharyngeal space;parapharyngeal space -http://purl.obolibrary.org/obo/UBERON_0035618;parapharyngeal space;spatium parapharyngeum -http://purl.obolibrary.org/obo/UBERON_0035619;retropharyngeal space;Henke's space -http://purl.obolibrary.org/obo/UBERON_0035619;retropharyngeal space;postpharyngeal space -http://purl.obolibrary.org/obo/UBERON_0035619;retropharyngeal space;spatium retropharyngeum -http://purl.obolibrary.org/obo/UBERON_0035634;quadrant of breast;breast quadrant -http://purl.obolibrary.org/obo/UBERON_0035635;upper quadrant of breast; -http://purl.obolibrary.org/obo/UBERON_0035636;lower quadrant of breast; -http://purl.obolibrary.org/obo/UBERON_0035637;inner quadrant of breast; -http://purl.obolibrary.org/obo/UBERON_0035638;outer quadrant of breast; -http://purl.obolibrary.org/obo/UBERON_0035639;ocular adnexa;accessory parts of orbital region -http://purl.obolibrary.org/obo/UBERON_0035639;ocular adnexa;accessory visual structures -http://purl.obolibrary.org/obo/UBERON_0035639;ocular adnexa;accessory visual structures set -http://purl.obolibrary.org/obo/UBERON_0035639;ocular adnexa;adnexa oculi -http://purl.obolibrary.org/obo/UBERON_0035639;ocular adnexa;adnexal parts of orbital region -http://purl.obolibrary.org/obo/UBERON_0035639;ocular adnexa;appendage of eye -http://purl.obolibrary.org/obo/UBERON_0035639;ocular adnexa;appendages of the eye -http://purl.obolibrary.org/obo/UBERON_0035639;ocular adnexa;eye adnexa -http://purl.obolibrary.org/obo/UBERON_0035639;ocular adnexa;set of accessory visual structures -http://purl.obolibrary.org/obo/UBERON_0035639;ocular adnexa;structurae oculi accessoriae -http://purl.obolibrary.org/obo/UBERON_0035640;middle vesical artery; -http://purl.obolibrary.org/obo/UBERON_0035642;laryngeal nerve; -http://purl.obolibrary.org/obo/UBERON_0035646;anterior superior alveolar nerve;anterior superior dental nerve -http://purl.obolibrary.org/obo/UBERON_0035647;posterior auricular nerve;auricularis posterior branch of facial nerve -http://purl.obolibrary.org/obo/UBERON_0035648;nerve innervating pinna;auricular nerve -http://purl.obolibrary.org/obo/UBERON_0035649;nerve of penis;penile nerve -http://purl.obolibrary.org/obo/UBERON_0035649;nerve of penis;penis nerve -http://purl.obolibrary.org/obo/UBERON_0035650;nerve of clitoris;clitoral nerve -http://purl.obolibrary.org/obo/UBERON_0035650;nerve of clitoris;clitoris nerve -http://purl.obolibrary.org/obo/UBERON_0035651;glans; -http://purl.obolibrary.org/obo/UBERON_0035652;fibular nerve;peroneal nerve -http://purl.obolibrary.org/obo/UBERON_0035655;paraumbilical vein;venae paraumbilicales -http://purl.obolibrary.org/obo/UBERON_0035659;deep facial vein; -http://purl.obolibrary.org/obo/UBERON_0035662;parotid vein;anterior parotid vein -http://purl.obolibrary.org/obo/UBERON_0035662;parotid vein;parotid branch of facial vein -http://purl.obolibrary.org/obo/UBERON_0035675;anterior facial vein; -http://purl.obolibrary.org/obo/UBERON_0035676;secondary yolk sac cavity;cavity of definitive yolk sac -http://purl.obolibrary.org/obo/UBERON_0035676;secondary yolk sac cavity;cavity of secondary yolk sac -http://purl.obolibrary.org/obo/UBERON_0035676;secondary yolk sac cavity;definitive yolk sac cavity -http://purl.obolibrary.org/obo/UBERON_0035676;secondary yolk sac cavity;secondary yolk sac cavity -http://purl.obolibrary.org/obo/UBERON_0035676;secondary yolk sac cavity;secondary yolk sac space -http://purl.obolibrary.org/obo/UBERON_0035677;primary yolk sac cavity;cavity of primary yolk sac -http://purl.obolibrary.org/obo/UBERON_0035677;primary yolk sac cavity;primary yolk sac cavity -http://purl.obolibrary.org/obo/UBERON_0035677;primary yolk sac cavity;primary yolk sac space -http://purl.obolibrary.org/obo/UBERON_0035753;capillary plexus;capillary network -http://purl.obolibrary.org/obo/UBERON_0035754;pulmonary capillary plexus;capillary network of lung -http://purl.obolibrary.org/obo/UBERON_0035754;pulmonary capillary plexus;pulmonary capillary network -http://purl.obolibrary.org/obo/UBERON_0035755;systemic capillary plexus;systemic capillary network -http://purl.obolibrary.org/obo/UBERON_0035756;capillary network of liver;capillary plexus of liver -http://purl.obolibrary.org/obo/UBERON_0035756;capillary network of liver;hepatic capillary network -http://purl.obolibrary.org/obo/UBERON_0035756;capillary network of liver;hepatic capillary plexus -http://purl.obolibrary.org/obo/UBERON_0035757;embryonic capillary plexus;embryonic venous capillary plexus -http://purl.obolibrary.org/obo/UBERON_0035758;peritubular capillary plexus of kidney;peritubular capillary network of kidney -http://purl.obolibrary.org/obo/UBERON_0035758;peritubular capillary plexus of kidney;peritubular capillary plexus -http://purl.obolibrary.org/obo/UBERON_0035762;capillary network of kidney;capillary plexus of kidney -http://purl.obolibrary.org/obo/UBERON_0035763;cavity of cardiac chamber;cardiac chamber cavity -http://purl.obolibrary.org/obo/UBERON_0035763;cavity of cardiac chamber;heart cavity -http://purl.obolibrary.org/obo/UBERON_0035763;cavity of cardiac chamber;heart lumen -http://purl.obolibrary.org/obo/UBERON_0035764;pulmonary lymph node;intrapulmonary lymph node -http://purl.obolibrary.org/obo/UBERON_0035764;pulmonary lymph node;pulmonary node -http://purl.obolibrary.org/obo/UBERON_0035765;subsegmental lymph node; -http://purl.obolibrary.org/obo/UBERON_0035766;median lobe of prostate;Albarran's gland -http://purl.obolibrary.org/obo/UBERON_0035766;median lobe of prostate;cranial part of prostate -http://purl.obolibrary.org/obo/UBERON_0035766;median lobe of prostate;lobus medius prostatae -http://purl.obolibrary.org/obo/UBERON_0035766;median lobe of prostate;middle lobe of prostate -http://purl.obolibrary.org/obo/UBERON_0035766;median lobe of prostate;pars proximalis (prostata) -http://purl.obolibrary.org/obo/UBERON_0035766;median lobe of prostate;pars proximalis prostatae -http://purl.obolibrary.org/obo/UBERON_0035766;median lobe of prostate;proximal part of prostate -http://purl.obolibrary.org/obo/UBERON_0035766;median lobe of prostate;proximal part of prostate gland -http://purl.obolibrary.org/obo/UBERON_0035767;intrapulmonary bronchus; -http://purl.obolibrary.org/obo/UBERON_0035768;coccygeal nerve plexus;coccygeal plexus -http://purl.obolibrary.org/obo/UBERON_0035768;coccygeal nerve plexus;plexus coccygeus -http://purl.obolibrary.org/obo/UBERON_0035769;mesenteric ganglion; -http://purl.obolibrary.org/obo/UBERON_0035770;inferior mesenteric nerve plexus;inferior mesenteric plexus -http://purl.obolibrary.org/obo/UBERON_0035770;inferior mesenteric nerve plexus;plexus mesentericus inferior -http://purl.obolibrary.org/obo/UBERON_0035770;inferior mesenteric nerve plexus;plexus nervosus mesentericus inferior -http://purl.obolibrary.org/obo/UBERON_0035771;mesenteric plexus; -http://purl.obolibrary.org/obo/UBERON_0035772;aortic plexus; -http://purl.obolibrary.org/obo/UBERON_0035773;abdominal nerve plexus;abdominal aortic nerve plexus -http://purl.obolibrary.org/obo/UBERON_0035773;abdominal nerve plexus;abdominal aortic plexus -http://purl.obolibrary.org/obo/UBERON_0035773;abdominal nerve plexus;plexus aorticus abdominalis -http://purl.obolibrary.org/obo/UBERON_0035773;abdominal nerve plexus;plexus nervosus aorticus abdominalis -http://purl.obolibrary.org/obo/UBERON_0035773;abdominal nerve plexus;preaortic nerve plexus -http://purl.obolibrary.org/obo/UBERON_0035774;thoracic aortic plexus;plexus aorticus thoracicus -http://purl.obolibrary.org/obo/UBERON_0035774;thoracic aortic plexus;plexus nervosus aorticus thoracicus -http://purl.obolibrary.org/obo/UBERON_0035774;thoracic aortic plexus;thoracic aortic nerve plexus -http://purl.obolibrary.org/obo/UBERON_0035775;submandibular region; -http://purl.obolibrary.org/obo/UBERON_0035776;accessory ciliary ganglion; -http://purl.obolibrary.org/obo/UBERON_0035783;ganglion of ciliary nerve; -http://purl.obolibrary.org/obo/UBERON_0035784;seminal clot;seminal coagulum -http://purl.obolibrary.org/obo/UBERON_0035785;telencephalic song nucleus HVC;HVC (avian brain region) -http://purl.obolibrary.org/obo/UBERON_0035785;telencephalic song nucleus HVC;pars caudalis (HVc) -http://purl.obolibrary.org/obo/UBERON_0035785;telencephalic song nucleus HVC;telencephalic song nucleus HVC -http://purl.obolibrary.org/obo/UBERON_0035786;layer of CA1 field; -http://purl.obolibrary.org/obo/UBERON_0035787;layer of CA2 field; -http://purl.obolibrary.org/obo/UBERON_0035788;layer of CA3 field; -http://purl.obolibrary.org/obo/UBERON_0035802;alveus of CA2 field; -http://purl.obolibrary.org/obo/UBERON_0035803;extrapyramidal tract system; -http://purl.obolibrary.org/obo/UBERON_0035804;future mouth;primitive mouth -http://purl.obolibrary.org/obo/UBERON_0035804;future mouth;primordial mouth -http://purl.obolibrary.org/obo/UBERON_0035805;muscle layer of sigmoid colon;muscularis externa of sigmoid colon -http://purl.obolibrary.org/obo/UBERON_0035805;muscle layer of sigmoid colon;muscularis propria of sigmoid colon -http://purl.obolibrary.org/obo/UBERON_0035805;muscle layer of sigmoid colon;sigmoid colon muscularis propria -http://purl.obolibrary.org/obo/UBERON_0035806;Hensen stripe;Hensen's stripe -http://purl.obolibrary.org/obo/UBERON_0035807;area X of basal ganglion; -http://purl.obolibrary.org/obo/UBERON_0035808;robust nucleus of arcopallium; -http://purl.obolibrary.org/obo/UBERON_0035809;serous cavity; -http://purl.obolibrary.org/obo/UBERON_0035814;pericardial fat; -http://purl.obolibrary.org/obo/UBERON_0035815;paracardial fat;intrathoracic fat -http://purl.obolibrary.org/obo/UBERON_0035818;visceral fat; -http://purl.obolibrary.org/obo/UBERON_0035819;abdominopelvic cavity;cavitas abdominis et pelvis -http://purl.obolibrary.org/obo/UBERON_0035820;peritoneal sac; -http://purl.obolibrary.org/obo/UBERON_0035825;left adrenal gland cortex;cortex of left adrenal gland -http://purl.obolibrary.org/obo/UBERON_0035825;left adrenal gland cortex;cortex of left suprarenal gland -http://purl.obolibrary.org/obo/UBERON_0035825;left adrenal gland cortex;left adrenal cortex -http://purl.obolibrary.org/obo/UBERON_0035826;left adrenal gland medulla;left adrenal medulla -http://purl.obolibrary.org/obo/UBERON_0035826;left adrenal gland medulla;medulla of left adrenal gland -http://purl.obolibrary.org/obo/UBERON_0035826;left adrenal gland medulla;medulla of left suprarenal gland -http://purl.obolibrary.org/obo/UBERON_0035827;right adrenal gland cortex;cortex of right adrenal gland -http://purl.obolibrary.org/obo/UBERON_0035827;right adrenal gland cortex;cortex of right suprarenal gland -http://purl.obolibrary.org/obo/UBERON_0035827;right adrenal gland cortex;right adrenal cortex -http://purl.obolibrary.org/obo/UBERON_0035828;right adrenal gland medulla;medulla of right adrenal gland -http://purl.obolibrary.org/obo/UBERON_0035828;right adrenal gland medulla;medulla of right suprarenal gland -http://purl.obolibrary.org/obo/UBERON_0035828;right adrenal gland medulla;right adrenal medulla -http://purl.obolibrary.org/obo/UBERON_0035829;right gastroepiploic artery;arteria gastro-omentalis dextra -http://purl.obolibrary.org/obo/UBERON_0035829;right gastroepiploic artery;arteria gastroepiploica dextra -http://purl.obolibrary.org/obo/UBERON_0035829;right gastroepiploic artery;arteria gastroomentalis dextra -http://purl.obolibrary.org/obo/UBERON_0035829;right gastroepiploic artery;right gastro-epiploic artery -http://purl.obolibrary.org/obo/UBERON_0035829;right gastroepiploic artery;right gastro-omental artery -http://purl.obolibrary.org/obo/UBERON_0035829;right gastroepiploic artery;right gastroomental artery -http://purl.obolibrary.org/obo/UBERON_0035830;left gastroepiploic artery;arteria gastro-omentalis sinistra -http://purl.obolibrary.org/obo/UBERON_0035830;left gastroepiploic artery;arteria gastroepiploica sinistra -http://purl.obolibrary.org/obo/UBERON_0035830;left gastroepiploic artery;arteria gastroomentalis sinistra -http://purl.obolibrary.org/obo/UBERON_0035830;left gastroepiploic artery;left gastro-epiploic artery -http://purl.obolibrary.org/obo/UBERON_0035830;left gastroepiploic artery;left gastro-omental artery -http://purl.obolibrary.org/obo/UBERON_0035830;left gastroepiploic artery;left gastroomental artery -http://purl.obolibrary.org/obo/UBERON_0035830;left gastroepiploic artery;left inferior gastric artery -http://purl.obolibrary.org/obo/UBERON_0035831;costal diaphragm;costal part of diaphragm -http://purl.obolibrary.org/obo/UBERON_0035831;costal diaphragm;pars costalis diaphragmatis -http://purl.obolibrary.org/obo/UBERON_0035832;caval sphincter;vena cava sphincter -http://purl.obolibrary.org/obo/UBERON_0035833;lower esophagus muscularis layer;lower esophagus muscularis propria -http://purl.obolibrary.org/obo/UBERON_0035833;lower esophagus muscularis layer;muscle coat of lower esophagus -http://purl.obolibrary.org/obo/UBERON_0035834;lower esophagus mucosa; -http://purl.obolibrary.org/obo/UBERON_0035835;apical region of left ventricle;apical zone of left ventricle -http://purl.obolibrary.org/obo/UBERON_0035836;apical region of right ventricle;apical zone of right ventricle -http://purl.obolibrary.org/obo/UBERON_0035837;apical region of heart ventricle;apical region of cardiac ventricle -http://purl.obolibrary.org/obo/UBERON_0035838;esophagogastric junction mucosa;gastro-esophageal junction mucosa -http://purl.obolibrary.org/obo/UBERON_0035839;esophagogastric junction submucosa;gastro-esophageal junction submucosa -http://purl.obolibrary.org/obo/UBERON_0035840;esophagogastric junction muscularis mucosa;gastro-esophageal junction muscularis mucosa -http://purl.obolibrary.org/obo/UBERON_0035841;esophagogastric junction muscularis propria;gastro-esophageal junction muscularis propria -http://purl.obolibrary.org/obo/UBERON_0035842;extensor digitorum brevis manus;extensor brevis digitorum manus -http://purl.obolibrary.org/obo/UBERON_0035842;extensor digitorum brevis manus;extensor digitorum brevis manus muscle -http://purl.obolibrary.org/obo/UBERON_0035843;lower esophagus submucosa; -http://purl.obolibrary.org/obo/UBERON_0035844;lower esophagus muscularis mucosa;lamina muscularis of lower esophagus -http://purl.obolibrary.org/obo/UBERON_0035845;enthesis; -http://purl.obolibrary.org/obo/UBERON_0035846;fibrous enthesis; -http://purl.obolibrary.org/obo/UBERON_0035847;fibrocartilage enthesis; -http://purl.obolibrary.org/obo/UBERON_0035848;infraorbital margin;inferior orbital rim -http://purl.obolibrary.org/obo/UBERON_0035848;infraorbital margin;infra-orbital margin -http://purl.obolibrary.org/obo/UBERON_0035848;infraorbital margin;margo infraorbitalis -http://purl.obolibrary.org/obo/UBERON_0035849;orbital margin;margin of orbit -http://purl.obolibrary.org/obo/UBERON_0035849;orbital margin;margo orbitalis -http://purl.obolibrary.org/obo/UBERON_0035849;orbital margin;orbital rim -http://purl.obolibrary.org/obo/UBERON_0035850;infraorbital bridge;infra-orbital bridge -http://purl.obolibrary.org/obo/UBERON_0035872;primary somatosensory area barrel field layer 5; -http://purl.obolibrary.org/obo/UBERON_0035873;primary somatosensory area barrel field layer 1; -http://purl.obolibrary.org/obo/UBERON_0035874;primary somatosensory area barrel field layer 2/3; -http://purl.obolibrary.org/obo/UBERON_0035875;primary somatosensory area barrel field layer 6b; -http://purl.obolibrary.org/obo/UBERON_0035876;primary somatosensory area barrel field layer 6a; -http://purl.obolibrary.org/obo/UBERON_0035877;primary somatosensory area barrel field layer 4; -http://purl.obolibrary.org/obo/UBERON_0035878;subchondral region of epiphysis;subchondral bone -http://purl.obolibrary.org/obo/UBERON_0035879;frontomaxillary suture;frontomaxillary suture of skull -http://purl.obolibrary.org/obo/UBERON_0035879;frontomaxillary suture;sutura frontomaxillaris -http://purl.obolibrary.org/obo/UBERON_0035880;zygomaticomaxillary suture;sutura infraorbitalis -http://purl.obolibrary.org/obo/UBERON_0035880;zygomaticomaxillary suture;sutura zygomaticomaxillaris -http://purl.obolibrary.org/obo/UBERON_0035880;zygomaticomaxillary suture;zygomaticomaxillary suture of skull -http://purl.obolibrary.org/obo/UBERON_0035881;ethmoidomaxillary suture;ethmoidomaxillary suture of skull -http://purl.obolibrary.org/obo/UBERON_0035881;ethmoidomaxillary suture;sutura ethmoidomaxillaris -http://purl.obolibrary.org/obo/UBERON_0035882;sphenomaxillary suture;sphenomaxillary suture of skull -http://purl.obolibrary.org/obo/UBERON_0035882;sphenomaxillary suture;sutura sphenomaxillaris -http://purl.obolibrary.org/obo/UBERON_0035883;lacrimomaxillary suture;lacrimomaxillary suture of skull -http://purl.obolibrary.org/obo/UBERON_0035883;lacrimomaxillary suture;sutura lacrimomaxillaris -http://purl.obolibrary.org/obo/UBERON_0035884;maxillary-premaxillary suture;maxillary-premaxillary incisive suture -http://purl.obolibrary.org/obo/UBERON_0035885;dorsal auditory area; -http://purl.obolibrary.org/obo/UBERON_0035886;posterior parietal association areas; -http://purl.obolibrary.org/obo/UBERON_0035890;postrhinal area; -http://purl.obolibrary.org/obo/UBERON_0035892;primary visual area, layer 6a; -http://purl.obolibrary.org/obo/UBERON_0035893;anteromedial visual area; -http://purl.obolibrary.org/obo/UBERON_0035894;anterolateral visual area; -http://purl.obolibrary.org/obo/UBERON_0035895;lateral visual area; -http://purl.obolibrary.org/obo/UBERON_0035897;posterolateral visual area; -http://purl.obolibrary.org/obo/UBERON_0035900;posteromedial visual area; -http://purl.obolibrary.org/obo/UBERON_0035904;primary visual area, layer 4; -http://purl.obolibrary.org/obo/UBERON_0035906;primary visual area, layer 5; -http://purl.obolibrary.org/obo/UBERON_0035907;primary visual area, layer 2/3; -http://purl.obolibrary.org/obo/UBERON_0035908;anterolateral visual area, layer 5; -http://purl.obolibrary.org/obo/UBERON_0035909;posteromedial visual area, layer 6a; -http://purl.obolibrary.org/obo/UBERON_0035911;postrhinal area, layer 4; -http://purl.obolibrary.org/obo/UBERON_0035912;rostrolateral visual area; -http://purl.obolibrary.org/obo/UBERON_0035913;anteromedial visual area, layer 5; -http://purl.obolibrary.org/obo/UBERON_0035914;posteromedial visual area, layer 4; -http://purl.obolibrary.org/obo/UBERON_0035915;lateral visual area, layer 4; -http://purl.obolibrary.org/obo/UBERON_0035916;lateral visual area, layer 5; -http://purl.obolibrary.org/obo/UBERON_0035917;dorsal auditory area, layer 4; -http://purl.obolibrary.org/obo/UBERON_0035918;lateral visual area, layer 6a; -http://purl.obolibrary.org/obo/UBERON_0035919;posterolateral visual area, layer 4; -http://purl.obolibrary.org/obo/UBERON_0035920;rostrolateral area, layer 5; -http://purl.obolibrary.org/obo/UBERON_0035922;intraculminate fissure of cerebellum;fissura intraculminalis -http://purl.obolibrary.org/obo/UBERON_0035922;intraculminate fissure of cerebellum;intraculminate fissure -http://purl.obolibrary.org/obo/UBERON_0035924;radiation of corpus callosum;corpus callosum radiation -http://purl.obolibrary.org/obo/UBERON_0035924;radiation of corpus callosum;radiatio corporis callosi -http://purl.obolibrary.org/obo/UBERON_0035925;central sulcus of insula;central fissure of insula -http://purl.obolibrary.org/obo/UBERON_0035925;central sulcus of insula;central fissure of island -http://purl.obolibrary.org/obo/UBERON_0035925;central sulcus of insula;central insula sulcus -http://purl.obolibrary.org/obo/UBERON_0035925;central sulcus of insula;central insular sulcus -http://purl.obolibrary.org/obo/UBERON_0035925;central sulcus of insula;central sulcus of insula -http://purl.obolibrary.org/obo/UBERON_0035925;central sulcus of insula;fissura centralis insulae -http://purl.obolibrary.org/obo/UBERON_0035925;central sulcus of insula;sulcus centralis insulae -http://purl.obolibrary.org/obo/UBERON_0035926;preculminate fissure of cerebellum;fissura preculminalis -http://purl.obolibrary.org/obo/UBERON_0035926;preculminate fissure of cerebellum;preculminate fissure -http://purl.obolibrary.org/obo/UBERON_0035927;sulcus of parietal lobe;parietal lobe sulci -http://purl.obolibrary.org/obo/UBERON_0035927;sulcus of parietal lobe;parietal lobe sulcus -http://purl.obolibrary.org/obo/UBERON_0035928;dorsolateral part of supraoptic nucleus;pars dorsolateralis nuclei supraoptici -http://purl.obolibrary.org/obo/UBERON_0035930;retro-olivary nucleus;nucleus retro-olivaris -http://purl.obolibrary.org/obo/UBERON_0035930;retro-olivary nucleus;retro-olivary cell group -http://purl.obolibrary.org/obo/UBERON_0035931;sagittal stratum; -http://purl.obolibrary.org/obo/UBERON_0035932;anterior segment of paracentral lobule;anterior part of paracentral lobule -http://purl.obolibrary.org/obo/UBERON_0035932;anterior segment of paracentral lobule;medial segment of precentral gyrus -http://purl.obolibrary.org/obo/UBERON_0035932;anterior segment of paracentral lobule;paracentral lobule, anterior part -http://purl.obolibrary.org/obo/UBERON_0035933;paracentral lobule;lobulus paracentralis -http://purl.obolibrary.org/obo/UBERON_0035934;posterior segment of paracentral lobule;posterior part of paracentral lobule -http://purl.obolibrary.org/obo/UBERON_0035935;Meyer's loop of optic radiation;Meyer's loop -http://purl.obolibrary.org/obo/UBERON_0035935;Meyer's loop of optic radiation;inferior optic radiation -http://purl.obolibrary.org/obo/UBERON_0035937;arcuate fasciculus;arcuate fascicle -http://purl.obolibrary.org/obo/UBERON_0035937;arcuate fasciculus;cerebral arcuate fasciculus -http://purl.obolibrary.org/obo/UBERON_0035937;arcuate fasciculus;fasciculus arcuatus -http://purl.obolibrary.org/obo/UBERON_0035938;amiculum of inferior olive;amiculum of olive -http://purl.obolibrary.org/obo/UBERON_0035938;amiculum of inferior olive;amiculum of the olive -http://purl.obolibrary.org/obo/UBERON_0035938;amiculum of inferior olive;amiculum olivae -http://purl.obolibrary.org/obo/UBERON_0035938;amiculum of inferior olive;amiculum olivare -http://purl.obolibrary.org/obo/UBERON_0035938;amiculum of inferior olive;inferior olive amiculum -http://purl.obolibrary.org/obo/UBERON_0035939;amiculum; -http://purl.obolibrary.org/obo/UBERON_0035940;central medullary reticular nuclear complex;central group (medullary reticular formation) -http://purl.obolibrary.org/obo/UBERON_0035940;central medullary reticular nuclear complex;central medullary reticular complex -http://purl.obolibrary.org/obo/UBERON_0035940;central medullary reticular nuclear complex;central medullary reticular group -http://purl.obolibrary.org/obo/UBERON_0035940;central medullary reticular nuclear complex;nuclei centrales myelencephali -http://purl.obolibrary.org/obo/UBERON_0035941;Kimura membrane; -http://purl.obolibrary.org/obo/UBERON_0035942;space between upper and lower jaws; -http://purl.obolibrary.org/obo/UBERON_0035956;epididymal lumen;epididymis lumen -http://purl.obolibrary.org/obo/UBERON_0035956;epididymal lumen;lumen of epididymis -http://purl.obolibrary.org/obo/UBERON_0035957;antotic pillar; -http://purl.obolibrary.org/obo/UBERON_0035958;preoptic pillar; -http://purl.obolibrary.org/obo/UBERON_0035959;orbital pillar; -http://purl.obolibrary.org/obo/UBERON_0035960;velum feeding organ;velum -http://purl.obolibrary.org/obo/UBERON_0035962;supravaginal part of cervix;portio supravaginalis cervicis -http://purl.obolibrary.org/obo/UBERON_0035963;epithelial lining fluid; -http://purl.obolibrary.org/obo/UBERON_0035964;promontory of tympanic cavity;promontorium tympani -http://purl.obolibrary.org/obo/UBERON_0035964;promontory of tympanic cavity;tympanic cavity promontory -http://purl.obolibrary.org/obo/UBERON_0035965;wall of blood vessel;blood vessel wall -http://purl.obolibrary.org/obo/UBERON_0035965;wall of blood vessel;vascular wall -http://purl.obolibrary.org/obo/UBERON_0035966;scleral lamina cribrosa;lamina cribrosa of sclera -http://purl.obolibrary.org/obo/UBERON_0035966;scleral lamina cribrosa;lamina cribrosa sclerae -http://purl.obolibrary.org/obo/UBERON_0035967;alveolar mucosa; -http://purl.obolibrary.org/obo/UBERON_0035968;bulboid corpuscle; -http://purl.obolibrary.org/obo/UBERON_0035969;encapsulated tactile receptor;encapsulated nerve ending -http://purl.obolibrary.org/obo/UBERON_0035970;calcar avis of the lateral ventricle;hippocampus minor -http://purl.obolibrary.org/obo/UBERON_0035971;postsubiculum; -http://purl.obolibrary.org/obo/UBERON_0035972;interanterodorsal nucleus of the thalamus; -http://purl.obolibrary.org/obo/UBERON_0035973;nucleus incertus;Inc -http://purl.obolibrary.org/obo/UBERON_0035973;nucleus incertus;NI -http://purl.obolibrary.org/obo/UBERON_0035973;nucleus incertus;NI, CG0, CGalpha, CGbeta -http://purl.obolibrary.org/obo/UBERON_0035973;nucleus incertus;central Gray pars 0 -http://purl.obolibrary.org/obo/UBERON_0035973;nucleus incertus;central Gray part alpha -http://purl.obolibrary.org/obo/UBERON_0035973;nucleus incertus;charles Watson. - 5th ed.) -http://purl.obolibrary.org/obo/UBERON_0035973;nucleus incertus;nucleus incertus (Streeter) -http://purl.obolibrary.org/obo/UBERON_0035974;anteroventral preoptic nucleus; -http://purl.obolibrary.org/obo/UBERON_0035975;intergeniculate leaflet of the lateral geniculate complex; -http://purl.obolibrary.org/obo/UBERON_0035976;accessory abducens nucleus; -http://purl.obolibrary.org/obo/UBERON_0035977;bed nucleus of the accessory olfactory tract; -http://purl.obolibrary.org/obo/UBERON_0035999;dopaminergic cell groups; -http://purl.obolibrary.org/obo/UBERON_0036000;A8 dopaminergic cell group; -http://purl.obolibrary.org/obo/UBERON_0036001;A14 dopaminergic cell group; -http://purl.obolibrary.org/obo/UBERON_0036002;A15 dopaminergic cell group; -http://purl.obolibrary.org/obo/UBERON_0036003;A9 dopaminergic cell group; -http://purl.obolibrary.org/obo/UBERON_0036004;A17 dopaminergic cell group; -http://purl.obolibrary.org/obo/UBERON_0036005;A10 dopaminergic cell group; -http://purl.obolibrary.org/obo/UBERON_0036006;A11 dopaminergic cell group; -http://purl.obolibrary.org/obo/UBERON_0036007;A13 dopaminergic cell group; -http://purl.obolibrary.org/obo/UBERON_0036008;A16 dopaminergic cell group; -http://purl.obolibrary.org/obo/UBERON_0036009;A12 dopaminergic cell group; -http://purl.obolibrary.org/obo/UBERON_0036010;Aaq dopaminergic cell group; -http://purl.obolibrary.org/obo/UBERON_0036011;telencephalic dopaminergic cell group; -http://purl.obolibrary.org/obo/UBERON_0036012;nucleus of the brachium of the inferior colliculus; -http://purl.obolibrary.org/obo/UBERON_0036013;intergluteal cleft;anal cleft -http://purl.obolibrary.org/obo/UBERON_0036013;intergluteal cleft;crena analis -http://purl.obolibrary.org/obo/UBERON_0036013;intergluteal cleft;crena ani -http://purl.obolibrary.org/obo/UBERON_0036013;intergluteal cleft;crena interglutealis -http://purl.obolibrary.org/obo/UBERON_0036013;intergluteal cleft;intergluteal crease -http://purl.obolibrary.org/obo/UBERON_0036013;intergluteal cleft;natal cleft -http://purl.obolibrary.org/obo/UBERON_0036014;gluteal sulcus;gluteal fold -http://purl.obolibrary.org/obo/UBERON_0036014;gluteal sulcus;sulcus glutealis -http://purl.obolibrary.org/obo/UBERON_0036015;castoreum; -http://purl.obolibrary.org/obo/UBERON_0036016;honey; -http://purl.obolibrary.org/obo/UBERON_0036017;regurgitated substance; -http://purl.obolibrary.org/obo/UBERON_0036018;regurgitated pellet; -http://purl.obolibrary.org/obo/UBERON_0036019;castor sac; -http://purl.obolibrary.org/obo/UBERON_0036043;paravermic lobule X; -http://purl.obolibrary.org/obo/UBERON_0036044;cerebellum vermis lobule VIIAf;VIIAf -http://purl.obolibrary.org/obo/UBERON_0036044;cerebellum vermis lobule VIIAf;lobule VIIAf/crus I (folium and superior semilunar lobule) -http://purl.obolibrary.org/obo/UBERON_0036063;quadrangular lobule; -http://purl.obolibrary.org/obo/UBERON_0036065;cerebellum vermis lobule VIIAt;VIIAt -http://purl.obolibrary.org/obo/UBERON_0036065;cerebellum vermis lobule VIIAt;lobule VIIAt/crus II (tuber and inferior semilunar lobule) -http://purl.obolibrary.org/obo/UBERON_0036066;inferior endocardial cushion;ventral endocardial cushion -http://purl.obolibrary.org/obo/UBERON_0036067;superior endocardial cushion;dorsal endocardial cushion -http://purl.obolibrary.org/obo/UBERON_0036068;subglottis;infraglottic part of larynx -http://purl.obolibrary.org/obo/UBERON_0036068;subglottis;subglottic larynx -http://purl.obolibrary.org/obo/UBERON_0036068;subglottis;subglottic region -http://purl.obolibrary.org/obo/UBERON_0036069;tracheoesophageal fold;esophagotracheal fold -http://purl.obolibrary.org/obo/UBERON_0036070;tracheoesophageal septum;esophagotracheal septum -http://purl.obolibrary.org/obo/UBERON_0036071;diaphragmaticus muscle; -http://purl.obolibrary.org/obo/UBERON_0036072;respiratory primordium epithelium; -http://purl.obolibrary.org/obo/UBERON_0036073;respiratory primordium mesenchyme;respiratory primordium associated mesenchyme -http://purl.obolibrary.org/obo/UBERON_0036074;vein of vestibular aqueduct;vena aqueductus vestibuli -http://purl.obolibrary.org/obo/UBERON_0036074;vein of vestibular aqueduct;vestibular aqueduct vein -http://purl.obolibrary.org/obo/UBERON_0036143;meningeal branch of mandibular nerve;nervus spinosus -http://purl.obolibrary.org/obo/UBERON_0036143;meningeal branch of mandibular nerve;ramus meningeus (Nervus mandibularis) -http://purl.obolibrary.org/obo/UBERON_0036143;meningeal branch of mandibular nerve;ramus meningeus nervus mandibularis -http://purl.obolibrary.org/obo/UBERON_0036144;incisive duct;ductus incisivus -http://purl.obolibrary.org/obo/UBERON_0036145;glymphatic system; -http://purl.obolibrary.org/obo/UBERON_0036146;cardiopharyngeal field; -http://purl.obolibrary.org/obo/UBERON_0036147;oral siphon muscle;buccal siphon muscle -http://purl.obolibrary.org/obo/UBERON_0036148;orovelar muscle; -http://purl.obolibrary.org/obo/UBERON_0036149;suprapubic skin; -http://purl.obolibrary.org/obo/UBERON_0036150;skin appendage follicle;cutaneous appendage follicle -http://purl.obolibrary.org/obo/UBERON_0036150;skin appendage follicle;skin follicle -http://purl.obolibrary.org/obo/UBERON_0036151;diffuse placenta; -http://purl.obolibrary.org/obo/UBERON_0036152;cotyledonary placenta; -http://purl.obolibrary.org/obo/UBERON_0036153;zonary placenta; -http://purl.obolibrary.org/obo/UBERON_0036154;discoid placenta; -http://purl.obolibrary.org/obo/UBERON_0036161;epitheliochorial placenta; -http://purl.obolibrary.org/obo/UBERON_0036162;endotheliochorial placenta; -http://purl.obolibrary.org/obo/UBERON_0036163;hemochorial placenta; -http://purl.obolibrary.org/obo/UBERON_0036164;ambient gyrus;ambiens gyrus -http://purl.obolibrary.org/obo/UBERON_0036164;ambient gyrus;gyrus ambiens -http://purl.obolibrary.org/obo/UBERON_0036167;Sattler's layer; -http://purl.obolibrary.org/obo/UBERON_0036168;Haller's layer; -http://purl.obolibrary.org/obo/UBERON_0036172;palmaris brevis;musculus palmaris brevis -http://purl.obolibrary.org/obo/UBERON_0036172;palmaris brevis;palmaris brevis muscle -http://purl.obolibrary.org/obo/UBERON_0036173;abductor digiti minimi of hand;abductor digiti minimi muscle of hand -http://purl.obolibrary.org/obo/UBERON_0036173;abductor digiti minimi of hand;musculus abductor digiti minimi -http://purl.obolibrary.org/obo/UBERON_0036174;flexor digiti minimi brevis of hand;flexor digiti minimi brevis muscle of hand -http://purl.obolibrary.org/obo/UBERON_0036174;flexor digiti minimi brevis of hand;musculus flexor digiti minimi brevis (manus) -http://purl.obolibrary.org/obo/UBERON_0036176;opponens digiti minimi of hand;musculus opponens digiti minimi (Manus) -http://purl.obolibrary.org/obo/UBERON_0036176;opponens digiti minimi of hand;opponens digiti minimi muscle of hand -http://purl.obolibrary.org/obo/UBERON_0036177;nucleus recessus; -http://purl.obolibrary.org/obo/UBERON_0036185;Sertoli cell barrier; -http://purl.obolibrary.org/obo/UBERON_0036186;fibroelastic connective tissue; -http://purl.obolibrary.org/obo/UBERON_0036212;intertragic incisure;incisura intertragica -http://purl.obolibrary.org/obo/UBERON_0036212;intertragic incisure;intertragal incisure -http://purl.obolibrary.org/obo/UBERON_0036212;intertragic incisure;intertragic incisure -http://purl.obolibrary.org/obo/UBERON_0036212;intertragic incisure;intertragic notch -http://purl.obolibrary.org/obo/UBERON_0036214;rectosigmoid junction; -http://purl.obolibrary.org/obo/UBERON_0036215;anatomical surface region; -http://purl.obolibrary.org/obo/UBERON_0036216;tympanic nerve;jacobson%27s nerve -http://purl.obolibrary.org/obo/UBERON_0036216;tympanic nerve;nerve of jacobson -http://purl.obolibrary.org/obo/UBERON_0036216;tympanic nerve;tympanic -http://purl.obolibrary.org/obo/UBERON_0036216;tympanic nerve;tympanic branch -http://purl.obolibrary.org/obo/UBERON_0036216;tympanic nerve;tympanic branch of the glossopharyngeal -http://purl.obolibrary.org/obo/UBERON_0036217;coelomic fluid; -http://purl.obolibrary.org/obo/UBERON_0036218;secondary prosencephalon; -http://purl.obolibrary.org/obo/UBERON_0036219;ungulate coronary band;corium coronae -http://purl.obolibrary.org/obo/UBERON_0036219;ungulate coronary band;coronary band -http://purl.obolibrary.org/obo/UBERON_0036224;corticobulbar and corticospinal tracts; -http://purl.obolibrary.org/obo/UBERON_0036225;respiratory system gland; -http://purl.obolibrary.org/obo/UBERON_0036242;post-embryonic notochord; -http://purl.obolibrary.org/obo/UBERON_0036243;vaginal fluid; -http://purl.obolibrary.org/obo/UBERON_0036244;secretion of serous membrane;serous sac fluid -http://purl.obolibrary.org/obo/UBERON_0036245;parenchyma of mammary gland;lactiferous gland parenchyma -http://purl.obolibrary.org/obo/UBERON_0036245;parenchyma of mammary gland;mammary gland parenchyma -http://purl.obolibrary.org/obo/UBERON_0036245;parenchyma of mammary gland;parenchyma of lactiferous gland -http://purl.obolibrary.org/obo/UBERON_0036246;incudostapedial joint;articulatio incudostapedialis -http://purl.obolibrary.org/obo/UBERON_0036246;incudostapedial joint;incudostapedial articulation -http://purl.obolibrary.org/obo/UBERON_0036247;incudomallear joint;articulatio incudomallearis -http://purl.obolibrary.org/obo/UBERON_0036247;incudomallear joint;incudomallear articulation -http://purl.obolibrary.org/obo/UBERON_0036247;incudomallear joint;incudomalleolar joint -http://purl.obolibrary.org/obo/UBERON_0036248;joint of auditory ossicle;auditory ossicle joint -http://purl.obolibrary.org/obo/UBERON_0036248;joint of auditory ossicle;auditory ossicles joint -http://purl.obolibrary.org/obo/UBERON_0036248;joint of auditory ossicle;joint of auditory ossicles -http://purl.obolibrary.org/obo/UBERON_0036249;zona pectinata of basilar membrane of cochlea;pectinate zone of basilar membrane -http://purl.obolibrary.org/obo/UBERON_0036249;zona pectinata of basilar membrane of cochlea;pectinate zone of organ of corti -http://purl.obolibrary.org/obo/UBERON_0036250;zone of basilar membrane of cochlea; -http://purl.obolibrary.org/obo/UBERON_0036252;interdigital space; -http://purl.obolibrary.org/obo/UBERON_0036253;orifice of skull;cranial orifice -http://purl.obolibrary.org/obo/UBERON_0036253;orifice of skull;skull orifice -http://purl.obolibrary.org/obo/UBERON_0036254;piriform aperture;apertura piriformis -http://purl.obolibrary.org/obo/UBERON_0036255;interoceptive system; -http://purl.obolibrary.org/obo/UBERON_0036256;iliac lymph sac; -http://purl.obolibrary.org/obo/UBERON_0036259;cardial lymph propulsor; -http://purl.obolibrary.org/obo/UBERON_0036260;embryonic cisterna chyli; -http://purl.obolibrary.org/obo/UBERON_0036261;accessory lymph sac; -http://purl.obolibrary.org/obo/UBERON_0036262;uterine ligament; -http://purl.obolibrary.org/obo/UBERON_0036263;supraglottic part of larynx;supraglottic larynx -http://purl.obolibrary.org/obo/UBERON_0036263;supraglottic part of larynx;supraglottis -http://purl.obolibrary.org/obo/UBERON_0036264;zygomaticotemporal nerve;ramus zygomaticotemporalis (Nervus zygomaticus) -http://purl.obolibrary.org/obo/UBERON_0036264;zygomaticotemporal nerve;ramus zygomaticotemporalis nervus zygomatici -http://purl.obolibrary.org/obo/UBERON_0036264;zygomaticotemporal nerve;zygomaticotemporal -http://purl.obolibrary.org/obo/UBERON_0036264;zygomaticotemporal nerve;zygomaticotemporal branch -http://purl.obolibrary.org/obo/UBERON_0036264;zygomaticotemporal nerve;zygomaticotemporal branch of zygomatic nerve -http://purl.obolibrary.org/obo/UBERON_0036265;conjunctival papilla;conjunctival papillae -http://purl.obolibrary.org/obo/UBERON_0036266;pars interarticularis of vertebra;pars interarticularis -http://purl.obolibrary.org/obo/UBERON_0036267;vulval vein; -http://purl.obolibrary.org/obo/UBERON_0036268;pelvic vein; -http://purl.obolibrary.org/obo/UBERON_0036269;penis blood vessel; -http://purl.obolibrary.org/obo/UBERON_0036270;epihyoideum; -http://purl.obolibrary.org/obo/UBERON_0036271;omphalopleure; -http://purl.obolibrary.org/obo/UBERON_0036272;bilaminar omphalopleure;non-vascular bilaminar omphalopleure -http://purl.obolibrary.org/obo/UBERON_0036273;trilaminar omphalopleure;choriovitelline membrane -http://purl.obolibrary.org/obo/UBERON_0036273;trilaminar omphalopleure;vascular TOM -http://purl.obolibrary.org/obo/UBERON_0036273;trilaminar omphalopleure;vascular trilaminar omphalopleure -http://purl.obolibrary.org/obo/UBERON_0036274;tonsillar pillar; -http://purl.obolibrary.org/obo/UBERON_0036285;wall of left ventricle;left ventricular wall -http://purl.obolibrary.org/obo/UBERON_0036286;wall of right ventricle;right ventricular wall -http://purl.obolibrary.org/obo/UBERON_0036288;anterior wall of left ventricle; -http://purl.obolibrary.org/obo/UBERON_0036289;anterior wall of right ventricle; -http://purl.obolibrary.org/obo/UBERON_0036290;myocardium of anterior wall of left ventricle; -http://purl.obolibrary.org/obo/UBERON_0036291;myocardium of anterior wall of right ventricle; -http://purl.obolibrary.org/obo/UBERON_0036292;adnexa of uterus;uterine adnexa -http://purl.obolibrary.org/obo/UBERON_0036293;oral frenulum;oral frenula -http://purl.obolibrary.org/obo/UBERON_0036293;oral frenulum;oral frenulum -http://purl.obolibrary.org/obo/UBERON_0036294;mucosa of lip;labial mucosa -http://purl.obolibrary.org/obo/UBERON_0036295;renal pelvis/ureter;renal pelvis and ureter -http://purl.obolibrary.org/obo/UBERON_0036295;renal pelvis/ureter;renal pelvis plus ureter -http://purl.obolibrary.org/obo/UBERON_0036300;tributary of central retinal vein;central retinal venous tributary -http://purl.obolibrary.org/obo/UBERON_0036301;vasculature of spleen; -http://purl.obolibrary.org/obo/UBERON_0036302;vasculature of central nervous system plus retina; -http://purl.obolibrary.org/obo/UBERON_0036303;vasculature of central nervous system; -http://purl.obolibrary.org/obo/UBERON_0036304;anatomical border; -http://purl.obolibrary.org/obo/UBERON_0036328;wall of coronary artery;coronary arterial wall -http://purl.obolibrary.org/obo/UBERON_0036337;wall of appendix;appendix wall -http://purl.obolibrary.org/obo/UBERON_0036337;wall of appendix;wall of vermiform appendix -http://purl.obolibrary.org/obo/UBERON_0036343;wall of gallbladder;gallbladder wall -http://purl.obolibrary.org/obo/UBERON_0036351;wall of brachiocephalic artery;brachiocephalic arterial wall -http://purl.obolibrary.org/obo/UBERON_0036352;wall of subclavian artery;subclavian arterial wall -http://purl.obolibrary.org/obo/UBERON_0036362;wall of anal canal;anal canal wall -http://purl.obolibrary.org/obo/UBERON_0036375;wall of right ureter;right ureteral wall -http://purl.obolibrary.org/obo/UBERON_0036376;wall of left ureter;left ureteral wall -http://purl.obolibrary.org/obo/UBERON_0036422;wall of pulmonary artery;pulmonary arterial wall -http://purl.obolibrary.org/obo/UBERON_0036441;wall of uterine tube;uterine tube wall -http://purl.obolibrary.org/obo/UBERON_0036441;wall of uterine tube;wall of fallopian tube -http://purl.obolibrary.org/obo/UBERON_0036441;wall of uterine tube;wall of oviduct -http://purl.obolibrary.org/obo/UBERON_0036521;wall of urethra;urethral wall -http://purl.obolibrary.org/obo/UBERON_0036523;wall of vagina;vaginal wall -http://purl.obolibrary.org/obo/UBERON_0036553;wall of synovial tendon sheath; -http://purl.obolibrary.org/obo/UBERON_0036654;wall of lateral ventricle; -http://purl.obolibrary.org/obo/UBERON_0036655;wall of cerebral aqueduct; -http://purl.obolibrary.org/obo/UBERON_0036656;wall of third ventricle; -http://purl.obolibrary.org/obo/UBERON_0036657;wall of fourth ventricle; -http://purl.obolibrary.org/obo/UBERON_0036658;wall of central canal of spinal cord;wall of central canal -http://purl.obolibrary.org/obo/UBERON_0036661;wall of ventricular system of brain; -http://purl.obolibrary.org/obo/UBERON_0036925;wall of eyeball;eyeball wall -http://purl.obolibrary.org/obo/UBERON_0036990;wall of pharyngotympanic tube;pharyngotympanic tube wall -http://purl.obolibrary.org/obo/UBERON_0037089;wall of orbit;orbit wall -http://purl.obolibrary.org/obo/UBERON_0037094;wall of common carotid artery;common carotid arterial wall -http://purl.obolibrary.org/obo/UBERON_0037144;wall of heart;cardiac wall -http://purl.obolibrary.org/obo/UBERON_0037191;wall of membranous labyrinth;membranous labyrinth wall -http://purl.obolibrary.org/obo/UBERON_0037237;wall of lacrimal duct;lacrimal ductal wall -http://purl.obolibrary.org/obo/UBERON_0037447;wall of male urethra;male urethral wall -http://purl.obolibrary.org/obo/UBERON_0037455;wall of female urethra;female urethral wall -http://purl.obolibrary.org/obo/UBERON_0037458;hair of neck;neck hair -http://purl.obolibrary.org/obo/UBERON_0037459;hair of limb;limb hair -http://purl.obolibrary.org/obo/UBERON_0037461;primary hair;downy hair -http://purl.obolibrary.org/obo/UBERON_0037461;primary hair;lanugo -http://purl.obolibrary.org/obo/UBERON_0037462;vellus hair; -http://purl.obolibrary.org/obo/UBERON_0037463;terminal hair; -http://purl.obolibrary.org/obo/UBERON_0037464;androgenic hair; -http://purl.obolibrary.org/obo/UBERON_0037465;catagen hair; -http://purl.obolibrary.org/obo/UBERON_0037466;telogen hair; -http://purl.obolibrary.org/obo/UBERON_0037467;anagen hair; -http://purl.obolibrary.org/obo/UBERON_0037468;waist; -http://purl.obolibrary.org/obo/UBERON_0037480;supramammary lymph node;supramammary node -http://purl.obolibrary.org/obo/UBERON_0037494;paracardial gastric lymph node;aJCC level 16 -http://purl.obolibrary.org/obo/UBERON_0037494;paracardial gastric lymph node;lymph node ring of cardia of stomach -http://purl.obolibrary.org/obo/UBERON_0037494;paracardial gastric lymph node;paracardial gastric node -http://purl.obolibrary.org/obo/UBERON_0037494;paracardial gastric lymph node;paracardial lymph node -http://purl.obolibrary.org/obo/UBERON_0037500;subscapular axillary lymph node;nodus lymphaticus subscapularis axillae -http://purl.obolibrary.org/obo/UBERON_0037500;subscapular axillary lymph node;posterior axillary node -http://purl.obolibrary.org/obo/UBERON_0037500;subscapular axillary lymph node;subcapsular node -http://purl.obolibrary.org/obo/UBERON_0037501;pectoral axillary lymph node;anterior axillary lymph node -http://purl.obolibrary.org/obo/UBERON_0037501;pectoral axillary lymph node;nodus lymphaticus pectoralis axillae -http://purl.obolibrary.org/obo/UBERON_0037501;pectoral axillary lymph node;pectoral lymph node -http://purl.obolibrary.org/obo/UBERON_0037502;central axillary lymph node;central node -http://purl.obolibrary.org/obo/UBERON_0037502;central axillary lymph node;nodus lymphaticus centralis axillae -http://purl.obolibrary.org/obo/UBERON_0037503;apical axillary lymph node;nodus lymphaticus apicalis axillae -http://purl.obolibrary.org/obo/UBERON_0037514;intermediate mesenteric lymph node;central mesenteric lymph node -http://purl.obolibrary.org/obo/UBERON_0037514;intermediate mesenteric lymph node;central superior mesenteric lymph node -http://purl.obolibrary.org/obo/UBERON_0037514;intermediate mesenteric lymph node;intermediate lymph node of small intestine -http://purl.obolibrary.org/obo/UBERON_0037514;intermediate mesenteric lymph node;intermediate mesenteric node -http://purl.obolibrary.org/obo/UBERON_0037515;juxta-arterial mesenteric lymph node;juxta-arterial mesenteric node -http://purl.obolibrary.org/obo/UBERON_0037518;epicolic lymph node;epicolic node -http://purl.obolibrary.org/obo/UBERON_0037521;preterminal colic lymph node;preterminal colic node -http://purl.obolibrary.org/obo/UBERON_0037522;ileal lymph node;ileal mesentary lymph node -http://purl.obolibrary.org/obo/UBERON_0037522;ileal lymph node;ileal node -http://purl.obolibrary.org/obo/UBERON_0037527;superior pancreaticoduodenal lymph node;superior pancreaticoduodenal node -http://purl.obolibrary.org/obo/UBERON_0037528;inferior pancreaticoduodenal lymph node;inferior pancreaticoduodenal node -http://purl.obolibrary.org/obo/UBERON_0037530;inferior pancreatic lymph node;inferior pancreatic node -http://purl.obolibrary.org/obo/UBERON_0037530;inferior pancreatic lymph node;inferior pancreatiosplenic lymph node -http://purl.obolibrary.org/obo/UBERON_0037530;inferior pancreatic lymph node;jPS 18 node -http://purl.obolibrary.org/obo/UBERON_0037530;inferior pancreatic lymph node;jPS no. 18 node -http://purl.obolibrary.org/obo/UBERON_0037530;inferior pancreatic lymph node;no. 18 pancreatic lymph node -http://purl.obolibrary.org/obo/UBERON_0037530;inferior pancreatic lymph node;no. 18 pancreaticoduodenal lymph node -http://purl.obolibrary.org/obo/UBERON_0037531;intestinal lymph node;intestinal node -http://purl.obolibrary.org/obo/UBERON_0037531;intestinal lymph node;visceral lumbar lymph node -http://purl.obolibrary.org/obo/UBERON_0037532;medial common iliac lymph node;medial common iliac node -http://purl.obolibrary.org/obo/UBERON_0037533;intermediate common iliac lymph node;intermediate common iliac node -http://purl.obolibrary.org/obo/UBERON_0037534;lateral common iliac lymph node;lateral common iliac node -http://purl.obolibrary.org/obo/UBERON_0037535;subaortic common iliac lymph node;subaortic common iliac node -http://purl.obolibrary.org/obo/UBERON_0037535;subaortic common iliac lymph node;subaortic lymph node -http://purl.obolibrary.org/obo/UBERON_0037536;promontory lymph node;promontory node -http://purl.obolibrary.org/obo/UBERON_0037538;medial external iliac lymph node;medial external iliac node -http://purl.obolibrary.org/obo/UBERON_0037539;intermediate external iliac lymph node;intermediate external iliac node -http://purl.obolibrary.org/obo/UBERON_0037540;lateral external iliac lymph node;lateral external iliac node -http://purl.obolibrary.org/obo/UBERON_0037541;interiliac lymph node;interiliac node -http://purl.obolibrary.org/obo/UBERON_0037548;superior gluteal lymph node;superior gluteal node -http://purl.obolibrary.org/obo/UBERON_0037549;inferior gluteal lymph node;inferior gluteal node -http://purl.obolibrary.org/obo/UBERON_0037559;anorectal lymph node; -http://purl.obolibrary.org/obo/UBERON_0037560;superficial axillary lymph node; -http://purl.obolibrary.org/obo/UBERON_0037566;diaphragmatic lymph node;diaphragmatic node -http://purl.obolibrary.org/obo/UBERON_0037580;left gastric lymph node;aJCC level 17L node -http://purl.obolibrary.org/obo/UBERON_0037580;left gastric lymph node;left gastric node -http://purl.obolibrary.org/obo/UBERON_0037590;lateral axillary lymph node;brachial axillary node -http://purl.obolibrary.org/obo/UBERON_0037590;lateral axillary lymph node;humeral node -http://purl.obolibrary.org/obo/UBERON_0037590;lateral axillary lymph node;nodus lymphaticus brachialis axillae -http://purl.obolibrary.org/obo/UBERON_0037601;left parietal lumbar lymph node;left parietal lumbar node -http://purl.obolibrary.org/obo/UBERON_0037614;appendicular lymph node;appendicular node -http://purl.obolibrary.org/obo/UBERON_0037615;pararectal lymph node;pararectal node -http://purl.obolibrary.org/obo/UBERON_0037615;pararectal lymph node;perirectal lymph node -http://purl.obolibrary.org/obo/UBERON_0037615;pararectal lymph node;rectal lymph node -http://purl.obolibrary.org/obo/UBERON_0037722;right retropharyngeal lymph node; -http://purl.obolibrary.org/obo/UBERON_0037723;left retropharyngeal lymph node; -http://purl.obolibrary.org/obo/UBERON_0037763;lateral superior deep cervical lymph node; -http://purl.obolibrary.org/obo/UBERON_0037764;anterior superior deep cervical lymph node; -http://purl.obolibrary.org/obo/UBERON_0037765;lateral inferior deep cervical lymph node; -http://purl.obolibrary.org/obo/UBERON_0037766;anterior inferior deep cervical lymph node; -http://purl.obolibrary.org/obo/UBERON_0037787;right occipital lymph node; -http://purl.obolibrary.org/obo/UBERON_0037788;left occipital lymph node; -http://purl.obolibrary.org/obo/UBERON_0037789;right apical axillary lymph node; -http://purl.obolibrary.org/obo/UBERON_0037790;left apical axillary lymph node; -http://purl.obolibrary.org/obo/UBERON_0037793;right subscapular axillary lymph node; -http://purl.obolibrary.org/obo/UBERON_0037794;left subscapular axillary lymph node; -http://purl.obolibrary.org/obo/UBERON_0037795;right pectoral axillary lymph node; -http://purl.obolibrary.org/obo/UBERON_0037796;left pectoral axillary lymph node; -http://purl.obolibrary.org/obo/UBERON_0037797;right central axillary lymph node; -http://purl.obolibrary.org/obo/UBERON_0037798;left central axillary lymph node; -http://purl.obolibrary.org/obo/UBERON_0037865;jugular lymph node; -http://purl.obolibrary.org/obo/UBERON_0037995;supramandibular lymph node; -http://purl.obolibrary.org/obo/UBERON_0037998;external jugular lymph node; -http://purl.obolibrary.org/obo/UBERON_0038001;sternal lymph node; -http://purl.obolibrary.org/obo/UBERON_0038002;upper intercostal lymph node; -http://purl.obolibrary.org/obo/UBERON_0038003;lower intercostal lymph node; -http://purl.obolibrary.org/obo/UBERON_0038037;subclavian lymph node; -http://purl.obolibrary.org/obo/UBERON_0038048;antebrachial lymph node; -http://purl.obolibrary.org/obo/UBERON_0038053;cardiophrenic angle lymph node;cardiophrenic angle node -http://purl.obolibrary.org/obo/UBERON_0038054;retrocrural lymph node;retrocrural node -http://purl.obolibrary.org/obo/UBERON_0038093;jejunal lymph node;jejunal mesentary lymph node -http://purl.obolibrary.org/obo/UBERON_0038094;inferior rectal lymph node; -http://purl.obolibrary.org/obo/UBERON_0038124;medial diaphragmatic lymph node;medial diaphragmatic node -http://purl.obolibrary.org/obo/UBERON_0038124;medial diaphragmatic lymph node;middle diaphragmatic lymph node -http://purl.obolibrary.org/obo/UBERON_0038137;parietal pre-aortic lymph node;parietal pre-aortic node -http://purl.obolibrary.org/obo/UBERON_0038137;parietal pre-aortic lymph node;parietal preaortic node -http://purl.obolibrary.org/obo/UBERON_0038139;retro-aortic lymph node;post-aortic lymph node -http://purl.obolibrary.org/obo/UBERON_0038139;retro-aortic lymph node;postaortic lymph node -http://purl.obolibrary.org/obo/UBERON_0038139;retro-aortic lymph node;retro-aortic node -http://purl.obolibrary.org/obo/UBERON_0038139;retro-aortic lymph node;retroaortic lymph node -http://purl.obolibrary.org/obo/UBERON_0038587;paracardiac lymph node;paracardiac node -http://purl.obolibrary.org/obo/UBERON_0038632;pericardial lymph node; -http://purl.obolibrary.org/obo/UBERON_0038633;aortopulmonary lymph node;5 thoracic lymph node -http://purl.obolibrary.org/obo/UBERON_0038633;aortopulmonary lymph node;aortopulmonary window lymph node -http://purl.obolibrary.org/obo/UBERON_0038633;aortopulmonary lymph node;mediastinal lymph node station # 5 -http://purl.obolibrary.org/obo/UBERON_0038633;aortopulmonary lymph node;station 5 N2 lymph node -http://purl.obolibrary.org/obo/UBERON_0038633;aortopulmonary lymph node;station 5 lymph node -http://purl.obolibrary.org/obo/UBERON_0038634;para-aortic thoracic lymph node;6 thoracic lymph node -http://purl.obolibrary.org/obo/UBERON_0038634;para-aortic thoracic lymph node;pre-aortic No. 6 lymph node -http://purl.obolibrary.org/obo/UBERON_0038634;para-aortic thoracic lymph node;station 6 N2 lymph node -http://purl.obolibrary.org/obo/UBERON_0038634;para-aortic thoracic lymph node;station 6 lymph node -http://purl.obolibrary.org/obo/UBERON_0038635;interlobar lymph node;11 R+L thoracic -http://purl.obolibrary.org/obo/UBERON_0038635;interlobar lymph node;11 thoracic lymph node -http://purl.obolibrary.org/obo/UBERON_0038635;interlobar lymph node;station 11 N1 lymph node -http://purl.obolibrary.org/obo/UBERON_0038635;interlobar lymph node;station 11 lymph node -http://purl.obolibrary.org/obo/UBERON_0038638;lobar lymph node;12R+L thoracic lymph node -http://purl.obolibrary.org/obo/UBERON_0038638;lobar lymph node;station 12 N1 lymph node -http://purl.obolibrary.org/obo/UBERON_0038638;lobar lymph node;station 12 lymph node -http://purl.obolibrary.org/obo/UBERON_0038641;segmental lymph node;13R+L thoracic lymph node -http://purl.obolibrary.org/obo/UBERON_0038641;segmental lymph node;station 13 N1 lymph node -http://purl.obolibrary.org/obo/UBERON_0038641;segmental lymph node;station 13 lymph node -http://purl.obolibrary.org/obo/UBERON_0038647;lymph node of inferior pulmonary ligament;9R+L thoracic lymph node -http://purl.obolibrary.org/obo/UBERON_0038647;lymph node of inferior pulmonary ligament;inferior pulmonary ligament lymph node -http://purl.obolibrary.org/obo/UBERON_0038647;lymph node of inferior pulmonary ligament;node of inferior pulmonary ligament -http://purl.obolibrary.org/obo/UBERON_0038647;lymph node of inferior pulmonary ligament;pulmonary ligament lymph node -http://purl.obolibrary.org/obo/UBERON_0038647;lymph node of inferior pulmonary ligament;station 9 N2 lymph node -http://purl.obolibrary.org/obo/UBERON_0038647;lymph node of inferior pulmonary ligament;station 9 lymph node -http://purl.obolibrary.org/obo/UBERON_0038651;superior mediastinal lymph node; -http://purl.obolibrary.org/obo/UBERON_0038684;superior left gastric lymph node;jPS 7 node -http://purl.obolibrary.org/obo/UBERON_0038684;superior left gastric lymph node;jPS no. 7 node -http://purl.obolibrary.org/obo/UBERON_0038684;superior left gastric lymph node;no. 7 left gastric lymph node -http://purl.obolibrary.org/obo/UBERON_0038684;superior left gastric lymph node;superior left gastric node -http://purl.obolibrary.org/obo/UBERON_0038685;inferior left gastric lymph node;inferior left gastric node -http://purl.obolibrary.org/obo/UBERON_0038685;inferior left gastric lymph node;jPS 3 node -http://purl.obolibrary.org/obo/UBERON_0038685;inferior left gastric lymph node;jPS No. 3 node -http://purl.obolibrary.org/obo/UBERON_0038687;visceral lymph node of abdomen; -http://purl.obolibrary.org/obo/UBERON_0038691;common hepatic lymph node; -http://purl.obolibrary.org/obo/UBERON_0038694;hepatoportal lymph node;jPS 12p node -http://purl.obolibrary.org/obo/UBERON_0038694;hepatoportal lymph node;jPS No. 12p node -http://purl.obolibrary.org/obo/UBERON_0038694;hepatoportal lymph node;no. 12p hepatic lymph node -http://purl.obolibrary.org/obo/UBERON_0038694;hepatoportal lymph node;periportal lymph node -http://purl.obolibrary.org/obo/UBERON_0038694;hepatoportal lymph node;porta hepatis lymph node -http://purl.obolibrary.org/obo/UBERON_0038694;hepatoportal lymph node;portahepatic lymph node -http://purl.obolibrary.org/obo/UBERON_0038695;proximal superior pancreatic lymph node;jPS 11p node -http://purl.obolibrary.org/obo/UBERON_0038695;proximal superior pancreatic lymph node;jPS no. 11p node -http://purl.obolibrary.org/obo/UBERON_0038695;proximal superior pancreatic lymph node;no. 11p superior pancreatic lymph node -http://purl.obolibrary.org/obo/UBERON_0038695;proximal superior pancreatic lymph node;proximal superior pancreaticosplenic lymph node -http://purl.obolibrary.org/obo/UBERON_0038696;distal superior pancreatic lymph node;distal superior pancreaticosplenic lymph node -http://purl.obolibrary.org/obo/UBERON_0038696;distal superior pancreatic lymph node;jPS 11d node -http://purl.obolibrary.org/obo/UBERON_0038696;distal superior pancreatic lymph node;jPS no. 11d node -http://purl.obolibrary.org/obo/UBERON_0038696;distal superior pancreatic lymph node;no. 11d superior pancreatic lymph node -http://purl.obolibrary.org/obo/UBERON_0038697;anterior superior pancreaticoduodenal lymph node;anterosuperior pancreaticoduodenal lymph node -http://purl.obolibrary.org/obo/UBERON_0038697;anterior superior pancreaticoduodenal lymph node;jPS 17a node -http://purl.obolibrary.org/obo/UBERON_0038697;anterior superior pancreaticoduodenal lymph node;jPS no. 17a node -http://purl.obolibrary.org/obo/UBERON_0038697;anterior superior pancreaticoduodenal lymph node;no. 17a pancreaticoduodenal lymph node -http://purl.obolibrary.org/obo/UBERON_0038698;posterior superior pancreaticoduodenal lymph node;jPS 13a node -http://purl.obolibrary.org/obo/UBERON_0038698;posterior superior pancreaticoduodenal lymph node;jPS no. 13a node -http://purl.obolibrary.org/obo/UBERON_0038698;posterior superior pancreaticoduodenal lymph node;no. 13a pancreaticoduodenal lymph node -http://purl.obolibrary.org/obo/UBERON_0038698;posterior superior pancreaticoduodenal lymph node;posterosuperior pancreaticoduodenal lymph node -http://purl.obolibrary.org/obo/UBERON_0038699;anterior inferior pancreaticoduodenal lymph node;anteroinferior pancreaticoduodenal lymph node -http://purl.obolibrary.org/obo/UBERON_0038699;anterior inferior pancreaticoduodenal lymph node;jPS 17b node -http://purl.obolibrary.org/obo/UBERON_0038699;anterior inferior pancreaticoduodenal lymph node;jPS no. 17b node -http://purl.obolibrary.org/obo/UBERON_0038699;anterior inferior pancreaticoduodenal lymph node;no. 17b pancreaticoduodenal lymph node -http://purl.obolibrary.org/obo/UBERON_0038700;posterior inferior pancreaticoduodenal lymph node;jPS 13b node -http://purl.obolibrary.org/obo/UBERON_0038700;posterior inferior pancreaticoduodenal lymph node;jPS no. 13b node -http://purl.obolibrary.org/obo/UBERON_0038700;posterior inferior pancreaticoduodenal lymph node;no. 13b pancreaticoduodenal lymph node -http://purl.obolibrary.org/obo/UBERON_0038700;posterior inferior pancreaticoduodenal lymph node;posteroinferior pancreaticoduodenal lymph node -http://purl.obolibrary.org/obo/UBERON_0038707;anterior pancreaticoduodenal lymph node;jPS 17 node -http://purl.obolibrary.org/obo/UBERON_0038707;anterior pancreaticoduodenal lymph node;no. 17 pancreaticoduodenal lymph node -http://purl.obolibrary.org/obo/UBERON_0038727;juxta-intestinal mesenteric lymph node;mural mesenteric lymph node -http://purl.obolibrary.org/obo/UBERON_0038727;juxta-intestinal mesenteric lymph node;para-intestinal mesenteric lymph node -http://purl.obolibrary.org/obo/UBERON_0038734;visceral pre-aortic lymph node;visceral para-aortic lymph node -http://purl.obolibrary.org/obo/UBERON_0038734;visceral pre-aortic lymph node;visceral pre-aortic node -http://purl.obolibrary.org/obo/UBERON_0038734;visceral pre-aortic lymph node;visceral preaortic lymph node -http://purl.obolibrary.org/obo/UBERON_0038735;juxta-arterial jejunal lymph node; -http://purl.obolibrary.org/obo/UBERON_0038736;juxta-arterial ileal lymph node; -http://purl.obolibrary.org/obo/UBERON_0038737;intermediate jejunal lymph node; -http://purl.obolibrary.org/obo/UBERON_0038738;intermediate ileal lymph node; -http://purl.obolibrary.org/obo/UBERON_0038746;gastro-epiploic lymph node;gastro-epiploic node -http://purl.obolibrary.org/obo/UBERON_0038746;gastro-epiploic lymph node;gastro-omental lymph node -http://purl.obolibrary.org/obo/UBERON_0038746;gastro-epiploic lymph node;gastro-omental node -http://purl.obolibrary.org/obo/UBERON_0038746;gastro-epiploic lymph node;jPS 4 node -http://purl.obolibrary.org/obo/UBERON_0038746;gastro-epiploic lymph node;jPS No. 4 node -http://purl.obolibrary.org/obo/UBERON_0038746;gastro-epiploic lymph node;lymph node of greater curvature of stomach -http://purl.obolibrary.org/obo/UBERON_0038784;pararectal lymph node of pelvis; -http://purl.obolibrary.org/obo/UBERON_0038787;superior ileocolic lymph node; -http://purl.obolibrary.org/obo/UBERON_0038796;lymph node along bile duct;biliary lymph node -http://purl.obolibrary.org/obo/UBERON_0038796;lymph node along bile duct;jPS 12b node -http://purl.obolibrary.org/obo/UBERON_0038796;lymph node along bile duct;jPS No. 12b node -http://purl.obolibrary.org/obo/UBERON_0038796;lymph node along bile duct;no. 12b hepatic lymph node -http://purl.obolibrary.org/obo/UBERON_0038818;posterior ancreaticoduodenal lymph node;jPS 13 node -http://purl.obolibrary.org/obo/UBERON_0038818;posterior ancreaticoduodenal lymph node;no. 13 pancreaticoduodenal lymph node -http://purl.obolibrary.org/obo/UBERON_0038849;craniocervical lymph node;head and neck lymph node -http://purl.obolibrary.org/obo/UBERON_0038849;craniocervical lymph node;lymph node of head and neck -http://purl.obolibrary.org/obo/UBERON_0038853;superficial popliteal lymph node; -http://purl.obolibrary.org/obo/UBERON_0038854;deep popliteal lymph node; -http://purl.obolibrary.org/obo/UBERON_0038855;superior medial inguinal lymph node;superomedial node -http://purl.obolibrary.org/obo/UBERON_0038856;superior lateral inguinal lymph node;superolateral node -http://purl.obolibrary.org/obo/UBERON_0038857;inferior inguinal lymph node;inferior inguinal node -http://purl.obolibrary.org/obo/UBERON_0038857;inferior inguinal lymph node;subinguinal lymph node -http://purl.obolibrary.org/obo/UBERON_0038859;intermediate deep inguinal lymph node;cloquet's gland -http://purl.obolibrary.org/obo/UBERON_0038859;intermediate deep inguinal lymph node;cloquet's node -http://purl.obolibrary.org/obo/UBERON_0038859;intermediate deep inguinal lymph node;intermediate deep inguinal node -http://purl.obolibrary.org/obo/UBERON_0038859;intermediate deep inguinal lymph node;intermediate inguinal lymph node -http://purl.obolibrary.org/obo/UBERON_0038859;intermediate deep inguinal lymph node;middle inguinal node -http://purl.obolibrary.org/obo/UBERON_0038859;intermediate deep inguinal lymph node;nodus inguinales profundi intermedius -http://purl.obolibrary.org/obo/UBERON_0038859;intermediate deep inguinal lymph node;nodus lymphoideus inguinales profundi intermedius -http://purl.obolibrary.org/obo/UBERON_0038860;distal deep inguinal lymph node;distal deep inguinal node -http://purl.obolibrary.org/obo/UBERON_0038860;distal deep inguinal lymph node;distal inguinal lymph node -http://purl.obolibrary.org/obo/UBERON_0038860;distal deep inguinal lymph node;nodus inguinales profundi distalis -http://purl.obolibrary.org/obo/UBERON_0038860;distal deep inguinal lymph node;nodus lymphoideus inguinales profundi distalis -http://purl.obolibrary.org/obo/UBERON_0038861;tibial lymph node;tIbial node -http://purl.obolibrary.org/obo/UBERON_0038864;fibular lymph node;fibular node -http://purl.obolibrary.org/obo/UBERON_0038864;fibular lymph node;nodus fibularis -http://purl.obolibrary.org/obo/UBERON_0038864;fibular lymph node;nodus lymphoideus fibularis -http://purl.obolibrary.org/obo/UBERON_0038864;fibular lymph node;peroneal lymph node -http://purl.obolibrary.org/obo/UBERON_0038864;fibular lymph node;peroneal node -http://purl.obolibrary.org/obo/UBERON_0038867;interpectoral lymph node;interpectoral node -http://purl.obolibrary.org/obo/UBERON_0038868;paramammary lymph node;paramammary node -http://purl.obolibrary.org/obo/UBERON_0038870;cubital lymph node;cubital node -http://purl.obolibrary.org/obo/UBERON_0038871;supratrochlear lymph node;supra-epicondylar lymph node -http://purl.obolibrary.org/obo/UBERON_0038871;supratrochlear lymph node;supratrochlear node -http://purl.obolibrary.org/obo/UBERON_0038878;lateral diaphragmatic lymph node;lateral diaphragmatic node -http://purl.obolibrary.org/obo/UBERON_0038879;anterior diaphragmatic lymph node;anterior diaphragmatic node -http://purl.obolibrary.org/obo/UBERON_0038882;posterior diaphragmatic lymph node;posterior diaphragmatic node -http://purl.obolibrary.org/obo/UBERON_0038885;brachiocephalic lymph node;brachiocephalic node -http://purl.obolibrary.org/obo/UBERON_0038885;brachiocephalic lymph node;innominate lymph node -http://purl.obolibrary.org/obo/UBERON_0038888;posterior mediastinal lymph node;nodus mediastinale posteriore lymphaticus -http://purl.obolibrary.org/obo/UBERON_0038888;posterior mediastinal lymph node;posterior mediastinal node -http://purl.obolibrary.org/obo/UBERON_0038894;paratracheal lymph node;cervical paratracheal lymph node -http://purl.obolibrary.org/obo/UBERON_0038894;paratracheal lymph node;nodus paratracheale lymphaticus -http://purl.obolibrary.org/obo/UBERON_0038894;paratracheal lymph node;paratracheal node -http://purl.obolibrary.org/obo/UBERON_0038894;paratracheal lymph node;tracheal lymph node -http://purl.obolibrary.org/obo/UBERON_0038897;superior tracheobronchial lymph node;4 thoracic lymph node -http://purl.obolibrary.org/obo/UBERON_0038897;superior tracheobronchial lymph node;4R+L thoracic lymph node -http://purl.obolibrary.org/obo/UBERON_0038897;superior tracheobronchial lymph node;lower paratracheal lymph node -http://purl.obolibrary.org/obo/UBERON_0038897;superior tracheobronchial lymph node;nodus tracheobronchiale superiore lymphaticus -http://purl.obolibrary.org/obo/UBERON_0038897;superior tracheobronchial lymph node;station 4 N2 lymph node -http://purl.obolibrary.org/obo/UBERON_0038897;superior tracheobronchial lymph node;station 4 lymph node -http://purl.obolibrary.org/obo/UBERON_0038900;inferior tracheobronchial lymph node;carinate lymph node -http://purl.obolibrary.org/obo/UBERON_0038900;inferior tracheobronchial lymph node;nodus tracheobronchialis inferioris lymphaticus -http://purl.obolibrary.org/obo/UBERON_0038920;buccinator lymph node;buccinator node -http://purl.obolibrary.org/obo/UBERON_0038920;buccinator lymph node;nodus buccinatorius -http://purl.obolibrary.org/obo/UBERON_0038920;buccinator lymph node;nodus lymphoideus buccinatorius -http://purl.obolibrary.org/obo/UBERON_0038922;nasolabial lymph node;nasolabial node -http://purl.obolibrary.org/obo/UBERON_0038922;nasolabial lymph node;nodus lymphoideus nasolabialis -http://purl.obolibrary.org/obo/UBERON_0038922;nasolabial lymph node;nodus nasolabialis -http://purl.obolibrary.org/obo/UBERON_0038923;malar lymph node;malar node -http://purl.obolibrary.org/obo/UBERON_0038923;malar lymph node;nodus lymphoideus malaris -http://purl.obolibrary.org/obo/UBERON_0038923;malar lymph node;nodus malaris -http://purl.obolibrary.org/obo/UBERON_0038925;lingual lymph node; -http://purl.obolibrary.org/obo/UBERON_0038929;infrahyoid lymph node;infrahyoid node -http://purl.obolibrary.org/obo/UBERON_0038930;prelaryngeal lymph node;prelaryngeal node -http://purl.obolibrary.org/obo/UBERON_0038931;thyroid lymph node;thyroid node -http://purl.obolibrary.org/obo/UBERON_0038932;pretracheal lymph node;pretracheal node -http://purl.obolibrary.org/obo/UBERON_0038934;superior deep lateral cervical lymph node; -http://purl.obolibrary.org/obo/UBERON_0038935;inferior deep lateral cervical lymph node; -http://purl.obolibrary.org/obo/UBERON_0038936;jugulodigastric lymph node;jugulodigastric node -http://purl.obolibrary.org/obo/UBERON_0038936;jugulodigastric lymph node;nodus jugulodigastricus -http://purl.obolibrary.org/obo/UBERON_0038936;jugulodigastric lymph node;nodus lymphoideus jugulodigastricus -http://purl.obolibrary.org/obo/UBERON_0038938;accessory cervical lymph node; -http://purl.obolibrary.org/obo/UBERON_0038943;superior diaphragmatic lymph node;superior diaphragmatic node -http://purl.obolibrary.org/obo/UBERON_0038951;suprapyloric lymph node;jPS 5 node -http://purl.obolibrary.org/obo/UBERON_0038951;suprapyloric lymph node;jPS no.5 node -http://purl.obolibrary.org/obo/UBERON_0038951;suprapyloric lymph node;no. 5 station pyloric lymph node -http://purl.obolibrary.org/obo/UBERON_0038951;suprapyloric lymph node;nodus lymphoideus suprapyloricus -http://purl.obolibrary.org/obo/UBERON_0038951;suprapyloric lymph node;nodus suprapyloricus -http://purl.obolibrary.org/obo/UBERON_0038951;suprapyloric lymph node;suprapyloric node -http://purl.obolibrary.org/obo/UBERON_0038952;subpyloric lymph node;infrapyloric lymph node -http://purl.obolibrary.org/obo/UBERON_0038952;subpyloric lymph node;infrapyloric node -http://purl.obolibrary.org/obo/UBERON_0038952;subpyloric lymph node;jPS 6 node -http://purl.obolibrary.org/obo/UBERON_0038952;subpyloric lymph node;jPS no. 6 node -http://purl.obolibrary.org/obo/UBERON_0038952;subpyloric lymph node;no. 6 station pyloric lymph node -http://purl.obolibrary.org/obo/UBERON_0038952;subpyloric lymph node;subpyloric node -http://purl.obolibrary.org/obo/UBERON_0038953;retropyloric lymph node;retropyloric node -http://purl.obolibrary.org/obo/UBERON_0039162;inferior ileocolic lymph node; -http://purl.obolibrary.org/obo/UBERON_0039163;lateral sacral lymph node; -http://purl.obolibrary.org/obo/UBERON_0039164;medial sacral lymph node; -http://purl.obolibrary.org/obo/UBERON_0039167;bronchopulmonary lymph node;10 R+L thoracic -http://purl.obolibrary.org/obo/UBERON_0039167;bronchopulmonary lymph node;bronchopulmonary node -http://purl.obolibrary.org/obo/UBERON_0039167;bronchopulmonary lymph node;hilar lymph node -http://purl.obolibrary.org/obo/UBERON_0039167;bronchopulmonary lymph node;station 10 N1 lymph node -http://purl.obolibrary.org/obo/UBERON_0039167;bronchopulmonary lymph node;station 10 lymph node -http://purl.obolibrary.org/obo/UBERON_0039168;colic lymph node;colic node -http://purl.obolibrary.org/obo/UBERON_0039168;colic lymph node;pericolic lymph node -http://purl.obolibrary.org/obo/UBERON_0039168;colic lymph node;pericolonic lymph node -http://purl.obolibrary.org/obo/UBERON_0039169;anterior intercostal artery;intercostal branch of internal thoracic artery -http://purl.obolibrary.org/obo/UBERON_0039170;mammary branch of internal thoracic artery;medial mammary branch of perforating branch of internal thoracic artery -http://purl.obolibrary.org/obo/UBERON_0039175;subarachnoid space of brain; -http://purl.obolibrary.org/obo/UBERON_0039176;subarachnoid space of spinal cord; -http://purl.obolibrary.org/obo/UBERON_0039185;accessory vertebral vein; -http://purl.obolibrary.org/obo/UBERON_0039186;anterior vertebral vein; -http://purl.obolibrary.org/obo/UBERON_0039187;suprascapular vein; -http://purl.obolibrary.org/obo/UBERON_0039188;superior laryngeal vein; -http://purl.obolibrary.org/obo/UBERON_0039215;appendicular artery;appendiceal artery -http://purl.obolibrary.org/obo/UBERON_0039222;cystic artery;cholecystic artery -http://purl.obolibrary.org/obo/UBERON_0039228;sigmoid vein; -http://purl.obolibrary.org/obo/UBERON_0039230;prepyloric vein;Mayo's vein -http://purl.obolibrary.org/obo/UBERON_0039232;conus artery;second right coronary artery -http://purl.obolibrary.org/obo/UBERON_0039232;conus artery;third coronary artery -http://purl.obolibrary.org/obo/UBERON_0039256;pubic vein;accessory obturator vein -http://purl.obolibrary.org/obo/UBERON_0039256;pubic vein;pubic branch -http://purl.obolibrary.org/obo/UBERON_0039256;pubic vein;pubic branch of inferior epigastric vein -http://purl.obolibrary.org/obo/UBERON_0039258;external vertebral venous plexus;plexus venosus vertebralis externus -http://purl.obolibrary.org/obo/UBERON_0039259;vertebral venous plexus; -http://purl.obolibrary.org/obo/UBERON_0039260;thyrocervical artery; -http://purl.obolibrary.org/obo/UBERON_0039261;pancreatic artery; -http://purl.obolibrary.org/obo/UBERON_0039262;segmental pulmonary artery;segmental pulmonary arterial tree -http://purl.obolibrary.org/obo/UBERON_0039288;rima vulvae;pudendal cleft -http://purl.obolibrary.org/obo/UBERON_0039288;rima vulvae;rima pudendi -http://purl.obolibrary.org/obo/UBERON_0039288;rima vulvae;vulvar slit -http://purl.obolibrary.org/obo/UBERON_0039351;posterior labial artery;posterior labial branch of internal pudendal artery -http://purl.obolibrary.org/obo/UBERON_0039355;urethral artery;arteria urethralis -http://purl.obolibrary.org/obo/UBERON_0039376;penile bulb vein;bulb of penis vein -http://purl.obolibrary.org/obo/UBERON_0039376;penile bulb vein;vena bulbi penis -http://purl.obolibrary.org/obo/UBERON_0039377;urethral vein; -http://purl.obolibrary.org/obo/UBERON_0039379;vestibular bulb vein;vena bulbi vestibuli -http://purl.obolibrary.org/obo/UBERON_0039418;Alcock's canal;canalis pudendalis -http://purl.obolibrary.org/obo/UBERON_0039418;Alcock's canal;pudendal canal -http://purl.obolibrary.org/obo/UBERON_0039421;superficial dorsal vein of penis; -http://purl.obolibrary.org/obo/UBERON_0039422;dorsal vein of penis; -http://purl.obolibrary.org/obo/UBERON_0039835;posterior intercostal artery; -http://purl.obolibrary.org/obo/UBERON_0039838;seventh anterior intercostal artery; -http://purl.obolibrary.org/obo/UBERON_0039839;eighth anterior intercostal artery; -http://purl.obolibrary.org/obo/UBERON_0039840;ninth anterior intercostal artery; -http://purl.obolibrary.org/obo/UBERON_0039841;first anterior intercostal artery;first intercostal branch of internal thoracic artery -http://purl.obolibrary.org/obo/UBERON_0039842;second anterior intercostal artery;second intercostal branch of internal thoracic artery -http://purl.obolibrary.org/obo/UBERON_0039843;third anterior intercostal artery;third intercostal branch of internal thoracic artery -http://purl.obolibrary.org/obo/UBERON_0039844;fourth anterior intercostal artery;fourth intercostal branch of internal thoracic artery -http://purl.obolibrary.org/obo/UBERON_0039845;fifth anterior intercostal artery;fifth intercostal branch of internal thoracic artery -http://purl.obolibrary.org/obo/UBERON_0039846;sixth anterior intercostal artery;sixth intercostal branch of internal thoracic artery -http://purl.obolibrary.org/obo/UBERON_0039847;suprascapular artery;transverse scapular artery -http://purl.obolibrary.org/obo/UBERON_0039848;anterior external vertebral venous plexus; -http://purl.obolibrary.org/obo/UBERON_0039849;posterior external vertebral venous plexus; -http://purl.obolibrary.org/obo/UBERON_0039851;apicoposterior segmental artery;apicoposterior artery of left lung -http://purl.obolibrary.org/obo/UBERON_0039851;apicoposterior segmental artery;apicoposterior bronchopulmonary segment of left pulmonary artery -http://purl.obolibrary.org/obo/UBERON_0039851;apicoposterior segmental artery;left apicoposterior pulmonary artery -http://purl.obolibrary.org/obo/UBERON_0039856;right ovarian vein; -http://purl.obolibrary.org/obo/UBERON_0039857;left ovarian vein; -http://purl.obolibrary.org/obo/UBERON_1000000;chin ventral margin; -http://purl.obolibrary.org/obo/UBERON_1000001;collection of hairs on vertex; -http://purl.obolibrary.org/obo/UBERON_1000002;cranial midline area; -http://purl.obolibrary.org/obo/UBERON_1000003;dewlap; -http://purl.obolibrary.org/obo/UBERON_1000004;collection of hair on external ear; -http://purl.obolibrary.org/obo/UBERON_1000005;external ear margin; -http://purl.obolibrary.org/obo/UBERON_1000006;collection of hair on forehead; -http://purl.obolibrary.org/obo/UBERON_1000007;forehead protuberance; -http://purl.obolibrary.org/obo/UBERON_1000008;left part of face; -http://purl.obolibrary.org/obo/UBERON_1000009;midline crest; -http://purl.obolibrary.org/obo/UBERON_1000010;mole;naevus -http://purl.obolibrary.org/obo/UBERON_1000010;mole;nevus -http://purl.obolibrary.org/obo/UBERON_1000011;labial commissure; -http://purl.obolibrary.org/obo/UBERON_1000012;nose anterior margin; -http://purl.obolibrary.org/obo/UBERON_1000013;nose vertex; -http://purl.obolibrary.org/obo/UBERON_1000014;right part of face; -http://purl.obolibrary.org/obo/UBERON_1000015;skin of snout;snout skin -http://purl.obolibrary.org/obo/UBERON_1000016;tip of snout; -http://purl.obolibrary.org/obo/UBERON_1000017;tip of external ear; -http://purl.obolibrary.org/obo/UBERON_1000018;cluster of hairs; -http://purl.obolibrary.org/obo/UBERON_1000019;top of head;vertex of head -http://purl.obolibrary.org/obo/UBERON_1000020;collection of hair on snout; -http://purl.obolibrary.org/obo/UBERON_1000021;skin of face;face skin -http://purl.obolibrary.org/obo/UBERON_1000022;Zymbal's gland; -http://purl.obolibrary.org/obo/UBERON_1000023;spleen pulp;Malpighian corpuscles -http://purl.obolibrary.org/obo/UBERON_1000023;spleen pulp;pulp of spleen -http://purl.obolibrary.org/obo/UBERON_1000023;spleen pulp;splenic pulp -http://purl.obolibrary.org/obo/UBERON_1000024;parenchyma of spleen;splenic parenchyma -http://purl.obolibrary.org/obo/UBERON_1100000;digestive tract junction; -http://purl.obolibrary.org/obo/UBERON_1500000;scapular blade; -http://purl.obolibrary.org/obo/UBERON_1500003;lateral line canal lumen; -http://purl.obolibrary.org/obo/UBERON_1500005;ischial cartilage; -http://purl.obolibrary.org/obo/UBERON_1500006;paired fin radial bone; -http://purl.obolibrary.org/obo/UBERON_1500007;mesopterygium cartilage; -http://purl.obolibrary.org/obo/UBERON_1500008;pelvic fin distal radial bone; -http://purl.obolibrary.org/obo/UBERON_1500009;pelvic fin basipterygial radial; -http://purl.obolibrary.org/obo/UBERON_1500010;pelvic fin middle radial bone; -http://purl.obolibrary.org/obo/UBERON_1600006;paired fin radial element; -http://purl.obolibrary.org/obo/UBERON_1600008;pelvic fin distal radial element; -http://purl.obolibrary.org/obo/UBERON_1600010;pelvic fin middle radial element; -http://purl.obolibrary.org/obo/UBERON_1700006;paired fin radial cartilage; -http://purl.obolibrary.org/obo/UBERON_2000000;Brachet's cleft; -http://purl.obolibrary.org/obo/UBERON_2000001;Kupffer's vesicle; -http://purl.obolibrary.org/obo/UBERON_2000004;anterior axial hypoblast;pre-polster -http://purl.obolibrary.org/obo/UBERON_2000006;ball;yolk ball -http://purl.obolibrary.org/obo/UBERON_2000033;intermediate cell mass of mesoderm;ICM -http://purl.obolibrary.org/obo/UBERON_2000033;intermediate cell mass of mesoderm;intermediate cell mass of Oellacher -http://purl.obolibrary.org/obo/UBERON_2000033;intermediate cell mass of mesoderm;posterior intermediate cell mass -http://purl.obolibrary.org/obo/UBERON_2000039;median axial vein; -http://purl.obolibrary.org/obo/UBERON_2000040;median fin fold; -http://purl.obolibrary.org/obo/UBERON_2000044;myotome somite 14; -http://purl.obolibrary.org/obo/UBERON_2000052;dorsal actinotrichium;dorsal actinotrichia -http://purl.obolibrary.org/obo/UBERON_2000058;polster;pillow -http://purl.obolibrary.org/obo/UBERON_2000068;neural plate proneural cluster;neural plate proneural clusters -http://purl.obolibrary.org/obo/UBERON_2000072;somite 1; -http://purl.obolibrary.org/obo/UBERON_2000073;somite 5; -http://purl.obolibrary.org/obo/UBERON_2000074;somite 26; -http://purl.obolibrary.org/obo/UBERON_2000078;ventral actinotrichium;ventral actinotrichia -http://purl.obolibrary.org/obo/UBERON_2000083;ventral mesoderm; -http://purl.obolibrary.org/obo/UBERON_2000084;yolk; -http://purl.obolibrary.org/obo/UBERON_2000088;yolk syncytial layer;YSL -http://purl.obolibrary.org/obo/UBERON_2000088;yolk syncytial layer;periblast -http://purl.obolibrary.org/obo/UBERON_2000089;actinotrichium;actinotrichia -http://purl.obolibrary.org/obo/UBERON_2000090;apical ectodermal ridge dorsal fin; -http://purl.obolibrary.org/obo/UBERON_2000096;cardinal system; -http://purl.obolibrary.org/obo/UBERON_2000098;proliferative region; -http://purl.obolibrary.org/obo/UBERON_2000102;dorsal fin fold;dorsal fin-fold -http://purl.obolibrary.org/obo/UBERON_2000103;supramaxilla; -http://purl.obolibrary.org/obo/UBERON_2000104;suprapreopercle;supraopercle -http://purl.obolibrary.org/obo/UBERON_2000104;suprapreopercle;supraopercular bone -http://purl.obolibrary.org/obo/UBERON_2000104;suprapreopercle;suprapreopercles -http://purl.obolibrary.org/obo/UBERON_2000106;extension;yolk extension -http://purl.obolibrary.org/obo/UBERON_2000116;macula lagena; -http://purl.obolibrary.org/obo/UBERON_2000120;lateral line ganglion;LLG -http://purl.obolibrary.org/obo/UBERON_2000120;lateral line ganglion;lateral line ganglia -http://purl.obolibrary.org/obo/UBERON_2000125;mandibular lateral line neuromast;neuromast mandibular -http://purl.obolibrary.org/obo/UBERON_2000125;mandibular lateral line neuromast;neuromasts mandibular -http://purl.obolibrary.org/obo/UBERON_2000127;antorbital;adnasal -http://purl.obolibrary.org/obo/UBERON_2000127;antorbital;lateral rostral -http://purl.obolibrary.org/obo/UBERON_2000127;antorbital;periorbital -http://purl.obolibrary.org/obo/UBERON_2000136;otic lateral line neuromast;neuromast otic -http://purl.obolibrary.org/obo/UBERON_2000136;otic lateral line neuromast;neuromasts otic -http://purl.obolibrary.org/obo/UBERON_2000139;immature otolith;immature otoliths -http://purl.obolibrary.org/obo/UBERON_2000156;somite 20; -http://purl.obolibrary.org/obo/UBERON_2000157;somite 30; -http://purl.obolibrary.org/obo/UBERON_2000164;ventral mesenchyme; -http://purl.obolibrary.org/obo/UBERON_2000165;inferior lobe;inferior lobes -http://purl.obolibrary.org/obo/UBERON_2000168;anterior macula;am -http://purl.obolibrary.org/obo/UBERON_2000171;interhyal bone;stylohyal bone -http://purl.obolibrary.org/obo/UBERON_2000174;caudal cerebellar tract; -http://purl.obolibrary.org/obo/UBERON_2000175;posterior lateral line nerve;caudal lateral line nerve -http://purl.obolibrary.org/obo/UBERON_2000176;lateral entopeduncular nucleus; -http://purl.obolibrary.org/obo/UBERON_2000177;caudal oblique; -http://purl.obolibrary.org/obo/UBERON_2000178;caudal peduncle; -http://purl.obolibrary.org/obo/UBERON_2000182;central caudal thalamic nucleus;central posterior thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_2000183;central pretectum; -http://purl.obolibrary.org/obo/UBERON_2000185;commissura rostral, pars ventralis; -http://purl.obolibrary.org/obo/UBERON_2000187;lateral granular eminence; -http://purl.obolibrary.org/obo/UBERON_2000188;corpus cerebelli;cerebellar corpus -http://purl.obolibrary.org/obo/UBERON_2000188;corpus cerebelli;corpus cerebellum -http://purl.obolibrary.org/obo/UBERON_2000193;diffuse nuclei; -http://purl.obolibrary.org/obo/UBERON_2000194;dorsal accessory optic nucleus; -http://purl.obolibrary.org/obo/UBERON_2000195;dorsal depressor muscle; -http://purl.obolibrary.org/obo/UBERON_2000196;dorsal hypohyal bone;dorsal hypohyals -http://purl.obolibrary.org/obo/UBERON_2000196;dorsal hypohyal bone;dorsohyal -http://purl.obolibrary.org/obo/UBERON_2000196;dorsal hypohyal bone;upper hypohyal -http://purl.obolibrary.org/obo/UBERON_2000199;dorsal periventricular hypothalamus; -http://purl.obolibrary.org/obo/UBERON_2000201;dorsal transverse;transversus dorsalis -http://purl.obolibrary.org/obo/UBERON_2000202;efferent portion of pharyngeal arch artery;efferent branchial artery -http://purl.obolibrary.org/obo/UBERON_2000202;efferent portion of pharyngeal arch artery;efferent portion of branchial artery -http://purl.obolibrary.org/obo/UBERON_2000203;rhinosphenoid; -http://purl.obolibrary.org/obo/UBERON_2000205;external ventral flexor; -http://purl.obolibrary.org/obo/UBERON_2000209;lateral preglomerular nucleus; -http://purl.obolibrary.org/obo/UBERON_2000210;gigantocellular part of magnocellular preoptic nucleus; -http://purl.obolibrary.org/obo/UBERON_2000211;gill lamella;gill lamellae -http://purl.obolibrary.org/obo/UBERON_2000212;granular eminence; -http://purl.obolibrary.org/obo/UBERON_2000214;hypobranchial vessel;hypobranchial vessels -http://purl.obolibrary.org/obo/UBERON_2000216;infracarinalis; -http://purl.obolibrary.org/obo/UBERON_2000221;internal levator; -http://purl.obolibrary.org/obo/UBERON_2000222;isthmic primary nucleus; -http://purl.obolibrary.org/obo/UBERON_2000223;infraorbital 1;lachrymal -http://purl.obolibrary.org/obo/UBERON_2000223;infraorbital 1;lacrymal -http://purl.obolibrary.org/obo/UBERON_2000223;infraorbital 1;suborbital -http://purl.obolibrary.org/obo/UBERON_2000224;quadrate ventral process; -http://purl.obolibrary.org/obo/UBERON_2000225;lateral crista primordium;lateral crista primordia -http://purl.obolibrary.org/obo/UBERON_2000226;lateral ethmoid bone;lateral ethmoids -http://purl.obolibrary.org/obo/UBERON_2000226;lateral ethmoid bone;parethmoïde -http://purl.obolibrary.org/obo/UBERON_2000226;lateral ethmoid bone;pleurethmoïde -http://purl.obolibrary.org/obo/UBERON_2000226;lateral ethmoid bone;éthmoïde latéral -http://purl.obolibrary.org/obo/UBERON_2000228;lateral line primordium;lateral line primordia -http://purl.obolibrary.org/obo/UBERON_2000228;lateral line primordium;llp -http://purl.obolibrary.org/obo/UBERON_2000230;longitudinal hypochordal;hypochordal longitudinalis -http://purl.obolibrary.org/obo/UBERON_2000232;lateral semicircular canal primordium;lateral semicircular canal primordia -http://purl.obolibrary.org/obo/UBERON_2000233;lower oral valve; -http://purl.obolibrary.org/obo/UBERON_2000234;macula neglecta; -http://purl.obolibrary.org/obo/UBERON_2000238;olfactory tract linking bulb to ipsilateral ventral telencephalon; -http://purl.obolibrary.org/obo/UBERON_2000239;mesocoracoid bone; -http://purl.obolibrary.org/obo/UBERON_2000240;metapterygoid;metapterygoids -http://purl.obolibrary.org/obo/UBERON_2000241;midline column; -http://purl.obolibrary.org/obo/UBERON_2000245;nucleus of the descending root; -http://purl.obolibrary.org/obo/UBERON_2000248;magnocellular preoptic nucleus; -http://purl.obolibrary.org/obo/UBERON_2000250;opercle;opercles -http://purl.obolibrary.org/obo/UBERON_2000250;opercle;operculare -http://purl.obolibrary.org/obo/UBERON_2000250;opercle;operculum -http://purl.obolibrary.org/obo/UBERON_2000251;adipose fin; -http://purl.obolibrary.org/obo/UBERON_2000259;mandibular lateral line; -http://purl.obolibrary.org/obo/UBERON_2000261;pharyngohyoid; -http://purl.obolibrary.org/obo/UBERON_2000264;preopercle;preopercles -http://purl.obolibrary.org/obo/UBERON_2000264;preopercle;preoperculum -http://purl.obolibrary.org/obo/UBERON_2000267;primary olfactory fiber layer; -http://purl.obolibrary.org/obo/UBERON_2000268;anal fin proximal radial bone;basal radial of anal fin -http://purl.obolibrary.org/obo/UBERON_2000268;anal fin proximal radial bone;proximal anal-fin radial -http://purl.obolibrary.org/obo/UBERON_2000269;inferior ventral flexor; -http://purl.obolibrary.org/obo/UBERON_2000271;radial bone;radials -http://purl.obolibrary.org/obo/UBERON_2000274;rostral octaval nerve sensory nucleus; -http://purl.obolibrary.org/obo/UBERON_2000276;rostrolateral thalamic nucleus of Butler & Saidel; -http://purl.obolibrary.org/obo/UBERON_2000278;secondary gustatory nucleus medulla oblongata; -http://purl.obolibrary.org/obo/UBERON_2000280;medial division; -http://purl.obolibrary.org/obo/UBERON_2000284;subopercle;subopercles -http://purl.obolibrary.org/obo/UBERON_2000285;superficial adductor; -http://purl.obolibrary.org/obo/UBERON_2000286;superficial lateralis (teleost); -http://purl.obolibrary.org/obo/UBERON_2000287;superior dorsal flexor; -http://purl.obolibrary.org/obo/UBERON_2000288;supracarinalis; -http://purl.obolibrary.org/obo/UBERON_2000289;preopercle horizontal limb;preopercle horizontal arm -http://purl.obolibrary.org/obo/UBERON_2000289;preopercle horizontal limb;preopercle lower limb -http://purl.obolibrary.org/obo/UBERON_2000291;medial octavolateralis nucleus; -http://purl.obolibrary.org/obo/UBERON_2000293;synencephalon; -http://purl.obolibrary.org/obo/UBERON_2000294;torus lateralis; -http://purl.obolibrary.org/obo/UBERON_2000296;uncrossed tecto-bulbar tract; -http://purl.obolibrary.org/obo/UBERON_2000297;vagal lobe; -http://purl.obolibrary.org/obo/UBERON_2000298;vent; -http://purl.obolibrary.org/obo/UBERON_2000300;ventral hypohyal bone;lower hypohyal -http://purl.obolibrary.org/obo/UBERON_2000300;ventral hypohyal bone;ventral hypohyals -http://purl.obolibrary.org/obo/UBERON_2000300;ventral hypohyal bone;ventrohyal -http://purl.obolibrary.org/obo/UBERON_2000305;ventral sulcus; -http://purl.obolibrary.org/obo/UBERON_2000307;vestibulolateralis lobe; -http://purl.obolibrary.org/obo/UBERON_2000309;external yolk syncytial layer;E-YSL -http://purl.obolibrary.org/obo/UBERON_2000311;adductor mandibulae complex; -http://purl.obolibrary.org/obo/UBERON_2000313;anal inclinator; -http://purl.obolibrary.org/obo/UBERON_2000315;asteriscus;lagenar otolith -http://purl.obolibrary.org/obo/UBERON_2000315;asteriscus;lagenolith -http://purl.obolibrary.org/obo/UBERON_2000318;brainstem and spinal white matter;brain stem/spinal tracts and commissures -http://purl.obolibrary.org/obo/UBERON_2000319;branchiostegal membrane; -http://purl.obolibrary.org/obo/UBERON_2000321;caudal levator; -http://purl.obolibrary.org/obo/UBERON_2000322;caudal octaval nerve sensory nucleus; -http://purl.obolibrary.org/obo/UBERON_2000324;caudal periventricular hypothalamus; -http://purl.obolibrary.org/obo/UBERON_2000335;crossed tecto-bulbar tract; -http://purl.obolibrary.org/obo/UBERON_2000336;preopercle vertical limb;ascending arm of preopercle -http://purl.obolibrary.org/obo/UBERON_2000336;preopercle vertical limb;preopercle upper limb -http://purl.obolibrary.org/obo/UBERON_2000336;preopercle vertical limb;preopercle vertical arm -http://purl.obolibrary.org/obo/UBERON_2000337;basioccipital posterodorsal region; -http://purl.obolibrary.org/obo/UBERON_2000341;dorsal flexor; -http://purl.obolibrary.org/obo/UBERON_2000342;dorsal inclinator muscle; -http://purl.obolibrary.org/obo/UBERON_2000347;dorsal zone of median tuberal portion of hypothalamus; -http://purl.obolibrary.org/obo/UBERON_2000348;exoccipital posteroventral region; -http://purl.obolibrary.org/obo/UBERON_2000349;epaxialis; -http://purl.obolibrary.org/obo/UBERON_2000350;epipleural;epipleurals -http://purl.obolibrary.org/obo/UBERON_2000350;epipleural;pleuroïde -http://purl.obolibrary.org/obo/UBERON_2000350;epipleural;épipleural -http://purl.obolibrary.org/obo/UBERON_2000350;epipleural;épipleure -http://purl.obolibrary.org/obo/UBERON_2000352;external cellular layer; -http://purl.obolibrary.org/obo/UBERON_2000356;gill raker;branchiocténie -http://purl.obolibrary.org/obo/UBERON_2000356;gill raker;branchiospine -http://purl.obolibrary.org/obo/UBERON_2000356;gill raker;gill rakers -http://purl.obolibrary.org/obo/UBERON_2000356;gill raker;gill-raker -http://purl.obolibrary.org/obo/UBERON_2000356;gill raker;gillraker -http://purl.obolibrary.org/obo/UBERON_2000358;granular layer corpus cerebelli; -http://purl.obolibrary.org/obo/UBERON_2000362;hypaxialis; -http://purl.obolibrary.org/obo/UBERON_2000363;hypobranchial bone; -http://purl.obolibrary.org/obo/UBERON_2000364;hypural;hyp -http://purl.obolibrary.org/obo/UBERON_2000364;hypural;hypuralia -http://purl.obolibrary.org/obo/UBERON_2000364;hypural;hypurals -http://purl.obolibrary.org/obo/UBERON_2000371;internal pharyngoclavicularis; -http://purl.obolibrary.org/obo/UBERON_2000372;interpeduncular nucleus medulla oblongata; -http://purl.obolibrary.org/obo/UBERON_2000373;dorsal fin actinotrichium; -http://purl.obolibrary.org/obo/UBERON_2000375;anal fin actinotrichium; -http://purl.obolibrary.org/obo/UBERON_2000376;infraorbital;circumorbital series -http://purl.obolibrary.org/obo/UBERON_2000376;infraorbital;circumorbitals -http://purl.obolibrary.org/obo/UBERON_2000376;infraorbital;infraorbitals -http://purl.obolibrary.org/obo/UBERON_2000381;lateral line sensory nucleus; -http://purl.obolibrary.org/obo/UBERON_2000384;levator arcus palatini; -http://purl.obolibrary.org/obo/UBERON_2000388;medial caudal lobe; -http://purl.obolibrary.org/obo/UBERON_2000389;medial funicular nucleus medulla oblongata; -http://purl.obolibrary.org/obo/UBERON_2000390;medial preglomerular nucleus; -http://purl.obolibrary.org/obo/UBERON_2000392;median tuberal portion; -http://purl.obolibrary.org/obo/UBERON_2000394;molecular layer corpus cerebelli; -http://purl.obolibrary.org/obo/UBERON_2000397;nucleus subglomerulosis; -http://purl.obolibrary.org/obo/UBERON_2000398;nucleus isthmi; -http://purl.obolibrary.org/obo/UBERON_2000399;secondary gustatory nucleus trigeminal nuclei; -http://purl.obolibrary.org/obo/UBERON_2000401;octaval nerve sensory nucleus; -http://purl.obolibrary.org/obo/UBERON_2000408;periventricular nucleus of caudal tuberculum; -http://purl.obolibrary.org/obo/UBERON_2000410;postcleithrum;métacleithrum -http://purl.obolibrary.org/obo/UBERON_2000410;postcleithrum;métaclithrum -http://purl.obolibrary.org/obo/UBERON_2000410;postcleithrum;paraclithrum -http://purl.obolibrary.org/obo/UBERON_2000410;postcleithrum;postclavicle -http://purl.obolibrary.org/obo/UBERON_2000410;postcleithrum;postcleithra -http://purl.obolibrary.org/obo/UBERON_2000410;postcleithrum;postcleithrum -http://purl.obolibrary.org/obo/UBERON_2000411;posterior crista primordium;posterior crista primordia -http://purl.obolibrary.org/obo/UBERON_2000412;posterior semicircular canal primordium;posterior semicircular canal primordia -http://purl.obolibrary.org/obo/UBERON_2000414;presumptive cephalic mesoderm; -http://purl.obolibrary.org/obo/UBERON_2000419;pterosphenoid;alisphenoid -http://purl.obolibrary.org/obo/UBERON_2000419;pterosphenoid;pterosphenoids -http://purl.obolibrary.org/obo/UBERON_2000422;retroarticular; -http://purl.obolibrary.org/obo/UBERON_2000424;opercular lateral line; -http://purl.obolibrary.org/obo/UBERON_2000425;anterior lateral line nerve;rostral lateral line nerve -http://purl.obolibrary.org/obo/UBERON_2000426;rostral parvocellular preoptic nucleus; -http://purl.obolibrary.org/obo/UBERON_2000429;scaphium;Weberian ossicle 2 -http://purl.obolibrary.org/obo/UBERON_2000429;scaphium;second Weberian ossicle -http://purl.obolibrary.org/obo/UBERON_2000430;secondary gustatory tract; -http://purl.obolibrary.org/obo/UBERON_2000437;caudal fin actinotrichium; -http://purl.obolibrary.org/obo/UBERON_2000438;parhypural;hemal spine of preural centrum 1 -http://purl.obolibrary.org/obo/UBERON_2000438;parhypural;parahypural -http://purl.obolibrary.org/obo/UBERON_2000438;parhypural;parhypural -http://purl.obolibrary.org/obo/UBERON_2000438;parhypural;parhypural hypaxonal -http://purl.obolibrary.org/obo/UBERON_2000438;parhypural;parhyural -http://purl.obolibrary.org/obo/UBERON_2000438;parhypural;phy -http://purl.obolibrary.org/obo/UBERON_2000438;parhypural;prohypural -http://purl.obolibrary.org/obo/UBERON_2000439;superficial pelvic abductor; -http://purl.obolibrary.org/obo/UBERON_2000440;superior raphe nucleus;anterior raphe nucleus -http://purl.obolibrary.org/obo/UBERON_2000442;supraneural bone;axonoste libre -http://purl.obolibrary.org/obo/UBERON_2000442;supraneural bone;predorsal -http://purl.obolibrary.org/obo/UBERON_2000442;supraneural bone;predorsal bone -http://purl.obolibrary.org/obo/UBERON_2000442;supraneural bone;pseudaxonoste -http://purl.obolibrary.org/obo/UBERON_2000442;supraneural bone;sn -http://purl.obolibrary.org/obo/UBERON_2000442;supraneural bone;supraneural -http://purl.obolibrary.org/obo/UBERON_2000442;supraneural bone;supraneurals -http://purl.obolibrary.org/obo/UBERON_2000448;tertiary gustatory nucleus; -http://purl.obolibrary.org/obo/UBERON_2000449;torus longitudinalis; -http://purl.obolibrary.org/obo/UBERON_2000451;upper oral valve; -http://purl.obolibrary.org/obo/UBERON_2000452;urohyal;clidoste -http://purl.obolibrary.org/obo/UBERON_2000452;urohyal;interclaviculaire -http://purl.obolibrary.org/obo/UBERON_2000452;urohyal;jugulaire -http://purl.obolibrary.org/obo/UBERON_2000452;urohyal;parurohyal -http://purl.obolibrary.org/obo/UBERON_2000452;urohyal;urohyal -http://purl.obolibrary.org/obo/UBERON_2000454;ventral accessory optic nucleus; -http://purl.obolibrary.org/obo/UBERON_2000455;ventral flexor; -http://purl.obolibrary.org/obo/UBERON_2000459;ventromedial thalamic nucleus; -http://purl.obolibrary.org/obo/UBERON_2000460;adipose fin actinotrichium; -http://purl.obolibrary.org/obo/UBERON_2000461;Weberian ossicle;Weberian ossicles -http://purl.obolibrary.org/obo/UBERON_2000462;abductor hyohyoid; -http://purl.obolibrary.org/obo/UBERON_2000464;otic lateral line; -http://purl.obolibrary.org/obo/UBERON_2000465;adductor operculi; -http://purl.obolibrary.org/obo/UBERON_2000466;anal depressor; -http://purl.obolibrary.org/obo/UBERON_2000468;anterior crista primordium;anterior crista primordia -http://purl.obolibrary.org/obo/UBERON_2000469;anterior semicircular canal primordium;anterior semicircular canal primordia -http://purl.obolibrary.org/obo/UBERON_2000474;intercalar; -http://purl.obolibrary.org/obo/UBERON_2000475;paraventricular organ; -http://purl.obolibrary.org/obo/UBERON_2000476;branchiostegal ray;branchiostegal rays -http://purl.obolibrary.org/obo/UBERON_2000479;caudal mesencephalo-cerebellar tract; -http://purl.obolibrary.org/obo/UBERON_2000480;caudal octavolateralis nucleus; -http://purl.obolibrary.org/obo/UBERON_2000481;caudal preglomerular nucleus; -http://purl.obolibrary.org/obo/UBERON_2000482;caudal tuberal nucleus;posterior tuberal nucleus -http://purl.obolibrary.org/obo/UBERON_2000484;celiacomesenteric artery; -http://purl.obolibrary.org/obo/UBERON_2000485;central nucleus inferior lobe;central nucleus inferior lobes -http://purl.obolibrary.org/obo/UBERON_2000488;ceratobranchial bone;ceratobranchials -http://purl.obolibrary.org/obo/UBERON_2000492;coracoradialis; -http://purl.obolibrary.org/obo/UBERON_2000495;infraorbital 5; -http://purl.obolibrary.org/obo/UBERON_2000497;pelvic adductor profundus; -http://purl.obolibrary.org/obo/UBERON_2000498;dilatator operculi; -http://purl.obolibrary.org/obo/UBERON_2000499;dorsal arrector; -http://purl.obolibrary.org/obo/UBERON_2000500;dorsal erector muscle; -http://purl.obolibrary.org/obo/UBERON_2000502;dorsal motor nucleus trigeminal nerve; -http://purl.obolibrary.org/obo/UBERON_2000503;dorsal oblique branchial muscle;dorsal oblique branchial muscles -http://purl.obolibrary.org/obo/UBERON_2000503;dorsal oblique branchial muscle;obliquues dorsalis -http://purl.obolibrary.org/obo/UBERON_2000503;dorsal oblique branchial muscle;obliquus dorsalis -http://purl.obolibrary.org/obo/UBERON_2000504;dorsal retractor; -http://purl.obolibrary.org/obo/UBERON_2000507;epineural; -http://purl.obolibrary.org/obo/UBERON_2000508;pelvic fin radial bone;pelvic actinost -http://purl.obolibrary.org/obo/UBERON_2000508;pelvic fin radial bone;pelvic radial -http://purl.obolibrary.org/obo/UBERON_2000510;external levatores; -http://purl.obolibrary.org/obo/UBERON_2000512;facial lobe; -http://purl.obolibrary.org/obo/UBERON_2000516;periventricular grey zone; -http://purl.obolibrary.org/obo/UBERON_2000517;glossopharyngeal lobe; -http://purl.obolibrary.org/obo/UBERON_2000522;inferior hyohyoid; -http://purl.obolibrary.org/obo/UBERON_2000523;inferior reticular formation; -http://purl.obolibrary.org/obo/UBERON_2000525;intercalarium;Weberian ossicle 3 -http://purl.obolibrary.org/obo/UBERON_2000525;intercalarium;third Weberian ossicle -http://purl.obolibrary.org/obo/UBERON_2000526;intermuscular bone;métamyoste -http://purl.obolibrary.org/obo/UBERON_2000526;intermuscular bone;métaxymyoste -http://purl.obolibrary.org/obo/UBERON_2000526;intermuscular bone;os intermusculaire -http://purl.obolibrary.org/obo/UBERON_2000527;pharyngobranchial bone;infrapharyngobranchial -http://purl.obolibrary.org/obo/UBERON_2000527;pharyngobranchial bone;infrapharyngobranchial bone -http://purl.obolibrary.org/obo/UBERON_2000527;pharyngobranchial bone;pharyngobranchials -http://purl.obolibrary.org/obo/UBERON_2000528;interradialis; -http://purl.obolibrary.org/obo/UBERON_2000530;lapillus;utricular otolith -http://purl.obolibrary.org/obo/UBERON_2000530;lapillus;utriculith -http://purl.obolibrary.org/obo/UBERON_2000532;lateral division; -http://purl.obolibrary.org/obo/UBERON_2000540;magnocellular octaval nucleus; -http://purl.obolibrary.org/obo/UBERON_2000542;medial column; -http://purl.obolibrary.org/obo/UBERON_2000544;pectoral fin actinotrichium; -http://purl.obolibrary.org/obo/UBERON_2000549;posttemporal;post-temporal -http://purl.obolibrary.org/obo/UBERON_2000549;posttemporal;postemporal -http://purl.obolibrary.org/obo/UBERON_2000549;posttemporal;posttemporale -http://purl.obolibrary.org/obo/UBERON_2000551;nucleus lateralis valvulae; -http://purl.obolibrary.org/obo/UBERON_2000555;opercular flap;gill cover -http://purl.obolibrary.org/obo/UBERON_2000555;opercular flap;opercular apparatus -http://purl.obolibrary.org/obo/UBERON_2000557;preural 1 vertebra;penultimate vertebra -http://purl.obolibrary.org/obo/UBERON_2000557;preural 1 vertebra;preural centrum 1 -http://purl.obolibrary.org/obo/UBERON_2000557;preural 1 vertebra;pu1 -http://purl.obolibrary.org/obo/UBERON_2000557;preural 1 vertebra;second last vertebra -http://purl.obolibrary.org/obo/UBERON_2000558;posterior macula;pm -http://purl.obolibrary.org/obo/UBERON_2000558;posterior macula;posteromedial macula -http://purl.obolibrary.org/obo/UBERON_2000564;pelvic abductor profundus; -http://purl.obolibrary.org/obo/UBERON_2000573;internal cellular layer; -http://purl.obolibrary.org/obo/UBERON_2000576;pterotic;autopterotic -http://purl.obolibrary.org/obo/UBERON_2000579;rostral mesencephalo-cerebellar tract; -http://purl.obolibrary.org/obo/UBERON_2000580;rostral preglomerular nucleus; -http://purl.obolibrary.org/obo/UBERON_2000581;rostral tuberal nucleus;anterior tuberal nucleus -http://purl.obolibrary.org/obo/UBERON_2000582;saccus dorsalis; -http://purl.obolibrary.org/obo/UBERON_2000585;kinethmoid cartilage;kinethmoideum cartilage -http://purl.obolibrary.org/obo/UBERON_2000586;preural 2 vertebra;antepenultimate vertebra -http://purl.obolibrary.org/obo/UBERON_2000586;preural 2 vertebra;preural centrum 2 -http://purl.obolibrary.org/obo/UBERON_2000586;preural 2 vertebra;pu2 -http://purl.obolibrary.org/obo/UBERON_2000586;preural 2 vertebra;third last vertebra -http://purl.obolibrary.org/obo/UBERON_2000587;sphenotic;autosphenotic -http://purl.obolibrary.org/obo/UBERON_2000587;sphenotic;sphenotics -http://purl.obolibrary.org/obo/UBERON_2000589;sulcus ypsiloniformis; -http://purl.obolibrary.org/obo/UBERON_2000592;superficial pelvic adductor; -http://purl.obolibrary.org/obo/UBERON_2000593;superior reticular formation medial column; -http://purl.obolibrary.org/obo/UBERON_2000594;supracleithrum;hypercleithrum -http://purl.obolibrary.org/obo/UBERON_2000594;supracleithrum;supracleithra -http://purl.obolibrary.org/obo/UBERON_2000594;supracleithrum;supracleithrum -http://purl.obolibrary.org/obo/UBERON_2000594;supracleithrum;épiclithrum -http://purl.obolibrary.org/obo/UBERON_2000596;pelvic fin actinotrichium; -http://purl.obolibrary.org/obo/UBERON_2000597;telencephalic tracts; -http://purl.obolibrary.org/obo/UBERON_2000599;torus semicircularis; -http://purl.obolibrary.org/obo/UBERON_2000602;uroneural;uroneurals -http://purl.obolibrary.org/obo/UBERON_2000603;valvula cerebelli;valvula cerebellum -http://purl.obolibrary.org/obo/UBERON_2000608;ventral transverse; -http://purl.obolibrary.org/obo/UBERON_2000609;ventrolateral nucleus; -http://purl.obolibrary.org/obo/UBERON_2000610;vertical myoseptum;transverse myoseptum -http://purl.obolibrary.org/obo/UBERON_2000611;visceromotor column; -http://purl.obolibrary.org/obo/UBERON_2000614;abductor profundus; -http://purl.obolibrary.org/obo/UBERON_2000615;adductor arcus palatini; -http://purl.obolibrary.org/obo/UBERON_2000616;adductor profundus; -http://purl.obolibrary.org/obo/UBERON_2000617;anal erector; -http://purl.obolibrary.org/obo/UBERON_2000620;autopalatine;palatines -http://purl.obolibrary.org/obo/UBERON_2000622;barbel;barbels -http://purl.obolibrary.org/obo/UBERON_2000622;barbel;barble -http://purl.obolibrary.org/obo/UBERON_2000623;basipterygium bone;basipterygia -http://purl.obolibrary.org/obo/UBERON_2000623;basipterygium bone;basipterygium ischiatique -http://purl.obolibrary.org/obo/UBERON_2000623;basipterygium bone;os pelvien -http://purl.obolibrary.org/obo/UBERON_2000623;basipterygium bone;pelvic plate -http://purl.obolibrary.org/obo/UBERON_2000623;basipterygium bone;pubic plate -http://purl.obolibrary.org/obo/UBERON_2000627;posterior ceratohyal;caudal ceratohyal -http://purl.obolibrary.org/obo/UBERON_2000627;posterior ceratohyal;epihyal -http://purl.obolibrary.org/obo/UBERON_2000627;posterior ceratohyal;posterohyal -http://purl.obolibrary.org/obo/UBERON_2000628;caudal fin musculature; -http://purl.obolibrary.org/obo/UBERON_2000629;caudal motor nucleus of abducens; -http://purl.obolibrary.org/obo/UBERON_2000630;caudal parvocellular preoptic nucleus; -http://purl.obolibrary.org/obo/UBERON_2000633;caudal tuberculum;posterior tubercle -http://purl.obolibrary.org/obo/UBERON_2000633;caudal tuberculum;posterior tuberculum -http://purl.obolibrary.org/obo/UBERON_2000634;caudal zone of median tuberal portion of hypothalamus; -http://purl.obolibrary.org/obo/UBERON_2000636;cerebellar crest; -http://purl.obolibrary.org/obo/UBERON_2000637;claustrum cartilage; -http://purl.obolibrary.org/obo/UBERON_2000638;commissura rostral, pars dorsalis; -http://purl.obolibrary.org/obo/UBERON_2000639;commissure of the secondary gustatory nuclei; -http://purl.obolibrary.org/obo/UBERON_2000643;rostral cerebellar tract; -http://purl.obolibrary.org/obo/UBERON_2000645;descending octaval nucleus; -http://purl.obolibrary.org/obo/UBERON_2000646;anal fin distal radial bone;distal anal fin radial -http://purl.obolibrary.org/obo/UBERON_2000647;dorsal caudal thalamic nucleus;dorsal posterior thalamic nucleus -http://purl.obolibrary.org/obo/UBERON_2000648;dorsal fin musculature; -http://purl.obolibrary.org/obo/UBERON_2000651;dorsal pelvic arrector; -http://purl.obolibrary.org/obo/UBERON_2000654;rostral motor nucleus of abducens; -http://purl.obolibrary.org/obo/UBERON_2000657;entopterygoid;endopterygoid bone -http://purl.obolibrary.org/obo/UBERON_2000657;entopterygoid;mesopterygoid -http://purl.obolibrary.org/obo/UBERON_2000658;epibranchial bone;epibranchial bones -http://purl.obolibrary.org/obo/UBERON_2000660;epural;epiural -http://purl.obolibrary.org/obo/UBERON_2000660;epural;epiural apophysis -http://purl.obolibrary.org/obo/UBERON_2000660;epural;epurals -http://purl.obolibrary.org/obo/UBERON_2000660;epural;éphural -http://purl.obolibrary.org/obo/UBERON_2000660;epural;épural -http://purl.obolibrary.org/obo/UBERON_2000662;external pharyngoclavicularis; -http://purl.obolibrary.org/obo/UBERON_2000663;extrascapula;extrascapular -http://purl.obolibrary.org/obo/UBERON_2000663;extrascapula;extrascapular bone -http://purl.obolibrary.org/obo/UBERON_2000663;extrascapula;scale bone -http://purl.obolibrary.org/obo/UBERON_2000666;filamental artery;filamental arteries -http://purl.obolibrary.org/obo/UBERON_2000673;hypobranchial artery;HA -http://purl.obolibrary.org/obo/UBERON_2000674;interopercle;interopercles -http://purl.obolibrary.org/obo/UBERON_2000676;sagitta;saccular otolith -http://purl.obolibrary.org/obo/UBERON_2000676;sagitta;sacculith -http://purl.obolibrary.org/obo/UBERON_2000677;segmental intercostal artery;segmental intercostal arteries -http://purl.obolibrary.org/obo/UBERON_2000685;superficial abductor; -http://purl.obolibrary.org/obo/UBERON_2000687;superficial pretectum; -http://purl.obolibrary.org/obo/UBERON_2000691;supraorbital bone; -http://purl.obolibrary.org/obo/UBERON_2000692;symplectic; -http://purl.obolibrary.org/obo/UBERON_2000693;tangential nucleus; -http://purl.obolibrary.org/obo/UBERON_2000694;ceratobranchial 5 tooth;pharyngeal teeth -http://purl.obolibrary.org/obo/UBERON_2000695;labial cavities; -http://purl.obolibrary.org/obo/UBERON_2000698;tripus;Weberian ossicle 4 -http://purl.obolibrary.org/obo/UBERON_2000698;tripus;fourth Weberian ossicle -http://purl.obolibrary.org/obo/UBERON_2000699;entopterygoid vertical strut;endopterygoid vertical strut -http://purl.obolibrary.org/obo/UBERON_2000699;entopterygoid vertical strut;mesopterygoid vertical strut -http://purl.obolibrary.org/obo/UBERON_2000701;ventral arrector; -http://purl.obolibrary.org/obo/UBERON_2000703;ventral motor nucleus trigeminal nerve; -http://purl.obolibrary.org/obo/UBERON_2000704;ventral pelvic arrector; -http://purl.obolibrary.org/obo/UBERON_2000707;ventral zone; -http://purl.obolibrary.org/obo/UBERON_2000710;viscerosensory commissural nucleus of Cajal; -http://purl.obolibrary.org/obo/UBERON_2000711;deep cell layer (gastrulation);DEL -http://purl.obolibrary.org/obo/UBERON_2000711;deep cell layer (gastrulation);DEL cells -http://purl.obolibrary.org/obo/UBERON_2000712;internal yolk syncytial layer;I-YSL -http://purl.obolibrary.org/obo/UBERON_2000715;adductor hyohyoid; -http://purl.obolibrary.org/obo/UBERON_2000716;afferent portion of pharyngeal arch artery;afferent branchial artery -http://purl.obolibrary.org/obo/UBERON_2000716;afferent portion of pharyngeal arch artery;afferent portion of branchial artery -http://purl.obolibrary.org/obo/UBERON_2000717;apical ectodermal ridge median fin fold;apical ectodermal ridge median fin-fold -http://purl.obolibrary.org/obo/UBERON_2000718;epaxial region somite 27; -http://purl.obolibrary.org/obo/UBERON_2000725;somite 11; -http://purl.obolibrary.org/obo/UBERON_2000726;somite 14; -http://purl.obolibrary.org/obo/UBERON_2000727;somite 17; -http://purl.obolibrary.org/obo/UBERON_2000728;somite 2; -http://purl.obolibrary.org/obo/UBERON_2000729;epaxial region somite 3; -http://purl.obolibrary.org/obo/UBERON_2000730;somite 23; -http://purl.obolibrary.org/obo/UBERON_2000731;somite 27; -http://purl.obolibrary.org/obo/UBERON_2000732;somite 3; -http://purl.obolibrary.org/obo/UBERON_2000733;somite 7; -http://purl.obolibrary.org/obo/UBERON_2000734;preural vertebra;caudal fin vertebra -http://purl.obolibrary.org/obo/UBERON_2000734;preural vertebra;specialized centra/vertebrae -http://purl.obolibrary.org/obo/UBERON_2000735;hemal postzygapophysis;haemal postzygapophysis -http://purl.obolibrary.org/obo/UBERON_2000735;hemal postzygapophysis;hemal postygopophysis -http://purl.obolibrary.org/obo/UBERON_2000735;hemal postzygapophysis;hemal postzygapophyses -http://purl.obolibrary.org/obo/UBERON_2000739;epaxial region somite 11; -http://purl.obolibrary.org/obo/UBERON_2000740;epaxial region somite 5; -http://purl.obolibrary.org/obo/UBERON_2000741;epaxial region somite 14; -http://purl.obolibrary.org/obo/UBERON_2000742;epaxial region somite 17; -http://purl.obolibrary.org/obo/UBERON_2000743;epaxial region somite 2; -http://purl.obolibrary.org/obo/UBERON_2000744;epaxial region somite 22; -http://purl.obolibrary.org/obo/UBERON_2000745;epaxial region somite 25; -http://purl.obolibrary.org/obo/UBERON_2000746;epaxial region somite 28; -http://purl.obolibrary.org/obo/UBERON_2000747;epaxial region somite 30; -http://purl.obolibrary.org/obo/UBERON_2000748;epaxial region somite 6; -http://purl.obolibrary.org/obo/UBERON_2000749;epaxial region somite 9; -http://purl.obolibrary.org/obo/UBERON_2000751;epaxial region somite 8; -http://purl.obolibrary.org/obo/UBERON_2000766;granular layer valvula cerebelli; -http://purl.obolibrary.org/obo/UBERON_2000767;hypaxial region somite 11; -http://purl.obolibrary.org/obo/UBERON_2000768;hypaxial region somite 14; -http://purl.obolibrary.org/obo/UBERON_2000769;hypaxial region somite 17; -http://purl.obolibrary.org/obo/UBERON_2000770;hypaxial region somite 2; -http://purl.obolibrary.org/obo/UBERON_2000771;hypaxial region somite 22; -http://purl.obolibrary.org/obo/UBERON_2000772;hypaxial region somite 25; -http://purl.obolibrary.org/obo/UBERON_2000774;hypaxial region somite 28; -http://purl.obolibrary.org/obo/UBERON_2000775;hypaxial region somite 30; -http://purl.obolibrary.org/obo/UBERON_2000776;hypaxial region somite 6; -http://purl.obolibrary.org/obo/UBERON_2000777;hypaxial region somite 9; -http://purl.obolibrary.org/obo/UBERON_2000779;lateral forebrain bundle telencephalon; -http://purl.obolibrary.org/obo/UBERON_2000788;mesenchyme dorsal fin; -http://purl.obolibrary.org/obo/UBERON_2000801;myotome somite 11; -http://purl.obolibrary.org/obo/UBERON_2000802;myotome somite 15; -http://purl.obolibrary.org/obo/UBERON_2000803;myotome somite 18; -http://purl.obolibrary.org/obo/UBERON_2000804;myotome somite 20; -http://purl.obolibrary.org/obo/UBERON_2000805;myotome somite 23; -http://purl.obolibrary.org/obo/UBERON_2000807;myotome somite 26; -http://purl.obolibrary.org/obo/UBERON_2000808;myotome somite 29; -http://purl.obolibrary.org/obo/UBERON_2000809;myotome somite 4; -http://purl.obolibrary.org/obo/UBERON_2000810;myotome somite 7; -http://purl.obolibrary.org/obo/UBERON_2000813;infraorbital lateral line neuromast;neuromast infraorbital -http://purl.obolibrary.org/obo/UBERON_2000813;infraorbital lateral line neuromast;neuromasts infraorbital -http://purl.obolibrary.org/obo/UBERON_2000814;opercular lateral line neuromast;neuromast opercular -http://purl.obolibrary.org/obo/UBERON_2000814;opercular lateral line neuromast;neuromasts opercular -http://purl.obolibrary.org/obo/UBERON_2000815;nucleus of medial longitudinal fasciculus of medulla;nucleus of MLF medulla -http://purl.obolibrary.org/obo/UBERON_2000815;nucleus of medial longitudinal fasciculus of medulla;nucleus of the medial longitudinal fasciculus medulla oblongata -http://purl.obolibrary.org/obo/UBERON_2000820;presumptive neuron neural tube;presumptive neurons neural tube -http://purl.obolibrary.org/obo/UBERON_2000826;central nucleus torus semicircularis; -http://purl.obolibrary.org/obo/UBERON_2000829;sclerotome somite 11; -http://purl.obolibrary.org/obo/UBERON_2000830;sclerotome somite 14; -http://purl.obolibrary.org/obo/UBERON_2000831;sclerotome somite 17; -http://purl.obolibrary.org/obo/UBERON_2000832;sclerotome somite 2; -http://purl.obolibrary.org/obo/UBERON_2000833;sclerotome somite 22; -http://purl.obolibrary.org/obo/UBERON_2000834;sclerotome somite 25; -http://purl.obolibrary.org/obo/UBERON_2000835;sclerotome somite 28; -http://purl.obolibrary.org/obo/UBERON_2000836;sclerotome somite 30; -http://purl.obolibrary.org/obo/UBERON_2000837;sclerotome somite 6; -http://purl.obolibrary.org/obo/UBERON_2000839;sclerotome somite 9; -http://purl.obolibrary.org/obo/UBERON_2000851;somite 12; -http://purl.obolibrary.org/obo/UBERON_2000852;somite 15; -http://purl.obolibrary.org/obo/UBERON_2000853;somite 18; -http://purl.obolibrary.org/obo/UBERON_2000854;somite 21; -http://purl.obolibrary.org/obo/UBERON_2000855;somite 24; -http://purl.obolibrary.org/obo/UBERON_2000856;somite 28; -http://purl.obolibrary.org/obo/UBERON_2000857;somite 4; -http://purl.obolibrary.org/obo/UBERON_2000858;somite 8; -http://purl.obolibrary.org/obo/UBERON_2000859;specialized hemal arch and spine;ha(pu) -http://purl.obolibrary.org/obo/UBERON_2000859;specialized hemal arch and spine;hemal arches (preural) -http://purl.obolibrary.org/obo/UBERON_2000859;specialized hemal arch and spine;specialized haemal arch and spine -http://purl.obolibrary.org/obo/UBERON_2000859;specialized hemal arch and spine;specialized hemal arches and spines -http://purl.obolibrary.org/obo/UBERON_2000864;epaxial region somite 1; -http://purl.obolibrary.org/obo/UBERON_2000865;epaxial region somite 12; -http://purl.obolibrary.org/obo/UBERON_2000866;epaxial region somite 15; -http://purl.obolibrary.org/obo/UBERON_2000867;epaxial region somite 18; -http://purl.obolibrary.org/obo/UBERON_2000868;epaxial region somite 20; -http://purl.obolibrary.org/obo/UBERON_2000869;epaxial region somite 23; -http://purl.obolibrary.org/obo/UBERON_2000870;epaxial region somite 26; -http://purl.obolibrary.org/obo/UBERON_2000872;epaxial region somite 29; -http://purl.obolibrary.org/obo/UBERON_2000873;epaxial region somite 4; -http://purl.obolibrary.org/obo/UBERON_2000874;epaxial region somite 7; -http://purl.obolibrary.org/obo/UBERON_2000887;floor plate neural rod;floorplate neural rod -http://purl.obolibrary.org/obo/UBERON_2000891;hypaxial region somite 1; -http://purl.obolibrary.org/obo/UBERON_2000892;hypaxial region somite 12; -http://purl.obolibrary.org/obo/UBERON_2000894;hypaxial region somite 15; -http://purl.obolibrary.org/obo/UBERON_2000895;hypaxial region somite 18; -http://purl.obolibrary.org/obo/UBERON_2000896;hypaxial region somite 20; -http://purl.obolibrary.org/obo/UBERON_2000897;hypaxial region somite 23; -http://purl.obolibrary.org/obo/UBERON_2000898;hypaxial region somite 26; -http://purl.obolibrary.org/obo/UBERON_2000899;hypaxial region somite 29; -http://purl.obolibrary.org/obo/UBERON_2000900;hypaxial region somite 4; -http://purl.obolibrary.org/obo/UBERON_2000901;hypaxial region somite 7; -http://purl.obolibrary.org/obo/UBERON_2000902;hypural musculature;hypural muscles -http://purl.obolibrary.org/obo/UBERON_2000910;medial forebrain bundle telencephalon; -http://purl.obolibrary.org/obo/UBERON_2000911;transverse process of neural arch 3;anterodorsal process of neural arch 3 -http://purl.obolibrary.org/obo/UBERON_2000911;transverse process of neural arch 3;transverse process of the third vertebra -http://purl.obolibrary.org/obo/UBERON_2000912;mesenchyme median fin fold;mesenchyme median fin-fold -http://purl.obolibrary.org/obo/UBERON_2000913;molecular layer valvula cerebelli; -http://purl.obolibrary.org/obo/UBERON_2000924;myotome somite 1; -http://purl.obolibrary.org/obo/UBERON_2000925;hypaxial region somite 10; -http://purl.obolibrary.org/obo/UBERON_2000926;myotome somite 12; -http://purl.obolibrary.org/obo/UBERON_2000927;myotome somite 16; -http://purl.obolibrary.org/obo/UBERON_2000928;myotome somite 19; -http://purl.obolibrary.org/obo/UBERON_2000929;myotome somite 21; -http://purl.obolibrary.org/obo/UBERON_2000930;myotome somite 24; -http://purl.obolibrary.org/obo/UBERON_2000931;myotome somite 27; -http://purl.obolibrary.org/obo/UBERON_2000932;myotome somite 3; -http://purl.obolibrary.org/obo/UBERON_2000933;myotome somite 5; -http://purl.obolibrary.org/obo/UBERON_2000934;myotome somite 8; -http://purl.obolibrary.org/obo/UBERON_2000936;dorsal fin distal radial bone; -http://purl.obolibrary.org/obo/UBERON_2000937;hypaxial region somite 13; -http://purl.obolibrary.org/obo/UBERON_2000939;middle lateral line neuromast;neuromast middle -http://purl.obolibrary.org/obo/UBERON_2000939;middle lateral line neuromast;neuromasts middle -http://purl.obolibrary.org/obo/UBERON_2000940;posterior lateral line neuromast;neuromast posterior -http://purl.obolibrary.org/obo/UBERON_2000940;posterior lateral line neuromast;neuromasts posterior -http://purl.obolibrary.org/obo/UBERON_2000941;nucleus of the medial longitudinal fasciculus synencephalon; -http://purl.obolibrary.org/obo/UBERON_2000946;hypaxial region somite 16; -http://purl.obolibrary.org/obo/UBERON_2000947;dorsal fin proximal radial bone;basal radial of dorsal fin -http://purl.obolibrary.org/obo/UBERON_2000952;sclerotome somite 1; -http://purl.obolibrary.org/obo/UBERON_2000953;sclerotome somite 12; -http://purl.obolibrary.org/obo/UBERON_2000954;sclerotome somite 15; -http://purl.obolibrary.org/obo/UBERON_2000955;sclerotome somite 18; -http://purl.obolibrary.org/obo/UBERON_2000956;sclerotome somite 20; -http://purl.obolibrary.org/obo/UBERON_2000957;hypaxial region somite 19; -http://purl.obolibrary.org/obo/UBERON_2000958;sclerotome somite 23; -http://purl.obolibrary.org/obo/UBERON_2000959;sclerotome somite 26; -http://purl.obolibrary.org/obo/UBERON_2000960;sclerotome somite 29; -http://purl.obolibrary.org/obo/UBERON_2000961;sclerotome somite 4; -http://purl.obolibrary.org/obo/UBERON_2000962;sclerotome somite 7; -http://purl.obolibrary.org/obo/UBERON_2000968;hypaxial region somite 21; -http://purl.obolibrary.org/obo/UBERON_2000974;somite 10; -http://purl.obolibrary.org/obo/UBERON_2000975;somite 13; -http://purl.obolibrary.org/obo/UBERON_2000976;somite 16; -http://purl.obolibrary.org/obo/UBERON_2000977;somite 19; -http://purl.obolibrary.org/obo/UBERON_2000978;somite 22; -http://purl.obolibrary.org/obo/UBERON_2000979;hypaxial region somite 24; -http://purl.obolibrary.org/obo/UBERON_2000980;somite 25; -http://purl.obolibrary.org/obo/UBERON_2000981;somite 29; -http://purl.obolibrary.org/obo/UBERON_2000982;somite 6; -http://purl.obolibrary.org/obo/UBERON_2000983;somite 9; -http://purl.obolibrary.org/obo/UBERON_2000984;superior reticular formation tegmentum; -http://purl.obolibrary.org/obo/UBERON_2000985;ventral rhombencephalic commissure medulla oblongata; -http://purl.obolibrary.org/obo/UBERON_2000986;hypaxial region somite 27; -http://purl.obolibrary.org/obo/UBERON_2000987;hypaxial region somite 3; -http://purl.obolibrary.org/obo/UBERON_2000988;hypaxial region somite 5; -http://purl.obolibrary.org/obo/UBERON_2000989;hypaxial region somite 8; -http://purl.obolibrary.org/obo/UBERON_2000991;epaxial region somite 10; -http://purl.obolibrary.org/obo/UBERON_2000993;lateral wall neural rod; -http://purl.obolibrary.org/obo/UBERON_2000997;medial funicular nucleus trigeminal nuclei; -http://purl.obolibrary.org/obo/UBERON_2001001;epaxial region somite 13; -http://purl.obolibrary.org/obo/UBERON_2001012;epaxial region somite 16; -http://purl.obolibrary.org/obo/UBERON_2001013;myotome somite 10; -http://purl.obolibrary.org/obo/UBERON_2001014;myotome somite 13; -http://purl.obolibrary.org/obo/UBERON_2001015;myotome somite 17; -http://purl.obolibrary.org/obo/UBERON_2001016;myotome somite 2; -http://purl.obolibrary.org/obo/UBERON_2001017;myotome somite 22; -http://purl.obolibrary.org/obo/UBERON_2001018;myotome somite 25; -http://purl.obolibrary.org/obo/UBERON_2001019;myotome somite 28; -http://purl.obolibrary.org/obo/UBERON_2001020;myotome somite 30; -http://purl.obolibrary.org/obo/UBERON_2001021;myotome somite 6; -http://purl.obolibrary.org/obo/UBERON_2001022;myotome somite 9; -http://purl.obolibrary.org/obo/UBERON_2001023;epaxial region somite 19; -http://purl.obolibrary.org/obo/UBERON_2001025;occipital lateral line neuromast;neuromast occipital -http://purl.obolibrary.org/obo/UBERON_2001025;occipital lateral line neuromast;neuromasts occipital -http://purl.obolibrary.org/obo/UBERON_2001026;supraorbital lateral line neuromast;neuromast supraorbital -http://purl.obolibrary.org/obo/UBERON_2001026;supraorbital lateral line neuromast;neuromasts supraorbital -http://purl.obolibrary.org/obo/UBERON_2001028;hypurapophysis;hypurapophyses -http://purl.obolibrary.org/obo/UBERON_2001028;hypurapophysis;parhypurapophyses -http://purl.obolibrary.org/obo/UBERON_2001028;hypurapophysis;parhypurapophyses processes -http://purl.obolibrary.org/obo/UBERON_2001030;epaxial region somite 21; -http://purl.obolibrary.org/obo/UBERON_2001036;sclerotome somite 10; -http://purl.obolibrary.org/obo/UBERON_2001037;sclerotome somite 13; -http://purl.obolibrary.org/obo/UBERON_2001038;sclerotome somite 16; -http://purl.obolibrary.org/obo/UBERON_2001039;sclerotome somite 19; -http://purl.obolibrary.org/obo/UBERON_2001040;epaxial region somite 24; -http://purl.obolibrary.org/obo/UBERON_2001041;sclerotome somite 21; -http://purl.obolibrary.org/obo/UBERON_2001042;sclerotome somite 24; -http://purl.obolibrary.org/obo/UBERON_2001043;sclerotome somite 27; -http://purl.obolibrary.org/obo/UBERON_2001044;sclerotome somite 3; -http://purl.obolibrary.org/obo/UBERON_2001045;sclerotome somite 5; -http://purl.obolibrary.org/obo/UBERON_2001046;sclerotome somite 8; -http://purl.obolibrary.org/obo/UBERON_2001051;caudal division of the internal carotid artery;CaDI -http://purl.obolibrary.org/obo/UBERON_2001052;primordial hindbrain channel;PHCB -http://purl.obolibrary.org/obo/UBERON_2001052;primordial hindbrain channel;medial head vein -http://purl.obolibrary.org/obo/UBERON_2001053;future internal carotid artery;PICA -http://purl.obolibrary.org/obo/UBERON_2001053;future internal carotid artery;primitive internal carotid artery -http://purl.obolibrary.org/obo/UBERON_2001054;lateral dorsal aorta;LDA -http://purl.obolibrary.org/obo/UBERON_2001055;pronephric duct opening; -http://purl.obolibrary.org/obo/UBERON_2001059;cranial division of the internal carotid artery;CrDI -http://purl.obolibrary.org/obo/UBERON_2001059;cranial division of the internal carotid artery;rostral division of the internal carotid artery -http://purl.obolibrary.org/obo/UBERON_2001060;basidorsal;arcualia -http://purl.obolibrary.org/obo/UBERON_2001062;presumptive mesencephalic artery;PMsA -http://purl.obolibrary.org/obo/UBERON_2001062;presumptive mesencephalic artery;primitive mesencephalic artery -http://purl.obolibrary.org/obo/UBERON_2001063;posterior caudal vein; -http://purl.obolibrary.org/obo/UBERON_2001069;ventral fin fold;anal fin fold -http://purl.obolibrary.org/obo/UBERON_2001069;ventral fin fold;anal fin-fold -http://purl.obolibrary.org/obo/UBERON_2001069;ventral fin fold;tail fin fold -http://purl.obolibrary.org/obo/UBERON_2001069;ventral fin fold;tail fin-fold -http://purl.obolibrary.org/obo/UBERON_2001069;ventral fin fold;ventral fin -http://purl.obolibrary.org/obo/UBERON_2001069;ventral fin fold;ventral fin-fold -http://purl.obolibrary.org/obo/UBERON_2001073;axial vasculature; -http://purl.obolibrary.org/obo/UBERON_2001076;intestinal bulb;anterior intestine -http://purl.obolibrary.org/obo/UBERON_2001089;myoseptum; -http://purl.obolibrary.org/obo/UBERON_2001095;immature macula;immature maculae -http://purl.obolibrary.org/obo/UBERON_2001095;immature macula;immature sensory patch -http://purl.obolibrary.org/obo/UBERON_2001095;immature macula;immature sensory patches -http://purl.obolibrary.org/obo/UBERON_2001096;immature anterior macula; -http://purl.obolibrary.org/obo/UBERON_2001097;immature posterior macula; -http://purl.obolibrary.org/obo/UBERON_2001102;immature anterior otolith; -http://purl.obolibrary.org/obo/UBERON_2001103;immature posterior otolith; -http://purl.obolibrary.org/obo/UBERON_2001118;urogenital papilla;UGP -http://purl.obolibrary.org/obo/UBERON_2001118;urogenital papilla;anal papilla -http://purl.obolibrary.org/obo/UBERON_2001118;urogenital papilla;anal papillae -http://purl.obolibrary.org/obo/UBERON_2001118;urogenital papilla;genital papilla -http://purl.obolibrary.org/obo/UBERON_2001118;urogenital papilla;urogenital papillae -http://purl.obolibrary.org/obo/UBERON_2001125;organizer inducing center;Nieuwkoop center -http://purl.obolibrary.org/obo/UBERON_2001126;noninvoluting endocytic marginal cell cluster;NEM -http://purl.obolibrary.org/obo/UBERON_2001126;noninvoluting endocytic marginal cell cluster;noninvoluting endocytic marginal cells -http://purl.obolibrary.org/obo/UBERON_2001129;pharyngeal pouches 2-6; -http://purl.obolibrary.org/obo/UBERON_2001137;ventral tooth row; -http://purl.obolibrary.org/obo/UBERON_2001139;mediodorsal tooth row; -http://purl.obolibrary.org/obo/UBERON_2001140;dorsal tooth row; -http://purl.obolibrary.org/obo/UBERON_2001141;tooth 1V; -http://purl.obolibrary.org/obo/UBERON_2001142;tooth 5V; -http://purl.obolibrary.org/obo/UBERON_2001143;tooth 4V; -http://purl.obolibrary.org/obo/UBERON_2001144;tooth 2V; -http://purl.obolibrary.org/obo/UBERON_2001145;tooth 3V; -http://purl.obolibrary.org/obo/UBERON_2001146;tooth 1MD; -http://purl.obolibrary.org/obo/UBERON_2001147;tooth 2MD; -http://purl.obolibrary.org/obo/UBERON_2001148;tooth 1D; -http://purl.obolibrary.org/obo/UBERON_2001150;tooth 2D; -http://purl.obolibrary.org/obo/UBERON_2001151;tooth 4MD; -http://purl.obolibrary.org/obo/UBERON_2001152;tooth 3MD; -http://purl.obolibrary.org/obo/UBERON_2001154;anal fin musculature; -http://purl.obolibrary.org/obo/UBERON_2001156;posterior lateral line placode; -http://purl.obolibrary.org/obo/UBERON_2001157;posterior lateral line primordium;posterior lateral line primordia -http://purl.obolibrary.org/obo/UBERON_2001160;dorsal scute; -http://purl.obolibrary.org/obo/UBERON_2001163;supraneural 7 bone; -http://purl.obolibrary.org/obo/UBERON_2001164;supraneural 6 bone;sn6 -http://purl.obolibrary.org/obo/UBERON_2001165;supraneural 5 bone;sn5 -http://purl.obolibrary.org/obo/UBERON_2001166;supraneural 9 bone; -http://purl.obolibrary.org/obo/UBERON_2001167;vertebral element 1; -http://purl.obolibrary.org/obo/UBERON_2001168;vertebral element 2; -http://purl.obolibrary.org/obo/UBERON_2001169;vertebral element 3; -http://purl.obolibrary.org/obo/UBERON_2001170;vertebral element 4; -http://purl.obolibrary.org/obo/UBERON_2001171;os suspensorium;Weberian ossicle 5 -http://purl.obolibrary.org/obo/UBERON_2001171;os suspensorium;fifth Weberian ossicle -http://purl.obolibrary.org/obo/UBERON_2001172;roofing cartilage; -http://purl.obolibrary.org/obo/UBERON_2001179;epidermal superficial stratum; -http://purl.obolibrary.org/obo/UBERON_2001181;epidermal intermediate stratum; -http://purl.obolibrary.org/obo/UBERON_2001183;dermal superficial region;stratum laxum -http://purl.obolibrary.org/obo/UBERON_2001186;collagenous dermal stroma;primary dermal stroma -http://purl.obolibrary.org/obo/UBERON_2001188;Weberian apparatus; -http://purl.obolibrary.org/obo/UBERON_2001190;Weberian vertebra;Weberian vertebrae -http://purl.obolibrary.org/obo/UBERON_2001191;supraneural 2 bone;small supraneural -http://purl.obolibrary.org/obo/UBERON_2001191;supraneural 2 bone;sn2 -http://purl.obolibrary.org/obo/UBERON_2001192;supraneural 3 bone;large supraneural -http://purl.obolibrary.org/obo/UBERON_2001192;supraneural 3 bone;sn3 -http://purl.obolibrary.org/obo/UBERON_2001193;supraneural 8 bone; -http://purl.obolibrary.org/obo/UBERON_2001200;corpuscles of Stannius; -http://purl.obolibrary.org/obo/UBERON_2001201;ventral lateral mesoderm; -http://purl.obolibrary.org/obo/UBERON_2001220;basibranchial copula; -http://purl.obolibrary.org/obo/UBERON_2001221;anterior copula;anterior basibranchial copula -http://purl.obolibrary.org/obo/UBERON_2001222;posterior copula;copula 2 -http://purl.obolibrary.org/obo/UBERON_2001222;posterior copula;posterior basibranchial copula -http://purl.obolibrary.org/obo/UBERON_2001222;posterior copula;posterior copula -http://purl.obolibrary.org/obo/UBERON_2001223;basibranchial 1 bone; -http://purl.obolibrary.org/obo/UBERON_2001224;basibranchial 2 bone; -http://purl.obolibrary.org/obo/UBERON_2001225;basibranchial 3 bone; -http://purl.obolibrary.org/obo/UBERON_2001226;basibranchial 4 bone; -http://purl.obolibrary.org/obo/UBERON_2001228;pharyngeal arch 3 skeleton;branchial arch 1 skeleton -http://purl.obolibrary.org/obo/UBERON_2001228;pharyngeal arch 3 skeleton;gill arch 1 skeleton -http://purl.obolibrary.org/obo/UBERON_2001228;pharyngeal arch 3 skeleton;visceral arch 3 skeleton -http://purl.obolibrary.org/obo/UBERON_2001229;pharyngeal arch 7 skeleton;branchial arch 5 skeleton -http://purl.obolibrary.org/obo/UBERON_2001229;pharyngeal arch 7 skeleton;gill arch 5 skeleton -http://purl.obolibrary.org/obo/UBERON_2001229;pharyngeal arch 7 skeleton;visceral arch 7 skeleton -http://purl.obolibrary.org/obo/UBERON_2001230;pharyngeal arch 6 skeleton;branchial arch 4 skeleton -http://purl.obolibrary.org/obo/UBERON_2001230;pharyngeal arch 6 skeleton;gill arch 4 skeleton -http://purl.obolibrary.org/obo/UBERON_2001230;pharyngeal arch 6 skeleton;visceral arch 6 skeleton -http://purl.obolibrary.org/obo/UBERON_2001231;pharyngeal arch 4 skeleton;branchial arch 2 skeleton -http://purl.obolibrary.org/obo/UBERON_2001231;pharyngeal arch 4 skeleton;gill arch 2 skeleton -http://purl.obolibrary.org/obo/UBERON_2001231;pharyngeal arch 4 skeleton;visceral arch 4 skeleton -http://purl.obolibrary.org/obo/UBERON_2001232;pharyngeal arch 5 skeleton;branchial arch 3 skeleton -http://purl.obolibrary.org/obo/UBERON_2001232;pharyngeal arch 5 skeleton;gill arch 3 skeleton -http://purl.obolibrary.org/obo/UBERON_2001232;pharyngeal arch 5 skeleton;visceral arch 5 skeleton -http://purl.obolibrary.org/obo/UBERON_2001233;hypobranchial 1 bone; -http://purl.obolibrary.org/obo/UBERON_2001234;hypobranchial 4 bone; -http://purl.obolibrary.org/obo/UBERON_2001235;hypobranchial 3 bone; -http://purl.obolibrary.org/obo/UBERON_2001236;hypobranchial 2 bone; -http://purl.obolibrary.org/obo/UBERON_2001237;ceratobranchial 1 bone; -http://purl.obolibrary.org/obo/UBERON_2001239;ceratobranchial 5 bone;inferior pharyngeal bone -http://purl.obolibrary.org/obo/UBERON_2001239;ceratobranchial 5 bone;lower pharyngeal -http://purl.obolibrary.org/obo/UBERON_2001240;ceratobranchial 4 bone; -http://purl.obolibrary.org/obo/UBERON_2001241;ceratobranchial 3 bone; -http://purl.obolibrary.org/obo/UBERON_2001242;ceratobranchial 2 bone; -http://purl.obolibrary.org/obo/UBERON_2001243;epibranchial 1 bone; -http://purl.obolibrary.org/obo/UBERON_2001244;epibranchial 5 cartilage;accessory cartilage -http://purl.obolibrary.org/obo/UBERON_2001244;epibranchial 5 cartilage;interbranchial -http://purl.obolibrary.org/obo/UBERON_2001244;epibranchial 5 cartilage;interbranchial IV -http://purl.obolibrary.org/obo/UBERON_2001245;epibranchial 4 bone; -http://purl.obolibrary.org/obo/UBERON_2001246;epibranchial 2 bone; -http://purl.obolibrary.org/obo/UBERON_2001247;epibranchial 3 bone; -http://purl.obolibrary.org/obo/UBERON_2001248;dorsal scute series; -http://purl.obolibrary.org/obo/UBERON_2001250;pharyngobranchial 2 bone;infrapharyngobranchial 2 -http://purl.obolibrary.org/obo/UBERON_2001251;pharyngobranchial 4 cartilage;infrapharyngobranchial 4 cartilage -http://purl.obolibrary.org/obo/UBERON_2001251;pharyngobranchial 4 cartilage;infrapharyngobranchials -http://purl.obolibrary.org/obo/UBERON_2001252;pharyngobranchial 3 bone;infrapharyngobranchial 3 -http://purl.obolibrary.org/obo/UBERON_2001253;neural arch 2; -http://purl.obolibrary.org/obo/UBERON_2001254;abdominal scute series;abdominal scutes -http://purl.obolibrary.org/obo/UBERON_2001256;lateral floor plate; -http://purl.obolibrary.org/obo/UBERON_2001257;medial floor plate; -http://purl.obolibrary.org/obo/UBERON_2001263;ovarian follicle stage I;previtillogenic ovarian follicle -http://purl.obolibrary.org/obo/UBERON_2001265;ovarian follicle stage II; -http://purl.obolibrary.org/obo/UBERON_2001266;ovarian follicle stage III; -http://purl.obolibrary.org/obo/UBERON_2001269;regenerating fin/limb; -http://purl.obolibrary.org/obo/UBERON_2001274;coronomeckelian;sesamoid articular -http://purl.obolibrary.org/obo/UBERON_2001274;coronomeckelian;sesamoid coronoid -http://purl.obolibrary.org/obo/UBERON_2001275;sublingual bone; -http://purl.obolibrary.org/obo/UBERON_2001277;anterior chamber swim bladder; -http://purl.obolibrary.org/obo/UBERON_2001278;posterior chamber swim bladder; -http://purl.obolibrary.org/obo/UBERON_2001279;branchiostegal ray 1; -http://purl.obolibrary.org/obo/UBERON_2001280;branchiostegal ray 3; -http://purl.obolibrary.org/obo/UBERON_2001281;branchiostegal ray 2; -http://purl.obolibrary.org/obo/UBERON_2001286;caudal vein plexus; -http://purl.obolibrary.org/obo/UBERON_2001293;posterior kidney; -http://purl.obolibrary.org/obo/UBERON_2001297;vagal placode 1; -http://purl.obolibrary.org/obo/UBERON_2001298;vagal placode 2; -http://purl.obolibrary.org/obo/UBERON_2001299;vagal placode 3; -http://purl.obolibrary.org/obo/UBERON_2001300;vagal placode 4; -http://purl.obolibrary.org/obo/UBERON_2001302;vagal ganglion 1;gX1 -http://purl.obolibrary.org/obo/UBERON_2001302;vagal ganglion 1;nodose ganglion 1 -http://purl.obolibrary.org/obo/UBERON_2001303;vagal ganglion 2;gX2 -http://purl.obolibrary.org/obo/UBERON_2001303;vagal ganglion 2;nodose ganglion 2 -http://purl.obolibrary.org/obo/UBERON_2001304;vagal ganglion 3;gX3 -http://purl.obolibrary.org/obo/UBERON_2001304;vagal ganglion 3;nodose ganglion 3 -http://purl.obolibrary.org/obo/UBERON_2001305;vagal ganglion 4;gX4 -http://purl.obolibrary.org/obo/UBERON_2001305;vagal ganglion 4;nodose ganglion 4 -http://purl.obolibrary.org/obo/UBERON_2001312;dorsal anterior lateral line ganglion;anterodorsal lateral line ganglion -http://purl.obolibrary.org/obo/UBERON_2001313;ventral anterior lateral line ganglion;anteroventral lateral line ganglion -http://purl.obolibrary.org/obo/UBERON_2001314;posterior lateral line ganglion; -http://purl.obolibrary.org/obo/UBERON_2001316;anterior lateral line placode; -http://purl.obolibrary.org/obo/UBERON_2001324;enteric musculature; -http://purl.obolibrary.org/obo/UBERON_2001333;sublingual dorsal and ventral fused; -http://purl.obolibrary.org/obo/UBERON_2001335;supradorsal; -http://purl.obolibrary.org/obo/UBERON_2001340;nucleus of the tract of the postoptic commissure;ntPOC -http://purl.obolibrary.org/obo/UBERON_2001341;intervening zone;IZ -http://purl.obolibrary.org/obo/UBERON_2001342;presumptive intervening zone; -http://purl.obolibrary.org/obo/UBERON_2001343;telencephalon diencephalon boundary; -http://purl.obolibrary.org/obo/UBERON_2001347;stratum fibrosum et griseum superficiale; -http://purl.obolibrary.org/obo/UBERON_2001348;stratum marginale; -http://purl.obolibrary.org/obo/UBERON_2001349;stratum opticum; -http://purl.obolibrary.org/obo/UBERON_2001352;stratum periventriculare; -http://purl.obolibrary.org/obo/UBERON_2001357;alar plate midbrain; -http://purl.obolibrary.org/obo/UBERON_2001361;basiventral; -http://purl.obolibrary.org/obo/UBERON_2001363;neural complex of Weberian apparatus;Weberian supraneural -http://purl.obolibrary.org/obo/UBERON_2001364;hemal spine;haemacanthe -http://purl.obolibrary.org/obo/UBERON_2001364;hemal spine;haemal spine -http://purl.obolibrary.org/obo/UBERON_2001364;hemal spine;hémacanthe -http://purl.obolibrary.org/obo/UBERON_2001364;hemal spine;épine hémale -http://purl.obolibrary.org/obo/UBERON_2001366;tract of the postoptic commissure;TPOC -http://purl.obolibrary.org/obo/UBERON_2001371;pancreatic system; -http://purl.obolibrary.org/obo/UBERON_2001378;axial hypoblast; -http://purl.obolibrary.org/obo/UBERON_2001382;epibranchial bone uncinate process; -http://purl.obolibrary.org/obo/UBERON_2001388;epithelial mesenchymal boundary of regenerating fin/limb; -http://purl.obolibrary.org/obo/UBERON_2001389;regeneration epithelium of fin/limb;epidermal cap of fin -http://purl.obolibrary.org/obo/UBERON_2001389;regeneration epithelium of fin/limb;wound epidermis of fin -http://purl.obolibrary.org/obo/UBERON_2001389;regeneration epithelium of fin/limb;wound epithelium of fin -http://purl.obolibrary.org/obo/UBERON_2001391;anterior lateral line ganglion; -http://purl.obolibrary.org/obo/UBERON_2001392;parapophysis 1;basipophysis 1 -http://purl.obolibrary.org/obo/UBERON_2001392;parapophysis 1;lateral process 1 -http://purl.obolibrary.org/obo/UBERON_2001393;parapophysis 2;basipophysis -http://purl.obolibrary.org/obo/UBERON_2001393;parapophysis 2;lateral process 2 -http://purl.obolibrary.org/obo/UBERON_2001394;neural arch 3; -http://purl.obolibrary.org/obo/UBERON_2001395;neural arch 4; -http://purl.obolibrary.org/obo/UBERON_2001396;parapophysis + rib of vertebra 4;fourth pleural rib plus parapophysis -http://purl.obolibrary.org/obo/UBERON_2001396;parapophysis + rib of vertebra 4;fourth rib plus parapophysis -http://purl.obolibrary.org/obo/UBERON_2001396;parapophysis + rib of vertebra 4;parapophysis/rib -http://purl.obolibrary.org/obo/UBERON_2001397;post-Weberian supraneural; -http://purl.obolibrary.org/obo/UBERON_2001403;supraethmoid; -http://purl.obolibrary.org/obo/UBERON_2001404;preethmoid bone; -http://purl.obolibrary.org/obo/UBERON_2001406;kinethmoid bone;kinethmoideum bone -http://purl.obolibrary.org/obo/UBERON_2001407;infraorbital 2; -http://purl.obolibrary.org/obo/UBERON_2001408;infraorbital 3; -http://purl.obolibrary.org/obo/UBERON_2001409;infraorbital 4; -http://purl.obolibrary.org/obo/UBERON_2001412;epiotic;epioccipital -http://purl.obolibrary.org/obo/UBERON_2001412;epiotic;epioccipitals -http://purl.obolibrary.org/obo/UBERON_2001415;pelvic fin distal radial bone 2; -http://purl.obolibrary.org/obo/UBERON_2001416;pelvic fin distal radial bone 3; -http://purl.obolibrary.org/obo/UBERON_2001417;pelvic fin distal radial bone 1; -http://purl.obolibrary.org/obo/UBERON_2001419;dorsal fin pterygiophore;dorsal fin pterygiophores -http://purl.obolibrary.org/obo/UBERON_2001419;dorsal fin pterygiophore;dorsal fin support -http://purl.obolibrary.org/obo/UBERON_2001420;anal fin pterygiophore;anal fin pterygiophores -http://purl.obolibrary.org/obo/UBERON_2001425;basal plate cartilage; -http://purl.obolibrary.org/obo/UBERON_2001426;posterior naris;posterior nostril -http://purl.obolibrary.org/obo/UBERON_2001427;anterior naris;anterior nostril -http://purl.obolibrary.org/obo/UBERON_2001428;olfactory rosette;nasal rosette -http://purl.obolibrary.org/obo/UBERON_2001430;pneumatic duct; -http://purl.obolibrary.org/obo/UBERON_2001431;primitive olfactory epithelium; -http://purl.obolibrary.org/obo/UBERON_2001432;anterior sclerotic bone; -http://purl.obolibrary.org/obo/UBERON_2001433;posterior sclerotic bone; -http://purl.obolibrary.org/obo/UBERON_2001437;ductus communicans; -http://purl.obolibrary.org/obo/UBERON_2001450;apical ectodermal ridge pelvic fin; -http://purl.obolibrary.org/obo/UBERON_2001456;pectoral fin endoskeletal disc;fin plate cartilage -http://purl.obolibrary.org/obo/UBERON_2001457;postcranial axial cartilage; -http://purl.obolibrary.org/obo/UBERON_2001463;melanophore stripe;bar -http://purl.obolibrary.org/obo/UBERON_2001463;melanophore stripe;melanophore bar -http://purl.obolibrary.org/obo/UBERON_2001463;melanophore stripe;stripe -http://purl.obolibrary.org/obo/UBERON_2001463;melanophore stripe;stripes -http://purl.obolibrary.org/obo/UBERON_2001467;pharyngeal mesoderm; -http://purl.obolibrary.org/obo/UBERON_2001468;anterior lateral line system; -http://purl.obolibrary.org/obo/UBERON_2001470;anterior lateral line; -http://purl.obolibrary.org/obo/UBERON_2001471;posterior lateral line system; -http://purl.obolibrary.org/obo/UBERON_2001472;anterior lateral line neuromast;neuromast anterior -http://purl.obolibrary.org/obo/UBERON_2001474;sublingual dorsal and ventral separate; -http://purl.obolibrary.org/obo/UBERON_2001475;sublingual dorsal ossification; -http://purl.obolibrary.org/obo/UBERON_2001476;sublingual ventral ossification; -http://purl.obolibrary.org/obo/UBERON_2001480;dorsal anterior lateral line nerve; -http://purl.obolibrary.org/obo/UBERON_2001481;ventral anterior lateral line nerve; -http://purl.obolibrary.org/obo/UBERON_2001482;middle lateral line nerve; -http://purl.obolibrary.org/obo/UBERON_2001483;middle lateral line ganglion; -http://purl.obolibrary.org/obo/UBERON_2001502;epiphyseal bar; -http://purl.obolibrary.org/obo/UBERON_2001504;occipital arch cartilage; -http://purl.obolibrary.org/obo/UBERON_2001505;taenia marginalis anterior; -http://purl.obolibrary.org/obo/UBERON_2001508;trabecula communis; -http://purl.obolibrary.org/obo/UBERON_2001511;interhyal cartilage;stylohyal cartilage -http://purl.obolibrary.org/obo/UBERON_2001515;taenia marginalis posterior; -http://purl.obolibrary.org/obo/UBERON_2001516;ceratobranchial cartilage; -http://purl.obolibrary.org/obo/UBERON_2001517;ceratobranchial 2 cartilage; -http://purl.obolibrary.org/obo/UBERON_2001518;ceratobranchial 3 cartilage; -http://purl.obolibrary.org/obo/UBERON_2001519;ceratobranchial 4 cartilage; -http://purl.obolibrary.org/obo/UBERON_2001520;ceratobranchial 1 cartilage; -http://purl.obolibrary.org/obo/UBERON_2001521;ceratobranchial 5 cartilage; -http://purl.obolibrary.org/obo/UBERON_2001522;hypobranchial cartilage; -http://purl.obolibrary.org/obo/UBERON_2001523;hypobranchial 4 cartilage; -http://purl.obolibrary.org/obo/UBERON_2001524;hypobranchial 1 cartilage; -http://purl.obolibrary.org/obo/UBERON_2001525;hypobranchial 2 cartilage; -http://purl.obolibrary.org/obo/UBERON_2001526;hypobranchial 3 cartilage; -http://purl.obolibrary.org/obo/UBERON_2001527;epibranchial cartilage; -http://purl.obolibrary.org/obo/UBERON_2001528;epibranchial 1 cartilage; -http://purl.obolibrary.org/obo/UBERON_2001529;epibranchial 3 cartilage; -http://purl.obolibrary.org/obo/UBERON_2001530;epibranchial 2 cartilage; -http://purl.obolibrary.org/obo/UBERON_2001531;epibranchial 4 cartilage; -http://purl.obolibrary.org/obo/UBERON_2001532;sublingual dorsal cartilage; -http://purl.obolibrary.org/obo/UBERON_2001533;pharyngobranchial cartilage;infrapharyngobranchial cartilage -http://purl.obolibrary.org/obo/UBERON_2001534;pharyngobranchial 3 cartilage; -http://purl.obolibrary.org/obo/UBERON_2001535;median fin cartilage; -http://purl.obolibrary.org/obo/UBERON_2001536;pharyngobranchial 2 cartilage; -http://purl.obolibrary.org/obo/UBERON_2001537;mesocoracoid cartilage; -http://purl.obolibrary.org/obo/UBERON_2001538;pelvic radial cartilage;pelvic fin radial cartilage -http://purl.obolibrary.org/obo/UBERON_2001539;basipterygium cartilage; -http://purl.obolibrary.org/obo/UBERON_2001540;pelvic radial 3 cartilage; -http://purl.obolibrary.org/obo/UBERON_2001541;pelvic radial 2 cartilage; -http://purl.obolibrary.org/obo/UBERON_2001542;pelvic radial 1 cartilage; -http://purl.obolibrary.org/obo/UBERON_2001544;sublingual cartilage; -http://purl.obolibrary.org/obo/UBERON_2001545;sublingual ventral cartilage; -http://purl.obolibrary.org/obo/UBERON_2001546;neural spine 4; -http://purl.obolibrary.org/obo/UBERON_2001547;abdominal scute; -http://purl.obolibrary.org/obo/UBERON_2001548;intercalarium ascending process; -http://purl.obolibrary.org/obo/UBERON_2001553;manubrium;intercalarium anterior process -http://purl.obolibrary.org/obo/UBERON_2001553;manubrium;intercalarium horizontal process -http://purl.obolibrary.org/obo/UBERON_2001553;manubrium;manubrium incudus -http://purl.obolibrary.org/obo/UBERON_2001560;hypural 1; -http://purl.obolibrary.org/obo/UBERON_2001561;hypural 2; -http://purl.obolibrary.org/obo/UBERON_2001562;hypural 3; -http://purl.obolibrary.org/obo/UBERON_2001563;hypural 4; -http://purl.obolibrary.org/obo/UBERON_2001564;hypural 5; -http://purl.obolibrary.org/obo/UBERON_2001571;postovulatory follicle; -http://purl.obolibrary.org/obo/UBERON_2001577;premaxilla ascending process; -http://purl.obolibrary.org/obo/UBERON_2001578;anterior dorsomedial process of autopalatine; -http://purl.obolibrary.org/obo/UBERON_2001579;ural vertebra 2; -http://purl.obolibrary.org/obo/UBERON_2001581;ural centrum 2; -http://purl.obolibrary.org/obo/UBERON_2001582;non-Weberian precaudal vertebra; -http://purl.obolibrary.org/obo/UBERON_2001583;preural centrum 1+ ural centrum 1; -http://purl.obolibrary.org/obo/UBERON_2001584;caudal procurrent ray;caudal precurrent ray -http://purl.obolibrary.org/obo/UBERON_2001584;caudal procurrent ray;caudal procurrent lepidotrichium -http://purl.obolibrary.org/obo/UBERON_2001584;caudal procurrent ray;caudal spiny ray -http://purl.obolibrary.org/obo/UBERON_2001584;caudal procurrent ray;rudimentary ray -http://purl.obolibrary.org/obo/UBERON_2001585;caudal principal ray;caudal fin principal ray -http://purl.obolibrary.org/obo/UBERON_2001585;caudal principal ray;caudal principal lepidotrichium -http://purl.obolibrary.org/obo/UBERON_2001586;pectoral fin radial bone;pectoral actinost -http://purl.obolibrary.org/obo/UBERON_2001587;pectoral fin proximal radial bone; -http://purl.obolibrary.org/obo/UBERON_2001588;pectoral fin distal radial bone; -http://purl.obolibrary.org/obo/UBERON_2001589;propterygium cartilage;pectoral propterygium -http://purl.obolibrary.org/obo/UBERON_2001592;claustrum bone;first Weberian ossicle -http://purl.obolibrary.org/obo/UBERON_2001593;caudal fin upper lobe;caudal fin dorsal lobe -http://purl.obolibrary.org/obo/UBERON_2001594;caudal fin lower lobe;caudal fin ventral lobe -http://purl.obolibrary.org/obo/UBERON_2001603;maxilla ascending process;maxilla ascending arm -http://purl.obolibrary.org/obo/UBERON_2001603;maxilla ascending process;maxilla upper arm -http://purl.obolibrary.org/obo/UBERON_2001604;lateral ethmoid palatine process; -http://purl.obolibrary.org/obo/UBERON_2001605;caudal scute series; -http://purl.obolibrary.org/obo/UBERON_2001606;caudal scute; -http://purl.obolibrary.org/obo/UBERON_2001607;basipterygoid process of parasphenoid;basipterygoid process -http://purl.obolibrary.org/obo/UBERON_2001608;autopalatine-lateral ethmoid joint; -http://purl.obolibrary.org/obo/UBERON_2001609;pharyngobranchial 2 bone uncinate process; -http://purl.obolibrary.org/obo/UBERON_2001610;quadrate dorsal process;quadrate superior arm -http://purl.obolibrary.org/obo/UBERON_2001611;quadrate posterodorsal process; -http://purl.obolibrary.org/obo/UBERON_2001612;sensory canal;lateral line canal -http://purl.obolibrary.org/obo/UBERON_2001612;sensory canal;lateral-line canal -http://purl.obolibrary.org/obo/UBERON_2001613;dorsal fin middle radial bone;dorsal fin medial radial -http://purl.obolibrary.org/obo/UBERON_2001614;anal fin middle radial bone;anal fin medial radial -http://purl.obolibrary.org/obo/UBERON_2001614;anal fin middle radial bone;medial anal-fin radial -http://purl.obolibrary.org/obo/UBERON_2001615;sphenotic spine;sphenotic process -http://purl.obolibrary.org/obo/UBERON_2001616;lateral ethmoid wing;lateral ethmoid ventral wing -http://purl.obolibrary.org/obo/UBERON_2001617;trunk sensory canal;trunk lateral line canal -http://purl.obolibrary.org/obo/UBERON_2001619;post-otic sensory canal;post-temporal canal -http://purl.obolibrary.org/obo/UBERON_2001620;lagenar capsule; -http://purl.obolibrary.org/obo/UBERON_2001622;odontode;odontodes -http://purl.obolibrary.org/obo/UBERON_2001623;type 1 odontode; -http://purl.obolibrary.org/obo/UBERON_2001624;type 2 odontode; -http://purl.obolibrary.org/obo/UBERON_2001626;premaxillary tooth; -http://purl.obolibrary.org/obo/UBERON_2001629;otic sensory canal; -http://purl.obolibrary.org/obo/UBERON_2001630;supratemporal sensory canal;occipital canal -http://purl.obolibrary.org/obo/UBERON_2001630;supratemporal sensory canal;occipital sensory canal -http://purl.obolibrary.org/obo/UBERON_2001630;supratemporal sensory canal;supratemporal canal -http://purl.obolibrary.org/obo/UBERON_2001632;ectopterygoid tooth; -http://purl.obolibrary.org/obo/UBERON_2001633;entopterygoid tooth;mesopterygoid tooth -http://purl.obolibrary.org/obo/UBERON_2001634;pharyngobranchial 1 cartilage;infrapharyngobranchial 1 cartilage -http://purl.obolibrary.org/obo/UBERON_2001635;pharyngobranchial 1 bone;infrapharyngobranchial 1 bone -http://purl.obolibrary.org/obo/UBERON_2001636;pharyngobranchial 4 bone;infrapharyngobranchial 4 bone -http://purl.obolibrary.org/obo/UBERON_2001640;notochordal ossification; -http://purl.obolibrary.org/obo/UBERON_2001647;pharyngeal tooth plate;pharyngeal toothplate -http://purl.obolibrary.org/obo/UBERON_2001647;pharyngeal tooth plate;tooth plate -http://purl.obolibrary.org/obo/UBERON_2001647;pharyngeal tooth plate;toothplate -http://purl.obolibrary.org/obo/UBERON_2001648;basihyal tooth plate;basihyal toothplate -http://purl.obolibrary.org/obo/UBERON_2001649;basihyal tooth; -http://purl.obolibrary.org/obo/UBERON_2001650;pharyngobranchial 2 tooth plate;pharyngobranchial 2 toothplate -http://purl.obolibrary.org/obo/UBERON_2001651;pharyngobranchial 2 tooth; -http://purl.obolibrary.org/obo/UBERON_2001652;pharyngobranchial 3 tooth plate;pharyngobranchial 3 toothplate -http://purl.obolibrary.org/obo/UBERON_2001653;pharyngobranchial 3 tooth; -http://purl.obolibrary.org/obo/UBERON_2001654;upper pharyngeal 4 tooth plate;upper pharyngeal 4 toothplate -http://purl.obolibrary.org/obo/UBERON_2001655;upper pharyngeal 4 tooth; -http://purl.obolibrary.org/obo/UBERON_2001656;upper pharyngeal 5 tooth plate;upper pharyngeal 5 toothplate -http://purl.obolibrary.org/obo/UBERON_2001657;upper pharyngeal 5 tooth; -http://purl.obolibrary.org/obo/UBERON_2001658;upper pharyngeal tooth plate;upper pharyngeal toothplate -http://purl.obolibrary.org/obo/UBERON_2001659;upper pharyngeal tooth; -http://purl.obolibrary.org/obo/UBERON_2001660;basibranchial tooth; -http://purl.obolibrary.org/obo/UBERON_2001661;basibranchial tooth plate;basibranchial 1-3 toothplates -http://purl.obolibrary.org/obo/UBERON_2001661;basibranchial tooth plate;basibranchial toothplate -http://purl.obolibrary.org/obo/UBERON_2001662;basibranchial 4 tooth plate;basibranchial 4 toothplate -http://purl.obolibrary.org/obo/UBERON_2001663;basibranchial 4 tooth; -http://purl.obolibrary.org/obo/UBERON_2001664;basibranchial 2 tooth plate;basibranchial 2 toothplate -http://purl.obolibrary.org/obo/UBERON_2001665;basibranchial 2 tooth; -http://purl.obolibrary.org/obo/UBERON_2001666;rudimentary neural arch; -http://purl.obolibrary.org/obo/UBERON_2001671;anal fin radial bone; -http://purl.obolibrary.org/obo/UBERON_2001672;dorsal fin radial bone; -http://purl.obolibrary.org/obo/UBERON_2001674;infraorbital 6; -http://purl.obolibrary.org/obo/UBERON_2001675;mesethmoid cornu;cornu -http://purl.obolibrary.org/obo/UBERON_2001675;mesethmoid cornu;cornua -http://purl.obolibrary.org/obo/UBERON_2001675;mesethmoid cornu;cornuae -http://purl.obolibrary.org/obo/UBERON_2001676;mesethmoid-premaxillary joint; -http://purl.obolibrary.org/obo/UBERON_2001677;mesethmoid-nasal joint; -http://purl.obolibrary.org/obo/UBERON_2001678;mesethmoid-frontal joint; -http://purl.obolibrary.org/obo/UBERON_2001679;mesethmoid-lateral ethmoid joint; -http://purl.obolibrary.org/obo/UBERON_2001680;mesethmoid-vomer joint;mesethmoid-prevomer joint -http://purl.obolibrary.org/obo/UBERON_2001681;cornu mesial process; -http://purl.obolibrary.org/obo/UBERON_2001683;transcapular ligament;Baudelot's ligament -http://purl.obolibrary.org/obo/UBERON_2001683;transcapular ligament;transscapular ligament -http://purl.obolibrary.org/obo/UBERON_2001684;ossified transcapular ligament;ossified Baudelot's ligament -http://purl.obolibrary.org/obo/UBERON_2001684;ossified transcapular ligament;ossified transscapular ligament -http://purl.obolibrary.org/obo/UBERON_2001685;lateral ethmoid-ectopterygoid ligament; -http://purl.obolibrary.org/obo/UBERON_2001686;bony shelf above orbit; -http://purl.obolibrary.org/obo/UBERON_2001687;interopercular-mandibular ligament;interopercular-retroarticular ligament -http://purl.obolibrary.org/obo/UBERON_2001687;interopercular-mandibular ligament;interoperculo-mandibular ligament -http://purl.obolibrary.org/obo/UBERON_2001687;interopercular-mandibular ligament;interoperculomandibular ligament -http://purl.obolibrary.org/obo/UBERON_2001688;palatine cartilage; -http://purl.obolibrary.org/obo/UBERON_2001689;pterygoquadrate cartilage; -http://purl.obolibrary.org/obo/UBERON_2001690;anterior cartilage of palatine; -http://purl.obolibrary.org/obo/UBERON_2001691;posterior cartilage of palatine; -http://purl.obolibrary.org/obo/UBERON_2001692;median premaxilla; -http://purl.obolibrary.org/obo/UBERON_2001693;protractor operculi; -http://purl.obolibrary.org/obo/UBERON_2001694;humerovertebral ligament; -http://purl.obolibrary.org/obo/UBERON_2001695;mediopharyngobranchial; -http://purl.obolibrary.org/obo/UBERON_2001696;gongyloid cartilage; -http://purl.obolibrary.org/obo/UBERON_2001697;transverse radial; -http://purl.obolibrary.org/obo/UBERON_2001698;anal-fin stay;anal fin stay -http://purl.obolibrary.org/obo/UBERON_2001699;dorsal-fin stay;dorsal fin stay -http://purl.obolibrary.org/obo/UBERON_2001700;caudal-fin stay;caudal fin stay -http://purl.obolibrary.org/obo/UBERON_2001701;basibranchial 5 bone; -http://purl.obolibrary.org/obo/UBERON_2001702;infraorbital 7; -http://purl.obolibrary.org/obo/UBERON_2001703;infraorbital 8; -http://purl.obolibrary.org/obo/UBERON_2001704;infraorbital 9; -http://purl.obolibrary.org/obo/UBERON_2001705;infraorbital 10; -http://purl.obolibrary.org/obo/UBERON_2001706;infraorbital 11; -http://purl.obolibrary.org/obo/UBERON_2001707;infraorbital 12; -http://purl.obolibrary.org/obo/UBERON_2001708;dermosphenotic; -http://purl.obolibrary.org/obo/UBERON_2001709;infraorbital series; -http://purl.obolibrary.org/obo/UBERON_2001710;opercle-interopercle joint; -http://purl.obolibrary.org/obo/UBERON_2001711;frontal-pterotic joint; -http://purl.obolibrary.org/obo/UBERON_2001713;caudal principal ray 1; -http://purl.obolibrary.org/obo/UBERON_2001714;caudal principal ray 2; -http://purl.obolibrary.org/obo/UBERON_2001715;caudal principal ray 3; -http://purl.obolibrary.org/obo/UBERON_2001716;caudal principal ray 4; -http://purl.obolibrary.org/obo/UBERON_2001717;caudal principal ray 5; -http://purl.obolibrary.org/obo/UBERON_2001718;caudal principal ray 6; -http://purl.obolibrary.org/obo/UBERON_2001719;caudal principal ray 7; -http://purl.obolibrary.org/obo/UBERON_2001720;caudal principal ray 8; -http://purl.obolibrary.org/obo/UBERON_2001721;caudal principal ray 9; -http://purl.obolibrary.org/obo/UBERON_2001722;caudal principal ray 10; -http://purl.obolibrary.org/obo/UBERON_2001723;caudal principal ray 11; -http://purl.obolibrary.org/obo/UBERON_2001724;caudal principal ray 12; -http://purl.obolibrary.org/obo/UBERON_2001725;caudal principal ray 13; -http://purl.obolibrary.org/obo/UBERON_2001726;caudal principal ray 14; -http://purl.obolibrary.org/obo/UBERON_2001727;caudal principal ray 15; -http://purl.obolibrary.org/obo/UBERON_2001728;caudal principal ray 16; -http://purl.obolibrary.org/obo/UBERON_2001729;caudal principal ray 17; -http://purl.obolibrary.org/obo/UBERON_2001730;caudal principal ray 18; -http://purl.obolibrary.org/obo/UBERON_2001731;caudal principal ray 19; -http://purl.obolibrary.org/obo/UBERON_2001732;vertebral element 5; -http://purl.obolibrary.org/obo/UBERON_2001733;mesethmoid ventral diverging lamella; -http://purl.obolibrary.org/obo/UBERON_2001734;posterior process of basipterygium;ischiac process -http://purl.obolibrary.org/obo/UBERON_2001734;posterior process of basipterygium;ischiatic process -http://purl.obolibrary.org/obo/UBERON_2001734;posterior process of basipterygium;posterior pelvic process -http://purl.obolibrary.org/obo/UBERON_2001735;scapular foramen; -http://purl.obolibrary.org/obo/UBERON_2001737;coracoid foramen; -http://purl.obolibrary.org/obo/UBERON_2001739;anterior cranial fontanel;frontal fontanel -http://purl.obolibrary.org/obo/UBERON_2001739;anterior cranial fontanel;frontal fontanelle -http://purl.obolibrary.org/obo/UBERON_2001740;posterior cranial fontanel;parietal fontanel -http://purl.obolibrary.org/obo/UBERON_2001741;trigeminofacial foramen;trigemino-facialis foramen -http://purl.obolibrary.org/obo/UBERON_2001741;trigeminofacial foramen;trigeminofacial nerve foramen -http://purl.obolibrary.org/obo/UBERON_2001741;trigeminofacial foramen;trigeminofacialis foramen -http://purl.obolibrary.org/obo/UBERON_2001742;auditory foramen; -http://purl.obolibrary.org/obo/UBERON_2001744;replacement tooth trench;replacement tooth crypt -http://purl.obolibrary.org/obo/UBERON_2001744;replacement tooth trench;replacement tooth crypts -http://purl.obolibrary.org/obo/UBERON_2001745;premaxilla replacement tooth trench; -http://purl.obolibrary.org/obo/UBERON_2001746;dentary replacement tooth trench; -http://purl.obolibrary.org/obo/UBERON_2001747;lateral mesethmoid wing;mesethmoid lateral wing -http://purl.obolibrary.org/obo/UBERON_2001747;lateral mesethmoid wing;premaxillary articular process -http://purl.obolibrary.org/obo/UBERON_2001748;superficial ophthalmic nerve foramen; -http://purl.obolibrary.org/obo/UBERON_2001749;dentary-anguloarticular joint; -http://purl.obolibrary.org/obo/UBERON_2001750;rib of vertebra 6;sixth pleural rib -http://purl.obolibrary.org/obo/UBERON_2001751;rib of vertebra 5;fifth pleural rib -http://purl.obolibrary.org/obo/UBERON_2001752;pre-narial cartilage; -http://purl.obolibrary.org/obo/UBERON_2001753;posttemporal fossa;temporal groove -http://purl.obolibrary.org/obo/UBERON_2001754;dorsal fin ray 1;dorsal fin lepidotrichium 1 -http://purl.obolibrary.org/obo/UBERON_2001755;dorsal fin ray 2;dorsal fin lepidotrichium 2 -http://purl.obolibrary.org/obo/UBERON_2001756;dorsal fin ray 3;dorsal fin lepidotrichium 3 -http://purl.obolibrary.org/obo/UBERON_2001757;dorsal fin ray 4;dorsal fin lepidotrichium 4 -http://purl.obolibrary.org/obo/UBERON_2001758;dorsal fin ray 5;dorsal fin lepidotrichium 5 -http://purl.obolibrary.org/obo/UBERON_2001759;dorsal fin ray 6;dorsal fin lepidotrichium 6 -http://purl.obolibrary.org/obo/UBERON_2001760;dorsal fin ray 7;dorsal fin lepidotrichium 7 -http://purl.obolibrary.org/obo/UBERON_2001761;pectoral fin ray 1;pectoral fin lepidotrichium 1 -http://purl.obolibrary.org/obo/UBERON_2001761;pectoral fin ray 1;pectoral fin ray 1 -http://purl.obolibrary.org/obo/UBERON_2001762;pectoral fin ray 2;pectoral fin lepidotrichium 2 -http://purl.obolibrary.org/obo/UBERON_2001762;pectoral fin ray 2;pectoral fin ray 2 -http://purl.obolibrary.org/obo/UBERON_2001763;pectoral fin ray 3;pectoral fin lepidotrichium 3 -http://purl.obolibrary.org/obo/UBERON_2001763;pectoral fin ray 3;pectoral fin ray 3 -http://purl.obolibrary.org/obo/UBERON_2001764;pectoral fin ray 4;pectoral fin lepidotrichium 4 -http://purl.obolibrary.org/obo/UBERON_2001764;pectoral fin ray 4;pectoral fin ray 4 -http://purl.obolibrary.org/obo/UBERON_2001765;pectoral fin ray 5;pectoral fin lepidotrichium 5 -http://purl.obolibrary.org/obo/UBERON_2001765;pectoral fin ray 5;pectoral fin ray 5 -http://purl.obolibrary.org/obo/UBERON_2001766;pectoral fin ray 6;pectoral fin lepidotrichium 6 -http://purl.obolibrary.org/obo/UBERON_2001766;pectoral fin ray 6;pectoral fin ray 6 -http://purl.obolibrary.org/obo/UBERON_2001767;pectoral fin ray 7;pectoral fin lepidotrichium 7 -http://purl.obolibrary.org/obo/UBERON_2001767;pectoral fin ray 7;pectoral fin ray 7 -http://purl.obolibrary.org/obo/UBERON_2001768;retractor tentaculi; -http://purl.obolibrary.org/obo/UBERON_2001769;anal fin ray 1;anal fin lepidotrichium 1 -http://purl.obolibrary.org/obo/UBERON_2001770;anal fin ray 2;anal fin lepidotrichium 2 -http://purl.obolibrary.org/obo/UBERON_2001771;anal fin ray 3;anal fin lepidotrichium 3 -http://purl.obolibrary.org/obo/UBERON_2001772;anal fin ray 4;anal fin lepidotrichium 4 -http://purl.obolibrary.org/obo/UBERON_2001773;anal fin ray 5;anal fin lepidotrichium 5 -http://purl.obolibrary.org/obo/UBERON_2001774;anal fin ray 6;anal fin lepidotrichium 6 -http://purl.obolibrary.org/obo/UBERON_2001775;anal fin ray 7;anal fin lepidotrichium 7 -http://purl.obolibrary.org/obo/UBERON_2001776;pelvic fin ray 1;pelvic fin lepidotrichium 1 -http://purl.obolibrary.org/obo/UBERON_2001777;pelvic fin ray 2;pelvic fin lepidotrichium 2 -http://purl.obolibrary.org/obo/UBERON_2001778;pelvic fin ray 3;pelvic fin lepidotrichium 3 -http://purl.obolibrary.org/obo/UBERON_2001779;pelvic fin ray 4;pelvic fin lepidotrichium 4 -http://purl.obolibrary.org/obo/UBERON_2001780;pelvic fin ray 5;pelvic fin lepidotrichium 5 -http://purl.obolibrary.org/obo/UBERON_2001781;pelvic fin ray 6;pelvic fin lepidotrichium 6 -http://purl.obolibrary.org/obo/UBERON_2001782;pelvic fin ray 7;pelvic fin lepidotrichium 7 -http://purl.obolibrary.org/obo/UBERON_2001783;supraoccipital crest;supraoccipital process -http://purl.obolibrary.org/obo/UBERON_2001783;supraoccipital crest;supraoccipital spine -http://purl.obolibrary.org/obo/UBERON_2001784;autopalatine-vomer joint; -http://purl.obolibrary.org/obo/UBERON_2001785;branched dorsal fin ray; -http://purl.obolibrary.org/obo/UBERON_2001786;unbranched dorsal fin ray;dorsal fin unbranched ray -http://purl.obolibrary.org/obo/UBERON_2001787;pectoral fin spine;pectoral spine -http://purl.obolibrary.org/obo/UBERON_2001788;pelvic splint; -http://purl.obolibrary.org/obo/UBERON_2001789;dorsal fin spine 1;dorsal spine 1 -http://purl.obolibrary.org/obo/UBERON_2001790;dorsal fin spine 2;dorsal spine 2 -http://purl.obolibrary.org/obo/UBERON_2001792;pharyngobranchial 3 bone uncinate process; -http://purl.obolibrary.org/obo/UBERON_2001793;pharyngobranchial 4 bone uncinate process;infrapharyngobranchial 4 bone uncinate process -http://purl.obolibrary.org/obo/UBERON_2001794;orbitosphenoid-prootic joint; -http://purl.obolibrary.org/obo/UBERON_2001795;ceratohyal foramen;bericiform foramen -http://purl.obolibrary.org/obo/UBERON_2001795;ceratohyal foramen;beryciform foramen -http://purl.obolibrary.org/obo/UBERON_2001796;epibranchial 2 bone uncinate process; -http://purl.obolibrary.org/obo/UBERON_2001797;epibranchial 1 bone uncinate process; -http://purl.obolibrary.org/obo/UBERON_2001798;epicentral bone;diépipleural -http://purl.obolibrary.org/obo/UBERON_2001798;epicentral bone;neoneural -http://purl.obolibrary.org/obo/UBERON_2001799;recessus lateralis; -http://purl.obolibrary.org/obo/UBERON_2001800;cephalic rib; -http://purl.obolibrary.org/obo/UBERON_2001801;quadrate-hyomandibula joint; -http://purl.obolibrary.org/obo/UBERON_2001803;quadrate-metapterygoid joint; -http://purl.obolibrary.org/obo/UBERON_2001804;olfactory nerve foramen; -http://purl.obolibrary.org/obo/UBERON_2001805;articular bone;articular -http://purl.obolibrary.org/obo/UBERON_2001806;intracranial diverticulum of swimbladder; -http://purl.obolibrary.org/obo/UBERON_2001807;preepiotic fossa;preepioccipital fossa -http://purl.obolibrary.org/obo/UBERON_2001808;facial foramen;anterior opening trigeminofacialis chamber -http://purl.obolibrary.org/obo/UBERON_2001809;trigeminal foramen;posterior opening of trigeminofacialis chamber -http://purl.obolibrary.org/obo/UBERON_2001810;supraorbital sensory canal;supraorbital canal -http://purl.obolibrary.org/obo/UBERON_2001811;infraorbital sensory canal;infraorbital canal -http://purl.obolibrary.org/obo/UBERON_2001812;preoperculo-mandibular sensory canal;preoperculo-mandibular canal -http://purl.obolibrary.org/obo/UBERON_2001813;preopercular sensory canal; -http://purl.obolibrary.org/obo/UBERON_2001814;mandibular sensory canal; -http://purl.obolibrary.org/obo/UBERON_2001815;nuchal plate; -http://purl.obolibrary.org/obo/UBERON_2001816;anterior nuchal plate;first nuchal plate -http://purl.obolibrary.org/obo/UBERON_2001817;middle nuchal plate;median nuchal plate -http://purl.obolibrary.org/obo/UBERON_2001817;middle nuchal plate;second nuchal plate -http://purl.obolibrary.org/obo/UBERON_2001818;dorsal fin proximal radial bone 1; -http://purl.obolibrary.org/obo/UBERON_2001819;dorsal fin proximal radial bone 2; -http://purl.obolibrary.org/obo/UBERON_2001820;posterior nuchal plate;third nuchal plate -http://purl.obolibrary.org/obo/UBERON_2001821;notochord posterior region; -http://purl.obolibrary.org/obo/UBERON_2001822;epibranchial 3 bone uncinate process; -http://purl.obolibrary.org/obo/UBERON_2001823;epibranchial 4 bone uncinate process; -http://purl.obolibrary.org/obo/UBERON_2001824;lateral line scale; -http://purl.obolibrary.org/obo/UBERON_2001825;urohyal lateral process;branche ventrale de l'urohyal -http://purl.obolibrary.org/obo/UBERON_2001825;urohyal lateral process;processus hyo-pelvien -http://purl.obolibrary.org/obo/UBERON_2001825;urohyal lateral process;urohyal lateral lamella -http://purl.obolibrary.org/obo/UBERON_2001825;urohyal lateral process;urohyal ventral wing -http://purl.obolibrary.org/obo/UBERON_2001826;urohyal median process; -http://purl.obolibrary.org/obo/UBERON_2001827;premaxillary-maxillary ligament; -http://purl.obolibrary.org/obo/UBERON_2001828;primordial ligament;articular-maxillary ligament -http://purl.obolibrary.org/obo/UBERON_2001828;primordial ligament;ligamentum primordiale -http://purl.obolibrary.org/obo/UBERON_2001828;primordial ligament;maxillo-mandibular ligament -http://purl.obolibrary.org/obo/UBERON_2001829;caudal fin dorsal procurrent ray;dorsal caudal procurrent ray -http://purl.obolibrary.org/obo/UBERON_2001829;caudal fin dorsal procurrent ray;dorsal procurrent caudal-fin ray -http://purl.obolibrary.org/obo/UBERON_2001830;caudal fin ventral procurrent ray;precurrent ray -http://purl.obolibrary.org/obo/UBERON_2001830;caudal fin ventral procurrent ray;ventral caudal procurrent ray -http://purl.obolibrary.org/obo/UBERON_2001830;caudal fin ventral procurrent ray;ventral procurrent caudal-fin ray -http://purl.obolibrary.org/obo/UBERON_2001830;caudal fin ventral procurrent ray;ventral procurrent ray -http://purl.obolibrary.org/obo/UBERON_2001831;pterosphenoid-orbitosphenoid joint; -http://purl.obolibrary.org/obo/UBERON_2001832;parasphenoid-basioccipital joint; -http://purl.obolibrary.org/obo/UBERON_2001833;premaxillary tooth row; -http://purl.obolibrary.org/obo/UBERON_2001840;tip;tips -http://purl.obolibrary.org/obo/UBERON_2001841;interhyal-epihyal joint; -http://purl.obolibrary.org/obo/UBERON_2001842;epihyal-ceratohyal joint; -http://purl.obolibrary.org/obo/UBERON_2001843;ceratohyal-dorsal hypohyal joint; -http://purl.obolibrary.org/obo/UBERON_2001844;ceratohyal-ventral hypohyal joint; -http://purl.obolibrary.org/obo/UBERON_2001845;dorsal hypohyal-ventral hypohyal joint; -http://purl.obolibrary.org/obo/UBERON_2001846;inter-ventral hypohyal joint; -http://purl.obolibrary.org/obo/UBERON_2001847;dorsal hypohyal-urohyal joint; -http://purl.obolibrary.org/obo/UBERON_2001848;ventral hypohyal-urohyal joint; -http://purl.obolibrary.org/obo/UBERON_2001849;epihyal-branchiostegal ray joint; -http://purl.obolibrary.org/obo/UBERON_2001850;ceratohyal-branchiostegal ray joint; -http://purl.obolibrary.org/obo/UBERON_2001852;postcleithrum 1; -http://purl.obolibrary.org/obo/UBERON_2001853;postcleithrum 2; -http://purl.obolibrary.org/obo/UBERON_2001854;postcleithrum 3; -http://purl.obolibrary.org/obo/UBERON_2001855;hyomandibular condyle for the opercle;opercular process of hyomandibular -http://purl.obolibrary.org/obo/UBERON_2001856;gill ray; -http://purl.obolibrary.org/obo/UBERON_2001857;hyoidean artery; -http://purl.obolibrary.org/obo/UBERON_2001858;suprapharyngobranchial;branchial spiracle -http://purl.obolibrary.org/obo/UBERON_2001859;pharyngobranchial 1 tooth plate;pharyngobranchial 1 toothplate -http://purl.obolibrary.org/obo/UBERON_2001860;epibranchial 4-upper pharyngeal toothplate joint; -http://purl.obolibrary.org/obo/UBERON_2001861;epibranchial 3-pharyngobranchial 3 joint; -http://purl.obolibrary.org/obo/UBERON_2001862;epibranchial 3-pharyngobranchial 4 joint; -http://purl.obolibrary.org/obo/UBERON_2001863;inter-hypobranchial 3 joint; -http://purl.obolibrary.org/obo/UBERON_2001864;basibranchial 1 cartilage; -http://purl.obolibrary.org/obo/UBERON_2001865;basibranchial 4 cartilage; -http://purl.obolibrary.org/obo/UBERON_2001866;basibranchial 5 cartilage; -http://purl.obolibrary.org/obo/UBERON_2001867;post-ceratobranchial cartilage;basibranchial 6 -http://purl.obolibrary.org/obo/UBERON_2001867;post-ceratobranchial cartilage;copula 4 -http://purl.obolibrary.org/obo/UBERON_2001867;post-ceratobranchial cartilage;pericardial cartilage -http://purl.obolibrary.org/obo/UBERON_2001869;supraneural 2 cartilage; -http://purl.obolibrary.org/obo/UBERON_2001870;supraneural 3 cartilage; -http://purl.obolibrary.org/obo/UBERON_2001871;Weberian ossicle set; -http://purl.obolibrary.org/obo/UBERON_2001872;trunk sensory canal system; -http://purl.obolibrary.org/obo/UBERON_2001873;head sensory canal system;cephalic sensory canal system -http://purl.obolibrary.org/obo/UBERON_2001874;basibranchial 2 cartilage; -http://purl.obolibrary.org/obo/UBERON_2001875;opercular series; -http://purl.obolibrary.org/obo/UBERON_2001876;basibranchial 3 cartilage; -http://purl.obolibrary.org/obo/UBERON_2001877;neural arch 1; -http://purl.obolibrary.org/obo/UBERON_2001878;rib of vertebra 2; -http://purl.obolibrary.org/obo/UBERON_2001879;rib of vertebra 1; -http://purl.obolibrary.org/obo/UBERON_2001880;rib of vertebra 3; -http://purl.obolibrary.org/obo/UBERON_2001881;rib of vertebra 4; -http://purl.obolibrary.org/obo/UBERON_2001882;parapophysis + rib of vertebra 3; -http://purl.obolibrary.org/obo/UBERON_2001883;parapophysis + rib of vertebra 3 + rib of vertebra 4; -http://purl.obolibrary.org/obo/UBERON_2001884;accessory neural arch; -http://purl.obolibrary.org/obo/UBERON_2001885;neural spine 1; -http://purl.obolibrary.org/obo/UBERON_2001886;neural spine 2; -http://purl.obolibrary.org/obo/UBERON_2001887;neural spine 3; -http://purl.obolibrary.org/obo/UBERON_2001888;supraneural 1 bone; -http://purl.obolibrary.org/obo/UBERON_2001889;supraneural 1 cartilage; -http://purl.obolibrary.org/obo/UBERON_2001892;interhyal element;stylohyal element -http://purl.obolibrary.org/obo/UBERON_2001893;hypobranchial element; -http://purl.obolibrary.org/obo/UBERON_2001894;hypobranchial 1 element; -http://purl.obolibrary.org/obo/UBERON_2001895;hypobranchial 2 element; -http://purl.obolibrary.org/obo/UBERON_2001896;hypobranchial 3 element; -http://purl.obolibrary.org/obo/UBERON_2001897;hypobranchial 4 element; -http://purl.obolibrary.org/obo/UBERON_2001898;ceratobranchial element; -http://purl.obolibrary.org/obo/UBERON_2001899;ceratobranchial 1 element; -http://purl.obolibrary.org/obo/UBERON_2001900;ceratobranchial 2 element; -http://purl.obolibrary.org/obo/UBERON_2001901;ceratobranchial 3 element; -http://purl.obolibrary.org/obo/UBERON_2001902;ceratobranchial 4 element; -http://purl.obolibrary.org/obo/UBERON_2001903;ceratobranchial 5 element; -http://purl.obolibrary.org/obo/UBERON_2001904;epibranchial element;epibranchial elements -http://purl.obolibrary.org/obo/UBERON_2001905;epibranchial 1 element; -http://purl.obolibrary.org/obo/UBERON_2001906;epibranchial 2 element; -http://purl.obolibrary.org/obo/UBERON_2001907;epibranchial 3 element; -http://purl.obolibrary.org/obo/UBERON_2001908;epibranchial 4 element; -http://purl.obolibrary.org/obo/UBERON_2001909;pharyngobranchial element;infrapharyngobranchial element -http://purl.obolibrary.org/obo/UBERON_2001910;pharyngobranchial 1 element;infrapharyngobranchial 1 element -http://purl.obolibrary.org/obo/UBERON_2001911;pharyngobranchial 2 element;infrapharyngobranchial 2 element -http://purl.obolibrary.org/obo/UBERON_2001912;pharyngobranchial 3 element;infrapharyngobranchial 3 element -http://purl.obolibrary.org/obo/UBERON_2001913;pharyngobranchial 4 element;infrapharyngobranchial 4 element -http://purl.obolibrary.org/obo/UBERON_2001915;basibranchial 1 element; -http://purl.obolibrary.org/obo/UBERON_2001916;basibranchial 2 element; -http://purl.obolibrary.org/obo/UBERON_2001917;basibranchial 3 element; -http://purl.obolibrary.org/obo/UBERON_2001918;basibranchial 4 element; -http://purl.obolibrary.org/obo/UBERON_2001919;basibranchial 5 element; -http://purl.obolibrary.org/obo/UBERON_2001920;pseudotympanum;humeral hiatus -http://purl.obolibrary.org/obo/UBERON_2001921;adipose eyelid; -http://purl.obolibrary.org/obo/UBERON_2001922;inter-frontal joint;interfrontal suture -http://purl.obolibrary.org/obo/UBERON_2001923;aortic canal; -http://purl.obolibrary.org/obo/UBERON_2001924;occipital artery foramen; -http://purl.obolibrary.org/obo/UBERON_2001925;spiracular canal; -http://purl.obolibrary.org/obo/UBERON_2001926;posterior myodome; -http://purl.obolibrary.org/obo/UBERON_2001927;anterior myodome; -http://purl.obolibrary.org/obo/UBERON_2001928;articular fossa of opercle; -http://purl.obolibrary.org/obo/UBERON_2001929;epioccipital posterior process; -http://purl.obolibrary.org/obo/UBERON_2001930;accessory vomerine tooth plate; -http://purl.obolibrary.org/obo/UBERON_2001931;infranuchal scute; -http://purl.obolibrary.org/obo/UBERON_2001932;sensory canal tubular ossicle; -http://purl.obolibrary.org/obo/UBERON_2001933;sensory canal tubule; -http://purl.obolibrary.org/obo/UBERON_2001934;rostral plate; -http://purl.obolibrary.org/obo/UBERON_2001935;oral disk; -http://purl.obolibrary.org/obo/UBERON_2001936;posterior nasal barbel; -http://purl.obolibrary.org/obo/UBERON_2001937;anterior nasal barbel; -http://purl.obolibrary.org/obo/UBERON_2001938;maxillary barbel; -http://purl.obolibrary.org/obo/UBERON_2001939;inter-basipterygium joint;pelvic girdle symphysis -http://purl.obolibrary.org/obo/UBERON_2001939;inter-basipterygium joint;pelvic symphysis -http://purl.obolibrary.org/obo/UBERON_2001940;vertebra 4-vertebra 5 joint; -http://purl.obolibrary.org/obo/UBERON_2001941;orbitosphenoid-lateral ethmoid joint; -http://purl.obolibrary.org/obo/UBERON_2001942;autopalatine-maxillary joint; -http://purl.obolibrary.org/obo/UBERON_2001943;metapterygoid-autopalatine ligament; -http://purl.obolibrary.org/obo/UBERON_2001944;lateral ethmoid-autopalatine ligament; -http://purl.obolibrary.org/obo/UBERON_2001945;mesethmoid-premaxillary ligament; -http://purl.obolibrary.org/obo/UBERON_2001946;mesethmoid-maxillary ligament; -http://purl.obolibrary.org/obo/UBERON_2001947;hyomandibular-otic region joint; -http://purl.obolibrary.org/obo/UBERON_2001948;anal fin hook;anal-fin hook -http://purl.obolibrary.org/obo/UBERON_2001949;caudal fin hook;caudal-fin hook -http://purl.obolibrary.org/obo/UBERON_2001950;inter-premaxillary joint; -http://purl.obolibrary.org/obo/UBERON_2001951;skin flap; -http://purl.obolibrary.org/obo/UBERON_2001952;dentary tooth row; -http://purl.obolibrary.org/obo/UBERON_2001956;epibranchial 1 bone proximal cartilage;epibranchial 1 anterior cartilage -http://purl.obolibrary.org/obo/UBERON_2001956;epibranchial 1 bone proximal cartilage;epibranchial 1 mesial cartilage -http://purl.obolibrary.org/obo/UBERON_2001957;epibranchial 2 bone proximal cartilage;epibranchial 2 anterior cartilage -http://purl.obolibrary.org/obo/UBERON_2001957;epibranchial 2 bone proximal cartilage;epibranchial 2 mesial cartilage -http://purl.obolibrary.org/obo/UBERON_2001958;ceratobranchial 3 bone distal cartilage;ceratobranchial 3 bone lateral cartilage -http://purl.obolibrary.org/obo/UBERON_2001958;ceratobranchial 3 bone distal cartilage;ceratobranchial 3 bone posterior cartilage -http://purl.obolibrary.org/obo/UBERON_2001959;ceratobranchial 4 bone proximal cartilage;ceratobranchial 4 bone anterior cartilage -http://purl.obolibrary.org/obo/UBERON_2001959;ceratobranchial 4 bone proximal cartilage;ceratobranchial 4 bone mesial cartilage -http://purl.obolibrary.org/obo/UBERON_2001960;ceratobranchial 4 bone distal cartilage;ceratobranchial 4 bone lateral cartilage -http://purl.obolibrary.org/obo/UBERON_2001960;ceratobranchial 4 bone distal cartilage;ceratobranchial 4 bone posterior cartilage -http://purl.obolibrary.org/obo/UBERON_2001961;ceratobranchial 5 bone distal cartilage;ceratobranchial 5 bone lateral cartilage -http://purl.obolibrary.org/obo/UBERON_2001961;ceratobranchial 5 bone distal cartilage;ceratobranchial 5 bone posterior cartilage -http://purl.obolibrary.org/obo/UBERON_2001962;hypobranchial 1 bone distal cartilage;hypobranchial 1 bone lateral cartilage -http://purl.obolibrary.org/obo/UBERON_2001962;hypobranchial 1 bone distal cartilage;hypobranchial 1 bone posterior cartilage -http://purl.obolibrary.org/obo/UBERON_2001963;hypobranchial 2 bone distal cartilage;hypobranchial 2 bone lateral cartilage -http://purl.obolibrary.org/obo/UBERON_2001963;hypobranchial 2 bone distal cartilage;hypobranchial 2 bone posterior cartilage -http://purl.obolibrary.org/obo/UBERON_2001964;epibranchial 3 bone uncinate process cartilage; -http://purl.obolibrary.org/obo/UBERON_2001965;epibranchial 4 bone uncinate process cartilage; -http://purl.obolibrary.org/obo/UBERON_2001966;epibranchial 5 element; -http://purl.obolibrary.org/obo/UBERON_2001968;outer mental barbel; -http://purl.obolibrary.org/obo/UBERON_2001969;inner mental barbel; -http://purl.obolibrary.org/obo/UBERON_2001971;parapophysis 4; -http://purl.obolibrary.org/obo/UBERON_2001972;intercostal ligament; -http://purl.obolibrary.org/obo/UBERON_2001974;subtemporal fossa; -http://purl.obolibrary.org/obo/UBERON_2001975;suprabranchial artery; -http://purl.obolibrary.org/obo/UBERON_2001976;interorbital septum; -http://purl.obolibrary.org/obo/UBERON_2001977;pad;pads -http://purl.obolibrary.org/obo/UBERON_2001978;maxillary tooth row; -http://purl.obolibrary.org/obo/UBERON_2001979;hyomandibula-metapterygoid joint; -http://purl.obolibrary.org/obo/UBERON_2001980;vertebral element 6; -http://purl.obolibrary.org/obo/UBERON_2001981;vertebral element 7; -http://purl.obolibrary.org/obo/UBERON_2001982;vertebral element 8; -http://purl.obolibrary.org/obo/UBERON_2001983;centrum 1; -http://purl.obolibrary.org/obo/UBERON_2001984;centrum 2; -http://purl.obolibrary.org/obo/UBERON_2001985;centrum 3; -http://purl.obolibrary.org/obo/UBERON_2001986;centrum 4; -http://purl.obolibrary.org/obo/UBERON_2001987;centrum 5; -http://purl.obolibrary.org/obo/UBERON_2001988;centrum 6; -http://purl.obolibrary.org/obo/UBERON_2001989;mandibular-hyoid median cartilage;hyomandibular cartilage sensu Schaefer (1990) -http://purl.obolibrary.org/obo/UBERON_2001990;epibranchial arborescent organ;suprabranchial organ -http://purl.obolibrary.org/obo/UBERON_2001991;lateral bone; -http://purl.obolibrary.org/obo/UBERON_2001992;branched anal fin ray;anal fin branched ray -http://purl.obolibrary.org/obo/UBERON_2001993;branched pectoral fin ray;pectoral fin branched ray -http://purl.obolibrary.org/obo/UBERON_2001994;gill raker row; -http://purl.obolibrary.org/obo/UBERON_2001995;papilla;papillae -http://purl.obolibrary.org/obo/UBERON_2001996;maxillary canal; -http://purl.obolibrary.org/obo/UBERON_2001997;parietal-supraoccipital;parieto-supraoccipital -http://purl.obolibrary.org/obo/UBERON_2001998;posttemporal-supracleithrum;postemporo-supracleithrum -http://purl.obolibrary.org/obo/UBERON_2001998;posttemporal-supracleithrum;posttemporo-supracleithrum -http://purl.obolibrary.org/obo/UBERON_2001999;posterior cleithral process;humeral process -http://purl.obolibrary.org/obo/UBERON_2001999;posterior cleithral process;postcleithral process -http://purl.obolibrary.org/obo/UBERON_2002000;posterior dentation of pectoral fin spine;pectoral fin spine posterior dentation -http://purl.obolibrary.org/obo/UBERON_2002000;posterior dentation of pectoral fin spine;posterior denticle of pectoral fin spine -http://purl.obolibrary.org/obo/UBERON_2002000;posterior dentation of pectoral fin spine;posterior serration of pectoral fin spine -http://purl.obolibrary.org/obo/UBERON_2002000;posterior dentation of pectoral fin spine;posterior thorn of pectoral fin spine -http://purl.obolibrary.org/obo/UBERON_2002000;posterior dentation of pectoral fin spine;posterior tooth of pectoral fin spine -http://purl.obolibrary.org/obo/UBERON_2002001;anterior dentation of pectoral fin spine; -http://purl.obolibrary.org/obo/UBERON_2002002;anterior distal serration of pectoral fin spine; -http://purl.obolibrary.org/obo/UBERON_2002003;posterior dentation of dorsal fin spine 2;dorsal fin spine 2 posterior dentation -http://purl.obolibrary.org/obo/UBERON_2002003;posterior dentation of dorsal fin spine 2;posterior denticle of dorsal fin spine 2 -http://purl.obolibrary.org/obo/UBERON_2002003;posterior dentation of dorsal fin spine 2;posterior serration of dorsal fin spine 2 -http://purl.obolibrary.org/obo/UBERON_2002003;posterior dentation of dorsal fin spine 2;posterior thorn of dorsal fin spine 2 -http://purl.obolibrary.org/obo/UBERON_2002003;posterior dentation of dorsal fin spine 2;posterior tooth of dorsal fin spine 2 -http://purl.obolibrary.org/obo/UBERON_2002004;anterior dentation of dorsal fin spine 2;anterior denticle of dorsal fin spine 2 -http://purl.obolibrary.org/obo/UBERON_2002004;anterior dentation of dorsal fin spine 2;anterior serration of dorsal fin spine 2 -http://purl.obolibrary.org/obo/UBERON_2002004;anterior dentation of dorsal fin spine 2;anterior thorn of dorsal fin spine 2 -http://purl.obolibrary.org/obo/UBERON_2002004;anterior dentation of dorsal fin spine 2;anterior tooth of dorsal fin spine 2 -http://purl.obolibrary.org/obo/UBERON_2002004;anterior dentation of dorsal fin spine 2;dorsal fin spine 2 anterior dentation -http://purl.obolibrary.org/obo/UBERON_2002005;canal plate; -http://purl.obolibrary.org/obo/UBERON_2002006;axillary pore; -http://purl.obolibrary.org/obo/UBERON_2002007;supraneural 4 bone; -http://purl.obolibrary.org/obo/UBERON_2002008;neural lamina; -http://purl.obolibrary.org/obo/UBERON_2002009;medial cartilage of palatine; -http://purl.obolibrary.org/obo/UBERON_2002010;hyoideomandibular nerve; -http://purl.obolibrary.org/obo/UBERON_2002011;lateral fontanel of frontal; -http://purl.obolibrary.org/obo/UBERON_2002012;dentary foramen; -http://purl.obolibrary.org/obo/UBERON_2002013;ascending limb of ceratobranchial 5 bone; -http://purl.obolibrary.org/obo/UBERON_2002014;ascending limb of ceratobranchial 5 cartilage; -http://purl.obolibrary.org/obo/UBERON_2002015;pharyngobranchial tooth plate;pharyngobranchial toothplate -http://purl.obolibrary.org/obo/UBERON_2002016;pharyngobranchial 4 tooth plate;pharyngobranchial 4 toothplate -http://purl.obolibrary.org/obo/UBERON_2002017;anterior limb of ceratobranchial 5 bone; -http://purl.obolibrary.org/obo/UBERON_2002018;anterior limb of ceratobranchial 5 cartilage; -http://purl.obolibrary.org/obo/UBERON_2002019;pterotic-posttemporal-supracleithrum;pterotic-supracleithrum -http://purl.obolibrary.org/obo/UBERON_2002020;hypomaxilla; -http://purl.obolibrary.org/obo/UBERON_2002021;ascending process of the parasphenoid;ascending ramus of the parasphenoid -http://purl.obolibrary.org/obo/UBERON_2002022;dermethmoid; -http://purl.obolibrary.org/obo/UBERON_2002023;second preethmoid bone; -http://purl.obolibrary.org/obo/UBERON_2002024;mental barbel; -http://purl.obolibrary.org/obo/UBERON_2002026;pectoral fin proximal radial bone 1;first pectoral basal radial -http://purl.obolibrary.org/obo/UBERON_2002027;pectoral fin proximal radial bone 2;second pectoral basal radial -http://purl.obolibrary.org/obo/UBERON_2002028;pectoral fin proximal radial bone 3;third pectoral basal radial -http://purl.obolibrary.org/obo/UBERON_2002029;pectoral fin proximal radial bone 4;fourth pectoral basal radial -http://purl.obolibrary.org/obo/UBERON_2002030;ventral keel of coracoid; -http://purl.obolibrary.org/obo/UBERON_2002031;orbital foramen; -http://purl.obolibrary.org/obo/UBERON_2002032;lateral ethmoid-frontal joint; -http://purl.obolibrary.org/obo/UBERON_2002033;prootic-pterosphenoid joint; -http://purl.obolibrary.org/obo/UBERON_2002034;prootic-exoccipital joint; -http://purl.obolibrary.org/obo/UBERON_2002038;basioccipital-exoccipital joint; -http://purl.obolibrary.org/obo/UBERON_2002039;dilatator fossa; -http://purl.obolibrary.org/obo/UBERON_2002040;inter-coracoid joint; -http://purl.obolibrary.org/obo/UBERON_2002041;parapophysis 6; -http://purl.obolibrary.org/obo/UBERON_2002042;parapophysis 5; -http://purl.obolibrary.org/obo/UBERON_2002043;posterior limb of parapophysis 4;posterior branch of parapophysis 4 -http://purl.obolibrary.org/obo/UBERON_2002043;posterior limb of parapophysis 4;posterior wing of parapophysis 4 -http://purl.obolibrary.org/obo/UBERON_2002044;anterior limb of parapophysis 4;Mullerian ramus -http://purl.obolibrary.org/obo/UBERON_2002044;anterior limb of parapophysis 4;Müllerian ramus -http://purl.obolibrary.org/obo/UBERON_2002044;anterior limb of parapophysis 4;anterior branch of parapophysis 4 -http://purl.obolibrary.org/obo/UBERON_2002044;anterior limb of parapophysis 4;anterior wing of parapophysis 4 -http://purl.obolibrary.org/obo/UBERON_2002051;scale circulus;circuli -http://purl.obolibrary.org/obo/UBERON_2002051;scale circulus;crétule -http://purl.obolibrary.org/obo/UBERON_2002052;prootic depression; -http://purl.obolibrary.org/obo/UBERON_2002053;bony plate;armor -http://purl.obolibrary.org/obo/UBERON_2002053;bony plate;armor plate -http://purl.obolibrary.org/obo/UBERON_2002053;bony plate;osteoderms -http://purl.obolibrary.org/obo/UBERON_2002054;vertebra 5-vertebra 6 joint; -http://purl.obolibrary.org/obo/UBERON_2002055;vertebra 6 - vertebra 7 joint; -http://purl.obolibrary.org/obo/UBERON_2002056;hypural 6; -http://purl.obolibrary.org/obo/UBERON_2002057;gill opening;branchial aperture -http://purl.obolibrary.org/obo/UBERON_2002057;gill opening;branchial opening -http://purl.obolibrary.org/obo/UBERON_2002057;gill opening;gill aperture -http://purl.obolibrary.org/obo/UBERON_2002057;gill opening;opercular opening -http://purl.obolibrary.org/obo/UBERON_2002058;Weberian complex centrum; -http://purl.obolibrary.org/obo/UBERON_2002059;posttemporal-parietal joint; -http://purl.obolibrary.org/obo/UBERON_2002061;predorsal vertebra; -http://purl.obolibrary.org/obo/UBERON_2002062;branched caudal fin ray; -http://purl.obolibrary.org/obo/UBERON_2002063;nuchal plate series; -http://purl.obolibrary.org/obo/UBERON_2002064;uroneural 1; -http://purl.obolibrary.org/obo/UBERON_2002065;ural centrum 1; -http://purl.obolibrary.org/obo/UBERON_2002066;auditory fenestra; -http://purl.obolibrary.org/obo/UBERON_2002067;upper hypural set;upper hypurals -http://purl.obolibrary.org/obo/UBERON_2002068;lower hypural set;lower hypurals -http://purl.obolibrary.org/obo/UBERON_2002069;distal cartilage of posterior process of basipterygium; -http://purl.obolibrary.org/obo/UBERON_2002070;internal anterior process of basipterygium;internal anterior arm of basipterygium -http://purl.obolibrary.org/obo/UBERON_2002070;internal anterior process of basipterygium;internal arm of the basipterygium -http://purl.obolibrary.org/obo/UBERON_2002070;internal anterior process of basipterygium;mesial anterior arm of basipterygium -http://purl.obolibrary.org/obo/UBERON_2002070;internal anterior process of basipterygium;mesial anterior process of basipterygium -http://purl.obolibrary.org/obo/UBERON_2002071;distal cartilage of internal anterior process of basipterygium; -http://purl.obolibrary.org/obo/UBERON_2002072;middle anterior process of basipterygium;middle anterior arm of basipterygium -http://purl.obolibrary.org/obo/UBERON_2002073;distal cartilage of middle anterior process of basipterygium; -http://purl.obolibrary.org/obo/UBERON_2002074;external anterior process of basipterygium;external anterior arm of basipterygium -http://purl.obolibrary.org/obo/UBERON_2002074;external anterior process of basipterygium;external arm of basipterygium -http://purl.obolibrary.org/obo/UBERON_2002074;external anterior process of basipterygium;lateral anterior process of basipterygium -http://purl.obolibrary.org/obo/UBERON_2002074;external anterior process of basipterygium;lateral pelvic process -http://purl.obolibrary.org/obo/UBERON_2002075;distal cartilage of external anterior process of basipterygium; -http://purl.obolibrary.org/obo/UBERON_2002076;lateral process of basipterygium;posterolateral process of basipterygium -http://purl.obolibrary.org/obo/UBERON_2002077;lateropterygium; -http://purl.obolibrary.org/obo/UBERON_2002078;hypural plate; -http://purl.obolibrary.org/obo/UBERON_2002079;leptocephalous larva; -http://purl.obolibrary.org/obo/UBERON_2002080;spina occipitalis; -http://purl.obolibrary.org/obo/UBERON_2002082;basal fulcrum;basal fulcra -http://purl.obolibrary.org/obo/UBERON_2002083;fringing fulcrum;fringing fulcra -http://purl.obolibrary.org/obo/UBERON_2002084;pleurostyle; -http://purl.obolibrary.org/obo/UBERON_2002085;ural centrum; -http://purl.obolibrary.org/obo/UBERON_2002086;pelvic axillary process; -http://purl.obolibrary.org/obo/UBERON_2002087;pectoral axillary process; -http://purl.obolibrary.org/obo/UBERON_2002088;interhaemal bone; -http://purl.obolibrary.org/obo/UBERON_2002089;gular plate;median gular -http://purl.obolibrary.org/obo/UBERON_2002089;gular plate;median gular plate -http://purl.obolibrary.org/obo/UBERON_2002090;pro-otic fossa;prootic fossa -http://purl.obolibrary.org/obo/UBERON_2002091;median caudal cartilage; -http://purl.obolibrary.org/obo/UBERON_2002092;rostral cartilage; -http://purl.obolibrary.org/obo/UBERON_2002094;dorsal fin pterygiophore 1; -http://purl.obolibrary.org/obo/UBERON_2002095;ventromedial opening of posttemporal fossa;third posttemporal fossa -http://purl.obolibrary.org/obo/UBERON_2002096;bony plate series;armor plate series -http://purl.obolibrary.org/obo/UBERON_2002097;sensory canal pore series; -http://purl.obolibrary.org/obo/UBERON_2002098;hemal spine series; -http://purl.obolibrary.org/obo/UBERON_2002099;lateral line scale series; -http://purl.obolibrary.org/obo/UBERON_2002101;branchiostegal ray series; -http://purl.obolibrary.org/obo/UBERON_2002102;epibranchial series;epibranchials -http://purl.obolibrary.org/obo/UBERON_2002103;ceratobranchial series; -http://purl.obolibrary.org/obo/UBERON_2002105;electrosensory lateral line lobe;ELL -http://purl.obolibrary.org/obo/UBERON_2002106;eminentia granularis;EG -http://purl.obolibrary.org/obo/UBERON_2002107;medullary command nucleus;MCN -http://purl.obolibrary.org/obo/UBERON_2002107;medullary command nucleus;medullary pacemaker nucleus -http://purl.obolibrary.org/obo/UBERON_2002107;medullary command nucleus;pacemaker nucleus -http://purl.obolibrary.org/obo/UBERON_2002108;buccal papilla; -http://purl.obolibrary.org/obo/UBERON_2002109;uroneural 2; -http://purl.obolibrary.org/obo/UBERON_2002110;metapterygoid-quadrate fenestra; -http://purl.obolibrary.org/obo/UBERON_2002111;prootic bulla; -http://purl.obolibrary.org/obo/UBERON_2002112;preural 3 vertebra;preural centrum 3 -http://purl.obolibrary.org/obo/UBERON_2002112;preural 3 vertebra;pu3 -http://purl.obolibrary.org/obo/UBERON_2002114;cotylephore;cotylephores -http://purl.obolibrary.org/obo/UBERON_2002115;uroneural 3; -http://purl.obolibrary.org/obo/UBERON_2002116;epibranchial organ; -http://purl.obolibrary.org/obo/UBERON_2002117;ovipositor; -http://purl.obolibrary.org/obo/UBERON_2002118;scale radius;radii -http://purl.obolibrary.org/obo/UBERON_2002119;dermal scale focus; -http://purl.obolibrary.org/obo/UBERON_2002120;orbitosphenoid septum; -http://purl.obolibrary.org/obo/UBERON_2002122;pouch scale; -http://purl.obolibrary.org/obo/UBERON_2002123;neural arch 5; -http://purl.obolibrary.org/obo/UBERON_2002124;nuptial tubercle;breeding tubercle -http://purl.obolibrary.org/obo/UBERON_2002124;nuptial tubercle;contact organ -http://purl.obolibrary.org/obo/UBERON_2002125;caudal-fin organ;caudal fin organ -http://purl.obolibrary.org/obo/UBERON_2002125;caudal-fin organ;caudal sac -http://purl.obolibrary.org/obo/UBERON_2002126;caudal-fin ray pump; -http://purl.obolibrary.org/obo/UBERON_2002127;myorhabdoid bone;myorhabdoi -http://purl.obolibrary.org/obo/UBERON_2002128;cavum sinus imparis;cavum sinus impar -http://purl.obolibrary.org/obo/UBERON_2002129;caudal rod;hypural-opisthural rod -http://purl.obolibrary.org/obo/UBERON_2002130;caudal appendage;caudal filament -http://purl.obolibrary.org/obo/UBERON_2002132;hypural 7; -http://purl.obolibrary.org/obo/UBERON_2002133;dorsal organ; -http://purl.obolibrary.org/obo/UBERON_2002141;annular ligament; -http://purl.obolibrary.org/obo/UBERON_2002145;anterior swim bladder bud; -http://purl.obolibrary.org/obo/UBERON_2002147;arrector muscle; -http://purl.obolibrary.org/obo/UBERON_2002149;vertebral element 9; -http://purl.obolibrary.org/obo/UBERON_2002150;vertebral element 10; -http://purl.obolibrary.org/obo/UBERON_2002151;vertebral element 11; -http://purl.obolibrary.org/obo/UBERON_2002152;vertebral element 12; -http://purl.obolibrary.org/obo/UBERON_2002154;opercular cavity; -http://purl.obolibrary.org/obo/UBERON_2002159;caudal basal fulcrum;caudal basal fulcra -http://purl.obolibrary.org/obo/UBERON_2002160;ural centrum 3; -http://purl.obolibrary.org/obo/UBERON_2002161;ural centrum 4; -http://purl.obolibrary.org/obo/UBERON_2002162;ural vertebra; -http://purl.obolibrary.org/obo/UBERON_2002163;ural vertebra 1; -http://purl.obolibrary.org/obo/UBERON_2002164;caudal principal ray set;branched caudal rays -http://purl.obolibrary.org/obo/UBERON_2002164;caudal principal ray set;caudal principal lepidotrichia -http://purl.obolibrary.org/obo/UBERON_2002165;caudal procurrent ray set;caudal precurrent rays -http://purl.obolibrary.org/obo/UBERON_2002165;caudal procurrent ray set;caudal spiny rays -http://purl.obolibrary.org/obo/UBERON_2002165;caudal procurrent ray set;rudimentary rays -http://purl.obolibrary.org/obo/UBERON_2002166;pseudourostyle; -http://purl.obolibrary.org/obo/UBERON_2002167;stegural; -http://purl.obolibrary.org/obo/UBERON_2002168;preural centrum 1 + ural centrum 1 + ural centrum 2; -http://purl.obolibrary.org/obo/UBERON_2002172;branchial mesenchyme; -http://purl.obolibrary.org/obo/UBERON_2002174;octaval nerve motor nucleus; -http://purl.obolibrary.org/obo/UBERON_2002175;rostral octaval nerve motor nucleus;ROLE -http://purl.obolibrary.org/obo/UBERON_2002175;rostral octaval nerve motor nucleus;rostral cranial nerve VIII motor nucleus -http://purl.obolibrary.org/obo/UBERON_2002176;caudal octaval nerve motor nucleus; -http://purl.obolibrary.org/obo/UBERON_2002185;climbing fiber; -http://purl.obolibrary.org/obo/UBERON_2002192;dorsolateral motor nucleus of vagal nerve;dlX -http://purl.obolibrary.org/obo/UBERON_2002193;dorsolateral septum; -http://purl.obolibrary.org/obo/UBERON_2002195;epidermal placode; -http://purl.obolibrary.org/obo/UBERON_2002200;hypobranchial muscle; -http://purl.obolibrary.org/obo/UBERON_2002202;intermediate nucleus; -http://purl.obolibrary.org/obo/UBERON_2002206;macula communis; -http://purl.obolibrary.org/obo/UBERON_2002207;medial motor nucleus of vagal nerve;mmX -http://purl.obolibrary.org/obo/UBERON_2002210;mossy fiber; -http://purl.obolibrary.org/obo/UBERON_2002214;os suspensorium medial flange; -http://purl.obolibrary.org/obo/UBERON_2002215;otic vesicle protrusion; -http://purl.obolibrary.org/obo/UBERON_2002216;otic vesicle ventral protrusion; -http://purl.obolibrary.org/obo/UBERON_2002217;parasphenoid-pterosphenoid joint; -http://purl.obolibrary.org/obo/UBERON_2002218;parallel fiber;parallel fibers -http://purl.obolibrary.org/obo/UBERON_2002219;parvocellular preoptic nucleus; -http://purl.obolibrary.org/obo/UBERON_2002221;pericardial muscle; -http://purl.obolibrary.org/obo/UBERON_2002223;pillar of the semicircular canal; -http://purl.obolibrary.org/obo/UBERON_2002224;pleuroperitoneal cavity; -http://purl.obolibrary.org/obo/UBERON_2002225;posterior pronephric duct;posterior pronephric ducts -http://purl.obolibrary.org/obo/UBERON_2002226;preglomerular nucleus; -http://purl.obolibrary.org/obo/UBERON_2002229;presumptive atrium primitive heart tube; -http://purl.obolibrary.org/obo/UBERON_2002232;presumptive cardiac ventricle primitive heart tube; -http://purl.obolibrary.org/obo/UBERON_2002235;presumptive ventral mesoderm; -http://purl.obolibrary.org/obo/UBERON_2002240;Purkinje cell layer corpus cerebelli; -http://purl.obolibrary.org/obo/UBERON_2002241;Purkinje cell layer valvula cerebelli; -http://purl.obolibrary.org/obo/UBERON_2002242;scale primordium; -http://purl.obolibrary.org/obo/UBERON_2002244;supraoptic tract;SOT -http://purl.obolibrary.org/obo/UBERON_2002248;supratemporal commissure; -http://purl.obolibrary.org/obo/UBERON_2002249;ctenius;ctenii -http://purl.obolibrary.org/obo/UBERON_2002250;epural 2; -http://purl.obolibrary.org/obo/UBERON_2002251;epural 3; -http://purl.obolibrary.org/obo/UBERON_2002252;epural 1; -http://purl.obolibrary.org/obo/UBERON_2002255;ocular side;eyed side -http://purl.obolibrary.org/obo/UBERON_2002256;blind side; -http://purl.obolibrary.org/obo/UBERON_2002257;premaxilla dentigerous process;premaxilla alveolar process -http://purl.obolibrary.org/obo/UBERON_2002258;trituration tooth; -http://purl.obolibrary.org/obo/UBERON_2002260;premaxillary-maxillary joint; -http://purl.obolibrary.org/obo/UBERON_2002261;dorsal fin spine; -http://purl.obolibrary.org/obo/UBERON_2002262;anal fin spine; -http://purl.obolibrary.org/obo/UBERON_2002263;epineural 1; -http://purl.obolibrary.org/obo/UBERON_2002264;epineural 2; -http://purl.obolibrary.org/obo/UBERON_2002265;epineural 3; -http://purl.obolibrary.org/obo/UBERON_2002266;epineural 4; -http://purl.obolibrary.org/obo/UBERON_2002267;epineural 5; -http://purl.obolibrary.org/obo/UBERON_2002268;epineural 6; -http://purl.obolibrary.org/obo/UBERON_2002269;interarcual cartilage;IAC -http://purl.obolibrary.org/obo/UBERON_2002270;pelvic fin spine;pelvic spine -http://purl.obolibrary.org/obo/UBERON_2002271;ventral caudal procurrent ray 2; -http://purl.obolibrary.org/obo/UBERON_2002272;ventral caudal procurrent ray 1; -http://purl.obolibrary.org/obo/UBERON_2002273;ctenoid scale; -http://purl.obolibrary.org/obo/UBERON_2002274;transforming ctenoid scale; -http://purl.obolibrary.org/obo/UBERON_2002275;Jakubowski's organ; -http://purl.obolibrary.org/obo/UBERON_2002277;pectoral fin distal radial bone 1; -http://purl.obolibrary.org/obo/UBERON_2002279;pectoral fin distal radial bone 2; -http://purl.obolibrary.org/obo/UBERON_2002280;pectoral fin distal radial bone 3; -http://purl.obolibrary.org/obo/UBERON_2002281;retractor posttemporalis; -http://purl.obolibrary.org/obo/UBERON_2002282;preopercle-opercle joint; -http://purl.obolibrary.org/obo/UBERON_2002283;melanophore spot;spot -http://purl.obolibrary.org/obo/UBERON_2002283;melanophore spot;spots -http://purl.obolibrary.org/obo/UBERON_2002284;body marking;markings -http://purl.obolibrary.org/obo/UBERON_2002285;cycloid scale; -http://purl.obolibrary.org/obo/UBERON_2002291;fulcrum; -http://purl.obolibrary.org/obo/UBERON_2002292;epaxial basal fulcrum;dorsal basal fulcrum -http://purl.obolibrary.org/obo/UBERON_2002293;hypaxial basal fulcrum;hypaxial basal fulcra -http://purl.obolibrary.org/obo/UBERON_2002293;hypaxial basal fulcrum;ventral basal fulcra -http://purl.obolibrary.org/obo/UBERON_2002293;hypaxial basal fulcrum;ventral basal fulcrum -http://purl.obolibrary.org/obo/UBERON_2002294;fish scute;ridge scale -http://purl.obolibrary.org/obo/UBERON_2005000;basal communicating artery;BCA -http://purl.obolibrary.org/obo/UBERON_2005010;mid cerebral vein;MCeV -http://purl.obolibrary.org/obo/UBERON_2005010;mid cerebral vein;mid-cerebral vein -http://purl.obolibrary.org/obo/UBERON_2005010;mid cerebral vein;middle cerebral vein -http://purl.obolibrary.org/obo/UBERON_2005011;pseudobranchial artery; -http://purl.obolibrary.org/obo/UBERON_2005012;afferent filamental artery;AFA -http://purl.obolibrary.org/obo/UBERON_2005012;afferent filamental artery;afferent filamental arteries -http://purl.obolibrary.org/obo/UBERON_2005013;concurrent branch afferent branchial artery;CCB -http://purl.obolibrary.org/obo/UBERON_2005014;recurrent branch afferent branchial artery;RCB -http://purl.obolibrary.org/obo/UBERON_2005014;recurrent branch afferent branchial artery;recurrent branch afferent branchial arteries -http://purl.obolibrary.org/obo/UBERON_2005015;afferent lamellar arteriole;AFL -http://purl.obolibrary.org/obo/UBERON_2005015;afferent lamellar arteriole;afferent lamellar arterioles -http://purl.obolibrary.org/obo/UBERON_2005017;primordial midbrain channel;PMBC -http://purl.obolibrary.org/obo/UBERON_2005018;efferent filamental artery;EFA -http://purl.obolibrary.org/obo/UBERON_2005019;efferent lamellar arteriole;ELA -http://purl.obolibrary.org/obo/UBERON_2005019;efferent lamellar arteriole;efferent lamellar arterioles -http://purl.obolibrary.org/obo/UBERON_2005020;central artery;CtA -http://purl.obolibrary.org/obo/UBERON_2005021;cerebellar central artery;CCtA -http://purl.obolibrary.org/obo/UBERON_2005022;opercular artery;ORA -http://purl.obolibrary.org/obo/UBERON_2005025;dorsal longitudinal anastomotic vessel;DLAV -http://purl.obolibrary.org/obo/UBERON_2005026;primary head sinus;PHS -http://purl.obolibrary.org/obo/UBERON_2005026;primary head sinus;lateral head vein -http://purl.obolibrary.org/obo/UBERON_2005027;posterior cerebral vein;PCeV -http://purl.obolibrary.org/obo/UBERON_2005027;posterior cerebral vein;caudal cerebral vein -http://purl.obolibrary.org/obo/UBERON_2005029;rostral blood island;RBI -http://purl.obolibrary.org/obo/UBERON_2005030;dorsal ciliary vein;DCV -http://purl.obolibrary.org/obo/UBERON_2005031;dorsal longitudinal vein;DLV -http://purl.obolibrary.org/obo/UBERON_2005032;optic vein;OV -http://purl.obolibrary.org/obo/UBERON_2005034;parachordal vessel;PAV -http://purl.obolibrary.org/obo/UBERON_2005036;supraintestinal artery;SIA -http://purl.obolibrary.org/obo/UBERON_2005038;supraintestinal vein; -http://purl.obolibrary.org/obo/UBERON_2005039;anterior lateral mesoderm; -http://purl.obolibrary.org/obo/UBERON_2005044;optic artery; -http://purl.obolibrary.org/obo/UBERON_2005048;primitive prosencephalic artery;PPrA -http://purl.obolibrary.org/obo/UBERON_2005049;prosencephalic artery;PrA -http://purl.obolibrary.org/obo/UBERON_2005050;palatocerebral artery;PLA -http://purl.obolibrary.org/obo/UBERON_2005051;communicating vessel palatocerebral artery;CMV -http://purl.obolibrary.org/obo/UBERON_2005051;communicating vessel palatocerebral artery;communicating vessels -http://purl.obolibrary.org/obo/UBERON_2005052;anterior mesencephalic central artery;AMCtA -http://purl.obolibrary.org/obo/UBERON_2005052;anterior mesencephalic central artery;rostral mesencephalic central artery -http://purl.obolibrary.org/obo/UBERON_2005053;nasal ciliary artery;NCA -http://purl.obolibrary.org/obo/UBERON_2005054;inner optic circle;IOC -http://purl.obolibrary.org/obo/UBERON_2005055;median palatocerebral vein;MPLV -http://purl.obolibrary.org/obo/UBERON_2005056;palatocerebral vein;PLV -http://purl.obolibrary.org/obo/UBERON_2005066;bulbus arteriosus outer layer;bulbus arteriosus externa -http://purl.obolibrary.org/obo/UBERON_2005067;bulbus arteriosus middle layer;bulbus arteriosus media -http://purl.obolibrary.org/obo/UBERON_2005068;bulbus arteriosus inner layer;bulbus arteriosus intima -http://purl.obolibrary.org/obo/UBERON_2005072;endocardial ring; -http://purl.obolibrary.org/obo/UBERON_2005073;atrioventricular ring;AV ring -http://purl.obolibrary.org/obo/UBERON_2005074;central cardiac conduction system; -http://purl.obolibrary.org/obo/UBERON_2005075;peripheral cardiac conduction system; -http://purl.obolibrary.org/obo/UBERON_2005078;middle mesencephalic central artery;MMCtA -http://purl.obolibrary.org/obo/UBERON_2005079;posterior mesencephalic central artery;PMCtA -http://purl.obolibrary.org/obo/UBERON_2005079;posterior mesencephalic central artery;caudal mesencephalic central artery -http://purl.obolibrary.org/obo/UBERON_2005080;anterior mesenteric artery;AMA -http://purl.obolibrary.org/obo/UBERON_2005080;anterior mesenteric artery;rostral mesenteric artery -http://purl.obolibrary.org/obo/UBERON_2005082;dorsal branch nasal ciliary artery; -http://purl.obolibrary.org/obo/UBERON_2005083;ventral branch nasal ciliary artery; -http://purl.obolibrary.org/obo/UBERON_2005084;metencephalic artery; -http://purl.obolibrary.org/obo/UBERON_2005085;nasal artery;NA -http://purl.obolibrary.org/obo/UBERON_2005087;pectoral vein;PV -http://purl.obolibrary.org/obo/UBERON_2005088;posterior mesenteric artery;PMA -http://purl.obolibrary.org/obo/UBERON_2005088;posterior mesenteric artery;caudal mesenteric artery -http://purl.obolibrary.org/obo/UBERON_2005089;swim bladder artery;SBA -http://purl.obolibrary.org/obo/UBERON_2005093;nasal vein;NV -http://purl.obolibrary.org/obo/UBERON_2005097;caudal fin vasculature; -http://purl.obolibrary.org/obo/UBERON_2005098;central ray artery; -http://purl.obolibrary.org/obo/UBERON_2005099;ray vein; -http://purl.obolibrary.org/obo/UBERON_2005100;intervessel commissure;intervessel comisures -http://purl.obolibrary.org/obo/UBERON_2005101;interray vessel;interray vessels -http://purl.obolibrary.org/obo/UBERON_2005102;presumptive median fin fold;presumptive median fin-fold -http://purl.obolibrary.org/obo/UBERON_2005103;presumptive ventral fin fold;presumptive ventral fin-fold -http://purl.obolibrary.org/obo/UBERON_2005104;presumptive dorsal fin fold;presumptive dorsal fin-fold -http://purl.obolibrary.org/obo/UBERON_2005106;longitudinal lateral lymphatic vessel;LLL -http://purl.obolibrary.org/obo/UBERON_2005113;dorsal lateral line neuromast;neuromast dorsal -http://purl.obolibrary.org/obo/UBERON_2005114;middle lateral line system; -http://purl.obolibrary.org/obo/UBERON_2005115;primary posterior lateral line primordium;primI -http://purl.obolibrary.org/obo/UBERON_2005115;primary posterior lateral line primordium;primary posterior lateral line primordia -http://purl.obolibrary.org/obo/UBERON_2005116;secondary posterior lateral line primordium;secondary posterior lateral line primordia -http://purl.obolibrary.org/obo/UBERON_2005117;anterior lateral line primordium;anterior lateral line primordia -http://purl.obolibrary.org/obo/UBERON_2005118;middle lateral line primordium;middle lateral line primordia -http://purl.obolibrary.org/obo/UBERON_2005119;barbel primordium;barbel primordia -http://purl.obolibrary.org/obo/UBERON_2005121;middle lateral line placode; -http://purl.obolibrary.org/obo/UBERON_2005122;dorsal axial hypoblast; -http://purl.obolibrary.org/obo/UBERON_2005126;intestinal bulb epithelium; -http://purl.obolibrary.org/obo/UBERON_2005135;primary dental epithelium;pharyngeal tooth epithelium -http://purl.obolibrary.org/obo/UBERON_2005135;primary dental epithelium;primary tooth epithelium -http://purl.obolibrary.org/obo/UBERON_2005144;ampullary nerve; -http://purl.obolibrary.org/obo/UBERON_2005149;distal epidermal cap of regenerating fin/limb; -http://purl.obolibrary.org/obo/UBERON_2005150;basal regeneration epithelium of regenerating fin/limb;basal wound epidermis -http://purl.obolibrary.org/obo/UBERON_2005170;extrahepatic duct; -http://purl.obolibrary.org/obo/UBERON_2005174;ventral liver lobe;3rd lobe -http://purl.obolibrary.org/obo/UBERON_2005174;ventral liver lobe;third lobe -http://purl.obolibrary.org/obo/UBERON_2005219;choroid plexus vascular circuit;CVC -http://purl.obolibrary.org/obo/UBERON_2005220;larval melanophore stripe; -http://purl.obolibrary.org/obo/UBERON_2005221;dorsal larval melanophore stripe; -http://purl.obolibrary.org/obo/UBERON_2005222;ventral larval melanophore stripe; -http://purl.obolibrary.org/obo/UBERON_2005223;lateral larval melanophore stripe; -http://purl.obolibrary.org/obo/UBERON_2005224;yolk larval melanophore stripe; -http://purl.obolibrary.org/obo/UBERON_2005225;median fin radial bone;actinophore -http://purl.obolibrary.org/obo/UBERON_2005225;median fin radial bone;actinoste -http://purl.obolibrary.org/obo/UBERON_2005225;median fin radial bone;axonoste -http://purl.obolibrary.org/obo/UBERON_2005225;median fin radial bone;ptrygiophore -http://purl.obolibrary.org/obo/UBERON_2005226;median fin proximal radial bone;basoste -http://purl.obolibrary.org/obo/UBERON_2005226;median fin proximal radial bone;ptrygiophore proximal -http://purl.obolibrary.org/obo/UBERON_2005227;protoneuromast; -http://purl.obolibrary.org/obo/UBERON_2005245;inter-parietal joint; -http://purl.obolibrary.org/obo/UBERON_2005248;trans-choroid plexus branch;TCB -http://purl.obolibrary.org/obo/UBERON_2005256;intervillus pockets; -http://purl.obolibrary.org/obo/UBERON_2005259;continuous capillary;continuous blood vessel endothelium -http://purl.obolibrary.org/obo/UBERON_2005259;continuous capillary;continuous capillary vessel -http://purl.obolibrary.org/obo/UBERON_2005260;fenestrated capillary;fenestrated capillary vessel -http://purl.obolibrary.org/obo/UBERON_2005264;supraoccipital-parietal joint; -http://purl.obolibrary.org/obo/UBERON_2005265;hyomandibula-opercle joint; -http://purl.obolibrary.org/obo/UBERON_2005266;pterotic fossa; -http://purl.obolibrary.org/obo/UBERON_2005267;erector muscle; -http://purl.obolibrary.org/obo/UBERON_2005268;preopercle horizontal limb-symplectic joint; -http://purl.obolibrary.org/obo/UBERON_2005269;hypophyseal fenestra; -http://purl.obolibrary.org/obo/UBERON_2005270;depressor muscle; -http://purl.obolibrary.org/obo/UBERON_2005272;immature gonad;juvenile gonad -http://purl.obolibrary.org/obo/UBERON_2005273;intestinal mucosal muscle; -http://purl.obolibrary.org/obo/UBERON_2005275;hyomandibular foramen; -http://purl.obolibrary.org/obo/UBERON_2005276;inclinator muscle; -http://purl.obolibrary.org/obo/UBERON_2005278;preopercle vertical limb-hyomandibula joint; -http://purl.obolibrary.org/obo/UBERON_2005279;enteric circular muscle; -http://purl.obolibrary.org/obo/UBERON_2005292;distal late tubule; -http://purl.obolibrary.org/obo/UBERON_2005295;axial blood vessel; -http://purl.obolibrary.org/obo/UBERON_2005303;caudal fin lymph vessel; -http://purl.obolibrary.org/obo/UBERON_2005304;caudal fin blood vessel; -http://purl.obolibrary.org/obo/UBERON_2005311;pronephric glomerular capsule epithelium;pronephric parietal epithelial layer -http://purl.obolibrary.org/obo/UBERON_2005316;fin fold pectoral fin bud;fin-fold pectoral fin bud -http://purl.obolibrary.org/obo/UBERON_2005317;pectoral fin fold;pectoral fin-fold -http://purl.obolibrary.org/obo/UBERON_2005319;intersegmental lymph vessel;islv -http://purl.obolibrary.org/obo/UBERON_2005320;dorsal longitudinal lymphatic vessel;dllv -http://purl.obolibrary.org/obo/UBERON_2005338;posterior recess;posterior recess of diencephalic ventricle -http://purl.obolibrary.org/obo/UBERON_2005339;nucleus of the lateral recess; -http://purl.obolibrary.org/obo/UBERON_2005340;nucleus of the posterior recess; -http://purl.obolibrary.org/obo/UBERON_2005341;medial longitudinal catecholaminergic tract;mlct -http://purl.obolibrary.org/obo/UBERON_2005343;endohypothalamic tract; -http://purl.obolibrary.org/obo/UBERON_2005344;preopticohypothalamic tract; -http://purl.obolibrary.org/obo/UBERON_2005346;extrapancreatic duct; -http://purl.obolibrary.org/obo/UBERON_2005365;dorsal fin pterygiophore 2; -http://purl.obolibrary.org/obo/UBERON_2005366;dorsal fin pterygiophore 3; -http://purl.obolibrary.org/obo/UBERON_2005367;dorsal fin pterygiophore 4; -http://purl.obolibrary.org/obo/UBERON_2005368;dorsal fin pterygiophore 5; -http://purl.obolibrary.org/obo/UBERON_2005369;dorsal fin pterygiophore 6; -http://purl.obolibrary.org/obo/UBERON_2005370;dorsal fin pterygiophore 7; -http://purl.obolibrary.org/obo/UBERON_2005371;dorsal fin pterygiophore 8; -http://purl.obolibrary.org/obo/UBERON_2005372;dorsal fin distal radial bone 1; -http://purl.obolibrary.org/obo/UBERON_2005373;dorsal fin distal radial bone 2; -http://purl.obolibrary.org/obo/UBERON_2005374;dorsal fin distal radial bone 3; -http://purl.obolibrary.org/obo/UBERON_2005375;dorsal fin distal radial bone 4; -http://purl.obolibrary.org/obo/UBERON_2005376;dorsal fin distal radial bone 5; -http://purl.obolibrary.org/obo/UBERON_2005377;dorsal fin distal radial bone 6; -http://purl.obolibrary.org/obo/UBERON_2005378;dorsal fin distal radial bone 7; -http://purl.obolibrary.org/obo/UBERON_2005379;dorsal fin distal radial bone 8; -http://purl.obolibrary.org/obo/UBERON_2005380;dorsal fin proximal radial bone 3; -http://purl.obolibrary.org/obo/UBERON_2005381;dorsal fin proximal radial bone 4; -http://purl.obolibrary.org/obo/UBERON_2005382;dorsal fin proximal radial bone 5; -http://purl.obolibrary.org/obo/UBERON_2005383;dorsal fin proximal radial bone 6; -http://purl.obolibrary.org/obo/UBERON_2005384;dorsal fin proximal radial bone 7; -http://purl.obolibrary.org/obo/UBERON_2005385;dorsal fin proximal radial bone 8; -http://purl.obolibrary.org/obo/UBERON_2005409;pars superior ear; -http://purl.obolibrary.org/obo/UBERON_2005410;pars inferior ear; -http://purl.obolibrary.org/obo/UBERON_2005411;common crus; -http://purl.obolibrary.org/obo/UBERON_2005412;transverse canal; -http://purl.obolibrary.org/obo/UBERON_2005415;inner ear foramen; -http://purl.obolibrary.org/obo/UBERON_2005416;sacculoagenar foramen; -http://purl.obolibrary.org/obo/UBERON_2007001;dorso-rostral cluster;dorsorostral cluster -http://purl.obolibrary.org/obo/UBERON_2007001;dorso-rostral cluster;drc -http://purl.obolibrary.org/obo/UBERON_2007002;ventro-rostral cluster;ventrorostral cluster -http://purl.obolibrary.org/obo/UBERON_2007002;ventro-rostral cluster;vrc -http://purl.obolibrary.org/obo/UBERON_2007003;ventro-caudal cluster;vcc -http://purl.obolibrary.org/obo/UBERON_2007003;ventro-caudal cluster;ventrocaudal cluster -http://purl.obolibrary.org/obo/UBERON_2007004;epiphysial cluster;ec -http://purl.obolibrary.org/obo/UBERON_2007005;hemal prezygapophysis;haemal prezygapophysis -http://purl.obolibrary.org/obo/UBERON_2007005;hemal prezygapophysis;hemal prezygopophysis -http://purl.obolibrary.org/obo/UBERON_2007008;ventral intermandibularis anterior;ventral intermandibulari anterior -http://purl.obolibrary.org/obo/UBERON_2007012;lateral forebrain bundle; -http://purl.obolibrary.org/obo/UBERON_2007013;preplacodal ectoderm; -http://purl.obolibrary.org/obo/UBERON_2007014;anterior presumptive neural plate; -http://purl.obolibrary.org/obo/UBERON_2007015;posterior presumptive neural plate; -http://purl.obolibrary.org/obo/UBERON_2007023;posterior neural keel; -http://purl.obolibrary.org/obo/UBERON_2007024;anterior neural keel; -http://purl.obolibrary.org/obo/UBERON_2007025;midbrain neural keel; -http://purl.obolibrary.org/obo/UBERON_2007026;forebrain neural keel; -http://purl.obolibrary.org/obo/UBERON_2007027;forebrain midbrain boundary neural keel; -http://purl.obolibrary.org/obo/UBERON_2007028;spinal cord neural keel; -http://purl.obolibrary.org/obo/UBERON_2007029;hindbrain neural keel; -http://purl.obolibrary.org/obo/UBERON_2007030;posterior neural rod; -http://purl.obolibrary.org/obo/UBERON_2007031;anterior neural rod; -http://purl.obolibrary.org/obo/UBERON_2007032;midbrain neural rod; -http://purl.obolibrary.org/obo/UBERON_2007033;forebrain midbrain boundary neural rod; -http://purl.obolibrary.org/obo/UBERON_2007034;forebrain neural rod; -http://purl.obolibrary.org/obo/UBERON_2007035;spinal cord neural rod; -http://purl.obolibrary.org/obo/UBERON_2007036;hindbrain neural rod; -http://purl.obolibrary.org/obo/UBERON_2007040;forebrain midbrain boundary neural tube; -http://purl.obolibrary.org/obo/UBERON_2007041;forebrain neural tube; -http://purl.obolibrary.org/obo/UBERON_2007042;spinal cord neural tube; -http://purl.obolibrary.org/obo/UBERON_2007043;hindbrain neural tube; -http://purl.obolibrary.org/obo/UBERON_2007045;midbrain hindbrain boundary neural keel; -http://purl.obolibrary.org/obo/UBERON_2007046;midbrain hindbrain boundary neural rod; -http://purl.obolibrary.org/obo/UBERON_2007047;midbrain hindbrain boundary neural tube; -http://purl.obolibrary.org/obo/UBERON_2007048;ventral intermandibularis posterior;ventral intermandibulari posterior -http://purl.obolibrary.org/obo/UBERON_2007050;constrictor dorsalis; -http://purl.obolibrary.org/obo/UBERON_2007051;ventral interhyoideus;ventral interhyoidei -http://purl.obolibrary.org/obo/UBERON_2007052;hyohyoideus;hyohyoidei -http://purl.obolibrary.org/obo/UBERON_2007053;dorsal adductor hyomandibulae; -http://purl.obolibrary.org/obo/UBERON_2007054;pillar of the anterior semicircular canal;anterior hub of the semicircular canal -http://purl.obolibrary.org/obo/UBERON_2007054;pillar of the anterior semicircular canal;anterior pillar -http://purl.obolibrary.org/obo/UBERON_2007054;pillar of the anterior semicircular canal;anterior pillar of the semicircular canal -http://purl.obolibrary.org/obo/UBERON_2007055;pillar of the lateral semicircular canal;lateral hub of the semicircular canal -http://purl.obolibrary.org/obo/UBERON_2007055;pillar of the lateral semicircular canal;ventral bar -http://purl.obolibrary.org/obo/UBERON_2007055;pillar of the lateral semicircular canal;ventral pillar -http://purl.obolibrary.org/obo/UBERON_2007055;pillar of the lateral semicircular canal;ventral piller of the semicircular canal -http://purl.obolibrary.org/obo/UBERON_2007059;neurogenic field; -http://purl.obolibrary.org/obo/UBERON_2007060;dorsolateral field; -http://purl.obolibrary.org/obo/UBERON_2007061;epibranchial field; -http://purl.obolibrary.org/obo/UBERON_2007062;olfactory field;olfactory fields -http://purl.obolibrary.org/obo/UBERON_2100268;anal fin proximal radial element; -http://purl.obolibrary.org/obo/UBERON_2100271;radial element; -http://purl.obolibrary.org/obo/UBERON_2100508;pelvic fin radial element; -http://purl.obolibrary.org/obo/UBERON_2100623;basipterygium element; -http://purl.obolibrary.org/obo/UBERON_2100646;anal fin distal radial element; -http://purl.obolibrary.org/obo/UBERON_2100936;dorsal fin distal radial element; -http://purl.obolibrary.org/obo/UBERON_2100947;dorsal fin proximal radial element; -http://purl.obolibrary.org/obo/UBERON_2101415;pelvic fin distal radial element 2; -http://purl.obolibrary.org/obo/UBERON_2101416;pelvic fin distal radial element 3; -http://purl.obolibrary.org/obo/UBERON_2101417;pelvic fin distal radial element 1; -http://purl.obolibrary.org/obo/UBERON_2101586;pectoral fin radial element; -http://purl.obolibrary.org/obo/UBERON_2101587;pectoral fin proximal radial element; -http://purl.obolibrary.org/obo/UBERON_2101588;pectoral fin distal radial element; -http://purl.obolibrary.org/obo/UBERON_2101613;dorsal fin middle radial element; -http://purl.obolibrary.org/obo/UBERON_2101614;anal fin middle radial element; -http://purl.obolibrary.org/obo/UBERON_2101671;anal fin radial element; -http://purl.obolibrary.org/obo/UBERON_2101672;dorsal fin radial element; -http://purl.obolibrary.org/obo/UBERON_2101818;dorsal fin proximal radial element 1; -http://purl.obolibrary.org/obo/UBERON_2101819;dorsal fin proximal radial element 2; -http://purl.obolibrary.org/obo/UBERON_2102026;pectoral fin proximal radial element 1; -http://purl.obolibrary.org/obo/UBERON_2102027;pectoral fin proximal radial element 2; -http://purl.obolibrary.org/obo/UBERON_2102028;pectoral fin proximal radial element 3; -http://purl.obolibrary.org/obo/UBERON_2102029;pectoral fin proximal radial element 4; -http://purl.obolibrary.org/obo/UBERON_2102277;pectoral fin distal radial element 1; -http://purl.obolibrary.org/obo/UBERON_2102279;pectoral fin distal radial element 2; -http://purl.obolibrary.org/obo/UBERON_2102280;pectoral fin distal radial element 3; -http://purl.obolibrary.org/obo/UBERON_2105225;median fin radial element; -http://purl.obolibrary.org/obo/UBERON_2105226;median fin proximal radial element; -http://purl.obolibrary.org/obo/UBERON_2105372;dorsal fin distal radial element 1; -http://purl.obolibrary.org/obo/UBERON_2105373;dorsal fin distal radial element 2; -http://purl.obolibrary.org/obo/UBERON_2105374;dorsal fin distal radial element 3; -http://purl.obolibrary.org/obo/UBERON_2105375;dorsal fin distal radial element 4; -http://purl.obolibrary.org/obo/UBERON_2105376;dorsal fin distal radial element 5; -http://purl.obolibrary.org/obo/UBERON_2105377;dorsal fin distal radial element 6; -http://purl.obolibrary.org/obo/UBERON_2105378;dorsal fin distal radial element 7; -http://purl.obolibrary.org/obo/UBERON_2105379;dorsal fin distal radial element 8; -http://purl.obolibrary.org/obo/UBERON_2105380;dorsal fin proximal radial element 3; -http://purl.obolibrary.org/obo/UBERON_2105381;dorsal fin proximal radial element 4; -http://purl.obolibrary.org/obo/UBERON_2105382;dorsal fin proximal radial element 5; -http://purl.obolibrary.org/obo/UBERON_2105383;dorsal fin proximal radial element 6; -http://purl.obolibrary.org/obo/UBERON_2105384;dorsal fin proximal radial element 7; -http://purl.obolibrary.org/obo/UBERON_2105385;dorsal fin proximal radial element 8; -http://purl.obolibrary.org/obo/UBERON_2200268;anal fin proximal radial cartilage;basal radial of anal fin cartilage -http://purl.obolibrary.org/obo/UBERON_2200268;anal fin proximal radial cartilage;proximal anal-fin radial cartilage -http://purl.obolibrary.org/obo/UBERON_2200271;radial cartilage; -http://purl.obolibrary.org/obo/UBERON_2200646;anal fin distal radial cartilage; -http://purl.obolibrary.org/obo/UBERON_2200936;dorsal fin distal radial cartilage; -http://purl.obolibrary.org/obo/UBERON_2200947;dorsal fin proximal radial cartilage;basal radial cartilage of dorsal fin -http://purl.obolibrary.org/obo/UBERON_2201415;pelvic fin distal radial cartilage 2; -http://purl.obolibrary.org/obo/UBERON_2201416;pelvic fin distal radial cartilage 3; -http://purl.obolibrary.org/obo/UBERON_2201417;pelvic fin distal radial cartilage 1; -http://purl.obolibrary.org/obo/UBERON_2201586;pectoral fin radial cartilage; -http://purl.obolibrary.org/obo/UBERON_2201587;pectoral fin proximal radial cartilage; -http://purl.obolibrary.org/obo/UBERON_2201588;pectoral fin distal radial cartilage; -http://purl.obolibrary.org/obo/UBERON_2201613;dorsal fin middle radial cartilage;dorsal fin medial radial cartilage -http://purl.obolibrary.org/obo/UBERON_2201614;anal fin middle radial cartilage;anal fin medial radial cartilage -http://purl.obolibrary.org/obo/UBERON_2201614;anal fin middle radial cartilage;medial anal-fin radial cartilage -http://purl.obolibrary.org/obo/UBERON_2201671;anal fin radial cartilage; -http://purl.obolibrary.org/obo/UBERON_2201672;dorsal fin radial cartilage; -http://purl.obolibrary.org/obo/UBERON_2201818;dorsal fin proximal radial cartilage 1; -http://purl.obolibrary.org/obo/UBERON_2201819;dorsal fin proximal radial cartilage 2; -http://purl.obolibrary.org/obo/UBERON_2202026;pectoral fin proximal radial cartilage 1;first pectoral basal radial cartilage -http://purl.obolibrary.org/obo/UBERON_2202027;pectoral fin proximal radial cartilage 2;second pectoral basal radial cartilage -http://purl.obolibrary.org/obo/UBERON_2202028;pectoral fin proximal radial cartilage 3;third pectoral basal radial cartilage -http://purl.obolibrary.org/obo/UBERON_2202029;pectoral fin proximal radial cartilage 4;fourth pectoral basal radial cartilage -http://purl.obolibrary.org/obo/UBERON_2202277;pectoral fin distal radial cartilage 1; -http://purl.obolibrary.org/obo/UBERON_2202279;pectoral fin distal radial cartilage 2; -http://purl.obolibrary.org/obo/UBERON_2202280;pectoral fin distal radial cartilage 3; -http://purl.obolibrary.org/obo/UBERON_2205225;median fin radial cartilage; -http://purl.obolibrary.org/obo/UBERON_2205226;median fin proximal radial cartilage;ptrygiophore proximal cartilage -http://purl.obolibrary.org/obo/UBERON_2205372;dorsal fin distal radial cartilage 1; -http://purl.obolibrary.org/obo/UBERON_2205373;dorsal fin distal radial cartilage 2; -http://purl.obolibrary.org/obo/UBERON_2205374;dorsal fin distal radial cartilage 3; -http://purl.obolibrary.org/obo/UBERON_2205375;dorsal fin distal radial cartilage 4; -http://purl.obolibrary.org/obo/UBERON_2205376;dorsal fin distal radial cartilage 5; -http://purl.obolibrary.org/obo/UBERON_2205377;dorsal fin distal radial cartilage 6; -http://purl.obolibrary.org/obo/UBERON_2205378;dorsal fin distal radial cartilage 7; -http://purl.obolibrary.org/obo/UBERON_2205379;dorsal fin distal radial cartilage 8; -http://purl.obolibrary.org/obo/UBERON_2205380;dorsal fin proximal radial cartilage 3; -http://purl.obolibrary.org/obo/UBERON_2205381;dorsal fin proximal radial cartilage 4; -http://purl.obolibrary.org/obo/UBERON_2205382;dorsal fin proximal radial cartilage 5; -http://purl.obolibrary.org/obo/UBERON_2205383;dorsal fin proximal radial cartilage 6; -http://purl.obolibrary.org/obo/UBERON_2205384;dorsal fin proximal radial cartilage 7; -http://purl.obolibrary.org/obo/UBERON_2205385;dorsal fin proximal radial cartilage 8; -http://purl.obolibrary.org/obo/UBERON_3000002;alary cartilage; -http://purl.obolibrary.org/obo/UBERON_3000003;alary process of premaxilla; -http://purl.obolibrary.org/obo/UBERON_3000006;alveolar foramen; -http://purl.obolibrary.org/obo/UBERON_3000012;angulosplenial coronoid process; -http://purl.obolibrary.org/obo/UBERON_3000015;anterior maxillary process; -http://purl.obolibrary.org/obo/UBERON_3000016;anterior nasal wall; -http://purl.obolibrary.org/obo/UBERON_3000017;anterior process of pars palatina of maxilla; -http://purl.obolibrary.org/obo/UBERON_3000018;anterior ramus of pterygoid; -http://purl.obolibrary.org/obo/UBERON_3000020;anterolateral process of frontoparietal; -http://purl.obolibrary.org/obo/UBERON_3000022;antorbital process; -http://purl.obolibrary.org/obo/UBERON_3000031;ascending process of palatoquadrate; -http://purl.obolibrary.org/obo/UBERON_3000032;auditory muscles; -http://purl.obolibrary.org/obo/UBERON_3000036;basal process of palatoquadrate; -http://purl.obolibrary.org/obo/UBERON_3000037;basicranial fenestra; -http://purl.obolibrary.org/obo/UBERON_3000038;basimandibulare; -http://purl.obolibrary.org/obo/UBERON_3000041;Bidder's organ; -http://purl.obolibrary.org/obo/UBERON_3000050;braincase and auditory apparatus; -http://purl.obolibrary.org/obo/UBERON_3000051;braincase and otic capsule opening; -http://purl.obolibrary.org/obo/UBERON_3000052;braincase and otic capsule skeleton; -http://purl.obolibrary.org/obo/UBERON_3000057;canalis semicircularis anterior; -http://purl.obolibrary.org/obo/UBERON_3000059;capsular process; -http://purl.obolibrary.org/obo/UBERON_3000068;cartilago ectochoanalis; -http://purl.obolibrary.org/obo/UBERON_3000069;cartilago infranarina; -http://purl.obolibrary.org/obo/UBERON_3000074;cartilago orbitalis; -http://purl.obolibrary.org/obo/UBERON_3000078;cartilago prootico-occipitalis; -http://purl.obolibrary.org/obo/UBERON_3000079;cartilago retronarina; -http://purl.obolibrary.org/obo/UBERON_3000085;cavum inferius; -http://purl.obolibrary.org/obo/UBERON_3000086;cavum internasale; -http://purl.obolibrary.org/obo/UBERON_3000087;cavum medius; -http://purl.obolibrary.org/obo/UBERON_3000088;cavum praenasale; -http://purl.obolibrary.org/obo/UBERON_3000089;cavum principale; -http://purl.obolibrary.org/obo/UBERON_3000101;hyale;anterior cornua -http://purl.obolibrary.org/obo/UBERON_3000110;crista contacta; -http://purl.obolibrary.org/obo/UBERON_3000111;crista dentalis of maxilla; -http://purl.obolibrary.org/obo/UBERON_3000112;crista dentalis of premaxilla; -http://purl.obolibrary.org/obo/UBERON_3000113;crista intermedia; -http://purl.obolibrary.org/obo/UBERON_3000115;crista lateralis of premaxilla; -http://purl.obolibrary.org/obo/UBERON_3000117;crista subnasalis; -http://purl.obolibrary.org/obo/UBERON_3000118;crista supraorbitalis; -http://purl.obolibrary.org/obo/UBERON_3000131;dilatatio alaris; -http://purl.obolibrary.org/obo/UBERON_3000141;endolymphatic system; -http://purl.obolibrary.org/obo/UBERON_3000155;extremitas anterior; -http://purl.obolibrary.org/obo/UBERON_3000160;fenestra dorsalis nasi; -http://purl.obolibrary.org/obo/UBERON_3000161;fenestra endochoanalis; -http://purl.obolibrary.org/obo/UBERON_3000162;fenestra endonarina communis; -http://purl.obolibrary.org/obo/UBERON_3000164;fenestra lateralis nasi; -http://purl.obolibrary.org/obo/UBERON_3000166;fenestra nasobasalis; -http://purl.obolibrary.org/obo/UBERON_3000167;fenestra nasolateralis; -http://purl.obolibrary.org/obo/UBERON_3000170;fenestra precerebralis; -http://purl.obolibrary.org/obo/UBERON_3000171;fenestra prechoanalis; -http://purl.obolibrary.org/obo/UBERON_3000177;flange of quadratojugal; -http://purl.obolibrary.org/obo/UBERON_3000178;footplate of pars media plectri; -http://purl.obolibrary.org/obo/UBERON_3000179;foramen acusticum; -http://purl.obolibrary.org/obo/UBERON_3000180;foramen acusticum anterius; -http://purl.obolibrary.org/obo/UBERON_3000181;foramen acusticum maius; -http://purl.obolibrary.org/obo/UBERON_3000182;foramen acusticum minus; -http://purl.obolibrary.org/obo/UBERON_3000183;foramen acusticum posterius; -http://purl.obolibrary.org/obo/UBERON_3000185;foramen endolymphaticum; -http://purl.obolibrary.org/obo/UBERON_3000189;foramen orbitonasale laterale; -http://purl.obolibrary.org/obo/UBERON_3000190;foramen orbitonasale mediale; -http://purl.obolibrary.org/obo/UBERON_3000192;foramen perilymphaticum; -http://purl.obolibrary.org/obo/UBERON_3000193;foramen perilymphaticum accessorium; -http://purl.obolibrary.org/obo/UBERON_3000195;foramen perilymphaticus inferius; -http://purl.obolibrary.org/obo/UBERON_3000209;frontoparietal fontanelle; -http://purl.obolibrary.org/obo/UBERON_3000224;hyobranchial muscle; -http://purl.obolibrary.org/obo/UBERON_3000226;hyolaryngeal complex; -http://purl.obolibrary.org/obo/UBERON_3000234;inferior prenasal cartilage; -http://purl.obolibrary.org/obo/UBERON_3000237;infrarostral cartilage; -http://purl.obolibrary.org/obo/UBERON_3000254;lamella alaris; -http://purl.obolibrary.org/obo/UBERON_3000255;lamina anterior of pars facialis; -http://purl.obolibrary.org/obo/UBERON_3000259;lamina inferior; -http://purl.obolibrary.org/obo/UBERON_3000260;lamina nariochoanalis; -http://purl.obolibrary.org/obo/UBERON_3000263;lamina precerebralis; -http://purl.obolibrary.org/obo/UBERON_3000264;lamina superior; -http://purl.obolibrary.org/obo/UBERON_3000280;margo mandibularis of pterygoid; -http://purl.obolibrary.org/obo/UBERON_3000281;margo orbitalis of maxilla; -http://purl.obolibrary.org/obo/UBERON_3000282;margo orbitalis of pterygoid; -http://purl.obolibrary.org/obo/UBERON_3000283;margo orbitalis of squamosal; -http://purl.obolibrary.org/obo/UBERON_3000284;margo tympanicus of pterygoid; -http://purl.obolibrary.org/obo/UBERON_3000288;maxillopalatine; -http://purl.obolibrary.org/obo/UBERON_3000290;medial inferior prenasal cartilage; -http://purl.obolibrary.org/obo/UBERON_3000291;medial orbitonasal foramen; -http://purl.obolibrary.org/obo/UBERON_3000292;medial ramus of pterygoid; -http://purl.obolibrary.org/obo/UBERON_3000294;median prenasal process; -http://purl.obolibrary.org/obo/UBERON_3000295;median symphysis; -http://purl.obolibrary.org/obo/UBERON_3000309;narial muscles; -http://purl.obolibrary.org/obo/UBERON_3000316;nasal opening; -http://purl.obolibrary.org/obo/UBERON_3000323;nasopremaxilla; -http://purl.obolibrary.org/obo/UBERON_3000329;oblique cartilage; -http://purl.obolibrary.org/obo/UBERON_3000332;oculomotor foramen;nerve foramen III -http://purl.obolibrary.org/obo/UBERON_3000333;olfactory foramen; -http://purl.obolibrary.org/obo/UBERON_3000341;optic fenestra; -http://purl.obolibrary.org/obo/UBERON_3000344;orbitonasal foramen; -http://purl.obolibrary.org/obo/UBERON_3000348;os basale; -http://purl.obolibrary.org/obo/UBERON_3000363;otic ligament; -http://purl.obolibrary.org/obo/UBERON_3000364;otic plate of pterygoid; -http://purl.obolibrary.org/obo/UBERON_3000365;otic process; -http://purl.obolibrary.org/obo/UBERON_3000367;otic ramus of squamosal; -http://purl.obolibrary.org/obo/UBERON_3000368;otoccipital;otooccipital -http://purl.obolibrary.org/obo/UBERON_3000375;palatine process of the pars facialis of the maxilla; -http://purl.obolibrary.org/obo/UBERON_3000380;palatoquadrate articular process; -http://purl.obolibrary.org/obo/UBERON_3000381;paranasal commissure; -http://purl.obolibrary.org/obo/UBERON_3000384;parasagittal crest; -http://purl.obolibrary.org/obo/UBERON_3000386;cultriform process; -http://purl.obolibrary.org/obo/UBERON_3000387;subotic alae; -http://purl.obolibrary.org/obo/UBERON_3000388;parasphenoid tooth; -http://purl.obolibrary.org/obo/UBERON_3000389;paries nasi; -http://purl.obolibrary.org/obo/UBERON_3000393;pars amphibiorum; -http://purl.obolibrary.org/obo/UBERON_3000394;pars articularis of mandibular arch; -http://purl.obolibrary.org/obo/UBERON_3000395;pars basilaris; -http://purl.obolibrary.org/obo/UBERON_3000399;pars externa plectri; -http://purl.obolibrary.org/obo/UBERON_3000400;pars facialis of maxilla; -http://purl.obolibrary.org/obo/UBERON_3000401;pars facialis of maxillopalatine; -http://purl.obolibrary.org/obo/UBERON_3000405;pars inferior of labyrinth; -http://purl.obolibrary.org/obo/UBERON_3000406;pars interna plectri; -http://purl.obolibrary.org/obo/UBERON_3000408;pars media plectri; -http://purl.obolibrary.org/obo/UBERON_3000428;perilymphatic system; -http://purl.obolibrary.org/obo/UBERON_3000431;pila antoptica; -http://purl.obolibrary.org/obo/UBERON_3000432;pila metoptica; -http://purl.obolibrary.org/obo/UBERON_3000433;pineal foramen; -http://purl.obolibrary.org/obo/UBERON_3000434;planum antorbitale; -http://purl.obolibrary.org/obo/UBERON_3000437;planum conchale; -http://purl.obolibrary.org/obo/UBERON_3000438;planum internasale; -http://purl.obolibrary.org/obo/UBERON_3000440;planum terminale; -http://purl.obolibrary.org/obo/UBERON_3000441;planum triangulare; -http://purl.obolibrary.org/obo/UBERON_3000443;plectral apparatus; -http://purl.obolibrary.org/obo/UBERON_3000446;posterior condyle; -http://purl.obolibrary.org/obo/UBERON_3000448;posterior maxillary process; -http://purl.obolibrary.org/obo/UBERON_3000449;posterior maxillary process dorsal process; -http://purl.obolibrary.org/obo/UBERON_3000450;posterior mental process; -http://purl.obolibrary.org/obo/UBERON_3000451;posterior ramus of pterygoid; -http://purl.obolibrary.org/obo/UBERON_3000453;posterolateral vomerine process; -http://purl.obolibrary.org/obo/UBERON_3000454;postnasal wall; -http://purl.obolibrary.org/obo/UBERON_3000459;prearticular coronoid process; -http://purl.obolibrary.org/obo/UBERON_3000467;preorbital process of the pars facialis of the maxilla;preorbital process -http://purl.obolibrary.org/obo/UBERON_3000486;processus ascendens plectri; -http://purl.obolibrary.org/obo/UBERON_3000492;processus infrafenestralis; -http://purl.obolibrary.org/obo/UBERON_3000493;processus internus of pseudoangular; -http://purl.obolibrary.org/obo/UBERON_3000494;processus lingualis of pterygoid; -http://purl.obolibrary.org/obo/UBERON_3000500;processus posterior of maxilla; -http://purl.obolibrary.org/obo/UBERON_3000505;processus pterygoideus of maxilla; -http://purl.obolibrary.org/obo/UBERON_3000509;processus suprafenestralis; -http://purl.obolibrary.org/obo/UBERON_3000512;processus zygomatico-maxillaris; -http://purl.obolibrary.org/obo/UBERON_3000515;pseudoangular; -http://purl.obolibrary.org/obo/UBERON_3000516;pseudobasal process; -http://purl.obolibrary.org/obo/UBERON_3000518;pseudodentary; -http://purl.obolibrary.org/obo/UBERON_3000519;pseudodentary tooth; -http://purl.obolibrary.org/obo/UBERON_3000523;pterygoid process of palatoquadrate; -http://purl.obolibrary.org/obo/UBERON_3000524;pterygoquadrate; -http://purl.obolibrary.org/obo/UBERON_3000527;quadrate process of palatoquadrate; -http://purl.obolibrary.org/obo/UBERON_3000538;recessus fenestrae ovalis; -http://purl.obolibrary.org/obo/UBERON_3000539;recessus marsupiatus of premaxilla; -http://purl.obolibrary.org/obo/UBERON_3000540;recessus vaginiformis; -http://purl.obolibrary.org/obo/UBERON_3000543;retroarticular process; -http://purl.obolibrary.org/obo/UBERON_3000547;rostral process; -http://purl.obolibrary.org/obo/UBERON_3000560;septum semicircularium anterior; -http://purl.obolibrary.org/obo/UBERON_3000561;septum semicircularium laterale; -http://purl.obolibrary.org/obo/UBERON_3000562;septum semircularium posterior; -http://purl.obolibrary.org/obo/UBERON_3000563;seydels palatal process; -http://purl.obolibrary.org/obo/UBERON_3000565;skeletal support for eminentia olfactoria; -http://purl.obolibrary.org/obo/UBERON_3000569;solum nasi; -http://purl.obolibrary.org/obo/UBERON_3000570;spatium sacculare; -http://purl.obolibrary.org/obo/UBERON_3000571;specialized connective tissue; -http://purl.obolibrary.org/obo/UBERON_3000572;sphenethmoid; -http://purl.obolibrary.org/obo/UBERON_3000580;stylus of pars media plectri; -http://purl.obolibrary.org/obo/UBERON_3000581;sulcus dentalis of maxilla; -http://purl.obolibrary.org/obo/UBERON_3000582;sulcus dentalis of premaxilla; -http://purl.obolibrary.org/obo/UBERON_3000583;sulcus for Meckels cartilage; -http://purl.obolibrary.org/obo/UBERON_3000586;superior prenasal cartilage; -http://purl.obolibrary.org/obo/UBERON_3000590;supraorbital flange; -http://purl.obolibrary.org/obo/UBERON_3000591;suprasphenoid; -http://purl.obolibrary.org/obo/UBERON_3000597;symphysis maxillaris; -http://purl.obolibrary.org/obo/UBERON_3000599;taenia tecti marginalis; -http://purl.obolibrary.org/obo/UBERON_3000601;tectum nasi; -http://purl.obolibrary.org/obo/UBERON_3000605;tentacular foramen; -http://purl.obolibrary.org/obo/UBERON_3000610;trochlear foramen;nerve foramen IV -http://purl.obolibrary.org/obo/UBERON_3000619;tympanosquamosal; -http://purl.obolibrary.org/obo/UBERON_3000628;ventral ramus of squamosal; -http://purl.obolibrary.org/obo/UBERON_3000634;vomerine canal; -http://purl.obolibrary.org/obo/UBERON_3000639;zygomatic ramus of squamosal; -http://purl.obolibrary.org/obo/UBERON_3000640;arcus praeoccipitalis; -http://purl.obolibrary.org/obo/UBERON_3000642;maxillopalatine tooth; -http://purl.obolibrary.org/obo/UBERON_3000644;processus lingularis of nasal skeleton; -http://purl.obolibrary.org/obo/UBERON_3000645;corpus; -http://purl.obolibrary.org/obo/UBERON_3000646;margo libera; -http://purl.obolibrary.org/obo/UBERON_3000647;crista interna; -http://purl.obolibrary.org/obo/UBERON_3000648;crista praeopercularis; -http://purl.obolibrary.org/obo/UBERON_3000649;anterior process of vomer; -http://purl.obolibrary.org/obo/UBERON_3000650;processus frontalis of maxilla; -http://purl.obolibrary.org/obo/UBERON_3000651;lamina anterior of maxilla; -http://purl.obolibrary.org/obo/UBERON_3000652;fossa maxillaris;maxillary saddle -http://purl.obolibrary.org/obo/UBERON_3000653;pars glenoidalis of quadratojugal; -http://purl.obolibrary.org/obo/UBERON_3000654;pars jugalis; -http://purl.obolibrary.org/obo/UBERON_3000655;processus dorsalis of lamella alaris; -http://purl.obolibrary.org/obo/UBERON_3000656;processus posterodorsalis of lamella alaris; -http://purl.obolibrary.org/obo/UBERON_3000657;dentigerous process; -http://purl.obolibrary.org/obo/UBERON_3000658;prechoanal process; -http://purl.obolibrary.org/obo/UBERON_3000659;postchoanal process; -http://purl.obolibrary.org/obo/UBERON_3000660;margo choanalis; -http://purl.obolibrary.org/obo/UBERON_3000661;crista vomeri; -http://purl.obolibrary.org/obo/UBERON_3000662;processus posterior of parasphenoid; -http://purl.obolibrary.org/obo/UBERON_3000663;parahyoid; -http://purl.obolibrary.org/obo/UBERON_3000664;hyoid plate; -http://purl.obolibrary.org/obo/UBERON_3000667;pars reuniens; -http://purl.obolibrary.org/obo/UBERON_3000668;hyoglossal sinus; -http://purl.obolibrary.org/obo/UBERON_3000670;anterior process of hyoid apparatus; -http://purl.obolibrary.org/obo/UBERON_3000671;anterolateral process of hyoid plate; -http://purl.obolibrary.org/obo/UBERON_3000672;posterolateral process; -http://purl.obolibrary.org/obo/UBERON_3000673;posteromedial process; -http://purl.obolibrary.org/obo/UBERON_3000676;bronchial process; -http://purl.obolibrary.org/obo/UBERON_3000677;lateral process of cricoid cartilage; -http://purl.obolibrary.org/obo/UBERON_3000678;esophageal process; -http://purl.obolibrary.org/obo/UBERON_3000680;manubrium of hyale; -http://purl.obolibrary.org/obo/UBERON_3000681;hyoid apparatus opening; -http://purl.obolibrary.org/obo/UBERON_3000683;sinus nervi hypoglossi; -http://purl.obolibrary.org/obo/UBERON_3000685;foramen nervi hypoglossi; -http://purl.obolibrary.org/obo/UBERON_3000687;processus confluens; -http://purl.obolibrary.org/obo/UBERON_3000688;prominentia apicalis dorsalis; -http://purl.obolibrary.org/obo/UBERON_3000689;prominentia apicalis ventralis; -http://purl.obolibrary.org/obo/UBERON_3000692;pedicel; -http://purl.obolibrary.org/obo/UBERON_3000694;atlantal cotyle; -http://purl.obolibrary.org/obo/UBERON_3000696;posterior intervertebral notch; -http://purl.obolibrary.org/obo/UBERON_3000701;intervertebral space; -http://purl.obolibrary.org/obo/UBERON_3000704;anterior intervertebral notch; -http://purl.obolibrary.org/obo/UBERON_3000707;pleurapophysis; -http://purl.obolibrary.org/obo/UBERON_3000711;procoelous; -http://purl.obolibrary.org/obo/UBERON_3000712;opisthocoelous; -http://purl.obolibrary.org/obo/UBERON_3000713;epichordal; -http://purl.obolibrary.org/obo/UBERON_3000714;perichordal; -http://purl.obolibrary.org/obo/UBERON_3000715;heterocoelous; -http://purl.obolibrary.org/obo/UBERON_3000716;acoelous; -http://purl.obolibrary.org/obo/UBERON_3000717;amphicoelous; -http://purl.obolibrary.org/obo/UBERON_3000718;ectochordal; -http://purl.obolibrary.org/obo/UBERON_3000719;holochordal; -http://purl.obolibrary.org/obo/UBERON_3000720;stegochordal; -http://purl.obolibrary.org/obo/UBERON_3000727;haemal arch lamina; -http://purl.obolibrary.org/obo/UBERON_3000728;nucal keel; -http://purl.obolibrary.org/obo/UBERON_3000730;foramen nutritium; -http://purl.obolibrary.org/obo/UBERON_3000735;mid-dorsal keel; -http://purl.obolibrary.org/obo/UBERON_3000743;sacral condyle; -http://purl.obolibrary.org/obo/UBERON_3000744;urostyle cotyle; -http://purl.obolibrary.org/obo/UBERON_3000745;webbing of bone in vertebral column; -http://purl.obolibrary.org/obo/UBERON_3000746;urostyle ridge; -http://purl.obolibrary.org/obo/UBERON_3000748;suprascapula; -http://purl.obolibrary.org/obo/UBERON_3000752;pars acromialis; -http://purl.obolibrary.org/obo/UBERON_3000753;pars glenoidalis of scapula;glenoid head of scapula -http://purl.obolibrary.org/obo/UBERON_3000755;pectoral girdle opening; -http://purl.obolibrary.org/obo/UBERON_3000756;crista dorsalis humeri; -http://purl.obolibrary.org/obo/UBERON_3000757;zonal area; -http://purl.obolibrary.org/obo/UBERON_3000759;omosternum; -http://purl.obolibrary.org/obo/UBERON_3000762;epicoracoid; -http://purl.obolibrary.org/obo/UBERON_3000763;epicoracoid bridge; -http://purl.obolibrary.org/obo/UBERON_3000767;pelvic girdle opening; -http://purl.obolibrary.org/obo/UBERON_3000771;acetabular depression; -http://purl.obolibrary.org/obo/UBERON_3000773;ilial ridge; -http://purl.obolibrary.org/obo/UBERON_3000774;ilial shaft; -http://purl.obolibrary.org/obo/UBERON_3000776;glenoid foramen; -http://purl.obolibrary.org/obo/UBERON_3000777;epicoracoid horn; -http://purl.obolibrary.org/obo/UBERON_3000778;supracoracoid foramen; -http://purl.obolibrary.org/obo/UBERON_3000779;pectoral fenestra; -http://purl.obolibrary.org/obo/UBERON_3000780;incisura coracoidea; -http://purl.obolibrary.org/obo/UBERON_3000783;fovea capitis of humerus; -http://purl.obolibrary.org/obo/UBERON_3000784;ulnar condyle; -http://purl.obolibrary.org/obo/UBERON_3000785;trochlear groove of humerus;trochlear sulcus of humerus -http://purl.obolibrary.org/obo/UBERON_3000786;fossa cubitalis ventralis; -http://purl.obolibrary.org/obo/UBERON_3000787;collum antibrachii; -http://purl.obolibrary.org/obo/UBERON_3000792;anterior ramus of cleithrum; -http://purl.obolibrary.org/obo/UBERON_3000793;anomocoelous; -http://purl.obolibrary.org/obo/UBERON_3000794;displasiocoelous; -http://purl.obolibrary.org/obo/UBERON_3000796;imbricate neural arch; -http://purl.obolibrary.org/obo/UBERON_3000797;non-imbricate neural arch; -http://purl.obolibrary.org/obo/UBERON_3000798;presacral shield; -http://purl.obolibrary.org/obo/UBERON_3000799;cartilago paraglenoidalis; -http://purl.obolibrary.org/obo/UBERON_3000800;intercotylar space; -http://purl.obolibrary.org/obo/UBERON_3000801;caput glenoidale; -http://purl.obolibrary.org/obo/UBERON_3000802;fossa glenoidalis; -http://purl.obolibrary.org/obo/UBERON_3000803;sulcus articularis lateralis; -http://purl.obolibrary.org/obo/UBERON_3000804;sulcus articularis medialis; -http://purl.obolibrary.org/obo/UBERON_3000805;carina proximalis; -http://purl.obolibrary.org/obo/UBERON_3000806;carina medialis; -http://purl.obolibrary.org/obo/UBERON_3000807;carina distalis; -http://purl.obolibrary.org/obo/UBERON_3000808;parasagittal processes; -http://purl.obolibrary.org/obo/UBERON_3000809;accessory articulation; -http://purl.obolibrary.org/obo/UBERON_3000810;fissura sagittalis; -http://purl.obolibrary.org/obo/UBERON_3000811;glenoid end of clavicle; -http://purl.obolibrary.org/obo/UBERON_3000813;sulcus pro cartilagine praecoracoidealis; -http://purl.obolibrary.org/obo/UBERON_3000814;glenoid head of coracoid; -http://purl.obolibrary.org/obo/UBERON_3000815;sternal head of coracoid; -http://purl.obolibrary.org/obo/UBERON_3000816;margo fenestralis; -http://purl.obolibrary.org/obo/UBERON_3000817;margo posterior; -http://purl.obolibrary.org/obo/UBERON_3000818;margo anterior of scapula; -http://purl.obolibrary.org/obo/UBERON_3000819;margo clavicularis; -http://purl.obolibrary.org/obo/UBERON_3000820;margo posterior of scapula; -http://purl.obolibrary.org/obo/UBERON_3000821;margo suprascapularis; -http://purl.obolibrary.org/obo/UBERON_3000822;pars suprascapularis; -http://purl.obolibrary.org/obo/UBERON_3000823;sinus interglenoidalis; -http://purl.obolibrary.org/obo/UBERON_3000824;tenuitas cristaeformis; -http://purl.obolibrary.org/obo/UBERON_3000825;crista longitudinalis scapula; -http://purl.obolibrary.org/obo/UBERON_3000827;margo anterior of cleithrum; -http://purl.obolibrary.org/obo/UBERON_3000828;margo posterior of cleithrum; -http://purl.obolibrary.org/obo/UBERON_3000829;margo scapularis; -http://purl.obolibrary.org/obo/UBERON_3000830;margo vertebralis; -http://purl.obolibrary.org/obo/UBERON_3000831;spina acromioidea; -http://purl.obolibrary.org/obo/UBERON_3000832;anterior lamina recurvata; -http://purl.obolibrary.org/obo/UBERON_3000833;sinus dorsalis; -http://purl.obolibrary.org/obo/UBERON_3000834;posterior lamina recurvata; -http://purl.obolibrary.org/obo/UBERON_3000836;crista lateralis humeri; -http://purl.obolibrary.org/obo/UBERON_3000837;crista medialis humeri; -http://purl.obolibrary.org/obo/UBERON_3000839;crista radii; -http://purl.obolibrary.org/obo/UBERON_3000840;capitulum of radius; -http://purl.obolibrary.org/obo/UBERON_3000842;capitulum ulnae; -http://purl.obolibrary.org/obo/UBERON_3000844;sulcus longitudinalis; -http://purl.obolibrary.org/obo/UBERON_3000846;element Y of fore mesopodium; -http://purl.obolibrary.org/obo/UBERON_3000856;intercalary element of fore digit; -http://purl.obolibrary.org/obo/UBERON_3000859;foramen perforans carpi; -http://purl.obolibrary.org/obo/UBERON_3000862;pubo-ischium; -http://purl.obolibrary.org/obo/UBERON_3000865;epileon; -http://purl.obolibrary.org/obo/UBERON_3000866;agger limitans anterior of ilium; -http://purl.obolibrary.org/obo/UBERON_3000867;agger limitans anterior of ischium; -http://purl.obolibrary.org/obo/UBERON_3000869;ilial protuberance; -http://purl.obolibrary.org/obo/UBERON_3000870;preacetabular expansion; -http://purl.obolibrary.org/obo/UBERON_3000871;fossula tuberis superioris; -http://purl.obolibrary.org/obo/UBERON_3000872;collum ilei; -http://purl.obolibrary.org/obo/UBERON_3000873;pars cylindriformis ilei; -http://purl.obolibrary.org/obo/UBERON_3000874;crista ischii; -http://purl.obolibrary.org/obo/UBERON_3000875;spina pelvis posterior; -http://purl.obolibrary.org/obo/UBERON_3000876;spina pelvis anterior; -http://purl.obolibrary.org/obo/UBERON_3000877;intumescentia bilateralis inferior; -http://purl.obolibrary.org/obo/UBERON_3000878;intumescentia bilateralis superior; -http://purl.obolibrary.org/obo/UBERON_3000879;incisura terminalis; -http://purl.obolibrary.org/obo/UBERON_3000880;crista hypertrophica ischium; -http://purl.obolibrary.org/obo/UBERON_3000882;interilial region; -http://purl.obolibrary.org/obo/UBERON_3000883;recessus coccygealis; -http://purl.obolibrary.org/obo/UBERON_3000884;epipubis; -http://purl.obolibrary.org/obo/UBERON_3000886;ypsiloid cartilage; -http://purl.obolibrary.org/obo/UBERON_3000894;femoral ridge; -http://purl.obolibrary.org/obo/UBERON_3000896;foveal depression; -http://purl.obolibrary.org/obo/UBERON_3000898;trochanteric crest; -http://purl.obolibrary.org/obo/UBERON_3000903;tibial crest; -http://purl.obolibrary.org/obo/UBERON_3000904;apophysis distalis of tibiofibula; -http://purl.obolibrary.org/obo/UBERON_3000905;caput ossis cruris; -http://purl.obolibrary.org/obo/UBERON_3000906;sulcus pro musculo extensori cruris brevis; -http://purl.obolibrary.org/obo/UBERON_3000907;eminentia arcuata; -http://purl.obolibrary.org/obo/UBERON_3000908;sulcus distalis ossis cruris; -http://purl.obolibrary.org/obo/UBERON_3000909;sulcus proximalis ossis cruris; -http://purl.obolibrary.org/obo/UBERON_3000911;foramen nutritium exterius; -http://purl.obolibrary.org/obo/UBERON_3000915;spatium intertarsale; -http://purl.obolibrary.org/obo/UBERON_3000916;apophysis proximalis; -http://purl.obolibrary.org/obo/UBERON_3000917;apophysis distalis of tibiale fibulare; -http://purl.obolibrary.org/obo/UBERON_3000921;element Y of hind mesopodium; -http://purl.obolibrary.org/obo/UBERON_3000922;prehallux skeleton; -http://purl.obolibrary.org/obo/UBERON_3000931;intercalary element of hind digit; -http://purl.obolibrary.org/obo/UBERON_3000934;foramen perforans tarsi; -http://purl.obolibrary.org/obo/UBERON_3000936;zonal element; -http://purl.obolibrary.org/obo/UBERON_3000937;prezonal element; -http://purl.obolibrary.org/obo/UBERON_3000938;postzonal element; -http://purl.obolibrary.org/obo/UBERON_3000941;arciferal girdle; -http://purl.obolibrary.org/obo/UBERON_3000942;firmisternal girdle; -http://purl.obolibrary.org/obo/UBERON_3000943;pseudofirmisternal girdle; -http://purl.obolibrary.org/obo/UBERON_3000944;pseudoarciferal girdle; -http://purl.obolibrary.org/obo/UBERON_3000945;inscriptional rib; -http://purl.obolibrary.org/obo/UBERON_3000948;articular process; -http://purl.obolibrary.org/obo/UBERON_3000949;posterior ramus of cleithrum; -http://purl.obolibrary.org/obo/UBERON_3000950;os triangulare; -http://purl.obolibrary.org/obo/UBERON_3000951;anterior radial; -http://purl.obolibrary.org/obo/UBERON_3000952;posterior radial; -http://purl.obolibrary.org/obo/UBERON_3000953;ceratobranchials II--IV; -http://purl.obolibrary.org/obo/UBERON_3000954;hypobranchial I; -http://purl.obolibrary.org/obo/UBERON_3000955;ceratobranchial I; -http://purl.obolibrary.org/obo/UBERON_3000956;hypobranchial II; -http://purl.obolibrary.org/obo/UBERON_3000961;external integument structure; -http://purl.obolibrary.org/obo/UBERON_3000965;basale commune (carpal); -http://purl.obolibrary.org/obo/UBERON_3000966;angulosplenial; -http://purl.obolibrary.org/obo/UBERON_3000972;head external integument structure; -http://purl.obolibrary.org/obo/UBERON_3000977;body external integument structure; -http://purl.obolibrary.org/obo/UBERON_3000981;limb external integument structure; -http://purl.obolibrary.org/obo/UBERON_3000982;tail external integument structure; -http://purl.obolibrary.org/obo/UBERON_3000989;pectoral fold; -http://purl.obolibrary.org/obo/UBERON_3000991;dorsal folds; -http://purl.obolibrary.org/obo/UBERON_3000993;otic and occipital; -http://purl.obolibrary.org/obo/UBERON_3000994;longitudinal dorsal folds; -http://purl.obolibrary.org/obo/UBERON_3000995;transversal dorsal folds; -http://purl.obolibrary.org/obo/UBERON_3000998;suprarostral cartilage; -http://purl.obolibrary.org/obo/UBERON_3000999;dorsal pouch; -http://purl.obolibrary.org/obo/UBERON_3001002;basale commune (tarsal); -http://purl.obolibrary.org/obo/UBERON_3001003;cloacal fold; -http://purl.obolibrary.org/obo/UBERON_3001005;dorsolateral fold; -http://purl.obolibrary.org/obo/UBERON_3001007;body granules; -http://purl.obolibrary.org/obo/UBERON_3001008;body wart; -http://purl.obolibrary.org/obo/UBERON_3001009;body spicule; -http://purl.obolibrary.org/obo/UBERON_3001010;body tubercle; -http://purl.obolibrary.org/obo/UBERON_3010006;dorsal skin texture; -http://purl.obolibrary.org/obo/UBERON_3010007;pit organ; -http://purl.obolibrary.org/obo/UBERON_3010010;ventral skin texture; -http://purl.obolibrary.org/obo/UBERON_3010011;axillary glands; -http://purl.obolibrary.org/obo/UBERON_3010013;larval chondrocranium; -http://purl.obolibrary.org/obo/UBERON_3010014;inguinal glands; -http://purl.obolibrary.org/obo/UBERON_3010018;M. glutaeus magnus; -http://purl.obolibrary.org/obo/UBERON_3010021;dorsal glands; -http://purl.obolibrary.org/obo/UBERON_3010022;M. tensor fasciae latae; -http://purl.obolibrary.org/obo/UBERON_3010027;M. sartorius; -http://purl.obolibrary.org/obo/UBERON_3010031;ventral glands; -http://purl.obolibrary.org/obo/UBERON_3010032;M. semitendinosus; -http://purl.obolibrary.org/obo/UBERON_3010039;protandrous hermaphroditic organism; -http://purl.obolibrary.org/obo/UBERON_3010042;protogynous hermaphroditic organism; -http://purl.obolibrary.org/obo/UBERON_3010044;dorsal crest; -http://purl.obolibrary.org/obo/UBERON_3010045;centrale 1; -http://purl.obolibrary.org/obo/UBERON_3010047;M. quadratus femoris; -http://purl.obolibrary.org/obo/UBERON_3010049;M. gemellus; -http://purl.obolibrary.org/obo/UBERON_3010058;dermal annular fold;caecilian annulus -http://purl.obolibrary.org/obo/UBERON_3010060;centrale (fore); -http://purl.obolibrary.org/obo/UBERON_3010061;anterior quadratocranial commissure; -http://purl.obolibrary.org/obo/UBERON_3010065;M. gracilis major; -http://purl.obolibrary.org/obo/UBERON_3010067;M. gracilis minor; -http://purl.obolibrary.org/obo/UBERON_3010068;M. semimembranosus; -http://purl.obolibrary.org/obo/UBERON_3010069;intermedium (fore); -http://purl.obolibrary.org/obo/UBERON_3010070;M. ileo-fibularis; -http://purl.obolibrary.org/obo/UBERON_3010071;cranial crest; -http://purl.obolibrary.org/obo/UBERON_3010072;M. pyriformis; -http://purl.obolibrary.org/obo/UBERON_3010073;centrale 2; -http://purl.obolibrary.org/obo/UBERON_3010074;M. ileo-femoralis; -http://purl.obolibrary.org/obo/UBERON_3010075;tympanic fold; -http://purl.obolibrary.org/obo/UBERON_3010076;M. iliacus internus; -http://purl.obolibrary.org/obo/UBERON_3010078;M. iliacus externus; -http://purl.obolibrary.org/obo/UBERON_3010079;upper eyelid protuberances; -http://purl.obolibrary.org/obo/UBERON_3010080;snout protuberances; -http://purl.obolibrary.org/obo/UBERON_3010081;interorbital fold; -http://purl.obolibrary.org/obo/UBERON_3010082;M. pulmonum proprius; -http://purl.obolibrary.org/obo/UBERON_3010084;M. tibialis posticus; -http://purl.obolibrary.org/obo/UBERON_3010085;postrictal protuberances; -http://purl.obolibrary.org/obo/UBERON_3010087;M. tibialis anticus longus; -http://purl.obolibrary.org/obo/UBERON_3010089;M. extensor cruris brevis; -http://purl.obolibrary.org/obo/UBERON_3010090;M. tibialis anticus brevis; -http://purl.obolibrary.org/obo/UBERON_3010091;upper lip protuberances; -http://purl.obolibrary.org/obo/UBERON_3010092;basitrabecular process; -http://purl.obolibrary.org/obo/UBERON_3010093;villosities; -http://purl.obolibrary.org/obo/UBERON_3010094;quadratoethmoid process; -http://purl.obolibrary.org/obo/UBERON_3010096;vocal sac; -http://purl.obolibrary.org/obo/UBERON_3010097;M. tarsalis posticus; -http://purl.obolibrary.org/obo/UBERON_3010098;M. plantaris profundus; -http://purl.obolibrary.org/obo/UBERON_3010100;mental gland; -http://purl.obolibrary.org/obo/UBERON_3010103;vocal sac glands; -http://purl.obolibrary.org/obo/UBERON_3010104;pectoral glands; -http://purl.obolibrary.org/obo/UBERON_3010105;anterodorsal lateral line nerve (ADLLN); -http://purl.obolibrary.org/obo/UBERON_3010106;tympanic papilla; -http://purl.obolibrary.org/obo/UBERON_3010109;anteroventral lateral line nerve (AVLLN); -http://purl.obolibrary.org/obo/UBERON_3010115;posterior lateral line nerve (PLLN); -http://purl.obolibrary.org/obo/UBERON_3010118;quadrato-orbital commissure; -http://purl.obolibrary.org/obo/UBERON_3010123;finger fringes; -http://purl.obolibrary.org/obo/UBERON_3010124;toe fringes; -http://purl.obolibrary.org/obo/UBERON_3010125;musculus levator bulbi; -http://purl.obolibrary.org/obo/UBERON_3010126;middle lateral line nerve (MLLN); -http://purl.obolibrary.org/obo/UBERON_3010127;fringe on postaxial edge of finger IV; -http://purl.obolibrary.org/obo/UBERON_3010128;taeniae tecti marginalis; -http://purl.obolibrary.org/obo/UBERON_3010130;taenia tecti transversalis; -http://purl.obolibrary.org/obo/UBERON_3010131;orbital cartilages; -http://purl.obolibrary.org/obo/UBERON_3010132;taenia tecti medialis; -http://purl.obolibrary.org/obo/UBERON_3010136;M. cruralis; -http://purl.obolibrary.org/obo/UBERON_3010138;trabecular horn; -http://purl.obolibrary.org/obo/UBERON_3010142;occipital arch; -http://purl.obolibrary.org/obo/UBERON_3010144;odontoids; -http://purl.obolibrary.org/obo/UBERON_3010146;lacrimal; -http://purl.obolibrary.org/obo/UBERON_3010163;metacarpal fold; -http://purl.obolibrary.org/obo/UBERON_3010164;ulnar fold; -http://purl.obolibrary.org/obo/UBERON_3010166;fringe on postaxial edge of toe V; -http://purl.obolibrary.org/obo/UBERON_3010167;metatarsal fold; -http://purl.obolibrary.org/obo/UBERON_3010168;tarsal fringe; -http://purl.obolibrary.org/obo/UBERON_3010170;ungual flap; -http://purl.obolibrary.org/obo/UBERON_3010172;subarticular tubercles; -http://purl.obolibrary.org/obo/UBERON_3010173;supernumerary tubercles; -http://purl.obolibrary.org/obo/UBERON_3010175;circumferential groove; -http://purl.obolibrary.org/obo/UBERON_3010178;finger glands; -http://purl.obolibrary.org/obo/UBERON_3010179;web glands; -http://purl.obolibrary.org/obo/UBERON_3010181;humeral glands; -http://purl.obolibrary.org/obo/UBERON_3010182;tibial glands; -http://purl.obolibrary.org/obo/UBERON_3010183;femoral glands; -http://purl.obolibrary.org/obo/UBERON_3010184;inner metatarsal tubercle; -http://purl.obolibrary.org/obo/UBERON_3010186;outer metatarsal tubercle; -http://purl.obolibrary.org/obo/UBERON_3010187;inner metacarpal tubercle; -http://purl.obolibrary.org/obo/UBERON_3010188;outer metacarpal tubercle; -http://purl.obolibrary.org/obo/UBERON_3010189;ulnar protuberances; -http://purl.obolibrary.org/obo/UBERON_3010190;tibial protuberances; -http://purl.obolibrary.org/obo/UBERON_3010191;calcar anterior; -http://purl.obolibrary.org/obo/UBERON_3010192;calcar posterior; -http://purl.obolibrary.org/obo/UBERON_3010193;prepollical protuberances; -http://purl.obolibrary.org/obo/UBERON_3010194;mediale; -http://purl.obolibrary.org/obo/UBERON_3010195;lateral appendix; -http://purl.obolibrary.org/obo/UBERON_3010197;lateral recess; -http://purl.obolibrary.org/obo/UBERON_3010200;vasculature of respiratory integument; -http://purl.obolibrary.org/obo/UBERON_3010201;dorsal tail tubercle; -http://purl.obolibrary.org/obo/UBERON_3010202;tail base gland; -http://purl.obolibrary.org/obo/UBERON_3010203;dorsal tail fin; -http://purl.obolibrary.org/obo/UBERON_3010204;ventral tail fin; -http://purl.obolibrary.org/obo/UBERON_3010205;postminimus; -http://purl.obolibrary.org/obo/UBERON_3010209;keratinous claw; -http://purl.obolibrary.org/obo/UBERON_3010226;postiliac glands; -http://purl.obolibrary.org/obo/UBERON_3010227;costal protuberances; -http://purl.obolibrary.org/obo/UBERON_3010229;costal grooves; -http://purl.obolibrary.org/obo/UBERON_3010231;costal folds; -http://purl.obolibrary.org/obo/UBERON_3010235;nuchal groove; -http://purl.obolibrary.org/obo/UBERON_3010239;subocular groove; -http://purl.obolibrary.org/obo/UBERON_3010240;Nobelian rod; -http://purl.obolibrary.org/obo/UBERON_3010241;labial fold; -http://purl.obolibrary.org/obo/UBERON_3010242;nasolabial groove; -http://purl.obolibrary.org/obo/UBERON_3010243;ventricular musculature; -http://purl.obolibrary.org/obo/UBERON_3010259;phallodeum; -http://purl.obolibrary.org/obo/UBERON_3010260;intromittent organ (Ascaphus type); -http://purl.obolibrary.org/obo/UBERON_3010262;capitulum of radio-ulna; -http://purl.obolibrary.org/obo/UBERON_3010303;fasciculated network of fibrils; -http://purl.obolibrary.org/obo/UBERON_3010328;equatorial belt; -http://purl.obolibrary.org/obo/UBERON_3010377;unicellular gland; -http://purl.obolibrary.org/obo/UBERON_3010379;inner fin tissue; -http://purl.obolibrary.org/obo/UBERON_3010380;outer fin tissue; -http://purl.obolibrary.org/obo/UBERON_3010392;mesonephric early proximal tubule; -http://purl.obolibrary.org/obo/UBERON_3010393;mesonephric late distal segment;DT1 -http://purl.obolibrary.org/obo/UBERON_3010394;mesonephric late proximal tubule;PT3 -http://purl.obolibrary.org/obo/UBERON_3010394;mesonephric late proximal tubule;late proximal segment -http://purl.obolibrary.org/obo/UBERON_3010394;mesonephric late proximal tubule;proximal tubule 3 -http://purl.obolibrary.org/obo/UBERON_3010404;capillary system of liver;liver capillary -http://purl.obolibrary.org/obo/UBERON_3010413;left channel of ventral aorta; -http://purl.obolibrary.org/obo/UBERON_3010417;posterior palatine artery; -http://purl.obolibrary.org/obo/UBERON_3010423;larval aorta; -http://purl.obolibrary.org/obo/UBERON_3010424;right channel of ventral aorta; -http://purl.obolibrary.org/obo/UBERON_3010431;archenteron floor; -http://purl.obolibrary.org/obo/UBERON_3010432;archenteron roof;gastrocoel roof -http://purl.obolibrary.org/obo/UBERON_3010436;blastocoel roof; -http://purl.obolibrary.org/obo/UBERON_3010437;post-anal gut; -http://purl.obolibrary.org/obo/UBERON_3010447;M. extensor digitorum communis longus; -http://purl.obolibrary.org/obo/UBERON_3010449;dorsal marginal zone;DMZ -http://purl.obolibrary.org/obo/UBERON_3010450;dorso-lateral marginal zone; -http://purl.obolibrary.org/obo/UBERON_3010451;involuting marginal zone; -http://purl.obolibrary.org/obo/UBERON_3010452;non-involuting marginal zone; -http://purl.obolibrary.org/obo/UBERON_3010453;ventral marginal zone;VMZ -http://purl.obolibrary.org/obo/UBERON_3010454;ventro-lateral marginal zone; -http://purl.obolibrary.org/obo/UBERON_3010455;blastopore lip; -http://purl.obolibrary.org/obo/UBERON_3010456;lower blastopore lip; -http://purl.obolibrary.org/obo/UBERON_3010457;upper blastopore lip; -http://purl.obolibrary.org/obo/UBERON_3010458;suprarostral ala; -http://purl.obolibrary.org/obo/UBERON_3010463;animal cap; -http://purl.obolibrary.org/obo/UBERON_3010464;animal cap inner layer; -http://purl.obolibrary.org/obo/UBERON_3010465;animal cap outer layer; -http://purl.obolibrary.org/obo/UBERON_3010489;muscular artery; -http://purl.obolibrary.org/obo/UBERON_3010494;lateral pretrosal artery; -http://purl.obolibrary.org/obo/UBERON_3010496;mandibular artery; -http://purl.obolibrary.org/obo/UBERON_3010498;cutaneus artery; -http://purl.obolibrary.org/obo/UBERON_3010499;coeliaco-mesenteric artery; -http://purl.obolibrary.org/obo/UBERON_3010500;gastrico-linealis; -http://purl.obolibrary.org/obo/UBERON_3010501;duodeno-pancreatic artery; -http://purl.obolibrary.org/obo/UBERON_3010502;duodeno-hepatic artery; -http://purl.obolibrary.org/obo/UBERON_3010503;oviduct artery; -http://purl.obolibrary.org/obo/UBERON_3010506;postcaval vein; -http://purl.obolibrary.org/obo/UBERON_3010507;precaval vein; -http://purl.obolibrary.org/obo/UBERON_3010515;lateral vein; -http://purl.obolibrary.org/obo/UBERON_3010516;cutaneus magnus; -http://purl.obolibrary.org/obo/UBERON_3010517;ventral abdominal vein; -http://purl.obolibrary.org/obo/UBERON_3010519;Jacobson's vein; -http://purl.obolibrary.org/obo/UBERON_3010520;oviducal vein; -http://purl.obolibrary.org/obo/UBERON_3010523;M. plantaris longus; -http://purl.obolibrary.org/obo/UBERON_3010524;bronchial tube; -http://purl.obolibrary.org/obo/UBERON_3010525;frontoparietal fenestra; -http://purl.obolibrary.org/obo/UBERON_3010528;articular process of palatoquadrate; -http://purl.obolibrary.org/obo/UBERON_3010529;ovisac; -http://purl.obolibrary.org/obo/UBERON_3010541;median pars intermedia; -http://purl.obolibrary.org/obo/UBERON_3010557;triangular process; -http://purl.obolibrary.org/obo/UBERON_3010558;quadrato-ethmoid ligament; -http://purl.obolibrary.org/obo/UBERON_3010559;retroarticular process of the palatoquadrate; -http://purl.obolibrary.org/obo/UBERON_3010560;anterior process of the palatoquadrate; -http://purl.obolibrary.org/obo/UBERON_3010562;suboccular foramen; -http://purl.obolibrary.org/obo/UBERON_3010563;craniopalatine foramen; -http://purl.obolibrary.org/obo/UBERON_3010564;carotid foramen; -http://purl.obolibrary.org/obo/UBERON_3010565;pila preoptica; -http://purl.obolibrary.org/obo/UBERON_3010566;prootic foramen; -http://purl.obolibrary.org/obo/UBERON_3010576;prenasal (amphibians); -http://purl.obolibrary.org/obo/UBERON_3010583;basibranchial I; -http://purl.obolibrary.org/obo/UBERON_3010584;mandibular arch neural crest; -http://purl.obolibrary.org/obo/UBERON_3010585;basibranchial II; -http://purl.obolibrary.org/obo/UBERON_3010586;vasa efferentia; -http://purl.obolibrary.org/obo/UBERON_3010587;hyoid arch neural crest; -http://purl.obolibrary.org/obo/UBERON_3010589;cloacal papilla; -http://purl.obolibrary.org/obo/UBERON_3010590;amphibian cloacal gland; -http://purl.obolibrary.org/obo/UBERON_3010599;stratum spongiosum; -http://purl.obolibrary.org/obo/UBERON_3010602;granular gland; -http://purl.obolibrary.org/obo/UBERON_3010603;body gland; -http://purl.obolibrary.org/obo/UBERON_3010604;cranial glands; -http://purl.obolibrary.org/obo/UBERON_3010606;limb gland; -http://purl.obolibrary.org/obo/UBERON_3010613;laryngo-tracheal chamber; -http://purl.obolibrary.org/obo/UBERON_3010614;cartilago lateralis of aryngo-tracheal chamber; -http://purl.obolibrary.org/obo/UBERON_3010618;constrictor laryngis externus; -http://purl.obolibrary.org/obo/UBERON_3010620;dilatator laryngis; -http://purl.obolibrary.org/obo/UBERON_3010621;constrictor laryngis anterior; -http://purl.obolibrary.org/obo/UBERON_3010624;subarticular sesamoid; -http://purl.obolibrary.org/obo/UBERON_3010636;egg capsule; -http://purl.obolibrary.org/obo/UBERON_3010650;cephalodorsosubpharyngeus; -http://purl.obolibrary.org/obo/UBERON_3010651;levator bulbi; -http://purl.obolibrary.org/obo/UBERON_3010652;ramus nasalis lateralis; -http://purl.obolibrary.org/obo/UBERON_3010653;ramus nasalis medialis; -http://purl.obolibrary.org/obo/UBERON_3010654;rectus cervicis; -http://purl.obolibrary.org/obo/UBERON_3010657;subhyoideus; -http://purl.obolibrary.org/obo/UBERON_3010659;subarcualis rectus I; -http://purl.obolibrary.org/obo/UBERON_3010661;ramus nasalis internus; -http://purl.obolibrary.org/obo/UBERON_3010664;m. intertransversarius capitus superior; -http://purl.obolibrary.org/obo/UBERON_3010665;ramule palatinus; -http://purl.obolibrary.org/obo/UBERON_3010667;m. intertransversarius capitis inferior; -http://purl.obolibrary.org/obo/UBERON_3010668;ramules cutaneous; -http://purl.obolibrary.org/obo/UBERON_3010669;trunk maxillary-mandibularis; -http://purl.obolibrary.org/obo/UBERON_3010671;ramule palatonasalis; -http://purl.obolibrary.org/obo/UBERON_3010673;m. rhomboideus anterior; -http://purl.obolibrary.org/obo/UBERON_3010675;bony nodule of terminal phalanx of hind digit; -http://purl.obolibrary.org/obo/UBERON_3010682;proximal-most prepollical element; -http://purl.obolibrary.org/obo/UBERON_3010683;distal-most prepollical element; -http://purl.obolibrary.org/obo/UBERON_3010684;proximal-most prehallical element; -http://purl.obolibrary.org/obo/UBERON_3010685;distal-most prehallical element; -http://purl.obolibrary.org/obo/UBERON_3010690;fetal tooth;fetal teeth -http://purl.obolibrary.org/obo/UBERON_3010691;m. opercularis; -http://purl.obolibrary.org/obo/UBERON_3010692;m. cucullaris; -http://purl.obolibrary.org/obo/UBERON_3010693;ramus posterior profundus of V3; -http://purl.obolibrary.org/obo/UBERON_3010694;m. rhomboideus posterior; -http://purl.obolibrary.org/obo/UBERON_3010695;m. serratus superior; -http://purl.obolibrary.org/obo/UBERON_3010698;m. serratus medius; -http://purl.obolibrary.org/obo/UBERON_3010699;m. serratus inferior; -http://purl.obolibrary.org/obo/UBERON_3010700;levator mandibulae externus; -http://purl.obolibrary.org/obo/UBERON_3010701;m. latissimus dorsi; -http://purl.obolibrary.org/obo/UBERON_3010704;levator mandibulae longus; -http://purl.obolibrary.org/obo/UBERON_3010706;lateral line nucleus; -http://purl.obolibrary.org/obo/UBERON_3010707;m. dorsalis scapulae; -http://purl.obolibrary.org/obo/UBERON_3010708;levator mandibulae articularis; -http://purl.obolibrary.org/obo/UBERON_3010709;levator mandibulae lateralis; -http://purl.obolibrary.org/obo/UBERON_3010710;m. interscapularis; -http://purl.obolibrary.org/obo/UBERON_3010711;levator mandibulae externus superficialis; -http://purl.obolibrary.org/obo/UBERON_3010712;levator mandibulae externus profundus; -http://purl.obolibrary.org/obo/UBERON_3010713;m. sternoepicoracoideus; -http://purl.obolibrary.org/obo/UBERON_3010719;dilated medial process of metacarpal IV; -http://purl.obolibrary.org/obo/UBERON_3010720;ramus hyomandibularis; -http://purl.obolibrary.org/obo/UBERON_3010721;limb villosities; -http://purl.obolibrary.org/obo/UBERON_3010722;ramus palatinus; -http://purl.obolibrary.org/obo/UBERON_3010724;levator quadrati; -http://purl.obolibrary.org/obo/UBERON_3010725;M. coracoradialis; -http://purl.obolibrary.org/obo/UBERON_3010726;ramus muscularis of glossopharyngeus nerve; -http://purl.obolibrary.org/obo/UBERON_3010728;otic opercular element;otic operculum -http://purl.obolibrary.org/obo/UBERON_3010729;M. coracobrachialis longus; -http://purl.obolibrary.org/obo/UBERON_3010731;M. coracobrachialis brevis; -http://purl.obolibrary.org/obo/UBERON_3010734;M. flexor carpi ulnaris; -http://purl.obolibrary.org/obo/UBERON_3010735;ramus anterior of CN VIII; -http://purl.obolibrary.org/obo/UBERON_3010736;ramus posterior of CN VIII; -http://purl.obolibrary.org/obo/UBERON_3010737;M. palmaris longus; -http://purl.obolibrary.org/obo/UBERON_3010738;M. palmaris profundis; -http://purl.obolibrary.org/obo/UBERON_3010739;M. flexor antibrachii medialis; -http://purl.obolibrary.org/obo/UBERON_3010740;ramus auricularis of the vagus nerve; -http://purl.obolibrary.org/obo/UBERON_3010741;M. ulnocarpalis; -http://purl.obolibrary.org/obo/UBERON_3010742;interhyoideus posterior; -http://purl.obolibrary.org/obo/UBERON_3010743;M. flexor antibrachii lateralis superficialis; -http://purl.obolibrary.org/obo/UBERON_3010744;M. flexor antibrachii lateralis profundus; -http://purl.obolibrary.org/obo/UBERON_3010745;M. coccygeosacralis; -http://purl.obolibrary.org/obo/UBERON_3010746;T-shaped terminal phalanx; -http://purl.obolibrary.org/obo/UBERON_3010747;submentalis; -http://purl.obolibrary.org/obo/UBERON_3010748;M. coccygeoiliacus; -http://purl.obolibrary.org/obo/UBERON_3010749;M. iliolumbaris; -http://purl.obolibrary.org/obo/UBERON_3010750;descending branch of the vagus nerve; -http://purl.obolibrary.org/obo/UBERON_3010751;ramus muscularis of vagus nerve; -http://purl.obolibrary.org/obo/UBERON_3010754;ramus recurrens; -http://purl.obolibrary.org/obo/UBERON_3010757;ramus superficial ophthalmic; -http://purl.obolibrary.org/obo/UBERON_3010758;M. coccygeocutaneus; -http://purl.obolibrary.org/obo/UBERON_3010759;ramus buccal; -http://purl.obolibrary.org/obo/UBERON_3010764;laryngeus ventralis; -http://purl.obolibrary.org/obo/UBERON_3010765;ramus mandibularis externus; -http://purl.obolibrary.org/obo/UBERON_3010770;dorsal sympathetic chain; -http://purl.obolibrary.org/obo/UBERON_3010771;ventral sympathetic chain; -http://purl.obolibrary.org/obo/UBERON_3010772;M. dorsalis trunci; -http://purl.obolibrary.org/obo/UBERON_3010778;jugal ramule; -http://purl.obolibrary.org/obo/UBERON_3010780;pars recta; -http://purl.obolibrary.org/obo/UBERON_3010781;pars convoluta of oviduct; -http://purl.obolibrary.org/obo/UBERON_3010783;m. oblique externus; -http://purl.obolibrary.org/obo/UBERON_3010784;m. oblique internus; -http://purl.obolibrary.org/obo/UBERON_3010785;m. transversus; -http://purl.obolibrary.org/obo/UBERON_3010786;pars subvertebralis; -http://purl.obolibrary.org/obo/UBERON_3010787;pars transversalis; -http://purl.obolibrary.org/obo/UBERON_3010790;muscle rectus abdominis superficialis; -http://purl.obolibrary.org/obo/UBERON_3010792;musculus rectus abdominis profundus; -http://purl.obolibrary.org/obo/UBERON_3010793;m. ypsiloideus anterior; -http://purl.obolibrary.org/obo/UBERON_3010794;oral ramule; -http://purl.obolibrary.org/obo/UBERON_3010795;preopercular ramule; -http://purl.obolibrary.org/obo/UBERON_3010796;ramus supraotic; -http://purl.obolibrary.org/obo/UBERON_3010797;m. ypsiloideus posterior; -http://purl.obolibrary.org/obo/UBERON_3010798;ramulus suprabranchialis anterior; -http://purl.obolibrary.org/obo/UBERON_3010799;ramulus suprabranchialis posterior; -http://purl.obolibrary.org/obo/UBERON_3010801;ramus lateral; -http://purl.obolibrary.org/obo/UBERON_3010802;courtship gland; -http://purl.obolibrary.org/obo/UBERON_3010804;ramus ventral; -http://purl.obolibrary.org/obo/UBERON_3010813;vent glands; -http://purl.obolibrary.org/obo/UBERON_3010815;m. flexor indicis superficialis proprius; -http://purl.obolibrary.org/obo/UBERON_3010818;hepatic peritoneum; -http://purl.obolibrary.org/obo/UBERON_3010819;gastrointestinal peritoneum; -http://purl.obolibrary.org/obo/UBERON_3010820;suboccular arch; -http://purl.obolibrary.org/obo/UBERON_3010821;hyoquadrate process; -http://purl.obolibrary.org/obo/UBERON_3010824;processus triangularis of palatoquadrate cartilage; -http://purl.obolibrary.org/obo/UBERON_3010827;anterior prenasal cartilage; -http://purl.obolibrary.org/obo/UBERON_3010828;commissura terminales of hyoid apparatus; -http://purl.obolibrary.org/obo/UBERON_3010829;sulcus intermedius; -http://purl.obolibrary.org/obo/UBERON_3010830;spicule; -http://purl.obolibrary.org/obo/UBERON_3010831;occipito-petrosal;occipital-petrosal -http://purl.obolibrary.org/obo/UBERON_3010832;occipital segment; -http://purl.obolibrary.org/obo/UBERON_3010836;posterolateral supplementary element; -http://purl.obolibrary.org/obo/UBERON_3010837;apical supplementary element; -http://purl.obolibrary.org/obo/UBERON_3010838;anterolateral supplementary element; -http://purl.obolibrary.org/obo/UBERON_3011040;first pancreatic bud; -http://purl.obolibrary.org/obo/UBERON_3011120;early proximal tubule;PT2 -http://purl.obolibrary.org/obo/UBERON_3011121;late distal segment; -http://purl.obolibrary.org/obo/UBERON_4000003;permanent cartilage; -http://purl.obolibrary.org/obo/UBERON_4000013;mineralized skeletal tissue; -http://purl.obolibrary.org/obo/UBERON_4000020;mineralized extracellular matrix; -http://purl.obolibrary.org/obo/UBERON_4000028;integumentary papilla;scale papilla -http://purl.obolibrary.org/obo/UBERON_4000030;oropharyngeal papilla;oropharyngeal dental papilla -http://purl.obolibrary.org/obo/UBERON_4000051;lepidosteoid scale; -http://purl.obolibrary.org/obo/UBERON_4000052;ganoid scale; -http://purl.obolibrary.org/obo/UBERON_4000053;vacuolated notochordal tissue;notochord proper -http://purl.obolibrary.org/obo/UBERON_4000055;polypteroid scale;polypterid scale -http://purl.obolibrary.org/obo/UBERON_4000059;avascular GAG-rich matrix;avascular glycosaminoglycan-rich matrix -http://purl.obolibrary.org/obo/UBERON_4000059;avascular GAG-rich matrix;cartilage matrix -http://purl.obolibrary.org/obo/UBERON_4000059;avascular GAG-rich matrix;cartilage-like matrix -http://purl.obolibrary.org/obo/UBERON_4000070;elasmoid scale; -http://purl.obolibrary.org/obo/UBERON_4000074;palaeoniscoid scale;Palaeoniscus-type scale -http://purl.obolibrary.org/obo/UBERON_4000077;non-mineralized chondroid tissue; -http://purl.obolibrary.org/obo/UBERON_4000078;chondroid tissue;chondroid bone tissue -http://purl.obolibrary.org/obo/UBERON_4000080;keratin-based scale; -http://purl.obolibrary.org/obo/UBERON_4000081;cosmoid scale; -http://purl.obolibrary.org/obo/UBERON_4000086;secondary cartilage tissue; -http://purl.obolibrary.org/obo/UBERON_4000087;cosmine;cosmoid scale tissue -http://purl.obolibrary.org/obo/UBERON_4000088;mineralized cartilage tissue; -http://purl.obolibrary.org/obo/UBERON_4000090;integumentary skeleton; -http://purl.obolibrary.org/obo/UBERON_4000097;orthodentine; -http://purl.obolibrary.org/obo/UBERON_4000102;osteodentine; -http://purl.obolibrary.org/obo/UBERON_4000104;ganoine; -http://purl.obolibrary.org/obo/UBERON_4000105;limiting layer of elasmoid scale; -http://purl.obolibrary.org/obo/UBERON_4000106;vasodentine;vascular dentine -http://purl.obolibrary.org/obo/UBERON_4000107;elasmodine; -http://purl.obolibrary.org/obo/UBERON_4000108;non-mineralized hyaline cartilage tissue; -http://purl.obolibrary.org/obo/UBERON_4000109;mineralized hyaline cartilage tissue; -http://purl.obolibrary.org/obo/UBERON_4000115;mineralized bone tissue; -http://purl.obolibrary.org/obo/UBERON_4000118;cellular bone tissue; -http://purl.obolibrary.org/obo/UBERON_4000119;non-mineralized avascular GAG-rich matrix;non-mineralized cartilage -http://purl.obolibrary.org/obo/UBERON_4000120;mineralized avascular GAG-rich matrix; -http://purl.obolibrary.org/obo/UBERON_4000122;acellular bone tissue; -http://purl.obolibrary.org/obo/UBERON_4000123;odontode tissue; -http://purl.obolibrary.org/obo/UBERON_4000134;ossified tendon; -http://purl.obolibrary.org/obo/UBERON_4000138;ligamentous replacement element; -http://purl.obolibrary.org/obo/UBERON_4000146;transient cartilaginous element;endochondral replacement cartilage -http://purl.obolibrary.org/obo/UBERON_4000159;ossified ligament; -http://purl.obolibrary.org/obo/UBERON_4000160;anocleithrum;anocleithra -http://purl.obolibrary.org/obo/UBERON_4000162;median fin;nageoire impaire -http://purl.obolibrary.org/obo/UBERON_4000162;median fin;périssoptérygie -http://purl.obolibrary.org/obo/UBERON_4000163;anal fin;nageoire anale -http://purl.obolibrary.org/obo/UBERON_4000163;anal fin;proctoptère -http://purl.obolibrary.org/obo/UBERON_4000163;anal fin;proctoptérygie -http://purl.obolibrary.org/obo/UBERON_4000164;caudal fin;nageoire caudale -http://purl.obolibrary.org/obo/UBERON_4000164;caudal fin;uroptère -http://purl.obolibrary.org/obo/UBERON_4000164;caudal fin;uroptérygie -http://purl.obolibrary.org/obo/UBERON_4000166;anal fin skeleton; -http://purl.obolibrary.org/obo/UBERON_4000167;caudal fin skeleton; -http://purl.obolibrary.org/obo/UBERON_4000168;dorsal fin skeleton; -http://purl.obolibrary.org/obo/UBERON_4000170;median fin skeleton;axial fin skeleton -http://purl.obolibrary.org/obo/UBERON_4000170;median fin skeleton;unpaired fin skeleton -http://purl.obolibrary.org/obo/UBERON_4000171;scapular complex; -http://purl.obolibrary.org/obo/UBERON_4000172;lepidotrichium; -http://purl.obolibrary.org/obo/UBERON_4000173;pelvic fin lepidotrichium;pelvic fin lepidotrichia -http://purl.obolibrary.org/obo/UBERON_4000174;caudal fin lepidotrichium; -http://purl.obolibrary.org/obo/UBERON_4000175;pectoral fin lepidotrichium;pectoral fin lepidotrichia -http://purl.obolibrary.org/obo/UBERON_4000176;anal fin lepidotrichium;anal fin lepidotrichia -http://purl.obolibrary.org/obo/UBERON_4000177;dorsal fin lepidotrichium;dorsal fin lepidotrichia -http://purl.obolibrary.org/obo/UBERON_4000182;suprabranchial fin; -http://purl.obolibrary.org/obo/UBERON_4100000;skeletal element projection; -http://purl.obolibrary.org/obo/UBERON_4100003;articular surface; -http://purl.obolibrary.org/obo/UBERON_4100004;ischial peduncle; -http://purl.obolibrary.org/obo/UBERON_4100005;second phalanx; -http://purl.obolibrary.org/obo/UBERON_4100006;parasternal process;posterior stalk of intercalvicle -http://purl.obolibrary.org/obo/UBERON_4100006;parasternal process;posterior stem of interclavicle -http://purl.obolibrary.org/obo/UBERON_4100007;pectoral articular facet; -http://purl.obolibrary.org/obo/UBERON_4100009;pedal digit 7 phalanx; -http://purl.obolibrary.org/obo/UBERON_4100010;post-glenoid process; -http://purl.obolibrary.org/obo/UBERON_4100011;postacetabular buttress; -http://purl.obolibrary.org/obo/UBERON_4100012;postacetabular zone; -http://purl.obolibrary.org/obo/UBERON_4100013;postcoracoid; -http://purl.obolibrary.org/obo/UBERON_4100014;posterior dorsal fin; -http://purl.obolibrary.org/obo/UBERON_4100016;posterior process of ilium; -http://purl.obolibrary.org/obo/UBERON_4100100;parasphenoid flange; -http://purl.obolibrary.org/obo/UBERON_4100111;hemipenal sheath;hemipenial sheath -http://purl.obolibrary.org/obo/UBERON_4100111;hemipenal sheath;sheath of hemipenis -http://purl.obolibrary.org/obo/UBERON_4100112;radial facet; -http://purl.obolibrary.org/obo/UBERON_4100113;dermal intracranial joint; -http://purl.obolibrary.org/obo/UBERON_4100114;anterior distal condyle of femur; -http://purl.obolibrary.org/obo/UBERON_4100115;spiracular notch; -http://purl.obolibrary.org/obo/UBERON_4100116;posterior distal condyle of femur; -http://purl.obolibrary.org/obo/UBERON_4100117;presacral rib; -http://purl.obolibrary.org/obo/UBERON_4100118;trunk rib; -http://purl.obolibrary.org/obo/UBERON_4100119;extratemporal bone;postspiracular -http://purl.obolibrary.org/obo/UBERON_4100121;thagomizer; -http://purl.obolibrary.org/obo/UBERON_4200000;medial blade of ilium; -http://purl.obolibrary.org/obo/UBERON_4200001;postpubis; -http://purl.obolibrary.org/obo/UBERON_4200002;coracoid plate; -http://purl.obolibrary.org/obo/UBERON_4200003;archipterygial fin; -http://purl.obolibrary.org/obo/UBERON_4200004;intertrochanteric fossa; -http://purl.obolibrary.org/obo/UBERON_4200006;infraglenoid buttress; -http://purl.obolibrary.org/obo/UBERON_4200007;transverse pelvic ridge; -http://purl.obolibrary.org/obo/UBERON_4200008;inter-clavicle joint;interclavicle joint -http://purl.obolibrary.org/obo/UBERON_4200009;hypochordal lepidotrichium; -http://purl.obolibrary.org/obo/UBERON_4200010;ventral humeral ridge; -http://purl.obolibrary.org/obo/UBERON_4200011;pedal centrale; -http://purl.obolibrary.org/obo/UBERON_4200012;ectepicondylar flange; -http://purl.obolibrary.org/obo/UBERON_4200013;flexor surface; -http://purl.obolibrary.org/obo/UBERON_4200014;lateral tuber of ulna; -http://purl.obolibrary.org/obo/UBERON_4200015;inner digits of foot; -http://purl.obolibrary.org/obo/UBERON_4200016;postbranchial lamina; -http://purl.obolibrary.org/obo/UBERON_4200018;calcaneal tuber; -http://purl.obolibrary.org/obo/UBERON_4200019;preacetabular process; -http://purl.obolibrary.org/obo/UBERON_4200020;suprascapular fossa; -http://purl.obolibrary.org/obo/UBERON_4200021;astragalus-calcaneum unit; -http://purl.obolibrary.org/obo/UBERON_4200022;extracleithrum; -http://purl.obolibrary.org/obo/UBERON_4200023;anterior dorsal fin; -http://purl.obolibrary.org/obo/UBERON_4200025;ascending process of the astragalus; -http://purl.obolibrary.org/obo/UBERON_4200026;supraglenoid foramen; -http://purl.obolibrary.org/obo/UBERON_4200027;supraglenoid buttress; -http://purl.obolibrary.org/obo/UBERON_4200028;adductor blade; -http://purl.obolibrary.org/obo/UBERON_4200029;adductor crest; -http://purl.obolibrary.org/obo/UBERON_4200030;antitrochanter; -http://purl.obolibrary.org/obo/UBERON_4200031;caudalipuboischiotibialis; -http://purl.obolibrary.org/obo/UBERON_4200032;clavicle blade; -http://purl.obolibrary.org/obo/UBERON_4200033;cleithrum head; -http://purl.obolibrary.org/obo/UBERON_4200034;cnemial crest; -http://purl.obolibrary.org/obo/UBERON_4200036;internal trochanter; -http://purl.obolibrary.org/obo/UBERON_4200037;supinator process; -http://purl.obolibrary.org/obo/UBERON_4200038;subscapular fossa; -http://purl.obolibrary.org/obo/UBERON_4200039;supraacetabular buttress; -http://purl.obolibrary.org/obo/UBERON_4200040;acrocoracoid process; -http://purl.obolibrary.org/obo/UBERON_4200041;aponeurosis palmaris; -http://purl.obolibrary.org/obo/UBERON_4200042;brevis shelf; -http://purl.obolibrary.org/obo/UBERON_4200043;brevis fossa; -http://purl.obolibrary.org/obo/UBERON_4200044;articular surface for the calcaneum on the astragalus; -http://purl.obolibrary.org/obo/UBERON_4200045;articular surface for the astragalus on the calcaneum; -http://purl.obolibrary.org/obo/UBERON_4200046;astragalo-calcaneal canal; -http://purl.obolibrary.org/obo/UBERON_4200047;attachment site; -http://purl.obolibrary.org/obo/UBERON_4200048;bicipital crest;crista bicipitalis -http://purl.obolibrary.org/obo/UBERON_4200048;bicipital crest;crista tuberculi majoris -http://purl.obolibrary.org/obo/UBERON_4200049;cartilago sesamoides; -http://purl.obolibrary.org/obo/UBERON_4200050;cotyla; -http://purl.obolibrary.org/obo/UBERON_4200051;cotyloid notch; -http://purl.obolibrary.org/obo/UBERON_4200052;crista tibiofibularis; -http://purl.obolibrary.org/obo/UBERON_4200053;diphycercal tail;isocercal tail -http://purl.obolibrary.org/obo/UBERON_4200054;heterocercal tail; -http://purl.obolibrary.org/obo/UBERON_4200055;homocercal tail; -http://purl.obolibrary.org/obo/UBERON_4200056;hypocercal tail; -http://purl.obolibrary.org/obo/UBERON_4200060;ectepicondylar foramen; -http://purl.obolibrary.org/obo/UBERON_4200061;epicercal tail; -http://purl.obolibrary.org/obo/UBERON_4200062;epichordal lepidotrichium; -http://purl.obolibrary.org/obo/UBERON_4200063;ectocondylar tubercle; -http://purl.obolibrary.org/obo/UBERON_4200068;prepubic element; -http://purl.obolibrary.org/obo/UBERON_4200069;sternal keel;carina -http://purl.obolibrary.org/obo/UBERON_4200069;sternal keel;carina sterni -http://purl.obolibrary.org/obo/UBERON_4200069;sternal keel;crista sterni -http://purl.obolibrary.org/obo/UBERON_4200070;median fin spine; -http://purl.obolibrary.org/obo/UBERON_4200075;fin spine; -http://purl.obolibrary.org/obo/UBERON_4200076;trunk armor pectoral fenestra;trunk armour pectoral fenestra -http://purl.obolibrary.org/obo/UBERON_4200078;clavicular facet; -http://purl.obolibrary.org/obo/UBERON_4200079;dorsal iliac process; -http://purl.obolibrary.org/obo/UBERON_4200080;fibular crest; -http://purl.obolibrary.org/obo/UBERON_4200081;hypocleideum; -http://purl.obolibrary.org/obo/UBERON_4200083;postaxial centrale; -http://purl.obolibrary.org/obo/UBERON_4200084;preaxial centrale; -http://purl.obolibrary.org/obo/UBERON_4200086;iliac neck;neck of ilium -http://purl.obolibrary.org/obo/UBERON_4200087;iliac peduncle; -http://purl.obolibrary.org/obo/UBERON_4200088;iliac peduncle of the pubis; -http://purl.obolibrary.org/obo/UBERON_4200089;fibular facet of the calcaneum; -http://purl.obolibrary.org/obo/UBERON_4200090;fibular facet of the astragalus; -http://purl.obolibrary.org/obo/UBERON_4200091;ethomosphenoid region; -http://purl.obolibrary.org/obo/UBERON_4200092;flexor tubercle of ungual; -http://purl.obolibrary.org/obo/UBERON_4200093;guard scale; -http://purl.obolibrary.org/obo/UBERON_4200094;inner digits of hand; -http://purl.obolibrary.org/obo/UBERON_4200095;infraspinous process; -http://purl.obolibrary.org/obo/UBERON_4200096;intercondylar fossa;femoral groove -http://purl.obolibrary.org/obo/UBERON_4200096;intercondylar fossa;femoral sulcus -http://purl.obolibrary.org/obo/UBERON_4200096;intercondylar fossa;femoropatellar groove -http://purl.obolibrary.org/obo/UBERON_4200096;intercondylar fossa;patellar groove -http://purl.obolibrary.org/obo/UBERON_4200096;intercondylar fossa;patellar sulcus -http://purl.obolibrary.org/obo/UBERON_4200096;intercondylar fossa;patellar surface of femur -http://purl.obolibrary.org/obo/UBERON_4200096;intercondylar fossa;patellofemoral groove -http://purl.obolibrary.org/obo/UBERON_4200096;intercondylar fossa;trochlea of femur -http://purl.obolibrary.org/obo/UBERON_4200096;intercondylar fossa;trochlear groove of femur -http://purl.obolibrary.org/obo/UBERON_4200096;intercondylar fossa;trochlear sulcus of femur -http://purl.obolibrary.org/obo/UBERON_4200096;intercondylar fossa;trochlear surface of femur -http://purl.obolibrary.org/obo/UBERON_4200097;intermediate spine; -http://purl.obolibrary.org/obo/UBERON_4200098;ischial foot; -http://purl.obolibrary.org/obo/UBERON_4200099;lateral extrascapular; -http://purl.obolibrary.org/obo/UBERON_4200100;latissimus dorsi process; -http://purl.obolibrary.org/obo/UBERON_4200101;m.scapulotriceps; -http://purl.obolibrary.org/obo/UBERON_4200102;median dorsal plate; -http://purl.obolibrary.org/obo/UBERON_4200103;median extrascapular; -http://purl.obolibrary.org/obo/UBERON_4200104;metacarpal extensor pit; -http://purl.obolibrary.org/obo/UBERON_4200105;nerve foramen; -http://purl.obolibrary.org/obo/UBERON_4200106;muscle scar; -http://purl.obolibrary.org/obo/UBERON_4200107;obturator process of ischium; -http://purl.obolibrary.org/obo/UBERON_4200108;outer digit of hand; -http://purl.obolibrary.org/obo/UBERON_4200109;outer digits of pes; -http://purl.obolibrary.org/obo/UBERON_4200110;prepectoral spine; -http://purl.obolibrary.org/obo/UBERON_4200111;prepelvic fin spine; -http://purl.obolibrary.org/obo/UBERON_4200112;prepectoral space; -http://purl.obolibrary.org/obo/UBERON_4200113;predorsal scute; -http://purl.obolibrary.org/obo/UBERON_4200114;prepubic process; -http://purl.obolibrary.org/obo/UBERON_4200115;presupracleithrum; -http://purl.obolibrary.org/obo/UBERON_4200116;pteroid; -http://purl.obolibrary.org/obo/UBERON_4200117;pubic boot; -http://purl.obolibrary.org/obo/UBERON_4200118;pubic peduncle; -http://purl.obolibrary.org/obo/UBERON_4200119;pubis-ischium contact; -http://purl.obolibrary.org/obo/UBERON_4200120;puboischiadic plate; -http://purl.obolibrary.org/obo/UBERON_4200121;puboischiotibialis muscle;M. puboischiotibialis -http://purl.obolibrary.org/obo/UBERON_4200121;puboischiotibialis muscle;puboischiotibialis -http://purl.obolibrary.org/obo/UBERON_4200122;pubotibialis; -http://purl.obolibrary.org/obo/UBERON_4200123;scapular process; -http://purl.obolibrary.org/obo/UBERON_4200124;sternal trabecula; -http://purl.obolibrary.org/obo/UBERON_4200125;supraacetabular crest; -http://purl.obolibrary.org/obo/UBERON_4200126;supraacetabular rim; -http://purl.obolibrary.org/obo/UBERON_4200127;suprascapula foramen; -http://purl.obolibrary.org/obo/UBERON_4200128;synarcual region of vertebral column;synarcuum -http://purl.obolibrary.org/obo/UBERON_4200129;synarcual region; -http://purl.obolibrary.org/obo/UBERON_4200130;tibial facet of astragalus; -http://purl.obolibrary.org/obo/UBERON_4200131;trochanteric shelf; -http://purl.obolibrary.org/obo/UBERON_4200133;crest; -http://purl.obolibrary.org/obo/UBERON_4200134;antimere; -http://purl.obolibrary.org/obo/UBERON_4200135;puboischiadic bar; -http://purl.obolibrary.org/obo/UBERON_4200136;triphycercal tail; -http://purl.obolibrary.org/obo/UBERON_4200139;palatoquadrate element; -http://purl.obolibrary.org/obo/UBERON_4200140;prepollical element; -http://purl.obolibrary.org/obo/UBERON_4200141;prehallical element; -http://purl.obolibrary.org/obo/UBERON_4200150;accessory foramen; -http://purl.obolibrary.org/obo/UBERON_4200151;toe disc; -http://purl.obolibrary.org/obo/UBERON_4200152;intertarsale sesamoid; -http://purl.obolibrary.org/obo/UBERON_4200153;metatarsal bone of digit 6; -http://purl.obolibrary.org/obo/UBERON_4200154;metapodium bone 6; -http://purl.obolibrary.org/obo/UBERON_4200155;metapodium bone 7; -http://purl.obolibrary.org/obo/UBERON_4200156;metapodium bone 8; -http://purl.obolibrary.org/obo/UBERON_4200157;metatarsal bone of digit 7; -http://purl.obolibrary.org/obo/UBERON_4200158;metatarsal bone of digit 8; -http://purl.obolibrary.org/obo/UBERON_4200159;ventral ridge system; -http://purl.obolibrary.org/obo/UBERON_4200160;mesomere (fin); -http://purl.obolibrary.org/obo/UBERON_4200161;mesomere 5; -http://purl.obolibrary.org/obo/UBERON_4200162;mesomere 4; -http://purl.obolibrary.org/obo/UBERON_4200165;basal scute; -http://purl.obolibrary.org/obo/UBERON_4200166;hindlimb interepipodial space; -http://purl.obolibrary.org/obo/UBERON_4200167;mesial pelvic ridge; -http://purl.obolibrary.org/obo/UBERON_4200169;process 2 of entepicondyle; -http://purl.obolibrary.org/obo/UBERON_4200170;process 3 of entepicondyle; -http://purl.obolibrary.org/obo/UBERON_4200171;process 4 of entepicondyle; -http://purl.obolibrary.org/obo/UBERON_4200172;neck of humerus;collum anatomicum (Humerus) -http://purl.obolibrary.org/obo/UBERON_4200172;neck of humerus;collum anatomicum humeri -http://purl.obolibrary.org/obo/UBERON_4200172;neck of humerus;humeral neck -http://purl.obolibrary.org/obo/UBERON_4200173;dorsal ridge; -http://purl.obolibrary.org/obo/UBERON_4200174;distal condyle of humerus; -http://purl.obolibrary.org/obo/UBERON_4200175;supraglenoid region; -http://purl.obolibrary.org/obo/UBERON_4200176;ascending process of clavicle; -http://purl.obolibrary.org/obo/UBERON_4200177;supracondyle tubercle; -http://purl.obolibrary.org/obo/UBERON_4200178;proximal mesomere; -http://purl.obolibrary.org/obo/UBERON_4200180;semilunate carpal; -http://purl.obolibrary.org/obo/UBERON_4200181;astragalus head;talus head -http://purl.obolibrary.org/obo/UBERON_4200182;lateral tubercle of astragalus; -http://purl.obolibrary.org/obo/UBERON_4200183;bicipital tuberosity; -http://purl.obolibrary.org/obo/UBERON_4200184;ulnar tuberosity; -http://purl.obolibrary.org/obo/UBERON_4200185;entepicondyle fossa; -http://purl.obolibrary.org/obo/UBERON_4200186;distal keel of metacarpal III; -http://purl.obolibrary.org/obo/UBERON_4200188;manual toe disc; -http://purl.obolibrary.org/obo/UBERON_4200189;pedal toe disc; -http://purl.obolibrary.org/obo/UBERON_4200190;zygosphene; -http://purl.obolibrary.org/obo/UBERON_4200192;ulnar facet of the humerus; -http://purl.obolibrary.org/obo/UBERON_4200193;posterodorsal process of ilium; -http://purl.obolibrary.org/obo/UBERON_4200194;intercentrum; -http://purl.obolibrary.org/obo/UBERON_4200195;pleurocentrum; -http://purl.obolibrary.org/obo/UBERON_4200196;atlas intercentrum; -http://purl.obolibrary.org/obo/UBERON_4200197;anterior humeral ridge; -http://purl.obolibrary.org/obo/UBERON_4200198;incisor process; -http://purl.obolibrary.org/obo/UBERON_4200199;sallet sensory system;sallet restraint system -http://purl.obolibrary.org/obo/UBERON_4200203;humeral facet on the ulna; -http://purl.obolibrary.org/obo/UBERON_4200204;humeral facet on radius;proximal articular surface of radius -http://purl.obolibrary.org/obo/UBERON_4200206;internal rim of coracoid foramen; -http://purl.obolibrary.org/obo/UBERON_4200207;external rim of the coracoid foramen; -http://purl.obolibrary.org/obo/UBERON_4200208;pectoral fin intermediate radial bone; -http://purl.obolibrary.org/obo/UBERON_4200209;postaxial process of the ulnare; -http://purl.obolibrary.org/obo/UBERON_4200210;postaxial process of the femur; -http://purl.obolibrary.org/obo/UBERON_4200211;postaxial process of the fibula; -http://purl.obolibrary.org/obo/UBERON_4200212;pectoral process of humerus; -http://purl.obolibrary.org/obo/UBERON_4200213;deltoid process; -http://purl.obolibrary.org/obo/UBERON_4200214;epipodial facet; -http://purl.obolibrary.org/obo/UBERON_4200215;suture; -http://purl.obolibrary.org/obo/UBERON_4200216;fibula facet of femur; -http://purl.obolibrary.org/obo/UBERON_4200217;tibial facet of femur; -http://purl.obolibrary.org/obo/UBERON_4200218;musculotendinous bundle; -http://purl.obolibrary.org/obo/UBERON_4200219;middle phalanx of manual digit 1; -http://purl.obolibrary.org/obo/UBERON_4200220;iliac ramus; -http://purl.obolibrary.org/obo/UBERON_4200221;growth line; -http://purl.obolibrary.org/obo/UBERON_4200222;distal groove of humerus; -http://purl.obolibrary.org/obo/UBERON_4200223;foramen C; -http://purl.obolibrary.org/obo/UBERON_4200224;columnar area; -http://purl.obolibrary.org/obo/UBERON_4200225;scapulohumeralis muscle; -http://purl.obolibrary.org/obo/UBERON_4200226;anteroventral process of cleithrum; -http://purl.obolibrary.org/obo/UBERON_4200228;excurrent foramen of ectepicondylar foramen; -http://purl.obolibrary.org/obo/UBERON_4200229;incurrent foramen of ectepicondylar foramen; -http://purl.obolibrary.org/obo/UBERON_4200230;surface of bone;bone surface -http://purl.obolibrary.org/obo/UBERON_4200231;unfinished bone surface; -http://purl.obolibrary.org/obo/UBERON_4200232;finished bone surface; -http://purl.obolibrary.org/obo/UBERON_4200233;dorsal clavicular process;ascending dorsal clavicular process -http://purl.obolibrary.org/obo/UBERON_4200234;precoronoid bone; -http://purl.obolibrary.org/obo/UBERON_4200235;postcoronoid bone; -http://purl.obolibrary.org/obo/UBERON_4200236;anterior coronoid bone; -http://purl.obolibrary.org/obo/UBERON_4200237;posterior coronoid bone; -http://purl.obolibrary.org/obo/UBERON_4200238;coronoid fang; -http://purl.obolibrary.org/obo/UBERON_4200239;shagreen tooth field; -http://purl.obolibrary.org/obo/UBERON_4200240;fronto-ethmoidal shield; -http://purl.obolibrary.org/obo/UBERON_4200241;postrostral bone; -http://purl.obolibrary.org/obo/UBERON_4200242;median postrostral bone; -http://purl.obolibrary.org/obo/UBERON_4200243;surangular pit line; -http://purl.obolibrary.org/obo/UBERON_4200244;anterior supraorbital bone; -http://purl.obolibrary.org/obo/UBERON_4200245;parasymphysial plate; -http://purl.obolibrary.org/obo/UBERON_4200246;mesial parasymphysial foramen; -http://purl.obolibrary.org/obo/UBERON_4200247;lateral parasymphysial foramen; -http://purl.obolibrary.org/obo/UBERON_4200248;hypophysial region;hypophyseal region -http://purl.obolibrary.org/obo/UBERON_4200250;meckelian bone; -http://purl.obolibrary.org/obo/UBERON_4200251;meckelian foramen; -http://purl.obolibrary.org/obo/UBERON_4300002;palatine prong; -http://purl.obolibrary.org/obo/UBERON_4300003;urodermal bone; -http://purl.obolibrary.org/obo/UBERON_4300004;scale pocket; -http://purl.obolibrary.org/obo/UBERON_4300005;aphakic space; -http://purl.obolibrary.org/obo/UBERON_4300006;scale row; -http://purl.obolibrary.org/obo/UBERON_4300007;medial pelvic process; -http://purl.obolibrary.org/obo/UBERON_4300008;epipleural series; -http://purl.obolibrary.org/obo/UBERON_4300012;clavus;pseudo-caudal fin -http://purl.obolibrary.org/obo/UBERON_4300012;clavus;pseudocaudal fin -http://purl.obolibrary.org/obo/UBERON_4300013;paired fin radial skeleton;paired fin radial series -http://purl.obolibrary.org/obo/UBERON_4300014;dorsal cleithrum; -http://purl.obolibrary.org/obo/UBERON_4300015;ventral cleithrum; -http://purl.obolibrary.org/obo/UBERON_4300016;pelvic cartilage; -http://purl.obolibrary.org/obo/UBERON_4300017;rostrodermethmoid; -http://purl.obolibrary.org/obo/UBERON_4300018;ventral marginal cartilage; -http://purl.obolibrary.org/obo/UBERON_4300019;dorsal fin basal cartilage (elasmobranchs);dorsal fin basal plate -http://purl.obolibrary.org/obo/UBERON_4300020;anal fin basal cartilage;anal fin basal plate -http://purl.obolibrary.org/obo/UBERON_4300021;anterolateral plate;AL -http://purl.obolibrary.org/obo/UBERON_4300022;anteroventral plate;AV -http://purl.obolibrary.org/obo/UBERON_4300022;anteroventral plate;anterior ventral plate -http://purl.obolibrary.org/obo/UBERON_4300023;interolateral plate;IL -http://purl.obolibrary.org/obo/UBERON_4300024;spinal plate;Sp -http://purl.obolibrary.org/obo/UBERON_4300025;posterior dorsolateral plate;PDL -http://purl.obolibrary.org/obo/UBERON_4300026;anterior ventrolateral plate;AVL -http://purl.obolibrary.org/obo/UBERON_4300028;posterior ventrolateral plate;PVL -http://purl.obolibrary.org/obo/UBERON_4300029;dermal neck joint;cervical neck joint -http://purl.obolibrary.org/obo/UBERON_4300030;flexor caudalis muscle; -http://purl.obolibrary.org/obo/UBERON_4300031;fin web;fin membrane -http://purl.obolibrary.org/obo/UBERON_4300032;posterior dorsal fin basal cartilage (elasmobranchs);posterior dorsal fin base plate -http://purl.obolibrary.org/obo/UBERON_4300033;anterior dorsal fin basal cartilage (elasmobranchs);anterior dorsal fin base plate -http://purl.obolibrary.org/obo/UBERON_4300034;antorbital cartilage; -http://purl.obolibrary.org/obo/UBERON_4300035;supraneural element; -http://purl.obolibrary.org/obo/UBERON_4300036;supraneural cartilage; -http://purl.obolibrary.org/obo/UBERON_4300037;bony fin ray; -http://purl.obolibrary.org/obo/UBERON_4300038;facet; -http://purl.obolibrary.org/obo/UBERON_4300081;mesopterygium element; -http://purl.obolibrary.org/obo/UBERON_4300082;metapterygium element; -http://purl.obolibrary.org/obo/UBERON_4300083;propterygium element; -http://purl.obolibrary.org/obo/UBERON_4300087;mesopterygium bone; -http://purl.obolibrary.org/obo/UBERON_4300088;metapterygium bone; -http://purl.obolibrary.org/obo/UBERON_4300089;propterygium bone; -http://purl.obolibrary.org/obo/UBERON_4300090;X bone; -http://purl.obolibrary.org/obo/UBERON_4300091;Y bone; -http://purl.obolibrary.org/obo/UBERON_4300092;mesocoracoid element; -http://purl.obolibrary.org/obo/UBERON_4300096;anal fin pterygiophore 1; -http://purl.obolibrary.org/obo/UBERON_4300097;anal fin spine 1; -http://purl.obolibrary.org/obo/UBERON_4300098;anal fin spine 2; -http://purl.obolibrary.org/obo/UBERON_4300101;dorsal fin ceratotrichial spine (elasmobranchs); -http://purl.obolibrary.org/obo/UBERON_4300102;postcleithral scale; -http://purl.obolibrary.org/obo/UBERON_4300103;rudimentary pectoral fin ray; -http://purl.obolibrary.org/obo/UBERON_4300104;ectocoracoid bone; -http://purl.obolibrary.org/obo/UBERON_4300105;caudal vertebra 1; -http://purl.obolibrary.org/obo/UBERON_4300106;ventral limb of posttemporal; -http://purl.obolibrary.org/obo/UBERON_4300108;lepidotrichial segment;segment of fin ray -http://purl.obolibrary.org/obo/UBERON_4300109;proximal segment of caudal ray; -http://purl.obolibrary.org/obo/UBERON_4300110;lateral ethmoid cartilage; -http://purl.obolibrary.org/obo/UBERON_4300111;lateral ethmoid element; -http://purl.obolibrary.org/obo/UBERON_4300112;distal segment of caudal ray; -http://purl.obolibrary.org/obo/UBERON_4300114;pelvic sucking disc;adhesive disc -http://purl.obolibrary.org/obo/UBERON_4300114;pelvic sucking disc;pelvic fin sucking disc -http://purl.obolibrary.org/obo/UBERON_4300114;pelvic sucking disc;ventral sucking disc -http://purl.obolibrary.org/obo/UBERON_4300115;sucking disc;sucking disk -http://purl.obolibrary.org/obo/UBERON_4300116;dorsal fin ray;dorsal fin soft ray -http://purl.obolibrary.org/obo/UBERON_4300117;pelvic fin ray;pelvic fin soft ray -http://purl.obolibrary.org/obo/UBERON_4300119;glenoid region; -http://purl.obolibrary.org/obo/UBERON_4300120;spinous region of dorsal fin; -http://purl.obolibrary.org/obo/UBERON_4300121;zygantrum; -http://purl.obolibrary.org/obo/UBERON_4300123;pre-axial region; -http://purl.obolibrary.org/obo/UBERON_4300124;axis intercentrum; -http://purl.obolibrary.org/obo/UBERON_4300125;dorsal iliac ridge; -http://purl.obolibrary.org/obo/UBERON_4300126;tectorial restraint system; -http://purl.obolibrary.org/obo/UBERON_4300127;nuchal crest; -http://purl.obolibrary.org/obo/UBERON_4300128;sacral rib; -http://purl.obolibrary.org/obo/UBERON_4300129;dorsal pelvic gland; -http://purl.obolibrary.org/obo/UBERON_4300130;lateral pelvic gland; -http://purl.obolibrary.org/obo/UBERON_4300132;glossopharyngeal nerve foramen;nerve foramen IX -http://purl.obolibrary.org/obo/UBERON_4300133;upper jaw symphyseal region;upper jaw symphysial region -http://purl.obolibrary.org/obo/UBERON_4300134;lateral commissure; -http://purl.obolibrary.org/obo/UBERON_4300135;upper jaw symphyseal tooth;upper jaw symphysial tooth -http://purl.obolibrary.org/obo/UBERON_4300137;lingual region; -http://purl.obolibrary.org/obo/UBERON_4300138;labial region; -http://purl.obolibrary.org/obo/UBERON_4300139;posterolingual region; -http://purl.obolibrary.org/obo/UBERON_4300140;mesial region; -http://purl.obolibrary.org/obo/UBERON_4300142;internal carotid foramen; -http://purl.obolibrary.org/obo/UBERON_4300143;anal fin radial skeleton;anal fin radial series -http://purl.obolibrary.org/obo/UBERON_4300144;profundus foramen; -http://purl.obolibrary.org/obo/UBERON_4300147;pectoral fin base; -http://purl.obolibrary.org/obo/UBERON_4300150;gill membrane; -http://purl.obolibrary.org/obo/UBERON_4300151;pelvic intercleithral cartilage; -http://purl.obolibrary.org/obo/UBERON_4300152;accessory nasal sac; -http://purl.obolibrary.org/obo/UBERON_4300153;Sharpey's fiber; -http://purl.obolibrary.org/obo/UBERON_4300154;procurrent spur; -http://purl.obolibrary.org/obo/UBERON_4300155;pectoral splint; -http://purl.obolibrary.org/obo/UBERON_4300156;anterodorsal crest; -http://purl.obolibrary.org/obo/UBERON_4300157;midshaft; -http://purl.obolibrary.org/obo/UBERON_4300158;ectepicondylar depression; -http://purl.obolibrary.org/obo/UBERON_4300172;pectoral fin bud; -http://purl.obolibrary.org/obo/UBERON_4300173;pelvic fin bud; -http://purl.obolibrary.org/obo/UBERON_4300174;actinopterygian pyloric caecum;pyloric appendage -http://purl.obolibrary.org/obo/UBERON_4300174;actinopterygian pyloric caecum;pyloric caeca -http://purl.obolibrary.org/obo/UBERON_4300174;actinopterygian pyloric caecum;pyloric caecum -http://purl.obolibrary.org/obo/UBERON_4300175;procumbent dorsal fin spine; -http://purl.obolibrary.org/obo/UBERON_4300176;parietal branch of the supraorbital canal; -http://purl.obolibrary.org/obo/UBERON_4300177;replacement tooth row; -http://purl.obolibrary.org/obo/UBERON_4300178;inner tooth row of dentary; -http://purl.obolibrary.org/obo/UBERON_4300179;inner tooth row of premaxilla; -http://purl.obolibrary.org/obo/UBERON_4300180;isthmus; -http://purl.obolibrary.org/obo/UBERON_4300181;posterior sclerotic cartilage; -http://purl.obolibrary.org/obo/UBERON_4300182;anterior sclerotic cartilage; -http://purl.obolibrary.org/obo/UBERON_4300184;neural spine 5; -http://purl.obolibrary.org/obo/UBERON_4300185;neural spine 6; -http://purl.obolibrary.org/obo/UBERON_4300186;neural spine 7; -http://purl.obolibrary.org/obo/UBERON_4300188;terminal scale; -http://purl.obolibrary.org/obo/UBERON_4300189;parapophysis 3; -http://purl.obolibrary.org/obo/UBERON_4300190;claustrum element; -http://purl.obolibrary.org/obo/UBERON_4300192;branched pelvic fin ray; -http://purl.obolibrary.org/obo/UBERON_4300193;unbranched anal fin ray; -http://purl.obolibrary.org/obo/UBERON_4300194;photophore; -http://purl.obolibrary.org/obo/UBERON_4300195;rostral tubule;rostral tubuli -http://purl.obolibrary.org/obo/UBERON_4300196;processus descendens of sphenoid;otico-sphenoid bridge -http://purl.obolibrary.org/obo/UBERON_4300197;Westoll line;Westoll lines -http://purl.obolibrary.org/obo/UBERON_4300198;epichordal radial; -http://purl.obolibrary.org/obo/UBERON_4300199;postsplenial; -http://purl.obolibrary.org/obo/UBERON_4300200;postparietal shield;parietal shield -http://purl.obolibrary.org/obo/UBERON_4300201;subepiotic fossa; -http://purl.obolibrary.org/obo/UBERON_4300202;endoskeletal cranial joint;endoskeletal intracranial joint -http://purl.obolibrary.org/obo/UBERON_4300203;tectum orbitale; -http://purl.obolibrary.org/obo/UBERON_4300205;palato-maxillary ligament; -http://purl.obolibrary.org/obo/UBERON_4300206;mandibulo-lacrimal ligament; -http://purl.obolibrary.org/obo/UBERON_4300207;submandibular bone; -http://purl.obolibrary.org/obo/UBERON_4300208;submandibular series; -http://purl.obolibrary.org/obo/UBERON_4300209;palato-vomerine ligament;palatovomerine ligament -http://purl.obolibrary.org/obo/UBERON_4300210;transversus epibranchialis 2; -http://purl.obolibrary.org/obo/UBERON_4300211;lateral plate; -http://purl.obolibrary.org/obo/UBERON_4300212;acrodin; -http://purl.obolibrary.org/obo/UBERON_4300213;supraneural 1 element; -http://purl.obolibrary.org/obo/UBERON_4300214;supraneural 2 element; -http://purl.obolibrary.org/obo/UBERON_4300215;supraneural 3 element; -http://purl.obolibrary.org/obo/UBERON_4300216;supraneural 4 element; -http://purl.obolibrary.org/obo/UBERON_4300217;supraneural 5 element; -http://purl.obolibrary.org/obo/UBERON_4300218;supraneural 6 element; -http://purl.obolibrary.org/obo/UBERON_4300219;supraneural 7 element; -http://purl.obolibrary.org/obo/UBERON_4300220;supraneural 8 element; -http://purl.obolibrary.org/obo/UBERON_4300221;supraneural 9 element; -http://purl.obolibrary.org/obo/UBERON_4300222;axilar scale; -http://purl.obolibrary.org/obo/UBERON_4300223;precaudal vertebra; -http://purl.obolibrary.org/obo/UBERON_4300224;precaudal vertebra endochondral element; -http://purl.obolibrary.org/obo/UBERON_4300225;precaudal vertebra cartilage element; -http://purl.obolibrary.org/obo/UBERON_4300226;forelimb bud mesenchyme; -http://purl.obolibrary.org/obo/UBERON_4300227;hindlimb bud mesenchyme; -http://purl.obolibrary.org/obo/UBERON_4300228;pectoral fin bud mesenchyme; -http://purl.obolibrary.org/obo/UBERON_4300229;pelvic fin bud mesenchyme; -http://purl.obolibrary.org/obo/UBERON_4300230;forelimb wing bud; -http://purl.obolibrary.org/obo/UBERON_4300231;forelimb wing bud mesenchyme; -http://purl.obolibrary.org/obo/UBERON_4300233;mammiliform tooth; -http://purl.obolibrary.org/obo/UBERON_4300234;scale sheath; -http://purl.obolibrary.org/obo/UBERON_4300235;spinoid scale; -http://purl.obolibrary.org/obo/UBERON_4300236;rib of vertebra 7; -http://purl.obolibrary.org/obo/UBERON_4300237;rib of vertebra 8; -http://purl.obolibrary.org/obo/UBERON_4300238;pored lateral line scale; -http://purl.obolibrary.org/obo/UBERON_4300239;hind flipper;hindflipper -http://purl.obolibrary.org/obo/UBERON_4300240;rostral ossicle; -http://purl.obolibrary.org/obo/UBERON_4300241;ethmoid commissure;ethmoid lateral line commissure -http://purl.obolibrary.org/obo/UBERON_4300242;lateral line scale 6; -http://purl.obolibrary.org/obo/UBERON_4300243;premaxillary tooth 2; -http://purl.obolibrary.org/obo/UBERON_4300244;premaxillary tooth 3; -http://purl.obolibrary.org/obo/UBERON_4300246;dentary tooth 2; -http://purl.obolibrary.org/obo/UBERON_4300247;dentary tooth 3; -http://purl.obolibrary.org/obo/UBERON_4300248;fused hypural 1 and 2; -http://purl.obolibrary.org/obo/UBERON_4300249;lateral occipital foramen; -http://purl.obolibrary.org/obo/UBERON_4300250;ventral caudal procurrent ray 3; -http://purl.obolibrary.org/obo/UBERON_4300251;ventral caudal procurrent ray 4; -http://purl.obolibrary.org/obo/UBERON_4300252;ethmo-palatine cartilage; -http://purl.obolibrary.org/obo/UBERON_4300261;pectoral fin hook; -http://purl.obolibrary.org/obo/UBERON_4300262;pelvic fin hook; -http://purl.obolibrary.org/obo/UBERON_4300263;supraneural 4 cartilage; -http://purl.obolibrary.org/obo/UBERON_4300264;supraneural 5 cartilage; -http://purl.obolibrary.org/obo/UBERON_4300265;supraneural 6 cartilage; -http://purl.obolibrary.org/obo/UBERON_4300266;supraneural 7 cartilage; -http://purl.obolibrary.org/obo/UBERON_4300267;supraneural 8 cartilage; -http://purl.obolibrary.org/obo/UBERON_4300268;supraneural 9 cartilage; -http://purl.obolibrary.org/obo/UBERON_4300269;epioccipital bridge;epiotic bridge -http://purl.obolibrary.org/obo/UBERON_4300270;outer tooth row of premaxilla; -http://purl.obolibrary.org/obo/UBERON_4300271;interneural spine cartilage;CINPU -http://purl.obolibrary.org/obo/UBERON_4300272;interhaemal spine cartilage;CIHPU -http://purl.obolibrary.org/obo/UBERON_4300274;adipose fin ray; -http://purl.obolibrary.org/obo/UBERON_4300275;suborbital stay; -http://purl.obolibrary.org/obo/UBERON_4300279;outer tooth row of dentary; -http://purl.obolibrary.org/obo/UBERON_4300280;metapterygoid tooth; -http://purl.obolibrary.org/obo/UBERON_4300281;dorsal fin hook;dorsal-fin hook -http://purl.obolibrary.org/obo/UBERON_4300282;dorsal myorhabdoid bone; -http://purl.obolibrary.org/obo/UBERON_4300283;ventral myorhabdoid bone; -http://purl.obolibrary.org/obo/UBERON_4300284;fin hook; -http://purl.obolibrary.org/obo/UBERON_4300285;second preethmoid cartilage; -http://purl.obolibrary.org/obo/UBERON_4300286;second preethmoid element; -http://purl.obolibrary.org/obo/UBERON_4300287;nasal barbel; -http://purl.obolibrary.org/obo/UBERON_4300288;rictal barbel; -http://purl.obolibrary.org/obo/UBERON_4400000;metapterygium cartilage; -http://purl.obolibrary.org/obo/UBERON_4400001;ceratotrichium; -http://purl.obolibrary.org/obo/UBERON_4400005;fin ray; -http://purl.obolibrary.org/obo/UBERON_4400006;elastoidin fin ray; -http://purl.obolibrary.org/obo/UBERON_4400007;camptotrichium; -http://purl.obolibrary.org/obo/UBERON_4440008;fin radial skeleton;fin radial series -http://purl.obolibrary.org/obo/UBERON_4440009;pectoral fin radial skeleton;pectoral fin radial series -http://purl.obolibrary.org/obo/UBERON_4440010;pelvic fin radial skeleton;pelvic fin radial series -http://purl.obolibrary.org/obo/UBERON_4440011;paired fin lepidotrichium; -http://purl.obolibrary.org/obo/UBERON_4500002;upper uroneural; -http://purl.obolibrary.org/obo/UBERON_4500003;predorsal scale; -http://purl.obolibrary.org/obo/UBERON_4500004;adipose fin skeleton; -http://purl.obolibrary.org/obo/UBERON_4500005;prenasal ossicle; -http://purl.obolibrary.org/obo/UBERON_4500006;anal fin ray;anal fin soft ray -http://purl.obolibrary.org/obo/UBERON_4500007;pectoral fin ray;pectoral fin soft ray -http://purl.obolibrary.org/obo/UBERON_4500008;median fin lepidotrichium; -http://purl.obolibrary.org/obo/UBERON_4500009;paired fin spine; -http://purl.obolibrary.org/obo/UBERON_4500010;unbranched pectoral fin ray;pectoral fin unbranched ray -http://purl.obolibrary.org/obo/UBERON_4500011;unbranched pelvic fin ray;pelvic fin unbranched ray -http://purl.obolibrary.org/obo/UBERON_4500012;hypobranchial series; -http://purl.obolibrary.org/obo/UBERON_4500013;pharyngobranchial series; -http://purl.obolibrary.org/obo/UBERON_4500014;basibranchial series; -http://purl.obolibrary.org/obo/UBERON_4500016;premaxilla articular process;articular process of the premaxilla -http://purl.obolibrary.org/obo/UBERON_4500017;interarcual bone; -http://purl.obolibrary.org/obo/UBERON_4500018;premaxilla maxillary process;postmaxillary process -http://purl.obolibrary.org/obo/UBERON_4500020;pelvic fin distal radial cartilage; -http://purl.obolibrary.org/obo/UBERON_5001463;manual digit 1 plus metapodial segment;manual digit 1 digitopodial subdivision -http://purl.obolibrary.org/obo/UBERON_5001463;manual digit 1 plus metapodial segment;manual digit 1 ray -http://purl.obolibrary.org/obo/UBERON_5001463;manual digit 1 plus metapodial segment;manual digit I plus metapodial segment -http://purl.obolibrary.org/obo/UBERON_5001466;pedal digit plus metapodial segment;pedal digit digitopodial subdivision -http://purl.obolibrary.org/obo/UBERON_5001466;pedal digit plus metapodial segment;pedal digit ray -http://purl.obolibrary.org/obo/UBERON_5002389;manual digit plus metapodial segment;manual digit digitopodial subdivision -http://purl.obolibrary.org/obo/UBERON_5002389;manual digit plus metapodial segment;manual digit ray -http://purl.obolibrary.org/obo/UBERON_5002544;digit plus metapodial segment;digit digitopodial subdivision -http://purl.obolibrary.org/obo/UBERON_5002544;digit plus metapodial segment;digit ray -http://purl.obolibrary.org/obo/UBERON_5003622;manual digit 2 plus metapodial segment;manual digit 2 digitopodial subdivision -http://purl.obolibrary.org/obo/UBERON_5003622;manual digit 2 plus metapodial segment;manual digit 2 ray -http://purl.obolibrary.org/obo/UBERON_5003622;manual digit 2 plus metapodial segment;manual digit II plus metapodial segment -http://purl.obolibrary.org/obo/UBERON_5003623;manual digit 3 plus metapodial segment;manual digit 3 digitopodial subdivision -http://purl.obolibrary.org/obo/UBERON_5003623;manual digit 3 plus metapodial segment;manual digit 3 ray -http://purl.obolibrary.org/obo/UBERON_5003623;manual digit 3 plus metapodial segment;manual digit III plus metapodial segment -http://purl.obolibrary.org/obo/UBERON_5003624;manual digit 4 plus metapodial segment;manual digit 4 digitopodial subdivision -http://purl.obolibrary.org/obo/UBERON_5003624;manual digit 4 plus metapodial segment;manual digit 4 ray -http://purl.obolibrary.org/obo/UBERON_5003624;manual digit 4 plus metapodial segment;manual digit IV plus metapodial segment -http://purl.obolibrary.org/obo/UBERON_5003625;manual digit 5 plus metapodial segment;manual digit 5 digitopodial subdivision -http://purl.obolibrary.org/obo/UBERON_5003625;manual digit 5 plus metapodial segment;manual digit 5 ray -http://purl.obolibrary.org/obo/UBERON_5003625;manual digit 5 plus metapodial segment;manual digit V plus metapodial segment -http://purl.obolibrary.org/obo/UBERON_5003631;pedal digit 1 plus metapodial segment;pedal digit 1 digitopodial subdivision -http://purl.obolibrary.org/obo/UBERON_5003631;pedal digit 1 plus metapodial segment;pedal digit 1 ray -http://purl.obolibrary.org/obo/UBERON_5003631;pedal digit 1 plus metapodial segment;pedal digit I plus metapodial segment -http://purl.obolibrary.org/obo/UBERON_5003632;pedal digit 2 plus metapodial segment;pedal digit 2 digitopodial subdivision -http://purl.obolibrary.org/obo/UBERON_5003632;pedal digit 2 plus metapodial segment;pedal digit 2 ray -http://purl.obolibrary.org/obo/UBERON_5003632;pedal digit 2 plus metapodial segment;pedal digit II plus metapodial segment -http://purl.obolibrary.org/obo/UBERON_5003633;pedal digit 3 plus metapodial segment;pedal digit 3 digitopodial subdivision -http://purl.obolibrary.org/obo/UBERON_5003633;pedal digit 3 plus metapodial segment;pedal digit 3 ray -http://purl.obolibrary.org/obo/UBERON_5003633;pedal digit 3 plus metapodial segment;pedal digit III plus metapodial segment -http://purl.obolibrary.org/obo/UBERON_5003634;pedal digit 4 plus metapodial segment;pedal digit 4 digitopodial subdivision -http://purl.obolibrary.org/obo/UBERON_5003634;pedal digit 4 plus metapodial segment;pedal digit 4 ray -http://purl.obolibrary.org/obo/UBERON_5003634;pedal digit 4 plus metapodial segment;pedal digit IV plus metapodial segment -http://purl.obolibrary.org/obo/UBERON_5003635;pedal digit 5 plus metapodial segment;pedal digit 5 digitopodial subdivision -http://purl.obolibrary.org/obo/UBERON_5003635;pedal digit 5 plus metapodial segment;pedal digit 5 ray -http://purl.obolibrary.org/obo/UBERON_5003635;pedal digit 5 plus metapodial segment;pedal digit V plus metapodial segment -http://purl.obolibrary.org/obo/UBERON_5006048;digit 1 plus metapodial segment;digit 1 digitopodial subdivision -http://purl.obolibrary.org/obo/UBERON_5006048;digit 1 plus metapodial segment;digit 1 ray -http://purl.obolibrary.org/obo/UBERON_5006048;digit 1 plus metapodial segment;digit I plus metapodial segment -http://purl.obolibrary.org/obo/UBERON_5006049;digit 2 plus metapodial segment;digit 2 digitopodial subdivision -http://purl.obolibrary.org/obo/UBERON_5006049;digit 2 plus metapodial segment;digit 2 ray -http://purl.obolibrary.org/obo/UBERON_5006049;digit 2 plus metapodial segment;digit II plus metapodial segment -http://purl.obolibrary.org/obo/UBERON_5006050;digit 3 plus metapodial segment;digit 3 digitopodial subdivision -http://purl.obolibrary.org/obo/UBERON_5006050;digit 3 plus metapodial segment;digit 3 ray -http://purl.obolibrary.org/obo/UBERON_5006050;digit 3 plus metapodial segment;digit III plus metapodial segment -http://purl.obolibrary.org/obo/UBERON_5006051;digit 4 plus metapodial segment;digit 4 digitopodial subdivision -http://purl.obolibrary.org/obo/UBERON_5006051;digit 4 plus metapodial segment;digit 4 ray -http://purl.obolibrary.org/obo/UBERON_5006051;digit 4 plus metapodial segment;digit IV plus metapodial segment -http://purl.obolibrary.org/obo/UBERON_5006052;digit 5 plus metapodial segment;digit 5 digitopodial subdivision -http://purl.obolibrary.org/obo/UBERON_5006052;digit 5 plus metapodial segment;digit 5 ray -http://purl.obolibrary.org/obo/UBERON_5006052;digit 5 plus metapodial segment;digit V plus metapodial segment -http://purl.obolibrary.org/obo/UBERON_5011981;manual digit 6 plus metapodial segment;manual digit 6 digitopodial subdivision -http://purl.obolibrary.org/obo/UBERON_5011981;manual digit 6 plus metapodial segment;manual digit 6 ray -http://purl.obolibrary.org/obo/UBERON_5011981;manual digit 6 plus metapodial segment;manual digit VI plus metapodial segment -http://purl.obolibrary.org/obo/UBERON_5011982;manual digit 7 plus metapodial segment;manual digit 7 digitopodial subdivision -http://purl.obolibrary.org/obo/UBERON_5011982;manual digit 7 plus metapodial segment;manual digit 7 ray -http://purl.obolibrary.org/obo/UBERON_5011982;manual digit 7 plus metapodial segment;manual digit VII plus metapodial segment -http://purl.obolibrary.org/obo/UBERON_5011983;manual digit 8 plus metapodial segment;manual digit 8 digitopodial subdivision -http://purl.obolibrary.org/obo/UBERON_5011983;manual digit 8 plus metapodial segment;manual digit 8 ray -http://purl.obolibrary.org/obo/UBERON_5011983;manual digit 8 plus metapodial segment;manual digit VIII plus metapodial segment -http://purl.obolibrary.org/obo/UBERON_5011984;pedal digit 6 plus metapodial segment;pedal digit 6 digitopodial subdivision -http://purl.obolibrary.org/obo/UBERON_5011984;pedal digit 6 plus metapodial segment;pedal digit 6 ray -http://purl.obolibrary.org/obo/UBERON_5011984;pedal digit 6 plus metapodial segment;pedal digit VI plus metapodial segment -http://purl.obolibrary.org/obo/UBERON_5012137;pedal digit 7 plus metapodial segment;pedal digit 7 digitopodial subdivision -http://purl.obolibrary.org/obo/UBERON_5012137;pedal digit 7 plus metapodial segment;pedal digit 7 ray -http://purl.obolibrary.org/obo/UBERON_5012137;pedal digit 7 plus metapodial segment;pedal digit VII plus metapodial segment -http://purl.obolibrary.org/obo/UBERON_5012138;pedal digit 8 plus metapodial segment;pedal digit 8 digitopodial subdivision -http://purl.obolibrary.org/obo/UBERON_5012138;pedal digit 8 plus metapodial segment;pedal digit 8 ray -http://purl.obolibrary.org/obo/UBERON_5012138;pedal digit 8 plus metapodial segment;pedal digit VIII plus metapodial segment -http://purl.obolibrary.org/obo/UBERON_5012260;alular digit plus metapodial segment;alular digit digitopodial subdivision -http://purl.obolibrary.org/obo/UBERON_5012260;alular digit plus metapodial segment;alular digit ray -http://purl.obolibrary.org/obo/UBERON_5012261;manual major digit (Aves) plus metapodial segment;manual major digit (Aves) digitopodial subdivision -http://purl.obolibrary.org/obo/UBERON_5012261;manual major digit (Aves) plus metapodial segment;manual major digit (Aves) ray -http://purl.obolibrary.org/obo/UBERON_5012262;manual minor digit (Aves) plus metapodial segment;manual minor digit (Aves) digitopodial subdivision -http://purl.obolibrary.org/obo/UBERON_5012262;manual minor digit (Aves) plus metapodial segment;manual minor digit (Aves) ray -http://purl.obolibrary.org/obo/UBERON_5101463;manual digit 1 digitopodial skeleton;manual digit I digitopodial skeleton -http://purl.obolibrary.org/obo/UBERON_5101466;pedal digit digitopodial skeleton; -http://purl.obolibrary.org/obo/UBERON_5102389;manual digit digitopodial skeleton; -http://purl.obolibrary.org/obo/UBERON_5102544;individual digit of digitopodial skeleton; -http://purl.obolibrary.org/obo/UBERON_5103622;manual digit 2 digitopodial skeleton;manual digit II digitopodial skeleton -http://purl.obolibrary.org/obo/UBERON_5103623;manual digit 3 digitopodial skeleton;manual digit III digitopodial skeleton -http://purl.obolibrary.org/obo/UBERON_5103624;manual digit 4 digitopodial skeleton;manual digit IV digitopodial skeleton -http://purl.obolibrary.org/obo/UBERON_5103625;manual digit 5 digitopodial skeleton;manual digit V digitopodial skeleton -http://purl.obolibrary.org/obo/UBERON_5103631;pedal digit 1 digitopodial skeleton;pedal digit I digitopodial skeleton -http://purl.obolibrary.org/obo/UBERON_5103632;pedal digit 2 digitopodial skeleton;pedal digit II digitopodial skeleton -http://purl.obolibrary.org/obo/UBERON_5103633;pedal digit 3 digitopodial skeleton;pedal digit III digitopodial skeleton -http://purl.obolibrary.org/obo/UBERON_5103634;pedal digit 4 digitopodial skeleton;pedal digit IV digitopodial skeleton -http://purl.obolibrary.org/obo/UBERON_5103635;pedal digit 5 digitopodial skeleton;pedal digit V digitopodial skeleton -http://purl.obolibrary.org/obo/UBERON_5106048;digit 1 digitopodial skeleton;digit I digitopodial skeleton -http://purl.obolibrary.org/obo/UBERON_5106049;digit 2 digitopodial skeleton;digit II digitopodial skeleton -http://purl.obolibrary.org/obo/UBERON_5106050;digit 3 digitopodial skeleton;digit III digitopodial skeleton -http://purl.obolibrary.org/obo/UBERON_5106051;digit 4 digitopodial skeleton;digit IV digitopodial skeleton -http://purl.obolibrary.org/obo/UBERON_5106052;digit 5 digitopodial skeleton;digit V digitopodial skeleton -http://purl.obolibrary.org/obo/UBERON_5111981;manual digit 6 digitopodial skeleton;manual digit VI digitopodial skeleton -http://purl.obolibrary.org/obo/UBERON_5111982;manual digit 7 digitopodial skeleton;manual digit VII digitopodial skeleton -http://purl.obolibrary.org/obo/UBERON_5111983;manual digit 8 digitopodial skeleton;manual digit VIII digitopodial skeleton -http://purl.obolibrary.org/obo/UBERON_5111984;pedal digit 6 digitopodial skeleton;pedal digit VI digitopodial skeleton -http://purl.obolibrary.org/obo/UBERON_5112137;pedal digit 7 digitopodial skeleton;pedal digit VII digitopodial skeleton -http://purl.obolibrary.org/obo/UBERON_5112138;pedal digit 8 digitopodial skeleton;pedal digit VIII digitopodial skeleton -http://purl.obolibrary.org/obo/UBERON_5112260;alular digit digitopodial skeleton; -http://purl.obolibrary.org/obo/UBERON_5112261;manual major digit (Aves) digitopodial skeleton; -http://purl.obolibrary.org/obo/UBERON_5112262;manual minor digit (Aves) digitopodial skeleton; -http://purl.obolibrary.org/obo/UBERON_6000002;arthropod tagma; -http://purl.obolibrary.org/obo/UBERON_6000004;panarthropod head; -http://purl.obolibrary.org/obo/UBERON_6000005;insect ocular segment; -http://purl.obolibrary.org/obo/UBERON_6000006;insect head segment; -http://purl.obolibrary.org/obo/UBERON_6000007;procephalic segment;pregnathal segment -http://purl.obolibrary.org/obo/UBERON_6000007;procephalic segment;preoral segment -http://purl.obolibrary.org/obo/UBERON_6000008;labral segment; -http://purl.obolibrary.org/obo/UBERON_6000009;antennal segment; -http://purl.obolibrary.org/obo/UBERON_6000011;insect gnathal segment; -http://purl.obolibrary.org/obo/UBERON_6000014;insect labial segment; -http://purl.obolibrary.org/obo/UBERON_6000015;insect thorax; -http://purl.obolibrary.org/obo/UBERON_6000016;insect thoracic segment; -http://purl.obolibrary.org/obo/UBERON_6000017;insect prothoracic segment; -http://purl.obolibrary.org/obo/UBERON_6000018;insect mesothoracic segment; -http://purl.obolibrary.org/obo/UBERON_6000019;insect metathoracic segment; -http://purl.obolibrary.org/obo/UBERON_6000020;insect abdomen; -http://purl.obolibrary.org/obo/UBERON_6000021;insect abdominal segment; -http://purl.obolibrary.org/obo/UBERON_6000029;insect abdominal segment 8; -http://purl.obolibrary.org/obo/UBERON_6000030;insect abdominal segment 9; -http://purl.obolibrary.org/obo/UBERON_6000046;insect dorsal appendage;chorionic appendage -http://purl.obolibrary.org/obo/UBERON_6000096;insect ventral furrow; -http://purl.obolibrary.org/obo/UBERON_6000097;insect cephalic furrow; -http://purl.obolibrary.org/obo/UBERON_6000104;insect mesoderm anlage; -http://purl.obolibrary.org/obo/UBERON_6000112;insect dorsal ectoderm; -http://purl.obolibrary.org/obo/UBERON_6000119;insect anterior ectoderm; -http://purl.obolibrary.org/obo/UBERON_6000128;insect trunk mesoderm; -http://purl.obolibrary.org/obo/UBERON_6000130;insect visceral mesoderm; -http://purl.obolibrary.org/obo/UBERON_6000131;insect mesodermal crest; -http://purl.obolibrary.org/obo/UBERON_6000132;insect mesodermal crest of segment T3; -http://purl.obolibrary.org/obo/UBERON_6000137;embryonic tagma; -http://purl.obolibrary.org/obo/UBERON_6000154;insect embryonic segment; -http://purl.obolibrary.org/obo/UBERON_6000157;insect embryonic head segment; -http://purl.obolibrary.org/obo/UBERON_6000158;insect embryonic procephalic segment; -http://purl.obolibrary.org/obo/UBERON_6000160;insect embryonic antennal segment; -http://purl.obolibrary.org/obo/UBERON_6000162;insect embryonic gnathal segment; -http://purl.obolibrary.org/obo/UBERON_6000165;insect embryonic labial segment; -http://purl.obolibrary.org/obo/UBERON_6000166;insect embryonic thorax; -http://purl.obolibrary.org/obo/UBERON_6000167;insect embryonic thoracic segment; -http://purl.obolibrary.org/obo/UBERON_6000168;insect embryonic prothoracic segment; -http://purl.obolibrary.org/obo/UBERON_6000169;insect embryonic mesothoracic segment; -http://purl.obolibrary.org/obo/UBERON_6000170;insect embryonic metathoracic segment; -http://purl.obolibrary.org/obo/UBERON_6000171;insect embryonic abdomen; -http://purl.obolibrary.org/obo/UBERON_6000172;insect embryonic abdominal segment; -http://purl.obolibrary.org/obo/UBERON_6000180;insect embryonic abdominal segment 8; -http://purl.obolibrary.org/obo/UBERON_6000181;insect embryonic abdominal segment 9; -http://purl.obolibrary.org/obo/UBERON_6000186;insect embryonic optic lobe primordium; -http://purl.obolibrary.org/obo/UBERON_60005380;insect pharynx; -http://purl.obolibrary.org/obo/UBERON_6001055;insect presumptive embryonic/larval nervous system; -http://purl.obolibrary.org/obo/UBERON_6001056;insect presumptive embryonic/larval central nervous system; -http://purl.obolibrary.org/obo/UBERON_6001057;insect neurogenic region; -http://purl.obolibrary.org/obo/UBERON_6001059;insect visual primordium; -http://purl.obolibrary.org/obo/UBERON_6001060;insect embryonic brain; -http://purl.obolibrary.org/obo/UBERON_6001135;insect proneural cluster; -http://purl.obolibrary.org/obo/UBERON_6001648;insect embryonic imaginal precursor; -http://purl.obolibrary.org/obo/UBERON_6001649;insect imaginal disc primordium; -http://purl.obolibrary.org/obo/UBERON_6001650;insect labial disc primordium; -http://purl.obolibrary.org/obo/UBERON_6001652;insect eye-antennal disc primordium; -http://purl.obolibrary.org/obo/UBERON_6001653;insect dorsal thoracic disc primordium; -http://purl.obolibrary.org/obo/UBERON_6001655;insect dorsal mesothoracic disc primordium; -http://purl.obolibrary.org/obo/UBERON_6001656;insect dorsal metathoracic disc primordium; -http://purl.obolibrary.org/obo/UBERON_6001657;insect ventral thoracic disc primordium; -http://purl.obolibrary.org/obo/UBERON_6001658;insect ventral prothoracic disc primordium; -http://purl.obolibrary.org/obo/UBERON_6001661;insect genital disc primordium; -http://purl.obolibrary.org/obo/UBERON_6001662;insect male genital disc primordium; -http://purl.obolibrary.org/obo/UBERON_6001663;insect female genital disc primordium; -http://purl.obolibrary.org/obo/UBERON_6001664;insect embryonic/larval circulatory system;larval circulatory system -http://purl.obolibrary.org/obo/UBERON_6001668;insect embryonic/larval lymph gland;embryonic/larval hematopoietic organ -http://purl.obolibrary.org/obo/UBERON_6001668;insect embryonic/larval lymph gland;hematopoietic organ -http://purl.obolibrary.org/obo/UBERON_6001722;insect ring gland; -http://purl.obolibrary.org/obo/UBERON_6001728;insect larval tagma; -http://purl.obolibrary.org/obo/UBERON_6001729;insect larval segment; -http://purl.obolibrary.org/obo/UBERON_6001730;insect larval head; -http://purl.obolibrary.org/obo/UBERON_6001731;insect larval ocular segment; -http://purl.obolibrary.org/obo/UBERON_6001732;insect larval head segment; -http://purl.obolibrary.org/obo/UBERON_6001733;insect larval procephalic segment; -http://purl.obolibrary.org/obo/UBERON_6001734;insect larval labral segment; -http://purl.obolibrary.org/obo/UBERON_6001735;insect larval antennal segment; -http://purl.obolibrary.org/obo/UBERON_6001737;insect larval gnathal segment; -http://purl.obolibrary.org/obo/UBERON_6001740;insect larval labial segment; -http://purl.obolibrary.org/obo/UBERON_6001741;insect larval thorax; -http://purl.obolibrary.org/obo/UBERON_6001742;insect larval thoracic segment; -http://purl.obolibrary.org/obo/UBERON_6001743;insect larval prothoracic segment; -http://purl.obolibrary.org/obo/UBERON_6001744;insect larval mesothoracic segment; -http://purl.obolibrary.org/obo/UBERON_6001745;insect larval metathoracic segment; -http://purl.obolibrary.org/obo/UBERON_6001746;insect larval abdomen; -http://purl.obolibrary.org/obo/UBERON_6001747;insect larval abdominal segment; -http://purl.obolibrary.org/obo/UBERON_6001755;insect larval abdominal segment 8; -http://purl.obolibrary.org/obo/UBERON_6001756;insect larval abdominal segment 9; -http://purl.obolibrary.org/obo/UBERON_6001760;insect embryonic/larval imaginal precursor;larval imaginal precursor -http://purl.obolibrary.org/obo/UBERON_6001764;insect labial disc; -http://purl.obolibrary.org/obo/UBERON_6001765;insect clypeo-labral disc;clypeolabral disc -http://purl.obolibrary.org/obo/UBERON_6001766;insect eye-antennal disc; -http://purl.obolibrary.org/obo/UBERON_6001767;insect antennal disc; -http://purl.obolibrary.org/obo/UBERON_6001776;insect dorsal thoracic disc;dorsal thoracic disk -http://purl.obolibrary.org/obo/UBERON_6001778;insect wing disc;dorsal mesothoracic disc -http://purl.obolibrary.org/obo/UBERON_6001779;insect haltere disc;dorsal metathoracic disc -http://purl.obolibrary.org/obo/UBERON_6001780;insect ventral thoracic disc;ventral thoracic disk -http://purl.obolibrary.org/obo/UBERON_6001781;insect prothoracic leg disc;1st leg disc -http://purl.obolibrary.org/obo/UBERON_6001781;insect prothoracic leg disc;T1 leg disc -http://purl.obolibrary.org/obo/UBERON_6001781;insect prothoracic leg disc;ventral prothoracic disc -http://purl.obolibrary.org/obo/UBERON_6001784;insect genital disc; -http://purl.obolibrary.org/obo/UBERON_6001785;insect male genital disc; -http://purl.obolibrary.org/obo/UBERON_6001787;insect female genital disc; -http://purl.obolibrary.org/obo/UBERON_6001789;insect histoblast; -http://purl.obolibrary.org/obo/UBERON_6001790;insect histoblast nest; -http://purl.obolibrary.org/obo/UBERON_6001791;insect dorsal histoblast nest abdominal; -http://purl.obolibrary.org/obo/UBERON_6001792;insect anterior dorsal histoblast nest abdominal; -http://purl.obolibrary.org/obo/UBERON_6001809;insect posterior dorsal histoblast nest abdominal; -http://purl.obolibrary.org/obo/UBERON_6001842;insect embryonic/larval digestive system;larval digestive system -http://purl.obolibrary.org/obo/UBERON_6001845;insect cephalopharyngeal skeleton;cephalo-pharyngeal skeleton -http://purl.obolibrary.org/obo/UBERON_6001845;insect cephalopharyngeal skeleton;larval head skeleton -http://purl.obolibrary.org/obo/UBERON_6001845;insect cephalopharyngeal skeleton;mouth parts -http://purl.obolibrary.org/obo/UBERON_6001848;insect epipharyngeal sclerite;epistomal sclerite -http://purl.obolibrary.org/obo/UBERON_6001911;insect embryonic/larval nervous system;larval nervous system -http://purl.obolibrary.org/obo/UBERON_6001919;insect embryonic/larval central nervous system;larval central nervous system -http://purl.obolibrary.org/obo/UBERON_6001920;insect embryonic/larval brain; -http://purl.obolibrary.org/obo/UBERON_6001925;insect embryonic/larval protocerebrum; -http://purl.obolibrary.org/obo/UBERON_6002639;insect larval sense organ;larval sense organ -http://purl.obolibrary.org/obo/UBERON_6002642;insect embryonic/larval ocular segment sensillum;larval ocular segment sensillum -http://purl.obolibrary.org/obo/UBERON_6003005;insect adult tagma; -http://purl.obolibrary.org/obo/UBERON_6003006;insect adult segment; -http://purl.obolibrary.org/obo/UBERON_6003007;insect adult head; -http://purl.obolibrary.org/obo/UBERON_6003009;insect adult head segment; -http://purl.obolibrary.org/obo/UBERON_6003010;insect adult procephalic segment; -http://purl.obolibrary.org/obo/UBERON_6003011;insect adult labral segment; -http://purl.obolibrary.org/obo/UBERON_6003012;insect adult antennal segment;adult antennal structure -http://purl.obolibrary.org/obo/UBERON_6003018;insect adult thorax; -http://purl.obolibrary.org/obo/UBERON_6003019;insect adult thoracic segment; -http://purl.obolibrary.org/obo/UBERON_6003020;insect adult prothoracic segment;prothorax -http://purl.obolibrary.org/obo/UBERON_6003020;insect adult prothoracic segment;t1 -http://purl.obolibrary.org/obo/UBERON_6003020;insect adult prothoracic segment;thoracic segment 1 -http://purl.obolibrary.org/obo/UBERON_6003021;insect adult mesothoracic segment;mesothorax -http://purl.obolibrary.org/obo/UBERON_6003021;insect adult mesothoracic segment;t2 -http://purl.obolibrary.org/obo/UBERON_6003021;insect adult mesothoracic segment;thoracic segment 2 -http://purl.obolibrary.org/obo/UBERON_6003023;insect adult abdomen; -http://purl.obolibrary.org/obo/UBERON_6003024;insect adult abdominal segment; -http://purl.obolibrary.org/obo/UBERON_6003039;dorsal trunk of insect trachea; -http://purl.obolibrary.org/obo/UBERON_6003218;insect adult muscle system; -http://purl.obolibrary.org/obo/UBERON_6003259;insect adult somatic muscle; -http://purl.obolibrary.org/obo/UBERON_6003559;insect adult nervous system; -http://purl.obolibrary.org/obo/UBERON_6003623;insect adult central nervous system; -http://purl.obolibrary.org/obo/UBERON_6003624;insect adult brain; -http://purl.obolibrary.org/obo/UBERON_6003626;insect supraesophageal ganglion; -http://purl.obolibrary.org/obo/UBERON_6003627;insect protocerebrum;protocerebral neuromere -http://purl.obolibrary.org/obo/UBERON_6003632;insect adult central complex;CX -http://purl.obolibrary.org/obo/UBERON_6003632;insect adult central complex;adult central body complex -http://purl.obolibrary.org/obo/UBERON_6004203;insect adult clypeo-labral anlage; -http://purl.obolibrary.org/obo/UBERON_6004296;insect sex comb;ctenidium -http://purl.obolibrary.org/obo/UBERON_6004296;insect sex comb;metatarsal comb -http://purl.obolibrary.org/obo/UBERON_6004340;insect wing hair; -http://purl.obolibrary.org/obo/UBERON_6004475;insect sclerite;integumentary plate -http://purl.obolibrary.org/obo/UBERON_6004476;insect tergite;abdominal tergite -http://purl.obolibrary.org/obo/UBERON_6004477;insect sternite;abdominal sternite -http://purl.obolibrary.org/obo/UBERON_6004481;insect adult external head; -http://purl.obolibrary.org/obo/UBERON_6004519;insect arista;segment 6 -http://purl.obolibrary.org/obo/UBERON_6004520;insect mouthpart; -http://purl.obolibrary.org/obo/UBERON_6004521;insect clypeus; -http://purl.obolibrary.org/obo/UBERON_6004535;insect proboscis; -http://purl.obolibrary.org/obo/UBERON_6004540;insect basiproboscis; -http://purl.obolibrary.org/obo/UBERON_6004551;insect adult external thorax; -http://purl.obolibrary.org/obo/UBERON_6004552;insect tergum; -http://purl.obolibrary.org/obo/UBERON_6004578;insect adult external mesothorax; -http://purl.obolibrary.org/obo/UBERON_6004579;insect dorsal mesothorax; -http://purl.obolibrary.org/obo/UBERON_6004580;insect mesothoracic tergum;alinotum -http://purl.obolibrary.org/obo/UBERON_6004580;insect mesothoracic tergum;mesonotum -http://purl.obolibrary.org/obo/UBERON_6004646;insect tarsal segment;tarsomere -http://purl.obolibrary.org/obo/UBERON_6004648;insect metatarsus;1st tarsal segment -http://purl.obolibrary.org/obo/UBERON_6004648;insect metatarsus;basitarsus -http://purl.obolibrary.org/obo/UBERON_6004648;insect metatarsus;first segment of the tarsus -http://purl.obolibrary.org/obo/UBERON_6004648;insect metatarsus;first tarsal segment -http://purl.obolibrary.org/obo/UBERON_6004648;insect metatarsus;tarsal segment 1 -http://purl.obolibrary.org/obo/UBERON_6004663;insect prothoracic leg;T1 leg -http://purl.obolibrary.org/obo/UBERON_6004663;insect prothoracic leg;first leg -http://purl.obolibrary.org/obo/UBERON_6004668;insect prothoracic tarsal segment; -http://purl.obolibrary.org/obo/UBERON_6004670;insect prothoracic metatarsus;T1 Ts1 -http://purl.obolibrary.org/obo/UBERON_6004670;insect prothoracic metatarsus;T1 tarsal segment 1 -http://purl.obolibrary.org/obo/UBERON_6004670;insect prothoracic metatarsus;prothoracic basitarsus -http://purl.obolibrary.org/obo/UBERON_6004670;insect prothoracic metatarsus;prothoracic tarsal segment 1 -http://purl.obolibrary.org/obo/UBERON_6004788;insect adult external abdomen; -http://purl.obolibrary.org/obo/UBERON_6004823;insect analia; -http://purl.obolibrary.org/obo/UBERON_6004824;insect female analia; -http://purl.obolibrary.org/obo/UBERON_6004825;insect male analia; -http://purl.obolibrary.org/obo/UBERON_6004979;insect trichome; -http://purl.obolibrary.org/obo/UBERON_6004983;insect embryonic/larval cuticle;larval cuticle -http://purl.obolibrary.org/obo/UBERON_6004986;insect third instar larval cuticle; -http://purl.obolibrary.org/obo/UBERON_6005023;insect imaginal precursor; -http://purl.obolibrary.org/obo/UBERON_6005036;insect tracheal pit;embryonic tracheal pit -http://purl.obolibrary.org/obo/UBERON_6005036;insect tracheal pit;tracheal sac -http://purl.obolibrary.org/obo/UBERON_6005037;insect tracheal primordium;P2 TrachP -http://purl.obolibrary.org/obo/UBERON_6005043;insect trachea; -http://purl.obolibrary.org/obo/UBERON_6005054;insect spiracle; -http://purl.obolibrary.org/obo/UBERON_6005096;insect stomatogastric nervous system; -http://purl.obolibrary.org/obo/UBERON_6005168;insect external sensory organ; -http://purl.obolibrary.org/obo/UBERON_6005177;insect chaeta;sensillum chaeticum -http://purl.obolibrary.org/obo/UBERON_6005378;insect wing margin; -http://purl.obolibrary.org/obo/UBERON_6005393;insect embryonic/larval integumentary system; -http://purl.obolibrary.org/obo/UBERON_6005396;insect adult integumentary system;adult integument -http://purl.obolibrary.org/obo/UBERON_6005413;insect anlage in statu nascendi; -http://purl.obolibrary.org/obo/UBERON_6005427;insect ectoderm anlage; -http://purl.obolibrary.org/obo/UBERON_6005428;insect dorsal ectoderm anlage; -http://purl.obolibrary.org/obo/UBERON_6005434;insect visual anlage; -http://purl.obolibrary.org/obo/UBERON_6005436;insect trunk mesoderm anlage; -http://purl.obolibrary.org/obo/UBERON_6005439;insect clypeo-labral anlage; -http://purl.obolibrary.org/obo/UBERON_6005461;insect circulatory system primordium; -http://purl.obolibrary.org/obo/UBERON_6005467;insect lymph gland primordium; -http://purl.obolibrary.org/obo/UBERON_6005514;insect adult clypeo-labral primordium; -http://purl.obolibrary.org/obo/UBERON_6005526;insect dorsal epidermis primordium; -http://purl.obolibrary.org/obo/UBERON_6005533;insect ventral epidermis primordium; -http://purl.obolibrary.org/obo/UBERON_6005538;insect clypeo-labral primordium; -http://purl.obolibrary.org/obo/UBERON_6005541;insect cardiogenic mesoderm;CardMes -http://purl.obolibrary.org/obo/UBERON_6005541;insect cardiogenic mesoderm;CardMesP2 -http://purl.obolibrary.org/obo/UBERON_6005541;insect cardiogenic mesoderm;P2 CardMes -http://purl.obolibrary.org/obo/UBERON_6005541;insect cardiogenic mesoderm;cardiac mesoderm -http://purl.obolibrary.org/obo/UBERON_6005558;insect ventral ectoderm; -http://purl.obolibrary.org/obo/UBERON_6005569;insect presumptive embryonic/larval tracheal system; -http://purl.obolibrary.org/obo/UBERON_6005805;insect Bolwig organ;Bolwig's organ -http://purl.obolibrary.org/obo/UBERON_6005805;insect Bolwig organ;embryonic Bolwig's organ -http://purl.obolibrary.org/obo/UBERON_6005805;insect Bolwig organ;embryonic visual system -http://purl.obolibrary.org/obo/UBERON_6005805;insect Bolwig organ;larval Bolwig's organ -http://purl.obolibrary.org/obo/UBERON_6005830;insect Bolwig organ primordium;Bolwig's organ primordium -http://purl.obolibrary.org/obo/UBERON_6005831;insect dorsal imaginal precursor; -http://purl.obolibrary.org/obo/UBERON_6005913;insect arista lateral; -http://purl.obolibrary.org/obo/UBERON_6006011;insect pharate adult; -http://purl.obolibrary.org/obo/UBERON_6006032;insect mesothoracic tergum primordium; -http://purl.obolibrary.org/obo/UBERON_6007020;insect metatarsus of male prothoracic leg; -http://purl.obolibrary.org/obo/UBERON_6007045;insect trunk ectoderm; -http://purl.obolibrary.org/obo/UBERON_6007046;insect dorsal ectoderm derivative; -http://purl.obolibrary.org/obo/UBERON_6007070;insect centro-posterior medial synaptic neuropil domain;centro-posterior medial neuropil -http://purl.obolibrary.org/obo/UBERON_6007070;insect centro-posterior medial synaptic neuropil domain;centro-posterior medial synaptic neuropil domain -http://purl.obolibrary.org/obo/UBERON_6007070;insect centro-posterior medial synaptic neuropil domain;larval central complex -http://purl.obolibrary.org/obo/UBERON_6007116;insect presumptive embryonic/larval system; -http://purl.obolibrary.org/obo/UBERON_6007145;insect adult protocerebrum; -http://purl.obolibrary.org/obo/UBERON_6007149;segment of antenna; -http://purl.obolibrary.org/obo/UBERON_6007150;insect segment of leg; -http://purl.obolibrary.org/obo/UBERON_6007231;insect external sensillum; -http://purl.obolibrary.org/obo/UBERON_6007232;insect eo-type sensillum; -http://purl.obolibrary.org/obo/UBERON_6007233;insect internal sensillum; -http://purl.obolibrary.org/obo/UBERON_6007240;insect embryonic/larval sensillum;larval sensillum -http://purl.obolibrary.org/obo/UBERON_6007242;insect embryonic/larval head sensillum; -http://purl.obolibrary.org/obo/UBERON_6007245;insect cuticular specialization; -http://purl.obolibrary.org/obo/UBERON_6007248;insect chorionic specialization; -http://purl.obolibrary.org/obo/UBERON_6007280;insect embryonic/larval head sense organ;larval head sense organ -http://purl.obolibrary.org/obo/UBERON_6007284;insect region of integument; -http://purl.obolibrary.org/obo/UBERON_6007285;insect segmental subdivision of integument; -http://purl.obolibrary.org/obo/UBERON_6007288;insect integumentary specialisation; -http://purl.obolibrary.org/obo/UBERON_6007289;insect tagmatic subdivision of integument; -http://purl.obolibrary.org/obo/UBERON_6007331;insect segmental subdivision of organ system; -http://purl.obolibrary.org/obo/UBERON_6007373;insect internal sense organ; -http://purl.obolibrary.org/obo/UBERON_6007424;insect epithelial furrow; -http://purl.obolibrary.org/obo/UBERON_6016022;insect abdominal histoblast primordium; -http://purl.obolibrary.org/obo/UBERON_6017021;insect abdominal histoblast anlage; -http://purl.obolibrary.org/obo/UBERON_6025991;insect anterior ectoderm derivative; -http://purl.obolibrary.org/obo/UBERON_6025993;insect ventral ectoderm derivative; -http://purl.obolibrary.org/obo/UBERON_6026000;insect trunk mesoderm derivative; -http://purl.obolibrary.org/obo/UBERON_6026002;insect visceral mesoderm derivative; -http://purl.obolibrary.org/obo/UBERON_6040003;insect non-connected developing system; -http://purl.obolibrary.org/obo/UBERON_6040005;insect synaptic neuropil; -http://purl.obolibrary.org/obo/UBERON_6040007;insect synaptic neuropil domain; -http://purl.obolibrary.org/obo/UBERON_6041000;insect synaptic neuropil block;level 1 neuropil -http://purl.obolibrary.org/obo/UBERON_6100153;insect sensilla row; -http://purl.obolibrary.org/obo/UBERON_6110636;insect adult cerebral ganglion;CRG -http://purl.obolibrary.org/obo/UBERON_6110746;insect presumptive prothoracic metatarsus; -http://purl.obolibrary.org/obo/UBERON_6110811;insect presumptive arista; -http://purl.obolibrary.org/obo/UBERON_7500046;proximal-most point of head of femur; -http://purl.obolibrary.org/obo/UBERON_7500047;proximal-most point of head of humerus; -http://purl.obolibrary.org/obo/UBERON_7500048;proximal-most point of ventral tubercle of humerus; -http://purl.obolibrary.org/obo/UBERON_7500049;proximal-most point of greater trochanter of femur; -http://purl.obolibrary.org/obo/UBERON_7500052;lower fourth secondary molar tooth;lower fourth permanent molar tooth -http://purl.obolibrary.org/obo/UBERON_7500053;lower fourth secondary premolar tooth;lower fourth permanent premolar tooth -http://purl.obolibrary.org/obo/UBERON_7500054;lower third secondary premolar tooth;lower third permanent premolar tooth -http://purl.obolibrary.org/obo/UBERON_7500055;molar tooth 4;fourth molar tooth -http://purl.obolibrary.org/obo/UBERON_7500055;molar tooth 4;molar 4 -http://purl.obolibrary.org/obo/UBERON_7500055;molar tooth 4;molar 4 tooth -http://purl.obolibrary.org/obo/UBERON_7500056;premolar 3;premolar tooth 3 -http://purl.obolibrary.org/obo/UBERON_7500056;premolar 3;third premolar tooth -http://purl.obolibrary.org/obo/UBERON_7500057;upper fourth secondary molar tooth;upper fourth permanent molar tooth -http://purl.obolibrary.org/obo/UBERON_7500058;upper fourth secondary premolar tooth;upper fourth permanent premolar tooth -http://purl.obolibrary.org/obo/UBERON_7500059;upper third secondary premolar tooth;upper third permanent premolar tooth -http://purl.obolibrary.org/obo/UBERON_7500061;trochlear ridge of humerus; -http://purl.obolibrary.org/obo/UBERON_7500062;tibial tuberosity;fossa digitalis -http://purl.obolibrary.org/obo/UBERON_7500063;trochlea of talus;trochlea for tibia -http://purl.obolibrary.org/obo/UBERON_7500063;trochlea of talus;trochlea of astragalus -http://purl.obolibrary.org/obo/UBERON_7500063;trochlea of talus;trochlea tali -http://purl.obolibrary.org/obo/UBERON_7500064;trochlear groove of talus;trochlear groove of astragalus -http://purl.obolibrary.org/obo/UBERON_7500065;condyle of talus;condyle of astragalus -http://purl.obolibrary.org/obo/UBERON_7500066;medial condyle of talus;medial condyle of astragalus -http://purl.obolibrary.org/obo/UBERON_7500067;lateral condyle of talus;lateral condyle of astragalus -http://purl.obolibrary.org/obo/UBERON_7500068;ridge of medial condyle of talus;ridge of medial condyle of astragalus -http://purl.obolibrary.org/obo/UBERON_7500069;ridge of lateral condyle of talus;ridge of lateral condyle of astragalus -http://purl.obolibrary.org/obo/UBERON_7500070;sulcus tali;sulcus for flexor hallucis longus tendon -http://purl.obolibrary.org/obo/UBERON_7500071;rostrum; -http://purl.obolibrary.org/obo/UBERON_7500073;left nasal bone; -http://purl.obolibrary.org/obo/UBERON_7500074;right nasal bone; -http://purl.obolibrary.org/obo/UBERON_7500075;left zygomatic arch; -http://purl.obolibrary.org/obo/UBERON_7500076;right zygomatic arch; -http://purl.obolibrary.org/obo/UBERON_7500078;styloid process of radius;radial condyle -http://purl.obolibrary.org/obo/UBERON_7500078;styloid process of radius;radial styloid process -http://purl.obolibrary.org/obo/UBERON_7500079;ulnar notch of radius;sigmoid cavity -http://purl.obolibrary.org/obo/UBERON_7500079;ulnar notch of radius;ulnar condyle of radius -http://purl.obolibrary.org/obo/UBERON_7500080;articular surface for carpals;distal articular surface of radius -http://purl.obolibrary.org/obo/UBERON_7500081;articular surface for the tibia on the talus; -http://purl.obolibrary.org/obo/UBERON_7500083;greater palatine foramen; -http://purl.obolibrary.org/obo/UBERON_7500084;lesser palatine foramen; -http://purl.obolibrary.org/obo/UBERON_7500085;endodontium;endodont -http://purl.obolibrary.org/obo/UBERON_7500085;endodontium;pulp-dentin complex -http://purl.obolibrary.org/obo/UBERON_7500089;posterior articular facet for talus of calcaneus;proximal facet of calcaneum -http://purl.obolibrary.org/obo/UBERON_7500091;middle articular facet for talus of calcaneus; -http://purl.obolibrary.org/obo/UBERON_7500092;anterior articular facet for talus of calcaneus;distal facet of calcaneum -http://purl.obolibrary.org/obo/UBERON_7500093;calcaneal body;corpus calcanei -http://purl.obolibrary.org/obo/UBERON_7500094;tubercle of calcaneus;calcaneal tubercle -http://purl.obolibrary.org/obo/UBERON_7500094;tubercle of calcaneus;calcaneal tuberosity -http://purl.obolibrary.org/obo/UBERON_7500094;tubercle of calcaneus;tuberosity of calcaneus -http://purl.obolibrary.org/obo/UBERON_7500095;lateral tubercle of calcaneus;lateral tuberosity of calcaneus -http://purl.obolibrary.org/obo/UBERON_7500096;medial tubercle of calcaneus;medial tuberosity of calcaneus -http://purl.obolibrary.org/obo/UBERON_7500101;antorbital notch; -http://purl.obolibrary.org/obo/UBERON_7500103;preorbital fossa; -http://purl.obolibrary.org/obo/UBERON_7500105;coracoid process of calcaneus;processus coracoideus of calcaneus -http://purl.obolibrary.org/obo/UBERON_7500106;hormion; -http://purl.obolibrary.org/obo/UBERON_7500107;sphenovomerine suture; -http://purl.obolibrary.org/obo/UBERON_7500108;cheek tooth;cheektooth -http://purl.obolibrary.org/obo/UBERON_7500109;basion; -http://purl.obolibrary.org/obo/UBERON_7500110;synsphenion; -http://purl.obolibrary.org/obo/UBERON_7500111;intersphenoid suture;intersphenoidal synchondrosis -http://purl.obolibrary.org/obo/UBERON_7500112;prosthion;alveolar point -http://purl.obolibrary.org/obo/UBERON_7500112;prosthion;prostheon -http://purl.obolibrary.org/obo/UBERON_7500113;akrokranion; -http://purl.obolibrary.org/obo/UBERON_7500114;cheek tooth row;cheektooth row -http://purl.obolibrary.org/obo/UBERON_7500115;sagittal crest;sagittal ridge -http://purl.obolibrary.org/obo/UBERON_7500117;opisthocranion;opisthokranion -http://purl.obolibrary.org/obo/UBERON_7500118;opisthion; -http://purl.obolibrary.org/obo/UBERON_7500119;ectorbitale; -http://purl.obolibrary.org/obo/UBERON_7500120;zygion; -http://purl.obolibrary.org/obo/UBERON_7500121;paroccipital process;estiloid process -http://purl.obolibrary.org/obo/UBERON_7500121;paroccipital process;paracondylar -http://purl.obolibrary.org/obo/UBERON_7500121;paroccipital process;parajugular -http://purl.obolibrary.org/obo/UBERON_7500121;paroccipital process;paramastoid process -http://purl.obolibrary.org/obo/UBERON_7500121;paroccipital process;paraoccipital -http://purl.obolibrary.org/obo/UBERON_7500123;incisor tooth 3;third incisor tooth -http://purl.obolibrary.org/obo/UBERON_7500124;incisor tooth 4;fourth incisor tooth -http://purl.obolibrary.org/obo/UBERON_7500125;incisor tooth 5;fifth incisor tooth -http://purl.obolibrary.org/obo/UBERON_7500126;molar tooth 5;fifth molar tooth -http://purl.obolibrary.org/obo/UBERON_7500127;otion; -http://purl.obolibrary.org/obo/UBERON_7500128;cranial temporal crest; -http://purl.obolibrary.org/obo/UBERON_8000004;central retina; -http://purl.obolibrary.org/obo/UBERON_8000005;Henle's fiber layer;HFL -http://purl.obolibrary.org/obo/UBERON_8000005;Henle's fiber layer;Henle fiber layer -http://purl.obolibrary.org/obo/UBERON_8000005;Henle's fiber layer;nerve fiber layer of Henle -http://purl.obolibrary.org/obo/UBERON_8000006;left side of back; -http://purl.obolibrary.org/obo/UBERON_8000007;right side of back; -http://purl.obolibrary.org/obo/UBERON_8000008;cementocyte lacuna; -http://purl.obolibrary.org/obo/UBERON_8000009;Purkinje fiber network;Purkinje fibre network -http://purl.obolibrary.org/obo/UBERON_8300000;skin of scalp;adult scalp zone of skin -http://purl.obolibrary.org/obo/UBERON_8300000;skin of scalp;scalp skin -http://purl.obolibrary.org/obo/UBERON_8300000;skin of scalp;scalp zone of skin -http://purl.obolibrary.org/obo/UBERON_8300000;skin of scalp;zone of skin of adult scalp -http://purl.obolibrary.org/obo/UBERON_8300000;skin of scalp;zone of skin of scalp -http://purl.obolibrary.org/obo/UBERON_8300001;right forelimb; -http://purl.obolibrary.org/obo/UBERON_8300002;left forelimb; -http://purl.obolibrary.org/obo/UBERON_8300003;right hindlimb; -http://purl.obolibrary.org/obo/UBERON_8300004;left hindlimb; -http://purl.obolibrary.org/obo/UBERON_8400001;hepatic acinus zone 1;hepatic acinus periportal zone -http://purl.obolibrary.org/obo/UBERON_8400002;hepatic acinus zone 3;hepatic acinus centrilobular zone -http://purl.obolibrary.org/obo/UBERON_8400002;hepatic acinus zone 3;hepatic acinus pericentral zone -http://purl.obolibrary.org/obo/UBERON_8400002;hepatic acinus zone 3;hepatic acinus perivenous zone -http://purl.obolibrary.org/obo/UBERON_8400003;hepatic acinus zone 2;hepatic acinus intermediary zone -http://purl.obolibrary.org/obo/UBERON_8400005;metabolic zone of liver;hepatic acinus metabolic zone -http://purl.obolibrary.org/obo/UBERON_8400006;liver lobule periportal region; -http://purl.obolibrary.org/obo/UBERON_8400007;liver lobule centrilobular region; -http://purl.obolibrary.org/obo/UBERON_8400008;liver lobule midzonal region; -http://purl.obolibrary.org/obo/UBERON_8400021;liver serosa;serosa of liver -http://purl.obolibrary.org/obo/UBERON_8400021;liver serosa;tunica serosa hepatis -http://purl.obolibrary.org/obo/UBERON_8400023;liver subserosa;hepatic subserosa -http://purl.obolibrary.org/obo/UBERON_8400023;liver subserosa;subserosal tissue of liver -http://purl.obolibrary.org/obo/UBERON_8400023;liver subserosa;subserous layer of liver -http://purl.obolibrary.org/obo/UBERON_8400023;liver subserosa;tela subserosa (hepar) -http://purl.obolibrary.org/obo/UBERON_8400023;liver subserosa;tela subserosa hepatis -http://purl.obolibrary.org/obo/UBERON_8400024;subcapsular region of liver;liver subcapsular region -http://purl.obolibrary.org/obo/UBERON_8400024;subcapsular region of liver;liver subcapsular tissue -http://purl.obolibrary.org/obo/UBERON_8400024;subcapsular region of liver;subcapsular tissue of liver -http://purl.obolibrary.org/obo/UBERON_8410000;duodeno-jejunal junction;duodeno-jejunal flexure -http://purl.obolibrary.org/obo/UBERON_8410000;duodeno-jejunal junction;duodenojejunal flexure -http://purl.obolibrary.org/obo/UBERON_8410000;duodeno-jejunal junction;duodenojejunal junction -http://purl.obolibrary.org/obo/UBERON_8410000;duodeno-jejunal junction;flexura duodenojejunalis -http://purl.obolibrary.org/obo/UBERON_8410001;small intestine venule;venule of small intestine -http://purl.obolibrary.org/obo/UBERON_8410002;small intestine lymphatic vessel;lymphatic vessel of small intestine -http://purl.obolibrary.org/obo/UBERON_8410003;ductal plate; -http://purl.obolibrary.org/obo/UBERON_8410004;small intestine arteriole;arteriole of small intestine -http://purl.obolibrary.org/obo/UBERON_8410004;small intestine arteriole;arteriole of villus of small intestine -http://purl.obolibrary.org/obo/UBERON_8410004;small intestine arteriole;small intestine villus arteriole -http://purl.obolibrary.org/obo/UBERON_8410005;transitional glandular epithelium of anorectum;anorectum transitional glandular epithelium -http://purl.obolibrary.org/obo/UBERON_8410005;transitional glandular epithelium of anorectum;glandular epithelium of anal transition zone -http://purl.obolibrary.org/obo/UBERON_8410005;transitional glandular epithelium of anorectum;glandular epithelium of the anal transition zone -http://purl.obolibrary.org/obo/UBERON_8410006;submucous nerve plexus of anorectum;anorectum submucous nerve plexus -http://purl.obolibrary.org/obo/UBERON_8410007;myenteric nerve plexus of anorectum;anorectum myenteric nerve plexus -http://purl.obolibrary.org/obo/UBERON_8410008;venule of anorectum;anorectum venule -http://purl.obolibrary.org/obo/UBERON_8410009;arteriole of anorectum;anorectum arteriole -http://purl.obolibrary.org/obo/UBERON_8410010;fimbria of uterine tube;fimbria of fallopian tube -http://purl.obolibrary.org/obo/UBERON_8410010;fimbria of uterine tube;fimbriae of fallopian tube -http://purl.obolibrary.org/obo/UBERON_8410010;fimbria of uterine tube;fimbriae of uterine tube -http://purl.obolibrary.org/obo/UBERON_8410011;myenteric nerve plexus of appendix;myenteric nerve plexus of appendix vermiformis -http://purl.obolibrary.org/obo/UBERON_8410011;myenteric nerve plexus of appendix;myenteric nerve plexus of vermiform appendix -http://purl.obolibrary.org/obo/UBERON_8410012;submucous nerve plexus of appendix;submucous nerve plexus of appendix vermiformis -http://purl.obolibrary.org/obo/UBERON_8410012;submucous nerve plexus of appendix;submucous nerve plexus of vermiform appendix -http://purl.obolibrary.org/obo/UBERON_8410013;afferent lymphatic vessel valve;valve of afferent lymphatic vessel -http://purl.obolibrary.org/obo/UBERON_8410014;efferent lymphatic vessel valve;valve of efferent lymphatic vessel -http://purl.obolibrary.org/obo/UBERON_8410015;arteriole of colon; -http://purl.obolibrary.org/obo/UBERON_8410016;descending sigmoid junction;descending-sigmoid colon junction -http://purl.obolibrary.org/obo/UBERON_8410016;descending sigmoid junction;descending-sigmoid junction -http://purl.obolibrary.org/obo/UBERON_8410017;left colic vein; -http://purl.obolibrary.org/obo/UBERON_8410018;right colic vein; -http://purl.obolibrary.org/obo/UBERON_8410019;jejuno-ileal junction;jejunoileal junction -http://purl.obolibrary.org/obo/UBERON_8410020;venule of appendix;venule of vermiform appendix -http://purl.obolibrary.org/obo/UBERON_8410020;venule of appendix;vermiform appendix venule -http://purl.obolibrary.org/obo/UBERON_8410021;inguinal region skin;groin skin -http://purl.obolibrary.org/obo/UBERON_8410021;inguinal region skin;inguinal skin -http://purl.obolibrary.org/obo/UBERON_8410021;inguinal region skin;skin of groin -http://purl.obolibrary.org/obo/UBERON_8410021;inguinal region skin;skin of inguinal region -http://purl.obolibrary.org/obo/UBERON_8410021;inguinal region skin;zone of skin of groin -http://purl.obolibrary.org/obo/UBERON_8410021;inguinal region skin;zone of skin of inguinal region -http://purl.obolibrary.org/obo/UBERON_8410022;left colic artery; -http://purl.obolibrary.org/obo/UBERON_8410023;right colic artery; -http://purl.obolibrary.org/obo/UBERON_8410024;intestinal junction;junction of intestine -http://purl.obolibrary.org/obo/UBERON_8410025;transition zone of prostate;prostate transition zone -http://purl.obolibrary.org/obo/UBERON_8410026;peripheral zone of prostate;prostate peripheral zone -http://purl.obolibrary.org/obo/UBERON_8410027;central zone of prostate;prostate central zone -http://purl.obolibrary.org/obo/UBERON_8410028;arteriole of appendix;appendix vermiformis arteriole -http://purl.obolibrary.org/obo/UBERON_8410028;arteriole of appendix;arteriole of appendix vermiformis -http://purl.obolibrary.org/obo/UBERON_8410028;arteriole of appendix;arteriole of vermiform appendix -http://purl.obolibrary.org/obo/UBERON_8410028;arteriole of appendix;vermiform appendix arteriole -http://purl.obolibrary.org/obo/UBERON_8410029;lymphatic capillary of appendix;lymphatic capillary of appendix vermiformis -http://purl.obolibrary.org/obo/UBERON_8410029;lymphatic capillary of appendix;lymphatic capillary of vermiform appendix -http://purl.obolibrary.org/obo/UBERON_8410030;lymphatic vessel of appendix;lymphatic vessel of appendix vermiformis -http://purl.obolibrary.org/obo/UBERON_8410030;lymphatic vessel of appendix;lymphatic vessel of vermiform appendix -http://purl.obolibrary.org/obo/UBERON_8410031;muscularis mucosae of appendix;muscularis mucosae of appendix vermiformis -http://purl.obolibrary.org/obo/UBERON_8410031;muscularis mucosae of appendix;muscularis mucosae of vermiform appendix -http://purl.obolibrary.org/obo/UBERON_8410032;trabecular sinus of lymph node;lymph node trabecular sinus -http://purl.obolibrary.org/obo/UBERON_8410033;lymph node vein;hilar vein of lymph node -http://purl.obolibrary.org/obo/UBERON_8410033;lymph node vein;vein of lymph node -http://purl.obolibrary.org/obo/UBERON_8410034;lymph node artery;artery of lymph node -http://purl.obolibrary.org/obo/UBERON_8410034;lymph node artery;hilar artery of lymph node -http://purl.obolibrary.org/obo/UBERON_8410035;medullary arteriole of lymph node;arteriole of medulla of lymph node -http://purl.obolibrary.org/obo/UBERON_8410036;medullary venule of lymph node;venule of medulla of lymph node -http://purl.obolibrary.org/obo/UBERON_8410037;high endothelial venule; -http://purl.obolibrary.org/obo/UBERON_8410038;high endothelial venule of lymph node;lymph node high endothelial venule -http://purl.obolibrary.org/obo/UBERON_8410039;high endothelial venule of appendix;appendix high endothelial venule -http://purl.obolibrary.org/obo/UBERON_8410039;high endothelial venule of appendix;high endothelial venule of appendix vermiformis -http://purl.obolibrary.org/obo/UBERON_8410039;high endothelial venule of appendix;high endothelial venule of vermiform appendix -http://purl.obolibrary.org/obo/UBERON_8410040;high endothelial venule of small intestine Peyer's patch;high endothelial venule of Peyer's patch of small intestine -http://purl.obolibrary.org/obo/UBERON_8410041;venule of lymph node;lymph node venule -http://purl.obolibrary.org/obo/UBERON_8410042;arteriole of lymph node;lymph node arteriole -http://purl.obolibrary.org/obo/UBERON_8410043;bronchus submucosal gland;bronchial submucosal gland -http://purl.obolibrary.org/obo/UBERON_8410043;bronchus submucosal gland;submucosal bronchial gland -http://purl.obolibrary.org/obo/UBERON_8410043;bronchus submucosal gland;submucosal bronchus gland -http://purl.obolibrary.org/obo/UBERON_8410044;vein of appendix;vein of appendix vermiformis -http://purl.obolibrary.org/obo/UBERON_8410044;vein of appendix;vein of vermiform appendix -http://purl.obolibrary.org/obo/UBERON_8410045;artery of appendix;artery of appendix vermiformis -http://purl.obolibrary.org/obo/UBERON_8410045;artery of appendix;artery of vermiform appendix -http://purl.obolibrary.org/obo/UBERON_8410046;appendix smooth muscle circular layer;smooth muscle circular layer of appendix -http://purl.obolibrary.org/obo/UBERON_8410046;appendix smooth muscle circular layer;smooth muscle circular layer of appendix vermiformis -http://purl.obolibrary.org/obo/UBERON_8410046;appendix smooth muscle circular layer;smooth muscle circular layer of vermiform appendix -http://purl.obolibrary.org/obo/UBERON_8410047;appendix smooth muscle longitudinal layer;smooth muscle longitudinal layer of appendix -http://purl.obolibrary.org/obo/UBERON_8410047;appendix smooth muscle longitudinal layer;smooth muscle longitudinal layer of appendix vermiformis -http://purl.obolibrary.org/obo/UBERON_8410047;appendix smooth muscle longitudinal layer;smooth muscle longitudinal layer of vermiform appendix -http://purl.obolibrary.org/obo/UBERON_8410048;venule of colon; -http://purl.obolibrary.org/obo/UBERON_8410049;serosal nerve fiber of appendix;nerve fiber of serosa of appendix -http://purl.obolibrary.org/obo/UBERON_8410049;serosal nerve fiber of appendix;nerve fibre of serosa of appendix -http://purl.obolibrary.org/obo/UBERON_8410049;serosal nerve fiber of appendix;serosal nerve fiber of appendix vermiformis -http://purl.obolibrary.org/obo/UBERON_8410049;serosal nerve fiber of appendix;serosal nerve fiber of vermiform appendix -http://purl.obolibrary.org/obo/UBERON_8410049;serosal nerve fiber of appendix;serosal nerve fibre of appendix -http://purl.obolibrary.org/obo/UBERON_8410049;serosal nerve fiber of appendix;serosal nerve fibre of appendix vermiformis -http://purl.obolibrary.org/obo/UBERON_8410049;serosal nerve fiber of appendix;serosal nerve fibre of vermiform appendix -http://purl.obolibrary.org/obo/UBERON_8410050;anorectum; -http://purl.obolibrary.org/obo/UBERON_8410051;lymphatic vessel of colon; -http://purl.obolibrary.org/obo/UBERON_8410052;lymph node germinal center light zone;light zone of lymph node germinal center -http://purl.obolibrary.org/obo/UBERON_8410053;lymph node germinal center dark zone;dark zone of lymph node germinal center -http://purl.obolibrary.org/obo/UBERON_8410054;lymphatic capillary of colon; -http://purl.obolibrary.org/obo/UBERON_8410055;lymphatic capillary of anorectum; -http://purl.obolibrary.org/obo/UBERON_8410056;capillary of anorectum;blood vessel capillary of anorectum -http://purl.obolibrary.org/obo/UBERON_8410057;capillary of colon;blood vessel capillary of colon -http://purl.obolibrary.org/obo/UBERON_8410058;Myenteric nerve plexus of colon; -http://purl.obolibrary.org/obo/UBERON_8410058;myenteric nerve plexus of colon; -http://purl.obolibrary.org/obo/UBERON_8410059;Submucous nerve plexus of colon; -http://purl.obolibrary.org/obo/UBERON_8410059;submucous nerve plexus of colon; -http://purl.obolibrary.org/obo/UBERON_8410060;colon smooth muscle circular layer;smooth muscle circular layer of colon -http://purl.obolibrary.org/obo/UBERON_8410061;Longitudinal muscle layer of colon;smooth muscle longitudinal layer of colon -http://purl.obolibrary.org/obo/UBERON_8410061;colon smooth muscle longitudinal layer;smooth muscle longitudinal layer of colon -http://purl.obolibrary.org/obo/UBERON_8410062;parasympathetic cholinergic nerve; -http://purl.obolibrary.org/obo/UBERON_8410063;myenteric nerve plexus of small intestine; -http://purl.obolibrary.org/obo/UBERON_8410064;submucous nerve plexus of small intestine; -http://purl.obolibrary.org/obo/UBERON_8410065;lymph node follicle marginal zone;marginal zone of lymph node follicle -http://purl.obolibrary.org/obo/UBERON_8410066;lymph node paracortex; -http://purl.obolibrary.org/obo/UBERON_8410067;lymph node interfollicular cortex;interfollicular cortex of lymph node -http://purl.obolibrary.org/obo/UBERON_8410068;capillary of small intestine;blood vessel capillary of small intestine -http://purl.obolibrary.org/obo/UBERON_8410068;capillary of small intestine;small intestine capillary -http://purl.obolibrary.org/obo/UBERON_8410069;lymphoid nodule;avian lymphoid nodule -http://purl.obolibrary.org/obo/UBERON_8410070;levator costarum;levator costarum muscle -http://purl.obolibrary.org/obo/UBERON_8410070;levator costarum;levatores costarum -http://purl.obolibrary.org/obo/UBERON_8410070;levator costarum;levatores costarum muscles -http://purl.obolibrary.org/obo/UBERON_8410070;levator costarum;musculi levatores costarum -http://purl.obolibrary.org/obo/UBERON_8410071;subcapsular sinus ceiling;ceiling of subcapsular sinus of lymph node -http://purl.obolibrary.org/obo/UBERON_8410071;subcapsular sinus ceiling;floor of capsule of lymph node -http://purl.obolibrary.org/obo/UBERON_8410071;subcapsular sinus ceiling;subcapsular sinus of lymph node ceiling -http://purl.obolibrary.org/obo/UBERON_8410072;subcapsular sinus floor;ceiling of cortex of lymph node -http://purl.obolibrary.org/obo/UBERON_8410072;subcapsular sinus floor;floor of subcapsular sinus of lymph node -http://purl.obolibrary.org/obo/UBERON_8410072;subcapsular sinus floor;subcapsular sinus of lymph node floor -http://purl.obolibrary.org/obo/UBERON_8410073;medullary region of kidney;kidney medullary region -http://purl.obolibrary.org/obo/UBERON_8410074;lymph node paracortical sinus; -http://purl.obolibrary.org/obo/UBERON_8410075;lymph node paracortical cord; -http://purl.obolibrary.org/obo/UBERON_8410076;glomus coccygeum;Luschka's gland -http://purl.obolibrary.org/obo/UBERON_8410076;glomus coccygeum;coccygeal body -http://purl.obolibrary.org/obo/UBERON_8410076;glomus coccygeum;coccygeal gland -http://purl.obolibrary.org/obo/UBERON_8410076;glomus coccygeum;coccygeal glomus -http://purl.obolibrary.org/obo/UBERON_8410076;glomus coccygeum;gland of Luschka -http://purl.obolibrary.org/obo/UBERON_8410076;glomus coccygeum;glands of Luschka -http://purl.obolibrary.org/obo/UBERON_8410076;glomus coccygeum;glomus body -http://purl.obolibrary.org/obo/UBERON_8410077;airway submucosal gland;respiratory tract submucosal gland -http://purl.obolibrary.org/obo/UBERON_8410077;airway submucosal gland;submucosal gland of respiratory tract -http://purl.obolibrary.org/obo/UBERON_8410078;right lymphatic duct;ductus lymphaticus dexter -http://purl.obolibrary.org/obo/UBERON_8410079;red bone marrow of iliac crest;iliac crest red bone marrow -http://purl.obolibrary.org/obo/UBERON_8410080;red bone marrow of sternum;sternum red bone marrow -http://purl.obolibrary.org/obo/UBERON_8410081;blood microvessel;microvasculature -http://purl.obolibrary.org/obo/UBERON_8410081;blood microvessel;microvessel -http://purl.obolibrary.org/obo/UBERON_8420000;hair of scalp; -http://purl.obolibrary.org/obo/UBERON_8440000;cortical layer II/III;cerebral cortex layer 2/3 -http://purl.obolibrary.org/obo/UBERON_8440000;cortical layer II/III;neocortex layer 2/3 -http://purl.obolibrary.org/obo/UBERON_8440001;cortical layer IV/V;cerebral cortex layer 4/5 -http://purl.obolibrary.org/obo/UBERON_8440001;cortical layer IV/V;neocortex layer 4/5 -http://purl.obolibrary.org/obo/UBERON_8440002;cortical layer V/VI;cerebral cortex layer 5/6 -http://purl.obolibrary.org/obo/UBERON_8440002;cortical layer V/VI;neocortex layer 5/6 -http://purl.obolibrary.org/obo/UBERON_8440003;cortical layer VIb;cerebral cortex layer 6b -http://purl.obolibrary.org/obo/UBERON_8440003;cortical layer VIb;neocortex layer 6b -http://purl.obolibrary.org/obo/UBERON_8440004;laminar subdivision of the cortex; -http://purl.obolibrary.org/obo/UBERON_8440005;rostral periventricular region of the third ventricle;RP3V -http://purl.obolibrary.org/obo/UBERON_8440007;periventricular hypothalamic nucleus, anterior part;PVa -http://purl.obolibrary.org/obo/UBERON_8440008;periventricular hypothalamic nucleus, intermediate part;PVi -http://purl.obolibrary.org/obo/UBERON_8440010;Brodmann (1909) area 17;BA17 -http://purl.obolibrary.org/obo/UBERON_8440010;Brodmann (1909) area 17;Brodmann area 17 -http://purl.obolibrary.org/obo/UBERON_8440010;Brodmann (1909) area 17;Brodmann area 17, striate -http://purl.obolibrary.org/obo/UBERON_8440010;Brodmann (1909) area 17;area 17 of Brodmann-1909 -http://purl.obolibrary.org/obo/UBERON_8440010;Brodmann (1909) area 17;b09-17 -http://purl.obolibrary.org/obo/UBERON_8440010;Brodmann (1909) area 17;primate striate cortex -http://purl.obolibrary.org/obo/UBERON_8440011;cortical visual area; -http://purl.obolibrary.org/obo/UBERON_8440012;cerebral nuclei;CNU -http://purl.obolibrary.org/obo/UBERON_8440013;fasciola cinerea;FC -http://purl.obolibrary.org/obo/UBERON_8440014;ventrolateral preoptic nucleus;VLPO -http://purl.obolibrary.org/obo/UBERON_8440014;ventrolateral preoptic nucleus;intermediate nucleus of the preoptic area (IPA) -http://purl.obolibrary.org/obo/UBERON_8440015;noradrenergic cell groups; -http://purl.obolibrary.org/obo/UBERON_8440016;noradrenergic cell group A1; -http://purl.obolibrary.org/obo/UBERON_8440017;noradrenergiccell group A2; -http://purl.obolibrary.org/obo/UBERON_8440018;noradrenergic cell group A4; -http://purl.obolibrary.org/obo/UBERON_8440019;noradrenergic cell group A5; -http://purl.obolibrary.org/obo/UBERON_8440021;noradrenergic cell group A7; -http://purl.obolibrary.org/obo/UBERON_8440022;noradrenergic cell group A6sc; -http://purl.obolibrary.org/obo/UBERON_8440023;noradrenergic cell group Acg; -http://purl.obolibrary.org/obo/UBERON_8440024;visceral area;VISC -http://purl.obolibrary.org/obo/UBERON_8440025;parapyramidal nucleus;PPY -http://purl.obolibrary.org/obo/UBERON_8440026;parapyramidal nucleus, deep part;PPYd -http://purl.obolibrary.org/obo/UBERON_8440027;parapyramidal nucleus, superficial part;PPYs -http://purl.obolibrary.org/obo/UBERON_8440028;Perihypoglossal nuclei;PHY -http://purl.obolibrary.org/obo/UBERON_8440028;Perihypoglossal nuclei;nuclei perihypoglossales -http://purl.obolibrary.org/obo/UBERON_8440028;Perihypoglossal nuclei;perihypoglossal complex -http://purl.obolibrary.org/obo/UBERON_8440028;Perihypoglossal nuclei;perihypoglossal nuclear complex -http://purl.obolibrary.org/obo/UBERON_8440028;Perihypoglossal nuclei;satellite nuclei -http://purl.obolibrary.org/obo/UBERON_8440029;rubroreticular tract; -http://purl.obolibrary.org/obo/UBERON_8440030;striatum-like amygdalar nuclei;sAMY -http://purl.obolibrary.org/obo/UBERON_8440031;medial corticohypothalmic tract;mct -http://purl.obolibrary.org/obo/UBERON_8440032;prelimbic area;PL -http://purl.obolibrary.org/obo/UBERON_8440032;prelimbic area;PrL -http://purl.obolibrary.org/obo/UBERON_8440032;prelimbic area;prelimbic cortex -http://purl.obolibrary.org/obo/UBERON_8440033;infralimbic area;IL (brain) -http://purl.obolibrary.org/obo/UBERON_8440033;infralimbic area;ILA -http://purl.obolibrary.org/obo/UBERON_8440033;infralimbic area;infralimbic cortex -http://purl.obolibrary.org/obo/UBERON_8440034;bulbocerebellar tract;bct -http://purl.obolibrary.org/obo/UBERON_8440035;sublaterodorsal nucleus;SLD -http://purl.obolibrary.org/obo/UBERON_8440035;sublaterodorsal nucleus;sublaterodorsal tegmental nucleus -http://purl.obolibrary.org/obo/UBERON_8440036;supratrigeminal nucleus;SUT -http://purl.obolibrary.org/obo/UBERON_8440036;supratrigeminal nucleus;Vsup -http://purl.obolibrary.org/obo/UBERON_8440037;accessory facial motor nucleus;ACVII -http://purl.obolibrary.org/obo/UBERON_8440038;efferent vestibular nucleus;EV -http://purl.obolibrary.org/obo/UBERON_8440039;piriform-amygdalar area;PAA (brain) -http://purl.obolibrary.org/obo/UBERON_8440040;dorsal peduncular area;DP -http://purl.obolibrary.org/obo/UBERON_8440041;tuberal nucleus (sensu Rodentia);lateral tuberal nucleus (sensu Rodentia) -http://purl.obolibrary.org/obo/UBERON_8440042;nucleus lateralis tuberis system (sensu Teleostei);NLT system (sensu Teleostei) -http://purl.obolibrary.org/obo/UBERON_8440043;superior paraolivary nucleus;SPON -http://purl.obolibrary.org/obo/UBERON_8440044;upper layers of the cortex; -http://purl.obolibrary.org/obo/UBERON_8440045;second visual cortical area (sensu Mustela putorius furo);area 18 (sensu Mustela putorius furo) -http://purl.obolibrary.org/obo/UBERON_8440046;third visual cortical area (sensu Mustela putorius furo);area 19 (sensu Mustela putorius furo) -http://purl.obolibrary.org/obo/UBERON_8440047;fourth visual cortical area (sensu Mustela putorius furo);area 21 (sensu Mustela putorius furo) -http://purl.obolibrary.org/obo/UBERON_8440048;temporal visual area a (sensu Mustela putorius furo);area 20a (sensu Mustela putorius furo) -http://purl.obolibrary.org/obo/UBERON_8440049;temporal visual area b (sensu Mustela putorius furo);area 20b (sensu Mustela putorius furo) -http://purl.obolibrary.org/obo/UBERON_8440050;posterior parietal rostral cortical area (sensu Mustela putorius furo);PPr (sensu Mustela putorius furo) -http://purl.obolibrary.org/obo/UBERON_8440050;posterior parietal rostral cortical area (sensu Mustela putorius furo);posterior parietal cortex, rostral part (sensu Mustela putorius furo) -http://purl.obolibrary.org/obo/UBERON_8440051;lower layers of the cortex; -http://purl.obolibrary.org/obo/UBERON_8440052;posterior parietal caudal cortical area (sensu Mustela putorius furo);PPc (sensu Mustela putorius furo) -http://purl.obolibrary.org/obo/UBERON_8440052;posterior parietal caudal cortical area (sensu Mustela putorius furo);posterior parietal cortex, caudal part (sensu Mustela putorius furo) -http://purl.obolibrary.org/obo/UBERON_8440054;anteromedial lateral suprasylvian visual area (sensu Mustela putorius furo);AMLS (sensu Mustela putorius furo) -http://purl.obolibrary.org/obo/UBERON_8440055;anterolateral lateral suprasylvian visual area (sensu Mustela putorius furo);ALLS (sensu Mustela putorius furo) -http://purl.obolibrary.org/obo/UBERON_8440056;posteromedial lateral suprasylvian visual area (sensu Mustela putorius furo);PMLS (sensu Mustela putorius furo) -http://purl.obolibrary.org/obo/UBERON_8440056;posteromedial lateral suprasylvian visual area (sensu Mustela putorius furo);PPS (sensu Mustela putorius furo) -http://purl.obolibrary.org/obo/UBERON_8440056;posteromedial lateral suprasylvian visual area (sensu Mustela putorius furo);PSS (sensu Mustela putorius furo) -http://purl.obolibrary.org/obo/UBERON_8440056;posteromedial lateral suprasylvian visual area (sensu Mustela putorius furo);SSY (sensu Mustela putorius furo) -http://purl.obolibrary.org/obo/UBERON_8440056;posteromedial lateral suprasylvian visual area (sensu Mustela putorius furo);Ssy (sensu Mustela putorius furo) -http://purl.obolibrary.org/obo/UBERON_8440056;posteromedial lateral suprasylvian visual area (sensu Mustela putorius furo);suprasylvian sulcal visual area (sensu Mustela putorius furo) -http://purl.obolibrary.org/obo/UBERON_8440059;posterolateral lateral suprasylvian visual area (sensu Mustela putorius furo);PLLS (sensu Mustela putorius furo) -http://purl.obolibrary.org/obo/UBERON_8440060;dorsal lateral suprasylvian visual cortical area (sensu Mustela putorius furo);DLS (sensu Mustela putorius furo) -http://purl.obolibrary.org/obo/UBERON_8440061;ventral lateral suprasylvian visual area (sensu Mustela putorius furo);VLS (sensu Mustela putorius furo) -http://purl.obolibrary.org/obo/UBERON_8440062;posterior suprasylvian visual cortical area (sensu Mustela putorius furo);PS (sensu Mustela putorius furo) -http://purl.obolibrary.org/obo/UBERON_8440063;anterior ectosylvian visual area (sensu Mustela putorius furo);AEV (sensu Mustela putorius furo) -http://purl.obolibrary.org/obo/UBERON_8440064;spenial visual area (sensu Mustela putorius furo);SPLC (sensu Mustela putorius furo) -http://purl.obolibrary.org/obo/UBERON_8440064;spenial visual area (sensu Mustela putorius furo);SVA (sensu Mustela putorius furo) -http://purl.obolibrary.org/obo/UBERON_8440064;spenial visual area (sensu Mustela putorius furo);splenial sulcal cortex (sensu Mustela putorius furo) -http://purl.obolibrary.org/obo/UBERON_8440066;cingulate visual area (sensu Mustela putorius furo);CVA (sensu Mustela putorius furo) -http://purl.obolibrary.org/obo/UBERON_8440067;A lamina of the lateral geniculate nucleus (sensu Mustela putorius furo);A (sensu Mustela putorius furo) -http://purl.obolibrary.org/obo/UBERON_8440068;A1 lamina of the lateral geniculate nucleus (sensu Mustela putorius furo);A1(sensu Mustela putorius furo) -http://purl.obolibrary.org/obo/UBERON_8440069;C lamina of the lateral geniculate nucleus (sensu Mustela putorius furo);C (sensu Mustela putorius furo) -http://purl.obolibrary.org/obo/UBERON_8440070;Perigeniculate lamina of the lateral geniculate nucleus (sensu Mustela putorius furo);P (sensu Mustela putorius furo) -http://purl.obolibrary.org/obo/UBERON_8440072;lateral tegmental nucleus;LTN -http://purl.obolibrary.org/obo/UBERON_8440073;magnocellular reticular nucleus;MARN -http://purl.obolibrary.org/obo/UBERON_8440074;interstitial nucleus of the vestibular nerve;INV -http://purl.obolibrary.org/obo/UBERON_8440074;interstitial nucleus of the vestibular nerve;ISVe -http://purl.obolibrary.org/obo/UBERON_8440075;gustatory cortex;gustatory area -http://purl.obolibrary.org/obo/UBERON_8440076;somatomotor area; -http://purl.obolibrary.org/obo/UBERON_8440077;rhinal incisure; -http://purl.obolibrary.org/obo/UBERON_8450001;egg follicle; -http://purl.obolibrary.org/obo/UBERON_8450002;excretory system; -http://purl.obolibrary.org/obo/UBERON_8470000;placental blood; -http://purl.obolibrary.org/obo/UBERON_8470001;sublumbar lymph node; -http://purl.obolibrary.org/obo/UBERON_8470002;moderator band;septomarginal trabecula -http://purl.obolibrary.org/obo/UBERON_8480000;iliac vein smooth muscle tissue; -http://purl.obolibrary.org/obo/UBERON_8480001;capillary of brain; -http://purl.obolibrary.org/obo/UBERON_8480002;thoracic aorta smooth muscle tissue; -http://purl.obolibrary.org/obo/UBERON_8480003;iliac artery smooth muscle tissue; -http://purl.obolibrary.org/obo/UBERON_8480004;iliac vein endothelium; -http://purl.obolibrary.org/obo/UBERON_8480005;placental artery endothelium; -http://purl.obolibrary.org/obo/UBERON_8480006;mesenteric lymphatic vessel; -http://purl.obolibrary.org/obo/UBERON_8480007;placental artery; -http://purl.obolibrary.org/obo/UBERON_8480008;placental vein; -http://purl.obolibrary.org/obo/UBERON_8480009;tendon of semitendinosus;semitendinosus tendon -http://purl.obolibrary.org/obo/UBERON_8480010;perianal space; -http://purl.obolibrary.org/obo/UBERON_8480011;deep post-anal space; -http://purl.obolibrary.org/obo/UBERON_8480012;intersphincteric space; -http://purl.obolibrary.org/obo/UBERON_8480013;ischiorectal space;ischioanal space -http://purl.obolibrary.org/obo/UBERON_8480014;skin of buttock; -http://purl.obolibrary.org/obo/UBERON_8480015;supra levator space;pelvic-rectal space -http://purl.obolibrary.org/obo/UBERON_8480016;perirenal space;perinephric space -http://purl.obolibrary.org/obo/UBERON_8480017;anterior pararenal space; -http://purl.obolibrary.org/obo/UBERON_8480018;posterior pararenal space; -http://purl.obolibrary.org/obo/UBERON_8480019;perirectal space; -http://purl.obolibrary.org/obo/UBERON_8480020;perivesical space; -http://purl.obolibrary.org/obo/UBERON_8480021;prevesical space; -http://purl.obolibrary.org/obo/UBERON_8480022;piriform sinus;piriform fossa -http://purl.obolibrary.org/obo/UBERON_8480022;piriform sinus;piriform recess -http://purl.obolibrary.org/obo/UBERON_8480022;piriform sinus;pyriform fossa -http://purl.obolibrary.org/obo/UBERON_8480022;piriform sinus;pyriform recess -http://purl.obolibrary.org/obo/UBERON_8480022;piriform sinus;pyriform sinus -http://purl.obolibrary.org/obo/UBERON_8480022;piriform sinus;smuggler's fossa -http://purl.obolibrary.org/obo/UBERON_8480023;skin of lateral lumbar region of abdomen;skin of flank -http://purl.obolibrary.org/obo/UBERON_8480024;skin of sacral region; -http://purl.obolibrary.org/obo/UBERON_8480025;skin of clavicle region; -http://purl.obolibrary.org/obo/UBERON_8480026;skin of iliac crest region; -http://purl.obolibrary.org/obo/UBERON_8480027;temple;temple region -http://purl.obolibrary.org/obo/UBERON_8480028;skin of temple; -http://purl.obolibrary.org/obo/UBERON_8480029;skin of external genitalia; -http://purl.obolibrary.org/obo/UBERON_8480030;skin of breast; -http://purl.obolibrary.org/obo/UBERON_8480033;interlobular stroma of mammary gland; -http://purl.obolibrary.org/obo/UBERON_8480034;intralobular stroma of mammary gland; -http://purl.obolibrary.org/obo/UBERON_8480035;cervical transformation zone epithelium; -http://purl.obolibrary.org/obo/UBERON_8480036;posterior wall of the glottis;posterior end of the glottis -http://purl.obolibrary.org/obo/UBERON_8480036;posterior wall of the glottis;posterior glottis -http://purl.obolibrary.org/obo/UBERON_8480036;posterior wall of the glottis;posterior portion of the glottis -http://purl.obolibrary.org/obo/UBERON_8480037;subserosa of uterine tube;subserosa of fallopian tube -http://purl.obolibrary.org/obo/UBERON_8480037;subserosa of uterine tube;subserosa of oviduct -http://purl.obolibrary.org/obo/UBERON_8480038;meningeal myeloid tissue; -http://purl.obolibrary.org/obo/UBERON_8480039;Oka organ;Oka (lymphoid) organ -http://purl.obolibrary.org/obo/UBERON_8480040;ovarian fluid; -http://purl.obolibrary.org/obo/UBERON_8480041;testicular sheath;testis sheath -http://purl.obolibrary.org/obo/UBERON_8480042;menstrual fluid; -http://purl.obolibrary.org/obo/UBERON_8480043;pelvic wall; -http://purl.obolibrary.org/obo/UBERON_8480044;long bone cartilage element;long bone cartilage -http://purl.obolibrary.org/obo/UBERON_8480046;mucosa of rumen;rumen mucosa -http://purl.obolibrary.org/obo/UBERON_8480047;retroauricular region;retro-auricular area -http://purl.obolibrary.org/obo/UBERON_8480047;retroauricular region;retro-auricular part of head -http://purl.obolibrary.org/obo/UBERON_8480047;retroauricular region;retro-auricular region -http://purl.obolibrary.org/obo/UBERON_8480047;retroauricular region;retroauricular area -http://purl.obolibrary.org/obo/UBERON_8480048;calf;calf of leg -http://purl.obolibrary.org/obo/UBERON_8480048;calf;posterior curral region -http://purl.obolibrary.org/obo/UBERON_8480048;calf;posterior leg region -http://purl.obolibrary.org/obo/UBERON_8480048;calf;posterior part of leg -http://purl.obolibrary.org/obo/UBERON_8480048;calf;posterior region of leg -http://purl.obolibrary.org/obo/UBERON_8480048;calf;regio cruris posterior -http://purl.obolibrary.org/obo/UBERON_8480048;calf;regio surae -http://purl.obolibrary.org/obo/UBERON_8480048;calf;sura -http://purl.obolibrary.org/obo/UBERON_8480048;calf;sural region -http://purl.obolibrary.org/obo/UBERON_8480049;front hindlimb zeugopod;anterior crural region -http://purl.obolibrary.org/obo/UBERON_8480049;front hindlimb zeugopod;anterior leg region -http://purl.obolibrary.org/obo/UBERON_8480049;front hindlimb zeugopod;anterior region of leg -http://purl.obolibrary.org/obo/UBERON_8480049;front hindlimb zeugopod;front of the lower leg -http://purl.obolibrary.org/obo/UBERON_8480049;front hindlimb zeugopod;shin -http://purl.obolibrary.org/obo/UBERON_8480050;skin of calf;skin of posterior part of leg -http://purl.obolibrary.org/obo/UBERON_8490000;right upper third secondary molar tooth;ADA tooth 1 -http://purl.obolibrary.org/obo/UBERON_8490000;right upper third secondary molar tooth;FDI tooth 18 -http://purl.obolibrary.org/obo/UBERON_8490000;right upper third secondary molar tooth;right upper third secondary molar tooth -http://purl.obolibrary.org/obo/UBERON_8490001;right upper second secondary molar tooth;ADA tooth 2 -http://purl.obolibrary.org/obo/UBERON_8490001;right upper second secondary molar tooth;FDI tooth 17 -http://purl.obolibrary.org/obo/UBERON_8490001;right upper second secondary molar tooth;right upper second secondary molar tooth -http://purl.obolibrary.org/obo/UBERON_8490002;right upper first secondary molar tooth;ADA tooth 3 -http://purl.obolibrary.org/obo/UBERON_8490002;right upper first secondary molar tooth;FDI tooth 16 -http://purl.obolibrary.org/obo/UBERON_8490002;right upper first secondary molar tooth;right upper first secondary molar tooth -http://purl.obolibrary.org/obo/UBERON_8490003;right upper second secondary premolar tooth;ADA tooth 4 -http://purl.obolibrary.org/obo/UBERON_8490003;right upper second secondary premolar tooth;FDI tooth 15 -http://purl.obolibrary.org/obo/UBERON_8490003;right upper second secondary premolar tooth;right upper second secondary premolar tooth -http://purl.obolibrary.org/obo/UBERON_8490004;right upper first secondary premolar tooth;ADA tooth 5 -http://purl.obolibrary.org/obo/UBERON_8490004;right upper first secondary premolar tooth;FDI tooth 14 -http://purl.obolibrary.org/obo/UBERON_8490004;right upper first secondary premolar tooth;right upper first secondary premolar tooth -http://purl.obolibrary.org/obo/UBERON_8490005;right upper secondary canine tooth;ADA tooth 6 -http://purl.obolibrary.org/obo/UBERON_8490005;right upper secondary canine tooth;FDI tooth 13 -http://purl.obolibrary.org/obo/UBERON_8490005;right upper secondary canine tooth;right upper secondary canine tooth -http://purl.obolibrary.org/obo/UBERON_8490006;right upper lateral secondary incisor tooth;ADA tooth 7 -http://purl.obolibrary.org/obo/UBERON_8490006;right upper lateral secondary incisor tooth;FDI tooth 12 -http://purl.obolibrary.org/obo/UBERON_8490006;right upper lateral secondary incisor tooth;right upper lateral secondary incisor tooth -http://purl.obolibrary.org/obo/UBERON_8490007;right upper central secondary incisor tooth;ADA tooth 8 -http://purl.obolibrary.org/obo/UBERON_8490007;right upper central secondary incisor tooth;FDI tooth 11 -http://purl.obolibrary.org/obo/UBERON_8490007;right upper central secondary incisor tooth;right upper central secondary incisor tooth -http://purl.obolibrary.org/obo/UBERON_8490008;right lower third secondary molar tooth;ADA tooth 32 -http://purl.obolibrary.org/obo/UBERON_8490008;right lower third secondary molar tooth;FDI tooth 48 -http://purl.obolibrary.org/obo/UBERON_8490008;right lower third secondary molar tooth;right lower third secondary molar tooth -http://purl.obolibrary.org/obo/UBERON_8490009;right lower second secondary molar tooth;ADA tooth 31 -http://purl.obolibrary.org/obo/UBERON_8490009;right lower second secondary molar tooth;FDI tooth 47 -http://purl.obolibrary.org/obo/UBERON_8490009;right lower second secondary molar tooth;right lower second secondary molar tooth -http://purl.obolibrary.org/obo/UBERON_8490010;right lower first secondary molar tooth;ADA tooth 30 -http://purl.obolibrary.org/obo/UBERON_8490010;right lower first secondary molar tooth;FDI tooth 46 -http://purl.obolibrary.org/obo/UBERON_8490010;right lower first secondary molar tooth;right lower first secondary molar tooth -http://purl.obolibrary.org/obo/UBERON_8490011;right lower second secondary premolar tooth;ADA tooth 29 -http://purl.obolibrary.org/obo/UBERON_8490011;right lower second secondary premolar tooth;FDI tooth 45 -http://purl.obolibrary.org/obo/UBERON_8490011;right lower second secondary premolar tooth;right lower second secondary premolar tooth -http://purl.obolibrary.org/obo/UBERON_8490012;right lower first secondary premolar tooth;ADA tooth 28 -http://purl.obolibrary.org/obo/UBERON_8490012;right lower first secondary premolar tooth;FDI tooth 44 -http://purl.obolibrary.org/obo/UBERON_8490012;right lower first secondary premolar tooth;right lower first secondary premolar tooth -http://purl.obolibrary.org/obo/UBERON_8490013;right lower secondary canine tooth;ADA tooth 27 -http://purl.obolibrary.org/obo/UBERON_8490013;right lower secondary canine tooth;FDI tooth 43 -http://purl.obolibrary.org/obo/UBERON_8490013;right lower secondary canine tooth;right lower secondary canine tooth -http://purl.obolibrary.org/obo/UBERON_8490014;right lower lateral secondary incisor tooth;ADA tooth 26 -http://purl.obolibrary.org/obo/UBERON_8490014;right lower lateral secondary incisor tooth;FDI tooth 42 -http://purl.obolibrary.org/obo/UBERON_8490014;right lower lateral secondary incisor tooth;right lower lateral secondary incisor tooth -http://purl.obolibrary.org/obo/UBERON_8490015;right lower central secondary incisor tooth;ADA tooth 25 -http://purl.obolibrary.org/obo/UBERON_8490015;right lower central secondary incisor tooth;FDI tooth 41 -http://purl.obolibrary.org/obo/UBERON_8490015;right lower central secondary incisor tooth;right lower central secondary incisor tooth -http://purl.obolibrary.org/obo/UBERON_8490016;right upper second primary molar tooth;ADA tooth A -http://purl.obolibrary.org/obo/UBERON_8490016;right upper second primary molar tooth;FDI tooth 55 -http://purl.obolibrary.org/obo/UBERON_8490016;right upper second primary molar tooth;right upper second primary molar tooth -http://purl.obolibrary.org/obo/UBERON_8490017;right upper first primary molar tooth;ADA tooth B -http://purl.obolibrary.org/obo/UBERON_8490017;right upper first primary molar tooth;FDI tooth 54 -http://purl.obolibrary.org/obo/UBERON_8490017;right upper first primary molar tooth;right upper first primary molar tooth -http://purl.obolibrary.org/obo/UBERON_8490018;right upper primary canine tooth;ADA tooth C -http://purl.obolibrary.org/obo/UBERON_8490018;right upper primary canine tooth;FDI tooth 53 -http://purl.obolibrary.org/obo/UBERON_8490018;right upper primary canine tooth;right upper primary canine tooth -http://purl.obolibrary.org/obo/UBERON_8490019;right upper lateral primary incisor tooth;ADA tooth D -http://purl.obolibrary.org/obo/UBERON_8490019;right upper lateral primary incisor tooth;FDI tooth 52 -http://purl.obolibrary.org/obo/UBERON_8490019;right upper lateral primary incisor tooth;right upper lateral primary incisor tooth -http://purl.obolibrary.org/obo/UBERON_8490020;right upper central primary incisor tooth;ADA tooth E -http://purl.obolibrary.org/obo/UBERON_8490020;right upper central primary incisor tooth;FDI tooth 51 -http://purl.obolibrary.org/obo/UBERON_8490020;right upper central primary incisor tooth;right upper central primary incisor tooth -http://purl.obolibrary.org/obo/UBERON_8490021;right lower second primary molar tooth;ADA tooth T -http://purl.obolibrary.org/obo/UBERON_8490021;right lower second primary molar tooth;FDI tooth 85 -http://purl.obolibrary.org/obo/UBERON_8490021;right lower second primary molar tooth;right lower second primary molar tooth -http://purl.obolibrary.org/obo/UBERON_8490022;right lower first primary molar tooth;ADA tooth S -http://purl.obolibrary.org/obo/UBERON_8490022;right lower first primary molar tooth;FDI tooth 84 -http://purl.obolibrary.org/obo/UBERON_8490022;right lower first primary molar tooth;right lower first primary molar tooth -http://purl.obolibrary.org/obo/UBERON_8490023;right lower primary canine tooth;ADA tooth R -http://purl.obolibrary.org/obo/UBERON_8490023;right lower primary canine tooth;FDI tooth 83 -http://purl.obolibrary.org/obo/UBERON_8490023;right lower primary canine tooth;right lower primary canine tooth -http://purl.obolibrary.org/obo/UBERON_8490024;right lower lateral primary incisor tooth;ADA tooth Q -http://purl.obolibrary.org/obo/UBERON_8490024;right lower lateral primary incisor tooth;FDI tooth 82 -http://purl.obolibrary.org/obo/UBERON_8490024;right lower lateral primary incisor tooth;right lower lateral primary incisor tooth -http://purl.obolibrary.org/obo/UBERON_8490025;right lower central primary incisor tooth;ADA tooth P -http://purl.obolibrary.org/obo/UBERON_8490025;right lower central primary incisor tooth;FDI tooth 81 -http://purl.obolibrary.org/obo/UBERON_8490025;right lower central primary incisor tooth;right lower central primary incisor tooth -http://purl.obolibrary.org/obo/UBERON_8490026;left upper third secondary molar tooth;ADA tooth 16 -http://purl.obolibrary.org/obo/UBERON_8490026;left upper third secondary molar tooth;FDI tooth 28 -http://purl.obolibrary.org/obo/UBERON_8490026;left upper third secondary molar tooth;left upper third secondary molar tooth -http://purl.obolibrary.org/obo/UBERON_8490027;left upper second secondary molar tooth;ADA tooth 15 -http://purl.obolibrary.org/obo/UBERON_8490027;left upper second secondary molar tooth;FDI tooth 27 -http://purl.obolibrary.org/obo/UBERON_8490027;left upper second secondary molar tooth;left upper second secondary molar tooth -http://purl.obolibrary.org/obo/UBERON_8490028;left upper first secondary molar tooth;ADA tooth 14 -http://purl.obolibrary.org/obo/UBERON_8490028;left upper first secondary molar tooth;FDI tooth 26 -http://purl.obolibrary.org/obo/UBERON_8490028;left upper first secondary molar tooth;left upper first secondary molar tooth -http://purl.obolibrary.org/obo/UBERON_8490029;left upper second secondary premolar tooth;ADA tooth 13 -http://purl.obolibrary.org/obo/UBERON_8490029;left upper second secondary premolar tooth;FDI tooth 25 -http://purl.obolibrary.org/obo/UBERON_8490029;left upper second secondary premolar tooth;left upper second secondary premolar tooth -http://purl.obolibrary.org/obo/UBERON_8490030;left upper first secondary premolar tooth;ADA tooth 12 -http://purl.obolibrary.org/obo/UBERON_8490030;left upper first secondary premolar tooth;FDI tooth 24 -http://purl.obolibrary.org/obo/UBERON_8490030;left upper first secondary premolar tooth;left upper first secondary premolar tooth -http://purl.obolibrary.org/obo/UBERON_8490031;left upper secondary canine tooth;ADA tooth 11 -http://purl.obolibrary.org/obo/UBERON_8490031;left upper secondary canine tooth;FDI tooth 23 -http://purl.obolibrary.org/obo/UBERON_8490031;left upper secondary canine tooth;left upper secondary canine tooth -http://purl.obolibrary.org/obo/UBERON_8490032;left upper lateral secondary incisor tooth;ADA tooth 10 -http://purl.obolibrary.org/obo/UBERON_8490032;left upper lateral secondary incisor tooth;FDI tooth 22 -http://purl.obolibrary.org/obo/UBERON_8490032;left upper lateral secondary incisor tooth;left upper lateral secondary incisor tooth -http://purl.obolibrary.org/obo/UBERON_8490033;left upper central secondary incisor tooth;ADA tooth 9 -http://purl.obolibrary.org/obo/UBERON_8490033;left upper central secondary incisor tooth;FDI tooth 21 -http://purl.obolibrary.org/obo/UBERON_8490033;left upper central secondary incisor tooth;left upper central secondary incisor tooth -http://purl.obolibrary.org/obo/UBERON_8490034;left lower third secondary molar tooth;ADA tooth 17 -http://purl.obolibrary.org/obo/UBERON_8490034;left lower third secondary molar tooth;FDI tooth 38 -http://purl.obolibrary.org/obo/UBERON_8490034;left lower third secondary molar tooth;left lower third secondary molar tooth -http://purl.obolibrary.org/obo/UBERON_8490035;left lower second secondary molar tooth;ADA tooth 18 -http://purl.obolibrary.org/obo/UBERON_8490035;left lower second secondary molar tooth;FDI tooth 37 -http://purl.obolibrary.org/obo/UBERON_8490035;left lower second secondary molar tooth;left lower second secondary molar tooth -http://purl.obolibrary.org/obo/UBERON_8490036;left lower first secondary molar tooth;ADA tooth 19 -http://purl.obolibrary.org/obo/UBERON_8490036;left lower first secondary molar tooth;FDI tooth 36 -http://purl.obolibrary.org/obo/UBERON_8490036;left lower first secondary molar tooth;left lower first secondary molar tooth -http://purl.obolibrary.org/obo/UBERON_8490037;left lower second secondary premolar tooth;ADA tooth 20 -http://purl.obolibrary.org/obo/UBERON_8490037;left lower second secondary premolar tooth;FDI tooth 35 -http://purl.obolibrary.org/obo/UBERON_8490037;left lower second secondary premolar tooth;left lower second secondary premolar tooth -http://purl.obolibrary.org/obo/UBERON_8490038;left lower first secondary premolar tooth;ADA tooth 21 -http://purl.obolibrary.org/obo/UBERON_8490038;left lower first secondary premolar tooth;FDI tooth 34 -http://purl.obolibrary.org/obo/UBERON_8490038;left lower first secondary premolar tooth;left lower first secondary premolar tooth -http://purl.obolibrary.org/obo/UBERON_8490039;left lower secondary canine tooth;ADA tooth 22 -http://purl.obolibrary.org/obo/UBERON_8490039;left lower secondary canine tooth;FDI tooth 33 -http://purl.obolibrary.org/obo/UBERON_8490039;left lower secondary canine tooth;left lower secondary canine tooth -http://purl.obolibrary.org/obo/UBERON_8490040;left lower lateral secondary incisor tooth;ADA tooth 23 -http://purl.obolibrary.org/obo/UBERON_8490040;left lower lateral secondary incisor tooth;FDI tooth 32 -http://purl.obolibrary.org/obo/UBERON_8490040;left lower lateral secondary incisor tooth;left lower lateral secondary incisor tooth -http://purl.obolibrary.org/obo/UBERON_8490041;left lower central secondary incisor tooth;ADA tooth 24 -http://purl.obolibrary.org/obo/UBERON_8490041;left lower central secondary incisor tooth;FDI tooth 31 -http://purl.obolibrary.org/obo/UBERON_8490041;left lower central secondary incisor tooth;left lower central secondary incisor tooth -http://purl.obolibrary.org/obo/UBERON_8490042;left upper second primary molar tooth;ADA tooth J -http://purl.obolibrary.org/obo/UBERON_8490042;left upper second primary molar tooth;FDI tooth 65 -http://purl.obolibrary.org/obo/UBERON_8490042;left upper second primary molar tooth;left upper second primary molar tooth -http://purl.obolibrary.org/obo/UBERON_8490043;left upper first primary molar tooth;ADA tooth I -http://purl.obolibrary.org/obo/UBERON_8490043;left upper first primary molar tooth;FDI tooth 64 -http://purl.obolibrary.org/obo/UBERON_8490043;left upper first primary molar tooth;left upper first primary molar tooth -http://purl.obolibrary.org/obo/UBERON_8490044;left upper primary canine tooth;ADA tooth H -http://purl.obolibrary.org/obo/UBERON_8490044;left upper primary canine tooth;FDI tooth 63 -http://purl.obolibrary.org/obo/UBERON_8490044;left upper primary canine tooth;left upper primary canine tooth -http://purl.obolibrary.org/obo/UBERON_8490045;left upper lateral primary incisor tooth;ADA tooth G -http://purl.obolibrary.org/obo/UBERON_8490045;left upper lateral primary incisor tooth;FDI tooth 62 -http://purl.obolibrary.org/obo/UBERON_8490045;left upper lateral primary incisor tooth;left upper lateral primary incisor tooth -http://purl.obolibrary.org/obo/UBERON_8490046;left upper central primary incisor tooth;ADA tooth F -http://purl.obolibrary.org/obo/UBERON_8490046;left upper central primary incisor tooth;FDI tooth 61 -http://purl.obolibrary.org/obo/UBERON_8490046;left upper central primary incisor tooth;left upper central primary incisor tooth -http://purl.obolibrary.org/obo/UBERON_8490047;left lower second primary molar tooth;ADA tooth K -http://purl.obolibrary.org/obo/UBERON_8490047;left lower second primary molar tooth;FDI tooth 75 -http://purl.obolibrary.org/obo/UBERON_8490047;left lower second primary molar tooth;left lower second primary molar tooth -http://purl.obolibrary.org/obo/UBERON_8490048;left lower first primary molar tooth;ADA tooth L -http://purl.obolibrary.org/obo/UBERON_8490048;left lower first primary molar tooth;FDI tooth 74 -http://purl.obolibrary.org/obo/UBERON_8490048;left lower first primary molar tooth;left lower first primary molar tooth -http://purl.obolibrary.org/obo/UBERON_8490049;left lower primary canine tooth;ADA tooth M -http://purl.obolibrary.org/obo/UBERON_8490049;left lower primary canine tooth;FDI tooth 73 -http://purl.obolibrary.org/obo/UBERON_8490049;left lower primary canine tooth;left lower primary canine tooth -http://purl.obolibrary.org/obo/UBERON_8490050;left lower lateral primary incisor tooth;ADA tooth N -http://purl.obolibrary.org/obo/UBERON_8490050;left lower lateral primary incisor tooth;FDI tooth 72 -http://purl.obolibrary.org/obo/UBERON_8490050;left lower lateral primary incisor tooth;left lower lateral primary incisor tooth -http://purl.obolibrary.org/obo/UBERON_8490051;left lower central primary incisor tooth;ADA tooth O -http://purl.obolibrary.org/obo/UBERON_8490051;left lower central primary incisor tooth;FDI tooth 71 -http://purl.obolibrary.org/obo/UBERON_8490051;left lower central primary incisor tooth;left lower central primary incisor tooth -http://purl.obolibrary.org/obo/UBERON_8600000;lobular bronchiole;preterminal bronchiole -http://purl.obolibrary.org/obo/UBERON_8600001;epithelium of lobular bronchiole;epithelium of preterminal bronchiole -http://purl.obolibrary.org/obo/UBERON_8600001;epithelium of lobular bronchiole;lobular bronchiole epithelium -http://purl.obolibrary.org/obo/UBERON_8600002;mucosa of lobular bronchiole; -http://purl.obolibrary.org/obo/UBERON_8600003;smooth muscle tissue of lobular bronchiole; -http://purl.obolibrary.org/obo/UBERON_8600004;visceral muscle tissue;visceral muscle -http://purl.obolibrary.org/obo/UBERON_8600005;visceral smooth muscle tissue;smooth musculature of viscera -http://purl.obolibrary.org/obo/UBERON_8600005;visceral smooth muscle tissue;visceral smooth muscle -http://purl.obolibrary.org/obo/UBERON_8600006;visceral striated muscle tissue;striated visceral muscle tissue -http://purl.obolibrary.org/obo/UBERON_8600007;visceral transversely striated muscle tissue;transversely striated visceral muscle tissue -http://purl.obolibrary.org/obo/UBERON_8600008;visceral obliquely striated muscle tissue; -http://purl.obolibrary.org/obo/UBERON_8600009;subsegmental bronchus; -http://uri.interlex.org/aibs/uris/mouse/labels/;Allen Mouse Brain Atlas parcellation label root; -http://uri.interlex.org/base/ilx_0101528;CA2 alveus; -http://uri.interlex.org/base/ilx_0738290;Interganglionic branch of inferior cervical ganglion to middle cervical ganglion; -http://uri.interlex.org/base/ilx_0738291;T1 - inferior cervical ganglion interganglionic segment of the sympathetic chain; -http://uri.interlex.org/base/ilx_0738292;middle cervical ganglion - superior cervical ganglion interganglionic segment of the sympathetic chain; -http://uri.interlex.org/base/ilx_0738293;Ganglioglomerular nerve; -http://uri.interlex.org/base/ilx_0738304;Wall of arch of aorta; -http://uri.interlex.org/base/ilx_0738308;External branch of inferior laryngeal nerve; -http://uri.interlex.org/base/ilx_0738309;Internal branch of inferior laryngeal nerve; -http://uri.interlex.org/base/ilx_0738312;Aortic arch depressor nerve; -http://uri.interlex.org/base/ilx_0738313;Rami glomi carotici; -http://uri.interlex.org/base/ilx_0738316;Aortic arch baroreceptors; -http://uri.interlex.org/base/ilx_0738317;Laryngeal mechanoreceptors; -http://uri.interlex.org/base/ilx_0738318;Epiglottic mechanoreceptors; -http://uri.interlex.org/base/ilx_0738319;T1-T2 intercostal muscle; -http://uri.interlex.org/base/ilx_0738324;Phrenic nucleus of C4; -http://uri.interlex.org/base/ilx_0738325;Phrenic nucleus of C5; -http://uri.interlex.org/base/ilx_0738372;white communicating ramus of first thoracic spinal nerve;T1 white ramus -http://uri.interlex.org/base/ilx_0738432;Sixth lumbar spinal cord segment;L6 -http://uri.interlex.org/base/ilx_0738433;Dome of the Bladder; -http://uri.interlex.org/base/ilx_0738444;interscapular brown adipose tissue;iBAT -http://uri.interlex.org/base/ilx_0739295;Thirteenth thoracic ganglion;T13 sympathetic ganglion -http://uri.interlex.org/base/ilx_0739295;Thirteenth thoracic ganglion;thirteenth thoracic sympathetic ganglion -http://uri.interlex.org/base/ilx_0739296;fifth lumbar sympathetic ganglion;L5 sympathetic ganglion -http://uri.interlex.org/base/ilx_0739296;fifth lumbar sympathetic ganglion;fifth lumbar ganglion -http://uri.interlex.org/base/ilx_0739297;sixth lumbar sympathetic ganglion;L6 sympathetic ganglion -http://uri.interlex.org/base/ilx_0739297;sixth lumbar sympathetic ganglion;sixth lumbar ganglion -http://uri.interlex.org/base/ilx_0739299;gray communicating ramus of sixth lumbar nerve;L6 gray ramus -http://uri.interlex.org/base/ilx_0739299;gray communicating ramus of sixth lumbar nerve;L6 grey ramus -http://uri.interlex.org/base/ilx_0739303;gray communicating ramus of second thoracic nerve;T2 gray ramus -http://uri.interlex.org/base/ilx_0739304;gray communicating ramus of third thoracic nerve;T3 gray ramus -http://uri.interlex.org/base/ilx_0770759;Lamina propria mucosae of descending colon; -http://uri.interlex.org/base/ilx_0771089;Serosa of descending colon; -http://uri.interlex.org/base/ilx_0773760;Circular muscle layer of descending colon; -http://uri.interlex.org/base/ilx_0774144;Wall of neck of urinary bladder; -http://uri.interlex.org/base/ilx_0774266;T1 sympathetic ganglion;First thoracic ganglion -http://uri.interlex.org/base/ilx_0776070;Longitudinal muscle layer of descending colon; -http://uri.interlex.org/base/ilx_0776616;External carotid nerve; -http://uri.interlex.org/base/ilx_0777086;T12 - T13 interganglionic segment of the sympathetic chain; -http://uri.interlex.org/base/ilx_0777087;T13 - L1 interganglionic segment of the sympathetic chain; -http://uri.interlex.org/base/ilx_0777088;L1 - L2 interganglionic segment; -http://uri.interlex.org/base/ilx_0777089;L2 - L3 interganglionic segment; -http://uri.interlex.org/base/ilx_0777090;L3 - L4 interganglionic segment; -http://uri.interlex.org/base/ilx_0777091;L4 - L5 interganglionic segment; -http://uri.interlex.org/base/ilx_0777092;L5 - L6 interganglionic segment; -http://uri.interlex.org/base/ilx_0777093;L6 - S1 interganglionic segment of the sympathetic chain; -http://uri.interlex.org/base/ilx_0777094;T1 - T2 interganglionic segment of the sympathetic chain; -http://uri.interlex.org/base/ilx_0777095;T2 - T3 interganglionic segment of the sympathetic chain; -http://uri.interlex.org/base/ilx_0777096;T3 - T4 interganglionic segment of the sympathetic chain; -http://uri.interlex.org/base/ilx_0777097;T4 - T5 interganglionic segment of the sympathetic chain; -http://uri.interlex.org/base/ilx_0777098;T5 - T6 interganglionic segment of the sympathetic chain; -http://uri.interlex.org/base/ilx_0784378;Ninth thoracic ganglion; -http://uri.interlex.org/base/ilx_0784439;gray communicating ramus of the fifth thoracic nerve;T5 gray ramus -http://uri.interlex.org/base/ilx_0784439;gray communicating ramus of the fifth thoracic nerve;T5 grey ramus -http://uri.interlex.org/base/ilx_0784439;gray communicating ramus of the fifth thoracic nerve;gray communicating ramus of the fifth intercostal nerve -http://uri.interlex.org/base/ilx_0784721;Eighth thoracic ganglion; -http://uri.interlex.org/base/ilx_0784804;ventral root of the third thoracic spinal cord segment;anterior root of T3 -http://uri.interlex.org/base/ilx_0784804;ventral root of the third thoracic spinal cord segment;anterior root of third thoracic nerve -http://uri.interlex.org/base/ilx_0785421;ventral root of the first lumbar spinal cord segment;anterior root of L1 -http://uri.interlex.org/base/ilx_0785421;ventral root of the first lumbar spinal cord segment;anterior root of first lumbar nerve -http://uri.interlex.org/base/ilx_0785733;gray communicating ramus of second lumbar nerve;L2 gray ramus -http://uri.interlex.org/base/ilx_0785733;gray communicating ramus of second lumbar nerve;L2 grey ramus -http://uri.interlex.org/base/ilx_0785825;gray communicating ramus of first lumbar nerve;L1 gray ramus -http://uri.interlex.org/base/ilx_0785932;gray communicating ramus of third lumbar nerve;L3 gray ramus -http://uri.interlex.org/base/ilx_0785932;gray communicating ramus of third lumbar nerve;L3 grey ramus -http://uri.interlex.org/base/ilx_0786141;Fifth thoracic ganglion; -http://uri.interlex.org/base/ilx_0786228;Second thoracic ganglion; -http://uri.interlex.org/base/ilx_0786272;Fourth thoracic ganglion; -http://uri.interlex.org/base/ilx_0786722;Third thoracic ganglion; -http://uri.interlex.org/base/ilx_0786933;Second lumbar ganglion; -http://uri.interlex.org/base/ilx_0787009;Twelfth thoracic ganglion; -http://uri.interlex.org/base/ilx_0787082;gray communicating ramus of the first thoracic nerve;T1 gray ramus -http://uri.interlex.org/base/ilx_0787082;gray communicating ramus of the first thoracic nerve;gray communicating ramus of the first intercostal nerve -http://uri.interlex.org/base/ilx_0787520;ventral root of the third lumbar spinal cord segment;anterior root of L3 -http://uri.interlex.org/base/ilx_0787520;ventral root of the third lumbar spinal cord segment;anterior root of third lumbar nerve -http://uri.interlex.org/base/ilx_0787562;gray communicating ramus of the third thoracic nerve;T3 gray ramus -http://uri.interlex.org/base/ilx_0787562;gray communicating ramus of the third thoracic nerve;T3 grey ramus -http://uri.interlex.org/base/ilx_0787562;gray communicating ramus of the third thoracic nerve;gray communicating ramus of the third intercostal nerve -http://uri.interlex.org/base/ilx_0787722;ventral root of the first thoracic spinal cord segment;anterior root of T1 -http://uri.interlex.org/base/ilx_0787722;ventral root of the first thoracic spinal cord segment;anterior root of first thoracic nerve -http://uri.interlex.org/base/ilx_0787946;gray communicating ramus of sixth thoracic nerve;T6 gray ramus -http://uri.interlex.org/base/ilx_0787946;gray communicating ramus of sixth thoracic nerve;T6 grey ramus -http://uri.interlex.org/base/ilx_0787946;gray communicating ramus of sixth thoracic nerve;gray communicating ramus of the sixth intercostal nerve -http://uri.interlex.org/base/ilx_0788022;Gray communicating ramus of thoracic nerve; -http://uri.interlex.org/base/ilx_0788026;ventral root of the eighth thoracic spinal cord segment;anterior root of T8 -http://uri.interlex.org/base/ilx_0788026;ventral root of the eighth thoracic spinal cord segment;anterior root of eighth thoracic nerve -http://uri.interlex.org/base/ilx_0788315;Third lumbar ganglion; -http://uri.interlex.org/base/ilx_0788536;gray communicating ramus of fourth lumbar nerve;L4 gray ramus -http://uri.interlex.org/base/ilx_0788536;gray communicating ramus of fourth lumbar nerve;L4 grey ramus -http://uri.interlex.org/base/ilx_0788675;ventral root of the second lumbar spinal cord segment;anterior root of L2 -http://uri.interlex.org/base/ilx_0788675;ventral root of the second lumbar spinal cord segment;anterior root of second lumbar nerve -http://uri.interlex.org/base/ilx_0788945;gray communicating ramus of the fourth thoracic nerve;T4 gray ramus -http://uri.interlex.org/base/ilx_0788945;gray communicating ramus of the fourth thoracic nerve;T4 grey ramus -http://uri.interlex.org/base/ilx_0788945;gray communicating ramus of the fourth thoracic nerve;gray communicating ramus of the fourth intercostal nerve -http://uri.interlex.org/base/ilx_0789109;First sacral ganglion; -http://uri.interlex.org/base/ilx_0789339;Pharyngeal branch of glossopharyngeal nerve; -http://uri.interlex.org/base/ilx_0789862;First lumbar ganglion;L1 sympathetic ganglion -http://uri.interlex.org/base/ilx_0789894;ventral root of the second thoracic spinal cord segment;anterior root of T2 -http://uri.interlex.org/base/ilx_0789894;ventral root of the second thoracic spinal cord segment;anterior root of second thoracic nerve -http://uri.interlex.org/base/ilx_0789947;Sixth thoracic ganglion; -http://uri.interlex.org/base/ilx_0789966;ventral root of the seventh thoracic spinal cord segment;anterior root of T7 -http://uri.interlex.org/base/ilx_0789966;ventral root of the seventh thoracic spinal cord segment;anterior root of seventh thoracic nerve -http://uri.interlex.org/base/ilx_0789968;ventral root of the fourth lumbar spinal cord segment;anterior root of L4 -http://uri.interlex.org/base/ilx_0789968;ventral root of the fourth lumbar spinal cord segment;anterior root of fourth lumbar nerve -http://uri.interlex.org/base/ilx_0790146;ventral root of the fifth thoracic spinal cord segment;anterior root of T5 -http://uri.interlex.org/base/ilx_0790146;ventral root of the fifth thoracic spinal cord segment;anterior root of fifth thoracic nerve -http://uri.interlex.org/base/ilx_0790472;Fourth lumbar ganglion; -http://uri.interlex.org/base/ilx_0790482;Seventh thoracic ganglion; -http://uri.interlex.org/base/ilx_0790497;Gray communicating ramus of cervicothoracic ganglion to first thoracic spinal nerve; -http://uri.interlex.org/base/ilx_0791062;ventral root of the sixth thoracic spinal cord segment;anterior root of T6 -http://uri.interlex.org/base/ilx_0791062;ventral root of the sixth thoracic spinal cord segment;anterior root of sixth thoracic nerve -http://uri.interlex.org/base/ilx_0791105;gray communicating ramus of the second thoracic nerve;T2 gray ramus -http://uri.interlex.org/base/ilx_0791105;gray communicating ramus of the second thoracic nerve;gray communicating ramus of the second intercostal nerve -http://uri.interlex.org/base/ilx_0791148;ventral root of the fifth lumbar spinal cord segment;anterior root of L5 -http://uri.interlex.org/base/ilx_0791148;ventral root of the fifth lumbar spinal cord segment;anterior root of fifth lumbar nerve -http://uri.interlex.org/base/ilx_0791932;ventral root of the ninth thoracic spinal cord segment;anterior root of T9 -http://uri.interlex.org/base/ilx_0791932;ventral root of the ninth thoracic spinal cord segment;anterior root of ninth thoracic nerve -http://uri.interlex.org/base/ilx_0792627;White communicating ramus of thoracic anterior ramus; -http://uri.interlex.org/base/ilx_0792838;ventral root of the fourth thoracic spinal cord segment;anterior root of T4 -http://uri.interlex.org/base/ilx_0792838;ventral root of the fourth thoracic spinal cord segment;anterior root of fourth thoracic nerve -http://uri.interlex.org/base/ilx_0792853;ventral root of the first sacral spinal cord segment;anterior root of S1 -http://uri.interlex.org/base/ilx_0792853;ventral root of the first sacral spinal cord segment;anterior root of first sacral nerve -http://uri.interlex.org/base/ilx_0793082;celiac ganglion- superior mesenteric ganglion complex;CSMG -http://uri.interlex.org/base/ilx_0793082;celiac ganglion- superior mesenteric ganglion complex;coeliac-superior mesenteric ganglion complex -http://uri.interlex.org/base/ilx_0793141;urethral rhabdosphincter; -http://uri.interlex.org/base/ilx_0793178;intrapancreatic ganglia; -http://uri.interlex.org/base/ilx_0793208;white communicating ramus of second thoracic spinal nerve;T2 white ramus -http://uri.interlex.org/base/ilx_0793209;white communicating ramus of third thoracic spinal nerve;T3 white ramus -http://uri.interlex.org/base/ilx_0793210;white communicating ramus of fourth thoracic spinal nerve;T4 white ramus -http://uri.interlex.org/base/ilx_0793211;white communicating ramus of fifth thoracic spinal nerve;T5 white ramus -http://uri.interlex.org/base/ilx_0793212;white communicating ramus of sixth thoracic spinal nerve;T6 white ramus -http://uri.interlex.org/base/ilx_0793220;white communicating ramus of first lumbar spinal nerve;L1 white ramus -http://uri.interlex.org/base/ilx_0793221;white communicating ramus of second lumbar spinal nerve;L2 white ramus -http://uri.interlex.org/base/ilx_0793228;gray communicating ramus of first sacral nerve;S1 gray ramus -http://uri.interlex.org/base/ilx_0793228;gray communicating ramus of first sacral nerve;S1 grey ramus -http://uri.interlex.org/base/ilx_0793335;T5 sympathetic chain; -http://uri.interlex.org/base/ilx_0793336;T6 sympathetic chain; -http://uri.interlex.org/base/ilx_0793350;S1 sympathetic chain; -http://uri.interlex.org/base/ilx_0793357;Thirteenth thoracic spinal cord segment;T13 segment -http://uri.interlex.org/base/ilx_0793357;Thirteenth thoracic spinal cord segment;T13 spinal cord segment -http://uri.interlex.org/base/ilx_0793359;thirteenth thoracic dorsal root ganglion;T13 dorsal root ganglia -http://uri.interlex.org/base/ilx_0793359;thirteenth thoracic dorsal root ganglion;thirteenth thoracic spinal ganglion -http://uri.interlex.org/base/ilx_0793360;sixth lumbar dorsal root ganglion;L6 dorsal root ganglia -http://uri.interlex.org/base/ilx_0793360;sixth lumbar dorsal root ganglion;L6 dorsal root ganglion -http://uri.interlex.org/base/ilx_0793360;sixth lumbar dorsal root ganglion;Sixth lumbar spinal ganglion -http://uri.interlex.org/base/ilx_0793361;white communicating ramus of third lumbar spinal nerve;L3 white ramus -http://uri.interlex.org/base/ilx_0793362;White communicating ramus of fourth lumbar anterior ramus;L4 white ramus -http://uri.interlex.org/base/ilx_0793550;mediastinal ganglion; -http://uri.interlex.org/base/ilx_0793555;Atrial intrinsic cardiac ganglion;atrial ganglionated plexus -http://uri.interlex.org/base/ilx_0793556;ventricular intrinsic cardiac ganglion;Ventricular ganglionated plexus -http://uri.interlex.org/base/ilx_0793559;bladder nerve;nerve of bladder -http://uri.interlex.org/base/ilx_0793560;External laryngeal nerve;External laryngeal nerve -http://uri.interlex.org/base/ilx_0793560;External laryngeal nerve;external superior laryngeal nerve -http://uri.interlex.org/base/ilx_0793561;Internal branch of superior laryngeal nerve;Internal laryngeal nerve -http://uri.interlex.org/base/ilx_0793561;Internal branch of superior laryngeal nerve;Internal superior laryngeal nerve -http://uri.interlex.org/base/ilx_0793563;splenic nerve;Splenic nerve plexus -http://uri.interlex.org/base/ilx_0793570;trachea parasympathetic ganglia; -http://uri.interlex.org/base/ilx_0793571;bronchus parasympathetic ganglia; -http://uri.interlex.org/base/ilx_0793572;bronchiole parasympathetic ganglia; -http://uri.interlex.org/base/ilx_0793573;terminal bronchiole parasympathetic ganglia; -http://uri.interlex.org/base/ilx_0793613;Epithelium of pancreatic acinus; -http://uri.interlex.org/base/ilx_0793615;ventral root of the sixth lumbar spinal cord segment;Anterior root of sixth lumbar nerve -http://uri.interlex.org/base/ilx_0793615;ventral root of the sixth lumbar spinal cord segment;anterior root of L6 -http://uri.interlex.org/base/ilx_0793617;T2 sympathetic chain; -http://uri.interlex.org/base/ilx_0793618;T3 sympathetic chain; -http://uri.interlex.org/base/ilx_0793619;T4 sympathetic chain; -http://uri.interlex.org/base/ilx_0793621;External carotid nerve plexus;fibers provided by http://purl.obolibrary.org/obo/UBERON_0001989 -http://uri.interlex.org/base/ilx_0793626;ventrolateral periaqueductal gray; -http://uri.interlex.org/base/ilx_0793632;lumbar colonic nerve; -http://uri.interlex.org/base/ilx_0793641;Arteriole in circular muscle layer of descending colon; -http://uri.interlex.org/base/ilx_0793642;Arteriole in lamina propria of mucosa of descending colon; -http://uri.interlex.org/base/ilx_0793643;Arteriole in longitudinal muscle layer of descending colon; -http://uri.interlex.org/base/ilx_0793644;Arteriole in myenteric nerve plexus of descending colon; -http://uri.interlex.org/base/ilx_0793645;Arteriole in serosa of descending colon; -http://uri.interlex.org/base/ilx_0793646;Arteriole in submucous nerve plexus of descending colon; -http://uri.interlex.org/base/ilx_0793656;myenteric nerve plexus of stomach; -http://uri.interlex.org/base/ilx_0793657;Myenteric nerve plexus of descending colon; -http://uri.interlex.org/base/ilx_0793659;Submucous nerve plexus of descending colon; -http://uri.interlex.org/base/ilx_0793660;myenteric nerve plexus of lower esophagus; -http://uri.interlex.org/base/ilx_0793663;Arteriole in connective tissue of bladder neck; -http://uri.interlex.org/base/ilx_0793664;Arteriole in connective tissue of bladder dome; -http://uri.interlex.org/base/ilx_0793667;myenteric plexus of gastric antrum; -http://uri.interlex.org/base/ilx_0793668;myenteric plexus of proximal duodenum; -http://uri.interlex.org/base/ilx_0793669;basement membrane of pancreatic acinus; -http://uri.interlex.org/base/ilx_0793671;adventitia of superior mesenteric artery; -http://uri.interlex.org/base/ilx_0793673;Nerve plexus in adventitia of splenic artery; -http://uri.interlex.org/base/ilx_0793674;nerve plexus in adventitia of inferior pancreaticoduodenal artery; -http://uri.interlex.org/base/ilx_0793675;adventitia of celiac trunk; -http://uri.interlex.org/base/ilx_0793676;nerve plexus in adventitia of hepatic artery; -http://uri.interlex.org/base/ilx_0793680;Perimarginal cavernous sinus; -http://uri.interlex.org/base/ilx_0793681;Marginal zone network; -http://uri.interlex.org/base/ilx_0793697;Intermediolateral nucleus of second thoracic segment;T2 intermediolateral cell column -http://uri.interlex.org/base/ilx_0793697;Intermediolateral nucleus of second thoracic segment;T2 intermediolateral nucleus -http://uri.interlex.org/base/ilx_0793698;Intermediolateral nucleus of third thoracic segment;T3 intermediolateral cell column -http://uri.interlex.org/base/ilx_0793698;Intermediolateral nucleus of third thoracic segment;T3 intermediolateral nucleus -http://uri.interlex.org/base/ilx_0793699;Intermediolateral nucleus of fourth thoracic segment;T4 intermediolateral cell column -http://uri.interlex.org/base/ilx_0793699;Intermediolateral nucleus of fourth thoracic segment;T4 intermediolateral nucleus -http://uri.interlex.org/base/ilx_0793700;Intermediolateral nucleus of fifth thoracic segment; -http://uri.interlex.org/base/ilx_0793701;Intermediolateral nucleus of sixth thoracic segment;T6 intermediolateral nucleus -http://uri.interlex.org/base/ilx_0793701;Intermediolateral nucleus of sixth thoracic segment;T6 intermediorlateral nucleus -http://uri.interlex.org/base/ilx_0793702;Greater petrosal nerve; -http://uri.interlex.org/base/ilx_0793711;Communicating branch of zygomatic nerve;Communicating branch to V1 -http://uri.interlex.org/base/ilx_0793711;Communicating branch of zygomatic nerve;Communicating branch with zygomatic nerve -http://uri.interlex.org/base/ilx_0793712;Zygomatic nerve;Zygomatic branch of V2 -http://uri.interlex.org/base/ilx_0793713;Deep petrosal nerve;Sympathetic root of pterygopalatine ganglion -http://uri.interlex.org/base/ilx_0793714;Mesenteric nerve; -http://uri.interlex.org/base/ilx_0793722;Lesser petrosal nerve; -http://uri.interlex.org/base/ilx_0793723;Auriculotemporal nerve; -http://uri.interlex.org/base/ilx_0793734;myenteric ganglion;myenteric plexus ganglion -http://uri.interlex.org/base/ilx_0793735;Myenteric ganglion of small intestine; -http://uri.interlex.org/base/ilx_0793737;Nerve fiber from submandibular ganglion to submandibular gland; -http://uri.interlex.org/base/ilx_0793738;Nerve fiber from submandibular ganglion to mouth mucosa; -http://uri.interlex.org/base/ilx_0793739;Nerve fiber from submandibular ganglion to sublingual gland; -http://uri.interlex.org/base/ilx_0793766;sympathetic chain segment; -http://uri.interlex.org/base/ilx_0793802;S4 sacral parasympathetic nucleus; -http://uri.interlex.org/base/ilx_0793803;inferior hypogastric nerve plexus ganglion; -http://uri.interlex.org/base/ilx_0793806;prostatic nerve plexus;prostatic plexus -http://uri.interlex.org/base/ilx_0793807;Penile cavernous nerve;Cavernous nerve of penis -http://uri.interlex.org/base/ilx_0793807;Penile cavernous nerve;main penile nerve -http://uri.interlex.org/base/ilx_0793807;Penile cavernous nerve;penile nerve -http://uri.interlex.org/base/ilx_0793808;uterovaginal nerve plexus;Frankenhauser's ganglion -http://uri.interlex.org/base/ilx_0793808;uterovaginal nerve plexus;Uterovaginal plexus -http://uri.interlex.org/base/ilx_0793809;Clitoral cavernous nerve;cavernous nerve of clitoris -http://uri.interlex.org/base/ilx_0793811;Intermediolateral nucleus of seventh thoracic segment;L7 Intermediolateral nucleus -http://uri.interlex.org/base/ilx_0793812;Intermediolateral nucleus of eighth thoracic segment;T8 Intermediolateral nucleus -http://uri.interlex.org/base/ilx_0793813;Intermediolateral nucleus of ninth thoracic segment;T9 Intermediolateral nucleus -http://uri.interlex.org/base/ilx_0793814;Intermediolateral nucleus of tenth thoracic segment;T10 Intermediolateral nucleus -http://uri.interlex.org/base/ilx_0793815;Intermediolateral nucleus of eleventh thoracic segment;InT11 termediolateral nucleus -http://uri.interlex.org/base/ilx_0793816;Intermediolateral nucleus of twelfth thoracic segment; -http://uri.interlex.org/base/ilx_0793817;Intermediolateral nucleus of thirteenth thoracic segment;T13 intermediolateral nucleus -http://uri.interlex.org/base/ilx_0793818;Intermediolateral nucleus of first lumbar segment; -http://uri.interlex.org/base/ilx_0793819;Intermediolateral nucleus of second lumbar segment; -http://uri.interlex.org/base/ilx_0793821;prevertebral sympathetic ganglion in abdominal aortic plexus;abdominal aortic plexus prevertebral sympathetic ganglion -http://uri.interlex.org/base/ilx_0793822;Superior ovarian nerve;SON -http://uri.interlex.org/base/ilx_0793823;major pelvic ganglion;MPG -http://uri.interlex.org/base/ilx_0793823;major pelvic ganglion;pelvic ganglion -http://uri.interlex.org/base/ilx_0793832;ovarian nerve plexus; -http://uri.interlex.org/base/ilx_0793833;ovarian nerve plexus parasympathetic ganglion; -http://uri.interlex.org/base/ilx_0793834;accessory pelvic ganglion; -http://uri.interlex.org/base/ilx_0793804;L6 Sacral parasympathetic nucleus; -http://uri.interlex.org/base/ilx_0793805;S1 sacral parasympathetic nucleus; -http://uri.interlex.org/base/ilx_0793800;S2 sacral parasympathetic nucleus; -http://uri.interlex.org/base/ilx_0793801;S3 sacral parasympathetic nucleus; \ No newline at end of file +o,o_label,o_synonym +http://purl.obolibrary.org/obo/UBERON_0000002,uterine cervix,canalis cervicis uteri +http://purl.obolibrary.org/obo/UBERON_0000002,uterine cervix,caudal segment of uterus +http://purl.obolibrary.org/obo/UBERON_0000002,uterine cervix,cervical canal +http://purl.obolibrary.org/obo/UBERON_0000002,uterine cervix,cervical canal of uterus +http://purl.obolibrary.org/obo/UBERON_0000002,uterine cervix,cervix +http://purl.obolibrary.org/obo/UBERON_0000002,uterine cervix,cervix of uterus +http://purl.obolibrary.org/obo/UBERON_0000002,uterine cervix,cervix uteri +http://purl.obolibrary.org/obo/UBERON_0000002,uterine cervix,neck of uterus +http://purl.obolibrary.org/obo/UBERON_0000002,uterine cervix,uterine cervix +http://purl.obolibrary.org/obo/UBERON_0000003,naris, +http://purl.obolibrary.org/obo/UBERON_0000004,nose,nasal sac +http://purl.obolibrary.org/obo/UBERON_0000004,nose,nasus +http://purl.obolibrary.org/obo/UBERON_0000004,nose,nose +http://purl.obolibrary.org/obo/UBERON_0000004,nose,olfactory apparatus +http://purl.obolibrary.org/obo/UBERON_0000004,nose,peripheral olfactory organ +http://purl.obolibrary.org/obo/UBERON_0000004,nose,proboscis +http://purl.obolibrary.org/obo/UBERON_0000005,chemosensory organ,chemosensory sensory organ +http://purl.obolibrary.org/obo/UBERON_0000006,islet of Langerhans,island of Langerhans +http://purl.obolibrary.org/obo/UBERON_0000006,islet of Langerhans,island of pancreas +http://purl.obolibrary.org/obo/UBERON_0000006,islet of Langerhans,islets of Langerhans +http://purl.obolibrary.org/obo/UBERON_0000006,islet of Langerhans,pancreatic insula +http://purl.obolibrary.org/obo/UBERON_0000006,islet of Langerhans,pancreatic islet +http://purl.obolibrary.org/obo/UBERON_0000007,pituitary gland,Hp +http://purl.obolibrary.org/obo/UBERON_0000007,pituitary gland,glandula pituitaria +http://purl.obolibrary.org/obo/UBERON_0000007,pituitary gland,hypophysis +http://purl.obolibrary.org/obo/UBERON_0000007,pituitary gland,hypophysis cerebri +http://purl.obolibrary.org/obo/UBERON_0000007,pituitary gland,pituitary +http://purl.obolibrary.org/obo/UBERON_0000007,pituitary gland,pituitary body +http://purl.obolibrary.org/obo/UBERON_0000009,submucosa,organ submucosa +http://purl.obolibrary.org/obo/UBERON_0000009,submucosa,region of submucosa +http://purl.obolibrary.org/obo/UBERON_0000009,submucosa,submucosa of organ +http://purl.obolibrary.org/obo/UBERON_0000009,submucosa,submucosa of region of organ +http://purl.obolibrary.org/obo/UBERON_0000009,submucosa,submucous layer +http://purl.obolibrary.org/obo/UBERON_0000009,submucosa,tela submucosa +http://purl.obolibrary.org/obo/UBERON_0000009,submucosa,tunica submucosa +http://purl.obolibrary.org/obo/UBERON_0000010,peripheral nervous system,PNS +http://purl.obolibrary.org/obo/UBERON_0000010,peripheral nervous system,pars peripherica +http://purl.obolibrary.org/obo/UBERON_0000010,peripheral nervous system,systema nervosum periphericum +http://purl.obolibrary.org/obo/UBERON_0000011,parasympathetic nervous system,PNS - parasympathetic +http://purl.obolibrary.org/obo/UBERON_0000011,parasympathetic nervous system,parasympathetic part of autonomic division of nervous system +http://purl.obolibrary.org/obo/UBERON_0000011,parasympathetic nervous system,pars parasympathica divisionis autonomici systematis nervosi +http://purl.obolibrary.org/obo/UBERON_0000012,somatic nervous system,PNS - somatic +http://purl.obolibrary.org/obo/UBERON_0000012,somatic nervous system,"somatic nervous system, somatic division" +http://purl.obolibrary.org/obo/UBERON_0000012,somatic nervous system,somatic part of peripheral nervous system +http://purl.obolibrary.org/obo/UBERON_0000012,somatic nervous system,somatic peripheral nervous system +http://purl.obolibrary.org/obo/UBERON_0000013,sympathetic nervous system,pars sympathica divisionis autonomici systematis nervosi +http://purl.obolibrary.org/obo/UBERON_0000013,sympathetic nervous system,sympathetic nervous system +http://purl.obolibrary.org/obo/UBERON_0000013,sympathetic nervous system,sympathetic part of autonomic division of nervous system +http://purl.obolibrary.org/obo/UBERON_0000014,zone of skin,portion of skin +http://purl.obolibrary.org/obo/UBERON_0000014,zone of skin,region of skin +http://purl.obolibrary.org/obo/UBERON_0000014,zone of skin,skin +http://purl.obolibrary.org/obo/UBERON_0000014,zone of skin,skin region +http://purl.obolibrary.org/obo/UBERON_0000014,zone of skin,skin zone +http://purl.obolibrary.org/obo/UBERON_0000015,non-material anatomical boundary,anatomical boundary +http://purl.obolibrary.org/obo/UBERON_0000016,endocrine pancreas,endocrine pancreas +http://purl.obolibrary.org/obo/UBERON_0000016,endocrine pancreas,endocrine part of pancreas +http://purl.obolibrary.org/obo/UBERON_0000016,endocrine pancreas,islets of Langerhans part of pancreas +http://purl.obolibrary.org/obo/UBERON_0000016,endocrine pancreas,pars endocrina pancreatis +http://purl.obolibrary.org/obo/UBERON_0000017,exocrine pancreas,exocrine component of pancreas +http://purl.obolibrary.org/obo/UBERON_0000017,exocrine pancreas,exocrine pancreas +http://purl.obolibrary.org/obo/UBERON_0000017,exocrine pancreas,exocrine part of pancreas +http://purl.obolibrary.org/obo/UBERON_0000017,exocrine pancreas,pars exocrina pancreatis +http://purl.obolibrary.org/obo/UBERON_0000018,compound eye, +http://purl.obolibrary.org/obo/UBERON_0000019,camera-type eye,camera-type eye plus associated structures +http://purl.obolibrary.org/obo/UBERON_0000019,camera-type eye,eye +http://purl.obolibrary.org/obo/UBERON_0000019,camera-type eye,eyes +http://purl.obolibrary.org/obo/UBERON_0000019,camera-type eye,orbital part of face +http://purl.obolibrary.org/obo/UBERON_0000019,camera-type eye,orbital region +http://purl.obolibrary.org/obo/UBERON_0000019,camera-type eye,regio orbitalis +http://purl.obolibrary.org/obo/UBERON_0000019,camera-type eye,vertebrate eye +http://purl.obolibrary.org/obo/UBERON_0000020,sense organ,Sinnesorgan +http://purl.obolibrary.org/obo/UBERON_0000020,sense organ,organ of sense organ system +http://purl.obolibrary.org/obo/UBERON_0000020,sense organ,organ of sensory organ system +http://purl.obolibrary.org/obo/UBERON_0000020,sense organ,organ of sensory system +http://purl.obolibrary.org/obo/UBERON_0000020,sense organ,sense organ system organ +http://purl.obolibrary.org/obo/UBERON_0000020,sense organ,sensillum +http://purl.obolibrary.org/obo/UBERON_0000020,sense organ,sensor +http://purl.obolibrary.org/obo/UBERON_0000020,sense organ,sensory organ +http://purl.obolibrary.org/obo/UBERON_0000020,sense organ,sensory organ system organ +http://purl.obolibrary.org/obo/UBERON_0000020,sense organ,sensory system organ +http://purl.obolibrary.org/obo/UBERON_0000021,cutaneous appendage,skin appendage +http://purl.obolibrary.org/obo/UBERON_0000022,feather, +http://purl.obolibrary.org/obo/UBERON_0000023,wing,aliform appendage +http://purl.obolibrary.org/obo/UBERON_0000024,forelimb wing, +http://purl.obolibrary.org/obo/UBERON_0000025,tube,anatomical tube +http://purl.obolibrary.org/obo/UBERON_0000025,tube,duct +http://purl.obolibrary.org/obo/UBERON_0000026,appendage,appendages +http://purl.obolibrary.org/obo/UBERON_0000026,appendage,extremitaet +http://purl.obolibrary.org/obo/UBERON_0000026,appendage,extremity +http://purl.obolibrary.org/obo/UBERON_0000026,appendage,limbs/digits/tail +http://purl.obolibrary.org/obo/UBERON_0000029,lymph node,lymph gland +http://purl.obolibrary.org/obo/UBERON_0000029,lymph node,nodus lymphaticus +http://purl.obolibrary.org/obo/UBERON_0000030,lamina propria,lamina propria mucosa +http://purl.obolibrary.org/obo/UBERON_0000030,lamina propria,lamina propria mucosae +http://purl.obolibrary.org/obo/UBERON_0000030,lamina propria,tunica propria +http://purl.obolibrary.org/obo/UBERON_0000031,lamina propria of trachea,lamina propria mucosa of trachea +http://purl.obolibrary.org/obo/UBERON_0000031,lamina propria of trachea,lamina propria mucosa of windpipe +http://purl.obolibrary.org/obo/UBERON_0000031,lamina propria of trachea,lamina propria mucosae of trachea +http://purl.obolibrary.org/obo/UBERON_0000031,lamina propria of trachea,lamina propria mucosae of windpipe +http://purl.obolibrary.org/obo/UBERON_0000031,lamina propria of trachea,lamina propria of windpipe +http://purl.obolibrary.org/obo/UBERON_0000031,lamina propria of trachea,trachea lamina propria +http://purl.obolibrary.org/obo/UBERON_0000031,lamina propria of trachea,trachea lamina propria mucosa +http://purl.obolibrary.org/obo/UBERON_0000031,lamina propria of trachea,trachea lamina propria mucosae +http://purl.obolibrary.org/obo/UBERON_0000031,lamina propria of trachea,tracheal lamina propria +http://purl.obolibrary.org/obo/UBERON_0000031,lamina propria of trachea,windpipe lamina propria +http://purl.obolibrary.org/obo/UBERON_0000031,lamina propria of trachea,windpipe lamina propria mucosa +http://purl.obolibrary.org/obo/UBERON_0000031,lamina propria of trachea,windpipe lamina propria mucosae +http://purl.obolibrary.org/obo/UBERON_0000033,head,adult head +http://purl.obolibrary.org/obo/UBERON_0000033,head,cephalic area +http://purl.obolibrary.org/obo/UBERON_0000033,head,head (volume) +http://purl.obolibrary.org/obo/UBERON_0000035,primary ovarian follicle,folliculus ovaricus primarius +http://purl.obolibrary.org/obo/UBERON_0000035,primary ovarian follicle,ovary primary follicle +http://purl.obolibrary.org/obo/UBERON_0000035,primary ovarian follicle,primary follicle of ovary +http://purl.obolibrary.org/obo/UBERON_0000035,primary ovarian follicle,primary ovarian follicle +http://purl.obolibrary.org/obo/UBERON_0000036,secondary ovarian follicle,folliculus ovaricus secondarius +http://purl.obolibrary.org/obo/UBERON_0000036,secondary ovarian follicle,ovary secondary follicle +http://purl.obolibrary.org/obo/UBERON_0000036,secondary ovarian follicle,pre-antral follicle +http://purl.obolibrary.org/obo/UBERON_0000036,secondary ovarian follicle,preantral follicle +http://purl.obolibrary.org/obo/UBERON_0000036,secondary ovarian follicle,secondary follicle of ovary +http://purl.obolibrary.org/obo/UBERON_0000037,tertiary ovarian follicle,Graafian follicle +http://purl.obolibrary.org/obo/UBERON_0000037,tertiary ovarian follicle,antral ovarian follicle +http://purl.obolibrary.org/obo/UBERON_0000037,tertiary ovarian follicle,folliculi ovarici vesiculosi +http://purl.obolibrary.org/obo/UBERON_0000037,tertiary ovarian follicle,folliculus ovaricus tertiarius +http://purl.obolibrary.org/obo/UBERON_0000037,tertiary ovarian follicle,folliculus ovaricus tertiarius (vesiculosus) +http://purl.obolibrary.org/obo/UBERON_0000037,tertiary ovarian follicle,folliculus ovaricus tertiarius (vesiculous) +http://purl.obolibrary.org/obo/UBERON_0000037,tertiary ovarian follicle,ovary antral follicle +http://purl.obolibrary.org/obo/UBERON_0000037,tertiary ovarian follicle,tertiary follicle of ovary +http://purl.obolibrary.org/obo/UBERON_0000037,tertiary ovarian follicle,vesicular follicle of ovary +http://purl.obolibrary.org/obo/UBERON_0000037,tertiary ovarian follicle,vesicular ovarian follicle +http://purl.obolibrary.org/obo/UBERON_0000038,follicular fluid,liquor follicularis +http://purl.obolibrary.org/obo/UBERON_0000038,follicular fluid,liquor folliculi +http://purl.obolibrary.org/obo/UBERON_0000038,follicular fluid,ovary follicle fluid +http://purl.obolibrary.org/obo/UBERON_0000039,follicular antrum,antral cavity +http://purl.obolibrary.org/obo/UBERON_0000039,follicular antrum,antrum folliculare +http://purl.obolibrary.org/obo/UBERON_0000039,follicular antrum,ovarian follicle antrum +http://purl.obolibrary.org/obo/UBERON_0000040,Leydig's organ, +http://purl.obolibrary.org/obo/UBERON_0000041,odontode scale,dermal denticle +http://purl.obolibrary.org/obo/UBERON_0000041,odontode scale,odontode scale +http://purl.obolibrary.org/obo/UBERON_0000041,odontode scale,placoid scale +http://purl.obolibrary.org/obo/UBERON_0000042,serous membrane,serosa +http://purl.obolibrary.org/obo/UBERON_0000042,serous membrane,tunica serosa +http://purl.obolibrary.org/obo/UBERON_0000042,serous membrane,wall of serous sac +http://purl.obolibrary.org/obo/UBERON_0000043,tendon, +http://purl.obolibrary.org/obo/UBERON_0000044,dorsal root ganglion,DRG +http://purl.obolibrary.org/obo/UBERON_0000044,dorsal root ganglion,dorsal root ganglia +http://purl.obolibrary.org/obo/UBERON_0000044,dorsal root ganglion,dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0000044,dorsal root ganglion,ganglion of dorsal root +http://purl.obolibrary.org/obo/UBERON_0000044,dorsal root ganglion,ganglion sensorium nervi spinalis +http://purl.obolibrary.org/obo/UBERON_0000044,dorsal root ganglion,ganglion spinale +http://purl.obolibrary.org/obo/UBERON_0000044,dorsal root ganglion,ganglion spinalis +http://purl.obolibrary.org/obo/UBERON_0000044,dorsal root ganglion,posterior root ganglion +http://purl.obolibrary.org/obo/UBERON_0000044,dorsal root ganglion,spinal ganglion +http://purl.obolibrary.org/obo/UBERON_0000044,dorsal root ganglion,spinal ganglion part of peripheral nervous system +http://purl.obolibrary.org/obo/UBERON_0000045,ganglion,ganglia +http://purl.obolibrary.org/obo/UBERON_0000045,ganglion,neural ganglion +http://purl.obolibrary.org/obo/UBERON_0000046,stemma,pit eye +http://purl.obolibrary.org/obo/UBERON_0000047,simple eye, +http://purl.obolibrary.org/obo/UBERON_0000048,pinhole eye, +http://purl.obolibrary.org/obo/UBERON_0000049,spherical lensed eye, +http://purl.obolibrary.org/obo/UBERON_0000050,simple eye with multiple lenses, +http://purl.obolibrary.org/obo/UBERON_0000051,fornix of vagina,fornix vaginae +http://purl.obolibrary.org/obo/UBERON_0000051,fornix of vagina,vaginal fornix +http://purl.obolibrary.org/obo/UBERON_0000052,fornix of brain,brain fornix +http://purl.obolibrary.org/obo/UBERON_0000052,fornix of brain,cerebral fornix +http://purl.obolibrary.org/obo/UBERON_0000052,fornix of brain,forebrain fornix +http://purl.obolibrary.org/obo/UBERON_0000052,fornix of brain,fornix of neuraxis +http://purl.obolibrary.org/obo/UBERON_0000052,fornix of brain,neuraxis fornix +http://purl.obolibrary.org/obo/UBERON_0000053,macula lutea, +http://purl.obolibrary.org/obo/UBERON_0000054,macula,macula +http://purl.obolibrary.org/obo/UBERON_0000054,macula,maculae +http://purl.obolibrary.org/obo/UBERON_0000054,macula,sensory macula +http://purl.obolibrary.org/obo/UBERON_0000054,macula,sensory patch +http://purl.obolibrary.org/obo/UBERON_0000055,vessel, +http://purl.obolibrary.org/obo/UBERON_0000056,ureter,metanephric duct +http://purl.obolibrary.org/obo/UBERON_0000057,urethra, +http://purl.obolibrary.org/obo/UBERON_0000058,duct,anatomical duct +http://purl.obolibrary.org/obo/UBERON_0000058,duct,ducts +http://purl.obolibrary.org/obo/UBERON_0000058,duct,exocrine duct +http://purl.obolibrary.org/obo/UBERON_0000058,duct,exocrine gland duct +http://purl.obolibrary.org/obo/UBERON_0000059,large intestine,intestinum crassum +http://purl.obolibrary.org/obo/UBERON_0000060,anatomical wall,organ wall +http://purl.obolibrary.org/obo/UBERON_0000060,anatomical wall,wall +http://purl.obolibrary.org/obo/UBERON_0000060,anatomical wall,wall of organ +http://purl.obolibrary.org/obo/UBERON_0000061,anatomical structure,biological structure +http://purl.obolibrary.org/obo/UBERON_0000061,anatomical structure,connected biological structure +http://purl.obolibrary.org/obo/UBERON_0000062,organ,anatomical unit +http://purl.obolibrary.org/obo/UBERON_0000062,organ,body organ +http://purl.obolibrary.org/obo/UBERON_0000062,organ,element +http://purl.obolibrary.org/obo/UBERON_0000063,organ subunit,organ region with fixed fiat boundary +http://purl.obolibrary.org/obo/UBERON_0000063,organ subunit,organ segment +http://purl.obolibrary.org/obo/UBERON_0000063,organ subunit,segment of organ +http://purl.obolibrary.org/obo/UBERON_0000064,organ part,cardinal organ part +http://purl.obolibrary.org/obo/UBERON_0000064,organ part,regional part of organ +http://purl.obolibrary.org/obo/UBERON_0000065,respiratory tract, +http://purl.obolibrary.org/obo/UBERON_0000072,proximo-distal subdivision of respiratory tract,respiratory tract +http://purl.obolibrary.org/obo/UBERON_0000072,proximo-distal subdivision of respiratory tract,subdivision of respiratory tract +http://purl.obolibrary.org/obo/UBERON_0000073,Regional part of nervous system,part of nervous system +http://purl.obolibrary.org/obo/UBERON_0000073,regional part of nervous system,part of nervous system +http://purl.obolibrary.org/obo/UBERON_0000074,renal glomerulus,renal glomeruli +http://purl.obolibrary.org/obo/UBERON_0000075,subdivision of skeletal system,skeletal system part +http://purl.obolibrary.org/obo/UBERON_0000075,subdivision of skeletal system,skeletal system subdivision +http://purl.obolibrary.org/obo/UBERON_0000076,external ectoderm,surface (external) ectoderm +http://purl.obolibrary.org/obo/UBERON_0000076,external ectoderm,surface ectoderm +http://purl.obolibrary.org/obo/UBERON_0000077,mixed endoderm/mesoderm-derived structure, +http://purl.obolibrary.org/obo/UBERON_0000078,mixed ectoderm/mesoderm/endoderm-derived structure, +http://purl.obolibrary.org/obo/UBERON_0000079,male reproductive system,genitalia of male organism +http://purl.obolibrary.org/obo/UBERON_0000079,male reproductive system,male genital organ +http://purl.obolibrary.org/obo/UBERON_0000079,male reproductive system,male genital system +http://purl.obolibrary.org/obo/UBERON_0000079,male reproductive system,male genital tract +http://purl.obolibrary.org/obo/UBERON_0000079,male reproductive system,male genitalia +http://purl.obolibrary.org/obo/UBERON_0000079,male reproductive system,male genitals +http://purl.obolibrary.org/obo/UBERON_0000079,male reproductive system,male organism genitalia +http://purl.obolibrary.org/obo/UBERON_0000079,male reproductive system,male organism reproductive system +http://purl.obolibrary.org/obo/UBERON_0000079,male reproductive system,male reproductive tract +http://purl.obolibrary.org/obo/UBERON_0000079,male reproductive system,reproductive system of male organism +http://purl.obolibrary.org/obo/UBERON_0000079,male reproductive system,systema genitale masculinum +http://purl.obolibrary.org/obo/UBERON_0000080,mesonephros,Wolffian body +http://purl.obolibrary.org/obo/UBERON_0000080,mesonephros,mesonephric kidney +http://purl.obolibrary.org/obo/UBERON_0000080,mesonephros,mesonephroi +http://purl.obolibrary.org/obo/UBERON_0000081,metanephros,metanephron +http://purl.obolibrary.org/obo/UBERON_0000082,adult mammalian kidney, +http://purl.obolibrary.org/obo/UBERON_0000083,mesonephric tubule, +http://purl.obolibrary.org/obo/UBERON_0000084,ureteric bud, +http://purl.obolibrary.org/obo/UBERON_0000085,morula, +http://purl.obolibrary.org/obo/UBERON_0000086,zona pellucida, +http://purl.obolibrary.org/obo/UBERON_0000087,inner cell mass, +http://purl.obolibrary.org/obo/UBERON_0000088,trophoblast,trophoblast layer +http://purl.obolibrary.org/obo/UBERON_0000089,hypoblast (generic),hypoblast +http://purl.obolibrary.org/obo/UBERON_0000090,blastocele,blastocoele +http://purl.obolibrary.org/obo/UBERON_0000090,blastocele,blastocoelic cavity +http://purl.obolibrary.org/obo/UBERON_0000090,blastocele,blastocyst cavity +http://purl.obolibrary.org/obo/UBERON_0000090,blastocele,cleavage cavity +http://purl.obolibrary.org/obo/UBERON_0000090,blastocele,segmentation cavity +http://purl.obolibrary.org/obo/UBERON_0000091,bilaminar disc,bilaminary embryonic disc +http://purl.obolibrary.org/obo/UBERON_0000091,bilaminar disc,bilaminary germ disc +http://purl.obolibrary.org/obo/UBERON_0000093,sulcus, +http://purl.obolibrary.org/obo/UBERON_0000094,membrane organ,membrane of organ +http://purl.obolibrary.org/obo/UBERON_0000095,cardiac neural crest, +http://purl.obolibrary.org/obo/UBERON_0000100,blastopore, +http://purl.obolibrary.org/obo/UBERON_0000101,lobe of lung,lung lobe +http://purl.obolibrary.org/obo/UBERON_0000101,lobe of lung,pulminory lobe +http://purl.obolibrary.org/obo/UBERON_0000101,lobe of lung,pulmonary lobe +http://purl.obolibrary.org/obo/UBERON_0000102,lung vasculature,lung vascular network +http://purl.obolibrary.org/obo/UBERON_0000102,lung vasculature,pulmonary vasculature +http://purl.obolibrary.org/obo/UBERON_0000102,lung vasculature,vascular network of lung +http://purl.obolibrary.org/obo/UBERON_0000102,lung vasculature,vasculature of lung +http://purl.obolibrary.org/obo/UBERON_0000114,lung connective tissue,connective tissue of lung +http://purl.obolibrary.org/obo/UBERON_0000114,lung connective tissue,pulmonary interstitium +http://purl.obolibrary.org/obo/UBERON_0000115,lung epithelium,epithelial tissue of lung +http://purl.obolibrary.org/obo/UBERON_0000115,lung epithelium,epithelium of lung +http://purl.obolibrary.org/obo/UBERON_0000115,lung epithelium,lung epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0000116,lung saccule, +http://purl.obolibrary.org/obo/UBERON_0000117,respiratory tube,airway +http://purl.obolibrary.org/obo/UBERON_0000117,respiratory tube,respiratory conducting tube +http://purl.obolibrary.org/obo/UBERON_0000117,respiratory tube,segment of tracheobronchial tree +http://purl.obolibrary.org/obo/UBERON_0000117,respiratory tube,tracheobronchial tree segment +http://purl.obolibrary.org/obo/UBERON_0000118,lung bud, +http://purl.obolibrary.org/obo/UBERON_0000119,cell layer,cell sheath +http://purl.obolibrary.org/obo/UBERON_0000119,cell layer,layer +http://purl.obolibrary.org/obo/UBERON_0000119,cell layer,layer of cells +http://purl.obolibrary.org/obo/UBERON_0000119,cell layer,sheath of cells +http://purl.obolibrary.org/obo/UBERON_0000120,blood brain barrier,blood-brain barrier +http://purl.obolibrary.org/obo/UBERON_0000121,perineurium, +http://purl.obolibrary.org/obo/UBERON_0000122,neuron projection bundle,funiculus +http://purl.obolibrary.org/obo/UBERON_0000122,neuron projection bundle,nerve fiber bundle +http://purl.obolibrary.org/obo/UBERON_0000122,neuron projection bundle,neural fiber bundle +http://purl.obolibrary.org/obo/UBERON_0000123,endoneurium, +http://purl.obolibrary.org/obo/UBERON_0000124,epineurium, +http://purl.obolibrary.org/obo/UBERON_0000125,neural nucleus,nervous system nucleus +http://purl.obolibrary.org/obo/UBERON_0000125,neural nucleus,neuraxis nucleus +http://purl.obolibrary.org/obo/UBERON_0000125,neural nucleus,neuronal nucleus +http://purl.obolibrary.org/obo/UBERON_0000125,neural nucleus,nucleus +http://purl.obolibrary.org/obo/UBERON_0000125,neural nucleus,nucleus of CNS +http://purl.obolibrary.org/obo/UBERON_0000125,neural nucleus,nucleus of neuraxis +http://purl.obolibrary.org/obo/UBERON_0000126,cranial nerve nucleus,cranial neural nucleus +http://purl.obolibrary.org/obo/UBERON_0000126,cranial nerve nucleus,nucleus nervi cranialis +http://purl.obolibrary.org/obo/UBERON_0000126,cranial nerve nucleus,nucleus of cranial nerve +http://purl.obolibrary.org/obo/UBERON_0000127,facial nucleus,facial VII motor nucleus +http://purl.obolibrary.org/obo/UBERON_0000127,facial nucleus,facial VII nucleus +http://purl.obolibrary.org/obo/UBERON_0000127,facial nucleus,facial nerve nucleus +http://purl.obolibrary.org/obo/UBERON_0000127,facial nucleus,nucleus of facial nerve +http://purl.obolibrary.org/obo/UBERON_0000128,olivary body,olive body +http://purl.obolibrary.org/obo/UBERON_0000130,transverse foramen,foramen transversarium +http://purl.obolibrary.org/obo/UBERON_0000130,transverse foramen,foramen transversarium of cervical vertebra +http://purl.obolibrary.org/obo/UBERON_0000130,transverse foramen,foramen transversarium vertebrae cervicales +http://purl.obolibrary.org/obo/UBERON_0000130,transverse foramen,transverse foramen of cervical vertebra +http://purl.obolibrary.org/obo/UBERON_0000144,trochlea of humerus,humeral trochlea +http://purl.obolibrary.org/obo/UBERON_0000144,trochlea of humerus,trochlea humeri +http://purl.obolibrary.org/obo/UBERON_0000151,pectoral fin,forefin +http://purl.obolibrary.org/obo/UBERON_0000152,pelvic fin, +http://purl.obolibrary.org/obo/UBERON_0000153,anterior region of body, +http://purl.obolibrary.org/obo/UBERON_0000154,posterior region of body, +http://purl.obolibrary.org/obo/UBERON_0000155,theca cell layer,layer of theca cells +http://purl.obolibrary.org/obo/UBERON_0000155,theca cell layer,ovary theca +http://purl.obolibrary.org/obo/UBERON_0000155,theca cell layer,theca cell layer of ovarian follicle +http://purl.obolibrary.org/obo/UBERON_0000155,theca cell layer,theca of follicle +http://purl.obolibrary.org/obo/UBERON_0000155,theca cell layer,thecal cell layer +http://purl.obolibrary.org/obo/UBERON_0000156,theca externa,ovary theca externa +http://purl.obolibrary.org/obo/UBERON_0000156,theca externa,theca externa (folliculus ovaricus tertiarius) +http://purl.obolibrary.org/obo/UBERON_0000156,theca externa,tunica externa of theca folliculi +http://purl.obolibrary.org/obo/UBERON_0000157,theca interna,ovary theca interna +http://purl.obolibrary.org/obo/UBERON_0000157,theca interna,theca interna (folliculus ovaricus tertiarius) +http://purl.obolibrary.org/obo/UBERON_0000157,theca interna,tunica interna of theca folliculi +http://purl.obolibrary.org/obo/UBERON_0000158,membranous layer,membrane +http://purl.obolibrary.org/obo/UBERON_0000158,membranous layer,membranous organ component +http://purl.obolibrary.org/obo/UBERON_0000159,anal canal,anal canal +http://purl.obolibrary.org/obo/UBERON_0000159,anal canal,anal canal viewed anatomically +http://purl.obolibrary.org/obo/UBERON_0000159,anal canal,anatomical anal canal +http://purl.obolibrary.org/obo/UBERON_0000160,intestine,bowel +http://purl.obolibrary.org/obo/UBERON_0000160,intestine,intestinal tract +http://purl.obolibrary.org/obo/UBERON_0000161,orifice,anatomical orifice +http://purl.obolibrary.org/obo/UBERON_0000162,cloaca, +http://purl.obolibrary.org/obo/UBERON_0000163,embryonic cloaca, +http://purl.obolibrary.org/obo/UBERON_0000164,primitive urogenital sinus,UGS +http://purl.obolibrary.org/obo/UBERON_0000164,primitive urogenital sinus,fetal UGS +http://purl.obolibrary.org/obo/UBERON_0000164,primitive urogenital sinus,sinus urogenitalis +http://purl.obolibrary.org/obo/UBERON_0000165,mouth,adult mouth +http://purl.obolibrary.org/obo/UBERON_0000165,mouth,cavital oralis +http://purl.obolibrary.org/obo/UBERON_0000165,mouth,cavitas oris +http://purl.obolibrary.org/obo/UBERON_0000165,mouth,cavum oris +http://purl.obolibrary.org/obo/UBERON_0000165,mouth,mouth cavity +http://purl.obolibrary.org/obo/UBERON_0000165,mouth,oral region +http://purl.obolibrary.org/obo/UBERON_0000165,mouth,oral vestibule +http://purl.obolibrary.org/obo/UBERON_0000165,mouth,regio oralis +http://purl.obolibrary.org/obo/UBERON_0000165,mouth,rima oris +http://purl.obolibrary.org/obo/UBERON_0000165,mouth,stoma +http://purl.obolibrary.org/obo/UBERON_0000165,mouth,stomatodaeum +http://purl.obolibrary.org/obo/UBERON_0000165,mouth,trophic apparatus +http://purl.obolibrary.org/obo/UBERON_0000165,mouth,vestibule of mouth +http://purl.obolibrary.org/obo/UBERON_0000165,mouth,vestibulum oris +http://purl.obolibrary.org/obo/UBERON_0000166,oral opening,oral fissure +http://purl.obolibrary.org/obo/UBERON_0000166,oral opening,oral orifice +http://purl.obolibrary.org/obo/UBERON_0000167,oral cavity,buccal cavity +http://purl.obolibrary.org/obo/UBERON_0000167,oral cavity,cavity of mouth +http://purl.obolibrary.org/obo/UBERON_0000168,proximal-distal subdivision of colon,segment of colon +http://purl.obolibrary.org/obo/UBERON_0000170,pair of lungs,lungs +http://purl.obolibrary.org/obo/UBERON_0000170,pair of lungs,lungs pair +http://purl.obolibrary.org/obo/UBERON_0000170,pair of lungs,pulmones +http://purl.obolibrary.org/obo/UBERON_0000170,pair of lungs,set of lungs +http://purl.obolibrary.org/obo/UBERON_0000171,respiration organ,apparatus respiratorius organ +http://purl.obolibrary.org/obo/UBERON_0000171,respiration organ,breathing organ +http://purl.obolibrary.org/obo/UBERON_0000171,respiration organ,gas exchange organ +http://purl.obolibrary.org/obo/UBERON_0000171,respiration organ,organ of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0000171,respiration organ,organ of respiratory system +http://purl.obolibrary.org/obo/UBERON_0000171,respiration organ,respiratory organ +http://purl.obolibrary.org/obo/UBERON_0000171,respiration organ,respiratory system organ +http://purl.obolibrary.org/obo/UBERON_0000172,vomit,vomitus +http://purl.obolibrary.org/obo/UBERON_0000173,amniotic fluid, +http://purl.obolibrary.org/obo/UBERON_0000174,excreta,excreted substance +http://purl.obolibrary.org/obo/UBERON_0000174,excreta,portion of excreted substance +http://purl.obolibrary.org/obo/UBERON_0000174,excreta,waste substance +http://purl.obolibrary.org/obo/UBERON_0000175,pleural effusion, +http://purl.obolibrary.org/obo/UBERON_0000176,oronasal secretion, +http://purl.obolibrary.org/obo/UBERON_0000177,pus, +http://purl.obolibrary.org/obo/UBERON_0000178,blood,portion of blood +http://purl.obolibrary.org/obo/UBERON_0000178,blood,vertebrate blood +http://purl.obolibrary.org/obo/UBERON_0000179,haemolymphatic fluid, +http://purl.obolibrary.org/obo/UBERON_0000180,lateral lumbar region of abdomen,flank +http://purl.obolibrary.org/obo/UBERON_0000180,lateral lumbar region of abdomen,lateral region +http://purl.obolibrary.org/obo/UBERON_0000180,lateral lumbar region of abdomen,lateral region of abdomen +http://purl.obolibrary.org/obo/UBERON_0000180,lateral lumbar region of abdomen,latus +http://purl.obolibrary.org/obo/UBERON_0000180,lateral lumbar region of abdomen,regio lateralis +http://purl.obolibrary.org/obo/UBERON_0000199,neck of radius,collum radii +http://purl.obolibrary.org/obo/UBERON_0000199,neck of radius,radial neck +http://purl.obolibrary.org/obo/UBERON_0000200,gyrus,cerebral gyrus +http://purl.obolibrary.org/obo/UBERON_0000200,gyrus,folia +http://purl.obolibrary.org/obo/UBERON_0000200,gyrus,folium +http://purl.obolibrary.org/obo/UBERON_0000200,gyrus,folium of brain +http://purl.obolibrary.org/obo/UBERON_0000200,gyrus,gyri +http://purl.obolibrary.org/obo/UBERON_0000200,gyrus,gyri of cerebrum +http://purl.obolibrary.org/obo/UBERON_0000200,gyrus,gyrus of cerebral hemisphere +http://purl.obolibrary.org/obo/UBERON_0000200,gyrus,gyrus of cerebrum +http://purl.obolibrary.org/obo/UBERON_0000200,gyrus,gyrus of neuraxis +http://purl.obolibrary.org/obo/UBERON_0000200,gyrus,neuraxis gyrus +http://purl.obolibrary.org/obo/UBERON_0000201,endothelial blood brain barrier, +http://purl.obolibrary.org/obo/UBERON_0000202,glial blood brain barrier, +http://purl.obolibrary.org/obo/UBERON_0000203,pallium,area dorsalis telencephali +http://purl.obolibrary.org/obo/UBERON_0000203,pallium,dorsal part of telencephalon +http://purl.obolibrary.org/obo/UBERON_0000203,pallium,dorsal telencephalic area +http://purl.obolibrary.org/obo/UBERON_0000203,pallium,dorsal telencephalon +http://purl.obolibrary.org/obo/UBERON_0000204,ventral part of telencephalon,area ventralis telencephali +http://purl.obolibrary.org/obo/UBERON_0000204,ventral part of telencephalon,subpallium +http://purl.obolibrary.org/obo/UBERON_0000204,ventral part of telencephalon,ventral telencephalon +http://purl.obolibrary.org/obo/UBERON_0000205,papula,papulae +http://purl.obolibrary.org/obo/UBERON_0000205,papula,papulli +http://purl.obolibrary.org/obo/UBERON_0000206,pharyngeal gill, +http://purl.obolibrary.org/obo/UBERON_0000207,compound eye corneal lens, +http://purl.obolibrary.org/obo/UBERON_0000209,tetrapod frontal bone, +http://purl.obolibrary.org/obo/UBERON_0000210,tetrapod parietal bone, +http://purl.obolibrary.org/obo/UBERON_0000211,ligament,ligament organ +http://purl.obolibrary.org/obo/UBERON_0000212,toilet claw, +http://purl.obolibrary.org/obo/UBERON_0000218,vertebral arch of axis,vertebral foramen of cervical vertebra 2 +http://purl.obolibrary.org/obo/UBERON_0000219,vertebral foramen of atlas,vertebral foramen of cervical vertebra 1 +http://purl.obolibrary.org/obo/UBERON_0000220,atlanto-occipital joint,articulatio atlanto-occipitalis +http://purl.obolibrary.org/obo/UBERON_0000220,atlanto-occipital joint,atlanto occipital joint +http://purl.obolibrary.org/obo/UBERON_0000220,atlanto-occipital joint,atlantooccipital joint +http://purl.obolibrary.org/obo/UBERON_0000220,atlanto-occipital joint,craniovertebral joint +http://purl.obolibrary.org/obo/UBERON_0000220,atlanto-occipital joint,occipito atlantal joint +http://purl.obolibrary.org/obo/UBERON_0000220,atlanto-occipital joint,occipito-atlantal joint +http://purl.obolibrary.org/obo/UBERON_0000221,supraauricular point,supra-auricular part of head +http://purl.obolibrary.org/obo/UBERON_0000301,amniotic cavity, +http://purl.obolibrary.org/obo/UBERON_0000303,adductor longus,adductor longus muscle +http://purl.obolibrary.org/obo/UBERON_0000304,tendon sheath,synovial tendon sheath +http://purl.obolibrary.org/obo/UBERON_0000305,amnion,amnios +http://purl.obolibrary.org/obo/UBERON_0000307,blastula,blastula embryo +http://purl.obolibrary.org/obo/UBERON_0000309,body wall,wall fo trunk +http://purl.obolibrary.org/obo/UBERON_0000310,breast,mammary part of chest +http://purl.obolibrary.org/obo/UBERON_0000310,breast,mammary region +http://purl.obolibrary.org/obo/UBERON_0000311,extensor muscle, +http://purl.obolibrary.org/obo/UBERON_0000312,inner cambium layer of periosteum,cambial layer +http://purl.obolibrary.org/obo/UBERON_0000312,inner cambium layer of periosteum,cambial layer of periosteum +http://purl.obolibrary.org/obo/UBERON_0000312,inner cambium layer of periosteum,cambium +http://purl.obolibrary.org/obo/UBERON_0000312,inner cambium layer of periosteum,cambium layer of periosteum +http://purl.obolibrary.org/obo/UBERON_0000312,inner cambium layer of periosteum,inner cambial layer of periosteum +http://purl.obolibrary.org/obo/UBERON_0000312,inner cambium layer of periosteum,internal layer of periosteum +http://purl.obolibrary.org/obo/UBERON_0000312,inner cambium layer of periosteum,internal periosteum +http://purl.obolibrary.org/obo/UBERON_0000312,inner cambium layer of periosteum,osteogenic layer of periosteum +http://purl.obolibrary.org/obo/UBERON_0000313,portion of cartilage tissue in tibia,tibial cartilage +http://purl.obolibrary.org/obo/UBERON_0000314,cecum mucosa,caecum mucosa +http://purl.obolibrary.org/obo/UBERON_0000314,cecum mucosa,caecum mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0000314,cecum mucosa,caecum mucous membrane +http://purl.obolibrary.org/obo/UBERON_0000314,cecum mucosa,caecum organ mucosa +http://purl.obolibrary.org/obo/UBERON_0000314,cecum mucosa,cecal mucosa +http://purl.obolibrary.org/obo/UBERON_0000314,cecum mucosa,cecum mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0000314,cecum mucosa,cecum mucous membrane +http://purl.obolibrary.org/obo/UBERON_0000314,cecum mucosa,cecum organ mucosa +http://purl.obolibrary.org/obo/UBERON_0000314,cecum mucosa,intestinum crassum caecum mucosa +http://purl.obolibrary.org/obo/UBERON_0000314,cecum mucosa,intestinum crassum caecum mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0000314,cecum mucosa,intestinum crassum caecum mucous membrane +http://purl.obolibrary.org/obo/UBERON_0000314,cecum mucosa,intestinum crassum caecum organ mucosa +http://purl.obolibrary.org/obo/UBERON_0000314,cecum mucosa,mucosa of caecum +http://purl.obolibrary.org/obo/UBERON_0000314,cecum mucosa,mucosa of cecum +http://purl.obolibrary.org/obo/UBERON_0000314,cecum mucosa,mucosa of intestinum crassum caecum +http://purl.obolibrary.org/obo/UBERON_0000314,cecum mucosa,mucosa of organ of caecum +http://purl.obolibrary.org/obo/UBERON_0000314,cecum mucosa,mucosa of organ of cecum +http://purl.obolibrary.org/obo/UBERON_0000314,cecum mucosa,mucosa of organ of intestinum crassum caecum +http://purl.obolibrary.org/obo/UBERON_0000314,cecum mucosa,mucous membrane of caecum +http://purl.obolibrary.org/obo/UBERON_0000314,cecum mucosa,mucous membrane of cecum +http://purl.obolibrary.org/obo/UBERON_0000314,cecum mucosa,mucous membrane of intestinum crassum caecum +http://purl.obolibrary.org/obo/UBERON_0000314,cecum mucosa,organ mucosa of caecum +http://purl.obolibrary.org/obo/UBERON_0000314,cecum mucosa,organ mucosa of cecum +http://purl.obolibrary.org/obo/UBERON_0000314,cecum mucosa,organ mucosa of intestinum crassum caecum +http://purl.obolibrary.org/obo/UBERON_0000315,subarachnoid space,subarachnoid space of CNS +http://purl.obolibrary.org/obo/UBERON_0000315,subarachnoid space,subarachnoid space of central nervous system +http://purl.obolibrary.org/obo/UBERON_0000315,subarachnoid space,subarachnoid space of neuraxis +http://purl.obolibrary.org/obo/UBERON_0000316,cervical mucus,cervix mucus +http://purl.obolibrary.org/obo/UBERON_0000317,colonic mucosa,colon mucosa +http://purl.obolibrary.org/obo/UBERON_0000317,colonic mucosa,colon mucous membrane +http://purl.obolibrary.org/obo/UBERON_0000317,colonic mucosa,colonic mucosa +http://purl.obolibrary.org/obo/UBERON_0000317,colonic mucosa,colonic mucous membrane +http://purl.obolibrary.org/obo/UBERON_0000317,colonic mucosa,large bowel mucosa +http://purl.obolibrary.org/obo/UBERON_0000317,colonic mucosa,mucosa of colon +http://purl.obolibrary.org/obo/UBERON_0000317,colonic mucosa,mucosa of large bowel +http://purl.obolibrary.org/obo/UBERON_0000319,cytotrophoblast,cellular trophoblast +http://purl.obolibrary.org/obo/UBERON_0000319,cytotrophoblast,cytotrophoblastic cell layer +http://purl.obolibrary.org/obo/UBERON_0000320,duodenal mucosa,doudenal mucosa +http://purl.obolibrary.org/obo/UBERON_0000320,duodenal mucosa,duodenal mucous membrane +http://purl.obolibrary.org/obo/UBERON_0000320,duodenal mucosa,mucosa of duodenum +http://purl.obolibrary.org/obo/UBERON_0000320,duodenal mucosa,mucous membrane of duodenum +http://purl.obolibrary.org/obo/UBERON_0000323,late embryo, +http://purl.obolibrary.org/obo/UBERON_0000325,gastric gland, +http://purl.obolibrary.org/obo/UBERON_0000326,pancreatic juice, +http://purl.obolibrary.org/obo/UBERON_0000328,gut wall,digestive tract wall +http://purl.obolibrary.org/obo/UBERON_0000328,gut wall,wall of alimentary tract +http://purl.obolibrary.org/obo/UBERON_0000328,gut wall,wall of digestive tract +http://purl.obolibrary.org/obo/UBERON_0000328,gut wall,wall of gut +http://purl.obolibrary.org/obo/UBERON_0000329,hair root,root of hair +http://purl.obolibrary.org/obo/UBERON_0000331,ileal mucosa,ileal mucous membrane +http://purl.obolibrary.org/obo/UBERON_0000331,ileal mucosa,ileum mucosa +http://purl.obolibrary.org/obo/UBERON_0000331,ileal mucosa,ileum mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0000331,ileal mucosa,ileum mucous membrane +http://purl.obolibrary.org/obo/UBERON_0000331,ileal mucosa,ileum organ mucosa +http://purl.obolibrary.org/obo/UBERON_0000331,ileal mucosa,mucosa of ileum +http://purl.obolibrary.org/obo/UBERON_0000331,ileal mucosa,mucosa of organ of ileum +http://purl.obolibrary.org/obo/UBERON_0000331,ileal mucosa,mucous membrane of ileum +http://purl.obolibrary.org/obo/UBERON_0000331,ileal mucosa,organ mucosa of ileum +http://purl.obolibrary.org/obo/UBERON_0000332,yellow bone marrow,medulla ossium flava +http://purl.obolibrary.org/obo/UBERON_0000332,yellow bone marrow,yellow marrow +http://purl.obolibrary.org/obo/UBERON_0000333,intestinal gland,bowel mucosa gland +http://purl.obolibrary.org/obo/UBERON_0000333,intestinal gland,bowel mucosa of organ gland +http://purl.obolibrary.org/obo/UBERON_0000333,intestinal gland,bowel mucous membrane gland +http://purl.obolibrary.org/obo/UBERON_0000333,intestinal gland,bowel organ mucosa gland +http://purl.obolibrary.org/obo/UBERON_0000333,intestinal gland,gland of bowel mucosa +http://purl.obolibrary.org/obo/UBERON_0000333,intestinal gland,gland of bowel mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0000333,intestinal gland,gland of bowel mucous membrane +http://purl.obolibrary.org/obo/UBERON_0000333,intestinal gland,gland of bowel organ mucosa +http://purl.obolibrary.org/obo/UBERON_0000333,intestinal gland,gland of intestinal mucosa +http://purl.obolibrary.org/obo/UBERON_0000333,intestinal gland,gland of intestine mucosa +http://purl.obolibrary.org/obo/UBERON_0000333,intestinal gland,gland of intestine mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0000333,intestinal gland,gland of intestine mucous membrane +http://purl.obolibrary.org/obo/UBERON_0000333,intestinal gland,gland of intestine organ mucosa +http://purl.obolibrary.org/obo/UBERON_0000333,intestinal gland,gland of mucosa of bowel +http://purl.obolibrary.org/obo/UBERON_0000333,intestinal gland,gland of mucosa of intestine +http://purl.obolibrary.org/obo/UBERON_0000333,intestinal gland,gland of mucosa of organ of bowel +http://purl.obolibrary.org/obo/UBERON_0000333,intestinal gland,gland of mucosa of organ of intestine +http://purl.obolibrary.org/obo/UBERON_0000333,intestinal gland,gland of mucous membrane of bowel +http://purl.obolibrary.org/obo/UBERON_0000333,intestinal gland,gland of mucous membrane of intestine +http://purl.obolibrary.org/obo/UBERON_0000333,intestinal gland,gland of organ mucosa of bowel +http://purl.obolibrary.org/obo/UBERON_0000333,intestinal gland,gland of organ mucosa of intestine +http://purl.obolibrary.org/obo/UBERON_0000333,intestinal gland,glandula intestinalis +http://purl.obolibrary.org/obo/UBERON_0000333,intestinal gland,intestinal mucosa gland +http://purl.obolibrary.org/obo/UBERON_0000333,intestinal gland,intestine mucosa gland +http://purl.obolibrary.org/obo/UBERON_0000333,intestinal gland,intestine mucosa of organ gland +http://purl.obolibrary.org/obo/UBERON_0000333,intestinal gland,intestine mucous membrane gland +http://purl.obolibrary.org/obo/UBERON_0000333,intestinal gland,intestine organ mucosa gland +http://purl.obolibrary.org/obo/UBERON_0000333,intestinal gland,mucosa of bowel gland +http://purl.obolibrary.org/obo/UBERON_0000333,intestinal gland,mucosa of intestine gland +http://purl.obolibrary.org/obo/UBERON_0000333,intestinal gland,mucosa of organ of bowel gland +http://purl.obolibrary.org/obo/UBERON_0000333,intestinal gland,mucosa of organ of intestine gland +http://purl.obolibrary.org/obo/UBERON_0000333,intestinal gland,mucous membrane of bowel gland +http://purl.obolibrary.org/obo/UBERON_0000333,intestinal gland,mucous membrane of intestine gland +http://purl.obolibrary.org/obo/UBERON_0000333,intestinal gland,organ mucosa of bowel gland +http://purl.obolibrary.org/obo/UBERON_0000333,intestinal gland,organ mucosa of intestine gland +http://purl.obolibrary.org/obo/UBERON_0000341,throat, +http://purl.obolibrary.org/obo/UBERON_0000344,mucosa,mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0000344,mucosa,mucosa of organ part +http://purl.obolibrary.org/obo/UBERON_0000344,mucosa,mucosal region +http://purl.obolibrary.org/obo/UBERON_0000344,mucosa,mucous membrane +http://purl.obolibrary.org/obo/UBERON_0000344,mucosa,organ mucosa +http://purl.obolibrary.org/obo/UBERON_0000344,mucosa,region of mucosa +http://purl.obolibrary.org/obo/UBERON_0000344,mucosa,tunica mucosa +http://purl.obolibrary.org/obo/UBERON_0000345,myelin, +http://purl.obolibrary.org/obo/UBERON_0000347,entire myelin sheath, +http://purl.obolibrary.org/obo/UBERON_0000348,ophthalmic nerve,ciliary nerve +http://purl.obolibrary.org/obo/UBERON_0000348,ophthalmic nerve,"cranial nerve V, branch V1" +http://purl.obolibrary.org/obo/UBERON_0000348,ophthalmic nerve,ethmoidal nerve +http://purl.obolibrary.org/obo/UBERON_0000348,ophthalmic nerve,first branch of fifth cranial nerve +http://purl.obolibrary.org/obo/UBERON_0000348,ophthalmic nerve,first division of fifth cranial nerve +http://purl.obolibrary.org/obo/UBERON_0000348,ophthalmic nerve,first division of trigeminal nerve +http://purl.obolibrary.org/obo/UBERON_0000348,ophthalmic nerve,nervus ophthalmicus (V1) +http://purl.obolibrary.org/obo/UBERON_0000348,ophthalmic nerve,nervus ophthalmicus (Va) +http://purl.obolibrary.org/obo/UBERON_0000348,ophthalmic nerve,nervus ophthalmicus [v1] +http://purl.obolibrary.org/obo/UBERON_0000348,ophthalmic nerve,nervus ophthalmicus [va] +http://purl.obolibrary.org/obo/UBERON_0000348,ophthalmic nerve,ophthalmic division +http://purl.obolibrary.org/obo/UBERON_0000348,ophthalmic nerve,ophthalmic division [V1] +http://purl.obolibrary.org/obo/UBERON_0000348,ophthalmic nerve,ophthalmic division [Va] +http://purl.obolibrary.org/obo/UBERON_0000348,ophthalmic nerve,ophthalmic division of fifth cranial nerve +http://purl.obolibrary.org/obo/UBERON_0000348,ophthalmic nerve,ophthalmic division of trigeminal nerve (V1) +http://purl.obolibrary.org/obo/UBERON_0000348,ophthalmic nerve,ophthalmic division of trigeminal nerve (Va) +http://purl.obolibrary.org/obo/UBERON_0000348,ophthalmic nerve,ophthalmic nerve [V1] +http://purl.obolibrary.org/obo/UBERON_0000348,ophthalmic nerve,ophthalmic nerve [Va] +http://purl.obolibrary.org/obo/UBERON_0000348,ophthalmic nerve,opthalmic nerve +http://purl.obolibrary.org/obo/UBERON_0000348,ophthalmic nerve,profundal nerve +http://purl.obolibrary.org/obo/UBERON_0000348,ophthalmic nerve,profundus +http://purl.obolibrary.org/obo/UBERON_0000348,ophthalmic nerve,profundus nerve +http://purl.obolibrary.org/obo/UBERON_0000348,ophthalmic nerve,ramus opthalmicus profundus (ramus V1) +http://purl.obolibrary.org/obo/UBERON_0000348,ophthalmic nerve,rostral branch of trigeminal nerve +http://purl.obolibrary.org/obo/UBERON_0000348,ophthalmic nerve,trigeminal V nerve ophthalmic division +http://purl.obolibrary.org/obo/UBERON_0000348,ophthalmic nerve,trigeminal nerve ophthalmic division +http://purl.obolibrary.org/obo/UBERON_0000349,limbic system,visceral brain +http://purl.obolibrary.org/obo/UBERON_0000351,nuchal ligament,ligament of neck +http://purl.obolibrary.org/obo/UBERON_0000351,nuchal ligament,ligamentum nuchae +http://purl.obolibrary.org/obo/UBERON_0000353,parenchyma, +http://purl.obolibrary.org/obo/UBERON_0000355,pharyngeal mucosa,mucosa of organ of pharynx +http://purl.obolibrary.org/obo/UBERON_0000355,pharyngeal mucosa,mucosa of pharynx +http://purl.obolibrary.org/obo/UBERON_0000355,pharyngeal mucosa,mucous membrane of pharynx +http://purl.obolibrary.org/obo/UBERON_0000355,pharyngeal mucosa,organ mucosa of pharynx +http://purl.obolibrary.org/obo/UBERON_0000355,pharyngeal mucosa,pharynx mucosa +http://purl.obolibrary.org/obo/UBERON_0000355,pharyngeal mucosa,pharynx mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0000355,pharyngeal mucosa,pharynx mucous membrane +http://purl.obolibrary.org/obo/UBERON_0000355,pharyngeal mucosa,pharynx organ mucosa +http://purl.obolibrary.org/obo/UBERON_0000355,pharyngeal mucosa,tunica mucosa pharyngea +http://purl.obolibrary.org/obo/UBERON_0000355,pharyngeal mucosa,tunica mucosa pharyngis +http://purl.obolibrary.org/obo/UBERON_0000358,blastocyst, +http://purl.obolibrary.org/obo/UBERON_0000359,preputial gland,glandulae preputiales +http://purl.obolibrary.org/obo/UBERON_0000359,preputial gland,preputial glands +http://purl.obolibrary.org/obo/UBERON_0000359,preputial gland,preputial glands set +http://purl.obolibrary.org/obo/UBERON_0000361,red bone marrow,medulla ossium rubra +http://purl.obolibrary.org/obo/UBERON_0000361,red bone marrow,parenchymal red marrow +http://purl.obolibrary.org/obo/UBERON_0000361,red bone marrow,red marrow +http://purl.obolibrary.org/obo/UBERON_0000362,renal medulla,kidney medulla +http://purl.obolibrary.org/obo/UBERON_0000362,renal medulla,medulla of kidney +http://purl.obolibrary.org/obo/UBERON_0000362,renal medulla,medulla renalis +http://purl.obolibrary.org/obo/UBERON_0000362,renal medulla,pyramides renales +http://purl.obolibrary.org/obo/UBERON_0000362,renal medulla,renal medullae +http://purl.obolibrary.org/obo/UBERON_0000362,renal medulla,renal medullae set +http://purl.obolibrary.org/obo/UBERON_0000362,renal medulla,renal pyramids +http://purl.obolibrary.org/obo/UBERON_0000362,renal medulla,renal pyramids set +http://purl.obolibrary.org/obo/UBERON_0000363,reticuloendothelial system,RES +http://purl.obolibrary.org/obo/UBERON_0000363,reticuloendothelial system,lymphoreticular system +http://purl.obolibrary.org/obo/UBERON_0000363,reticuloendothelial system,mononuclear phagocyte system +http://purl.obolibrary.org/obo/UBERON_0000363,reticuloendothelial system,reticuloendothelial system +http://purl.obolibrary.org/obo/UBERON_0000365,urothelium,epithelium transitionale +http://purl.obolibrary.org/obo/UBERON_0000365,urothelium,transitional epithelium +http://purl.obolibrary.org/obo/UBERON_0000365,urothelium,uroepithelium +http://purl.obolibrary.org/obo/UBERON_0000366,flexor muscle, +http://purl.obolibrary.org/obo/UBERON_0000368,adductor brevis,adductor brevis muscle +http://purl.obolibrary.org/obo/UBERON_0000368,adductor brevis,musculus adductos brevis +http://purl.obolibrary.org/obo/UBERON_0000369,corpus striatum,striate body +http://purl.obolibrary.org/obo/UBERON_0000369,corpus striatum,striated body +http://purl.obolibrary.org/obo/UBERON_0000370,adductor magnus,adductor magnus muscle +http://purl.obolibrary.org/obo/UBERON_0000371,syncytiotrophoblast,syncytial trophoblast +http://purl.obolibrary.org/obo/UBERON_0000371,syncytiotrophoblast,syntrophoblast layer +http://purl.obolibrary.org/obo/UBERON_0000372,extensor digitorum brevis pes,extensor digitorum brevis +http://purl.obolibrary.org/obo/UBERON_0000372,extensor digitorum brevis pes,extensor digitorum brevis muscle +http://purl.obolibrary.org/obo/UBERON_0000373,tapetum of corpus callosum, +http://purl.obolibrary.org/obo/UBERON_0000375,mandibular nerve,inferior maxillary nerve +http://purl.obolibrary.org/obo/UBERON_0000375,mandibular nerve,mandibular division [V3] +http://purl.obolibrary.org/obo/UBERON_0000375,mandibular nerve,mandibular division [Vc] +http://purl.obolibrary.org/obo/UBERON_0000375,mandibular nerve,mandibular division of fifth cranial nerve +http://purl.obolibrary.org/obo/UBERON_0000375,mandibular nerve,mandibular division of trigeminal nerve [Vc; V3] +http://purl.obolibrary.org/obo/UBERON_0000375,mandibular nerve,mandibular nerve [V3] +http://purl.obolibrary.org/obo/UBERON_0000375,mandibular nerve,mandibular nerve [Vc] +http://purl.obolibrary.org/obo/UBERON_0000375,mandibular nerve,n. mandibularis +http://purl.obolibrary.org/obo/UBERON_0000375,mandibular nerve,nervus mandibularis +http://purl.obolibrary.org/obo/UBERON_0000375,mandibular nerve,nervus mandibularis [Vc; V3] +http://purl.obolibrary.org/obo/UBERON_0000375,mandibular nerve,nervus mandibularis [v3] +http://purl.obolibrary.org/obo/UBERON_0000375,mandibular nerve,nervus mandibularis [vc] +http://purl.obolibrary.org/obo/UBERON_0000375,mandibular nerve,ramus mandibularis (ramus V3) +http://purl.obolibrary.org/obo/UBERON_0000375,mandibular nerve,third division of fifth cranial nerve +http://purl.obolibrary.org/obo/UBERON_0000375,mandibular nerve,third division of trigeminal nerve +http://purl.obolibrary.org/obo/UBERON_0000375,mandibular nerve,trigeminal V nerve mandibular division +http://purl.obolibrary.org/obo/UBERON_0000375,mandibular nerve,trigeminal nerve mandibular division +http://purl.obolibrary.org/obo/UBERON_0000376,hindlimb stylopod,hind limb stylopod +http://purl.obolibrary.org/obo/UBERON_0000376,hindlimb stylopod,hind limb stylopodium +http://purl.obolibrary.org/obo/UBERON_0000376,hindlimb stylopod,hind propodium +http://purl.obolibrary.org/obo/UBERON_0000376,hindlimb stylopod,hindlimb propodium +http://purl.obolibrary.org/obo/UBERON_0000376,hindlimb stylopod,hindlimb stylopod +http://purl.obolibrary.org/obo/UBERON_0000376,hindlimb stylopod,hindlimb stylopodium +http://purl.obolibrary.org/obo/UBERON_0000376,hindlimb stylopod,proximal segment of free lower limb +http://purl.obolibrary.org/obo/UBERON_0000376,hindlimb stylopod,stylopod of hind limb +http://purl.obolibrary.org/obo/UBERON_0000376,hindlimb stylopod,stylopod of hindlimb +http://purl.obolibrary.org/obo/UBERON_0000376,hindlimb stylopod,stylopod of lower limb +http://purl.obolibrary.org/obo/UBERON_0000376,hindlimb stylopod,thigh +http://purl.obolibrary.org/obo/UBERON_0000376,hindlimb stylopod,upper leg +http://purl.obolibrary.org/obo/UBERON_0000377,maxillary nerve,maxillary division [V2] +http://purl.obolibrary.org/obo/UBERON_0000377,maxillary nerve,maxillary division [Vb] +http://purl.obolibrary.org/obo/UBERON_0000377,maxillary nerve,maxillary division of fifth cranial nerve +http://purl.obolibrary.org/obo/UBERON_0000377,maxillary nerve,maxillary division of trigeminal nerve (Vb; V2) +http://purl.obolibrary.org/obo/UBERON_0000377,maxillary nerve,maxillary nerve [V2] +http://purl.obolibrary.org/obo/UBERON_0000377,maxillary nerve,maxillary nerve [Vb] +http://purl.obolibrary.org/obo/UBERON_0000377,maxillary nerve,n. maxillaris +http://purl.obolibrary.org/obo/UBERON_0000377,maxillary nerve,nervus maxillaris +http://purl.obolibrary.org/obo/UBERON_0000377,maxillary nerve,nervus maxillaris (Vb; V2) +http://purl.obolibrary.org/obo/UBERON_0000377,maxillary nerve,nervus maxillaris [v2] +http://purl.obolibrary.org/obo/UBERON_0000377,maxillary nerve,nervus maxillaris [vb] +http://purl.obolibrary.org/obo/UBERON_0000377,maxillary nerve,ramus maxillaris (ramus V2) +http://purl.obolibrary.org/obo/UBERON_0000377,maxillary nerve,second division of fifth cranial nerve +http://purl.obolibrary.org/obo/UBERON_0000377,maxillary nerve,second division of trigeminal nerve +http://purl.obolibrary.org/obo/UBERON_0000377,maxillary nerve,trigeminal V nerve maxillary division +http://purl.obolibrary.org/obo/UBERON_0000377,maxillary nerve,trigeminal nerve maxillary division +http://purl.obolibrary.org/obo/UBERON_0000378,tongue muscle,muscle of tongue +http://purl.obolibrary.org/obo/UBERON_0000378,tongue muscle,muscle organ of tongue +http://purl.obolibrary.org/obo/UBERON_0000378,tongue muscle,skeletal muscle tissue of tongue +http://purl.obolibrary.org/obo/UBERON_0000378,tongue muscle,tongue skeletal muscle +http://purl.obolibrary.org/obo/UBERON_0000378,tongue muscle,tongue skeletal muscle tissue +http://purl.obolibrary.org/obo/UBERON_0000379,tracheal mucosa,mucosa of organ of trachea +http://purl.obolibrary.org/obo/UBERON_0000379,tracheal mucosa,mucosa of organ of windpipe +http://purl.obolibrary.org/obo/UBERON_0000379,tracheal mucosa,mucosa of trachea +http://purl.obolibrary.org/obo/UBERON_0000379,tracheal mucosa,mucosa of windpipe +http://purl.obolibrary.org/obo/UBERON_0000379,tracheal mucosa,mucous membrane of trachea +http://purl.obolibrary.org/obo/UBERON_0000379,tracheal mucosa,mucous membrane of windpipe +http://purl.obolibrary.org/obo/UBERON_0000379,tracheal mucosa,organ mucosa of trachea +http://purl.obolibrary.org/obo/UBERON_0000379,tracheal mucosa,organ mucosa of windpipe +http://purl.obolibrary.org/obo/UBERON_0000379,tracheal mucosa,trachea mucosa +http://purl.obolibrary.org/obo/UBERON_0000379,tracheal mucosa,trachea mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0000379,tracheal mucosa,trachea mucous membrane +http://purl.obolibrary.org/obo/UBERON_0000379,tracheal mucosa,trachea organ mucosa +http://purl.obolibrary.org/obo/UBERON_0000379,tracheal mucosa,tracheal mucous membrane +http://purl.obolibrary.org/obo/UBERON_0000379,tracheal mucosa,tunica mucosa (tracheae) +http://purl.obolibrary.org/obo/UBERON_0000379,tracheal mucosa,tunica mucosa tracheae +http://purl.obolibrary.org/obo/UBERON_0000379,tracheal mucosa,windpipe mucosa +http://purl.obolibrary.org/obo/UBERON_0000379,tracheal mucosa,windpipe mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0000379,tracheal mucosa,windpipe mucous membrane +http://purl.obolibrary.org/obo/UBERON_0000379,tracheal mucosa,windpipe organ mucosa +http://purl.obolibrary.org/obo/UBERON_0000381,urinary bladder detrusor smooth muscle,detrusor +http://purl.obolibrary.org/obo/UBERON_0000381,urinary bladder detrusor smooth muscle,detrusor muscle +http://purl.obolibrary.org/obo/UBERON_0000381,urinary bladder detrusor smooth muscle,detrusor muscle of bladder +http://purl.obolibrary.org/obo/UBERON_0000381,urinary bladder detrusor smooth muscle,detrusor smooth muscle +http://purl.obolibrary.org/obo/UBERON_0000381,urinary bladder detrusor smooth muscle,detrusor urinae muscle +http://purl.obolibrary.org/obo/UBERON_0000381,urinary bladder detrusor smooth muscle,muscularis propria of the urinary bladder +http://purl.obolibrary.org/obo/UBERON_0000381,urinary bladder detrusor smooth muscle,musculus detrusor vesicae +http://purl.obolibrary.org/obo/UBERON_0000381,urinary bladder detrusor smooth muscle,urinary bladder detrusor muscle +http://purl.obolibrary.org/obo/UBERON_0000381,urinary bladder detrusor smooth muscle,urinary bladder detrussor smooth muscle +http://purl.obolibrary.org/obo/UBERON_0000382,apocrine sweat gland,glandula sudorifera apocrina +http://purl.obolibrary.org/obo/UBERON_0000383,musculature of body,muscle system +http://purl.obolibrary.org/obo/UBERON_0000383,musculature of body,muscle system of body +http://purl.obolibrary.org/obo/UBERON_0000383,musculature of body,muscular system +http://purl.obolibrary.org/obo/UBERON_0000383,musculature of body,musculature system +http://purl.obolibrary.org/obo/UBERON_0000383,musculature of body,muskelsystem +http://purl.obolibrary.org/obo/UBERON_0000383,musculature of body,set of all muscles +http://purl.obolibrary.org/obo/UBERON_0000383,musculature of body,set of muscles of body +http://purl.obolibrary.org/obo/UBERON_0000383,musculature of body,vertebrate muscular system +http://purl.obolibrary.org/obo/UBERON_0000387,meniscus,articular disc +http://purl.obolibrary.org/obo/UBERON_0000388,epiglottis, +http://purl.obolibrary.org/obo/UBERON_0000389,lens cortex,cortex of lens +http://purl.obolibrary.org/obo/UBERON_0000390,lens nucleus,nucleus of lens +http://purl.obolibrary.org/obo/UBERON_0000391,leptomeninx,leptomeninges +http://purl.obolibrary.org/obo/UBERON_0000392,longissimus muscle,longissimus +http://purl.obolibrary.org/obo/UBERON_0000392,longissimus muscle,musculus longissimus +http://purl.obolibrary.org/obo/UBERON_0000395,cochlear ganglion,Corti's ganglion +http://purl.obolibrary.org/obo/UBERON_0000395,cochlear ganglion,cochlear part of vestibulocochlear ganglion +http://purl.obolibrary.org/obo/UBERON_0000395,cochlear ganglion,ganglion of Corti +http://purl.obolibrary.org/obo/UBERON_0000395,cochlear ganglion,spiral ganglion +http://purl.obolibrary.org/obo/UBERON_0000395,cochlear ganglion,vestibulocochlear VIII ganglion cochlear component +http://purl.obolibrary.org/obo/UBERON_0000396,vallate papilla,circumvallate papilla +http://purl.obolibrary.org/obo/UBERON_0000396,vallate papilla,circumvallate papilla of tongue +http://purl.obolibrary.org/obo/UBERON_0000396,vallate papilla,papilla vallatae +http://purl.obolibrary.org/obo/UBERON_0000396,vallate papilla,vallate papilla of tongue +http://purl.obolibrary.org/obo/UBERON_0000397,colonic epithelium,colon epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0000397,colonic epithelium,colon epithelium +http://purl.obolibrary.org/obo/UBERON_0000397,colonic epithelium,epithelial tissue of colon +http://purl.obolibrary.org/obo/UBERON_0000397,colonic epithelium,epithelial tissue of large bowel +http://purl.obolibrary.org/obo/UBERON_0000397,colonic epithelium,epithelium of colon +http://purl.obolibrary.org/obo/UBERON_0000397,colonic epithelium,epithelium of large bowel +http://purl.obolibrary.org/obo/UBERON_0000397,colonic epithelium,large bowel epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0000397,colonic epithelium,large bowel epithelium +http://purl.obolibrary.org/obo/UBERON_0000397,colonic epithelium,posterior intestine epithelium +http://purl.obolibrary.org/obo/UBERON_0000398,cartilage tissue of sternum,cartilage of sternum +http://purl.obolibrary.org/obo/UBERON_0000399,jejunal mucosa,jejunal mucous membrane +http://purl.obolibrary.org/obo/UBERON_0000399,jejunal mucosa,jejunum mucosa +http://purl.obolibrary.org/obo/UBERON_0000399,jejunal mucosa,jejunum mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0000399,jejunal mucosa,jejunum mucous membrane +http://purl.obolibrary.org/obo/UBERON_0000399,jejunal mucosa,jejunum organ mucosa +http://purl.obolibrary.org/obo/UBERON_0000399,jejunal mucosa,mucosa of jejunum +http://purl.obolibrary.org/obo/UBERON_0000399,jejunal mucosa,mucosa of organ of jejunum +http://purl.obolibrary.org/obo/UBERON_0000399,jejunal mucosa,mucous membrane of jejunum +http://purl.obolibrary.org/obo/UBERON_0000399,jejunal mucosa,organ mucosa of jejunum +http://purl.obolibrary.org/obo/UBERON_0000400,jejunal epithelium,epithelium of jejunum +http://purl.obolibrary.org/obo/UBERON_0000401,mandibular ramus,mandible ramus +http://purl.obolibrary.org/obo/UBERON_0000401,mandibular ramus,ramus of mandible +http://purl.obolibrary.org/obo/UBERON_0000402,nasal vestibule,vestibular part of nasal cavity +http://purl.obolibrary.org/obo/UBERON_0000403,scalp,scalpus +http://purl.obolibrary.org/obo/UBERON_0000407,sympathetic trunk,gangliated cord +http://purl.obolibrary.org/obo/UBERON_0000407,sympathetic trunk,sympathetic chain +http://purl.obolibrary.org/obo/UBERON_0000407,sympathetic trunk,sympathetic ganglionic chain +http://purl.obolibrary.org/obo/UBERON_0000407,sympathetic trunk,truncus sympathicus +http://purl.obolibrary.org/obo/UBERON_0000408,vertebral ganglion,intermediate ganglion +http://purl.obolibrary.org/obo/UBERON_0000409,serous gland, +http://purl.obolibrary.org/obo/UBERON_0000410,bronchial mucosa,bronchi mucosa +http://purl.obolibrary.org/obo/UBERON_0000410,bronchial mucosa,bronchi mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0000410,bronchial mucosa,bronchi mucous membrane +http://purl.obolibrary.org/obo/UBERON_0000410,bronchial mucosa,bronchi organ mucosa +http://purl.obolibrary.org/obo/UBERON_0000410,bronchial mucosa,bronchial trunk mucosa +http://purl.obolibrary.org/obo/UBERON_0000410,bronchial mucosa,bronchial trunk mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0000410,bronchial mucosa,bronchial trunk mucous membrane +http://purl.obolibrary.org/obo/UBERON_0000410,bronchial mucosa,bronchial trunk organ mucosa +http://purl.obolibrary.org/obo/UBERON_0000410,bronchial mucosa,bronchus mucosa +http://purl.obolibrary.org/obo/UBERON_0000410,bronchial mucosa,bronchus mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0000410,bronchial mucosa,bronchus mucous membrane +http://purl.obolibrary.org/obo/UBERON_0000410,bronchial mucosa,bronchus organ mucosa +http://purl.obolibrary.org/obo/UBERON_0000410,bronchial mucosa,mucosa of bronchi +http://purl.obolibrary.org/obo/UBERON_0000410,bronchial mucosa,mucosa of bronchial trunk +http://purl.obolibrary.org/obo/UBERON_0000410,bronchial mucosa,mucosa of bronchus +http://purl.obolibrary.org/obo/UBERON_0000410,bronchial mucosa,mucosa of organ of bronchi +http://purl.obolibrary.org/obo/UBERON_0000410,bronchial mucosa,mucosa of organ of bronchial trunk +http://purl.obolibrary.org/obo/UBERON_0000410,bronchial mucosa,mucosa of organ of bronchus +http://purl.obolibrary.org/obo/UBERON_0000410,bronchial mucosa,mucous membrane of bronchi +http://purl.obolibrary.org/obo/UBERON_0000410,bronchial mucosa,mucous membrane of bronchial trunk +http://purl.obolibrary.org/obo/UBERON_0000410,bronchial mucosa,mucous membrane of bronchus +http://purl.obolibrary.org/obo/UBERON_0000410,bronchial mucosa,organ mucosa of bronchi +http://purl.obolibrary.org/obo/UBERON_0000410,bronchial mucosa,organ mucosa of bronchial trunk +http://purl.obolibrary.org/obo/UBERON_0000410,bronchial mucosa,organ mucosa of bronchus +http://purl.obolibrary.org/obo/UBERON_0000410,bronchial mucosa,tunica mucosa bronchi +http://purl.obolibrary.org/obo/UBERON_0000411,visual cortex, +http://purl.obolibrary.org/obo/UBERON_0000412,dermal papilla,dermal papillae +http://purl.obolibrary.org/obo/UBERON_0000412,dermal papilla,follicular papilla +http://purl.obolibrary.org/obo/UBERON_0000414,mucous gland,glandula mucosa +http://purl.obolibrary.org/obo/UBERON_0000414,mucous gland,muciparous gland +http://purl.obolibrary.org/obo/UBERON_0000414,mucous gland,mucous secreting gland +http://purl.obolibrary.org/obo/UBERON_0000414,mucous gland,mucus gland +http://purl.obolibrary.org/obo/UBERON_0000414,mucous gland,mucus-secreting gland +http://purl.obolibrary.org/obo/UBERON_0000415,artery wall,arterial wall +http://purl.obolibrary.org/obo/UBERON_0000415,artery wall,wall of artery +http://purl.obolibrary.org/obo/UBERON_0000416,subdural space, +http://purl.obolibrary.org/obo/UBERON_0000420,myoepithelium,myo-epithelium +http://purl.obolibrary.org/obo/UBERON_0000423,eccrine sweat gland,glandula sudorifera eccrina +http://purl.obolibrary.org/obo/UBERON_0000423,eccrine sweat gland,glandula sudorifera merocrina +http://purl.obolibrary.org/obo/UBERON_0000424,gastric pit,foveolae gastricae +http://purl.obolibrary.org/obo/UBERON_0000424,gastric pit,gastric foveola +http://purl.obolibrary.org/obo/UBERON_0000426,extravillous trophoblast,intermediate trophoblast +http://purl.obolibrary.org/obo/UBERON_0000428,prostate epithelium,epithelial tissue of prostate +http://purl.obolibrary.org/obo/UBERON_0000428,prostate epithelium,epithelial tissue of prostate gland +http://purl.obolibrary.org/obo/UBERON_0000428,prostate epithelium,epithelium of prostate +http://purl.obolibrary.org/obo/UBERON_0000428,prostate epithelium,epithelium of prostate gland +http://purl.obolibrary.org/obo/UBERON_0000428,prostate epithelium,epithelium of prostatic gland +http://purl.obolibrary.org/obo/UBERON_0000428,prostate epithelium,prostate epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0000428,prostate epithelium,prostate gland epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0000428,prostate epithelium,prostate gland epithelium +http://purl.obolibrary.org/obo/UBERON_0000428,prostate epithelium,prostatic epithelium +http://purl.obolibrary.org/obo/UBERON_0000428,prostate epithelium,prostatic gland epithelium +http://purl.obolibrary.org/obo/UBERON_0000429,enteric plexus,enteric nerve plexus +http://purl.obolibrary.org/obo/UBERON_0000429,enteric plexus,intrinsic nerve plexus +http://purl.obolibrary.org/obo/UBERON_0000429,enteric plexus,plexus entericus +http://purl.obolibrary.org/obo/UBERON_0000429,enteric plexus,plexus nervosus entericus +http://purl.obolibrary.org/obo/UBERON_0000429,enteric plexus,sympathetic enteric nerve plexus +http://purl.obolibrary.org/obo/UBERON_0000430,ventral intermediate nucleus of thalamus, +http://purl.obolibrary.org/obo/UBERON_0000431,ventral medial complex of thalamus,ventral medial complex of thalamus +http://purl.obolibrary.org/obo/UBERON_0000431,ventral medial complex of thalamus,ventral medial nuclei of thalamus +http://purl.obolibrary.org/obo/UBERON_0000432,endopeduncular nucleus, +http://purl.obolibrary.org/obo/UBERON_0000433,posterior paraventricular nucleus of thalamus,dorsal paraventricular nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0000434,anterior paraventricular nucleus of thalamus,anterior paraventricular nucleus +http://purl.obolibrary.org/obo/UBERON_0000434,anterior paraventricular nucleus of thalamus,ventral paraventricular nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0000435,lateral tuberal nucleus,lateral tuberal hypothalamic nuclei +http://purl.obolibrary.org/obo/UBERON_0000435,lateral tuberal nucleus,lateral tuberal nuclear complex +http://purl.obolibrary.org/obo/UBERON_0000435,lateral tuberal nucleus,lateral tuberal nuclei +http://purl.obolibrary.org/obo/UBERON_0000437,arachnoid barrier layer, +http://purl.obolibrary.org/obo/UBERON_0000439,arachnoid trabecula, +http://purl.obolibrary.org/obo/UBERON_0000440,trabecula,trabeculae +http://purl.obolibrary.org/obo/UBERON_0000442,right testicular vein,right spermatic vein +http://purl.obolibrary.org/obo/UBERON_0000442,right testicular vein,vena testicularis (adrenalis) dextra +http://purl.obolibrary.org/obo/UBERON_0000443,left testicular vein,left spermatic vein +http://purl.obolibrary.org/obo/UBERON_0000444,lymphoid follicle,nodular lymphoid tissue +http://purl.obolibrary.org/obo/UBERON_0000445,habenular trigone, +http://purl.obolibrary.org/obo/UBERON_0000446,septum of telencephalon,Se +http://purl.obolibrary.org/obo/UBERON_0000446,septum of telencephalon,area septalis +http://purl.obolibrary.org/obo/UBERON_0000446,septum of telencephalon,massa praecommissuralis +http://purl.obolibrary.org/obo/UBERON_0000446,septum of telencephalon,septal area +http://purl.obolibrary.org/obo/UBERON_0000446,septum of telencephalon,septal region +http://purl.obolibrary.org/obo/UBERON_0000446,septum of telencephalon,septum +http://purl.obolibrary.org/obo/UBERON_0000446,septum of telencephalon,septum (NN) +http://purl.obolibrary.org/obo/UBERON_0000446,septum of telencephalon,"septum pellucidum (BNA,PNA)" +http://purl.obolibrary.org/obo/UBERON_0000446,septum of telencephalon,septum telencephali +http://purl.obolibrary.org/obo/UBERON_0000446,septum of telencephalon,telencephalon septum +http://purl.obolibrary.org/obo/UBERON_0000450,corpus albicans,corpus albicans of ovary +http://purl.obolibrary.org/obo/UBERON_0000451,prefrontal cortex,prefrontal association cortex +http://purl.obolibrary.org/obo/UBERON_0000453,decidua basalis, +http://purl.obolibrary.org/obo/UBERON_0000454,cerebral subcortex,cerebral medulla +http://purl.obolibrary.org/obo/UBERON_0000454,cerebral subcortex,subcortex +http://purl.obolibrary.org/obo/UBERON_0000456,secretion of exocrine gland,bodily secretion +http://purl.obolibrary.org/obo/UBERON_0000456,secretion of exocrine gland,exocrine gland fluid/secretion +http://purl.obolibrary.org/obo/UBERON_0000456,secretion of exocrine gland,secreted substance +http://purl.obolibrary.org/obo/UBERON_0000457,cavernous artery,cavernous branch of cavernous part of internal carotid artery +http://purl.obolibrary.org/obo/UBERON_0000457,cavernous artery,ramus sinus cavernosi (pars cavernosa) (arteria carotis interna) +http://purl.obolibrary.org/obo/UBERON_0000458,endocervix, +http://purl.obolibrary.org/obo/UBERON_0000459,uterine wall,anatomical wall of uterus +http://purl.obolibrary.org/obo/UBERON_0000459,uterine wall,uterus anatomical wall +http://purl.obolibrary.org/obo/UBERON_0000459,uterine wall,uterus wall +http://purl.obolibrary.org/obo/UBERON_0000459,uterine wall,wall of uterus +http://purl.obolibrary.org/obo/UBERON_0000460,major vestibular gland,Bartholin gland +http://purl.obolibrary.org/obo/UBERON_0000460,major vestibular gland,Bartholin's gland +http://purl.obolibrary.org/obo/UBERON_0000460,major vestibular gland,Tiedemann's gland +http://purl.obolibrary.org/obo/UBERON_0000460,major vestibular gland,vulvovaginal gland +http://purl.obolibrary.org/obo/UBERON_0000461,minor vestibular gland,glandula vestibular minor +http://purl.obolibrary.org/obo/UBERON_0000461,minor vestibular gland,lesser vestibular gland +http://purl.obolibrary.org/obo/UBERON_0000463,organism substance,body fluid or substance +http://purl.obolibrary.org/obo/UBERON_0000463,organism substance,body substance +http://purl.obolibrary.org/obo/UBERON_0000463,organism substance,organism substance +http://purl.obolibrary.org/obo/UBERON_0000463,organism substance,portion of body substance +http://purl.obolibrary.org/obo/UBERON_0000463,organism substance,portion of organism substance +http://purl.obolibrary.org/obo/UBERON_0000464,anatomical space,lumen space +http://purl.obolibrary.org/obo/UBERON_0000465,material anatomical entity, +http://purl.obolibrary.org/obo/UBERON_0000466,immaterial anatomical entity,immaterial physical anatomical entity +http://purl.obolibrary.org/obo/UBERON_0000467,anatomical system,anatomical systems +http://purl.obolibrary.org/obo/UBERON_0000467,anatomical system,body system +http://purl.obolibrary.org/obo/UBERON_0000467,anatomical system,connected anatomical system +http://purl.obolibrary.org/obo/UBERON_0000467,anatomical system,organ system +http://purl.obolibrary.org/obo/UBERON_0000467,anatomical system,system +http://purl.obolibrary.org/obo/UBERON_0000468,multicellular organism,Koerper +http://purl.obolibrary.org/obo/UBERON_0000468,multicellular organism,animal +http://purl.obolibrary.org/obo/UBERON_0000468,multicellular organism,body +http://purl.obolibrary.org/obo/UBERON_0000468,multicellular organism,multi-cellular organism +http://purl.obolibrary.org/obo/UBERON_0000468,multicellular organism,organism +http://purl.obolibrary.org/obo/UBERON_0000468,multicellular organism,whole body +http://purl.obolibrary.org/obo/UBERON_0000468,multicellular organism,whole organism +http://purl.obolibrary.org/obo/UBERON_0000471,compound organ component,compound organ components +http://purl.obolibrary.org/obo/UBERON_0000472,simple organ, +http://purl.obolibrary.org/obo/UBERON_0000473,testis,gonad of male genitalia +http://purl.obolibrary.org/obo/UBERON_0000473,testis,gonad of male reproductive system +http://purl.obolibrary.org/obo/UBERON_0000473,testis,male gonad +http://purl.obolibrary.org/obo/UBERON_0000473,testis,orchis +http://purl.obolibrary.org/obo/UBERON_0000473,testis,testes +http://purl.obolibrary.org/obo/UBERON_0000473,testis,testicle +http://purl.obolibrary.org/obo/UBERON_0000473,testis,testiculus +http://purl.obolibrary.org/obo/UBERON_0000474,female reproductive system,female genital system +http://purl.obolibrary.org/obo/UBERON_0000474,female reproductive system,female genital tract +http://purl.obolibrary.org/obo/UBERON_0000474,female reproductive system,female genitalia +http://purl.obolibrary.org/obo/UBERON_0000474,female reproductive system,female genitals +http://purl.obolibrary.org/obo/UBERON_0000474,female reproductive system,female organism genitalia +http://purl.obolibrary.org/obo/UBERON_0000474,female reproductive system,female organism reproductive system +http://purl.obolibrary.org/obo/UBERON_0000474,female reproductive system,female reproductive tract +http://purl.obolibrary.org/obo/UBERON_0000474,female reproductive system,genitalia of female organism +http://purl.obolibrary.org/obo/UBERON_0000474,female reproductive system,gynaecological tissue +http://purl.obolibrary.org/obo/UBERON_0000474,female reproductive system,reproductive system of female organism +http://purl.obolibrary.org/obo/UBERON_0000474,female reproductive system,systema genitale femininum +http://purl.obolibrary.org/obo/UBERON_0000475,organism subdivision,anatomic region +http://purl.obolibrary.org/obo/UBERON_0000475,organism subdivision,body part +http://purl.obolibrary.org/obo/UBERON_0000475,organism subdivision,body region +http://purl.obolibrary.org/obo/UBERON_0000475,organism subdivision,cardinal body part +http://purl.obolibrary.org/obo/UBERON_0000476,acellular anatomical structure,acellular anatomical structures +http://purl.obolibrary.org/obo/UBERON_0000477,anatomical cluster, +http://purl.obolibrary.org/obo/UBERON_0000478,extraembryonic structure,extra-embryonic structure +http://purl.obolibrary.org/obo/UBERON_0000479,tissue,portion of tissue +http://purl.obolibrary.org/obo/UBERON_0000479,tissue,simple tissue +http://purl.obolibrary.org/obo/UBERON_0000479,tissue,tissue portion +http://purl.obolibrary.org/obo/UBERON_0000480,anatomical group, +http://purl.obolibrary.org/obo/UBERON_0000481,multi-tissue structure,multi-tissue structures +http://purl.obolibrary.org/obo/UBERON_0000482,basal lamina of epithelium,basal lamina of connective tissue +http://purl.obolibrary.org/obo/UBERON_0000483,epithelium,epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0000483,epithelium,portion of epithelium +http://purl.obolibrary.org/obo/UBERON_0000484,simple cuboidal epithelium,epithelium simplex cuboideum +http://purl.obolibrary.org/obo/UBERON_0000485,simple columnar epithelium,columnar epithelium +http://purl.obolibrary.org/obo/UBERON_0000485,simple columnar epithelium,columnar epithlium +http://purl.obolibrary.org/obo/UBERON_0000485,simple columnar epithelium,epithelium simplex columnare +http://purl.obolibrary.org/obo/UBERON_0000485,simple columnar epithelium,simple columnar epithelia +http://purl.obolibrary.org/obo/UBERON_0000485,simple columnar epithelium,simple columnar epithelium +http://purl.obolibrary.org/obo/UBERON_0000486,multilaminar epithelium,stratified epithelium +http://purl.obolibrary.org/obo/UBERON_0000487,simple squamous epithelium,epithelium simplex squamosum +http://purl.obolibrary.org/obo/UBERON_0000488,atypical epithelium,atypical epithelia +http://purl.obolibrary.org/obo/UBERON_0000488,atypical epithelium,heterogenous epithelium +http://purl.obolibrary.org/obo/UBERON_0000489,cavitated compound organ,cavitated compound organs +http://purl.obolibrary.org/obo/UBERON_0000489,cavitated compound organ,cavitated organ +http://purl.obolibrary.org/obo/UBERON_0000490,unilaminar epithelium,simple epithelium +http://purl.obolibrary.org/obo/UBERON_0000490,unilaminar epithelium,unilaminar epithelia +http://purl.obolibrary.org/obo/UBERON_0000491,solid compound organ, +http://purl.obolibrary.org/obo/UBERON_0000569,ileocecal valve,valva ileocaecalis (valva ilealis) +http://purl.obolibrary.org/obo/UBERON_0000642,suspensory ligament of duodenum,ligament of Treitz +http://purl.obolibrary.org/obo/UBERON_0000642,suspensory ligament of duodenum,muscle of Treitz +http://purl.obolibrary.org/obo/UBERON_0000642,suspensory ligament of duodenum,musculus suspensorius duodeni +http://purl.obolibrary.org/obo/UBERON_0000642,suspensory ligament of duodenum,suspensory muscle of duodenum +http://purl.obolibrary.org/obo/UBERON_0000711,splenius capitis,splenius capitis muscle +http://purl.obolibrary.org/obo/UBERON_0000908,hippocampal commissure,commissura hippocampi +http://purl.obolibrary.org/obo/UBERON_0000908,hippocampal commissure,commissure of fornix of forebrain +http://purl.obolibrary.org/obo/UBERON_0000908,hippocampal commissure,delta fornicis +http://purl.obolibrary.org/obo/UBERON_0000908,hippocampal commissure,dorsal hippocampal commissure +http://purl.obolibrary.org/obo/UBERON_0000908,hippocampal commissure,fornical commissure +http://purl.obolibrary.org/obo/UBERON_0000908,hippocampal commissure,fornix commissure +http://purl.obolibrary.org/obo/UBERON_0000908,hippocampal commissure,hippocampus commissure +http://purl.obolibrary.org/obo/UBERON_0000910,chyme,chymus +http://purl.obolibrary.org/obo/UBERON_0000911,chyle, +http://purl.obolibrary.org/obo/UBERON_0000912,mucus, +http://purl.obolibrary.org/obo/UBERON_0000913,interstitial fluid,intercellular fluid +http://purl.obolibrary.org/obo/UBERON_0000913,interstitial fluid,tissue fluid +http://purl.obolibrary.org/obo/UBERON_0000914,organismal segment,segment +http://purl.obolibrary.org/obo/UBERON_0000914,organismal segment,serial element +http://purl.obolibrary.org/obo/UBERON_0000915,thoracic segment of trunk,anterior subdivision of trunk +http://purl.obolibrary.org/obo/UBERON_0000915,thoracic segment of trunk,thorax +http://purl.obolibrary.org/obo/UBERON_0000915,thoracic segment of trunk,upper body +http://purl.obolibrary.org/obo/UBERON_0000915,thoracic segment of trunk,upper trunk +http://purl.obolibrary.org/obo/UBERON_0000916,abdomen,abdominopelvic region +http://purl.obolibrary.org/obo/UBERON_0000916,abdomen,abdominopelvis +http://purl.obolibrary.org/obo/UBERON_0000916,abdomen,adult abdomen +http://purl.obolibrary.org/obo/UBERON_0000916,abdomen,belly +http://purl.obolibrary.org/obo/UBERON_0000916,abdomen,celiac region +http://purl.obolibrary.org/obo/UBERON_0000920,egg chorion,chorion (egg) +http://purl.obolibrary.org/obo/UBERON_0000922,embryo,developing organism +http://purl.obolibrary.org/obo/UBERON_0000922,embryo,developmental tissue +http://purl.obolibrary.org/obo/UBERON_0000922,embryo,embryonic organism +http://purl.obolibrary.org/obo/UBERON_0000923,germ layer,germinal layer +http://purl.obolibrary.org/obo/UBERON_0000924,ectoderm,embryonic ectoderm +http://purl.obolibrary.org/obo/UBERON_0000925,endoderm, +http://purl.obolibrary.org/obo/UBERON_0000926,mesoderm, +http://purl.obolibrary.org/obo/UBERON_0000927,mesectoderm, +http://purl.obolibrary.org/obo/UBERON_0000929,pharyngeal branch of vagus nerve,pharyngeal branch +http://purl.obolibrary.org/obo/UBERON_0000929,pharyngeal branch of vagus nerve,pharyngeal branch of inferior vagal ganglion +http://purl.obolibrary.org/obo/UBERON_0000929,pharyngeal branch of vagus nerve,pharyngeal branch of vagus +http://purl.obolibrary.org/obo/UBERON_0000929,pharyngeal branch of vagus nerve,ramus pharyngealis nervi vagalis +http://purl.obolibrary.org/obo/UBERON_0000929,pharyngeal branch of vagus nerve,ramus pharyngeus +http://purl.obolibrary.org/obo/UBERON_0000929,pharyngeal branch of vagus nerve,tenth cranial nerve pharyngeal branch +http://purl.obolibrary.org/obo/UBERON_0000929,pharyngeal branch of vagus nerve,vagal pharyngeal branch +http://purl.obolibrary.org/obo/UBERON_0000929,pharyngeal branch of vagus nerve,vagus nerve pharyngeal branch +http://purl.obolibrary.org/obo/UBERON_0000930,stomodeum,mouth primordium +http://purl.obolibrary.org/obo/UBERON_0000930,stomodeum,primitive oral cavity +http://purl.obolibrary.org/obo/UBERON_0000930,stomodeum,stomatodeum +http://purl.obolibrary.org/obo/UBERON_0000930,stomodeum,stomodaeum +http://purl.obolibrary.org/obo/UBERON_0000931,proctodeum,embryonic proctodaeum +http://purl.obolibrary.org/obo/UBERON_0000931,proctodeum,proctodaeum +http://purl.obolibrary.org/obo/UBERON_0000933,chordate pharyngeal muscle,branchial muscle +http://purl.obolibrary.org/obo/UBERON_0000933,chordate pharyngeal muscle,muscle of pharynx +http://purl.obolibrary.org/obo/UBERON_0000933,chordate pharyngeal muscle,muscle organ of pharynx +http://purl.obolibrary.org/obo/UBERON_0000933,chordate pharyngeal muscle,pharyngeal muscle +http://purl.obolibrary.org/obo/UBERON_0000933,chordate pharyngeal muscle,pharynx muscle +http://purl.obolibrary.org/obo/UBERON_0000933,chordate pharyngeal muscle,pharynx muscle organ +http://purl.obolibrary.org/obo/UBERON_0000934,ventral nerve cord,ventral cord +http://purl.obolibrary.org/obo/UBERON_0000935,anterior commissure,anterior cerebral commissure +http://purl.obolibrary.org/obo/UBERON_0000935,anterior commissure,commissura anterior cerebri +http://purl.obolibrary.org/obo/UBERON_0000935,anterior commissure,commissura rostralis +http://purl.obolibrary.org/obo/UBERON_0000936,posterior commissure,caudal commissure +http://purl.obolibrary.org/obo/UBERON_0000936,posterior commissure,epithalamic commissure +http://purl.obolibrary.org/obo/UBERON_0000939,imaginal disc, +http://purl.obolibrary.org/obo/UBERON_0000941,cranial nerve II,02 optic nerve +http://purl.obolibrary.org/obo/UBERON_0000941,cranial nerve II,cranial II +http://purl.obolibrary.org/obo/UBERON_0000941,cranial nerve II,nervus opticus +http://purl.obolibrary.org/obo/UBERON_0000941,cranial nerve II,nervus opticus [II] +http://purl.obolibrary.org/obo/UBERON_0000941,cranial nerve II,optic II +http://purl.obolibrary.org/obo/UBERON_0000941,cranial nerve II,optic II nerve +http://purl.obolibrary.org/obo/UBERON_0000941,cranial nerve II,optic nerve [II] +http://purl.obolibrary.org/obo/UBERON_0000941,cranial nerve II,second cranial nerve +http://purl.obolibrary.org/obo/UBERON_0000942,frontal nerve (branch of ophthalmic),frontal nerve +http://purl.obolibrary.org/obo/UBERON_0000942,frontal nerve (branch of ophthalmic),nervus frontalis +http://purl.obolibrary.org/obo/UBERON_0000945,stomach,anterior intestine +http://purl.obolibrary.org/obo/UBERON_0000945,stomach,gaster +http://purl.obolibrary.org/obo/UBERON_0000945,stomach,mesenteron +http://purl.obolibrary.org/obo/UBERON_0000945,stomach,stomach chamber +http://purl.obolibrary.org/obo/UBERON_0000945,stomach,ventriculus +http://purl.obolibrary.org/obo/UBERON_0000946,cardiac valve,heart valve +http://purl.obolibrary.org/obo/UBERON_0000946,cardiac valve,valve of heart +http://purl.obolibrary.org/obo/UBERON_0000947,aorta,arteria maxima +http://purl.obolibrary.org/obo/UBERON_0000947,aorta,dorsal aorta +http://purl.obolibrary.org/obo/UBERON_0000947,aorta,trunk of aortic tree +http://purl.obolibrary.org/obo/UBERON_0000947,aorta,trunk of systemic arterial tree +http://purl.obolibrary.org/obo/UBERON_0000948,heart,branchial heart +http://purl.obolibrary.org/obo/UBERON_0000948,heart,cardium +http://purl.obolibrary.org/obo/UBERON_0000948,heart,chambered heart +http://purl.obolibrary.org/obo/UBERON_0000948,heart,vertebrate heart +http://purl.obolibrary.org/obo/UBERON_0000949,endocrine system,endocrine glandular system +http://purl.obolibrary.org/obo/UBERON_0000949,endocrine system,endocrine system +http://purl.obolibrary.org/obo/UBERON_0000949,endocrine system,systema endocrinum +http://purl.obolibrary.org/obo/UBERON_0000950,gracilis,gracilis muscle +http://purl.obolibrary.org/obo/UBERON_0000950,gracilis,musculus gracilis +http://purl.obolibrary.org/obo/UBERON_0000951,rotator muscle of the vertebral column, +http://purl.obolibrary.org/obo/UBERON_0000955,brain,encephalon +http://purl.obolibrary.org/obo/UBERON_0000955,brain,suprasegmental levels of nervous system +http://purl.obolibrary.org/obo/UBERON_0000955,brain,suprasegmental structures +http://purl.obolibrary.org/obo/UBERON_0000955,brain,synganglion +http://purl.obolibrary.org/obo/UBERON_0000955,brain,the brain +http://purl.obolibrary.org/obo/UBERON_0000956,cerebral cortex,brain cortex +http://purl.obolibrary.org/obo/UBERON_0000956,cerebral cortex,cortex cerebralis +http://purl.obolibrary.org/obo/UBERON_0000956,cerebral cortex,cortex cerebri +http://purl.obolibrary.org/obo/UBERON_0000956,cerebral cortex,cortex of cerebral hemisphere +http://purl.obolibrary.org/obo/UBERON_0000956,cerebral cortex,cortical plate (CTXpl) +http://purl.obolibrary.org/obo/UBERON_0000956,cerebral cortex,cortical plate (areas) +http://purl.obolibrary.org/obo/UBERON_0000956,cerebral cortex,pallium of the brain +http://purl.obolibrary.org/obo/UBERON_0000957,lamina,laminar tissue +http://purl.obolibrary.org/obo/UBERON_0000958,medulla of organ,medulla +http://purl.obolibrary.org/obo/UBERON_0000959,optic chiasma,chiasma opticum +http://purl.obolibrary.org/obo/UBERON_0000959,optic chiasma,decussation of optic nerve fibers +http://purl.obolibrary.org/obo/UBERON_0000959,optic chiasma,optic chiasm +http://purl.obolibrary.org/obo/UBERON_0000961,thoracic ganglion,ganglion of thorax +http://purl.obolibrary.org/obo/UBERON_0000961,thoracic ganglion,ganglion thoracicum splanchnicum +http://purl.obolibrary.org/obo/UBERON_0000961,thoracic ganglion,thoracic paravertebral ganglion +http://purl.obolibrary.org/obo/UBERON_0000961,thoracic ganglion,thoracic splanchnic ganglion +http://purl.obolibrary.org/obo/UBERON_0000961,thoracic ganglion,thoracic sympathetic ganglion +http://purl.obolibrary.org/obo/UBERON_0000961,thoracic ganglion,thorax ganglion +http://purl.obolibrary.org/obo/UBERON_0000962,nerve of cervical vertebra,cervical nerve +http://purl.obolibrary.org/obo/UBERON_0000962,nerve of cervical vertebra,cervical nerve tree +http://purl.obolibrary.org/obo/UBERON_0000962,nerve of cervical vertebra,cervical spinal nerve +http://purl.obolibrary.org/obo/UBERON_0000962,nerve of cervical vertebra,nervus cervicalis +http://purl.obolibrary.org/obo/UBERON_0000963,head sensillum, +http://purl.obolibrary.org/obo/UBERON_0000964,cornea,cornea of camera-type eye +http://purl.obolibrary.org/obo/UBERON_0000965,lens of camera-type eye,camera-type eye lens +http://purl.obolibrary.org/obo/UBERON_0000965,lens of camera-type eye,eye lens +http://purl.obolibrary.org/obo/UBERON_0000965,lens of camera-type eye,lens +http://purl.obolibrary.org/obo/UBERON_0000965,lens of camera-type eye,lens crystallina +http://purl.obolibrary.org/obo/UBERON_0000966,retina,Netzhaut +http://purl.obolibrary.org/obo/UBERON_0000966,retina,inner layer of eyeball +http://purl.obolibrary.org/obo/UBERON_0000966,retina,retina of camera-type eye +http://purl.obolibrary.org/obo/UBERON_0000966,retina,retinas +http://purl.obolibrary.org/obo/UBERON_0000966,retina,tunica interna of eyeball +http://purl.obolibrary.org/obo/UBERON_0000970,eye,light-detecting organ +http://purl.obolibrary.org/obo/UBERON_0000970,eye,visual apparatus +http://purl.obolibrary.org/obo/UBERON_0000971,ommatidium,omatidium +http://purl.obolibrary.org/obo/UBERON_0000972,antenna, +http://purl.obolibrary.org/obo/UBERON_0000974,neck,collum +http://purl.obolibrary.org/obo/UBERON_0000974,neck,neck (volume) +http://purl.obolibrary.org/obo/UBERON_0000975,sternum,vertebrate sternum +http://purl.obolibrary.org/obo/UBERON_0000976,humerus,humeri +http://purl.obolibrary.org/obo/UBERON_0000976,humerus,humerus bone +http://purl.obolibrary.org/obo/UBERON_0000977,pleura,wall of pleural sac +http://purl.obolibrary.org/obo/UBERON_0000978,leg,tetrapod leg +http://purl.obolibrary.org/obo/UBERON_0000979,tibia,shankbone +http://purl.obolibrary.org/obo/UBERON_0000979,tibia,shinbone +http://purl.obolibrary.org/obo/UBERON_0000980,trochanter,femoral trochanter +http://purl.obolibrary.org/obo/UBERON_0000980,trochanter,trochanter of femur +http://purl.obolibrary.org/obo/UBERON_0000981,femur,thigh bone +http://purl.obolibrary.org/obo/UBERON_0000982,skeletal joint,articular joint +http://purl.obolibrary.org/obo/UBERON_0000982,skeletal joint,articulation +http://purl.obolibrary.org/obo/UBERON_0000982,skeletal joint,joint +http://purl.obolibrary.org/obo/UBERON_0000982,skeletal joint,joints +http://purl.obolibrary.org/obo/UBERON_0000983,metatarsus region,hind metapodium +http://purl.obolibrary.org/obo/UBERON_0000983,metatarsus region,metatarsal part of foot +http://purl.obolibrary.org/obo/UBERON_0000983,metatarsus region,metatarsal region +http://purl.obolibrary.org/obo/UBERON_0000983,metatarsus region,regio metatarsalis +http://purl.obolibrary.org/obo/UBERON_0000984,imaginal disc-derived wing, +http://purl.obolibrary.org/obo/UBERON_0000985,axillary vein,vena axillaris +http://purl.obolibrary.org/obo/UBERON_0000987,haltere, +http://purl.obolibrary.org/obo/UBERON_0000988,pons,pons Varolii +http://purl.obolibrary.org/obo/UBERON_0000988,pons,pons cerebri +http://purl.obolibrary.org/obo/UBERON_0000988,pons,pons of Varolius +http://purl.obolibrary.org/obo/UBERON_0000989,penis,penes +http://purl.obolibrary.org/obo/UBERON_0000989,penis,phallus +http://purl.obolibrary.org/obo/UBERON_0000990,reproductive system,Geschlechtsorgan +http://purl.obolibrary.org/obo/UBERON_0000990,reproductive system,animal reproductive system +http://purl.obolibrary.org/obo/UBERON_0000990,reproductive system,genital system +http://purl.obolibrary.org/obo/UBERON_0000990,reproductive system,genital tract +http://purl.obolibrary.org/obo/UBERON_0000990,reproductive system,genitalia +http://purl.obolibrary.org/obo/UBERON_0000990,reproductive system,organa genitalia +http://purl.obolibrary.org/obo/UBERON_0000990,reproductive system,reproductive tissue +http://purl.obolibrary.org/obo/UBERON_0000990,reproductive system,reproductive tract +http://purl.obolibrary.org/obo/UBERON_0000990,reproductive system,systemata genitalia +http://purl.obolibrary.org/obo/UBERON_0000991,gonad,gonada +http://purl.obolibrary.org/obo/UBERON_0000991,gonad,gonads +http://purl.obolibrary.org/obo/UBERON_0000992,ovary,animal ovary +http://purl.obolibrary.org/obo/UBERON_0000992,ovary,female gonad +http://purl.obolibrary.org/obo/UBERON_0000992,ovary,female organism genitalia gonad +http://purl.obolibrary.org/obo/UBERON_0000992,ovary,female organism genitalia gonada +http://purl.obolibrary.org/obo/UBERON_0000992,ovary,female organism reproductive system gonad +http://purl.obolibrary.org/obo/UBERON_0000992,ovary,female organism reproductive system gonada +http://purl.obolibrary.org/obo/UBERON_0000992,ovary,female reproductive system gonad +http://purl.obolibrary.org/obo/UBERON_0000992,ovary,female reproductive system gonada +http://purl.obolibrary.org/obo/UBERON_0000992,ovary,genitalia of female organism gonad +http://purl.obolibrary.org/obo/UBERON_0000992,ovary,genitalia of female organism gonada +http://purl.obolibrary.org/obo/UBERON_0000992,ovary,gonad of female organism genitalia +http://purl.obolibrary.org/obo/UBERON_0000992,ovary,gonad of female organism reproductive system +http://purl.obolibrary.org/obo/UBERON_0000992,ovary,gonad of female reproductive system +http://purl.obolibrary.org/obo/UBERON_0000992,ovary,gonad of genitalia of female organism +http://purl.obolibrary.org/obo/UBERON_0000992,ovary,gonad of reproductive system of female organism +http://purl.obolibrary.org/obo/UBERON_0000992,ovary,gonada of female organism genitalia +http://purl.obolibrary.org/obo/UBERON_0000992,ovary,gonada of female organism reproductive system +http://purl.obolibrary.org/obo/UBERON_0000992,ovary,gonada of female reproductive system +http://purl.obolibrary.org/obo/UBERON_0000992,ovary,gonada of genitalia of female organism +http://purl.obolibrary.org/obo/UBERON_0000992,ovary,gonada of reproductive system of female organism +http://purl.obolibrary.org/obo/UBERON_0000992,ovary,ovaries +http://purl.obolibrary.org/obo/UBERON_0000992,ovary,ovarium +http://purl.obolibrary.org/obo/UBERON_0000992,ovary,ovum-producing ovary +http://purl.obolibrary.org/obo/UBERON_0000992,ovary,reproductive system of female organism gonad +http://purl.obolibrary.org/obo/UBERON_0000992,ovary,reproductive system of female organism gonada +http://purl.obolibrary.org/obo/UBERON_0000993,oviduct,female reproductive tracts +http://purl.obolibrary.org/obo/UBERON_0000993,oviduct,ovarian duct +http://purl.obolibrary.org/obo/UBERON_0000993,oviduct,ovarian tube +http://purl.obolibrary.org/obo/UBERON_0000993,oviduct,oviducts +http://purl.obolibrary.org/obo/UBERON_0000993,oviduct,tuba uterina +http://purl.obolibrary.org/obo/UBERON_0000993,oviduct,tuba uterinae +http://purl.obolibrary.org/obo/UBERON_0000993,oviduct,tubular parts of female reproductive system +http://purl.obolibrary.org/obo/UBERON_0000993,oviduct,uterine tube +http://purl.obolibrary.org/obo/UBERON_0000994,spermathecum, +http://purl.obolibrary.org/obo/UBERON_0000995,uterus, +http://purl.obolibrary.org/obo/UBERON_0000996,vagina, +http://purl.obolibrary.org/obo/UBERON_0000997,mammalian vulva,female pudendum +http://purl.obolibrary.org/obo/UBERON_0000997,mammalian vulva,mammalian vulva +http://purl.obolibrary.org/obo/UBERON_0000997,mammalian vulva,puboperineal region +http://purl.obolibrary.org/obo/UBERON_0000997,mammalian vulva,pudendum +http://purl.obolibrary.org/obo/UBERON_0000997,mammalian vulva,pudendum femininum +http://purl.obolibrary.org/obo/UBERON_0000997,mammalian vulva,pudendum muliebre +http://purl.obolibrary.org/obo/UBERON_0000997,mammalian vulva,vulva +http://purl.obolibrary.org/obo/UBERON_0000998,seminal vesicle,glandula seminalis +http://purl.obolibrary.org/obo/UBERON_0000998,seminal vesicle,glandula vesiculosa +http://purl.obolibrary.org/obo/UBERON_0000998,seminal vesicle,gonecyst +http://purl.obolibrary.org/obo/UBERON_0000998,seminal vesicle,seminal gland +http://purl.obolibrary.org/obo/UBERON_0000998,seminal vesicle,vas efferens +http://purl.obolibrary.org/obo/UBERON_0000998,seminal vesicle,vesicula seminalis +http://purl.obolibrary.org/obo/UBERON_0000998,seminal vesicle,vesiculae seminales +http://purl.obolibrary.org/obo/UBERON_0000998,seminal vesicle,vesicular gland +http://purl.obolibrary.org/obo/UBERON_0000998,seminal vesicle,vesicular glands +http://purl.obolibrary.org/obo/UBERON_0000998,seminal vesicle,vesicular seminalis +http://purl.obolibrary.org/obo/UBERON_0000998,seminal vesicle,vesiculæ seminales +http://purl.obolibrary.org/obo/UBERON_0000999,ejaculatory duct,ductus ejaculatorii +http://purl.obolibrary.org/obo/UBERON_0000999,ejaculatory duct,ductus ejaculatorius +http://purl.obolibrary.org/obo/UBERON_0001000,vas deferens,deferent duct +http://purl.obolibrary.org/obo/UBERON_0001000,vas deferens,ductus deferens +http://purl.obolibrary.org/obo/UBERON_0001000,vas deferens,vas deferen +http://purl.obolibrary.org/obo/UBERON_0001001,chitin-based cuticle, +http://purl.obolibrary.org/obo/UBERON_0001002,cuticle, +http://purl.obolibrary.org/obo/UBERON_0001003,skin epidermis,vertebrate epidermis +http://purl.obolibrary.org/obo/UBERON_0001004,respiratory system,Atmungssystem +http://purl.obolibrary.org/obo/UBERON_0001004,respiratory system,apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0001004,respiratory system,respiratory system +http://purl.obolibrary.org/obo/UBERON_0001004,respiratory system,systema respiratorium +http://purl.obolibrary.org/obo/UBERON_0001005,respiratory airway,airway +http://purl.obolibrary.org/obo/UBERON_0001005,respiratory airway,airways +http://purl.obolibrary.org/obo/UBERON_0001007,digestive system,alimentary system +http://purl.obolibrary.org/obo/UBERON_0001007,digestive system,alimentary tract +http://purl.obolibrary.org/obo/UBERON_0001007,digestive system,gastrointestinal system +http://purl.obolibrary.org/obo/UBERON_0001007,digestive system,gut +http://purl.obolibrary.org/obo/UBERON_0001008,renal system,excretory system +http://purl.obolibrary.org/obo/UBERON_0001008,renal system,renal or urinary system +http://purl.obolibrary.org/obo/UBERON_0001008,renal system,renal/urinary system +http://purl.obolibrary.org/obo/UBERON_0001008,renal system,systema urinaria +http://purl.obolibrary.org/obo/UBERON_0001008,renal system,systema urinarium +http://purl.obolibrary.org/obo/UBERON_0001008,renal system,urinary system +http://purl.obolibrary.org/obo/UBERON_0001008,renal system,urinary tract +http://purl.obolibrary.org/obo/UBERON_0001009,circulatory system,systema cardiovasculare +http://purl.obolibrary.org/obo/UBERON_0001010,diaphysis of ulna,body of ulna +http://purl.obolibrary.org/obo/UBERON_0001010,diaphysis of ulna,corpus ulnae +http://purl.obolibrary.org/obo/UBERON_0001010,diaphysis of ulna,shaft of ulna +http://purl.obolibrary.org/obo/UBERON_0001010,diaphysis of ulna,ulnar diaphysis +http://purl.obolibrary.org/obo/UBERON_0001011,hemolymph, +http://purl.obolibrary.org/obo/UBERON_0001012,head of radius,radial head +http://purl.obolibrary.org/obo/UBERON_0001013,adipose tissue,adipose +http://purl.obolibrary.org/obo/UBERON_0001013,adipose tissue,bodyfat +http://purl.obolibrary.org/obo/UBERON_0001013,adipose tissue,fat +http://purl.obolibrary.org/obo/UBERON_0001013,adipose tissue,fat tissue +http://purl.obolibrary.org/obo/UBERON_0001013,adipose tissue,fatty depot +http://purl.obolibrary.org/obo/UBERON_0001013,adipose tissue,fatty tissue +http://purl.obolibrary.org/obo/UBERON_0001015,musculature,muscle group +http://purl.obolibrary.org/obo/UBERON_0001015,musculature,muscle system +http://purl.obolibrary.org/obo/UBERON_0001015,musculature,muscles +http://purl.obolibrary.org/obo/UBERON_0001015,musculature,muscles set +http://purl.obolibrary.org/obo/UBERON_0001015,musculature,musculature +http://purl.obolibrary.org/obo/UBERON_0001015,musculature,musculature system +http://purl.obolibrary.org/obo/UBERON_0001015,musculature,musculi +http://purl.obolibrary.org/obo/UBERON_0001015,musculature,set of muscles +http://purl.obolibrary.org/obo/UBERON_0001015,musculature,set of skeletal muscles +http://purl.obolibrary.org/obo/UBERON_0001016,nervous system,nerve net +http://purl.obolibrary.org/obo/UBERON_0001016,nervous system,neurological system +http://purl.obolibrary.org/obo/UBERON_0001016,nervous system,systema nervosum +http://purl.obolibrary.org/obo/UBERON_0001017,central nervous system,CNS +http://purl.obolibrary.org/obo/UBERON_0001017,central nervous system,cerebrospinal axis +http://purl.obolibrary.org/obo/UBERON_0001017,central nervous system,neuraxis +http://purl.obolibrary.org/obo/UBERON_0001017,central nervous system,systema nervosum centrale +http://purl.obolibrary.org/obo/UBERON_0001018,axon tract,axonal tract +http://purl.obolibrary.org/obo/UBERON_0001018,axon tract,nerve tract +http://purl.obolibrary.org/obo/UBERON_0001018,axon tract,neuraxis tract +http://purl.obolibrary.org/obo/UBERON_0001018,axon tract,tract +http://purl.obolibrary.org/obo/UBERON_0001018,axon tract,tract of neuraxis +http://purl.obolibrary.org/obo/UBERON_0001019,nerve fasciculus,fascicle +http://purl.obolibrary.org/obo/UBERON_0001019,nerve fasciculus,fasciculus +http://purl.obolibrary.org/obo/UBERON_0001019,nerve fasciculus,nerve bundle +http://purl.obolibrary.org/obo/UBERON_0001019,nerve fasciculus,nerve fasciculus +http://purl.obolibrary.org/obo/UBERON_0001019,nerve fasciculus,nerve fiber tract +http://purl.obolibrary.org/obo/UBERON_0001019,nerve fasciculus,neural fasciculus +http://purl.obolibrary.org/obo/UBERON_0001020,nervous system commissure,commissure of neuraxis +http://purl.obolibrary.org/obo/UBERON_0001020,nervous system commissure,neuraxis commissure +http://purl.obolibrary.org/obo/UBERON_0001021,nerve,nerves +http://purl.obolibrary.org/obo/UBERON_0001021,nerve,neural subtree +http://purl.obolibrary.org/obo/UBERON_0001021,nerve,peripheral nerve +http://purl.obolibrary.org/obo/UBERON_0001027,sensory nerve,nervus sensorius +http://purl.obolibrary.org/obo/UBERON_0001028,diaphysis of radius,body of radius +http://purl.obolibrary.org/obo/UBERON_0001028,diaphysis of radius,corpus radii +http://purl.obolibrary.org/obo/UBERON_0001028,diaphysis of radius,radial diaphysis +http://purl.obolibrary.org/obo/UBERON_0001028,diaphysis of radius,shaft of radius +http://purl.obolibrary.org/obo/UBERON_0001031,sheath of Schwann,neurilemma +http://purl.obolibrary.org/obo/UBERON_0001031,sheath of Schwann,neurolemma +http://purl.obolibrary.org/obo/UBERON_0001031,sheath of Schwann,sheath of Schwann +http://purl.obolibrary.org/obo/UBERON_0001032,sensory system,organa sensuum +http://purl.obolibrary.org/obo/UBERON_0001032,sensory system,sense organ subsystem +http://purl.obolibrary.org/obo/UBERON_0001032,sensory system,sense organs +http://purl.obolibrary.org/obo/UBERON_0001032,sensory system,sense organs set +http://purl.obolibrary.org/obo/UBERON_0001032,sensory system,sensory organ system +http://purl.obolibrary.org/obo/UBERON_0001032,sensory system,sensory subsystem +http://purl.obolibrary.org/obo/UBERON_0001032,sensory system,sensory systems +http://purl.obolibrary.org/obo/UBERON_0001032,sensory system,set of sense organs +http://purl.obolibrary.org/obo/UBERON_0001033,gustatory system,gustatory organ system +http://purl.obolibrary.org/obo/UBERON_0001033,gustatory system,taste system +http://purl.obolibrary.org/obo/UBERON_0001035,dento-alveolar joint,dento-alveolar syndesmosis +http://purl.obolibrary.org/obo/UBERON_0001035,dento-alveolar joint,gomphosis +http://purl.obolibrary.org/obo/UBERON_0001035,dento-alveolar joint,peg-and-socket joint +http://purl.obolibrary.org/obo/UBERON_0001035,dento-alveolar joint,syndesmosis dentoalveolaris +http://purl.obolibrary.org/obo/UBERON_0001037,strand of hair,hair +http://purl.obolibrary.org/obo/UBERON_0001038,chordotonal organ, +http://purl.obolibrary.org/obo/UBERON_0001040,yolk sac, +http://purl.obolibrary.org/obo/UBERON_0001041,foregut,praeenteron +http://purl.obolibrary.org/obo/UBERON_0001041,foregut,proenteron +http://purl.obolibrary.org/obo/UBERON_0001042,chordate pharynx,pharynx +http://purl.obolibrary.org/obo/UBERON_0001043,esophagus,gullet +http://purl.obolibrary.org/obo/UBERON_0001043,esophagus,oesophagus +http://purl.obolibrary.org/obo/UBERON_0001044,saliva-secreting gland,glandulae salivariae +http://purl.obolibrary.org/obo/UBERON_0001044,saliva-secreting gland,salivary gland +http://purl.obolibrary.org/obo/UBERON_0001045,midgut, +http://purl.obolibrary.org/obo/UBERON_0001046,hindgut, +http://purl.obolibrary.org/obo/UBERON_0001047,neural glomerulus, +http://purl.obolibrary.org/obo/UBERON_0001048,primordium, +http://purl.obolibrary.org/obo/UBERON_0001049,neural tube, +http://purl.obolibrary.org/obo/UBERON_0001051,hypopharynx,laryngeal pharynx +http://purl.obolibrary.org/obo/UBERON_0001051,hypopharynx,laryngopharynx +http://purl.obolibrary.org/obo/UBERON_0001051,hypopharynx,pars laryngea pharyngis +http://purl.obolibrary.org/obo/UBERON_0001052,rectum,terminal portion of intestine +http://purl.obolibrary.org/obo/UBERON_0001053,arthropod neurohemal organ, +http://purl.obolibrary.org/obo/UBERON_0001054,Malpighian tubule, +http://purl.obolibrary.org/obo/UBERON_0001056,corpus cardiacum, +http://purl.obolibrary.org/obo/UBERON_0001057,corpus allatum, +http://purl.obolibrary.org/obo/UBERON_0001058,mushroom body,mushroom bodies +http://purl.obolibrary.org/obo/UBERON_0001059,pars intercerebralis, +http://purl.obolibrary.org/obo/UBERON_0001063,flocculus,flocculus of cerebellum +http://purl.obolibrary.org/obo/UBERON_0001063,flocculus,neuraxis flocculus +http://purl.obolibrary.org/obo/UBERON_0001064,ventral pancreatic duct,chief pancreatic duct +http://purl.obolibrary.org/obo/UBERON_0001064,ventral pancreatic duct,duct of Wirsung +http://purl.obolibrary.org/obo/UBERON_0001064,ventral pancreatic duct,main pancreatic duct +http://purl.obolibrary.org/obo/UBERON_0001065,parotid main excretory duct,Stenon duct +http://purl.obolibrary.org/obo/UBERON_0001065,parotid main excretory duct,Stensen's duct +http://purl.obolibrary.org/obo/UBERON_0001065,parotid main excretory duct,Stensens's duct +http://purl.obolibrary.org/obo/UBERON_0001065,parotid main excretory duct,main duct of parotid gland +http://purl.obolibrary.org/obo/UBERON_0001065,parotid main excretory duct,main excretory duct of parotid gland +http://purl.obolibrary.org/obo/UBERON_0001066,intervertebral disk,discus intervertebralis +http://purl.obolibrary.org/obo/UBERON_0001066,intervertebral disk,intervertebral disc +http://purl.obolibrary.org/obo/UBERON_0001066,intervertebral disk,spinal disc +http://purl.obolibrary.org/obo/UBERON_0001067,vertebral arch joint,facet joint +http://purl.obolibrary.org/obo/UBERON_0001067,vertebral arch joint,joint of vertebral arch +http://purl.obolibrary.org/obo/UBERON_0001067,vertebral arch joint,joint of vertebral articular process +http://purl.obolibrary.org/obo/UBERON_0001067,vertebral arch joint,spinal facet joint +http://purl.obolibrary.org/obo/UBERON_0001067,vertebral arch joint,zygapophyseal joint +http://purl.obolibrary.org/obo/UBERON_0001067,vertebral arch joint,zygapophysial joint +http://purl.obolibrary.org/obo/UBERON_0001068,skin of back,back skin +http://purl.obolibrary.org/obo/UBERON_0001068,skin of back,back zone of skin +http://purl.obolibrary.org/obo/UBERON_0001068,skin of back,"skin, dorsal region" +http://purl.obolibrary.org/obo/UBERON_0001068,skin of back,zone of skin of back +http://purl.obolibrary.org/obo/UBERON_0001069,head of pancreas,pancreas head +http://purl.obolibrary.org/obo/UBERON_0001069,head of pancreas,pancreatic head +http://purl.obolibrary.org/obo/UBERON_0001069,head of pancreas,right extremity of pancreas +http://purl.obolibrary.org/obo/UBERON_0001070,external carotid artery,external carotid +http://purl.obolibrary.org/obo/UBERON_0001071,superficial cervical artery,superficial branch of transverse cervical artery +http://purl.obolibrary.org/obo/UBERON_0001072,posterior vena cava,inferior caval vein +http://purl.obolibrary.org/obo/UBERON_0001072,posterior vena cava,inferior vena cava +http://purl.obolibrary.org/obo/UBERON_0001072,posterior vena cava,posterior vena cava +http://purl.obolibrary.org/obo/UBERON_0001073,ileocecal junction,ileocaecal junction +http://purl.obolibrary.org/obo/UBERON_0001074,pericardial cavity,cavity of pericardial sac +http://purl.obolibrary.org/obo/UBERON_0001074,pericardial cavity,pericardial space +http://purl.obolibrary.org/obo/UBERON_0001075,bony vertebral centrum,body of vertebra +http://purl.obolibrary.org/obo/UBERON_0001075,bony vertebral centrum,corpus vertebra +http://purl.obolibrary.org/obo/UBERON_0001075,bony vertebral centrum,corpus vertebrae (vertebrale) +http://purl.obolibrary.org/obo/UBERON_0001075,bony vertebral centrum,vertebral body +http://purl.obolibrary.org/obo/UBERON_0001076,neural spine,processus spinosus +http://purl.obolibrary.org/obo/UBERON_0001076,neural spine,processus spinosus vertebrae +http://purl.obolibrary.org/obo/UBERON_0001076,neural spine,spinous process of vertebra +http://purl.obolibrary.org/obo/UBERON_0001076,neural spine,vertebra spinous process +http://purl.obolibrary.org/obo/UBERON_0001077,transverse process of vertebra,processus transversus +http://purl.obolibrary.org/obo/UBERON_0001077,transverse process of vertebra,processus transversus vertebrae +http://purl.obolibrary.org/obo/UBERON_0001077,transverse process of vertebra,transverse process +http://purl.obolibrary.org/obo/UBERON_0001077,transverse process of vertebra,vertebra transverse process +http://purl.obolibrary.org/obo/UBERON_0001078,pedicle of vertebra,pedicle of vertebral arch +http://purl.obolibrary.org/obo/UBERON_0001078,pedicle of vertebra,pediculus arcus vertebrae +http://purl.obolibrary.org/obo/UBERON_0001078,pedicle of vertebra,vertebra pedicle +http://purl.obolibrary.org/obo/UBERON_0001078,pedicle of vertebra,vertebral pedicle +http://purl.obolibrary.org/obo/UBERON_0001079,prezygapophysis,cranial articular process of vertebra +http://purl.obolibrary.org/obo/UBERON_0001079,prezygapophysis,prezygapophysis +http://purl.obolibrary.org/obo/UBERON_0001079,prezygapophysis,processus articularis superior +http://purl.obolibrary.org/obo/UBERON_0001079,prezygapophysis,processus articularis superior vertebrae +http://purl.obolibrary.org/obo/UBERON_0001079,prezygapophysis,superior articular process of vertebra +http://purl.obolibrary.org/obo/UBERON_0001079,prezygapophysis,vertebra cranial articular process +http://purl.obolibrary.org/obo/UBERON_0001079,prezygapophysis,zygapophysis superior +http://purl.obolibrary.org/obo/UBERON_0001080,postzygapophysis,caudal articular process of vertebra +http://purl.obolibrary.org/obo/UBERON_0001080,postzygapophysis,inferior articular process of vertebra +http://purl.obolibrary.org/obo/UBERON_0001080,postzygapophysis,neural postzygopophysis +http://purl.obolibrary.org/obo/UBERON_0001080,postzygapophysis,postzygapophysis +http://purl.obolibrary.org/obo/UBERON_0001080,postzygapophysis,processus articularis inferior +http://purl.obolibrary.org/obo/UBERON_0001080,postzygapophysis,processus articularis inferior vertebrae +http://purl.obolibrary.org/obo/UBERON_0001080,postzygapophysis,vertebra caudal articular process +http://purl.obolibrary.org/obo/UBERON_0001080,postzygapophysis,zygapophysis inferior +http://purl.obolibrary.org/obo/UBERON_0001081,endocardium of ventricle,cardiac ventricle endocardium +http://purl.obolibrary.org/obo/UBERON_0001081,endocardium of ventricle,endocardium of cardiac ventricle +http://purl.obolibrary.org/obo/UBERON_0001081,endocardium of ventricle,endocardium of heart ventricle +http://purl.obolibrary.org/obo/UBERON_0001081,endocardium of ventricle,endocardium of lower chamber of heart +http://purl.obolibrary.org/obo/UBERON_0001081,endocardium of ventricle,endocardium of ventricle of heart +http://purl.obolibrary.org/obo/UBERON_0001081,endocardium of ventricle,heart ventricle endocardium +http://purl.obolibrary.org/obo/UBERON_0001081,endocardium of ventricle,lower chamber of heart endocardium +http://purl.obolibrary.org/obo/UBERON_0001081,endocardium of ventricle,ventricle endocardium +http://purl.obolibrary.org/obo/UBERON_0001081,endocardium of ventricle,ventricle of heart endocardium +http://purl.obolibrary.org/obo/UBERON_0001081,endocardium of ventricle,ventricular endocardium +http://purl.obolibrary.org/obo/UBERON_0001082,epicardium of ventricle,cardiac ventricle epicardium +http://purl.obolibrary.org/obo/UBERON_0001082,epicardium of ventricle,ventricular epicardium +http://purl.obolibrary.org/obo/UBERON_0001083,myocardium of ventricle,ventricle myocardium +http://purl.obolibrary.org/obo/UBERON_0001083,myocardium of ventricle,ventricular myocardium +http://purl.obolibrary.org/obo/UBERON_0001084,skin of head,adult head zone of skin +http://purl.obolibrary.org/obo/UBERON_0001084,skin of head,head skin +http://purl.obolibrary.org/obo/UBERON_0001084,skin of head,head zone of skin +http://purl.obolibrary.org/obo/UBERON_0001084,skin of head,zone of skin of adult head +http://purl.obolibrary.org/obo/UBERON_0001084,skin of head,zone of skin of head +http://purl.obolibrary.org/obo/UBERON_0001085,skin of trunk,torso zone of skin +http://purl.obolibrary.org/obo/UBERON_0001085,skin of trunk,trunk skin +http://purl.obolibrary.org/obo/UBERON_0001085,skin of trunk,trunk zone of skin +http://purl.obolibrary.org/obo/UBERON_0001085,skin of trunk,zone of skin of torso +http://purl.obolibrary.org/obo/UBERON_0001085,skin of trunk,zone of skin of trunk +http://purl.obolibrary.org/obo/UBERON_0001087,pleural fluid, +http://purl.obolibrary.org/obo/UBERON_0001088,urine, +http://purl.obolibrary.org/obo/UBERON_0001089,sweat, +http://purl.obolibrary.org/obo/UBERON_0001090,synovial fluid,joint fluid +http://purl.obolibrary.org/obo/UBERON_0001091,calcareous tooth,dental element +http://purl.obolibrary.org/obo/UBERON_0001091,calcareous tooth,dentine containing tooth +http://purl.obolibrary.org/obo/UBERON_0001091,calcareous tooth,tooth +http://purl.obolibrary.org/obo/UBERON_0001091,calcareous tooth,vertebrate tooth +http://purl.obolibrary.org/obo/UBERON_0001092,vertebral bone 1,C1 vertebra +http://purl.obolibrary.org/obo/UBERON_0001092,vertebral bone 1,atlas +http://purl.obolibrary.org/obo/UBERON_0001092,vertebral bone 1,atlas (CI) +http://purl.obolibrary.org/obo/UBERON_0001092,vertebral bone 1,atlas [C I] +http://purl.obolibrary.org/obo/UBERON_0001092,vertebral bone 1,atlas vertebra +http://purl.obolibrary.org/obo/UBERON_0001092,vertebral bone 1,cervical atlas +http://purl.obolibrary.org/obo/UBERON_0001092,vertebral bone 1,cervical vertebra 1 +http://purl.obolibrary.org/obo/UBERON_0001092,vertebral bone 1,first cervical vertebra +http://purl.obolibrary.org/obo/UBERON_0001092,vertebral bone 1,vertebra 1 +http://purl.obolibrary.org/obo/UBERON_0001093,vertebral bone 2,axis (CII) +http://purl.obolibrary.org/obo/UBERON_0001093,vertebral bone 2,axis [C II] +http://purl.obolibrary.org/obo/UBERON_0001093,vertebral bone 2,axis vertebra +http://purl.obolibrary.org/obo/UBERON_0001093,vertebral bone 2,cervical axis +http://purl.obolibrary.org/obo/UBERON_0001093,vertebral bone 2,vertebra 2 +http://purl.obolibrary.org/obo/UBERON_0001094,sacral vertebra,sacral segment +http://purl.obolibrary.org/obo/UBERON_0001094,sacral vertebra,segment of sacrum +http://purl.obolibrary.org/obo/UBERON_0001095,caudal vertebra,caudal vertebrae +http://purl.obolibrary.org/obo/UBERON_0001095,caudal vertebra,caudal vertebral bone +http://purl.obolibrary.org/obo/UBERON_0001095,caudal vertebra,caudal vertebral bone element +http://purl.obolibrary.org/obo/UBERON_0001095,caudal vertebra,coccygeal segment +http://purl.obolibrary.org/obo/UBERON_0001095,caudal vertebra,coccygeal vertebra +http://purl.obolibrary.org/obo/UBERON_0001095,caudal vertebra,fused tail vertebra +http://purl.obolibrary.org/obo/UBERON_0001096,wall of esophagus,anatomical wall of esophagus +http://purl.obolibrary.org/obo/UBERON_0001096,wall of esophagus,anatomical wall of gullet +http://purl.obolibrary.org/obo/UBERON_0001096,wall of esophagus,anatomical wall of oesophagus +http://purl.obolibrary.org/obo/UBERON_0001096,wall of esophagus,esophageal wall +http://purl.obolibrary.org/obo/UBERON_0001096,wall of esophagus,esophagus anatomical wall +http://purl.obolibrary.org/obo/UBERON_0001096,wall of esophagus,esophagus wall +http://purl.obolibrary.org/obo/UBERON_0001096,wall of esophagus,gullet anatomical wall +http://purl.obolibrary.org/obo/UBERON_0001096,wall of esophagus,gullet wall +http://purl.obolibrary.org/obo/UBERON_0001096,wall of esophagus,oesophagus anatomical wall +http://purl.obolibrary.org/obo/UBERON_0001096,wall of esophagus,oesophagus wall +http://purl.obolibrary.org/obo/UBERON_0001096,wall of esophagus,wall of gullet +http://purl.obolibrary.org/obo/UBERON_0001096,wall of esophagus,wall of oesophagus +http://purl.obolibrary.org/obo/UBERON_0001097,axillary lymph node,axillary node +http://purl.obolibrary.org/obo/UBERON_0001098,incisor tooth,incisor +http://purl.obolibrary.org/obo/UBERON_0001099,subcostal vein, +http://purl.obolibrary.org/obo/UBERON_0001100,pectoralis minor,pectoralis minor muscle +http://purl.obolibrary.org/obo/UBERON_0001101,external jugular vein,external jugular venous tree +http://purl.obolibrary.org/obo/UBERON_0001102,cartilage of main bronchus,bronchus principalis cartilage +http://purl.obolibrary.org/obo/UBERON_0001102,cartilage of main bronchus,cartilage of bronchus principalis +http://purl.obolibrary.org/obo/UBERON_0001102,cartilage of main bronchus,cartilage of primary bronchus +http://purl.obolibrary.org/obo/UBERON_0001102,cartilage of main bronchus,cartilage of principal bronchus +http://purl.obolibrary.org/obo/UBERON_0001102,cartilage of main bronchus,cartilaginous ring of main bronchus +http://purl.obolibrary.org/obo/UBERON_0001102,cartilage of main bronchus,main bronchial cartilage +http://purl.obolibrary.org/obo/UBERON_0001102,cartilage of main bronchus,main bronchus cartilage +http://purl.obolibrary.org/obo/UBERON_0001102,cartilage of main bronchus,primary bronchus cartilage +http://purl.obolibrary.org/obo/UBERON_0001102,cartilage of main bronchus,principal bronchus cartilage +http://purl.obolibrary.org/obo/UBERON_0001103,diaphragm,diaphragm muscle +http://purl.obolibrary.org/obo/UBERON_0001103,diaphragm,diaphragm of thorax +http://purl.obolibrary.org/obo/UBERON_0001103,diaphragm,midriff +http://purl.obolibrary.org/obo/UBERON_0001103,diaphragm,phren +http://purl.obolibrary.org/obo/UBERON_0001103,diaphragm,thoracic diaphragm +http://purl.obolibrary.org/obo/UBERON_0001104,anterior jugular vein,anterior external jugular vein +http://purl.obolibrary.org/obo/UBERON_0001105,clavicle bone,clavicle +http://purl.obolibrary.org/obo/UBERON_0001105,clavicle bone,clavicula +http://purl.obolibrary.org/obo/UBERON_0001105,clavicle bone,collar bone +http://purl.obolibrary.org/obo/UBERON_0001105,clavicle bone,collarbone +http://purl.obolibrary.org/obo/UBERON_0001106,cephalic vein,cephalic vein of forearm +http://purl.obolibrary.org/obo/UBERON_0001106,cephalic vein,vena cephalica antebrachii +http://purl.obolibrary.org/obo/UBERON_0001107,sternohyoid muscle,m. sternohyoideus +http://purl.obolibrary.org/obo/UBERON_0001107,sternohyoid muscle,sternohyoid +http://purl.obolibrary.org/obo/UBERON_0001107,sternohyoid muscle,sternohyoideus +http://purl.obolibrary.org/obo/UBERON_0001107,sternohyoid muscle,sternohyoideus muscle +http://purl.obolibrary.org/obo/UBERON_0001108,omohyoid muscle,omohyoid +http://purl.obolibrary.org/obo/UBERON_0001108,omohyoid muscle,omohyoideus +http://purl.obolibrary.org/obo/UBERON_0001108,omohyoid muscle,omohyoideus muscle +http://purl.obolibrary.org/obo/UBERON_0001109,sternothyroid muscle,sternothyroid +http://purl.obolibrary.org/obo/UBERON_0001110,thyrohyoid muscle,thyrohyoid +http://purl.obolibrary.org/obo/UBERON_0001111,intercostal muscle,musculus intercostalis +http://purl.obolibrary.org/obo/UBERON_0001112,latissimus dorsi muscle,dorsal latissimus muscle +http://purl.obolibrary.org/obo/UBERON_0001112,latissimus dorsi muscle,latissimi dorsi +http://purl.obolibrary.org/obo/UBERON_0001112,latissimus dorsi muscle,latissimus dorsi +http://purl.obolibrary.org/obo/UBERON_0001112,latissimus dorsi muscle,musculus latissimus dorsi +http://purl.obolibrary.org/obo/UBERON_0001113,lobe of liver,hepatic lobe +http://purl.obolibrary.org/obo/UBERON_0001113,lobe of liver,liver lobe +http://purl.obolibrary.org/obo/UBERON_0001113,lobe of liver,lobus hepatis +http://purl.obolibrary.org/obo/UBERON_0001114,right lobe of liver,liver right lobe +http://purl.obolibrary.org/obo/UBERON_0001114,right lobe of liver,lobus hepaticus dexter +http://purl.obolibrary.org/obo/UBERON_0001114,right lobe of liver,right liver lobe +http://purl.obolibrary.org/obo/UBERON_0001115,left lobe of liver,left liver lobe +http://purl.obolibrary.org/obo/UBERON_0001115,left lobe of liver,liver left lobe +http://purl.obolibrary.org/obo/UBERON_0001115,left lobe of liver,lobus hepaticus sinister +http://purl.obolibrary.org/obo/UBERON_0001116,quadrate lobe of liver,liver quadrate lobe +http://purl.obolibrary.org/obo/UBERON_0001116,quadrate lobe of liver,lobus quadratus +http://purl.obolibrary.org/obo/UBERON_0001116,quadrate lobe of liver,lobus quadratus hepatis +http://purl.obolibrary.org/obo/UBERON_0001117,caudate lobe of liver,Spiegelian lobe +http://purl.obolibrary.org/obo/UBERON_0001117,caudate lobe of liver,Spigel lobe +http://purl.obolibrary.org/obo/UBERON_0001117,caudate lobe of liver,couinaud hepatic segment I +http://purl.obolibrary.org/obo/UBERON_0001117,caudate lobe of liver,hepatovenous segment I +http://purl.obolibrary.org/obo/UBERON_0001117,caudate lobe of liver,liver caudate lobe +http://purl.obolibrary.org/obo/UBERON_0001117,caudate lobe of liver,lobus caudatus +http://purl.obolibrary.org/obo/UBERON_0001117,caudate lobe of liver,lobus caudatus hepatis +http://purl.obolibrary.org/obo/UBERON_0001117,caudate lobe of liver,pars posterior hepatis +http://purl.obolibrary.org/obo/UBERON_0001117,caudate lobe of liver,posterior hepatic segment i +http://purl.obolibrary.org/obo/UBERON_0001117,caudate lobe of liver,posterior liver +http://purl.obolibrary.org/obo/UBERON_0001117,caudate lobe of liver,posterior part of liver +http://purl.obolibrary.org/obo/UBERON_0001117,caudate lobe of liver,segment I of liver +http://purl.obolibrary.org/obo/UBERON_0001117,caudate lobe of liver,segmentum hepatis I +http://purl.obolibrary.org/obo/UBERON_0001118,lobe of thyroid gland,lobus (glandula thyroidea) +http://purl.obolibrary.org/obo/UBERON_0001118,lobe of thyroid gland,lobus glandulae thyroideae +http://purl.obolibrary.org/obo/UBERON_0001118,lobe of thyroid gland,thyroid gland lobe +http://purl.obolibrary.org/obo/UBERON_0001118,lobe of thyroid gland,thyroid lobe +http://purl.obolibrary.org/obo/UBERON_0001119,right lobe of thyroid gland,lobus dexter (glandula thyroidea) +http://purl.obolibrary.org/obo/UBERON_0001119,right lobe of thyroid gland,right thyroid lobe +http://purl.obolibrary.org/obo/UBERON_0001119,right lobe of thyroid gland,thyroid gland right lobe +http://purl.obolibrary.org/obo/UBERON_0001120,left lobe of thyroid gland,left thyroid lobe +http://purl.obolibrary.org/obo/UBERON_0001120,left lobe of thyroid gland,lobus sinister (glandula thyroidea) +http://purl.obolibrary.org/obo/UBERON_0001120,left lobe of thyroid gland,thyroid gland left lobe +http://purl.obolibrary.org/obo/UBERON_0001121,longus colli muscle,longus colli +http://purl.obolibrary.org/obo/UBERON_0001121,longus colli muscle,longus colli muscle +http://purl.obolibrary.org/obo/UBERON_0001122,scalenus medius,medial scalene muscle +http://purl.obolibrary.org/obo/UBERON_0001122,scalenus medius,middle scalene +http://purl.obolibrary.org/obo/UBERON_0001122,scalenus medius,musculus scalenus medius +http://purl.obolibrary.org/obo/UBERON_0001122,scalenus medius,scalenus medius muscle +http://purl.obolibrary.org/obo/UBERON_0001123,scalenus posterior,musculus scalenus posterior +http://purl.obolibrary.org/obo/UBERON_0001123,scalenus posterior,posterior scalene +http://purl.obolibrary.org/obo/UBERON_0001123,scalenus posterior,posterior scalene muscle +http://purl.obolibrary.org/obo/UBERON_0001123,scalenus posterior,scalenus dorsalis +http://purl.obolibrary.org/obo/UBERON_0001123,scalenus posterior,scalenus dorsalis muscle +http://purl.obolibrary.org/obo/UBERON_0001125,serratus ventralis,Boxer's muscle +http://purl.obolibrary.org/obo/UBERON_0001125,serratus ventralis,serratus anterior +http://purl.obolibrary.org/obo/UBERON_0001125,serratus ventralis,serratus anterior muscle +http://purl.obolibrary.org/obo/UBERON_0001125,serratus ventralis,serratus ventralis muscle +http://purl.obolibrary.org/obo/UBERON_0001126,serratus dorsalis superior muscle,serratus dorsalis cranialis +http://purl.obolibrary.org/obo/UBERON_0001126,serratus dorsalis superior muscle,serratus dorsalis cranialis muscle +http://purl.obolibrary.org/obo/UBERON_0001126,serratus dorsalis superior muscle,serratus posterior superior +http://purl.obolibrary.org/obo/UBERON_0001126,serratus dorsalis superior muscle,superior serratus dorsalis +http://purl.obolibrary.org/obo/UBERON_0001126,serratus dorsalis superior muscle,superior serratus posterior +http://purl.obolibrary.org/obo/UBERON_0001127,serratus dorsalis inferior muscle,inferior serratus dorsalis +http://purl.obolibrary.org/obo/UBERON_0001127,serratus dorsalis inferior muscle,inferior serratus posterior +http://purl.obolibrary.org/obo/UBERON_0001127,serratus dorsalis inferior muscle,serratus dorsalis caudalis +http://purl.obolibrary.org/obo/UBERON_0001127,serratus dorsalis inferior muscle,serratus posterior inferior +http://purl.obolibrary.org/obo/UBERON_0001128,sternocleidomastoid,sterno-mastoid +http://purl.obolibrary.org/obo/UBERON_0001128,sternocleidomastoid,sternocleidomastoid muscle +http://purl.obolibrary.org/obo/UBERON_0001128,sternocleidomastoid,sternomastoid +http://purl.obolibrary.org/obo/UBERON_0001128,sternocleidomastoid,sternomastoid muscle +http://purl.obolibrary.org/obo/UBERON_0001129,subscapularis muscle,subscapularis +http://purl.obolibrary.org/obo/UBERON_0001130,vertebral column, +http://purl.obolibrary.org/obo/UBERON_0001131,vertebral foramen,vertebra neural canal +http://purl.obolibrary.org/obo/UBERON_0001132,parathyroid gland,parathyroid +http://purl.obolibrary.org/obo/UBERON_0001133,cardiac muscle tissue,cardiac muscle +http://purl.obolibrary.org/obo/UBERON_0001133,cardiac muscle tissue,cardiac muscle muscle tissue +http://purl.obolibrary.org/obo/UBERON_0001133,cardiac muscle tissue,cardiac muscle textus muscularis +http://purl.obolibrary.org/obo/UBERON_0001133,cardiac muscle tissue,heart muscle muscle tissue +http://purl.obolibrary.org/obo/UBERON_0001133,cardiac muscle tissue,heart muscle textus muscularis +http://purl.obolibrary.org/obo/UBERON_0001133,cardiac muscle tissue,heart myocardium muscle tissue +http://purl.obolibrary.org/obo/UBERON_0001133,cardiac muscle tissue,heart myocardium textus muscularis +http://purl.obolibrary.org/obo/UBERON_0001133,cardiac muscle tissue,muscle of heart muscle tissue +http://purl.obolibrary.org/obo/UBERON_0001133,cardiac muscle tissue,muscle of heart textus muscularis +http://purl.obolibrary.org/obo/UBERON_0001133,cardiac muscle tissue,muscle tissue of cardiac muscle +http://purl.obolibrary.org/obo/UBERON_0001133,cardiac muscle tissue,muscle tissue of heart muscle +http://purl.obolibrary.org/obo/UBERON_0001133,cardiac muscle tissue,muscle tissue of heart myocardium +http://purl.obolibrary.org/obo/UBERON_0001133,cardiac muscle tissue,muscle tissue of muscle of heart +http://purl.obolibrary.org/obo/UBERON_0001133,cardiac muscle tissue,muscle tissue of myocardium +http://purl.obolibrary.org/obo/UBERON_0001133,cardiac muscle tissue,myocardium muscle tissue +http://purl.obolibrary.org/obo/UBERON_0001133,cardiac muscle tissue,myocardium textus muscularis +http://purl.obolibrary.org/obo/UBERON_0001133,cardiac muscle tissue,textus muscularis of cardiac muscle +http://purl.obolibrary.org/obo/UBERON_0001133,cardiac muscle tissue,textus muscularis of heart muscle +http://purl.obolibrary.org/obo/UBERON_0001133,cardiac muscle tissue,textus muscularis of heart myocardium +http://purl.obolibrary.org/obo/UBERON_0001133,cardiac muscle tissue,textus muscularis of muscle of heart +http://purl.obolibrary.org/obo/UBERON_0001133,cardiac muscle tissue,textus muscularis of myocardium +http://purl.obolibrary.org/obo/UBERON_0001134,skeletal muscle tissue, +http://purl.obolibrary.org/obo/UBERON_0001135,smooth muscle tissue,involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0001135,smooth muscle tissue,non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0001135,smooth muscle tissue,smooth muscle +http://purl.obolibrary.org/obo/UBERON_0001135,smooth muscle tissue,textus muscularis levis; textus muscularis nonstriatus +http://purl.obolibrary.org/obo/UBERON_0001135,smooth muscle tissue,textus muscularis nonstriatus +http://purl.obolibrary.org/obo/UBERON_0001135,smooth muscle tissue,visceral muscle +http://purl.obolibrary.org/obo/UBERON_0001135,smooth muscle tissue,visceral muscle tissue +http://purl.obolibrary.org/obo/UBERON_0001136,mesothelium, +http://purl.obolibrary.org/obo/UBERON_0001137,dorsum,back +http://purl.obolibrary.org/obo/UBERON_0001137,dorsum,back of body proper +http://purl.obolibrary.org/obo/UBERON_0001137,dorsum,dorsal part of organism +http://purl.obolibrary.org/obo/UBERON_0001138,superior mesenteric vein, +http://purl.obolibrary.org/obo/UBERON_0001139,common iliac vein,common iliac venous tree +http://purl.obolibrary.org/obo/UBERON_0001140,renal vein,kidney vein +http://purl.obolibrary.org/obo/UBERON_0001140,renal vein,renal venous tree +http://purl.obolibrary.org/obo/UBERON_0001140,renal vein,vein of kidney +http://purl.obolibrary.org/obo/UBERON_0001141,right renal vein, +http://purl.obolibrary.org/obo/UBERON_0001142,left renal vein, +http://purl.obolibrary.org/obo/UBERON_0001143,hepatic vein,liver vein +http://purl.obolibrary.org/obo/UBERON_0001143,hepatic vein,vein of liver +http://purl.obolibrary.org/obo/UBERON_0001143,hepatic vein,vena hepatica +http://purl.obolibrary.org/obo/UBERON_0001144,testicular vein,male gonadal vein +http://purl.obolibrary.org/obo/UBERON_0001144,testicular vein,spermatic vein +http://purl.obolibrary.org/obo/UBERON_0001144,testicular vein,testicle vein +http://purl.obolibrary.org/obo/UBERON_0001144,testicular vein,testicular venous tree +http://purl.obolibrary.org/obo/UBERON_0001144,testicular vein,vein of testicle +http://purl.obolibrary.org/obo/UBERON_0001145,ovarian vein,female reproductive system gonad vein +http://purl.obolibrary.org/obo/UBERON_0001145,ovarian vein,female reproductive system gonada vein +http://purl.obolibrary.org/obo/UBERON_0001145,ovarian vein,gonad of female reproductive system vein +http://purl.obolibrary.org/obo/UBERON_0001145,ovarian vein,gonada of female reproductive system vein +http://purl.obolibrary.org/obo/UBERON_0001145,ovarian vein,ovary vein +http://purl.obolibrary.org/obo/UBERON_0001145,ovarian vein,vein of female reproductive system gonad +http://purl.obolibrary.org/obo/UBERON_0001145,ovarian vein,vein of female reproductive system gonada +http://purl.obolibrary.org/obo/UBERON_0001145,ovarian vein,vein of gonad of female reproductive system +http://purl.obolibrary.org/obo/UBERON_0001145,ovarian vein,vein of gonada of female reproductive system +http://purl.obolibrary.org/obo/UBERON_0001145,ovarian vein,vein of ovary +http://purl.obolibrary.org/obo/UBERON_0001146,suprarenal vein, +http://purl.obolibrary.org/obo/UBERON_0001148,median nerve, +http://purl.obolibrary.org/obo/UBERON_0001149,bare area of liver,area nuda (hepar) +http://purl.obolibrary.org/obo/UBERON_0001149,bare area of liver,area nuda hepatis +http://purl.obolibrary.org/obo/UBERON_0001149,bare area of liver,liver bare area +http://purl.obolibrary.org/obo/UBERON_0001150,body of pancreas,pancreas body +http://purl.obolibrary.org/obo/UBERON_0001150,body of pancreas,pancreatic body +http://purl.obolibrary.org/obo/UBERON_0001151,tail of pancreas,left extremity of pancreas +http://purl.obolibrary.org/obo/UBERON_0001151,tail of pancreas,pancreas tail +http://purl.obolibrary.org/obo/UBERON_0001151,tail of pancreas,pancreatic tail +http://purl.obolibrary.org/obo/UBERON_0001152,cystic duct, +http://purl.obolibrary.org/obo/UBERON_0001153,caecum,caecum +http://purl.obolibrary.org/obo/UBERON_0001153,caecum,cecum +http://purl.obolibrary.org/obo/UBERON_0001153,caecum,intestinum crassum caecum +http://purl.obolibrary.org/obo/UBERON_0001154,vermiform appendix,appendix +http://purl.obolibrary.org/obo/UBERON_0001154,vermiform appendix,appendix vermiformis +http://purl.obolibrary.org/obo/UBERON_0001154,vermiform appendix,caecal appendix +http://purl.obolibrary.org/obo/UBERON_0001154,vermiform appendix,cecal appendix +http://purl.obolibrary.org/obo/UBERON_0001155,colon,hindgut +http://purl.obolibrary.org/obo/UBERON_0001155,colon,large bowel +http://purl.obolibrary.org/obo/UBERON_0001155,colon,posterior intestine +http://purl.obolibrary.org/obo/UBERON_0001156,ascending colon,colon ascendens +http://purl.obolibrary.org/obo/UBERON_0001157,transverse colon,colon transversum +http://purl.obolibrary.org/obo/UBERON_0001158,descending colon,colon descendens +http://purl.obolibrary.org/obo/UBERON_0001159,sigmoid colon, +http://purl.obolibrary.org/obo/UBERON_0001160,fundus of stomach,fundus gastricus (ventricularis) +http://purl.obolibrary.org/obo/UBERON_0001160,fundus of stomach,gastric fundus +http://purl.obolibrary.org/obo/UBERON_0001160,fundus of stomach,stomach fundus +http://purl.obolibrary.org/obo/UBERON_0001161,body of stomach,corpus gastricum (ventriculare) +http://purl.obolibrary.org/obo/UBERON_0001161,body of stomach,gastric body +http://purl.obolibrary.org/obo/UBERON_0001161,body of stomach,stomach body +http://purl.obolibrary.org/obo/UBERON_0001162,cardia of stomach,cardial part of stomach +http://purl.obolibrary.org/obo/UBERON_0001162,cardia of stomach,gastric cardia +http://purl.obolibrary.org/obo/UBERON_0001162,cardia of stomach,pars cardiaca (gaster) +http://purl.obolibrary.org/obo/UBERON_0001162,cardia of stomach,pars cardiaca gastricae +http://purl.obolibrary.org/obo/UBERON_0001162,cardia of stomach,stomach cardiac region +http://purl.obolibrary.org/obo/UBERON_0001163,lesser curvature of stomach,stomach lesser curvature +http://purl.obolibrary.org/obo/UBERON_0001164,greater curvature of stomach,stomach greater curvature +http://purl.obolibrary.org/obo/UBERON_0001165,pyloric antrum,antrum +http://purl.obolibrary.org/obo/UBERON_0001165,pyloric antrum,antrum of Willis +http://purl.obolibrary.org/obo/UBERON_0001165,pyloric antrum,antrum of stomach +http://purl.obolibrary.org/obo/UBERON_0001165,pyloric antrum,antrum pylori +http://purl.obolibrary.org/obo/UBERON_0001165,pyloric antrum,antrum pyloricum +http://purl.obolibrary.org/obo/UBERON_0001165,pyloric antrum,gastric antrum +http://purl.obolibrary.org/obo/UBERON_0001165,pyloric antrum,stomach antrum +http://purl.obolibrary.org/obo/UBERON_0001165,pyloric antrum,stomach pyloric antrum +http://purl.obolibrary.org/obo/UBERON_0001166,pylorus,pars pylorica +http://purl.obolibrary.org/obo/UBERON_0001166,pylorus,pars pylorica gastricae +http://purl.obolibrary.org/obo/UBERON_0001166,pylorus,pyloric part of stomach +http://purl.obolibrary.org/obo/UBERON_0001166,pylorus,pyloric region +http://purl.obolibrary.org/obo/UBERON_0001166,pylorus,stomach pyloric region +http://purl.obolibrary.org/obo/UBERON_0001166,pylorus,valvula pylori +http://purl.obolibrary.org/obo/UBERON_0001167,wall of stomach,anatomical wall of stomach +http://purl.obolibrary.org/obo/UBERON_0001167,wall of stomach,anatomical wall of ventriculus +http://purl.obolibrary.org/obo/UBERON_0001167,wall of stomach,gastric wall +http://purl.obolibrary.org/obo/UBERON_0001167,wall of stomach,stomach anatomical wall +http://purl.obolibrary.org/obo/UBERON_0001167,wall of stomach,stomach wall +http://purl.obolibrary.org/obo/UBERON_0001167,wall of stomach,ventriculus anatomical wall +http://purl.obolibrary.org/obo/UBERON_0001167,wall of stomach,ventriculus wall +http://purl.obolibrary.org/obo/UBERON_0001167,wall of stomach,wall of ventriculus +http://purl.obolibrary.org/obo/UBERON_0001168,wall of small intestine,anatomical wall of small bowel +http://purl.obolibrary.org/obo/UBERON_0001168,wall of small intestine,anatomical wall of small intestine +http://purl.obolibrary.org/obo/UBERON_0001168,wall of small intestine,small bowel anatomical wall +http://purl.obolibrary.org/obo/UBERON_0001168,wall of small intestine,small bowel wall +http://purl.obolibrary.org/obo/UBERON_0001168,wall of small intestine,small intestinal wall +http://purl.obolibrary.org/obo/UBERON_0001168,wall of small intestine,small intestine anatomical wall +http://purl.obolibrary.org/obo/UBERON_0001168,wall of small intestine,small intestine wall +http://purl.obolibrary.org/obo/UBERON_0001168,wall of small intestine,wall of small bowel +http://purl.obolibrary.org/obo/UBERON_0001169,wall of large intestine,anatomical wall of large intestine +http://purl.obolibrary.org/obo/UBERON_0001169,wall of large intestine,large intestinal wall +http://purl.obolibrary.org/obo/UBERON_0001169,wall of large intestine,large intestine anatomical wall +http://purl.obolibrary.org/obo/UBERON_0001169,wall of large intestine,large intestine wall +http://purl.obolibrary.org/obo/UBERON_0001170,mesentery of small intestine,mesentery (proper) +http://purl.obolibrary.org/obo/UBERON_0001170,mesentery of small intestine,mesentery proper +http://purl.obolibrary.org/obo/UBERON_0001170,mesentery of small intestine,small intestinal mesentery +http://purl.obolibrary.org/obo/UBERON_0001170,mesentery of small intestine,small intestine mesentery +http://purl.obolibrary.org/obo/UBERON_0001171,portal lobule, +http://purl.obolibrary.org/obo/UBERON_0001172,hepatic acinus,liver acinus +http://purl.obolibrary.org/obo/UBERON_0001172,hepatic acinus,portal acinus +http://purl.obolibrary.org/obo/UBERON_0001173,biliary tree, +http://purl.obolibrary.org/obo/UBERON_0001174,common bile duct,ductus choledochus (biliaris) +http://purl.obolibrary.org/obo/UBERON_0001175,common hepatic duct, +http://purl.obolibrary.org/obo/UBERON_0001176,right hepatic duct, +http://purl.obolibrary.org/obo/UBERON_0001177,left hepatic duct, +http://purl.obolibrary.org/obo/UBERON_0001178,visceral peritoneum,visceral serous membrane of peritoneum +http://purl.obolibrary.org/obo/UBERON_0001179,peritoneal cavity, +http://purl.obolibrary.org/obo/UBERON_0001180,superior recess of lesser sac,omental bursa superior recess +http://purl.obolibrary.org/obo/UBERON_0001180,superior recess of lesser sac,recessus superior bursae omentalis +http://purl.obolibrary.org/obo/UBERON_0001180,superior recess of lesser sac,recessus superior omentalis +http://purl.obolibrary.org/obo/UBERON_0001180,superior recess of lesser sac,superior omental bursa +http://purl.obolibrary.org/obo/UBERON_0001180,superior recess of lesser sac,superior recess +http://purl.obolibrary.org/obo/UBERON_0001180,superior recess of lesser sac,superior recess of omental bursa +http://purl.obolibrary.org/obo/UBERON_0001181,inferior recess of lesser sac,inferior omental bursa +http://purl.obolibrary.org/obo/UBERON_0001181,inferior recess of lesser sac,inferior recess +http://purl.obolibrary.org/obo/UBERON_0001181,inferior recess of lesser sac,inferior recess of omental bursa +http://purl.obolibrary.org/obo/UBERON_0001181,inferior recess of lesser sac,omental bursa inferior recess +http://purl.obolibrary.org/obo/UBERON_0001181,inferior recess of lesser sac,recessus inferior bursae omentalis +http://purl.obolibrary.org/obo/UBERON_0001181,inferior recess of lesser sac,recessus inferior omentalis +http://purl.obolibrary.org/obo/UBERON_0001182,superior mesenteric artery,arteria mesenterica superior +http://purl.obolibrary.org/obo/UBERON_0001182,superior mesenteric artery,superior mesenteric arterial tree +http://purl.obolibrary.org/obo/UBERON_0001183,inferior mesenteric artery,inferior mesenteric arterial tree +http://purl.obolibrary.org/obo/UBERON_0001184,renal artery,renal arterial tree +http://purl.obolibrary.org/obo/UBERON_0001185,right renal artery,right renal arterial tree +http://purl.obolibrary.org/obo/UBERON_0001186,left renal artery,left renal arterial tree +http://purl.obolibrary.org/obo/UBERON_0001187,testicular artery,testicular arterial tree +http://purl.obolibrary.org/obo/UBERON_0001188,right testicular artery,right spermatic artery +http://purl.obolibrary.org/obo/UBERON_0001188,right testicular artery,trunk of right testicular arterial tree +http://purl.obolibrary.org/obo/UBERON_0001189,left testicular artery,left spermatic artery +http://purl.obolibrary.org/obo/UBERON_0001189,left testicular artery,trunk of left testicular arterial tree +http://purl.obolibrary.org/obo/UBERON_0001190,ovarian artery,ovarian arterial tree +http://purl.obolibrary.org/obo/UBERON_0001191,common iliac artery,common iliac arterial tree +http://purl.obolibrary.org/obo/UBERON_0001192,left gastric artery, +http://purl.obolibrary.org/obo/UBERON_0001193,hepatic artery,arteria hepatica +http://purl.obolibrary.org/obo/UBERON_0001193,hepatic artery,arteria hepatica propria +http://purl.obolibrary.org/obo/UBERON_0001194,splenic artery,arteria lienalis +http://purl.obolibrary.org/obo/UBERON_0001194,splenic artery,arteria splenica +http://purl.obolibrary.org/obo/UBERON_0001194,splenic artery,lienal artery +http://purl.obolibrary.org/obo/UBERON_0001195,inferior pancreaticoduodenal artery,arteriae pancreaticoduodenales inferiores +http://purl.obolibrary.org/obo/UBERON_0001195,inferior pancreaticoduodenal artery,inferior pancreatico-duodenal artery +http://purl.obolibrary.org/obo/UBERON_0001196,middle colic artery, +http://purl.obolibrary.org/obo/UBERON_0001197,ileocolic artery, +http://purl.obolibrary.org/obo/UBERON_0001198,superior suprarenal artery,arteriae suprarenales superiores +http://purl.obolibrary.org/obo/UBERON_0001198,superior suprarenal artery,superior adrenal branch of inferior phrenic artery +http://purl.obolibrary.org/obo/UBERON_0001198,superior suprarenal artery,superior suprarenal branch of inferior phrenic artery +http://purl.obolibrary.org/obo/UBERON_0001199,mucosa of stomach,Magenschleimhaut +http://purl.obolibrary.org/obo/UBERON_0001199,mucosa of stomach,gastric mucosa +http://purl.obolibrary.org/obo/UBERON_0001199,mucosa of stomach,gastric mucous membrane +http://purl.obolibrary.org/obo/UBERON_0001199,mucosa of stomach,mucosa of organ of stomach +http://purl.obolibrary.org/obo/UBERON_0001199,mucosa of stomach,mucosa of organ of ventriculus +http://purl.obolibrary.org/obo/UBERON_0001199,mucosa of stomach,mucosa of ventriculus +http://purl.obolibrary.org/obo/UBERON_0001199,mucosa of stomach,mucous membrane of stomach +http://purl.obolibrary.org/obo/UBERON_0001199,mucosa of stomach,mucous membrane of ventriculus +http://purl.obolibrary.org/obo/UBERON_0001199,mucosa of stomach,organ mucosa of stomach +http://purl.obolibrary.org/obo/UBERON_0001199,mucosa of stomach,organ mucosa of ventriculus +http://purl.obolibrary.org/obo/UBERON_0001199,mucosa of stomach,stomach mucosa +http://purl.obolibrary.org/obo/UBERON_0001199,mucosa of stomach,stomach mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0001199,mucosa of stomach,stomach mucous membrane +http://purl.obolibrary.org/obo/UBERON_0001199,mucosa of stomach,stomach organ mucosa +http://purl.obolibrary.org/obo/UBERON_0001199,mucosa of stomach,tunica mucosa (gaster) +http://purl.obolibrary.org/obo/UBERON_0001199,mucosa of stomach,tunica mucosa gastricae +http://purl.obolibrary.org/obo/UBERON_0001199,mucosa of stomach,tunica mucosa gastris +http://purl.obolibrary.org/obo/UBERON_0001199,mucosa of stomach,ventriculus mucosa +http://purl.obolibrary.org/obo/UBERON_0001199,mucosa of stomach,ventriculus mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0001199,mucosa of stomach,ventriculus mucous membrane +http://purl.obolibrary.org/obo/UBERON_0001199,mucosa of stomach,ventriculus organ mucosa +http://purl.obolibrary.org/obo/UBERON_0001200,submucosa of stomach,gastric submucosa +http://purl.obolibrary.org/obo/UBERON_0001200,submucosa of stomach,stomach submucosa +http://purl.obolibrary.org/obo/UBERON_0001200,submucosa of stomach,submucosa of ventriculus +http://purl.obolibrary.org/obo/UBERON_0001200,submucosa of stomach,submucous layer of stomach +http://purl.obolibrary.org/obo/UBERON_0001200,submucosa of stomach,tela submucosa (gaster) +http://purl.obolibrary.org/obo/UBERON_0001200,submucosa of stomach,tela submucosa gastricae +http://purl.obolibrary.org/obo/UBERON_0001200,submucosa of stomach,tela submucosa ventriculi +http://purl.obolibrary.org/obo/UBERON_0001200,submucosa of stomach,ventriculus submucosa +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,anatomical wall of stomach serosa +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,anatomical wall of stomach serous membrane +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,anatomical wall of ventriculus serosa +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,anatomical wall of ventriculus serous membrane +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,gastric serosa +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,gastric wall serosa +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,gastric wall serous membrane +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,serosa of anatomical wall of stomach +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,serosa of anatomical wall of ventriculus +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,serosa of gastric wall +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,serosa of stomach anatomical wall +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,serosa of stomach wall +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,serosa of ventriculus anatomical wall +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,serosa of ventriculus wall +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,serosa of wall of stomach +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,serosa of wall of ventriculus +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,serous coat of stomach +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,serous membrane of anatomical wall of stomach +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,serous membrane of anatomical wall of ventriculus +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,serous membrane of gastric wall +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,serous membrane of stomach anatomical wall +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,serous membrane of stomach wall +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,serous membrane of ventriculus anatomical wall +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,serous membrane of ventriculus wall +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,serous membrane of wall of stomach +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,serous membrane of wall of ventriculus +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,stomach anatomical wall serosa +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,stomach anatomical wall serous membrane +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,stomach serosa +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,stomach wall serosa +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,stomach wall serous membrane +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,tunica serosa (gaster) +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,tunica serosa gastricae +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,ventriculus anatomical wall serosa +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,ventriculus anatomical wall serous membrane +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,ventriculus wall serosa +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,ventriculus wall serous membrane +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,visceral peritoneum of stomach +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,wall of stomach serosa +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,wall of stomach serous membrane +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,wall of ventriculus serosa +http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach,wall of ventriculus serous membrane +http://purl.obolibrary.org/obo/UBERON_0001202,pyloric sphincter,pyloric valve +http://purl.obolibrary.org/obo/UBERON_0001203,muscularis mucosae of stomach,gastric muscularis mucosa +http://purl.obolibrary.org/obo/UBERON_0001203,muscularis mucosae of stomach,lamina muscularis mucosae (tunica mucosa)(gaster) +http://purl.obolibrary.org/obo/UBERON_0001203,muscularis mucosae of stomach,lamina muscularis mucosae gastricae +http://purl.obolibrary.org/obo/UBERON_0001203,muscularis mucosae of stomach,lamina muscularis of gastric mucosa +http://purl.obolibrary.org/obo/UBERON_0001203,muscularis mucosae of stomach,muscular coat of stomach +http://purl.obolibrary.org/obo/UBERON_0001203,muscularis mucosae of stomach,stomach muscularis mucosa +http://purl.obolibrary.org/obo/UBERON_0001203,muscularis mucosae of stomach,tunica muscularis gastricae +http://purl.obolibrary.org/obo/UBERON_0001204,mucosa of small intestine,mucosa of organ of small bowel +http://purl.obolibrary.org/obo/UBERON_0001204,mucosa of small intestine,mucosa of organ of small intestine +http://purl.obolibrary.org/obo/UBERON_0001204,mucosa of small intestine,mucosa of small bowel +http://purl.obolibrary.org/obo/UBERON_0001204,mucosa of small intestine,mucous membrane of small bowel +http://purl.obolibrary.org/obo/UBERON_0001204,mucosa of small intestine,mucous membrane of small intestine +http://purl.obolibrary.org/obo/UBERON_0001204,mucosa of small intestine,organ mucosa of small bowel +http://purl.obolibrary.org/obo/UBERON_0001204,mucosa of small intestine,organ mucosa of small intestine +http://purl.obolibrary.org/obo/UBERON_0001204,mucosa of small intestine,small bowel mucosa +http://purl.obolibrary.org/obo/UBERON_0001204,mucosa of small intestine,small bowel mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0001204,mucosa of small intestine,small bowel mucous membrane +http://purl.obolibrary.org/obo/UBERON_0001204,mucosa of small intestine,small bowel organ mucosa +http://purl.obolibrary.org/obo/UBERON_0001204,mucosa of small intestine,small intestinal mucosa +http://purl.obolibrary.org/obo/UBERON_0001204,mucosa of small intestine,small intestine mucosa +http://purl.obolibrary.org/obo/UBERON_0001204,mucosa of small intestine,small intestine mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0001204,mucosa of small intestine,small intestine mucous membrane +http://purl.obolibrary.org/obo/UBERON_0001204,mucosa of small intestine,small intestine organ mucosa +http://purl.obolibrary.org/obo/UBERON_0001204,mucosa of small intestine,tunica mucosa (intestinum tenue) +http://purl.obolibrary.org/obo/UBERON_0001204,mucosa of small intestine,tunica mucosa intestini tenuis +http://purl.obolibrary.org/obo/UBERON_0001205,submucosa of small intestine,small bowel submucosa +http://purl.obolibrary.org/obo/UBERON_0001205,submucosa of small intestine,small intestinal submucosa +http://purl.obolibrary.org/obo/UBERON_0001205,submucosa of small intestine,small intestine submucosa +http://purl.obolibrary.org/obo/UBERON_0001205,submucosa of small intestine,submucosa of small bowel +http://purl.obolibrary.org/obo/UBERON_0001205,submucosa of small intestine,tela submucosa (intestinum tenue) +http://purl.obolibrary.org/obo/UBERON_0001205,submucosa of small intestine,tela submucosa intestini tenuis +http://purl.obolibrary.org/obo/UBERON_0001206,serosa of small intestine,serosa of small bowel +http://purl.obolibrary.org/obo/UBERON_0001206,serosa of small intestine,serous coat of small intestine +http://purl.obolibrary.org/obo/UBERON_0001206,serosa of small intestine,serous membrane of small bowel +http://purl.obolibrary.org/obo/UBERON_0001206,serosa of small intestine,serous membrane of small intestine +http://purl.obolibrary.org/obo/UBERON_0001206,serosa of small intestine,small bowel serosa +http://purl.obolibrary.org/obo/UBERON_0001206,serosa of small intestine,small bowel serous membrane +http://purl.obolibrary.org/obo/UBERON_0001206,serosa of small intestine,small intestinal serosa +http://purl.obolibrary.org/obo/UBERON_0001206,serosa of small intestine,small intestine serosa +http://purl.obolibrary.org/obo/UBERON_0001206,serosa of small intestine,small intestine serous membrane +http://purl.obolibrary.org/obo/UBERON_0001206,serosa of small intestine,tunica serosa (intestinum tenue) +http://purl.obolibrary.org/obo/UBERON_0001206,serosa of small intestine,tunica serosa intestini tenuis +http://purl.obolibrary.org/obo/UBERON_0001206,serosa of small intestine,visceral peritoneum of small intestine +http://purl.obolibrary.org/obo/UBERON_0001207,mucosa of large intestine,large intestinal mucosa +http://purl.obolibrary.org/obo/UBERON_0001207,mucosa of large intestine,large intestine mucosa +http://purl.obolibrary.org/obo/UBERON_0001207,mucosa of large intestine,large intestine mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0001207,mucosa of large intestine,large intestine mucous membrane +http://purl.obolibrary.org/obo/UBERON_0001207,mucosa of large intestine,large intestine organ mucosa +http://purl.obolibrary.org/obo/UBERON_0001207,mucosa of large intestine,mucosa of organ of large intestine +http://purl.obolibrary.org/obo/UBERON_0001207,mucosa of large intestine,mucous membrane of large intestine +http://purl.obolibrary.org/obo/UBERON_0001207,mucosa of large intestine,organ mucosa of large intestine +http://purl.obolibrary.org/obo/UBERON_0001207,mucosa of large intestine,tunica mucosa intestini crassi +http://purl.obolibrary.org/obo/UBERON_0001208,submucosa of large intestine,large intestinal submucosa +http://purl.obolibrary.org/obo/UBERON_0001208,submucosa of large intestine,large intestine submucosa +http://purl.obolibrary.org/obo/UBERON_0001208,submucosa of large intestine,tela submucosa intestini crassi +http://purl.obolibrary.org/obo/UBERON_0001209,serosa of large intestine,large intestinal serosa +http://purl.obolibrary.org/obo/UBERON_0001209,serosa of large intestine,large intestine serosa +http://purl.obolibrary.org/obo/UBERON_0001209,serosa of large intestine,large intestine serous membrane +http://purl.obolibrary.org/obo/UBERON_0001209,serosa of large intestine,serous coat of large intestine +http://purl.obolibrary.org/obo/UBERON_0001209,serosa of large intestine,serous membrane of large intestine +http://purl.obolibrary.org/obo/UBERON_0001209,serosa of large intestine,tunica serosa intestini crassi +http://purl.obolibrary.org/obo/UBERON_0001209,serosa of large intestine,visceral peritoneum of large intestine +http://purl.obolibrary.org/obo/UBERON_0001210,muscularis mucosae of small intestine,lamina muscularis mucosae (tunica mucosa)(intestinum tenue) +http://purl.obolibrary.org/obo/UBERON_0001210,muscularis mucosae of small intestine,lamina muscularis mucosae intestini tenuis +http://purl.obolibrary.org/obo/UBERON_0001210,muscularis mucosae of small intestine,lamina muscularis of small intestine mucous membrane +http://purl.obolibrary.org/obo/UBERON_0001210,muscularis mucosae of small intestine,small intestine muscularis mucosa +http://purl.obolibrary.org/obo/UBERON_0001211,Peyer's patch,Peyers gland +http://purl.obolibrary.org/obo/UBERON_0001211,Peyer's patch,Peyers patch +http://purl.obolibrary.org/obo/UBERON_0001211,Peyer's patch,aggregated lymphoid follicle of intestine +http://purl.obolibrary.org/obo/UBERON_0001211,Peyer's patch,aggregated lymphoid nodule +http://purl.obolibrary.org/obo/UBERON_0001211,Peyer's patch,noduli lymphoidei aggregati +http://purl.obolibrary.org/obo/UBERON_0001212,duodenal gland,Brunner's gland +http://purl.obolibrary.org/obo/UBERON_0001212,duodenal gland,gland of Brunner +http://purl.obolibrary.org/obo/UBERON_0001212,duodenal gland,submucosal gland of duodenum +http://purl.obolibrary.org/obo/UBERON_0001213,intestinal villus,enteric villi +http://purl.obolibrary.org/obo/UBERON_0001213,intestinal villus,enteric villous +http://purl.obolibrary.org/obo/UBERON_0001213,intestinal villus,enteric villus +http://purl.obolibrary.org/obo/UBERON_0001213,intestinal villus,intestinal villi +http://purl.obolibrary.org/obo/UBERON_0001213,intestinal villus,intestinal villus layer +http://purl.obolibrary.org/obo/UBERON_0001213,intestinal villus,small intestine villus +http://purl.obolibrary.org/obo/UBERON_0001213,intestinal villus,villi intestinales +http://purl.obolibrary.org/obo/UBERON_0001213,intestinal villus,villus +http://purl.obolibrary.org/obo/UBERON_0001213,intestinal villus,villus intestinalis (intestinum tenue) +http://purl.obolibrary.org/obo/UBERON_0001214,pancreatic tributary of splenic vein,pancreatic vein +http://purl.obolibrary.org/obo/UBERON_0001215,inferior mesenteric vein, +http://purl.obolibrary.org/obo/UBERON_0001216,jejunal vein, +http://purl.obolibrary.org/obo/UBERON_0001217,ileal vein, +http://purl.obolibrary.org/obo/UBERON_0001218,middle colic vein,vena colica media (intermedia) +http://purl.obolibrary.org/obo/UBERON_0001219,ileocolic vein, +http://purl.obolibrary.org/obo/UBERON_0001220,quadratus lumborum,muscle of posterior abdominal wall +http://purl.obolibrary.org/obo/UBERON_0001221,transversus abdominis muscle,musculus transversus abdominis +http://purl.obolibrary.org/obo/UBERON_0001221,transversus abdominis muscle,transverse abdominal +http://purl.obolibrary.org/obo/UBERON_0001221,transversus abdominis muscle,transversis abdominus +http://purl.obolibrary.org/obo/UBERON_0001221,transversus abdominis muscle,transversus abdominis +http://purl.obolibrary.org/obo/UBERON_0001222,right ureter, +http://purl.obolibrary.org/obo/UBERON_0001223,left ureter, +http://purl.obolibrary.org/obo/UBERON_0001224,renal pelvis,kidney pelvis +http://purl.obolibrary.org/obo/UBERON_0001224,renal pelvis,pelvis of ureter +http://purl.obolibrary.org/obo/UBERON_0001225,cortex of kidney,cortex renalis +http://purl.obolibrary.org/obo/UBERON_0001225,cortex of kidney,kidney cortex +http://purl.obolibrary.org/obo/UBERON_0001225,cortex of kidney,renal cortex +http://purl.obolibrary.org/obo/UBERON_0001226,major calyx,calices renales majores +http://purl.obolibrary.org/obo/UBERON_0001226,major calyx,major calix +http://purl.obolibrary.org/obo/UBERON_0001227,minor calyx,calices renales minores +http://purl.obolibrary.org/obo/UBERON_0001227,minor calyx,minor calix +http://purl.obolibrary.org/obo/UBERON_0001228,renal papilla,kidney papilla +http://purl.obolibrary.org/obo/UBERON_0001229,renal corpuscle,Malphigian corpuscle +http://purl.obolibrary.org/obo/UBERON_0001229,renal corpuscle,Malpighian corpuscle +http://purl.obolibrary.org/obo/UBERON_0001229,renal corpuscle,corpusculum renale +http://purl.obolibrary.org/obo/UBERON_0001230,glomerular capsule,Bowman's capsule +http://purl.obolibrary.org/obo/UBERON_0001230,glomerular capsule,Bowmans capsule +http://purl.obolibrary.org/obo/UBERON_0001230,glomerular capsule,capsula glomerularis +http://purl.obolibrary.org/obo/UBERON_0001230,glomerular capsule,renal glomerular capsule +http://purl.obolibrary.org/obo/UBERON_0001231,nephron tubule,kidney tubule +http://purl.obolibrary.org/obo/UBERON_0001231,nephron tubule,tubulus renalis +http://purl.obolibrary.org/obo/UBERON_0001232,collecting duct of renal tubule,collecting duct +http://purl.obolibrary.org/obo/UBERON_0001232,collecting duct of renal tubule,kidney collecting duct +http://purl.obolibrary.org/obo/UBERON_0001232,collecting duct of renal tubule,renal collecting tubule +http://purl.obolibrary.org/obo/UBERON_0001232,collecting duct of renal tubule,tubulus renalis arcuatus +http://purl.obolibrary.org/obo/UBERON_0001232,collecting duct of renal tubule,tubulus renalis colligens +http://purl.obolibrary.org/obo/UBERON_0001233,right adrenal gland,glandula suprarenalis dexter +http://purl.obolibrary.org/obo/UBERON_0001233,right adrenal gland,right suprarenal gland +http://purl.obolibrary.org/obo/UBERON_0001234,left adrenal gland,glandula suprarenalis sinister +http://purl.obolibrary.org/obo/UBERON_0001234,left adrenal gland,left suprarenal gland +http://purl.obolibrary.org/obo/UBERON_0001235,adrenal cortex,adrenal gland cortex +http://purl.obolibrary.org/obo/UBERON_0001235,adrenal cortex,cortex (glandula suprarenalis) +http://purl.obolibrary.org/obo/UBERON_0001235,adrenal cortex,cortex glandulae suprarenalis +http://purl.obolibrary.org/obo/UBERON_0001235,adrenal cortex,cortex of adrenal gland +http://purl.obolibrary.org/obo/UBERON_0001235,adrenal cortex,cortex of suprarenal gland +http://purl.obolibrary.org/obo/UBERON_0001235,adrenal cortex,suprarenal +http://purl.obolibrary.org/obo/UBERON_0001235,adrenal cortex,suprarenal cortex +http://purl.obolibrary.org/obo/UBERON_0001236,adrenal medulla,adrenal central medulla +http://purl.obolibrary.org/obo/UBERON_0001236,adrenal medulla,adrenal gland medulla +http://purl.obolibrary.org/obo/UBERON_0001236,adrenal medulla,chromaffin cells +http://purl.obolibrary.org/obo/UBERON_0001236,adrenal medulla,medulla (glandula suprarenalis) +http://purl.obolibrary.org/obo/UBERON_0001236,adrenal medulla,medulla glandulae suprarenalis +http://purl.obolibrary.org/obo/UBERON_0001236,adrenal medulla,medulla of adrenal gland +http://purl.obolibrary.org/obo/UBERON_0001236,adrenal medulla,medulla of glandula suprarenalis +http://purl.obolibrary.org/obo/UBERON_0001236,adrenal medulla,medulla of suprarenal gland +http://purl.obolibrary.org/obo/UBERON_0001236,adrenal medulla,suprarenal medulla +http://purl.obolibrary.org/obo/UBERON_0001237,paraaortic body,organ of Zuckerkandl +http://purl.obolibrary.org/obo/UBERON_0001237,paraaortic body,paraganglion of Zuckerkandl +http://purl.obolibrary.org/obo/UBERON_0001238,lamina propria of small intestine,lamina propria mucosa of small bowel +http://purl.obolibrary.org/obo/UBERON_0001238,lamina propria of small intestine,lamina propria mucosa of small intestine +http://purl.obolibrary.org/obo/UBERON_0001238,lamina propria of small intestine,lamina propria mucosae of small bowel +http://purl.obolibrary.org/obo/UBERON_0001238,lamina propria of small intestine,lamina propria mucosae of small intestine +http://purl.obolibrary.org/obo/UBERON_0001238,lamina propria of small intestine,lamina propria of mucosa of small intestine +http://purl.obolibrary.org/obo/UBERON_0001238,lamina propria of small intestine,lamina propria of small bowel +http://purl.obolibrary.org/obo/UBERON_0001238,lamina propria of small intestine,small bowel lamina propria +http://purl.obolibrary.org/obo/UBERON_0001238,lamina propria of small intestine,small bowel lamina propria mucosa +http://purl.obolibrary.org/obo/UBERON_0001238,lamina propria of small intestine,small bowel lamina propria mucosae +http://purl.obolibrary.org/obo/UBERON_0001238,lamina propria of small intestine,small intestine lamina propria +http://purl.obolibrary.org/obo/UBERON_0001238,lamina propria of small intestine,small intestine lamina propria mucosa +http://purl.obolibrary.org/obo/UBERON_0001238,lamina propria of small intestine,small intestine lamina propria mucosae +http://purl.obolibrary.org/obo/UBERON_0001239,muscularis mucosae of large intestine,lamina muscularis mucosae intestini crassi +http://purl.obolibrary.org/obo/UBERON_0001239,muscularis mucosae of large intestine,lamina muscularis of large intestine mucosa +http://purl.obolibrary.org/obo/UBERON_0001239,muscularis mucosae of large intestine,lamina muscularis of large intestine mucous membrane +http://purl.obolibrary.org/obo/UBERON_0001239,muscularis mucosae of large intestine,large intestine muscularis mucosa +http://purl.obolibrary.org/obo/UBERON_0001240,muscularis mucosae of intestine,intestine muscularis mucosa +http://purl.obolibrary.org/obo/UBERON_0001241,crypt of Lieberkuhn of small intestine,Lieberkühn crypt of small bowel +http://purl.obolibrary.org/obo/UBERON_0001241,crypt of Lieberkuhn of small intestine,Lieberkühn crypt of small intestine +http://purl.obolibrary.org/obo/UBERON_0001241,crypt of Lieberkuhn of small intestine,crypt of Lieberkuhn of small bowel +http://purl.obolibrary.org/obo/UBERON_0001241,crypt of Lieberkuhn of small intestine,crypt of Lieberkuhn of small intestine +http://purl.obolibrary.org/obo/UBERON_0001241,crypt of Lieberkuhn of small intestine,intestinal gland of small bowel +http://purl.obolibrary.org/obo/UBERON_0001241,crypt of Lieberkuhn of small intestine,intestinal gland of small intestine +http://purl.obolibrary.org/obo/UBERON_0001241,crypt of Lieberkuhn of small intestine,small bowel Lieberkühn crypt +http://purl.obolibrary.org/obo/UBERON_0001241,crypt of Lieberkuhn of small intestine,small bowel crypt of Lieberkuhn +http://purl.obolibrary.org/obo/UBERON_0001241,crypt of Lieberkuhn of small intestine,small bowel intestinal gland +http://purl.obolibrary.org/obo/UBERON_0001241,crypt of Lieberkuhn of small intestine,small intestinal crypt of Lieberkuhn +http://purl.obolibrary.org/obo/UBERON_0001241,crypt of Lieberkuhn of small intestine,small intestine Lieberkühn crypt +http://purl.obolibrary.org/obo/UBERON_0001241,crypt of Lieberkuhn of small intestine,small intestine crypt of Lieberkuhn +http://purl.obolibrary.org/obo/UBERON_0001241,crypt of Lieberkuhn of small intestine,small intestine intestinal gland +http://purl.obolibrary.org/obo/UBERON_0001242,intestinal mucosa,bowel mucosa +http://purl.obolibrary.org/obo/UBERON_0001242,intestinal mucosa,bowel mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0001242,intestinal mucosa,bowel mucous membrane +http://purl.obolibrary.org/obo/UBERON_0001242,intestinal mucosa,bowel organ mucosa +http://purl.obolibrary.org/obo/UBERON_0001242,intestinal mucosa,intestine mucosa +http://purl.obolibrary.org/obo/UBERON_0001242,intestinal mucosa,intestine mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0001242,intestinal mucosa,intestine mucous membrane +http://purl.obolibrary.org/obo/UBERON_0001242,intestinal mucosa,intestine organ mucosa +http://purl.obolibrary.org/obo/UBERON_0001242,intestinal mucosa,mucosa of bowel +http://purl.obolibrary.org/obo/UBERON_0001242,intestinal mucosa,mucosa of intestine +http://purl.obolibrary.org/obo/UBERON_0001242,intestinal mucosa,mucosa of organ of bowel +http://purl.obolibrary.org/obo/UBERON_0001242,intestinal mucosa,mucosa of organ of intestine +http://purl.obolibrary.org/obo/UBERON_0001242,intestinal mucosa,mucous membrane of bowel +http://purl.obolibrary.org/obo/UBERON_0001242,intestinal mucosa,mucous membrane of intestine +http://purl.obolibrary.org/obo/UBERON_0001242,intestinal mucosa,organ mucosa of bowel +http://purl.obolibrary.org/obo/UBERON_0001242,intestinal mucosa,organ mucosa of intestine +http://purl.obolibrary.org/obo/UBERON_0001242,intestinal mucosa,tunica mucosa intestini +http://purl.obolibrary.org/obo/UBERON_0001243,serosa of intestine,anatomical wall of bowel serosa +http://purl.obolibrary.org/obo/UBERON_0001243,serosa of intestine,anatomical wall of bowel serous membrane +http://purl.obolibrary.org/obo/UBERON_0001243,serosa of intestine,anatomical wall of intestine serosa +http://purl.obolibrary.org/obo/UBERON_0001243,serosa of intestine,anatomical wall of intestine serous membrane +http://purl.obolibrary.org/obo/UBERON_0001243,serosa of intestine,bowel anatomical wall serosa +http://purl.obolibrary.org/obo/UBERON_0001243,serosa of intestine,bowel anatomical wall serous membrane +http://purl.obolibrary.org/obo/UBERON_0001243,serosa of intestine,bowel wall serosa +http://purl.obolibrary.org/obo/UBERON_0001243,serosa of intestine,bowel wall serous membrane +http://purl.obolibrary.org/obo/UBERON_0001243,serosa of intestine,intestinal serosa +http://purl.obolibrary.org/obo/UBERON_0001243,serosa of intestine,intestinal wall serosa +http://purl.obolibrary.org/obo/UBERON_0001243,serosa of intestine,intestinal wall serous membrane +http://purl.obolibrary.org/obo/UBERON_0001243,serosa of intestine,intestine anatomical wall serosa +http://purl.obolibrary.org/obo/UBERON_0001243,serosa of intestine,intestine anatomical wall serous membrane +http://purl.obolibrary.org/obo/UBERON_0001243,serosa of intestine,intestine serosa +http://purl.obolibrary.org/obo/UBERON_0001243,serosa of intestine,intestine wall serosa +http://purl.obolibrary.org/obo/UBERON_0001243,serosa of intestine,intestine wall serous membrane +http://purl.obolibrary.org/obo/UBERON_0001243,serosa of intestine,serosa of anatomical wall of bowel +http://purl.obolibrary.org/obo/UBERON_0001243,serosa of intestine,serosa of anatomical wall of intestine +http://purl.obolibrary.org/obo/UBERON_0001243,serosa of intestine,serosa of bowel anatomical wall +http://purl.obolibrary.org/obo/UBERON_0001243,serosa of intestine,serosa of bowel wall +http://purl.obolibrary.org/obo/UBERON_0001243,serosa of intestine,serosa of intestinal wall +http://purl.obolibrary.org/obo/UBERON_0001243,serosa of intestine,serosa of intestine anatomical wall +http://purl.obolibrary.org/obo/UBERON_0001243,serosa of intestine,serosa of intestine wall +http://purl.obolibrary.org/obo/UBERON_0001243,serosa of intestine,serosa of wall of bowel +http://purl.obolibrary.org/obo/UBERON_0001243,serosa of intestine,serosa of wall of intestine +http://purl.obolibrary.org/obo/UBERON_0001243,serosa of intestine,serous membrane of anatomical wall of bowel +http://purl.obolibrary.org/obo/UBERON_0001243,serosa of intestine,serous membrane of anatomical wall of intestine +http://purl.obolibrary.org/obo/UBERON_0001243,serosa of intestine,serous membrane of bowel anatomical wall +http://purl.obolibrary.org/obo/UBERON_0001243,serosa of intestine,serous membrane of bowel wall +http://purl.obolibrary.org/obo/UBERON_0001243,serosa of intestine,serous membrane of intestinal wall +http://purl.obolibrary.org/obo/UBERON_0001243,serosa of intestine,serous membrane of intestine anatomical wall +http://purl.obolibrary.org/obo/UBERON_0001243,serosa of intestine,serous membrane of intestine wall +http://purl.obolibrary.org/obo/UBERON_0001243,serosa of intestine,serous membrane of wall of bowel +http://purl.obolibrary.org/obo/UBERON_0001243,serosa of intestine,serous membrane of wall of intestine +http://purl.obolibrary.org/obo/UBERON_0001243,serosa of intestine,visceral peritoneum of intestine +http://purl.obolibrary.org/obo/UBERON_0001243,serosa of intestine,wall of bowel serosa +http://purl.obolibrary.org/obo/UBERON_0001243,serosa of intestine,wall of bowel serous membrane +http://purl.obolibrary.org/obo/UBERON_0001243,serosa of intestine,wall of intestine serosa +http://purl.obolibrary.org/obo/UBERON_0001243,serosa of intestine,wall of intestine serous membrane +http://purl.obolibrary.org/obo/UBERON_0001244,internal anal sphincter,circular layer of anal muscularis externa +http://purl.obolibrary.org/obo/UBERON_0001244,internal anal sphincter,circular layer of muscularis externa of anal canal +http://purl.obolibrary.org/obo/UBERON_0001244,internal anal sphincter,circular layer of muscularis propria of anal canal +http://purl.obolibrary.org/obo/UBERON_0001244,internal anal sphincter,circular muscle layer of anal canal +http://purl.obolibrary.org/obo/UBERON_0001245,anus,anal opening +http://purl.obolibrary.org/obo/UBERON_0001245,anus,anal orifice +http://purl.obolibrary.org/obo/UBERON_0001245,anus,opening of terminal part of digestive tract +http://purl.obolibrary.org/obo/UBERON_0001246,interlobular bile duct,interlobular ductule +http://purl.obolibrary.org/obo/UBERON_0001247,falciform ligament,falciform ligament of liver +http://purl.obolibrary.org/obo/UBERON_0001247,falciform ligament,ligamentum falciforme (hepatis) +http://purl.obolibrary.org/obo/UBERON_0001247,falciform ligament,ligamentum falciforme hepatis +http://purl.obolibrary.org/obo/UBERON_0001248,hilum of spleen,hilum lienale +http://purl.obolibrary.org/obo/UBERON_0001248,hilum of spleen,hilum splenicum +http://purl.obolibrary.org/obo/UBERON_0001248,hilum of spleen,spleen hilum +http://purl.obolibrary.org/obo/UBERON_0001248,hilum of spleen,splenic hilum +http://purl.obolibrary.org/obo/UBERON_0001249,spleen lymphoid follicle,Malpighian body +http://purl.obolibrary.org/obo/UBERON_0001249,spleen lymphoid follicle,lymphatic follicle of spleen +http://purl.obolibrary.org/obo/UBERON_0001249,spleen lymphoid follicle,lymphoid follicle of spleen +http://purl.obolibrary.org/obo/UBERON_0001249,spleen lymphoid follicle,lymphoid nodule of spleen +http://purl.obolibrary.org/obo/UBERON_0001249,spleen lymphoid follicle,spleen B cell follicle +http://purl.obolibrary.org/obo/UBERON_0001249,spleen lymphoid follicle,spleen lymphoid follicle +http://purl.obolibrary.org/obo/UBERON_0001249,spleen lymphoid follicle,splenic B cell follicle +http://purl.obolibrary.org/obo/UBERON_0001249,spleen lymphoid follicle,splenic lymphatic follicle +http://purl.obolibrary.org/obo/UBERON_0001249,spleen lymphoid follicle,splenic lymphoid follicle +http://purl.obolibrary.org/obo/UBERON_0001250,red pulp of spleen,pulpa rubra +http://purl.obolibrary.org/obo/UBERON_0001250,red pulp of spleen,pulpa splenica +http://purl.obolibrary.org/obo/UBERON_0001250,red pulp of spleen,red pulp +http://purl.obolibrary.org/obo/UBERON_0001250,red pulp of spleen,spleen red pulp +http://purl.obolibrary.org/obo/UBERON_0001250,red pulp of spleen,splenic red pulp +http://purl.obolibrary.org/obo/UBERON_0001251,marginal zone of spleen,junctional zone of spleen +http://purl.obolibrary.org/obo/UBERON_0001251,marginal zone of spleen,spleen marginal zone +http://purl.obolibrary.org/obo/UBERON_0001252,adventitia of ureter,external adventitia of ureter +http://purl.obolibrary.org/obo/UBERON_0001252,adventitia of ureter,tunica adventitia (ureter) +http://purl.obolibrary.org/obo/UBERON_0001252,adventitia of ureter,tunica adventitia ureteris +http://purl.obolibrary.org/obo/UBERON_0001252,adventitia of ureter,ureter adventitia +http://purl.obolibrary.org/obo/UBERON_0001252,adventitia of ureter,ureteral adventitia +http://purl.obolibrary.org/obo/UBERON_0001253,lamina propria of ureter,lamina propria mucosa of ureter +http://purl.obolibrary.org/obo/UBERON_0001253,lamina propria of ureter,lamina propria mucosae of ureter +http://purl.obolibrary.org/obo/UBERON_0001253,lamina propria of ureter,ureter lamina propria +http://purl.obolibrary.org/obo/UBERON_0001253,lamina propria of ureter,ureter lamina propria mucosa +http://purl.obolibrary.org/obo/UBERON_0001253,lamina propria of ureter,ureter lamina propria mucosae +http://purl.obolibrary.org/obo/UBERON_0001254,urothelium of ureter,transitional epithelium of ureter +http://purl.obolibrary.org/obo/UBERON_0001254,urothelium of ureter,ureter transitional epithelium +http://purl.obolibrary.org/obo/UBERON_0001254,urothelium of ureter,ureter urothelium +http://purl.obolibrary.org/obo/UBERON_0001255,urinary bladder,bladder +http://purl.obolibrary.org/obo/UBERON_0001255,urinary bladder,urocyst +http://purl.obolibrary.org/obo/UBERON_0001255,urinary bladder,vesica +http://purl.obolibrary.org/obo/UBERON_0001255,urinary bladder,vesica urinaria +http://purl.obolibrary.org/obo/UBERON_0001256,wall of urinary bladder,anatomical wall of bladder +http://purl.obolibrary.org/obo/UBERON_0001256,wall of urinary bladder,anatomical wall of urinary bladder +http://purl.obolibrary.org/obo/UBERON_0001256,wall of urinary bladder,bladder anatomical wall +http://purl.obolibrary.org/obo/UBERON_0001256,wall of urinary bladder,bladder wall +http://purl.obolibrary.org/obo/UBERON_0001256,wall of urinary bladder,urinary bladder anatomical wall +http://purl.obolibrary.org/obo/UBERON_0001256,wall of urinary bladder,urinary bladder wall +http://purl.obolibrary.org/obo/UBERON_0001256,wall of urinary bladder,wall of bladder +http://purl.obolibrary.org/obo/UBERON_0001257,trigone of urinary bladder,Lieutaud's trigone +http://purl.obolibrary.org/obo/UBERON_0001257,trigone of urinary bladder,bladder trigone +http://purl.obolibrary.org/obo/UBERON_0001257,trigone of urinary bladder,deep trigone +http://purl.obolibrary.org/obo/UBERON_0001257,trigone of urinary bladder,musculus trigoni vesicae profundus +http://purl.obolibrary.org/obo/UBERON_0001257,trigone of urinary bladder,trigone of bladder +http://purl.obolibrary.org/obo/UBERON_0001257,trigone of urinary bladder,trigonum vesicae +http://purl.obolibrary.org/obo/UBERON_0001257,trigone of urinary bladder,urinary bladder trigone +http://purl.obolibrary.org/obo/UBERON_0001257,trigone of urinary bladder,vesical trigone +http://purl.obolibrary.org/obo/UBERON_0001258,neck of urinary bladder,bladder neck +http://purl.obolibrary.org/obo/UBERON_0001258,neck of urinary bladder,cervix vesicae +http://purl.obolibrary.org/obo/UBERON_0001258,neck of urinary bladder,cervix vesicae urinariae +http://purl.obolibrary.org/obo/UBERON_0001258,neck of urinary bladder,collum vesicae +http://purl.obolibrary.org/obo/UBERON_0001258,neck of urinary bladder,neck of bladder +http://purl.obolibrary.org/obo/UBERON_0001258,neck of urinary bladder,urinary bladder neck +http://purl.obolibrary.org/obo/UBERON_0001258,neck of urinary bladder,vesical neck +http://purl.obolibrary.org/obo/UBERON_0001259,mucosa of urinary bladder,bladder mucosa +http://purl.obolibrary.org/obo/UBERON_0001259,mucosa of urinary bladder,bladder mucous membrane +http://purl.obolibrary.org/obo/UBERON_0001259,mucosa of urinary bladder,bladder organ mucosa +http://purl.obolibrary.org/obo/UBERON_0001259,mucosa of urinary bladder,mucosa of bladder +http://purl.obolibrary.org/obo/UBERON_0001259,mucosa of urinary bladder,mucous membrane of bladder +http://purl.obolibrary.org/obo/UBERON_0001259,mucosa of urinary bladder,mucous membrane of urinary bladder +http://purl.obolibrary.org/obo/UBERON_0001259,mucosa of urinary bladder,tunica mucosa (vesica urinaria) +http://purl.obolibrary.org/obo/UBERON_0001259,mucosa of urinary bladder,tunica mucosa vesicae +http://purl.obolibrary.org/obo/UBERON_0001259,mucosa of urinary bladder,tunica mucosa vesicae urinariae +http://purl.obolibrary.org/obo/UBERON_0001259,mucosa of urinary bladder,urinary bladder mucosa +http://purl.obolibrary.org/obo/UBERON_0001259,mucosa of urinary bladder,urinary bladder mucous membrane +http://purl.obolibrary.org/obo/UBERON_0001260,serosa of urinary bladder,bladder serosa +http://purl.obolibrary.org/obo/UBERON_0001260,serosa of urinary bladder,bladder serous membrane +http://purl.obolibrary.org/obo/UBERON_0001260,serosa of urinary bladder,serosa of bladder +http://purl.obolibrary.org/obo/UBERON_0001260,serosa of urinary bladder,serous coat of bladder +http://purl.obolibrary.org/obo/UBERON_0001260,serosa of urinary bladder,serous coat of urinary bladder +http://purl.obolibrary.org/obo/UBERON_0001260,serosa of urinary bladder,serous membrane of bladder +http://purl.obolibrary.org/obo/UBERON_0001260,serosa of urinary bladder,serous membrane of urinary bladder +http://purl.obolibrary.org/obo/UBERON_0001260,serosa of urinary bladder,tunica serosa (vesica urinaria) +http://purl.obolibrary.org/obo/UBERON_0001260,serosa of urinary bladder,tunica serosa vesicae +http://purl.obolibrary.org/obo/UBERON_0001260,serosa of urinary bladder,urinary bladder serosa +http://purl.obolibrary.org/obo/UBERON_0001260,serosa of urinary bladder,urinary bladder serous membrane +http://purl.obolibrary.org/obo/UBERON_0001260,serosa of urinary bladder,visceral peritoneum of urinary bladder +http://purl.obolibrary.org/obo/UBERON_0001261,lamina propria of urinary bladder,bladder lamina propria +http://purl.obolibrary.org/obo/UBERON_0001261,lamina propria of urinary bladder,bladder lamina propria mucosa +http://purl.obolibrary.org/obo/UBERON_0001261,lamina propria of urinary bladder,bladder lamina propria mucosae +http://purl.obolibrary.org/obo/UBERON_0001261,lamina propria of urinary bladder,lamina propria mucosa of bladder +http://purl.obolibrary.org/obo/UBERON_0001261,lamina propria of urinary bladder,lamina propria mucosa of urinary bladder +http://purl.obolibrary.org/obo/UBERON_0001261,lamina propria of urinary bladder,lamina propria mucosae of bladder +http://purl.obolibrary.org/obo/UBERON_0001261,lamina propria of urinary bladder,lamina propria mucosae of urinary bladder +http://purl.obolibrary.org/obo/UBERON_0001261,lamina propria of urinary bladder,lamina propria of bladder +http://purl.obolibrary.org/obo/UBERON_0001261,lamina propria of urinary bladder,urinary bladder lamina propria +http://purl.obolibrary.org/obo/UBERON_0001261,lamina propria of urinary bladder,urinary bladder lamina propria mucosa +http://purl.obolibrary.org/obo/UBERON_0001261,lamina propria of urinary bladder,urinary bladder lamina propria mucosae +http://purl.obolibrary.org/obo/UBERON_0001262,wall of intestine,anatomical wall of bowel +http://purl.obolibrary.org/obo/UBERON_0001262,wall of intestine,anatomical wall of intestine +http://purl.obolibrary.org/obo/UBERON_0001262,wall of intestine,bowel anatomical wall +http://purl.obolibrary.org/obo/UBERON_0001262,wall of intestine,bowel wall +http://purl.obolibrary.org/obo/UBERON_0001262,wall of intestine,intestinal wall +http://purl.obolibrary.org/obo/UBERON_0001262,wall of intestine,intestine anatomical wall +http://purl.obolibrary.org/obo/UBERON_0001262,wall of intestine,intestine wall +http://purl.obolibrary.org/obo/UBERON_0001262,wall of intestine,wall of bowel +http://purl.obolibrary.org/obo/UBERON_0001263,pancreatic acinus,acinus pancreaticus +http://purl.obolibrary.org/obo/UBERON_0001263,pancreatic acinus,pancreas acinus +http://purl.obolibrary.org/obo/UBERON_0001263,pancreatic acinus,pancreatic acinar +http://purl.obolibrary.org/obo/UBERON_0001263,pancreatic acinus,pancreatic acini +http://purl.obolibrary.org/obo/UBERON_0001264,pancreas, +http://purl.obolibrary.org/obo/UBERON_0001265,trabecula of spleen,spleen trabeculum +http://purl.obolibrary.org/obo/UBERON_0001265,trabecula of spleen,splenic trabecula +http://purl.obolibrary.org/obo/UBERON_0001265,trabecula of spleen,trabeculae of spleen +http://purl.obolibrary.org/obo/UBERON_0001266,splenic cord,cord of Billroth +http://purl.obolibrary.org/obo/UBERON_0001266,splenic cord,cord of Bilroth +http://purl.obolibrary.org/obo/UBERON_0001267,femoral nerve,anterior crural nerve +http://purl.obolibrary.org/obo/UBERON_0001268,peritoneal fluid, +http://purl.obolibrary.org/obo/UBERON_0001269,acetabular part of hip bone,acetabular region +http://purl.obolibrary.org/obo/UBERON_0001269,acetabular part of hip bone,acetabulum +http://purl.obolibrary.org/obo/UBERON_0001270,bony pelvis,pelvis ossea +http://purl.obolibrary.org/obo/UBERON_0001270,bony pelvis,skeletal system of pelvis +http://purl.obolibrary.org/obo/UBERON_0001271,pelvic girdle region, +http://purl.obolibrary.org/obo/UBERON_0001272,innominate bone,coxal bone +http://purl.obolibrary.org/obo/UBERON_0001272,innominate bone,hip bone +http://purl.obolibrary.org/obo/UBERON_0001272,innominate bone,innominate bone +http://purl.obolibrary.org/obo/UBERON_0001272,innominate bone,os coxa +http://purl.obolibrary.org/obo/UBERON_0001272,innominate bone,os coxae +http://purl.obolibrary.org/obo/UBERON_0001272,innominate bone,pelvic bone +http://purl.obolibrary.org/obo/UBERON_0001273,ilium,iliac bone +http://purl.obolibrary.org/obo/UBERON_0001273,ilium,ilium bone +http://purl.obolibrary.org/obo/UBERON_0001273,ilium,os iliacum +http://purl.obolibrary.org/obo/UBERON_0001273,ilium,os ilii +http://purl.obolibrary.org/obo/UBERON_0001273,ilium,os ilium +http://purl.obolibrary.org/obo/UBERON_0001274,ischium,ischial bone +http://purl.obolibrary.org/obo/UBERON_0001274,ischium,ischium bone +http://purl.obolibrary.org/obo/UBERON_0001275,pubis, +http://purl.obolibrary.org/obo/UBERON_0001276,epithelium of stomach,epithelial tissue of stomach +http://purl.obolibrary.org/obo/UBERON_0001276,epithelium of stomach,epithelial tissue of ventriculus +http://purl.obolibrary.org/obo/UBERON_0001276,epithelium of stomach,epithelium of ventriculus +http://purl.obolibrary.org/obo/UBERON_0001276,epithelium of stomach,stomach epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0001276,epithelium of stomach,stomach epithelium +http://purl.obolibrary.org/obo/UBERON_0001276,epithelium of stomach,ventriculus epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0001276,epithelium of stomach,ventriculus epithelium +http://purl.obolibrary.org/obo/UBERON_0001277,intestinal epithelium,bowel epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0001277,intestinal epithelium,bowel epithelium +http://purl.obolibrary.org/obo/UBERON_0001277,intestinal epithelium,epithelial tissue of bowel +http://purl.obolibrary.org/obo/UBERON_0001277,intestinal epithelium,epithelial tissue of intestine +http://purl.obolibrary.org/obo/UBERON_0001277,intestinal epithelium,epithelium of bowel +http://purl.obolibrary.org/obo/UBERON_0001277,intestinal epithelium,epithelium of intestine +http://purl.obolibrary.org/obo/UBERON_0001277,intestinal epithelium,intestine epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0001277,intestinal epithelium,intestine epithelium +http://purl.obolibrary.org/obo/UBERON_0001277,intestinal epithelium,villous epithelium +http://purl.obolibrary.org/obo/UBERON_0001278,epithelium of large intestine,epithelial tissue of large intestine +http://purl.obolibrary.org/obo/UBERON_0001278,epithelium of large intestine,large intestinal epithelium +http://purl.obolibrary.org/obo/UBERON_0001278,epithelium of large intestine,large intestine epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0001278,epithelium of large intestine,large intestine epithelium +http://purl.obolibrary.org/obo/UBERON_0001279,portal triad,trias hepatica +http://purl.obolibrary.org/obo/UBERON_0001280,liver parenchyma,hepatic parenchyma +http://purl.obolibrary.org/obo/UBERON_0001280,liver parenchyma,hepatic parenchyme +http://purl.obolibrary.org/obo/UBERON_0001280,liver parenchyma,liver parenchyme +http://purl.obolibrary.org/obo/UBERON_0001280,liver parenchyma,parenchyma of liver +http://purl.obolibrary.org/obo/UBERON_0001281,hepatic sinusoid,liver hepatic sinusoids +http://purl.obolibrary.org/obo/UBERON_0001281,hepatic sinusoid,liver sinusoid +http://purl.obolibrary.org/obo/UBERON_0001281,hepatic sinusoid,liver sinusoidal blood vessel +http://purl.obolibrary.org/obo/UBERON_0001281,hepatic sinusoid,sinusoid of liver +http://purl.obolibrary.org/obo/UBERON_0001281,hepatic sinusoid,sinusoidal blood vessel of liver +http://purl.obolibrary.org/obo/UBERON_0001281,hepatic sinusoid,vas capillare sinusoideum +http://purl.obolibrary.org/obo/UBERON_0001281,hepatic sinusoid,vas sinusoideum +http://purl.obolibrary.org/obo/UBERON_0001282,intralobular bile duct,canal of Herring +http://purl.obolibrary.org/obo/UBERON_0001282,intralobular bile duct,cholangiole +http://purl.obolibrary.org/obo/UBERON_0001282,intralobular bile duct,ductus interlobularis bilifer +http://purl.obolibrary.org/obo/UBERON_0001283,bile canaliculus, +http://purl.obolibrary.org/obo/UBERON_0001284,renal column,column of Bertini +http://purl.obolibrary.org/obo/UBERON_0001284,renal column,columna Bertini +http://purl.obolibrary.org/obo/UBERON_0001284,renal column,kidney column +http://purl.obolibrary.org/obo/UBERON_0001284,renal column,renal column of Bertini +http://purl.obolibrary.org/obo/UBERON_0001284,renal column,renal cortical column +http://purl.obolibrary.org/obo/UBERON_0001285,nephron, +http://purl.obolibrary.org/obo/UBERON_0001286,Bowman's space,Bowman's space +http://purl.obolibrary.org/obo/UBERON_0001286,Bowman's space,capsular space +http://purl.obolibrary.org/obo/UBERON_0001286,Bowman's space,glomerular capsule space +http://purl.obolibrary.org/obo/UBERON_0001286,Bowman's space,glomerular urinary space +http://purl.obolibrary.org/obo/UBERON_0001286,Bowman's space,inter-glomerular space +http://purl.obolibrary.org/obo/UBERON_0001286,Bowman's space,pronephric capsular space +http://purl.obolibrary.org/obo/UBERON_0001286,Bowman's space,renal capsular space +http://purl.obolibrary.org/obo/UBERON_0001286,Bowman's space,urinary space +http://purl.obolibrary.org/obo/UBERON_0001286,Bowman's space,urinary space of renal corpuscle +http://purl.obolibrary.org/obo/UBERON_0001287,proximal convoluted tubule,proximal convoluted renal tubule +http://purl.obolibrary.org/obo/UBERON_0001287,proximal convoluted tubule,tubulus contortus proximalis +http://purl.obolibrary.org/obo/UBERON_0001288,loop of Henle,Henle loop +http://purl.obolibrary.org/obo/UBERON_0001288,loop of Henle,Henle's loop +http://purl.obolibrary.org/obo/UBERON_0001288,loop of Henle,ansa nephroni +http://purl.obolibrary.org/obo/UBERON_0001289,descending limb of loop of Henle,descending limb of Henle's loop +http://purl.obolibrary.org/obo/UBERON_0001289,descending limb of loop of Henle,loop of Henle descending limb +http://purl.obolibrary.org/obo/UBERON_0001290,proximal straight tubule,S3 +http://purl.obolibrary.org/obo/UBERON_0001290,proximal straight tubule,thick descending limb of proximal tubule +http://purl.obolibrary.org/obo/UBERON_0001290,proximal straight tubule,tubulus rectus proximalis +http://purl.obolibrary.org/obo/UBERON_0001291,thick ascending limb of loop of Henle,ascending thick limb +http://purl.obolibrary.org/obo/UBERON_0001291,thick ascending limb of loop of Henle,distal straight tubule +http://purl.obolibrary.org/obo/UBERON_0001291,thick ascending limb of loop of Henle,loop of Henle ascending limb thick segment +http://purl.obolibrary.org/obo/UBERON_0001291,thick ascending limb of loop of Henle,straight portion of distal convoluted renal tubule +http://purl.obolibrary.org/obo/UBERON_0001291,thick ascending limb of loop of Henle,straight portion of distal convoluted tubule +http://purl.obolibrary.org/obo/UBERON_0001291,thick ascending limb of loop of Henle,thick ascending limb +http://purl.obolibrary.org/obo/UBERON_0001291,thick ascending limb of loop of Henle,thick ascending limb of Henle's loop +http://purl.obolibrary.org/obo/UBERON_0001291,thick ascending limb of loop of Henle,thick ascending limb of distal tubule +http://purl.obolibrary.org/obo/UBERON_0001291,thick ascending limb of loop of Henle,tubulus rectus distalis +http://purl.obolibrary.org/obo/UBERON_0001292,distal convoluted tubule,distal convoluted renal tubule +http://purl.obolibrary.org/obo/UBERON_0001292,distal convoluted tubule,tubulus contortus distalis +http://purl.obolibrary.org/obo/UBERON_0001293,outer medulla of kidney,outer renal medulla +http://purl.obolibrary.org/obo/UBERON_0001293,outer medulla of kidney,outer zone of medulla of kidney +http://purl.obolibrary.org/obo/UBERON_0001293,outer medulla of kidney,outer zone of renal medulla +http://purl.obolibrary.org/obo/UBERON_0001293,outer medulla of kidney,renal outer medulla +http://purl.obolibrary.org/obo/UBERON_0001293,outer medulla of kidney,zona externa (medullaris renalis) +http://purl.obolibrary.org/obo/UBERON_0001293,outer medulla of kidney,zona externa medullae renalis +http://purl.obolibrary.org/obo/UBERON_0001294,inner medulla of kidney,inner renal medulla +http://purl.obolibrary.org/obo/UBERON_0001294,inner medulla of kidney,inner zone of medulla of kidney +http://purl.obolibrary.org/obo/UBERON_0001294,inner medulla of kidney,inner zone of renal medulla +http://purl.obolibrary.org/obo/UBERON_0001294,inner medulla of kidney,renal inner medulla +http://purl.obolibrary.org/obo/UBERON_0001294,inner medulla of kidney,set of inner region of renal pyramids +http://purl.obolibrary.org/obo/UBERON_0001294,inner medulla of kidney,zona interna (medullaris renalis) +http://purl.obolibrary.org/obo/UBERON_0001294,inner medulla of kidney,zona interna medullae renalis +http://purl.obolibrary.org/obo/UBERON_0001295,endometrium,tunica mucosa (endometrium) +http://purl.obolibrary.org/obo/UBERON_0001295,endometrium,tunica mucosa uteri +http://purl.obolibrary.org/obo/UBERON_0001295,endometrium,uterine endometrium +http://purl.obolibrary.org/obo/UBERON_0001296,myometrium,tunica muscularis (myometrium) +http://purl.obolibrary.org/obo/UBERON_0001297,serosa of uterus,perimetrium +http://purl.obolibrary.org/obo/UBERON_0001297,serosa of uterus,serous coat of uterus +http://purl.obolibrary.org/obo/UBERON_0001297,serosa of uterus,serous membrane of uterus +http://purl.obolibrary.org/obo/UBERON_0001297,serosa of uterus,tunica serosa (perimetrium) +http://purl.obolibrary.org/obo/UBERON_0001297,serosa of uterus,tunica serosa uteri +http://purl.obolibrary.org/obo/UBERON_0001297,serosa of uterus,uterine serosa +http://purl.obolibrary.org/obo/UBERON_0001297,serosa of uterus,uterus serosa +http://purl.obolibrary.org/obo/UBERON_0001297,serosa of uterus,uterus serous membrane +http://purl.obolibrary.org/obo/UBERON_0001297,serosa of uterus,visceral peritoneum of uterus +http://purl.obolibrary.org/obo/UBERON_0001298,psoas major muscle,psoas major +http://purl.obolibrary.org/obo/UBERON_0001299,glans penis, +http://purl.obolibrary.org/obo/UBERON_0001300,scrotum, +http://purl.obolibrary.org/obo/UBERON_0001301,epididymis, +http://purl.obolibrary.org/obo/UBERON_0001302,right uterine tube,right fallopian tube +http://purl.obolibrary.org/obo/UBERON_0001302,right uterine tube,right oviduct +http://purl.obolibrary.org/obo/UBERON_0001303,left uterine tube,left fallopian tube +http://purl.obolibrary.org/obo/UBERON_0001303,left uterine tube,left oviduct +http://purl.obolibrary.org/obo/UBERON_0001304,germinal epithelium of ovary,epithelium superficiale (ovarium) +http://purl.obolibrary.org/obo/UBERON_0001304,germinal epithelium of ovary,germinal epithelium (female) +http://purl.obolibrary.org/obo/UBERON_0001304,germinal epithelium of ovary,ovarian surface epithelium +http://purl.obolibrary.org/obo/UBERON_0001304,germinal epithelium of ovary,ovary germinal epithelium +http://purl.obolibrary.org/obo/UBERON_0001304,germinal epithelium of ovary,surface epithelium of ovary +http://purl.obolibrary.org/obo/UBERON_0001305,ovarian follicle,follicle of ovary +http://purl.obolibrary.org/obo/UBERON_0001305,ovarian follicle,follicle of ovary viewed macroscopically +http://purl.obolibrary.org/obo/UBERON_0001305,ovarian follicle,ovary follicle +http://purl.obolibrary.org/obo/UBERON_0001306,cumulus oophorus,cumulus ovaricus +http://purl.obolibrary.org/obo/UBERON_0001306,cumulus oophorus,discus proligerus +http://purl.obolibrary.org/obo/UBERON_0001306,cumulus oophorus,ovarian cumulus +http://purl.obolibrary.org/obo/UBERON_0001307,capsule of ovary,ovarian capsule +http://purl.obolibrary.org/obo/UBERON_0001307,capsule of ovary,ovary capsule +http://purl.obolibrary.org/obo/UBERON_0001308,external iliac artery, +http://purl.obolibrary.org/obo/UBERON_0001309,internal iliac artery, +http://purl.obolibrary.org/obo/UBERON_0001310,umbilical artery, +http://purl.obolibrary.org/obo/UBERON_0001311,inferior vesical artery,arteria vesicali inferior +http://purl.obolibrary.org/obo/UBERON_0001311,inferior vesical artery,arteria vesicalis inferior +http://purl.obolibrary.org/obo/UBERON_0001312,superior vesical artery,arteria vesicali superior +http://purl.obolibrary.org/obo/UBERON_0001312,superior vesical artery,arteria vesicalis superior +http://purl.obolibrary.org/obo/UBERON_0001313,iliolumbar artery,ilio-lumbar artery +http://purl.obolibrary.org/obo/UBERON_0001314,obturator artery, +http://purl.obolibrary.org/obo/UBERON_0001315,superior gluteal artery,arteria glutealis superior +http://purl.obolibrary.org/obo/UBERON_0001316,external iliac vein, +http://purl.obolibrary.org/obo/UBERON_0001317,internal iliac vein, +http://purl.obolibrary.org/obo/UBERON_0001318,inferior vesical vein, +http://purl.obolibrary.org/obo/UBERON_0001319,vaginal vein,vagina vein +http://purl.obolibrary.org/obo/UBERON_0001319,vaginal vein,vein of vagina +http://purl.obolibrary.org/obo/UBERON_0001320,iliolumbar vein,ilio-lumbar vein +http://purl.obolibrary.org/obo/UBERON_0001321,obturator vein, +http://purl.obolibrary.org/obo/UBERON_0001322,sciatic nerve, +http://purl.obolibrary.org/obo/UBERON_0001323,tibial nerve,medial popliteal nerve +http://purl.obolibrary.org/obo/UBERON_0001324,common fibular nerve,common peroneal nerve +http://purl.obolibrary.org/obo/UBERON_0001324,common fibular nerve,extrernal peroneal nerve +http://purl.obolibrary.org/obo/UBERON_0001324,common fibular nerve,lateral popliteal nerve +http://purl.obolibrary.org/obo/UBERON_0001324,common fibular nerve,nervus peroneus communis +http://purl.obolibrary.org/obo/UBERON_0001325,muscle of pelvis,muscle organ of pelvis +http://purl.obolibrary.org/obo/UBERON_0001325,muscle of pelvis,pelvic muscle +http://purl.obolibrary.org/obo/UBERON_0001325,muscle of pelvis,pelvis muscle +http://purl.obolibrary.org/obo/UBERON_0001325,muscle of pelvis,pelvis muscle organ +http://purl.obolibrary.org/obo/UBERON_0001326,levator ani muscle,levator ani +http://purl.obolibrary.org/obo/UBERON_0001326,levator ani muscle,musculus levator ani +http://purl.obolibrary.org/obo/UBERON_0001327,coccygeus muscle,coccygeus +http://purl.obolibrary.org/obo/UBERON_0001327,coccygeus muscle,ischiococcygeus +http://purl.obolibrary.org/obo/UBERON_0001327,coccygeus muscle,musculus ischiococcygeus +http://purl.obolibrary.org/obo/UBERON_0001328,lobe of prostate,lobe of prostate gland +http://purl.obolibrary.org/obo/UBERON_0001328,lobe of prostate,prostate gland lobe +http://purl.obolibrary.org/obo/UBERON_0001328,lobe of prostate,prostatic lobe +http://purl.obolibrary.org/obo/UBERON_0001329,prostate gland anterior lobe,anterior lobe of prostate +http://purl.obolibrary.org/obo/UBERON_0001329,prostate gland anterior lobe,anterior lobe of prostate gland +http://purl.obolibrary.org/obo/UBERON_0001329,prostate gland anterior lobe,anterior prostate gland +http://purl.obolibrary.org/obo/UBERON_0001329,prostate gland anterior lobe,commissura prostatae +http://purl.obolibrary.org/obo/UBERON_0001329,prostate gland anterior lobe,commissure of prostate +http://purl.obolibrary.org/obo/UBERON_0001329,prostate gland anterior lobe,isthmus of prostate +http://purl.obolibrary.org/obo/UBERON_0001329,prostate gland anterior lobe,isthmus of prostate gland +http://purl.obolibrary.org/obo/UBERON_0001329,prostate gland anterior lobe,isthmus prostatae +http://purl.obolibrary.org/obo/UBERON_0001329,prostate gland anterior lobe,prostate gland anterior lobe +http://purl.obolibrary.org/obo/UBERON_0001329,prostate gland anterior lobe,prostatic isthmus +http://purl.obolibrary.org/obo/UBERON_0001330,pampiniform plexus,pampiniform venous plexus +http://purl.obolibrary.org/obo/UBERON_0001330,pampiniform plexus,plexus of veins of fascia of prostate +http://purl.obolibrary.org/obo/UBERON_0001330,pampiniform plexus,plexus venosus pampiniformis +http://purl.obolibrary.org/obo/UBERON_0001330,pampiniform plexus,venous plexus of fascia of prostate +http://purl.obolibrary.org/obo/UBERON_0001330,pampiniform plexus,venous plexus of fascia of prostate gland +http://purl.obolibrary.org/obo/UBERON_0001331,skin of penis,penile skin +http://purl.obolibrary.org/obo/UBERON_0001331,skin of penis,penis skin +http://purl.obolibrary.org/obo/UBERON_0001331,skin of penis,penis zone of skin +http://purl.obolibrary.org/obo/UBERON_0001331,skin of penis,zone of skin of penis +http://purl.obolibrary.org/obo/UBERON_0001332,prepuce of penis,penile prepuce +http://purl.obolibrary.org/obo/UBERON_0001332,prepuce of penis,prepuce of male +http://purl.obolibrary.org/obo/UBERON_0001332,prepuce of penis,preputium penis +http://purl.obolibrary.org/obo/UBERON_0001333,male urethra, +http://purl.obolibrary.org/obo/UBERON_0001334,female urethra, +http://purl.obolibrary.org/obo/UBERON_0001335,prostatic urethra,male prostatic urethra +http://purl.obolibrary.org/obo/UBERON_0001335,prostatic urethra,pars prostatica urethrae +http://purl.obolibrary.org/obo/UBERON_0001335,prostatic urethra,prostatic part of male urethra +http://purl.obolibrary.org/obo/UBERON_0001335,prostatic urethra,prostatic part of urethra +http://purl.obolibrary.org/obo/UBERON_0001336,membranous urethra of male or female,intermediate part of urethra +http://purl.obolibrary.org/obo/UBERON_0001336,membranous urethra of male or female,intermediate urethra +http://purl.obolibrary.org/obo/UBERON_0001336,membranous urethra of male or female,membranous part of urethra +http://purl.obolibrary.org/obo/UBERON_0001336,membranous urethra of male or female,membranous urethra +http://purl.obolibrary.org/obo/UBERON_0001336,membranous urethra of male or female,pars intermedia urethrae +http://purl.obolibrary.org/obo/UBERON_0001336,membranous urethra of male or female,pars membranacea (urethrae) +http://purl.obolibrary.org/obo/UBERON_0001337,spongiose part of urethra,cavernous portion of male urethra +http://purl.obolibrary.org/obo/UBERON_0001337,spongiose part of urethra,male spongiose urethra +http://purl.obolibrary.org/obo/UBERON_0001337,spongiose part of urethra,male spongy urethra +http://purl.obolibrary.org/obo/UBERON_0001337,spongiose part of urethra,pars cavernosa urethrae +http://purl.obolibrary.org/obo/UBERON_0001337,spongiose part of urethra,pars spongiosa +http://purl.obolibrary.org/obo/UBERON_0001337,spongiose part of urethra,pars spongiosa (urethra masculina) +http://purl.obolibrary.org/obo/UBERON_0001337,spongiose part of urethra,pars spongiosa urethrae masculinae +http://purl.obolibrary.org/obo/UBERON_0001337,spongiose part of urethra,penile urethra +http://purl.obolibrary.org/obo/UBERON_0001337,spongiose part of urethra,spongiose urethra +http://purl.obolibrary.org/obo/UBERON_0001337,spongiose part of urethra,spongy urethra (male) +http://purl.obolibrary.org/obo/UBERON_0001338,urethral gland,gland of urethra +http://purl.obolibrary.org/obo/UBERON_0001338,urethral gland,urethra gland +http://purl.obolibrary.org/obo/UBERON_0001338,urethral gland,urethra gland (male or female) +http://purl.obolibrary.org/obo/UBERON_0001338,urethral gland,urethral mucuous gland +http://purl.obolibrary.org/obo/UBERON_0001339,ischiocavernosus muscle,musculus ishiocavernosus +http://purl.obolibrary.org/obo/UBERON_0001340,dorsal artery of penis,arteria dorsalis penis +http://purl.obolibrary.org/obo/UBERON_0001340,dorsal artery of penis,dorsal penile artery +http://purl.obolibrary.org/obo/UBERON_0001340,dorsal artery of penis,dorsal penis artery +http://purl.obolibrary.org/obo/UBERON_0001341,lesser sac,bursa omentalis +http://purl.obolibrary.org/obo/UBERON_0001341,lesser sac,omental bursa +http://purl.obolibrary.org/obo/UBERON_0001342,mesovarium, +http://purl.obolibrary.org/obo/UBERON_0001343,seminiferous tubule of testis,seminiferous cord +http://purl.obolibrary.org/obo/UBERON_0001343,seminiferous tubule of testis,seminiferous tubule +http://purl.obolibrary.org/obo/UBERON_0001343,seminiferous tubule of testis,testis - seminiferous tubule +http://purl.obolibrary.org/obo/UBERON_0001343,seminiferous tubule of testis,tubuli seminiferi +http://purl.obolibrary.org/obo/UBERON_0001344,epithelium of vagina,epithelial tissue of vagina +http://purl.obolibrary.org/obo/UBERON_0001344,epithelium of vagina,vagina epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0001344,epithelium of vagina,vagina epithelium +http://purl.obolibrary.org/obo/UBERON_0001344,epithelium of vagina,vaginal epithelium +http://purl.obolibrary.org/obo/UBERON_0001346,vaginal hymen,hymen of vagina +http://purl.obolibrary.org/obo/UBERON_0001346,vaginal hymen,hymen vaginae +http://purl.obolibrary.org/obo/UBERON_0001347,white adipose tissue,adipocytus unigutturalis +http://purl.obolibrary.org/obo/UBERON_0001347,white adipose tissue,textus adiposus albus +http://purl.obolibrary.org/obo/UBERON_0001347,white adipose tissue,unilocular adipose tissue +http://purl.obolibrary.org/obo/UBERON_0001347,white adipose tissue,white fat +http://purl.obolibrary.org/obo/UBERON_0001348,brown adipose tissue,BAT +http://purl.obolibrary.org/obo/UBERON_0001348,brown adipose tissue,adipocytus multigutturalis +http://purl.obolibrary.org/obo/UBERON_0001348,brown adipose tissue,brown fat +http://purl.obolibrary.org/obo/UBERON_0001348,brown adipose tissue,multilocular adipose tissue +http://purl.obolibrary.org/obo/UBERON_0001348,brown adipose tissue,textus adiposus fuscus +http://purl.obolibrary.org/obo/UBERON_0001349,externally connecting tube lumen, +http://purl.obolibrary.org/obo/UBERON_0001350,coccyx,coccygeal skeleton +http://purl.obolibrary.org/obo/UBERON_0001350,coccyx,coccygeal vertebrae I-IV +http://purl.obolibrary.org/obo/UBERON_0001350,coccyx,coccyx [coccygeal vertebrae I-IV] +http://purl.obolibrary.org/obo/UBERON_0001350,coccyx,coccyx [vertebrae coccygeae I-IV] +http://purl.obolibrary.org/obo/UBERON_0001350,coccyx,fused caudal vertebrae +http://purl.obolibrary.org/obo/UBERON_0001350,coccyx,fused caudal vertebral column +http://purl.obolibrary.org/obo/UBERON_0001350,coccyx,os coccygis +http://purl.obolibrary.org/obo/UBERON_0001351,lacrimal sac,lachrymal sac +http://purl.obolibrary.org/obo/UBERON_0001351,lacrimal sac,lacrymal sac +http://purl.obolibrary.org/obo/UBERON_0001351,lacrimal sac,saccus lacrimalis +http://purl.obolibrary.org/obo/UBERON_0001352,external acoustic meatus,auditory canal +http://purl.obolibrary.org/obo/UBERON_0001352,external acoustic meatus,ear canal +http://purl.obolibrary.org/obo/UBERON_0001352,external acoustic meatus,external acoustic tube +http://purl.obolibrary.org/obo/UBERON_0001352,external acoustic meatus,external auditory canal +http://purl.obolibrary.org/obo/UBERON_0001352,external acoustic meatus,external auditory tube +http://purl.obolibrary.org/obo/UBERON_0001353,anal region, +http://purl.obolibrary.org/obo/UBERON_0001354,inferior epigastric artery, +http://purl.obolibrary.org/obo/UBERON_0001355,deep femoral artery,arteria profunda femoris +http://purl.obolibrary.org/obo/UBERON_0001355,deep femoral artery,profunda femoris artery +http://purl.obolibrary.org/obo/UBERON_0001356,medial circumflex femoral artery,medial femoral circumflex artery +http://purl.obolibrary.org/obo/UBERON_0001357,inferior rectal artery, +http://purl.obolibrary.org/obo/UBERON_0001358,perineal artery, +http://purl.obolibrary.org/obo/UBERON_0001359,cerebrospinal fluid,CSF +http://purl.obolibrary.org/obo/UBERON_0001359,cerebrospinal fluid,cerebral spinal fluid +http://purl.obolibrary.org/obo/UBERON_0001360,deep circumflex iliac vein,circumflex iliac vein +http://purl.obolibrary.org/obo/UBERON_0001360,deep circumflex iliac vein,deep iliac circumflex vein +http://purl.obolibrary.org/obo/UBERON_0001360,deep circumflex iliac vein,iliac circumflex vein +http://purl.obolibrary.org/obo/UBERON_0001360,deep circumflex iliac vein,vena circumflexa iliaca profunda +http://purl.obolibrary.org/obo/UBERON_0001361,femoral vein, +http://purl.obolibrary.org/obo/UBERON_0001362,perineal vein, +http://purl.obolibrary.org/obo/UBERON_0001363,great saphenous vein,greater saphenous vein +http://purl.obolibrary.org/obo/UBERON_0001365,sacro-iliac joint,articulatio sacro-iliaca +http://purl.obolibrary.org/obo/UBERON_0001365,sacro-iliac joint,sacroiliac joint +http://purl.obolibrary.org/obo/UBERON_0001366,parietal peritoneum,parietal serous membrane of peritoneum +http://purl.obolibrary.org/obo/UBERON_0001367,external anal sphincter,external sphincter ani +http://purl.obolibrary.org/obo/UBERON_0001367,external anal sphincter,musculus sphincter ani externus +http://purl.obolibrary.org/obo/UBERON_0001368,obturator externus,M. obturator externus +http://purl.obolibrary.org/obo/UBERON_0001368,obturator externus,external obturator +http://purl.obolibrary.org/obo/UBERON_0001369,iliacus muscle,anterior muscle of pelvic girdle +http://purl.obolibrary.org/obo/UBERON_0001369,iliacus muscle,iliacus +http://purl.obolibrary.org/obo/UBERON_0001370,gluteus maximus,gluteus maximus muscle +http://purl.obolibrary.org/obo/UBERON_0001370,gluteus maximus,glutæus maximus +http://purl.obolibrary.org/obo/UBERON_0001370,gluteus maximus,m.gluteus maximus +http://purl.obolibrary.org/obo/UBERON_0001371,gluteus medius, +http://purl.obolibrary.org/obo/UBERON_0001372,psoas minor muscle,psoas minor +http://purl.obolibrary.org/obo/UBERON_0001373,sartorius muscle,sartorius +http://purl.obolibrary.org/obo/UBERON_0001374,biceps femoris,biceps femoris muscle +http://purl.obolibrary.org/obo/UBERON_0001375,semitendinosus,semitendinosus muscle +http://purl.obolibrary.org/obo/UBERON_0001376,tensor fasciae latae muscle,musculus tensor fasciae latae +http://purl.obolibrary.org/obo/UBERON_0001376,tensor fasciae latae muscle,tensor fasciae lata +http://purl.obolibrary.org/obo/UBERON_0001376,tensor fasciae latae muscle,tensor fasciae lata muscle +http://purl.obolibrary.org/obo/UBERON_0001376,tensor fasciae latae muscle,tensor fasciae latae +http://purl.obolibrary.org/obo/UBERON_0001376,tensor fasciae latae muscle,tensor of fascia lata +http://purl.obolibrary.org/obo/UBERON_0001377,quadriceps femoris,quadriceps +http://purl.obolibrary.org/obo/UBERON_0001377,quadriceps femoris,quadriceps femoris muscle +http://purl.obolibrary.org/obo/UBERON_0001378,rectus femoris,musculus rectos femoris +http://purl.obolibrary.org/obo/UBERON_0001379,vastus lateralis,vastus lateralis muscle +http://purl.obolibrary.org/obo/UBERON_0001380,vastus medialis,vastus medialis muscle +http://purl.obolibrary.org/obo/UBERON_0001381,semimembranosus muscle,musculus semimembranosus +http://purl.obolibrary.org/obo/UBERON_0001381,semimembranosus muscle,semimembranosus +http://purl.obolibrary.org/obo/UBERON_0001382,pectineus muscle,M. pectineus +http://purl.obolibrary.org/obo/UBERON_0001382,pectineus muscle,pectineus +http://purl.obolibrary.org/obo/UBERON_0001383,muscle of leg,leg muscle +http://purl.obolibrary.org/obo/UBERON_0001383,muscle of leg,leg muscle organ +http://purl.obolibrary.org/obo/UBERON_0001383,muscle of leg,leg skeletal muscle +http://purl.obolibrary.org/obo/UBERON_0001383,muscle of leg,leg skeletal muscle tissue +http://purl.obolibrary.org/obo/UBERON_0001383,muscle of leg,muscle of hindlimb zeugopod or stylopod +http://purl.obolibrary.org/obo/UBERON_0001383,muscle of leg,muscle of thigh or crus +http://purl.obolibrary.org/obo/UBERON_0001383,muscle of leg,muscle of upper or lower hindlimb segment +http://purl.obolibrary.org/obo/UBERON_0001383,muscle of leg,muscle of upper/lower leg +http://purl.obolibrary.org/obo/UBERON_0001383,muscle of leg,muscle organ of leg +http://purl.obolibrary.org/obo/UBERON_0001383,muscle of leg,skeletal muscle of leg +http://purl.obolibrary.org/obo/UBERON_0001384,primary motor cortex,motor cortex +http://purl.obolibrary.org/obo/UBERON_0001385,tibialis anterior,tibialis anterior muscle +http://purl.obolibrary.org/obo/UBERON_0001385,tibialis anterior,tibialis cranialis +http://purl.obolibrary.org/obo/UBERON_0001385,tibialis anterior,tibilais cranialis +http://purl.obolibrary.org/obo/UBERON_0001386,extensor digitorum longus,extensor digitorum longus muscle +http://purl.obolibrary.org/obo/UBERON_0001386,extensor digitorum longus,toe extensor +http://purl.obolibrary.org/obo/UBERON_0001386,extensor digitorum longus,toe extensor muscle +http://purl.obolibrary.org/obo/UBERON_0001387,fibularis longus,musculus peroneus longus +http://purl.obolibrary.org/obo/UBERON_0001387,fibularis longus,peroneus longus +http://purl.obolibrary.org/obo/UBERON_0001387,fibularis longus,peroneus longus muscle +http://purl.obolibrary.org/obo/UBERON_0001388,gastrocnemius,gastrocnemius muscle +http://purl.obolibrary.org/obo/UBERON_0001388,gastrocnemius,m. gastrocnemius +http://purl.obolibrary.org/obo/UBERON_0001388,gastrocnemius,m.gastrocnemius +http://purl.obolibrary.org/obo/UBERON_0001389,soleus muscle,soleus +http://purl.obolibrary.org/obo/UBERON_0001390,sural artery, +http://purl.obolibrary.org/obo/UBERON_0001391,popliteus muscle,m.popliteus +http://purl.obolibrary.org/obo/UBERON_0001391,popliteus muscle,poplitea +http://purl.obolibrary.org/obo/UBERON_0001391,popliteus muscle,popliteal +http://purl.obolibrary.org/obo/UBERON_0001391,popliteus muscle,popliteal muscle +http://purl.obolibrary.org/obo/UBERON_0001391,popliteus muscle,popliteus +http://purl.obolibrary.org/obo/UBERON_0001392,flexor hallucis longus,flexor hallucis longus muscle +http://purl.obolibrary.org/obo/UBERON_0001393,auditory cortex, +http://purl.obolibrary.org/obo/UBERON_0001394,axillary artery,arteria axillaris +http://purl.obolibrary.org/obo/UBERON_0001394,axillary artery,axillary part of subclavian artery +http://purl.obolibrary.org/obo/UBERON_0001394,axillary artery,axillary part of trunk of subclavian artery +http://purl.obolibrary.org/obo/UBERON_0001395,thoraco-acromial artery,acromiothoracic artery +http://purl.obolibrary.org/obo/UBERON_0001395,thoraco-acromial artery,thoracoacromial artery +http://purl.obolibrary.org/obo/UBERON_0001396,lateral thoracic artery,external mammary artery +http://purl.obolibrary.org/obo/UBERON_0001397,subscapular artery, +http://purl.obolibrary.org/obo/UBERON_0001398,brachial artery,brachial part of trunk of subclavian artery +http://purl.obolibrary.org/obo/UBERON_0001399,deep brachial artery,arteria profunda brachii +http://purl.obolibrary.org/obo/UBERON_0001399,deep brachial artery,profunda brachii artery +http://purl.obolibrary.org/obo/UBERON_0001400,iliocostalis thoracis muscle, +http://purl.obolibrary.org/obo/UBERON_0001401,longissimus thoracis muscle,longissimus dorsi +http://purl.obolibrary.org/obo/UBERON_0001401,longissimus thoracis muscle,longissimus dorsi muscle +http://purl.obolibrary.org/obo/UBERON_0001401,longissimus thoracis muscle,longissimus thoracis +http://purl.obolibrary.org/obo/UBERON_0001401,longissimus thoracis muscle,musculus longissimus dorsi +http://purl.obolibrary.org/obo/UBERON_0001401,longissimus thoracis muscle,musculus longissimus thoracis +http://purl.obolibrary.org/obo/UBERON_0001402,longissimus cervicis muscle,longissimus cervicis +http://purl.obolibrary.org/obo/UBERON_0001403,longissimus capitis, +http://purl.obolibrary.org/obo/UBERON_0001404,radial artery, +http://purl.obolibrary.org/obo/UBERON_0001405,spinalis thoracis muscle,spinalis thoracis +http://purl.obolibrary.org/obo/UBERON_0001406,ulnar artery,arteria ulnaris +http://purl.obolibrary.org/obo/UBERON_0001407,semispinalis thoracis,semispinalis dorsi +http://purl.obolibrary.org/obo/UBERON_0001407,semispinalis thoracis,semispinalis dorsi muscle +http://purl.obolibrary.org/obo/UBERON_0001408,semispinalis cervicis, +http://purl.obolibrary.org/obo/UBERON_0001409,semispinalis capitis, +http://purl.obolibrary.org/obo/UBERON_0001410,common palmar digital artery,common palmar digital arteries +http://purl.obolibrary.org/obo/UBERON_0001411,basilic vein,basilic vein of forearm +http://purl.obolibrary.org/obo/UBERON_0001411,basilic vein,vena basilica antebrachii +http://purl.obolibrary.org/obo/UBERON_0001412,common palmar digital vein,proximal palmar digital vein +http://purl.obolibrary.org/obo/UBERON_0001413,brachial vein, +http://purl.obolibrary.org/obo/UBERON_0001414,median basilic vein,median cubital vein +http://purl.obolibrary.org/obo/UBERON_0001415,skin of pelvis,pelvic skin +http://purl.obolibrary.org/obo/UBERON_0001415,skin of pelvis,pelvis skin +http://purl.obolibrary.org/obo/UBERON_0001415,skin of pelvis,pelvis zone of skin +http://purl.obolibrary.org/obo/UBERON_0001415,skin of pelvis,zone of skin of pelvis +http://purl.obolibrary.org/obo/UBERON_0001416,skin of abdomen,abdomen skin +http://purl.obolibrary.org/obo/UBERON_0001416,skin of abdomen,abdomen zone of skin +http://purl.obolibrary.org/obo/UBERON_0001416,skin of abdomen,abdominal skin +http://purl.obolibrary.org/obo/UBERON_0001416,skin of abdomen,skin of abdomen proper +http://purl.obolibrary.org/obo/UBERON_0001416,skin of abdomen,zone of skin of abdomen +http://purl.obolibrary.org/obo/UBERON_0001417,skin of neck,neck (volume) zone of skin +http://purl.obolibrary.org/obo/UBERON_0001417,skin of neck,neck skin +http://purl.obolibrary.org/obo/UBERON_0001417,skin of neck,neck zone of skin +http://purl.obolibrary.org/obo/UBERON_0001417,skin of neck,zone of skin of neck +http://purl.obolibrary.org/obo/UBERON_0001417,skin of neck,zone of skin of neck (volume) +http://purl.obolibrary.org/obo/UBERON_0001418,skin of thorax,thoracic skin +http://purl.obolibrary.org/obo/UBERON_0001418,skin of thorax,thorax skin +http://purl.obolibrary.org/obo/UBERON_0001418,skin of thorax,thorax zone of skin +http://purl.obolibrary.org/obo/UBERON_0001418,skin of thorax,zone of skin of thorax +http://purl.obolibrary.org/obo/UBERON_0001419,skin of limb,limb skin +http://purl.obolibrary.org/obo/UBERON_0001419,skin of limb,limb zone of skin +http://purl.obolibrary.org/obo/UBERON_0001419,skin of limb,zone of skin of limb +http://purl.obolibrary.org/obo/UBERON_0001420,subscapular vein,vena subscapularis +http://purl.obolibrary.org/obo/UBERON_0001421,pectoral girdle region,cingulum membri superioris +http://purl.obolibrary.org/obo/UBERON_0001421,pectoral girdle region,girdle - pectoral +http://purl.obolibrary.org/obo/UBERON_0001422,facial lymphatic vessel,buccal lymphatic vessel +http://purl.obolibrary.org/obo/UBERON_0001422,facial lymphatic vessel,face lymph vessel +http://purl.obolibrary.org/obo/UBERON_0001422,facial lymphatic vessel,face lymphatic vessel +http://purl.obolibrary.org/obo/UBERON_0001422,facial lymphatic vessel,lymph vessel of face +http://purl.obolibrary.org/obo/UBERON_0001422,facial lymphatic vessel,lymphatic vessel of face +http://purl.obolibrary.org/obo/UBERON_0001423,radius bone,radius +http://purl.obolibrary.org/obo/UBERON_0001424,ulna, +http://purl.obolibrary.org/obo/UBERON_0001425,pectoral lymphatic vessel, +http://purl.obolibrary.org/obo/UBERON_0001426,jugular lymphatic vessel, +http://purl.obolibrary.org/obo/UBERON_0001427,radiale,navicular bone of hand +http://purl.obolibrary.org/obo/UBERON_0001427,radiale,navicular bone of manus +http://purl.obolibrary.org/obo/UBERON_0001427,radiale,navicular of manus +http://purl.obolibrary.org/obo/UBERON_0001427,radiale,os carpi radiale +http://purl.obolibrary.org/obo/UBERON_0001427,radiale,os naviculare manus +http://purl.obolibrary.org/obo/UBERON_0001427,radiale,os scaphoideum +http://purl.obolibrary.org/obo/UBERON_0001427,radiale,radial carpal bone +http://purl.obolibrary.org/obo/UBERON_0001427,radiale,scaphoid +http://purl.obolibrary.org/obo/UBERON_0001427,radiale,scaphoid bone +http://purl.obolibrary.org/obo/UBERON_0001427,radiale,scaphoideum +http://purl.obolibrary.org/obo/UBERON_0001428,intermedium,lunar +http://purl.obolibrary.org/obo/UBERON_0001428,intermedium,lunate +http://purl.obolibrary.org/obo/UBERON_0001428,intermedium,lunate bone +http://purl.obolibrary.org/obo/UBERON_0001428,intermedium,os carpi intermedium +http://purl.obolibrary.org/obo/UBERON_0001428,intermedium,os lunatum +http://purl.obolibrary.org/obo/UBERON_0001428,intermedium,semilunar bone +http://purl.obolibrary.org/obo/UBERON_0001429,pisiform,pisiform bone +http://purl.obolibrary.org/obo/UBERON_0001430,distal carpal bone 1,distal carpal 1 +http://purl.obolibrary.org/obo/UBERON_0001430,distal carpal bone 1,greater multangular bone +http://purl.obolibrary.org/obo/UBERON_0001430,distal carpal bone 1,os trapezium +http://purl.obolibrary.org/obo/UBERON_0001430,distal carpal bone 1,trapezial bone +http://purl.obolibrary.org/obo/UBERON_0001430,distal carpal bone 1,trapezium +http://purl.obolibrary.org/obo/UBERON_0001430,distal carpal bone 1,trapezium bone +http://purl.obolibrary.org/obo/UBERON_0001431,distal carpal bone 2,distal carpal 2 +http://purl.obolibrary.org/obo/UBERON_0001431,distal carpal bone 2,lesser multangular bone +http://purl.obolibrary.org/obo/UBERON_0001431,distal carpal bone 2,os trapezoideum +http://purl.obolibrary.org/obo/UBERON_0001431,distal carpal bone 2,trapezoid +http://purl.obolibrary.org/obo/UBERON_0001431,distal carpal bone 2,trapezoid bone +http://purl.obolibrary.org/obo/UBERON_0001432,distal carpal bone 3,capitate +http://purl.obolibrary.org/obo/UBERON_0001432,distal carpal bone 3,capitate bone +http://purl.obolibrary.org/obo/UBERON_0001432,distal carpal bone 3,distal carpal 3 +http://purl.obolibrary.org/obo/UBERON_0001432,distal carpal bone 3,os magnum (carpus) +http://purl.obolibrary.org/obo/UBERON_0001433,distal carpal bone 4,distal carpal 4 +http://purl.obolibrary.org/obo/UBERON_0001433,distal carpal bone 4,hamate +http://purl.obolibrary.org/obo/UBERON_0001433,distal carpal bone 4,hamate bone +http://purl.obolibrary.org/obo/UBERON_0001433,distal carpal bone 4,unciform bone +http://purl.obolibrary.org/obo/UBERON_0001434,skeletal system,Skelettsystem +http://purl.obolibrary.org/obo/UBERON_0001434,skeletal system,set of all bones and joints +http://purl.obolibrary.org/obo/UBERON_0001434,skeletal system,skeleton system +http://purl.obolibrary.org/obo/UBERON_0001435,carpal bone,bone of carpus +http://purl.obolibrary.org/obo/UBERON_0001435,carpal bone,carpal +http://purl.obolibrary.org/obo/UBERON_0001435,carpal bone,carpal skeleton bone +http://purl.obolibrary.org/obo/UBERON_0001436,phalanx of manus,digitus manus phalanx +http://purl.obolibrary.org/obo/UBERON_0001436,phalanx of manus,finger phalanx +http://purl.obolibrary.org/obo/UBERON_0001436,phalanx of manus,hand digit phalanx +http://purl.obolibrary.org/obo/UBERON_0001436,phalanx of manus,hand phalanx +http://purl.obolibrary.org/obo/UBERON_0001436,phalanx of manus,manual phalanx +http://purl.obolibrary.org/obo/UBERON_0001436,phalanx of manus,phalanx of digit of hand +http://purl.obolibrary.org/obo/UBERON_0001436,phalanx of manus,phalanx of digitus manus +http://purl.obolibrary.org/obo/UBERON_0001436,phalanx of manus,phalanx of finger +http://purl.obolibrary.org/obo/UBERON_0001436,phalanx of manus,phalanx of fore digit +http://purl.obolibrary.org/obo/UBERON_0001436,phalanx of manus,phalanx of hand +http://purl.obolibrary.org/obo/UBERON_0001436,phalanx of manus,phalanx of hand digit +http://purl.obolibrary.org/obo/UBERON_0001436,phalanx of manus,phalanx of manual digit +http://purl.obolibrary.org/obo/UBERON_0001437,epiphysis,bone epiphysis +http://purl.obolibrary.org/obo/UBERON_0001437,epiphysis,end of long bone +http://purl.obolibrary.org/obo/UBERON_0001437,epiphysis,epiphyses +http://purl.obolibrary.org/obo/UBERON_0001437,epiphysis,long bone epiphysis +http://purl.obolibrary.org/obo/UBERON_0001438,metaphysis,diaphyseal end of long bone +http://purl.obolibrary.org/obo/UBERON_0001438,metaphysis,long bone metaphysis +http://purl.obolibrary.org/obo/UBERON_0001438,metaphysis,metaphyses +http://purl.obolibrary.org/obo/UBERON_0001439,compact bone tissue,bony cortex +http://purl.obolibrary.org/obo/UBERON_0001439,compact bone tissue,compact bone +http://purl.obolibrary.org/obo/UBERON_0001439,compact bone tissue,compact bone tissue +http://purl.obolibrary.org/obo/UBERON_0001439,compact bone tissue,cortical bone +http://purl.obolibrary.org/obo/UBERON_0001439,compact bone tissue,cortical bone tissue +http://purl.obolibrary.org/obo/UBERON_0001439,compact bone tissue,cortical region of bone +http://purl.obolibrary.org/obo/UBERON_0001439,compact bone tissue,substantia compacta +http://purl.obolibrary.org/obo/UBERON_0001439,compact bone tissue,substantia compacta (pars ossea) +http://purl.obolibrary.org/obo/UBERON_0001439,compact bone tissue,substantia corticalis +http://purl.obolibrary.org/obo/UBERON_0001440,forelimb skeleton,bones of upper limb +http://purl.obolibrary.org/obo/UBERON_0001440,forelimb skeleton,fore limb skeleton +http://purl.obolibrary.org/obo/UBERON_0001440,forelimb skeleton,forelimb skeleton +http://purl.obolibrary.org/obo/UBERON_0001440,forelimb skeleton,free upper limb skeleton +http://purl.obolibrary.org/obo/UBERON_0001440,forelimb skeleton,ossa membri superioris +http://purl.obolibrary.org/obo/UBERON_0001440,forelimb skeleton,pectoral limb skeleton +http://purl.obolibrary.org/obo/UBERON_0001440,forelimb skeleton,set of bones of upper limb +http://purl.obolibrary.org/obo/UBERON_0001440,forelimb skeleton,skeleton of forelimb +http://purl.obolibrary.org/obo/UBERON_0001440,forelimb skeleton,skeleton of free upper limb +http://purl.obolibrary.org/obo/UBERON_0001440,forelimb skeleton,skeleton of pectoral limb +http://purl.obolibrary.org/obo/UBERON_0001440,forelimb skeleton,skeleton of upper limb +http://purl.obolibrary.org/obo/UBERON_0001440,forelimb skeleton,upper limb skeleton +http://purl.obolibrary.org/obo/UBERON_0001441,hindlimb skeleton,bones of lower limb +http://purl.obolibrary.org/obo/UBERON_0001441,hindlimb skeleton,free lower limb skeleton +http://purl.obolibrary.org/obo/UBERON_0001441,hindlimb skeleton,hind limb skeleton +http://purl.obolibrary.org/obo/UBERON_0001441,hindlimb skeleton,hind-limb skeleton +http://purl.obolibrary.org/obo/UBERON_0001441,hindlimb skeleton,hindlimb skeleton +http://purl.obolibrary.org/obo/UBERON_0001441,hindlimb skeleton,lower limb skeleton +http://purl.obolibrary.org/obo/UBERON_0001441,hindlimb skeleton,ossa membri inferioris +http://purl.obolibrary.org/obo/UBERON_0001441,hindlimb skeleton,set of bones of lower limb +http://purl.obolibrary.org/obo/UBERON_0001441,hindlimb skeleton,skeleton of free lower limb +http://purl.obolibrary.org/obo/UBERON_0001441,hindlimb skeleton,skeleton of lower limb +http://purl.obolibrary.org/obo/UBERON_0001442,skeleton of manus,anterior autopodium skeleton +http://purl.obolibrary.org/obo/UBERON_0001442,skeleton of manus,bones of hand +http://purl.obolibrary.org/obo/UBERON_0001442,skeleton of manus,fore autopod skeleton +http://purl.obolibrary.org/obo/UBERON_0001442,skeleton of manus,forelimb autopod skeleton +http://purl.obolibrary.org/obo/UBERON_0001442,skeleton of manus,hand region skeleton +http://purl.obolibrary.org/obo/UBERON_0001442,skeleton of manus,hand skeleton +http://purl.obolibrary.org/obo/UBERON_0001442,skeleton of manus,manual skeleton +http://purl.obolibrary.org/obo/UBERON_0001442,skeleton of manus,manus skeleton +http://purl.obolibrary.org/obo/UBERON_0001442,skeleton of manus,ossa manus +http://purl.obolibrary.org/obo/UBERON_0001442,skeleton of manus,set of bones of hand +http://purl.obolibrary.org/obo/UBERON_0001442,skeleton of manus,skeleton of hand +http://purl.obolibrary.org/obo/UBERON_0001443,chest,anterolateral part of thorax +http://purl.obolibrary.org/obo/UBERON_0001443,chest,front of thorax +http://purl.obolibrary.org/obo/UBERON_0001443,chest,pectus +http://purl.obolibrary.org/obo/UBERON_0001443,chest,ventral part of thoracic region +http://purl.obolibrary.org/obo/UBERON_0001444,subdivision of head,head region +http://purl.obolibrary.org/obo/UBERON_0001444,subdivision of head,head subdivision +http://purl.obolibrary.org/obo/UBERON_0001444,subdivision of head,region of head +http://purl.obolibrary.org/obo/UBERON_0001445,skeleton of pes,foot region skeleton +http://purl.obolibrary.org/obo/UBERON_0001445,skeleton of pes,foot skeleton +http://purl.obolibrary.org/obo/UBERON_0001445,skeleton of pes,pedal skeleton +http://purl.obolibrary.org/obo/UBERON_0001445,skeleton of pes,pes skeleton +http://purl.obolibrary.org/obo/UBERON_0001445,skeleton of pes,posterior autopodium skeleton +http://purl.obolibrary.org/obo/UBERON_0001445,skeleton of pes,set of bones of foot +http://purl.obolibrary.org/obo/UBERON_0001445,skeleton of pes,skeleton of foot +http://purl.obolibrary.org/obo/UBERON_0001446,fibula, +http://purl.obolibrary.org/obo/UBERON_0001447,tarsal bone,ankle bone +http://purl.obolibrary.org/obo/UBERON_0001447,tarsal bone,bone of ankle +http://purl.obolibrary.org/obo/UBERON_0001447,tarsal bone,bone of tarsal skeleton +http://purl.obolibrary.org/obo/UBERON_0001447,tarsal bone,bone of tarsus +http://purl.obolibrary.org/obo/UBERON_0001447,tarsal bone,ossa tarsalia +http://purl.obolibrary.org/obo/UBERON_0001447,tarsal bone,ossa tarsi +http://purl.obolibrary.org/obo/UBERON_0001448,metatarsal bone,metatarsal +http://purl.obolibrary.org/obo/UBERON_0001449,phalanx of pes,digitus pedis phalanx +http://purl.obolibrary.org/obo/UBERON_0001449,phalanx of pes,foot digit phalanx +http://purl.obolibrary.org/obo/UBERON_0001449,phalanx of pes,foot phalanx +http://purl.obolibrary.org/obo/UBERON_0001449,phalanx of pes,pedal phalanx +http://purl.obolibrary.org/obo/UBERON_0001449,phalanx of pes,phalanx of digit of foot +http://purl.obolibrary.org/obo/UBERON_0001449,phalanx of pes,phalanx of digitus pedis +http://purl.obolibrary.org/obo/UBERON_0001449,phalanx of pes,phalanx of foot digit +http://purl.obolibrary.org/obo/UBERON_0001449,phalanx of pes,phalanx of hind digit +http://purl.obolibrary.org/obo/UBERON_0001449,phalanx of pes,phalanx of pes +http://purl.obolibrary.org/obo/UBERON_0001449,phalanx of pes,phalanx of toe +http://purl.obolibrary.org/obo/UBERON_0001449,phalanx of pes,toe phalanx +http://purl.obolibrary.org/obo/UBERON_0001450,calcaneus,calcaneal bone +http://purl.obolibrary.org/obo/UBERON_0001450,calcaneus,calcaneum +http://purl.obolibrary.org/obo/UBERON_0001450,calcaneus,calcaneus bone +http://purl.obolibrary.org/obo/UBERON_0001450,calcaneus,os calcis +http://purl.obolibrary.org/obo/UBERON_0001451,navicular bone of pes,centrale (hind) +http://purl.obolibrary.org/obo/UBERON_0001451,navicular bone of pes,navicular +http://purl.obolibrary.org/obo/UBERON_0001451,navicular bone of pes,navicular bone of foot +http://purl.obolibrary.org/obo/UBERON_0001451,navicular bone of pes,navicular of foot +http://purl.obolibrary.org/obo/UBERON_0001451,navicular bone of pes,navicular of pes +http://purl.obolibrary.org/obo/UBERON_0001451,navicular bone of pes,os naviculare +http://purl.obolibrary.org/obo/UBERON_0001451,navicular bone of pes,os naviculare pedis +http://purl.obolibrary.org/obo/UBERON_0001451,navicular bone of pes,os tarsi centrale +http://purl.obolibrary.org/obo/UBERON_0001452,distal tarsal bone 1,cuneiforme 1 +http://purl.obolibrary.org/obo/UBERON_0001452,distal tarsal bone 1,distal tarsal 1 bone +http://purl.obolibrary.org/obo/UBERON_0001452,distal tarsal bone 1,entocuneiforme +http://purl.obolibrary.org/obo/UBERON_0001452,distal tarsal bone 1,first cuneiform +http://purl.obolibrary.org/obo/UBERON_0001452,distal tarsal bone 1,first cuneiform bone +http://purl.obolibrary.org/obo/UBERON_0001452,distal tarsal bone 1,medial cuneiform +http://purl.obolibrary.org/obo/UBERON_0001452,distal tarsal bone 1,medial cuneiform bone +http://purl.obolibrary.org/obo/UBERON_0001452,distal tarsal bone 1,os cuneiforme mediale +http://purl.obolibrary.org/obo/UBERON_0001452,distal tarsal bone 1,os tarsale I +http://purl.obolibrary.org/obo/UBERON_0001452,distal tarsal bone 1,tarsal 1 +http://purl.obolibrary.org/obo/UBERON_0001453,distal tarsal bone 2,cuneiforme 2 +http://purl.obolibrary.org/obo/UBERON_0001453,distal tarsal bone 2,distal tarsal 2 bone +http://purl.obolibrary.org/obo/UBERON_0001453,distal tarsal bone 2,intermediate cuneiform +http://purl.obolibrary.org/obo/UBERON_0001453,distal tarsal bone 2,mesocuneiforme +http://purl.obolibrary.org/obo/UBERON_0001453,distal tarsal bone 2,middle cuneiform +http://purl.obolibrary.org/obo/UBERON_0001453,distal tarsal bone 2,middle cuneiform bone of foot +http://purl.obolibrary.org/obo/UBERON_0001453,distal tarsal bone 2,os cuneiforme intermedium +http://purl.obolibrary.org/obo/UBERON_0001453,distal tarsal bone 2,os tarsale II +http://purl.obolibrary.org/obo/UBERON_0001453,distal tarsal bone 2,second cuneiform bone +http://purl.obolibrary.org/obo/UBERON_0001453,distal tarsal bone 2,second cuneiform bone of foot +http://purl.obolibrary.org/obo/UBERON_0001453,distal tarsal bone 2,tarsal 2 +http://purl.obolibrary.org/obo/UBERON_0001454,distal tarsal bone 3,cuneiforme 3 +http://purl.obolibrary.org/obo/UBERON_0001454,distal tarsal bone 3,distal tarsal 3 bone +http://purl.obolibrary.org/obo/UBERON_0001454,distal tarsal bone 3,ectocuneiforme +http://purl.obolibrary.org/obo/UBERON_0001454,distal tarsal bone 3,external cuneiform +http://purl.obolibrary.org/obo/UBERON_0001454,distal tarsal bone 3,external cuneiform bone of foot +http://purl.obolibrary.org/obo/UBERON_0001454,distal tarsal bone 3,lateral cuneiform +http://purl.obolibrary.org/obo/UBERON_0001454,distal tarsal bone 3,lateral cuneiform bone +http://purl.obolibrary.org/obo/UBERON_0001454,distal tarsal bone 3,os cuneiforme laterale +http://purl.obolibrary.org/obo/UBERON_0001454,distal tarsal bone 3,os tarsale III +http://purl.obolibrary.org/obo/UBERON_0001454,distal tarsal bone 3,tarsal 3 +http://purl.obolibrary.org/obo/UBERON_0001454,distal tarsal bone 3,third cuneiform bone +http://purl.obolibrary.org/obo/UBERON_0001455,cuboid bone,cuboid +http://purl.obolibrary.org/obo/UBERON_0001456,face,facia/facies +http://purl.obolibrary.org/obo/UBERON_0001456,face,visage +http://purl.obolibrary.org/obo/UBERON_0001457,skin of eyelid,blepharon zone of skin +http://purl.obolibrary.org/obo/UBERON_0001457,skin of eyelid,eyelid skin +http://purl.obolibrary.org/obo/UBERON_0001457,skin of eyelid,eyelid zone of skin +http://purl.obolibrary.org/obo/UBERON_0001457,skin of eyelid,zone of skin of blepharon +http://purl.obolibrary.org/obo/UBERON_0001457,skin of eyelid,zone of skin of eyelid +http://purl.obolibrary.org/obo/UBERON_0001458,skin of lip,lip skin +http://purl.obolibrary.org/obo/UBERON_0001458,skin of lip,lip zone of skin +http://purl.obolibrary.org/obo/UBERON_0001458,skin of lip,zone of skin of lip +http://purl.obolibrary.org/obo/UBERON_0001459,skin of external ear,auricular region of head zone of skin +http://purl.obolibrary.org/obo/UBERON_0001459,skin of external ear,auricular region zone of skin +http://purl.obolibrary.org/obo/UBERON_0001459,skin of external ear,ear skin +http://purl.obolibrary.org/obo/UBERON_0001459,skin of external ear,external ear skin +http://purl.obolibrary.org/obo/UBERON_0001459,skin of external ear,external ear zone of skin +http://purl.obolibrary.org/obo/UBERON_0001459,skin of external ear,outer ear zone of skin +http://purl.obolibrary.org/obo/UBERON_0001459,skin of external ear,zone of skin of auricular region +http://purl.obolibrary.org/obo/UBERON_0001459,skin of external ear,zone of skin of auricular region of head +http://purl.obolibrary.org/obo/UBERON_0001459,skin of external ear,zone of skin of external ear +http://purl.obolibrary.org/obo/UBERON_0001459,skin of external ear,zone of skin of outer ear +http://purl.obolibrary.org/obo/UBERON_0001460,arm, +http://purl.obolibrary.org/obo/UBERON_0001461,elbow,cubital region +http://purl.obolibrary.org/obo/UBERON_0001461,elbow,elbow limb segment +http://purl.obolibrary.org/obo/UBERON_0001461,elbow,elbow region +http://purl.obolibrary.org/obo/UBERON_0001463,manual digit 1,digit 1 of fore-paw +http://purl.obolibrary.org/obo/UBERON_0001463,manual digit 1,digit 1 of manus +http://purl.obolibrary.org/obo/UBERON_0001463,manual digit 1,finger 1 +http://purl.obolibrary.org/obo/UBERON_0001463,manual digit 1,first digit of hand +http://purl.obolibrary.org/obo/UBERON_0001463,manual digit 1,fore digit I +http://purl.obolibrary.org/obo/UBERON_0001463,manual digit 1,fore limb digit 1 +http://purl.obolibrary.org/obo/UBERON_0001463,manual digit 1,hand digit 1 +http://purl.obolibrary.org/obo/UBERON_0001463,manual digit 1,manual digit 1 +http://purl.obolibrary.org/obo/UBERON_0001463,manual digit 1,manual digit I +http://purl.obolibrary.org/obo/UBERON_0001463,manual digit 1,pollex +http://purl.obolibrary.org/obo/UBERON_0001464,hip,hip region +http://purl.obolibrary.org/obo/UBERON_0001464,hip,regio coxae +http://purl.obolibrary.org/obo/UBERON_0001465,knee,knee region +http://purl.obolibrary.org/obo/UBERON_0001466,pedal digit,digit of foot +http://purl.obolibrary.org/obo/UBERON_0001466,pedal digit,digit of terminal segment of lower limb +http://purl.obolibrary.org/obo/UBERON_0001466,pedal digit,digiti pedis +http://purl.obolibrary.org/obo/UBERON_0001466,pedal digit,digitus pedis +http://purl.obolibrary.org/obo/UBERON_0001466,pedal digit,foot digit +http://purl.obolibrary.org/obo/UBERON_0001466,pedal digit,hind digit +http://purl.obolibrary.org/obo/UBERON_0001466,pedal digit,hind_digit +http://purl.obolibrary.org/obo/UBERON_0001466,pedal digit,hindlimb digit +http://purl.obolibrary.org/obo/UBERON_0001466,pedal digit,pedal digit (phalangeal portion) plus soft tissue +http://purl.obolibrary.org/obo/UBERON_0001466,pedal digit,pes digit +http://purl.obolibrary.org/obo/UBERON_0001466,pedal digit,toe +http://purl.obolibrary.org/obo/UBERON_0001467,shoulder,shoulder region +http://purl.obolibrary.org/obo/UBERON_0001468,intervertebral joint,inter-centrum joint +http://purl.obolibrary.org/obo/UBERON_0001468,intervertebral joint,inter-vertebral joint +http://purl.obolibrary.org/obo/UBERON_0001468,intervertebral joint,intervertebral symphysis +http://purl.obolibrary.org/obo/UBERON_0001468,intervertebral joint,joint of vertebral body +http://purl.obolibrary.org/obo/UBERON_0001469,sternoclavicular joint,sterno clavicular joint +http://purl.obolibrary.org/obo/UBERON_0001469,sternoclavicular joint,sternoclavicular articulation +http://purl.obolibrary.org/obo/UBERON_0001470,glenohumeral joint,articulatio humeri +http://purl.obolibrary.org/obo/UBERON_0001470,glenohumeral joint,humeral joint +http://purl.obolibrary.org/obo/UBERON_0001471,skin of prepuce of penis,foreskin of penis +http://purl.obolibrary.org/obo/UBERON_0001471,skin of prepuce of penis,penis foreskin +http://purl.obolibrary.org/obo/UBERON_0001471,skin of prepuce of penis,preputial skin +http://purl.obolibrary.org/obo/UBERON_0001472,vaginal venous plexus,venous vaginal plexus +http://purl.obolibrary.org/obo/UBERON_0001473,lymphatic vessel,lymph vessel +http://purl.obolibrary.org/obo/UBERON_0001474,bone element,bone +http://purl.obolibrary.org/obo/UBERON_0001474,bone element,bone organ +http://purl.obolibrary.org/obo/UBERON_0001474,bone element,bones +http://purl.obolibrary.org/obo/UBERON_0001476,deltoid,deltoid muscle +http://purl.obolibrary.org/obo/UBERON_0001476,deltoid,m. deltoideus +http://purl.obolibrary.org/obo/UBERON_0001476,deltoid,musculus deltoideus +http://purl.obolibrary.org/obo/UBERON_0001477,infraspinatus muscle,infraspinatus +http://purl.obolibrary.org/obo/UBERON_0001478,teres major muscle,teres major +http://purl.obolibrary.org/obo/UBERON_0001479,sesamoid bone,ossa sesamoidea +http://purl.obolibrary.org/obo/UBERON_0001480,proximal carpal bone, +http://purl.obolibrary.org/obo/UBERON_0001481,distal carpal bone,distal carpal +http://purl.obolibrary.org/obo/UBERON_0001482,muscle of shoulder,muscle organ of shoulder +http://purl.obolibrary.org/obo/UBERON_0001482,muscle of shoulder,shoulder muscle +http://purl.obolibrary.org/obo/UBERON_0001482,muscle of shoulder,shoulder muscle organ +http://purl.obolibrary.org/obo/UBERON_0001483,skin of shoulder,shoulder skin +http://purl.obolibrary.org/obo/UBERON_0001483,skin of shoulder,shoulder zone of skin +http://purl.obolibrary.org/obo/UBERON_0001483,skin of shoulder,zone of skin of shoulder +http://purl.obolibrary.org/obo/UBERON_0001484,articular capsule,capsula articularis +http://purl.obolibrary.org/obo/UBERON_0001484,articular capsule,fibrous capsule of joint +http://purl.obolibrary.org/obo/UBERON_0001484,articular capsule,joint capsule +http://purl.obolibrary.org/obo/UBERON_0001484,articular capsule,joint fibrous capsule +http://purl.obolibrary.org/obo/UBERON_0001485,knee joint,joint of knee +http://purl.obolibrary.org/obo/UBERON_0001486,hip joint,articulatio coxofemoralis +http://purl.obolibrary.org/obo/UBERON_0001486,hip joint,femoro-iliac joint +http://purl.obolibrary.org/obo/UBERON_0001487,pes joint,articulationes pedis +http://purl.obolibrary.org/obo/UBERON_0001487,pes joint,foot joint +http://purl.obolibrary.org/obo/UBERON_0001487,pes joint,hind limb autopod joint +http://purl.obolibrary.org/obo/UBERON_0001487,pes joint,joint of pes +http://purl.obolibrary.org/obo/UBERON_0001487,pes joint,joint of terminal segment of free lower limb +http://purl.obolibrary.org/obo/UBERON_0001487,pes joint,joints of foot +http://purl.obolibrary.org/obo/UBERON_0001487,pes joint,pedal joint +http://purl.obolibrary.org/obo/UBERON_0001488,ankle joint, +http://purl.obolibrary.org/obo/UBERON_0001489,manus joint,articulationes manus +http://purl.obolibrary.org/obo/UBERON_0001489,manus joint,hand joint +http://purl.obolibrary.org/obo/UBERON_0001489,manus joint,joint of hand +http://purl.obolibrary.org/obo/UBERON_0001489,manus joint,joint of manus +http://purl.obolibrary.org/obo/UBERON_0001489,manus joint,joint of terminal segment of free upper limb +http://purl.obolibrary.org/obo/UBERON_0001489,manus joint,manual joint +http://purl.obolibrary.org/obo/UBERON_0001490,elbow joint,articulatio cubiti +http://purl.obolibrary.org/obo/UBERON_0001490,elbow joint,cubital region joint +http://purl.obolibrary.org/obo/UBERON_0001490,elbow joint,joint of cubital region +http://purl.obolibrary.org/obo/UBERON_0001490,elbow joint,joint of elbow +http://purl.obolibrary.org/obo/UBERON_0001491,wrist joint,carpal region joint +http://purl.obolibrary.org/obo/UBERON_0001491,wrist joint,joint of carpal region +http://purl.obolibrary.org/obo/UBERON_0001491,wrist joint,joint of wrist +http://purl.obolibrary.org/obo/UBERON_0001492,radial nerve, +http://purl.obolibrary.org/obo/UBERON_0001493,axillary nerve,circumflex humeral nerve +http://purl.obolibrary.org/obo/UBERON_0001494,ulnar nerve, +http://purl.obolibrary.org/obo/UBERON_0001495,pectoral muscle,M. pectoralis +http://purl.obolibrary.org/obo/UBERON_0001495,pectoral muscle,muscle of pectoral part of chest +http://purl.obolibrary.org/obo/UBERON_0001495,pectoral muscle,muscle of pectoral region +http://purl.obolibrary.org/obo/UBERON_0001496,ascending aorta,ascending thoracic aorta +http://purl.obolibrary.org/obo/UBERON_0001496,ascending aorta,pars ascendens aortae +http://purl.obolibrary.org/obo/UBERON_0001497,muscle of pelvic girdle,girdle-pelvic muscle organ +http://purl.obolibrary.org/obo/UBERON_0001497,muscle of pelvic girdle,muscle organ of girdle-pelvic +http://purl.obolibrary.org/obo/UBERON_0001497,muscle of pelvic girdle,muscle organ of pelvic girdle +http://purl.obolibrary.org/obo/UBERON_0001497,muscle of pelvic girdle,muscle organ of pelvic girdle bone +http://purl.obolibrary.org/obo/UBERON_0001497,muscle of pelvic girdle,pelvic girdle muscle +http://purl.obolibrary.org/obo/UBERON_0001497,muscle of pelvic girdle,pelvic girdle muscle organ +http://purl.obolibrary.org/obo/UBERON_0001497,muscle of pelvic girdle,pelvic girdle skeletal muscle +http://purl.obolibrary.org/obo/UBERON_0001498,muscle of pes,foot muscle +http://purl.obolibrary.org/obo/UBERON_0001498,muscle of pes,foot muscle organ +http://purl.obolibrary.org/obo/UBERON_0001498,muscle of pes,muscle of foot +http://purl.obolibrary.org/obo/UBERON_0001498,muscle of pes,muscle organ of foot +http://purl.obolibrary.org/obo/UBERON_0001499,muscle of arm,arm muscle +http://purl.obolibrary.org/obo/UBERON_0001499,muscle of arm,arm skeletal muscle +http://purl.obolibrary.org/obo/UBERON_0001499,muscle of arm,arm skeletal muscle tissue +http://purl.obolibrary.org/obo/UBERON_0001499,muscle of arm,muscle of upper arm or lower arm +http://purl.obolibrary.org/obo/UBERON_0001499,muscle of arm,upper arm / lower arm muscle +http://purl.obolibrary.org/obo/UBERON_0001500,muscle of manus,hand muscle +http://purl.obolibrary.org/obo/UBERON_0001500,muscle of manus,manus muscle +http://purl.obolibrary.org/obo/UBERON_0001500,muscle of manus,manus muscle organ +http://purl.obolibrary.org/obo/UBERON_0001500,muscle of manus,muscle of hand +http://purl.obolibrary.org/obo/UBERON_0001500,muscle of manus,muscle organ of manus +http://purl.obolibrary.org/obo/UBERON_0001501,lumbrical muscle of manus,hand lumbrical +http://purl.obolibrary.org/obo/UBERON_0001501,lumbrical muscle of manus,hand lumbrical muscle +http://purl.obolibrary.org/obo/UBERON_0001501,lumbrical muscle of manus,lumbrical of hand +http://purl.obolibrary.org/obo/UBERON_0001501,lumbrical muscle of manus,musculi lumbricales manus +http://purl.obolibrary.org/obo/UBERON_0001502,interosseous muscle of manus,hand interosseous muscle +http://purl.obolibrary.org/obo/UBERON_0001502,interosseous muscle of manus,interosseous muscle of hand +http://purl.obolibrary.org/obo/UBERON_0001502,interosseous muscle of manus,manus interosseous muscle +http://purl.obolibrary.org/obo/UBERON_0001503,dorsal interosseous of manus,dorsal hand interosseus muscle +http://purl.obolibrary.org/obo/UBERON_0001503,dorsal interosseous of manus,dorsal interosseous of hand +http://purl.obolibrary.org/obo/UBERON_0001503,dorsal interosseous of manus,dorsal manus interosseous muscle +http://purl.obolibrary.org/obo/UBERON_0001503,dorsal interosseous of manus,musculi interossei dorsales manus +http://purl.obolibrary.org/obo/UBERON_0001504,lumbrical muscle of pes,foot lumbrical +http://purl.obolibrary.org/obo/UBERON_0001504,lumbrical muscle of pes,foot lumbrical muscle +http://purl.obolibrary.org/obo/UBERON_0001504,lumbrical muscle of pes,lumbrical of foot +http://purl.obolibrary.org/obo/UBERON_0001504,lumbrical muscle of pes,pes lumbrical +http://purl.obolibrary.org/obo/UBERON_0001504,lumbrical muscle of pes,pes lumbrical muscle +http://purl.obolibrary.org/obo/UBERON_0001505,coracobrachialis muscle,Pirogoff's aponeurosis +http://purl.obolibrary.org/obo/UBERON_0001505,coracobrachialis muscle,coracobrachial +http://purl.obolibrary.org/obo/UBERON_0001505,coracobrachialis muscle,coracobrachialis +http://purl.obolibrary.org/obo/UBERON_0001506,brachialis muscle,Casserio's muscle +http://purl.obolibrary.org/obo/UBERON_0001507,biceps brachii, +http://purl.obolibrary.org/obo/UBERON_0001508,arch of aorta,aortic arch +http://purl.obolibrary.org/obo/UBERON_0001508,arch of aorta,arcus aortae +http://purl.obolibrary.org/obo/UBERON_0001508,arch of aorta,thoracic aorta +http://purl.obolibrary.org/obo/UBERON_0001509,triceps brachii,triceps +http://purl.obolibrary.org/obo/UBERON_0001509,triceps brachii,triceps brachii muscle +http://purl.obolibrary.org/obo/UBERON_0001510,skin of knee,knee skin +http://purl.obolibrary.org/obo/UBERON_0001510,skin of knee,knee zone of skin +http://purl.obolibrary.org/obo/UBERON_0001510,skin of knee,zone of skin of knee +http://purl.obolibrary.org/obo/UBERON_0001511,skin of leg,leg skin +http://purl.obolibrary.org/obo/UBERON_0001511,skin of leg,leg zone of skin +http://purl.obolibrary.org/obo/UBERON_0001511,skin of leg,zone of skin of leg +http://purl.obolibrary.org/obo/UBERON_0001512,skin of ankle,ankle skin +http://purl.obolibrary.org/obo/UBERON_0001512,skin of ankle,ankle zone of skin +http://purl.obolibrary.org/obo/UBERON_0001512,skin of ankle,tarsal region skin +http://purl.obolibrary.org/obo/UBERON_0001512,skin of ankle,zone of skin of ankle +http://purl.obolibrary.org/obo/UBERON_0001513,skin of pes,foot skin +http://purl.obolibrary.org/obo/UBERON_0001513,skin of pes,skin of foot +http://purl.obolibrary.org/obo/UBERON_0001514,descending aorta,aorta descendens +http://purl.obolibrary.org/obo/UBERON_0001514,descending aorta,pars descendens aortae +http://purl.obolibrary.org/obo/UBERON_0001515,thoracic aorta,aorta thoracalis +http://purl.obolibrary.org/obo/UBERON_0001515,thoracic aorta,aorta thoracica +http://purl.obolibrary.org/obo/UBERON_0001515,thoracic aorta,pars thoracica aortae +http://purl.obolibrary.org/obo/UBERON_0001515,thoracic aorta,thoracic part of aorta +http://purl.obolibrary.org/obo/UBERON_0001516,abdominal aorta,abdominal part of aorta +http://purl.obolibrary.org/obo/UBERON_0001516,abdominal aorta,aorta abdominalis +http://purl.obolibrary.org/obo/UBERON_0001516,abdominal aorta,descending abdominal aorta +http://purl.obolibrary.org/obo/UBERON_0001516,abdominal aorta,pars abdominalis aortae +http://purl.obolibrary.org/obo/UBERON_0001517,skin of elbow,cubital region zone of skin +http://purl.obolibrary.org/obo/UBERON_0001517,skin of elbow,elbow skin +http://purl.obolibrary.org/obo/UBERON_0001517,skin of elbow,elbow zone of skin +http://purl.obolibrary.org/obo/UBERON_0001517,skin of elbow,zone of skin of cubital region +http://purl.obolibrary.org/obo/UBERON_0001517,skin of elbow,zone of skin of elbow +http://purl.obolibrary.org/obo/UBERON_0001518,skin of wrist,carpal region zone of skin +http://purl.obolibrary.org/obo/UBERON_0001518,skin of wrist,wrist skin +http://purl.obolibrary.org/obo/UBERON_0001518,skin of wrist,wrist zone of skin +http://purl.obolibrary.org/obo/UBERON_0001518,skin of wrist,zone of skin of carpal region +http://purl.obolibrary.org/obo/UBERON_0001518,skin of wrist,zone of skin of wrist +http://purl.obolibrary.org/obo/UBERON_0001519,skin of manus,hand skin +http://purl.obolibrary.org/obo/UBERON_0001519,skin of manus,manus skin +http://purl.obolibrary.org/obo/UBERON_0001519,skin of manus,skin of hand +http://purl.obolibrary.org/obo/UBERON_0001520,pronator teres, +http://purl.obolibrary.org/obo/UBERON_0001521,flexor carpi radialis muscle,flexor carpi radialis +http://purl.obolibrary.org/obo/UBERON_0001522,flexor carpi ulnaris muscle,flexor carpi ulnaris +http://purl.obolibrary.org/obo/UBERON_0001523,flexor digitorum profundus,flexor digitorum profundus muscle +http://purl.obolibrary.org/obo/UBERON_0001524,extensor carpi radialis longus muscle,extensor carpi radialis longus +http://purl.obolibrary.org/obo/UBERON_0001525,extensor carpi radialis brevis muscle,extensor carpi radialis brevis +http://purl.obolibrary.org/obo/UBERON_0001525,extensor carpi radialis brevis muscle,musculus extensor carpi radialis brevis +http://purl.obolibrary.org/obo/UBERON_0001526,extensor carpi ulnaris muscle,ECU muscle +http://purl.obolibrary.org/obo/UBERON_0001526,extensor carpi ulnaris muscle,extensor carpi ulnaris +http://purl.obolibrary.org/obo/UBERON_0001526,extensor carpi ulnaris muscle,musculus extensor carpi ulnaris +http://purl.obolibrary.org/obo/UBERON_0001527,abductor pollicis longus, +http://purl.obolibrary.org/obo/UBERON_0001528,radio-ulnar joint,articulation of the radus and ulna +http://purl.obolibrary.org/obo/UBERON_0001528,radio-ulnar joint,radioulnar joint +http://purl.obolibrary.org/obo/UBERON_0001529,brachiocephalic artery,brachiocephalic trunk +http://purl.obolibrary.org/obo/UBERON_0001529,brachiocephalic artery,innominate artery +http://purl.obolibrary.org/obo/UBERON_0001529,brachiocephalic artery,truncus brachiocephalicus +http://purl.obolibrary.org/obo/UBERON_0001530,common carotid artery plus branches,a. carotis communis +http://purl.obolibrary.org/obo/UBERON_0001530,common carotid artery plus branches,carotid artery +http://purl.obolibrary.org/obo/UBERON_0001530,common carotid artery plus branches,carotid artery system +http://purl.obolibrary.org/obo/UBERON_0001530,common carotid artery plus branches,common carotid artery +http://purl.obolibrary.org/obo/UBERON_0001530,common carotid artery plus branches,trunk of common carotid tree +http://purl.obolibrary.org/obo/UBERON_0001531,right common carotid artery plus branches,right common carotid artery +http://purl.obolibrary.org/obo/UBERON_0001531,right common carotid artery plus branches,trunk of right common carotid tree +http://purl.obolibrary.org/obo/UBERON_0001532,internal carotid artery,cranial carotid artery +http://purl.obolibrary.org/obo/UBERON_0001532,internal carotid artery,internal carotid +http://purl.obolibrary.org/obo/UBERON_0001533,subclavian artery,arteria subclavia +http://purl.obolibrary.org/obo/UBERON_0001533,subclavian artery,arterial tree of upper limb +http://purl.obolibrary.org/obo/UBERON_0001533,subclavian artery,pectoral artery +http://purl.obolibrary.org/obo/UBERON_0001533,subclavian artery,subclavian arterial tree +http://purl.obolibrary.org/obo/UBERON_0001534,right subclavian artery,arteria subclavia dextra +http://purl.obolibrary.org/obo/UBERON_0001535,vertebral artery, +http://purl.obolibrary.org/obo/UBERON_0001536,left common carotid artery plus branches,left common carotid artery +http://purl.obolibrary.org/obo/UBERON_0001536,left common carotid artery plus branches,trunk of left common carotid tree +http://purl.obolibrary.org/obo/UBERON_0001537,anterior tibial artery, +http://purl.obolibrary.org/obo/UBERON_0001538,posterior tibial artery, +http://purl.obolibrary.org/obo/UBERON_0001539,dorsalis pedis artery,arteria dorsalis pedis +http://purl.obolibrary.org/obo/UBERON_0001539,dorsalis pedis artery,dorsal artery of foot +http://purl.obolibrary.org/obo/UBERON_0001540,peroneal artery,arteria fibularis +http://purl.obolibrary.org/obo/UBERON_0001540,peroneal artery,fibular artery +http://purl.obolibrary.org/obo/UBERON_0001541,medial plantar artery, +http://purl.obolibrary.org/obo/UBERON_0001542,inguinal lymph node, +http://purl.obolibrary.org/obo/UBERON_0001543,popliteal lymph node, +http://purl.obolibrary.org/obo/UBERON_0001544,popliteal vein, +http://purl.obolibrary.org/obo/UBERON_0001545,anterior tibial vein, +http://purl.obolibrary.org/obo/UBERON_0001546,posterior tibial vein, +http://purl.obolibrary.org/obo/UBERON_0001547,small saphenous vein,lesser saphenous vein +http://purl.obolibrary.org/obo/UBERON_0001547,small saphenous vein,short saphenous vein +http://purl.obolibrary.org/obo/UBERON_0001547,small saphenous vein,vena saphena parva +http://purl.obolibrary.org/obo/UBERON_0001548,lateral marginal vein,lateral marginal vein of foot +http://purl.obolibrary.org/obo/UBERON_0001548,lateral marginal vein,vena marginalis lateralis +http://purl.obolibrary.org/obo/UBERON_0001548,lateral marginal vein,vena marginalis lateralis pedis +http://purl.obolibrary.org/obo/UBERON_0001549,dorsal metatarsal vein,metatarsal vein +http://purl.obolibrary.org/obo/UBERON_0001550,medial marginal vein,medial marginal vein of foot +http://purl.obolibrary.org/obo/UBERON_0001550,medial marginal vein,vena marginalis medialis +http://purl.obolibrary.org/obo/UBERON_0001550,medial marginal vein,vena marginalis medialis pedis +http://purl.obolibrary.org/obo/UBERON_0001551,vein of hindlimb zeugopod,sural vein +http://purl.obolibrary.org/obo/UBERON_0001552,kidney arcuate artery,renal arcuate artery +http://purl.obolibrary.org/obo/UBERON_0001553,medial tarsal artery, +http://purl.obolibrary.org/obo/UBERON_0001554,skin of hip,hip region zone of skin +http://purl.obolibrary.org/obo/UBERON_0001554,skin of hip,hip skin +http://purl.obolibrary.org/obo/UBERON_0001554,skin of hip,hip zone of skin +http://purl.obolibrary.org/obo/UBERON_0001554,skin of hip,regio coxae zone of skin +http://purl.obolibrary.org/obo/UBERON_0001554,skin of hip,zone of skin of hip +http://purl.obolibrary.org/obo/UBERON_0001554,skin of hip,zone of skin of hip region +http://purl.obolibrary.org/obo/UBERON_0001554,skin of hip,zone of skin of regio coxae +http://purl.obolibrary.org/obo/UBERON_0001555,digestive tract,alimentary canal +http://purl.obolibrary.org/obo/UBERON_0001555,digestive tract,alimentary tract +http://purl.obolibrary.org/obo/UBERON_0001555,digestive tract,digestive canal +http://purl.obolibrary.org/obo/UBERON_0001555,digestive tract,digestive tube +http://purl.obolibrary.org/obo/UBERON_0001555,digestive tract,enteric tract +http://purl.obolibrary.org/obo/UBERON_0001555,digestive tract,gut +http://purl.obolibrary.org/obo/UBERON_0001555,digestive tract,gut tube +http://purl.obolibrary.org/obo/UBERON_0001556,lower urinary tract, +http://purl.obolibrary.org/obo/UBERON_0001557,upper respiratory tract, +http://purl.obolibrary.org/obo/UBERON_0001558,lower respiratory tract,lower respiratory system +http://purl.obolibrary.org/obo/UBERON_0001560,neck of organ,organ neck +http://purl.obolibrary.org/obo/UBERON_0001561,subcostal artery, +http://purl.obolibrary.org/obo/UBERON_0001562,digastric muscle group,digastric +http://purl.obolibrary.org/obo/UBERON_0001562,digastric muscle group,musculus digastricus +http://purl.obolibrary.org/obo/UBERON_0001563,longus capitis muscle,longus capitis +http://purl.obolibrary.org/obo/UBERON_0001563,longus capitis muscle,m. rectus capitis posterior +http://purl.obolibrary.org/obo/UBERON_0001564,mylohyoid muscle,musculus mylohyoideus +http://purl.obolibrary.org/obo/UBERON_0001564,mylohyoid muscle,mylohyoid +http://purl.obolibrary.org/obo/UBERON_0001564,mylohyoid muscle,mylohyoideus +http://purl.obolibrary.org/obo/UBERON_0001564,mylohyoid muscle,mylohyoideus muscle +http://purl.obolibrary.org/obo/UBERON_0001565,geniohyoid muscle,genio-hyoideus +http://purl.obolibrary.org/obo/UBERON_0001565,geniohyoid muscle,genio-hyoideus muscle +http://purl.obolibrary.org/obo/UBERON_0001565,geniohyoid muscle,geniohyoid +http://purl.obolibrary.org/obo/UBERON_0001565,geniohyoid muscle,geniohyoideus +http://purl.obolibrary.org/obo/UBERON_0001565,geniohyoid muscle,geniohyoideus muscle +http://purl.obolibrary.org/obo/UBERON_0001565,geniohyoid muscle,m. geniohyoideus +http://purl.obolibrary.org/obo/UBERON_0001566,cricothyroid muscle,M. cricothyroideus +http://purl.obolibrary.org/obo/UBERON_0001566,cricothyroid muscle,cricothyroid +http://purl.obolibrary.org/obo/UBERON_0001566,cricothyroid muscle,cricothyroideus +http://purl.obolibrary.org/obo/UBERON_0001566,cricothyroid muscle,musculus cricothyroideus +http://purl.obolibrary.org/obo/UBERON_0001567,cheek,buccae +http://purl.obolibrary.org/obo/UBERON_0001567,cheek,jowl +http://purl.obolibrary.org/obo/UBERON_0001568,muscle of larynx,laryngeal muscle +http://purl.obolibrary.org/obo/UBERON_0001568,muscle of larynx,larynx muscle +http://purl.obolibrary.org/obo/UBERON_0001568,muscle of larynx,larynx muscle organ +http://purl.obolibrary.org/obo/UBERON_0001568,muscle of larynx,muscle organ of larynx +http://purl.obolibrary.org/obo/UBERON_0001568,muscle of larynx,musculi laryngeales +http://purl.obolibrary.org/obo/UBERON_0001569,constrictor muscle of pharynx,pharyngeal constrictor muscle +http://purl.obolibrary.org/obo/UBERON_0001570,inferior pharyngeal constrictor,constrictor muscle of pharynx inferior +http://purl.obolibrary.org/obo/UBERON_0001570,inferior pharyngeal constrictor,constrictores pharyngis caudales +http://purl.obolibrary.org/obo/UBERON_0001570,inferior pharyngeal constrictor,inferior constrictor +http://purl.obolibrary.org/obo/UBERON_0001570,inferior pharyngeal constrictor,inferior constrictor of pharynx +http://purl.obolibrary.org/obo/UBERON_0001570,inferior pharyngeal constrictor,inferior constrictor pharyngeus +http://purl.obolibrary.org/obo/UBERON_0001570,inferior pharyngeal constrictor,musculus constrictor pharyngis inferior +http://purl.obolibrary.org/obo/UBERON_0001571,genioglossus muscle,genioglossus +http://purl.obolibrary.org/obo/UBERON_0001571,genioglossus muscle,m. genioglossus +http://purl.obolibrary.org/obo/UBERON_0001571,genioglossus muscle,musculus genioglossus +http://purl.obolibrary.org/obo/UBERON_0001572,hyoglossus muscle,hyoglossus +http://purl.obolibrary.org/obo/UBERON_0001572,hyoglossus muscle,m. hyoglossus +http://purl.obolibrary.org/obo/UBERON_0001573,styloglossus,syloglossus muscle +http://purl.obolibrary.org/obo/UBERON_0001574,palatoglossus muscle,palatoglossal +http://purl.obolibrary.org/obo/UBERON_0001574,palatoglossus muscle,palatoglossal muscle +http://purl.obolibrary.org/obo/UBERON_0001574,palatoglossus muscle,palatoglossus +http://purl.obolibrary.org/obo/UBERON_0001575,extrinsic muscle of tongue,extrinsic lingual muscle +http://purl.obolibrary.org/obo/UBERON_0001575,extrinsic muscle of tongue,extrinsic tongue muscle +http://purl.obolibrary.org/obo/UBERON_0001576,intrinsic muscle of tongue,intrinsic lingual muscle +http://purl.obolibrary.org/obo/UBERON_0001576,intrinsic muscle of tongue,intrinsic tongue muscle +http://purl.obolibrary.org/obo/UBERON_0001577,facial muscle,face muscle +http://purl.obolibrary.org/obo/UBERON_0001577,facial muscle,face muscle organ +http://purl.obolibrary.org/obo/UBERON_0001577,facial muscle,facial muscle +http://purl.obolibrary.org/obo/UBERON_0001577,facial muscle,facial muscle proper +http://purl.obolibrary.org/obo/UBERON_0001577,facial muscle,facial nerve innervated muscle +http://purl.obolibrary.org/obo/UBERON_0001577,facial muscle,facial nerve muscle +http://purl.obolibrary.org/obo/UBERON_0001577,facial muscle,muscle of face +http://purl.obolibrary.org/obo/UBERON_0001577,facial muscle,muscle organ of face +http://purl.obolibrary.org/obo/UBERON_0001578,orbicularis oculi muscle,orbicularis oculi +http://purl.obolibrary.org/obo/UBERON_0001579,olfactory nerve,first cranial nerve +http://purl.obolibrary.org/obo/UBERON_0001579,olfactory nerve,nervus olfactorius [i] +http://purl.obolibrary.org/obo/UBERON_0001579,olfactory nerve,olfactory I +http://purl.obolibrary.org/obo/UBERON_0001579,olfactory nerve,olfactory i nerve +http://purl.obolibrary.org/obo/UBERON_0001579,olfactory nerve,olfactory nerve [I] +http://purl.obolibrary.org/obo/UBERON_0001580,levator labii superioris, +http://purl.obolibrary.org/obo/UBERON_0001581,depressor labii inferioris, +http://purl.obolibrary.org/obo/UBERON_0001582,buccinator muscle,buccinator +http://purl.obolibrary.org/obo/UBERON_0001582,buccinator muscle,musculus buccinator +http://purl.obolibrary.org/obo/UBERON_0001583,extrinsic auricular muscle, +http://purl.obolibrary.org/obo/UBERON_0001584,left subclavian artery,arteria subclavia (sinistra) +http://purl.obolibrary.org/obo/UBERON_0001585,anterior vena cava,superior caval vein +http://purl.obolibrary.org/obo/UBERON_0001585,anterior vena cava,superior vena cava +http://purl.obolibrary.org/obo/UBERON_0001586,internal jugular vein,internal jugular +http://purl.obolibrary.org/obo/UBERON_0001586,internal jugular vein,internal jugular venous tree +http://purl.obolibrary.org/obo/UBERON_0001587,subclavian vein,subclavian venous tree +http://purl.obolibrary.org/obo/UBERON_0001587,subclavian vein,vena subclavia +http://purl.obolibrary.org/obo/UBERON_0001588,vertebral vein, +http://purl.obolibrary.org/obo/UBERON_0001589,internal thoracic vein, +http://purl.obolibrary.org/obo/UBERON_0001590,pericardiacophrenic vein, +http://purl.obolibrary.org/obo/UBERON_0001591,thymic vein,thymic tributary of brachiocephalic vein +http://purl.obolibrary.org/obo/UBERON_0001591,thymic vein,vena thymica +http://purl.obolibrary.org/obo/UBERON_0001592,bronchial vein,bronchial venous tree +http://purl.obolibrary.org/obo/UBERON_0001593,venous plexus,venous network +http://purl.obolibrary.org/obo/UBERON_0001594,azygos vein,azygos venous tree +http://purl.obolibrary.org/obo/UBERON_0001595,auricular muscle,muscle of auricle +http://purl.obolibrary.org/obo/UBERON_0001595,auricular muscle,musculi auriculares +http://purl.obolibrary.org/obo/UBERON_0001596,intrinsic auricular muscle, +http://purl.obolibrary.org/obo/UBERON_0001597,masseter muscle,masseter +http://purl.obolibrary.org/obo/UBERON_0001598,temporalis muscle,musculus temporalis +http://purl.obolibrary.org/obo/UBERON_0001598,temporalis muscle,temporal muscle +http://purl.obolibrary.org/obo/UBERON_0001598,temporalis muscle,temporalis +http://purl.obolibrary.org/obo/UBERON_0001599,stapedius muscle,stapedius +http://purl.obolibrary.org/obo/UBERON_0001600,tensor tympani,eustachian muscle +http://purl.obolibrary.org/obo/UBERON_0001600,tensor tympani,tensor tympani muscle +http://purl.obolibrary.org/obo/UBERON_0001601,extra-ocular muscle,extra-ocular skeletal muscle +http://purl.obolibrary.org/obo/UBERON_0001601,extra-ocular muscle,extraocular muscle +http://purl.obolibrary.org/obo/UBERON_0001601,extra-ocular muscle,extraocular musculature +http://purl.obolibrary.org/obo/UBERON_0001601,extra-ocular muscle,extraocular skeletal muscle +http://purl.obolibrary.org/obo/UBERON_0001601,extra-ocular muscle,extrinsic eye muscle +http://purl.obolibrary.org/obo/UBERON_0001601,extra-ocular muscle,extrinsic muscle of eyeball +http://purl.obolibrary.org/obo/UBERON_0001601,extra-ocular muscle,extrinsic ocular muscle +http://purl.obolibrary.org/obo/UBERON_0001602,medial rectus extraocular muscle,m. rectus medialis +http://purl.obolibrary.org/obo/UBERON_0001602,medial rectus extraocular muscle,medial rectus +http://purl.obolibrary.org/obo/UBERON_0001602,medial rectus extraocular muscle,medial rectus extraocular muscle +http://purl.obolibrary.org/obo/UBERON_0001602,medial rectus extraocular muscle,medial rectus muscle +http://purl.obolibrary.org/obo/UBERON_0001602,medial rectus extraocular muscle,musculus rectus medialis +http://purl.obolibrary.org/obo/UBERON_0001603,lateral rectus extra-ocular muscle,M. rectus lateralis +http://purl.obolibrary.org/obo/UBERON_0001603,lateral rectus extra-ocular muscle,lateral rectus +http://purl.obolibrary.org/obo/UBERON_0001603,lateral rectus extra-ocular muscle,lateral rectus extraocular muscle +http://purl.obolibrary.org/obo/UBERON_0001603,lateral rectus extra-ocular muscle,lateral rectus muscle +http://purl.obolibrary.org/obo/UBERON_0001603,lateral rectus extra-ocular muscle,musculus rectus lateralis +http://purl.obolibrary.org/obo/UBERON_0001603,lateral rectus extra-ocular muscle,posterior rectus +http://purl.obolibrary.org/obo/UBERON_0001604,levator palpebrae superioris, +http://purl.obolibrary.org/obo/UBERON_0001605,ciliary muscle,Bowman`s muscles +http://purl.obolibrary.org/obo/UBERON_0001605,ciliary muscle,ciliaris +http://purl.obolibrary.org/obo/UBERON_0001605,ciliary muscle,musculus ciliaris +http://purl.obolibrary.org/obo/UBERON_0001605,ciliary muscle,musculus ciliarus +http://purl.obolibrary.org/obo/UBERON_0001606,muscle of iris,iris muscle +http://purl.obolibrary.org/obo/UBERON_0001606,muscle of iris,iris muscle organ +http://purl.obolibrary.org/obo/UBERON_0001606,muscle of iris,muscle organ of iris +http://purl.obolibrary.org/obo/UBERON_0001607,sphincter pupillae,M. sphincter pupillae +http://purl.obolibrary.org/obo/UBERON_0001607,sphincter pupillae,circular fibers +http://purl.obolibrary.org/obo/UBERON_0001607,sphincter pupillae,constrictor pupillae +http://purl.obolibrary.org/obo/UBERON_0001607,sphincter pupillae,iris constrictor +http://purl.obolibrary.org/obo/UBERON_0001607,sphincter pupillae,iris constrictor muscle +http://purl.obolibrary.org/obo/UBERON_0001607,sphincter pupillae,iris sphincter +http://purl.obolibrary.org/obo/UBERON_0001607,sphincter pupillae,iris sphincter muscle +http://purl.obolibrary.org/obo/UBERON_0001607,sphincter pupillae,m. sphincter pupillae +http://purl.obolibrary.org/obo/UBERON_0001607,sphincter pupillae,musculus sphincter pupillae +http://purl.obolibrary.org/obo/UBERON_0001607,sphincter pupillae,pupillary constrictor muscle +http://purl.obolibrary.org/obo/UBERON_0001607,sphincter pupillae,pupillary sphincter +http://purl.obolibrary.org/obo/UBERON_0001607,sphincter pupillae,pupillary sphincter muscle +http://purl.obolibrary.org/obo/UBERON_0001607,sphincter pupillae,sphincter muscle of pupil +http://purl.obolibrary.org/obo/UBERON_0001607,sphincter pupillae,sphincter pupillae +http://purl.obolibrary.org/obo/UBERON_0001607,sphincter pupillae,sphincter pupillae muscle +http://purl.obolibrary.org/obo/UBERON_0001607,sphincter pupillae,spincter pupillae +http://purl.obolibrary.org/obo/UBERON_0001608,dilatator pupillae,dilator muscle of pupil +http://purl.obolibrary.org/obo/UBERON_0001608,dilatator pupillae,dilator of pupil +http://purl.obolibrary.org/obo/UBERON_0001608,dilatator pupillae,dilator pupillae +http://purl.obolibrary.org/obo/UBERON_0001608,dilatator pupillae,dilator pupillae muscle +http://purl.obolibrary.org/obo/UBERON_0001608,dilatator pupillae,iris dilator muscle +http://purl.obolibrary.org/obo/UBERON_0001608,dilatator pupillae,musculus dilatator pupillae +http://purl.obolibrary.org/obo/UBERON_0001608,dilatator pupillae,pupillary dilator muscle +http://purl.obolibrary.org/obo/UBERON_0001608,dilatator pupillae,radial muscle of iris +http://purl.obolibrary.org/obo/UBERON_0001609,isthmus of thyroid gland,isthmus glandulae thyroideae +http://purl.obolibrary.org/obo/UBERON_0001609,isthmus of thyroid gland,thyroid gland isthmus +http://purl.obolibrary.org/obo/UBERON_0001609,isthmus of thyroid gland,thyroid isthmus +http://purl.obolibrary.org/obo/UBERON_0001610,lingual artery,lingual branch of external carotid artery +http://purl.obolibrary.org/obo/UBERON_0001611,sublingual artery,sublingual branch of lingual artery +http://purl.obolibrary.org/obo/UBERON_0001612,facial artery, +http://purl.obolibrary.org/obo/UBERON_0001613,occipital artery, +http://purl.obolibrary.org/obo/UBERON_0001614,superficial temporal artery, +http://purl.obolibrary.org/obo/UBERON_0001615,transverse facial artery, +http://purl.obolibrary.org/obo/UBERON_0001616,maxillary artery, +http://purl.obolibrary.org/obo/UBERON_0001617,mental artery,mental branch of inferior alveolar artery +http://purl.obolibrary.org/obo/UBERON_0001617,mental artery,ramus mentalis (arteria alveolaris inferior) +http://purl.obolibrary.org/obo/UBERON_0001618,buccal artery, +http://purl.obolibrary.org/obo/UBERON_0001619,ophthalmic artery, +http://purl.obolibrary.org/obo/UBERON_0001620,central retinal artery,Zinn's artery +http://purl.obolibrary.org/obo/UBERON_0001620,central retinal artery,central artery of retina +http://purl.obolibrary.org/obo/UBERON_0001620,central retinal artery,retinal artery +http://purl.obolibrary.org/obo/UBERON_0001621,coronary artery,coronary arterial tree +http://purl.obolibrary.org/obo/UBERON_0001622,lacrimal artery, +http://purl.obolibrary.org/obo/UBERON_0001623,dorsal nasal artery,dorsal nasal branch of ophthalmic artery +http://purl.obolibrary.org/obo/UBERON_0001623,dorsal nasal artery,external nasal artery +http://purl.obolibrary.org/obo/UBERON_0001624,anterior cerebral artery, +http://purl.obolibrary.org/obo/UBERON_0001625,right coronary artery, +http://purl.obolibrary.org/obo/UBERON_0001626,left coronary artery, +http://purl.obolibrary.org/obo/UBERON_0001627,middle cerebral artery,Sylvian artery +http://purl.obolibrary.org/obo/UBERON_0001628,posterior communicating artery,caudal communicating segment +http://purl.obolibrary.org/obo/UBERON_0001628,posterior communicating artery,posterior communicating segment of the basilar artery +http://purl.obolibrary.org/obo/UBERON_0001629,carotid body,carotid glomus +http://purl.obolibrary.org/obo/UBERON_0001629,carotid body,glomus caroticum +http://purl.obolibrary.org/obo/UBERON_0001630,muscle organ,muscle +http://purl.obolibrary.org/obo/UBERON_0001631,thoracic duct,trunk of thoracic duct tree +http://purl.obolibrary.org/obo/UBERON_0001632,temporal artery, +http://purl.obolibrary.org/obo/UBERON_0001633,basilar artery, +http://purl.obolibrary.org/obo/UBERON_0001634,mesencephalic artery,MsA +http://purl.obolibrary.org/obo/UBERON_0001635,superior cerebellar artery, +http://purl.obolibrary.org/obo/UBERON_0001636,posterior cerebral artery, +http://purl.obolibrary.org/obo/UBERON_0001637,artery,arterial subtree +http://purl.obolibrary.org/obo/UBERON_0001637,artery,arterial system +http://purl.obolibrary.org/obo/UBERON_0001637,artery,arterial tree organ part +http://purl.obolibrary.org/obo/UBERON_0001637,artery,arterial vessel +http://purl.obolibrary.org/obo/UBERON_0001637,artery,arteries +http://purl.obolibrary.org/obo/UBERON_0001638,vein,vascular element +http://purl.obolibrary.org/obo/UBERON_0001638,vein,vena +http://purl.obolibrary.org/obo/UBERON_0001638,vein,venae +http://purl.obolibrary.org/obo/UBERON_0001638,vein,venous subtree +http://purl.obolibrary.org/obo/UBERON_0001638,vein,venous tree organ part +http://purl.obolibrary.org/obo/UBERON_0001638,vein,venous vessel +http://purl.obolibrary.org/obo/UBERON_0001639,hepatic portal vein,hepatic portal tree +http://purl.obolibrary.org/obo/UBERON_0001639,hepatic portal vein,liver portal vein +http://purl.obolibrary.org/obo/UBERON_0001639,hepatic portal vein,portal vein of liver +http://purl.obolibrary.org/obo/UBERON_0001640,celiac artery,arteria coeliaca +http://purl.obolibrary.org/obo/UBERON_0001640,celiac artery,arteria cœliaca +http://purl.obolibrary.org/obo/UBERON_0001640,celiac artery,celiac tree +http://purl.obolibrary.org/obo/UBERON_0001640,celiac artery,celiac trunk +http://purl.obolibrary.org/obo/UBERON_0001640,celiac artery,coeliac artery +http://purl.obolibrary.org/obo/UBERON_0001640,celiac artery,coeliac axis +http://purl.obolibrary.org/obo/UBERON_0001640,celiac artery,coeliac trunck +http://purl.obolibrary.org/obo/UBERON_0001640,celiac artery,coeliac trunk +http://purl.obolibrary.org/obo/UBERON_0001640,celiac artery,truncus coeliacus +http://purl.obolibrary.org/obo/UBERON_0001640,celiac artery,truncus cœliacus +http://purl.obolibrary.org/obo/UBERON_0001641,transverse sinus,sinus transversus durae matris +http://purl.obolibrary.org/obo/UBERON_0001642,superior sagittal sinus, +http://purl.obolibrary.org/obo/UBERON_0001643,oculomotor nerve,3n +http://purl.obolibrary.org/obo/UBERON_0001643,oculomotor nerve,CN-III +http://purl.obolibrary.org/obo/UBERON_0001643,oculomotor nerve,cranial nerve III +http://purl.obolibrary.org/obo/UBERON_0001643,oculomotor nerve,nerve III +http://purl.obolibrary.org/obo/UBERON_0001643,oculomotor nerve,nervus oculomotorius +http://purl.obolibrary.org/obo/UBERON_0001643,oculomotor nerve,nervus oculomotorius [III] +http://purl.obolibrary.org/obo/UBERON_0001643,oculomotor nerve,occulomotor +http://purl.obolibrary.org/obo/UBERON_0001643,oculomotor nerve,oculomotor III +http://purl.obolibrary.org/obo/UBERON_0001643,oculomotor nerve,oculomotor III nerve +http://purl.obolibrary.org/obo/UBERON_0001643,oculomotor nerve,oculomotor nerve [III] +http://purl.obolibrary.org/obo/UBERON_0001643,oculomotor nerve,oculomotor nerve or its root +http://purl.obolibrary.org/obo/UBERON_0001643,oculomotor nerve,oculomotor nerve tree +http://purl.obolibrary.org/obo/UBERON_0001643,oculomotor nerve,third cranial nerve +http://purl.obolibrary.org/obo/UBERON_0001644,trochlear nerve,cranial nerve IV +http://purl.obolibrary.org/obo/UBERON_0001644,trochlear nerve,fourth cranial nerve +http://purl.obolibrary.org/obo/UBERON_0001644,trochlear nerve,nervus trochlearis [IV] +http://purl.obolibrary.org/obo/UBERON_0001644,trochlear nerve,superior oblique nerve +http://purl.obolibrary.org/obo/UBERON_0001644,trochlear nerve,trochlear IV nerve +http://purl.obolibrary.org/obo/UBERON_0001644,trochlear nerve,trochlear nerve [IV] +http://purl.obolibrary.org/obo/UBERON_0001644,trochlear nerve,trochlear nerve tree +http://purl.obolibrary.org/obo/UBERON_0001645,trigeminal nerve,5n +http://purl.obolibrary.org/obo/UBERON_0001645,trigeminal nerve,CN-V +http://purl.obolibrary.org/obo/UBERON_0001645,trigeminal nerve,cranial nerve V +http://purl.obolibrary.org/obo/UBERON_0001645,trigeminal nerve,fifth cranial nerve +http://purl.obolibrary.org/obo/UBERON_0001645,trigeminal nerve,nerve V +http://purl.obolibrary.org/obo/UBERON_0001645,trigeminal nerve,nervus trigeminus +http://purl.obolibrary.org/obo/UBERON_0001645,trigeminal nerve,nervus trigeminus [v] +http://purl.obolibrary.org/obo/UBERON_0001645,trigeminal nerve,trigeminal V +http://purl.obolibrary.org/obo/UBERON_0001645,trigeminal nerve,trigeminal nerve [V] +http://purl.obolibrary.org/obo/UBERON_0001645,trigeminal nerve,trigeminal nerve tree +http://purl.obolibrary.org/obo/UBERON_0001645,trigeminal nerve,trigeminal v nerve +http://purl.obolibrary.org/obo/UBERON_0001645,trigeminal nerve,trigeminus +http://purl.obolibrary.org/obo/UBERON_0001646,abducens nerve,abducens VI nerve +http://purl.obolibrary.org/obo/UBERON_0001646,abducens nerve,abducens nerve [VI] +http://purl.obolibrary.org/obo/UBERON_0001646,abducens nerve,abducens nerve tree +http://purl.obolibrary.org/obo/UBERON_0001646,abducens nerve,abducent nerve [VI] +http://purl.obolibrary.org/obo/UBERON_0001646,abducens nerve,lateral rectus nerve +http://purl.obolibrary.org/obo/UBERON_0001646,abducens nerve,nervus abducens +http://purl.obolibrary.org/obo/UBERON_0001646,abducens nerve,nervus abducens [VI] +http://purl.obolibrary.org/obo/UBERON_0001646,abducens nerve,sixth cranial nerve +http://purl.obolibrary.org/obo/UBERON_0001647,facial nerve,7n +http://purl.obolibrary.org/obo/UBERON_0001647,facial nerve,CN-VII +http://purl.obolibrary.org/obo/UBERON_0001647,facial nerve,branchiomeric cranial nerve +http://purl.obolibrary.org/obo/UBERON_0001647,facial nerve,cranial nerve VII +http://purl.obolibrary.org/obo/UBERON_0001647,facial nerve,face nerve +http://purl.obolibrary.org/obo/UBERON_0001647,facial nerve,facial VII +http://purl.obolibrary.org/obo/UBERON_0001647,facial nerve,facial VII nerve +http://purl.obolibrary.org/obo/UBERON_0001647,facial nerve,facial nerve [VII] +http://purl.obolibrary.org/obo/UBERON_0001647,facial nerve,facial nerve or its root +http://purl.obolibrary.org/obo/UBERON_0001647,facial nerve,facial nerve tree +http://purl.obolibrary.org/obo/UBERON_0001647,facial nerve,facial nerve/root +http://purl.obolibrary.org/obo/UBERON_0001647,facial nerve,nerve VII +http://purl.obolibrary.org/obo/UBERON_0001647,facial nerve,nerve of face +http://purl.obolibrary.org/obo/UBERON_0001647,facial nerve,nervus facialis +http://purl.obolibrary.org/obo/UBERON_0001647,facial nerve,nervus facialis [vii] +http://purl.obolibrary.org/obo/UBERON_0001647,facial nerve,seventh cranial nerve +http://purl.obolibrary.org/obo/UBERON_0001648,vestibulocochlear nerve,CN-VIII +http://purl.obolibrary.org/obo/UBERON_0001648,vestibulocochlear nerve,VIII nerve +http://purl.obolibrary.org/obo/UBERON_0001648,vestibulocochlear nerve,VIIIth cranial nerve +http://purl.obolibrary.org/obo/UBERON_0001648,vestibulocochlear nerve,acoustic VIII nerve +http://purl.obolibrary.org/obo/UBERON_0001648,vestibulocochlear nerve,acoustic nerve +http://purl.obolibrary.org/obo/UBERON_0001648,vestibulocochlear nerve,acoustic nerve (Crosby) +http://purl.obolibrary.org/obo/UBERON_0001648,vestibulocochlear nerve,cochlear-vestibular nerve +http://purl.obolibrary.org/obo/UBERON_0001648,vestibulocochlear nerve,cochleovestibular nerve +http://purl.obolibrary.org/obo/UBERON_0001648,vestibulocochlear nerve,cranial nerve VIII +http://purl.obolibrary.org/obo/UBERON_0001648,vestibulocochlear nerve,eighth cranial nerve +http://purl.obolibrary.org/obo/UBERON_0001648,vestibulocochlear nerve,nervus vestibulocochlearis [viii] +http://purl.obolibrary.org/obo/UBERON_0001648,vestibulocochlear nerve,stato-acoustic nerve +http://purl.obolibrary.org/obo/UBERON_0001648,vestibulocochlear nerve,vestibulocochlear VIII nerve +http://purl.obolibrary.org/obo/UBERON_0001648,vestibulocochlear nerve,vestibulocochlear nerve [VIII] +http://purl.obolibrary.org/obo/UBERON_0001648,vestibulocochlear nerve,vestibulocochlear nerve tree +http://purl.obolibrary.org/obo/UBERON_0001649,glossopharyngeal nerve,9n +http://purl.obolibrary.org/obo/UBERON_0001649,glossopharyngeal nerve,CN-IX +http://purl.obolibrary.org/obo/UBERON_0001649,glossopharyngeal nerve,cranial nerve IX +http://purl.obolibrary.org/obo/UBERON_0001649,glossopharyngeal nerve,glossopharyngeal IX +http://purl.obolibrary.org/obo/UBERON_0001649,glossopharyngeal nerve,glossopharyngeal IX nerve +http://purl.obolibrary.org/obo/UBERON_0001649,glossopharyngeal nerve,glossopharyngeal nerve [IX] +http://purl.obolibrary.org/obo/UBERON_0001649,glossopharyngeal nerve,glossopharyngeal nerve tree +http://purl.obolibrary.org/obo/UBERON_0001649,glossopharyngeal nerve,nerve IX +http://purl.obolibrary.org/obo/UBERON_0001649,glossopharyngeal nerve,nervus glossopharyngeus +http://purl.obolibrary.org/obo/UBERON_0001649,glossopharyngeal nerve,nervus glossopharyngeus [ix] +http://purl.obolibrary.org/obo/UBERON_0001649,glossopharyngeal nerve,ninth cranial nerve +http://purl.obolibrary.org/obo/UBERON_0001650,hypoglossal nerve,12n +http://purl.obolibrary.org/obo/UBERON_0001650,hypoglossal nerve,CN-XII +http://purl.obolibrary.org/obo/UBERON_0001650,hypoglossal nerve,cranial nerve XII +http://purl.obolibrary.org/obo/UBERON_0001650,hypoglossal nerve,hypoglossal XII +http://purl.obolibrary.org/obo/UBERON_0001650,hypoglossal nerve,hypoglossal XII nerve +http://purl.obolibrary.org/obo/UBERON_0001650,hypoglossal nerve,hypoglossal nerve [XII] +http://purl.obolibrary.org/obo/UBERON_0001650,hypoglossal nerve,hypoglossal nerve tree +http://purl.obolibrary.org/obo/UBERON_0001650,hypoglossal nerve,hypoglossal nerve/ root +http://purl.obolibrary.org/obo/UBERON_0001650,hypoglossal nerve,nerve XII +http://purl.obolibrary.org/obo/UBERON_0001650,hypoglossal nerve,nervi hypoglossalis +http://purl.obolibrary.org/obo/UBERON_0001650,hypoglossal nerve,nervus hypoglossus +http://purl.obolibrary.org/obo/UBERON_0001650,hypoglossal nerve,nervus hypoglossus [xii] +http://purl.obolibrary.org/obo/UBERON_0001650,hypoglossal nerve,twelfth cranial nerve +http://purl.obolibrary.org/obo/UBERON_0001651,right pulmonary artery,right main pulmonary artery +http://purl.obolibrary.org/obo/UBERON_0001651,right pulmonary artery,right pulmonary arterial tree +http://purl.obolibrary.org/obo/UBERON_0001652,left pulmonary artery,left main pulmonary artery +http://purl.obolibrary.org/obo/UBERON_0001652,left pulmonary artery,left pulmonary arterial tree +http://purl.obolibrary.org/obo/UBERON_0001653,facial vein,face vein +http://purl.obolibrary.org/obo/UBERON_0001653,facial vein,vein of face +http://purl.obolibrary.org/obo/UBERON_0001654,supraorbital vein,supra-orbital vein +http://purl.obolibrary.org/obo/UBERON_0001655,submental vein, +http://purl.obolibrary.org/obo/UBERON_0001656,retromandibular vein,posterior facial vein +http://purl.obolibrary.org/obo/UBERON_0001657,superficial temporal vein, +http://purl.obolibrary.org/obo/UBERON_0001658,middle temporal vein, +http://purl.obolibrary.org/obo/UBERON_0001659,transverse facial vein, +http://purl.obolibrary.org/obo/UBERON_0001660,maxillary vein, +http://purl.obolibrary.org/obo/UBERON_0001661,deep temporal vein, +http://purl.obolibrary.org/obo/UBERON_0001662,anterior auricular vein, +http://purl.obolibrary.org/obo/UBERON_0001663,cerebral vein, +http://purl.obolibrary.org/obo/UBERON_0001664,inferior cerebral vein, +http://purl.obolibrary.org/obo/UBERON_0001665,triceps surae, +http://purl.obolibrary.org/obo/UBERON_0001666,flexor digitorum longus, +http://purl.obolibrary.org/obo/UBERON_0001667,tibialis posterior,tibialis caudalis +http://purl.obolibrary.org/obo/UBERON_0001668,cerebellar vein,cerebellum vein +http://purl.obolibrary.org/obo/UBERON_0001668,cerebellar vein,epencephalon-1 vein +http://purl.obolibrary.org/obo/UBERON_0001668,cerebellar vein,vein of cerebellum +http://purl.obolibrary.org/obo/UBERON_0001668,cerebellar vein,vein of epencephalon-1 +http://purl.obolibrary.org/obo/UBERON_0001669,superior cerebellar vein,vein of superior cerebellar hemisphere +http://purl.obolibrary.org/obo/UBERON_0001670,inferior cerebellar vein,inferior vein of cerebellar hemisphere +http://purl.obolibrary.org/obo/UBERON_0001671,temporal vein, +http://purl.obolibrary.org/obo/UBERON_0001672,anterior cerebral vein, +http://purl.obolibrary.org/obo/UBERON_0001673,central retinal vein,retinal vein +http://purl.obolibrary.org/obo/UBERON_0001674,masseteric vein, +http://purl.obolibrary.org/obo/UBERON_0001675,trigeminal ganglion,5th ganglion +http://purl.obolibrary.org/obo/UBERON_0001675,trigeminal ganglion,Gasserian ganglion +http://purl.obolibrary.org/obo/UBERON_0001675,trigeminal ganglion,fifth ganglion +http://purl.obolibrary.org/obo/UBERON_0001675,trigeminal ganglion,ganglion of trigeminal complex +http://purl.obolibrary.org/obo/UBERON_0001675,trigeminal ganglion,semilunar ganglion +http://purl.obolibrary.org/obo/UBERON_0001675,trigeminal ganglion,trigeminal V ganglion +http://purl.obolibrary.org/obo/UBERON_0001676,occipital bone, +http://purl.obolibrary.org/obo/UBERON_0001677,sphenoid bone,os sphenoidale +http://purl.obolibrary.org/obo/UBERON_0001677,sphenoid bone,sphenoid +http://purl.obolibrary.org/obo/UBERON_0001677,sphenoid bone,sphenoidal bone +http://purl.obolibrary.org/obo/UBERON_0001678,temporal bone,os temporale +http://purl.obolibrary.org/obo/UBERON_0001679,ethmoid bone,ethmoid +http://purl.obolibrary.org/obo/UBERON_0001679,ethmoid bone,ethmoidal bone +http://purl.obolibrary.org/obo/UBERON_0001679,ethmoid bone,os ethmoidale +http://purl.obolibrary.org/obo/UBERON_0001680,lacrimal bone,lachrymal bone +http://purl.obolibrary.org/obo/UBERON_0001680,lacrimal bone,lacrymal bone +http://purl.obolibrary.org/obo/UBERON_0001681,nasal bone, +http://purl.obolibrary.org/obo/UBERON_0001682,palatine bone,palatine +http://purl.obolibrary.org/obo/UBERON_0001683,jugal bone,cheek bone +http://purl.obolibrary.org/obo/UBERON_0001683,jugal bone,malar bone +http://purl.obolibrary.org/obo/UBERON_0001683,jugal bone,orbital bone +http://purl.obolibrary.org/obo/UBERON_0001683,jugal bone,os zygomaticum +http://purl.obolibrary.org/obo/UBERON_0001683,jugal bone,zygomatic bone +http://purl.obolibrary.org/obo/UBERON_0001684,mandible,inferior maxillary bone +http://purl.obolibrary.org/obo/UBERON_0001684,mandible,mammaliam mandible +http://purl.obolibrary.org/obo/UBERON_0001684,mandible,mandibulla +http://purl.obolibrary.org/obo/UBERON_0001685,hyoid bone, +http://purl.obolibrary.org/obo/UBERON_0001686,auditory ossicle bone,auditory bone +http://purl.obolibrary.org/obo/UBERON_0001686,auditory ossicle bone,middle ear ossicle +http://purl.obolibrary.org/obo/UBERON_0001687,stapes bone,stirrup +http://purl.obolibrary.org/obo/UBERON_0001688,incus bone,incus +http://purl.obolibrary.org/obo/UBERON_0001688,incus bone,incus bone +http://purl.obolibrary.org/obo/UBERON_0001689,malleus bone,malleus +http://purl.obolibrary.org/obo/UBERON_0001690,ear,auditory apparatus +http://purl.obolibrary.org/obo/UBERON_0001690,ear,auris +http://purl.obolibrary.org/obo/UBERON_0001691,external ear,auricular region +http://purl.obolibrary.org/obo/UBERON_0001691,external ear,auricular region of head +http://purl.obolibrary.org/obo/UBERON_0001691,external ear,auris externa +http://purl.obolibrary.org/obo/UBERON_0001691,external ear,outer ear +http://purl.obolibrary.org/obo/UBERON_0001692,basioccipital bone,basi-occipital +http://purl.obolibrary.org/obo/UBERON_0001692,basioccipital bone,basilar part of occipital bone +http://purl.obolibrary.org/obo/UBERON_0001692,basioccipital bone,basioccipital +http://purl.obolibrary.org/obo/UBERON_0001692,basioccipital bone,basioccipital bone +http://purl.obolibrary.org/obo/UBERON_0001693,exoccipital bone,exoccipital +http://purl.obolibrary.org/obo/UBERON_0001693,exoccipital bone,exoccipitals +http://purl.obolibrary.org/obo/UBERON_0001693,exoccipital bone,lateral part of occipital bone +http://purl.obolibrary.org/obo/UBERON_0001693,exoccipital bone,pars lateralis ossis occipitalis +http://purl.obolibrary.org/obo/UBERON_0001694,petrous part of temporal bone,pars petrosa (os temporale) +http://purl.obolibrary.org/obo/UBERON_0001694,petrous part of temporal bone,pars petrosa ossis temporalis +http://purl.obolibrary.org/obo/UBERON_0001694,petrous part of temporal bone,petromastoid part of temporal bone +http://purl.obolibrary.org/obo/UBERON_0001694,petrous part of temporal bone,petrosal +http://purl.obolibrary.org/obo/UBERON_0001694,petrous part of temporal bone,petrosal bone +http://purl.obolibrary.org/obo/UBERON_0001694,petrous part of temporal bone,petrous bone +http://purl.obolibrary.org/obo/UBERON_0001694,petrous part of temporal bone,temporal bone petrous part +http://purl.obolibrary.org/obo/UBERON_0001695,squamous part of temporal bone,os squamosum +http://purl.obolibrary.org/obo/UBERON_0001695,squamous part of temporal bone,pars squamosa (os temporale) +http://purl.obolibrary.org/obo/UBERON_0001695,squamous part of temporal bone,pars squamosa ossis temporalis +http://purl.obolibrary.org/obo/UBERON_0001695,squamous part of temporal bone,squama temporalis +http://purl.obolibrary.org/obo/UBERON_0001695,squamous part of temporal bone,squamosal +http://purl.obolibrary.org/obo/UBERON_0001695,squamous part of temporal bone,squamosal bone +http://purl.obolibrary.org/obo/UBERON_0001695,squamous part of temporal bone,squamosum +http://purl.obolibrary.org/obo/UBERON_0001695,squamous part of temporal bone,squamous bone +http://purl.obolibrary.org/obo/UBERON_0001695,squamous part of temporal bone,temporal bone squamous part +http://purl.obolibrary.org/obo/UBERON_0001697,orbit of skull,bony orbit +http://purl.obolibrary.org/obo/UBERON_0001697,orbit of skull,eye socket +http://purl.obolibrary.org/obo/UBERON_0001697,orbit of skull,orbit of skull +http://purl.obolibrary.org/obo/UBERON_0001698,foramen ovale of skull,foramen ovale (skull) +http://purl.obolibrary.org/obo/UBERON_0001698,foramen ovale of skull,foramen ovale basis cranii +http://purl.obolibrary.org/obo/UBERON_0001698,foramen ovale of skull,foramen ovale cranii +http://purl.obolibrary.org/obo/UBERON_0001698,foramen ovale of skull,foramen ovale of chondrocranium +http://purl.obolibrary.org/obo/UBERON_0001698,foramen ovale of skull,foramen ovale of cranium +http://purl.obolibrary.org/obo/UBERON_0001699,sensory root of facial nerve,sensory component of the VIIth (facial) nerve +http://purl.obolibrary.org/obo/UBERON_0001700,geniculate ganglion,facial VII ganglion +http://purl.obolibrary.org/obo/UBERON_0001700,geniculate ganglion,gVII +http://purl.obolibrary.org/obo/UBERON_0001700,geniculate ganglion,ganglion genicularum +http://purl.obolibrary.org/obo/UBERON_0001700,geniculate ganglion,genicular ganglion +http://purl.obolibrary.org/obo/UBERON_0001701,glossopharyngeal ganglion,gIX +http://purl.obolibrary.org/obo/UBERON_0001701,glossopharyngeal ganglion,ganglion of glossopharyngeal nerve +http://purl.obolibrary.org/obo/UBERON_0001701,glossopharyngeal ganglion,ganglion of glosspharyngeal nerve +http://purl.obolibrary.org/obo/UBERON_0001701,glossopharyngeal ganglion,glossopharyngeal IX ganglion +http://purl.obolibrary.org/obo/UBERON_0001701,glossopharyngeal ganglion,petrosal ganglion +http://purl.obolibrary.org/obo/UBERON_0001702,eyelash,eyelid cilium +http://purl.obolibrary.org/obo/UBERON_0001703,neurocranium,brain box +http://purl.obolibrary.org/obo/UBERON_0001703,neurocranium,brain case +http://purl.obolibrary.org/obo/UBERON_0001703,neurocranium,brain pan +http://purl.obolibrary.org/obo/UBERON_0001703,neurocranium,braincase +http://purl.obolibrary.org/obo/UBERON_0001705,nail,nail/claw +http://purl.obolibrary.org/obo/UBERON_0001706,nasal septum, +http://purl.obolibrary.org/obo/UBERON_0001707,nasal cavity,cavity of nose +http://purl.obolibrary.org/obo/UBERON_0001707,nasal cavity,cavity of olfactory apparatus +http://purl.obolibrary.org/obo/UBERON_0001707,nasal cavity,nasal canal +http://purl.obolibrary.org/obo/UBERON_0001707,nasal cavity,nasal conduit space +http://purl.obolibrary.org/obo/UBERON_0001707,nasal cavity,nasal fossa +http://purl.obolibrary.org/obo/UBERON_0001707,nasal cavity,olfactory chamber cavity +http://purl.obolibrary.org/obo/UBERON_0001708,jaw skeleton,jaw +http://purl.obolibrary.org/obo/UBERON_0001708,jaw skeleton,jaw cartilage +http://purl.obolibrary.org/obo/UBERON_0001708,jaw skeleton,mandibular arch skeleton +http://purl.obolibrary.org/obo/UBERON_0001709,upper jaw region,maxillary part of mouth +http://purl.obolibrary.org/obo/UBERON_0001710,lower jaw region,lower part of mouth +http://purl.obolibrary.org/obo/UBERON_0001710,lower jaw region,mandibular part of mouth +http://purl.obolibrary.org/obo/UBERON_0001710,lower jaw region,mandibular series +http://purl.obolibrary.org/obo/UBERON_0001711,eyelid,blepharon +http://purl.obolibrary.org/obo/UBERON_0001711,eyelid,eye lid +http://purl.obolibrary.org/obo/UBERON_0001711,eyelid,palpebra +http://purl.obolibrary.org/obo/UBERON_0001712,upper eyelid,palpebra superior +http://purl.obolibrary.org/obo/UBERON_0001712,upper eyelid,superior eyelid +http://purl.obolibrary.org/obo/UBERON_0001713,lower eyelid,inferior eyelid +http://purl.obolibrary.org/obo/UBERON_0001713,lower eyelid,palpebra inferior +http://purl.obolibrary.org/obo/UBERON_0001714,cranial ganglion,cranial ganglia +http://purl.obolibrary.org/obo/UBERON_0001714,cranial ganglion,cranial ganglion +http://purl.obolibrary.org/obo/UBERON_0001714,cranial ganglion,cranial ganglion part of peripheral nervous system +http://purl.obolibrary.org/obo/UBERON_0001714,cranial ganglion,cranial ganglion/nerve +http://purl.obolibrary.org/obo/UBERON_0001714,cranial ganglion,cranial nerve ganglion +http://purl.obolibrary.org/obo/UBERON_0001714,cranial ganglion,cranial neural ganglion +http://purl.obolibrary.org/obo/UBERON_0001714,cranial ganglion,cranial neural tree organ ganglion +http://purl.obolibrary.org/obo/UBERON_0001714,cranial ganglion,ganglion of cranial nerve +http://purl.obolibrary.org/obo/UBERON_0001714,cranial ganglion,ganglion of cranial neural tree organ +http://purl.obolibrary.org/obo/UBERON_0001714,cranial ganglion,head ganglion +http://purl.obolibrary.org/obo/UBERON_0001714,cranial ganglion,presumptive cranial ganglia +http://purl.obolibrary.org/obo/UBERON_0001715,oculomotor nuclear complex,OM +http://purl.obolibrary.org/obo/UBERON_0001715,oculomotor nuclear complex,motor nucleus III +http://purl.obolibrary.org/obo/UBERON_0001715,oculomotor nuclear complex,nIII +http://purl.obolibrary.org/obo/UBERON_0001715,oculomotor nuclear complex,nucleus nervi oculomotorii +http://purl.obolibrary.org/obo/UBERON_0001715,oculomotor nuclear complex,nucleus oculomotorius +http://purl.obolibrary.org/obo/UBERON_0001715,oculomotor nuclear complex,nucleus of oculomotor nerve +http://purl.obolibrary.org/obo/UBERON_0001715,oculomotor nuclear complex,nucleus of oculomotor nuclear complex +http://purl.obolibrary.org/obo/UBERON_0001715,oculomotor nuclear complex,nucleus of third cranial nerve +http://purl.obolibrary.org/obo/UBERON_0001715,oculomotor nuclear complex,oculomotor III nuclear complex +http://purl.obolibrary.org/obo/UBERON_0001715,oculomotor nuclear complex,oculomotor III nucleus +http://purl.obolibrary.org/obo/UBERON_0001715,oculomotor nuclear complex,oculomotor motornucleus +http://purl.obolibrary.org/obo/UBERON_0001715,oculomotor nuclear complex,oculomotor nucleus +http://purl.obolibrary.org/obo/UBERON_0001715,oculomotor nuclear complex,third cranial nerve nucleus +http://purl.obolibrary.org/obo/UBERON_0001716,secondary palate,definitive palate +http://purl.obolibrary.org/obo/UBERON_0001716,secondary palate,oral roof +http://purl.obolibrary.org/obo/UBERON_0001716,secondary palate,palatum definitivum +http://purl.obolibrary.org/obo/UBERON_0001716,secondary palate,palatum secundarium +http://purl.obolibrary.org/obo/UBERON_0001717,spinal nucleus of trigeminal nerve,spinal nucleus of cranial nerve v +http://purl.obolibrary.org/obo/UBERON_0001717,spinal nucleus of trigeminal nerve,spinal trigeminal nucleus +http://purl.obolibrary.org/obo/UBERON_0001717,spinal nucleus of trigeminal nerve,trigeminal nerve spinal tract nucleus +http://purl.obolibrary.org/obo/UBERON_0001717,spinal nucleus of trigeminal nerve,trigeminal spinal nucleus +http://purl.obolibrary.org/obo/UBERON_0001717,spinal nucleus of trigeminal nerve,trigeminal v spinal sensory nucleus +http://purl.obolibrary.org/obo/UBERON_0001718,mesencephalic nucleus of trigeminal nerve,mesencephalic trigeminal V nucleus +http://purl.obolibrary.org/obo/UBERON_0001718,mesencephalic nucleus of trigeminal nerve,mesencephalic trigeminal nucleus +http://purl.obolibrary.org/obo/UBERON_0001718,mesencephalic nucleus of trigeminal nerve,nucleus of mesencephalic root of v +http://purl.obolibrary.org/obo/UBERON_0001718,mesencephalic nucleus of trigeminal nerve,trigeminal V mesencephalic nucleus +http://purl.obolibrary.org/obo/UBERON_0001718,mesencephalic nucleus of trigeminal nerve,trigeminal mesencephalic nucleus +http://purl.obolibrary.org/obo/UBERON_0001718,mesencephalic nucleus of trigeminal nerve,trigeminal nerve mesencepahlic nucleus +http://purl.obolibrary.org/obo/UBERON_0001719,nucleus ambiguus,Amb +http://purl.obolibrary.org/obo/UBERON_0001719,nucleus ambiguus,ambiguous nucleus +http://purl.obolibrary.org/obo/UBERON_0001719,nucleus ambiguus,ambiguus nucleus +http://purl.obolibrary.org/obo/UBERON_0001719,nucleus ambiguus,nucleus innominatus +http://purl.obolibrary.org/obo/UBERON_0001720,cochlear nucleus,cochlear VIII nucleus +http://purl.obolibrary.org/obo/UBERON_0001720,cochlear nucleus,cochlear nucleus of acoustic nerve +http://purl.obolibrary.org/obo/UBERON_0001720,cochlear nucleus,cochlear nucleus of eighth cranial nerve +http://purl.obolibrary.org/obo/UBERON_0001720,cochlear nucleus,nucleus of cochlear nerve +http://purl.obolibrary.org/obo/UBERON_0001720,cochlear nucleus,statoacoustic (VIII) nucleus +http://purl.obolibrary.org/obo/UBERON_0001720,cochlear nucleus,vestibulocochlear nucleus +http://purl.obolibrary.org/obo/UBERON_0001721,inferior vestibular nucleus,descending vestibular nucleus +http://purl.obolibrary.org/obo/UBERON_0001721,inferior vestibular nucleus,spinal vestibular nucleus +http://purl.obolibrary.org/obo/UBERON_0001722,medial vestibular nucleus,Schwalbe's nucleus +http://purl.obolibrary.org/obo/UBERON_0001722,medial vestibular nucleus,chief vestibular nucleus +http://purl.obolibrary.org/obo/UBERON_0001722,medial vestibular nucleus,dorsal vestibular nucleus +http://purl.obolibrary.org/obo/UBERON_0001722,medial vestibular nucleus,nucleus of Schwalbe +http://purl.obolibrary.org/obo/UBERON_0001722,medial vestibular nucleus,nucleus triangularis +http://purl.obolibrary.org/obo/UBERON_0001722,medial vestibular nucleus,principal vestibular nucleus +http://purl.obolibrary.org/obo/UBERON_0001722,medial vestibular nucleus,triangular nucleus +http://purl.obolibrary.org/obo/UBERON_0001723,tongue,glossus +http://purl.obolibrary.org/obo/UBERON_0001724,sphenoidal sinus,sphenoid sinus +http://purl.obolibrary.org/obo/UBERON_0001725,cranial synchondrosis, +http://purl.obolibrary.org/obo/UBERON_0001726,papilla of tongue,lingual papilla +http://purl.obolibrary.org/obo/UBERON_0001726,papilla of tongue,tongue papilla +http://purl.obolibrary.org/obo/UBERON_0001727,taste bud,tastebud +http://purl.obolibrary.org/obo/UBERON_0001728,nasopharynx,nasal part of pharynx +http://purl.obolibrary.org/obo/UBERON_0001728,nasopharynx,rhinopharynx +http://purl.obolibrary.org/obo/UBERON_0001729,oropharynx,oral part of pharynx +http://purl.obolibrary.org/obo/UBERON_0001730,extrinsic ligament of larynx,laryngeal extrinsic ligament +http://purl.obolibrary.org/obo/UBERON_0001731,cavity of pharynx,lumen of pharynx +http://purl.obolibrary.org/obo/UBERON_0001731,cavity of pharynx,pharyngeal cavity +http://purl.obolibrary.org/obo/UBERON_0001732,pharyngeal tonsil,adenoid +http://purl.obolibrary.org/obo/UBERON_0001732,pharyngeal tonsil,nasopharyngeal tonsil +http://purl.obolibrary.org/obo/UBERON_0001732,pharyngeal tonsil,tonsil of Luschka +http://purl.obolibrary.org/obo/UBERON_0001732,pharyngeal tonsil,tonsilla pharyngealis +http://purl.obolibrary.org/obo/UBERON_0001733,soft palate, +http://purl.obolibrary.org/obo/UBERON_0001734,palatine uvula,palatine uvula +http://purl.obolibrary.org/obo/UBERON_0001734,palatine uvula,uvula +http://purl.obolibrary.org/obo/UBERON_0001734,palatine uvula,uvula of palate +http://purl.obolibrary.org/obo/UBERON_0001734,palatine uvula,uvula palatina +http://purl.obolibrary.org/obo/UBERON_0001735,tonsillar ring,Waldeyer's ring +http://purl.obolibrary.org/obo/UBERON_0001735,tonsillar ring,Waldeyer's tonsillar ring +http://purl.obolibrary.org/obo/UBERON_0001735,tonsillar ring,anulus lymphoideus pharyngis +http://purl.obolibrary.org/obo/UBERON_0001735,tonsillar ring,oropharyngeal lymphoid tissue +http://purl.obolibrary.org/obo/UBERON_0001735,tonsillar ring,pharyngeal lymphatic ring +http://purl.obolibrary.org/obo/UBERON_0001735,tonsillar ring,pharyngeal lymphoid ring +http://purl.obolibrary.org/obo/UBERON_0001736,submandibular gland,glandula submandibularis +http://purl.obolibrary.org/obo/UBERON_0001736,submandibular gland,mandibular gland +http://purl.obolibrary.org/obo/UBERON_0001736,submandibular gland,mandibular salivary gland +http://purl.obolibrary.org/obo/UBERON_0001736,submandibular gland,maxillary gland +http://purl.obolibrary.org/obo/UBERON_0001736,submandibular gland,submandibular salivary gland +http://purl.obolibrary.org/obo/UBERON_0001736,submandibular gland,submaxillary gland +http://purl.obolibrary.org/obo/UBERON_0001737,larynx, +http://purl.obolibrary.org/obo/UBERON_0001738,thyroid cartilage, +http://purl.obolibrary.org/obo/UBERON_0001739,laryngeal cartilage,cartilage of larynx +http://purl.obolibrary.org/obo/UBERON_0001739,laryngeal cartilage,cartilagines laryngeales +http://purl.obolibrary.org/obo/UBERON_0001739,laryngeal cartilage,larynx cartilage +http://purl.obolibrary.org/obo/UBERON_0001740,arytenoid cartilage,arytenoid +http://purl.obolibrary.org/obo/UBERON_0001741,corniculate cartilage,Santorini's cartilage +http://purl.obolibrary.org/obo/UBERON_0001741,corniculate cartilage,cartilage of Santorini +http://purl.obolibrary.org/obo/UBERON_0001741,corniculate cartilage,cartilagines corniculata +http://purl.obolibrary.org/obo/UBERON_0001742,epiglottic cartilage, +http://purl.obolibrary.org/obo/UBERON_0001743,ligament of larynx,laryngeal ligament +http://purl.obolibrary.org/obo/UBERON_0001743,ligament of larynx,larynx ligament +http://purl.obolibrary.org/obo/UBERON_0001744,lymphoid tissue,lymphatic tissue +http://purl.obolibrary.org/obo/UBERON_0001744,lymphoid tissue,lymphocytic tissue +http://purl.obolibrary.org/obo/UBERON_0001745,secondary nodular lymphoid tissue,peripheral lymphoid tissue +http://purl.obolibrary.org/obo/UBERON_0001745,secondary nodular lymphoid tissue,secondary lymphoid nodule +http://purl.obolibrary.org/obo/UBERON_0001745,secondary nodular lymphoid tissue,secondary lymphoid tissue +http://purl.obolibrary.org/obo/UBERON_0001746,capsule of thyroid gland,capsula fibrosa glandulae thyroideae +http://purl.obolibrary.org/obo/UBERON_0001746,capsule of thyroid gland,fibrous capsule of thyroid gland +http://purl.obolibrary.org/obo/UBERON_0001746,capsule of thyroid gland,thyroid capsule +http://purl.obolibrary.org/obo/UBERON_0001746,capsule of thyroid gland,thyroid gland capsule +http://purl.obolibrary.org/obo/UBERON_0001747,parenchyma of thyroid gland,parenchyma of thyroid +http://purl.obolibrary.org/obo/UBERON_0001747,parenchyma of thyroid gland,parenchyma of thyroid follicle +http://purl.obolibrary.org/obo/UBERON_0001747,parenchyma of thyroid gland,parenchyma of thyroid gland follicle +http://purl.obolibrary.org/obo/UBERON_0001747,parenchyma of thyroid gland,thyroid follicle parenchyma +http://purl.obolibrary.org/obo/UBERON_0001747,parenchyma of thyroid gland,thyroid gland follicle parenchyma +http://purl.obolibrary.org/obo/UBERON_0001747,parenchyma of thyroid gland,thyroid gland parenchyma +http://purl.obolibrary.org/obo/UBERON_0001747,parenchyma of thyroid gland,thyroid parenchyma +http://purl.obolibrary.org/obo/UBERON_0001748,capsule of parathyroid gland,parathyroid gland capsule +http://purl.obolibrary.org/obo/UBERON_0001749,parenchyma of parathyroid gland,parathyroid gland parenchyma +http://purl.obolibrary.org/obo/UBERON_0001749,parenchyma of parathyroid gland,parathyroid parenchyma +http://purl.obolibrary.org/obo/UBERON_0001749,parenchyma of parathyroid gland,parenchyma of parathyroid +http://purl.obolibrary.org/obo/UBERON_0001750,lacrimal apparatus,apparatus lacrimalis +http://purl.obolibrary.org/obo/UBERON_0001750,lacrimal apparatus,lacrimal drainage system +http://purl.obolibrary.org/obo/UBERON_0001750,lacrimal apparatus,lacrymal system +http://purl.obolibrary.org/obo/UBERON_0001750,lacrimal apparatus,nasolacrimal drainage system +http://purl.obolibrary.org/obo/UBERON_0001750,lacrimal apparatus,nasolacrimal system +http://purl.obolibrary.org/obo/UBERON_0001751,dentine,dentin +http://purl.obolibrary.org/obo/UBERON_0001751,dentine,dentine of tooth +http://purl.obolibrary.org/obo/UBERON_0001752,enamel,enamel of tooth +http://purl.obolibrary.org/obo/UBERON_0001752,enamel,enamel tissue +http://purl.obolibrary.org/obo/UBERON_0001752,enamel,tooth enamel +http://purl.obolibrary.org/obo/UBERON_0001753,cementum,cement +http://purl.obolibrary.org/obo/UBERON_0001753,cementum,cement of tooth +http://purl.obolibrary.org/obo/UBERON_0001753,cementum,cementum +http://purl.obolibrary.org/obo/UBERON_0001753,cementum,cementum of tooth +http://purl.obolibrary.org/obo/UBERON_0001754,dental pulp,pulp of tooth +http://purl.obolibrary.org/obo/UBERON_0001754,dental pulp,tooth pulp +http://purl.obolibrary.org/obo/UBERON_0001755,distal part of styloid process of temporal bone,distal part of styloid process +http://purl.obolibrary.org/obo/UBERON_0001756,middle ear, +http://purl.obolibrary.org/obo/UBERON_0001757,pinna,auricle +http://purl.obolibrary.org/obo/UBERON_0001757,pinna,auricle of ear +http://purl.obolibrary.org/obo/UBERON_0001757,pinna,auricle of external ear +http://purl.obolibrary.org/obo/UBERON_0001757,pinna,auricula +http://purl.obolibrary.org/obo/UBERON_0001757,pinna,auricula (auris externa) +http://purl.obolibrary.org/obo/UBERON_0001757,pinna,pinna of ear +http://purl.obolibrary.org/obo/UBERON_0001757,pinna,pinnae +http://purl.obolibrary.org/obo/UBERON_0001758,periodontium, +http://purl.obolibrary.org/obo/UBERON_0001759,vagus nerve,10n +http://purl.obolibrary.org/obo/UBERON_0001759,vagus nerve,CN-X +http://purl.obolibrary.org/obo/UBERON_0001759,vagus nerve,cranial nerve X +http://purl.obolibrary.org/obo/UBERON_0001759,vagus nerve,nerve X +http://purl.obolibrary.org/obo/UBERON_0001759,vagus nerve,nervus vagus +http://purl.obolibrary.org/obo/UBERON_0001759,vagus nerve,nervus vagus [x] +http://purl.obolibrary.org/obo/UBERON_0001759,vagus nerve,pneuomgastric nerve +http://purl.obolibrary.org/obo/UBERON_0001759,vagus nerve,tenth cranial nerve +http://purl.obolibrary.org/obo/UBERON_0001759,vagus nerve,vagal nerve +http://purl.obolibrary.org/obo/UBERON_0001759,vagus nerve,vagus +http://purl.obolibrary.org/obo/UBERON_0001759,vagus nerve,vagus X nerve +http://purl.obolibrary.org/obo/UBERON_0001759,vagus nerve,vagus nerve [X] +http://purl.obolibrary.org/obo/UBERON_0001759,vagus nerve,vagus nerve or its root +http://purl.obolibrary.org/obo/UBERON_0001759,vagus nerve,vagus nerve tree +http://purl.obolibrary.org/obo/UBERON_0001760,frontal sinus,cavity of frontal bone +http://purl.obolibrary.org/obo/UBERON_0001761,future foramen cecum, +http://purl.obolibrary.org/obo/UBERON_0001762,turbinate bone,ossified nasal turbinal +http://purl.obolibrary.org/obo/UBERON_0001762,turbinate bone,ossified nasal turbinate +http://purl.obolibrary.org/obo/UBERON_0001762,turbinate bone,ossified turbinate +http://purl.obolibrary.org/obo/UBERON_0001762,turbinate bone,turbinal bone +http://purl.obolibrary.org/obo/UBERON_0001762,turbinate bone,turbinate bone +http://purl.obolibrary.org/obo/UBERON_0001763,odontogenic papilla,odontogenic condensation +http://purl.obolibrary.org/obo/UBERON_0001764,maxillary sinus,antrum of Highmore +http://purl.obolibrary.org/obo/UBERON_0001764,maxillary sinus,sinus maxilliaris +http://purl.obolibrary.org/obo/UBERON_0001765,mammary duct,lactiferous duct +http://purl.obolibrary.org/obo/UBERON_0001765,mammary duct,lactiferous gland duct +http://purl.obolibrary.org/obo/UBERON_0001765,mammary duct,mammary gland duct +http://purl.obolibrary.org/obo/UBERON_0001766,anterior chamber of eyeball,anterior chamber +http://purl.obolibrary.org/obo/UBERON_0001766,anterior chamber of eyeball,anterior chamber of eye +http://purl.obolibrary.org/obo/UBERON_0001766,anterior chamber of eyeball,camera anterior +http://purl.obolibrary.org/obo/UBERON_0001766,anterior chamber of eyeball,eye anterior chamber +http://purl.obolibrary.org/obo/UBERON_0001767,posterior chamber of eyeball,camera posterior +http://purl.obolibrary.org/obo/UBERON_0001767,posterior chamber of eyeball,eye posterior chamber +http://purl.obolibrary.org/obo/UBERON_0001767,posterior chamber of eyeball,posterior chamber of eye +http://purl.obolibrary.org/obo/UBERON_0001768,uvea,pars iridica retinae +http://purl.obolibrary.org/obo/UBERON_0001768,uvea,tunica vasculatis oculi +http://purl.obolibrary.org/obo/UBERON_0001768,uvea,tunica vasculosa bulbi +http://purl.obolibrary.org/obo/UBERON_0001768,uvea,tunica vasculosa of eyeball +http://purl.obolibrary.org/obo/UBERON_0001768,uvea,uvea +http://purl.obolibrary.org/obo/UBERON_0001768,uvea,uveal tract +http://purl.obolibrary.org/obo/UBERON_0001768,uvea,vascular layer of eyeball +http://purl.obolibrary.org/obo/UBERON_0001769,iris,anterior uvea +http://purl.obolibrary.org/obo/UBERON_0001769,iris,irides +http://purl.obolibrary.org/obo/UBERON_0001769,iris,irises +http://purl.obolibrary.org/obo/UBERON_0001770,lacrimal canaliculus, +http://purl.obolibrary.org/obo/UBERON_0001771,pupil, +http://purl.obolibrary.org/obo/UBERON_0001772,corneal epithelium,anterior corneal epithelium +http://purl.obolibrary.org/obo/UBERON_0001772,corneal epithelium,cornea epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0001772,corneal epithelium,cornea epithelium +http://purl.obolibrary.org/obo/UBERON_0001772,corneal epithelium,epithelial tissue of cornea +http://purl.obolibrary.org/obo/UBERON_0001772,corneal epithelium,epithelium anterius (cornea) +http://purl.obolibrary.org/obo/UBERON_0001772,corneal epithelium,epithelium anterius corneae +http://purl.obolibrary.org/obo/UBERON_0001772,corneal epithelium,epithelium corneæ anterior layer +http://purl.obolibrary.org/obo/UBERON_0001772,corneal epithelium,epithelium of cornea +http://purl.obolibrary.org/obo/UBERON_0001772,corneal epithelium,external epithelium of cornea +http://purl.obolibrary.org/obo/UBERON_0001773,sclera, +http://purl.obolibrary.org/obo/UBERON_0001774,skeletal muscle of trunk,body musculature +http://purl.obolibrary.org/obo/UBERON_0001774,skeletal muscle of trunk,muscle of trunk +http://purl.obolibrary.org/obo/UBERON_0001774,skeletal muscle of trunk,muscle organ of torso +http://purl.obolibrary.org/obo/UBERON_0001774,skeletal muscle of trunk,muscle organ of trunk +http://purl.obolibrary.org/obo/UBERON_0001774,skeletal muscle of trunk,torso muscle organ +http://purl.obolibrary.org/obo/UBERON_0001774,skeletal muscle of trunk,trunk muscle +http://purl.obolibrary.org/obo/UBERON_0001774,skeletal muscle of trunk,trunk muscle organ +http://purl.obolibrary.org/obo/UBERON_0001774,skeletal muscle of trunk,trunk musculature +http://purl.obolibrary.org/obo/UBERON_0001775,ciliary body,anterior uvea +http://purl.obolibrary.org/obo/UBERON_0001775,ciliary body,ciliary bodies +http://purl.obolibrary.org/obo/UBERON_0001775,ciliary body,corpus ciliare +http://purl.obolibrary.org/obo/UBERON_0001775,ciliary body,ocular ciliary body +http://purl.obolibrary.org/obo/UBERON_0001776,optic choroid,choroid +http://purl.obolibrary.org/obo/UBERON_0001776,optic choroid,choroid coat +http://purl.obolibrary.org/obo/UBERON_0001776,optic choroid,choroidea +http://purl.obolibrary.org/obo/UBERON_0001776,optic choroid,eye choroid +http://purl.obolibrary.org/obo/UBERON_0001776,optic choroid,posterior uvea +http://purl.obolibrary.org/obo/UBERON_0001777,substantia propria of cornea,corneal stroma +http://purl.obolibrary.org/obo/UBERON_0001777,substantia propria of cornea,stroma of cornea +http://purl.obolibrary.org/obo/UBERON_0001777,substantia propria of cornea,substantia propria corneae +http://purl.obolibrary.org/obo/UBERON_0001778,ciliary epithelium,ciliary body epithelium +http://purl.obolibrary.org/obo/UBERON_0001778,ciliary epithelium,epithelium of ciliary body +http://purl.obolibrary.org/obo/UBERON_0001778,ciliary epithelium,ocular ciliary epithelium +http://purl.obolibrary.org/obo/UBERON_0001779,iris stroma,iridial stroma +http://purl.obolibrary.org/obo/UBERON_0001779,iris stroma,stroma of iris +http://purl.obolibrary.org/obo/UBERON_0001780,spinal nerve,backbone nerve +http://purl.obolibrary.org/obo/UBERON_0001780,spinal nerve,nerve of backbone +http://purl.obolibrary.org/obo/UBERON_0001780,spinal nerve,nerve of spinal column +http://purl.obolibrary.org/obo/UBERON_0001780,spinal nerve,nerve of spine +http://purl.obolibrary.org/obo/UBERON_0001780,spinal nerve,nerve of vertebral column +http://purl.obolibrary.org/obo/UBERON_0001780,spinal nerve,nervi spinales +http://purl.obolibrary.org/obo/UBERON_0001780,spinal nerve,spinal column nerve +http://purl.obolibrary.org/obo/UBERON_0001780,spinal nerve,spinal nerve tree +http://purl.obolibrary.org/obo/UBERON_0001780,spinal nerve,spinal nerves +http://purl.obolibrary.org/obo/UBERON_0001780,spinal nerve,spine nerve +http://purl.obolibrary.org/obo/UBERON_0001780,spinal nerve,vertebral column nerve +http://purl.obolibrary.org/obo/UBERON_0001781,layer of retina,retina layer +http://purl.obolibrary.org/obo/UBERON_0001781,layer of retina,retina neuronal layer +http://purl.obolibrary.org/obo/UBERON_0001781,layer of retina,retinal layer +http://purl.obolibrary.org/obo/UBERON_0001781,layer of retina,retinal neuronal layer +http://purl.obolibrary.org/obo/UBERON_0001782,pigmented layer of retina,outer pigmented layer of retina +http://purl.obolibrary.org/obo/UBERON_0001782,pigmented layer of retina,pigment epithelium of retina +http://purl.obolibrary.org/obo/UBERON_0001782,pigmented layer of retina,pigmented retina epithelium +http://purl.obolibrary.org/obo/UBERON_0001782,pigmented layer of retina,pigmented retinal epithelium +http://purl.obolibrary.org/obo/UBERON_0001782,pigmented layer of retina,retinal pigment epithelium +http://purl.obolibrary.org/obo/UBERON_0001782,pigmented layer of retina,retinal pigmented epithelium +http://purl.obolibrary.org/obo/UBERON_0001782,pigmented layer of retina,stratum pigmentosum (retina) +http://purl.obolibrary.org/obo/UBERON_0001782,pigmented layer of retina,stratum pigmentosum retinae +http://purl.obolibrary.org/obo/UBERON_0001783,optic disc,optic disk +http://purl.obolibrary.org/obo/UBERON_0001785,cranial nerve,cranial nerves +http://purl.obolibrary.org/obo/UBERON_0001785,cranial nerve,cranial neural tree organ +http://purl.obolibrary.org/obo/UBERON_0001785,cranial nerve,nervus cranialis +http://purl.obolibrary.org/obo/UBERON_0001786,fovea centralis,centre of macula +http://purl.obolibrary.org/obo/UBERON_0001786,fovea centralis,fovea centralis in macula +http://purl.obolibrary.org/obo/UBERON_0001787,photoreceptor layer of retina,retina photoreceptor layer +http://purl.obolibrary.org/obo/UBERON_0001787,photoreceptor layer of retina,retinal photoreceptor layer +http://purl.obolibrary.org/obo/UBERON_0001787,photoreceptor layer of retina,stratum segmentorum externorum et internorum (retina) +http://purl.obolibrary.org/obo/UBERON_0001787,photoreceptor layer of retina,stratum segmentorum externorum et internorum retinae +http://purl.obolibrary.org/obo/UBERON_0001788,outer limiting layer of retina,external limiting lamina of retina +http://purl.obolibrary.org/obo/UBERON_0001788,outer limiting layer of retina,external limiting membrane +http://purl.obolibrary.org/obo/UBERON_0001788,outer limiting layer of retina,external limiting membrane of retina +http://purl.obolibrary.org/obo/UBERON_0001788,outer limiting layer of retina,outer limiting membrane +http://purl.obolibrary.org/obo/UBERON_0001788,outer limiting layer of retina,outer limiting membrane of retina +http://purl.obolibrary.org/obo/UBERON_0001788,outer limiting layer of retina,retina external limiting lamina +http://purl.obolibrary.org/obo/UBERON_0001788,outer limiting layer of retina,retina outer limiting membrane +http://purl.obolibrary.org/obo/UBERON_0001788,outer limiting layer of retina,stratum limitans externum (retina) +http://purl.obolibrary.org/obo/UBERON_0001788,outer limiting layer of retina,stratum limitans externum retinae +http://purl.obolibrary.org/obo/UBERON_0001789,outer nuclear layer of retina,ONL +http://purl.obolibrary.org/obo/UBERON_0001789,outer nuclear layer of retina,external nuclear layer +http://purl.obolibrary.org/obo/UBERON_0001789,outer nuclear layer of retina,layer of outer granules +http://purl.obolibrary.org/obo/UBERON_0001789,outer nuclear layer of retina,neural retina outer nuclear layer +http://purl.obolibrary.org/obo/UBERON_0001789,outer nuclear layer of retina,outer nuclear layer +http://purl.obolibrary.org/obo/UBERON_0001789,outer nuclear layer of retina,retina outer nuclear layer +http://purl.obolibrary.org/obo/UBERON_0001789,outer nuclear layer of retina,"retina, outer nuclear layer" +http://purl.obolibrary.org/obo/UBERON_0001789,outer nuclear layer of retina,retinal outer nuclear layer +http://purl.obolibrary.org/obo/UBERON_0001789,outer nuclear layer of retina,retinal outer nuclear layers +http://purl.obolibrary.org/obo/UBERON_0001789,outer nuclear layer of retina,stratum nucleare externum (retina) +http://purl.obolibrary.org/obo/UBERON_0001789,outer nuclear layer of retina,stratum nucleare externum retinae +http://purl.obolibrary.org/obo/UBERON_0001790,outer plexiform layer of retina,OPL +http://purl.obolibrary.org/obo/UBERON_0001790,outer plexiform layer of retina,external plexiform layer +http://purl.obolibrary.org/obo/UBERON_0001790,outer plexiform layer of retina,outer plexiform layer +http://purl.obolibrary.org/obo/UBERON_0001790,outer plexiform layer of retina,retina outer plexiform layer +http://purl.obolibrary.org/obo/UBERON_0001790,outer plexiform layer of retina,"retina, outer plexiform layer" +http://purl.obolibrary.org/obo/UBERON_0001790,outer plexiform layer of retina,retinal outer plexiform layer +http://purl.obolibrary.org/obo/UBERON_0001790,outer plexiform layer of retina,retinal outer plexiform layers +http://purl.obolibrary.org/obo/UBERON_0001790,outer plexiform layer of retina,stratum plexiforme externum +http://purl.obolibrary.org/obo/UBERON_0001790,outer plexiform layer of retina,stratum plexiforme externum retinae +http://purl.obolibrary.org/obo/UBERON_0001791,inner nuclear layer of retina,INL +http://purl.obolibrary.org/obo/UBERON_0001791,inner nuclear layer of retina,inner nuclear layer +http://purl.obolibrary.org/obo/UBERON_0001791,inner nuclear layer of retina,intermediate cell layer +http://purl.obolibrary.org/obo/UBERON_0001791,inner nuclear layer of retina,layer of inner granules +http://purl.obolibrary.org/obo/UBERON_0001791,inner nuclear layer of retina,neural retina inner nuclear layer +http://purl.obolibrary.org/obo/UBERON_0001791,inner nuclear layer of retina,retina inner nuclear layer +http://purl.obolibrary.org/obo/UBERON_0001791,inner nuclear layer of retina,"retina, inner nuclear layer" +http://purl.obolibrary.org/obo/UBERON_0001791,inner nuclear layer of retina,retinal inner nuclear layer +http://purl.obolibrary.org/obo/UBERON_0001791,inner nuclear layer of retina,stratum nucleare internum +http://purl.obolibrary.org/obo/UBERON_0001791,inner nuclear layer of retina,stratum nucleare internum retinae +http://purl.obolibrary.org/obo/UBERON_0001792,ganglionic layer of retina,GCL layer +http://purl.obolibrary.org/obo/UBERON_0001792,ganglionic layer of retina,RGC layer +http://purl.obolibrary.org/obo/UBERON_0001792,ganglionic layer of retina,ganglion cell layer +http://purl.obolibrary.org/obo/UBERON_0001792,ganglionic layer of retina,ganglionic cell layer of retina +http://purl.obolibrary.org/obo/UBERON_0001792,ganglionic layer of retina,retina ganglion cell layer +http://purl.obolibrary.org/obo/UBERON_0001792,ganglionic layer of retina,retina ganglion layer +http://purl.obolibrary.org/obo/UBERON_0001792,ganglionic layer of retina,"retina, ganglion cell layer" +http://purl.obolibrary.org/obo/UBERON_0001792,ganglionic layer of retina,retinal ganglion cell layer +http://purl.obolibrary.org/obo/UBERON_0001792,ganglionic layer of retina,retinal ganglion layer +http://purl.obolibrary.org/obo/UBERON_0001792,ganglionic layer of retina,stratum ganglionicum (retina) +http://purl.obolibrary.org/obo/UBERON_0001792,ganglionic layer of retina,stratum ganglionicum retinae +http://purl.obolibrary.org/obo/UBERON_0001793,nerve fiber layer of retina,layer of nerve fibers of retina +http://purl.obolibrary.org/obo/UBERON_0001793,nerve fiber layer of retina,layer of nerve fibres of retina +http://purl.obolibrary.org/obo/UBERON_0001793,nerve fiber layer of retina,optic fiber layer +http://purl.obolibrary.org/obo/UBERON_0001793,nerve fiber layer of retina,retina nerve fiber layer +http://purl.obolibrary.org/obo/UBERON_0001793,nerve fiber layer of retina,stratum neurofibrarum (retina) +http://purl.obolibrary.org/obo/UBERON_0001793,nerve fiber layer of retina,stratum neurofibrarum retinae +http://purl.obolibrary.org/obo/UBERON_0001793,nerve fiber layer of retina,stratum opticum of retina +http://purl.obolibrary.org/obo/UBERON_0001794,inner limiting layer of retina,inner limiting membrane +http://purl.obolibrary.org/obo/UBERON_0001794,inner limiting layer of retina,inner limiting membrane of retina +http://purl.obolibrary.org/obo/UBERON_0001794,inner limiting layer of retina,internal limiting lamina of retina +http://purl.obolibrary.org/obo/UBERON_0001794,inner limiting layer of retina,internal limiting membrane of retina +http://purl.obolibrary.org/obo/UBERON_0001794,inner limiting layer of retina,retina inner limiting membrane +http://purl.obolibrary.org/obo/UBERON_0001794,inner limiting layer of retina,retina internal limiting lamina +http://purl.obolibrary.org/obo/UBERON_0001794,inner limiting layer of retina,stratum limitans internum retinae +http://purl.obolibrary.org/obo/UBERON_0001795,inner plexiform layer of retina,IPL +http://purl.obolibrary.org/obo/UBERON_0001795,inner plexiform layer of retina,inner plexiform layer +http://purl.obolibrary.org/obo/UBERON_0001795,inner plexiform layer of retina,internal plexiform layer of retina +http://purl.obolibrary.org/obo/UBERON_0001795,inner plexiform layer of retina,retina inner plexiform layer +http://purl.obolibrary.org/obo/UBERON_0001795,inner plexiform layer of retina,"retina, inner plexiform layer" +http://purl.obolibrary.org/obo/UBERON_0001795,inner plexiform layer of retina,retinal inner plexiform layer +http://purl.obolibrary.org/obo/UBERON_0001795,inner plexiform layer of retina,retinal internal plexiform layer +http://purl.obolibrary.org/obo/UBERON_0001795,inner plexiform layer of retina,stratum plexifome internum +http://purl.obolibrary.org/obo/UBERON_0001795,inner plexiform layer of retina,stratum plexiforme internum +http://purl.obolibrary.org/obo/UBERON_0001795,inner plexiform layer of retina,stratum plexiforme internum retinae +http://purl.obolibrary.org/obo/UBERON_0001796,aqueous humor of eyeball,aqueous humor +http://purl.obolibrary.org/obo/UBERON_0001796,aqueous humor of eyeball,aqueous humour +http://purl.obolibrary.org/obo/UBERON_0001796,aqueous humor of eyeball,humor aquosus +http://purl.obolibrary.org/obo/UBERON_0001797,vitreous humor,humor vitreous +http://purl.obolibrary.org/obo/UBERON_0001797,vitreous humor,humor vitreus +http://purl.obolibrary.org/obo/UBERON_0001797,vitreous humor,vitreous +http://purl.obolibrary.org/obo/UBERON_0001797,vitreous humor,whole portion of vitreous humor +http://purl.obolibrary.org/obo/UBERON_0001798,vitreous body, +http://purl.obolibrary.org/obo/UBERON_0001799,vitreous chamber of eyeball,camera postrema +http://purl.obolibrary.org/obo/UBERON_0001799,vitreous chamber of eyeball,camera postrema bulbi oculi +http://purl.obolibrary.org/obo/UBERON_0001799,vitreous chamber of eyeball,camera vitrea +http://purl.obolibrary.org/obo/UBERON_0001799,vitreous chamber of eyeball,camera vitrea bulbi +http://purl.obolibrary.org/obo/UBERON_0001799,vitreous chamber of eyeball,postremal chamber +http://purl.obolibrary.org/obo/UBERON_0001799,vitreous chamber of eyeball,postremal chamber of eyeball +http://purl.obolibrary.org/obo/UBERON_0001799,vitreous chamber of eyeball,vitreous chamber +http://purl.obolibrary.org/obo/UBERON_0001800,sensory ganglion,ganglion sensorium +http://purl.obolibrary.org/obo/UBERON_0001801,anterior segment of eyeball,anterior eye segment +http://purl.obolibrary.org/obo/UBERON_0001801,anterior segment of eyeball,anterior segment eye +http://purl.obolibrary.org/obo/UBERON_0001801,anterior segment of eyeball,anterior segment of eye +http://purl.obolibrary.org/obo/UBERON_0001801,anterior segment of eyeball,anterior segment of the eye +http://purl.obolibrary.org/obo/UBERON_0001801,anterior segment of eyeball,eye anterior segment +http://purl.obolibrary.org/obo/UBERON_0001801,anterior segment of eyeball,segmentum anterius (bulbus oculi) +http://purl.obolibrary.org/obo/UBERON_0001801,anterior segment of eyeball,segmentum anterius bulbi oculi +http://purl.obolibrary.org/obo/UBERON_0001802,posterior segment of eyeball,eye posterior segment +http://purl.obolibrary.org/obo/UBERON_0001802,posterior segment of eyeball,posterior eye segment +http://purl.obolibrary.org/obo/UBERON_0001802,posterior segment of eyeball,posterior segment eye +http://purl.obolibrary.org/obo/UBERON_0001802,posterior segment of eyeball,posterior segment of eye +http://purl.obolibrary.org/obo/UBERON_0001802,posterior segment of eyeball,posterior segment of the eye +http://purl.obolibrary.org/obo/UBERON_0001802,posterior segment of eyeball,segmentum posterius (bulbus oculi) +http://purl.obolibrary.org/obo/UBERON_0001802,posterior segment of eyeball,segmentum posterius bulbi oculi +http://purl.obolibrary.org/obo/UBERON_0001803,epithelium of lens,epithelial tissue of eye lens +http://purl.obolibrary.org/obo/UBERON_0001803,epithelium of lens,epithelial tissue of lens +http://purl.obolibrary.org/obo/UBERON_0001803,epithelium of lens,epithelium lentis +http://purl.obolibrary.org/obo/UBERON_0001803,epithelium of lens,epithelium of eye lens +http://purl.obolibrary.org/obo/UBERON_0001803,epithelium of lens,eye lens epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0001803,epithelium of lens,eye lens epithelium +http://purl.obolibrary.org/obo/UBERON_0001803,epithelium of lens,lens epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0001803,epithelium of lens,lens epithelium +http://purl.obolibrary.org/obo/UBERON_0001804,capsule of lens,capsula lentis +http://purl.obolibrary.org/obo/UBERON_0001804,capsule of lens,lens capsule +http://purl.obolibrary.org/obo/UBERON_0001805,autonomic ganglion,autonomic nervous system ganglion +http://purl.obolibrary.org/obo/UBERON_0001805,autonomic ganglion,ganglion autonomicum +http://purl.obolibrary.org/obo/UBERON_0001805,autonomic ganglion,ganglion of autonomic nervous system +http://purl.obolibrary.org/obo/UBERON_0001805,autonomic ganglion,ganglion of visceral nervous system +http://purl.obolibrary.org/obo/UBERON_0001805,autonomic ganglion,visceral nervous system ganglion +http://purl.obolibrary.org/obo/UBERON_0001806,sympathetic ganglion,ganglion of sympathetic nervous system +http://purl.obolibrary.org/obo/UBERON_0001806,sympathetic ganglion,ganglion of sympathetic part of autonomic division of nervous system +http://purl.obolibrary.org/obo/UBERON_0001806,sympathetic ganglion,ganglion sympatheticum +http://purl.obolibrary.org/obo/UBERON_0001806,sympathetic ganglion,ganglion sympathicum +http://purl.obolibrary.org/obo/UBERON_0001806,sympathetic ganglion,sympathetic nervous system ganglion +http://purl.obolibrary.org/obo/UBERON_0001806,sympathetic ganglion,sympathetic part of autonomic division of nervous system ganglion +http://purl.obolibrary.org/obo/UBERON_0001807,paravertebral ganglion,ganglia of sympathetic trunk +http://purl.obolibrary.org/obo/UBERON_0001807,paravertebral ganglion,ganglia trunci sympathici +http://purl.obolibrary.org/obo/UBERON_0001807,paravertebral ganglion,ganglion of sympathetic trunk +http://purl.obolibrary.org/obo/UBERON_0001807,paravertebral ganglion,ganglion trunci sympathetici +http://purl.obolibrary.org/obo/UBERON_0001807,paravertebral ganglion,ganglion trunci sympathici +http://purl.obolibrary.org/obo/UBERON_0001807,paravertebral ganglion,paravertebral ganglia +http://purl.obolibrary.org/obo/UBERON_0001807,paravertebral ganglion,paravertebral ganglion +http://purl.obolibrary.org/obo/UBERON_0001807,paravertebral ganglion,sympathetic chain ganglia +http://purl.obolibrary.org/obo/UBERON_0001807,paravertebral ganglion,sympathetic chain ganglion +http://purl.obolibrary.org/obo/UBERON_0001808,parasympathetic ganglion,ganglion parasympathicum +http://purl.obolibrary.org/obo/UBERON_0001809,enteric ganglion,intramural ganglion +http://purl.obolibrary.org/obo/UBERON_0001810,nerve plexus,plexus +http://purl.obolibrary.org/obo/UBERON_0001811,conjunctiva,conjunctivae +http://purl.obolibrary.org/obo/UBERON_0001811,conjunctiva,conjunctivas +http://purl.obolibrary.org/obo/UBERON_0001811,conjunctiva,tunica conjunctiva +http://purl.obolibrary.org/obo/UBERON_0001811,conjunctiva,wall of conjunctival sac +http://purl.obolibrary.org/obo/UBERON_0001812,palpebral conjunctiva,conjunctival layer of eyelids +http://purl.obolibrary.org/obo/UBERON_0001812,palpebral conjunctiva,tarsal conjunctiva +http://purl.obolibrary.org/obo/UBERON_0001812,palpebral conjunctiva,tunica conjunctiva palpebrum +http://purl.obolibrary.org/obo/UBERON_0001813,spinal nerve plexus,plexus nervorum spinalium +http://purl.obolibrary.org/obo/UBERON_0001813,spinal nerve plexus,plexus of spinal nerves +http://purl.obolibrary.org/obo/UBERON_0001813,spinal nerve plexus,somatic nerve plexus +http://purl.obolibrary.org/obo/UBERON_0001813,spinal nerve plexus,spinal nerve plexus +http://purl.obolibrary.org/obo/UBERON_0001814,brachial nerve plexus,brachial plexus +http://purl.obolibrary.org/obo/UBERON_0001815,lumbosacral nerve plexus,lumbosacral plexus +http://purl.obolibrary.org/obo/UBERON_0001815,lumbosacral nerve plexus,plexus lumbosacralis +http://purl.obolibrary.org/obo/UBERON_0001816,autonomic nerve plexus,autonomic plexus +http://purl.obolibrary.org/obo/UBERON_0001816,autonomic nerve plexus,plexus autonomicus +http://purl.obolibrary.org/obo/UBERON_0001816,autonomic nerve plexus,plexus nervosus visceralis +http://purl.obolibrary.org/obo/UBERON_0001816,autonomic nerve plexus,plexus visceralis +http://purl.obolibrary.org/obo/UBERON_0001816,autonomic nerve plexus,visceral nerve plexus +http://purl.obolibrary.org/obo/UBERON_0001816,autonomic nerve plexus,visceral plexus +http://purl.obolibrary.org/obo/UBERON_0001817,lacrimal gland,glandula lacrimalis +http://purl.obolibrary.org/obo/UBERON_0001817,lacrimal gland,glandula praeorbitalis +http://purl.obolibrary.org/obo/UBERON_0001817,lacrimal gland,lacrimal-preorbital gland +http://purl.obolibrary.org/obo/UBERON_0001817,lacrimal gland,preorbital gland +http://purl.obolibrary.org/obo/UBERON_0001817,lacrimal gland,tear gland +http://purl.obolibrary.org/obo/UBERON_0001818,tarsal gland,Meibomian gland +http://purl.obolibrary.org/obo/UBERON_0001818,tarsal gland,gland of Meibom +http://purl.obolibrary.org/obo/UBERON_0001818,tarsal gland,glandula tarsales +http://purl.obolibrary.org/obo/UBERON_0001819,palpebral fissure, +http://purl.obolibrary.org/obo/UBERON_0001820,sweat gland, +http://purl.obolibrary.org/obo/UBERON_0001821,sebaceous gland, +http://purl.obolibrary.org/obo/UBERON_0001822,orbital septum, +http://purl.obolibrary.org/obo/UBERON_0001823,nasal cartilage,cartilage of nose +http://purl.obolibrary.org/obo/UBERON_0001824,mucosa of larynx,laryngeal mucosa +http://purl.obolibrary.org/obo/UBERON_0001824,mucosa of larynx,larynx mucosa +http://purl.obolibrary.org/obo/UBERON_0001824,mucosa of larynx,larynx mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0001824,mucosa of larynx,larynx mucous membrane +http://purl.obolibrary.org/obo/UBERON_0001824,mucosa of larynx,larynx organ mucosa +http://purl.obolibrary.org/obo/UBERON_0001824,mucosa of larynx,mucosa of organ of larynx +http://purl.obolibrary.org/obo/UBERON_0001824,mucosa of larynx,mucous membrane of larynx +http://purl.obolibrary.org/obo/UBERON_0001824,mucosa of larynx,organ mucosa of larynx +http://purl.obolibrary.org/obo/UBERON_0001824,mucosa of larynx,tunica mucosa laryngis +http://purl.obolibrary.org/obo/UBERON_0001825,paranasal sinus, +http://purl.obolibrary.org/obo/UBERON_0001826,nasal cavity mucosa,mucosa of nose +http://purl.obolibrary.org/obo/UBERON_0001826,nasal cavity mucosa,mucous membrane of nose +http://purl.obolibrary.org/obo/UBERON_0001826,nasal cavity mucosa,nasal mucosa +http://purl.obolibrary.org/obo/UBERON_0001826,nasal cavity mucosa,tunica mucosa nasalis +http://purl.obolibrary.org/obo/UBERON_0001826,nasal cavity mucosa,tunica mucosa nasi +http://purl.obolibrary.org/obo/UBERON_0001827,secretion of lacrimal gland,lacrimal fluid +http://purl.obolibrary.org/obo/UBERON_0001827,secretion of lacrimal gland,lacrimal gland secretion +http://purl.obolibrary.org/obo/UBERON_0001827,secretion of lacrimal gland,lacrimal secretion +http://purl.obolibrary.org/obo/UBERON_0001827,secretion of lacrimal gland,tear +http://purl.obolibrary.org/obo/UBERON_0001827,secretion of lacrimal gland,tears +http://purl.obolibrary.org/obo/UBERON_0001828,gingiva,gum +http://purl.obolibrary.org/obo/UBERON_0001828,gingiva,gum tissue +http://purl.obolibrary.org/obo/UBERON_0001828,gingiva,gums +http://purl.obolibrary.org/obo/UBERON_0001829,major salivary gland, +http://purl.obolibrary.org/obo/UBERON_0001830,minor salivary gland, +http://purl.obolibrary.org/obo/UBERON_0001831,parotid gland,glandula parotidea +http://purl.obolibrary.org/obo/UBERON_0001831,parotid gland,parotid +http://purl.obolibrary.org/obo/UBERON_0001832,sublingual gland,Rivinus gland +http://purl.obolibrary.org/obo/UBERON_0001832,sublingual gland,Rivinus' gland +http://purl.obolibrary.org/obo/UBERON_0001832,sublingual gland,ductus sublingualis +http://purl.obolibrary.org/obo/UBERON_0001832,sublingual gland,glandula sublingualis +http://purl.obolibrary.org/obo/UBERON_0001832,sublingual gland,sublingual salivary gland +http://purl.obolibrary.org/obo/UBERON_0001832,sublingual gland,submaxillary gland +http://purl.obolibrary.org/obo/UBERON_0001833,lip, +http://purl.obolibrary.org/obo/UBERON_0001834,upper lip,upper jaw lip +http://purl.obolibrary.org/obo/UBERON_0001835,lower lip,lower jaw lip +http://purl.obolibrary.org/obo/UBERON_0001836,saliva,salivary gland secretion +http://purl.obolibrary.org/obo/UBERON_0001837,duct of salivary gland,salivary duct +http://purl.obolibrary.org/obo/UBERON_0001837,duct of salivary gland,salivary gland duct +http://purl.obolibrary.org/obo/UBERON_0001838,sublingual duct, +http://purl.obolibrary.org/obo/UBERON_0001839,bony labyrinth,labyrinthus osseus +http://purl.obolibrary.org/obo/UBERON_0001839,bony labyrinth,osseous labyrinth +http://purl.obolibrary.org/obo/UBERON_0001839,bony labyrinth,osseus labyrinth +http://purl.obolibrary.org/obo/UBERON_0001840,semicircular canal,semicircular canals +http://purl.obolibrary.org/obo/UBERON_0001841,anterior semicircular canal,superior semicircular canal +http://purl.obolibrary.org/obo/UBERON_0001842,posterior semicircular canal, +http://purl.obolibrary.org/obo/UBERON_0001843,lateral semicircular canal, +http://purl.obolibrary.org/obo/UBERON_0001844,cochlea,cochleae +http://purl.obolibrary.org/obo/UBERON_0001844,cochlea,cochlear duct +http://purl.obolibrary.org/obo/UBERON_0001844,cochlea,cochlear organ +http://purl.obolibrary.org/obo/UBERON_0001844,cochlea,cochlear part of bony labyrinth +http://purl.obolibrary.org/obo/UBERON_0001844,cochlea,lagena +http://purl.obolibrary.org/obo/UBERON_0001844,cochlea,lagenas +http://purl.obolibrary.org/obo/UBERON_0001845,perilymph, +http://purl.obolibrary.org/obo/UBERON_0001846,internal ear,auris interna +http://purl.obolibrary.org/obo/UBERON_0001846,internal ear,inner ear +http://purl.obolibrary.org/obo/UBERON_0001846,internal ear,labyrinth +http://purl.obolibrary.org/obo/UBERON_0001846,internal ear,otocyst +http://purl.obolibrary.org/obo/UBERON_0001847,lobule of pinna,auricular lobule +http://purl.obolibrary.org/obo/UBERON_0001847,lobule of pinna,ear lobe +http://purl.obolibrary.org/obo/UBERON_0001847,lobule of pinna,ear lobule +http://purl.obolibrary.org/obo/UBERON_0001847,lobule of pinna,earlobe +http://purl.obolibrary.org/obo/UBERON_0001847,lobule of pinna,lobe of ear +http://purl.obolibrary.org/obo/UBERON_0001847,lobule of pinna,lobule of auricle +http://purl.obolibrary.org/obo/UBERON_0001847,lobule of pinna,lobule of auricle of ear +http://purl.obolibrary.org/obo/UBERON_0001847,lobule of pinna,lobulus auriculae +http://purl.obolibrary.org/obo/UBERON_0001847,lobule of pinna,pinna lobule +http://purl.obolibrary.org/obo/UBERON_0001848,auricular cartilage,cartilage of pinna +http://purl.obolibrary.org/obo/UBERON_0001848,auricular cartilage,pinna cartilage +http://purl.obolibrary.org/obo/UBERON_0001849,membranous labyrinth,labyrinthus membranaceus +http://purl.obolibrary.org/obo/UBERON_0001850,lacrimal drainage system, +http://purl.obolibrary.org/obo/UBERON_0001851,cortex,cortex +http://purl.obolibrary.org/obo/UBERON_0001851,cortex,cortex of organ +http://purl.obolibrary.org/obo/UBERON_0001852,endolymph,endolymphatic fluid +http://purl.obolibrary.org/obo/UBERON_0001853,utricle of membranous labyrinth,membranous labyrinth utricle +http://purl.obolibrary.org/obo/UBERON_0001853,utricle of membranous labyrinth,utricle +http://purl.obolibrary.org/obo/UBERON_0001853,utricle of membranous labyrinth,utriculus +http://purl.obolibrary.org/obo/UBERON_0001853,utricle of membranous labyrinth,utriculus (labyrinthus vestibularis) +http://purl.obolibrary.org/obo/UBERON_0001854,saccule of membranous labyrinth,membranous labyrinth saccule +http://purl.obolibrary.org/obo/UBERON_0001854,saccule of membranous labyrinth,saccule +http://purl.obolibrary.org/obo/UBERON_0001854,saccule of membranous labyrinth,sacculus +http://purl.obolibrary.org/obo/UBERON_0001854,saccule of membranous labyrinth,sacculus (labyrinthus vestibularis) +http://purl.obolibrary.org/obo/UBERON_0001855,cochlear duct of membranous labyrinth,Reissner's canal +http://purl.obolibrary.org/obo/UBERON_0001855,cochlear duct of membranous labyrinth,Reissners canal +http://purl.obolibrary.org/obo/UBERON_0001855,cochlear duct of membranous labyrinth,cochlea duct +http://purl.obolibrary.org/obo/UBERON_0001855,cochlear duct of membranous labyrinth,cochlear aqueduct +http://purl.obolibrary.org/obo/UBERON_0001855,cochlear duct of membranous labyrinth,cochlear duct +http://purl.obolibrary.org/obo/UBERON_0001855,cochlear duct of membranous labyrinth,ductus cochlearis +http://purl.obolibrary.org/obo/UBERON_0001855,cochlear duct of membranous labyrinth,membranous cochlea +http://purl.obolibrary.org/obo/UBERON_0001855,cochlear duct of membranous labyrinth,scala media +http://purl.obolibrary.org/obo/UBERON_0001855,cochlear duct of membranous labyrinth,scala medias +http://purl.obolibrary.org/obo/UBERON_0001855,cochlear duct of membranous labyrinth,scala of Loewenberg +http://purl.obolibrary.org/obo/UBERON_0001856,semicircular duct, +http://purl.obolibrary.org/obo/UBERON_0001857,anterior semicircular duct, +http://purl.obolibrary.org/obo/UBERON_0001858,posterior semicircular duct, +http://purl.obolibrary.org/obo/UBERON_0001859,lateral semicircular duct, +http://purl.obolibrary.org/obo/UBERON_0001860,endolymphatic duct,ductus endolymphaticus +http://purl.obolibrary.org/obo/UBERON_0001861,ductus reuniens, +http://purl.obolibrary.org/obo/UBERON_0001862,vestibular labyrinth,inner ear vestibular component +http://purl.obolibrary.org/obo/UBERON_0001862,vestibular labyrinth,labyrinthus vestibularis +http://purl.obolibrary.org/obo/UBERON_0001862,vestibular labyrinth,vestibular apparatus +http://purl.obolibrary.org/obo/UBERON_0001862,vestibular labyrinth,vestibular component +http://purl.obolibrary.org/obo/UBERON_0001863,scala vestibuli, +http://purl.obolibrary.org/obo/UBERON_0001864,scala tympani, +http://purl.obolibrary.org/obo/UBERON_0001865,cartilaginous external acoustic tube,cartilaginous external acoustic meatus +http://purl.obolibrary.org/obo/UBERON_0001865,cartilaginous external acoustic tube,cartilaginous part of external acoustic meatus +http://purl.obolibrary.org/obo/UBERON_0001865,cartilaginous external acoustic tube,external acoustic meatus cartilaginous part +http://purl.obolibrary.org/obo/UBERON_0001865,cartilaginous external acoustic tube,meatus acusticus externus cartilagineus +http://purl.obolibrary.org/obo/UBERON_0001866,sebum, +http://purl.obolibrary.org/obo/UBERON_0001867,cartilage of external ear,external ear cartilage +http://purl.obolibrary.org/obo/UBERON_0001868,skin of chest,anterior thoracic region zone of skin +http://purl.obolibrary.org/obo/UBERON_0001868,skin of chest,anterolateral part of thorax zone of skin +http://purl.obolibrary.org/obo/UBERON_0001868,skin of chest,chest skin +http://purl.obolibrary.org/obo/UBERON_0001868,skin of chest,chest zone of skin +http://purl.obolibrary.org/obo/UBERON_0001868,skin of chest,front of thorax zone of skin +http://purl.obolibrary.org/obo/UBERON_0001868,skin of chest,zone of skin of anterior chest +http://purl.obolibrary.org/obo/UBERON_0001868,skin of chest,zone of skin of anterior part of thorax +http://purl.obolibrary.org/obo/UBERON_0001868,skin of chest,zone of skin of anterior thoracic region +http://purl.obolibrary.org/obo/UBERON_0001868,skin of chest,zone of skin of anterolateral part of thorax +http://purl.obolibrary.org/obo/UBERON_0001868,skin of chest,zone of skin of chest +http://purl.obolibrary.org/obo/UBERON_0001868,skin of chest,zone of skin of front of thorax +http://purl.obolibrary.org/obo/UBERON_0001869,cerebral hemisphere,cerebrum +http://purl.obolibrary.org/obo/UBERON_0001869,cerebral hemisphere,hemisphere +http://purl.obolibrary.org/obo/UBERON_0001869,cerebral hemisphere,hemispheric regions +http://purl.obolibrary.org/obo/UBERON_0001869,cerebral hemisphere,hemispherium cerebri +http://purl.obolibrary.org/obo/UBERON_0001869,cerebral hemisphere,medial amygdalar nucleus +http://purl.obolibrary.org/obo/UBERON_0001869,cerebral hemisphere,nucleus amygdaloideus medialis +http://purl.obolibrary.org/obo/UBERON_0001869,cerebral hemisphere,nucleus medialis amygdalae +http://purl.obolibrary.org/obo/UBERON_0001870,frontal cortex,cortex of frontal lobe +http://purl.obolibrary.org/obo/UBERON_0001870,frontal cortex,frontal lobe cortex +http://purl.obolibrary.org/obo/UBERON_0001870,frontal cortex,gray matter of frontal lobe +http://purl.obolibrary.org/obo/UBERON_0001870,frontal cortex,grey matter of frontal lobe +http://purl.obolibrary.org/obo/UBERON_0001871,temporal lobe,lobus temporalis +http://purl.obolibrary.org/obo/UBERON_0001871,temporal lobe,temporal cortex +http://purl.obolibrary.org/obo/UBERON_0001872,parietal lobe,lobus parietalis +http://purl.obolibrary.org/obo/UBERON_0001872,parietal lobe,parietal region +http://purl.obolibrary.org/obo/UBERON_0001872,parietal lobe,regio parietalis +http://purl.obolibrary.org/obo/UBERON_0001873,caudate nucleus,caudatus +http://purl.obolibrary.org/obo/UBERON_0001874,putamen,nucleus putamen +http://purl.obolibrary.org/obo/UBERON_0001875,globus pallidus,globus pallidus (Burdach) +http://purl.obolibrary.org/obo/UBERON_0001875,globus pallidus,nucleus pallidus +http://purl.obolibrary.org/obo/UBERON_0001875,globus pallidus,pale body +http://purl.obolibrary.org/obo/UBERON_0001875,globus pallidus,paleostriatum +http://purl.obolibrary.org/obo/UBERON_0001875,globus pallidus,pallidium +http://purl.obolibrary.org/obo/UBERON_0001875,globus pallidus,pallidum +http://purl.obolibrary.org/obo/UBERON_0001876,amygdala,amygdaloid area +http://purl.obolibrary.org/obo/UBERON_0001876,amygdala,amygdaloid body +http://purl.obolibrary.org/obo/UBERON_0001876,amygdala,amygdaloid complex +http://purl.obolibrary.org/obo/UBERON_0001876,amygdala,amygdaloid nuclear complex +http://purl.obolibrary.org/obo/UBERON_0001876,amygdala,amygdaloid nuclear group +http://purl.obolibrary.org/obo/UBERON_0001876,amygdala,amygdaloid nuclear groups +http://purl.obolibrary.org/obo/UBERON_0001876,amygdala,amygdaloid nucleus +http://purl.obolibrary.org/obo/UBERON_0001876,amygdala,archistriatum +http://purl.obolibrary.org/obo/UBERON_0001876,amygdala,corpus amygdalae +http://purl.obolibrary.org/obo/UBERON_0001876,amygdala,corpus amygdaloideum +http://purl.obolibrary.org/obo/UBERON_0001876,amygdala,nucleus amygdalae +http://purl.obolibrary.org/obo/UBERON_0001877,medial septal nucleus,medial parolfactory nucleus +http://purl.obolibrary.org/obo/UBERON_0001878,septofimbrial nucleus,nucleus septofibrialis +http://purl.obolibrary.org/obo/UBERON_0001878,septofimbrial nucleus,scattered nucleus of the septum +http://purl.obolibrary.org/obo/UBERON_0001879,nucleus of diagonal band,diagonal band nucleus +http://purl.obolibrary.org/obo/UBERON_0001879,nucleus of diagonal band,nucleus of diagonal band (of Broca) +http://purl.obolibrary.org/obo/UBERON_0001879,nucleus of diagonal band,nucleus of the diagonal band of Broca +http://purl.obolibrary.org/obo/UBERON_0001879,nucleus of diagonal band,olfactory area (roberts) +http://purl.obolibrary.org/obo/UBERON_0001880,bed nucleus of stria terminalis,BST +http://purl.obolibrary.org/obo/UBERON_0001880,bed nucleus of stria terminalis,bed nuclei of the stria terminalis +http://purl.obolibrary.org/obo/UBERON_0001880,bed nucleus of stria terminalis,bed nucleus of the stria terminalis +http://purl.obolibrary.org/obo/UBERON_0001880,bed nucleus of stria terminalis,bed nucleus stria terminalis (Johnson) +http://purl.obolibrary.org/obo/UBERON_0001880,bed nucleus of stria terminalis,bed nucleus striae terminalis +http://purl.obolibrary.org/obo/UBERON_0001880,bed nucleus of stria terminalis,intercalate nucleus of stria terminalis +http://purl.obolibrary.org/obo/UBERON_0001880,bed nucleus of stria terminalis,interstitial nucleus of stria terminalis +http://purl.obolibrary.org/obo/UBERON_0001880,bed nucleus of stria terminalis,nuclei of stria terminalis +http://purl.obolibrary.org/obo/UBERON_0001880,bed nucleus of stria terminalis,nucleus interstitialis striae terminalis +http://purl.obolibrary.org/obo/UBERON_0001880,bed nucleus of stria terminalis,nucleus of stria terminalis +http://purl.obolibrary.org/obo/UBERON_0001880,bed nucleus of stria terminalis,nucleus of the stria terminalis +http://purl.obolibrary.org/obo/UBERON_0001880,bed nucleus of stria terminalis,nucleus proprius stria terminalis (bed nucleus) +http://purl.obolibrary.org/obo/UBERON_0001880,bed nucleus of stria terminalis,nucleus striae terminalis +http://purl.obolibrary.org/obo/UBERON_0001880,bed nucleus of stria terminalis,stria terminalis nucleus +http://purl.obolibrary.org/obo/UBERON_0001881,island of Calleja,Calleja island +http://purl.obolibrary.org/obo/UBERON_0001881,island of Calleja,islands of Calleja +http://purl.obolibrary.org/obo/UBERON_0001882,nucleus accumbens,accumbens nucleus +http://purl.obolibrary.org/obo/UBERON_0001882,nucleus accumbens,colliculus nuclei caudati +http://purl.obolibrary.org/obo/UBERON_0001882,nucleus accumbens,colliculus of caudate nucleus +http://purl.obolibrary.org/obo/UBERON_0001882,nucleus accumbens,nucleus accumbens septi +http://purl.obolibrary.org/obo/UBERON_0001883,olfactory tubercle,tuberculum olfactorium +http://purl.obolibrary.org/obo/UBERON_0001884,phrenic nerve,diaphragmatic nerve +http://purl.obolibrary.org/obo/UBERON_0001884,phrenic nerve,nervus phrenicus +http://purl.obolibrary.org/obo/UBERON_0001884,phrenic nerve,phrenic +http://purl.obolibrary.org/obo/UBERON_0001885,dentate gyrus of hippocampal formation,area dentata +http://purl.obolibrary.org/obo/UBERON_0001885,dentate gyrus of hippocampal formation,dentate area +http://purl.obolibrary.org/obo/UBERON_0001885,dentate gyrus of hippocampal formation,dentate area (dentate gyrus) +http://purl.obolibrary.org/obo/UBERON_0001885,dentate gyrus of hippocampal formation,dentate gyrus +http://purl.obolibrary.org/obo/UBERON_0001885,dentate gyrus of hippocampal formation,fascia dentata +http://purl.obolibrary.org/obo/UBERON_0001885,dentate gyrus of hippocampal formation,gyrus dentatus +http://purl.obolibrary.org/obo/UBERON_0001885,dentate gyrus of hippocampal formation,hippocampal dentate gyrus +http://purl.obolibrary.org/obo/UBERON_0001886,choroid plexus,chorioid plexus +http://purl.obolibrary.org/obo/UBERON_0001886,choroid plexus,plexus choroideus +http://purl.obolibrary.org/obo/UBERON_0001887,internal capsule of telencephalon,brain internal capsule +http://purl.obolibrary.org/obo/UBERON_0001887,internal capsule of telencephalon,internal capsule radiations +http://purl.obolibrary.org/obo/UBERON_0001888,lateral olfactory stria,tractus olfactorius lateralis +http://purl.obolibrary.org/obo/UBERON_0001889,trunk of phrenic nerve,phrenic nerve trunk +http://purl.obolibrary.org/obo/UBERON_0001889,trunk of phrenic nerve,phrenic neural trunk +http://purl.obolibrary.org/obo/UBERON_0001890,forebrain,FB +http://purl.obolibrary.org/obo/UBERON_0001890,forebrain,prosencephalon +http://purl.obolibrary.org/obo/UBERON_0001891,midbrain,MB +http://purl.obolibrary.org/obo/UBERON_0001891,midbrain,mesencephalon +http://purl.obolibrary.org/obo/UBERON_0001892,rhombomere,hindbrain neuromere +http://purl.obolibrary.org/obo/UBERON_0001892,rhombomere,hindbrain neuromeres +http://purl.obolibrary.org/obo/UBERON_0001892,rhombomere,rhombomere +http://purl.obolibrary.org/obo/UBERON_0001893,telencephalon,cerebrum +http://purl.obolibrary.org/obo/UBERON_0001893,telencephalon,endbrain +http://purl.obolibrary.org/obo/UBERON_0001893,telencephalon,supratentorial region +http://purl.obolibrary.org/obo/UBERON_0001894,diencephalon,DiE +http://purl.obolibrary.org/obo/UBERON_0001894,diencephalon,between brain +http://purl.obolibrary.org/obo/UBERON_0001894,diencephalon,betweenbrain +http://purl.obolibrary.org/obo/UBERON_0001894,diencephalon,diencephalon +http://purl.obolibrary.org/obo/UBERON_0001894,diencephalon,interbrain +http://purl.obolibrary.org/obo/UBERON_0001894,diencephalon,mature diencephalon +http://purl.obolibrary.org/obo/UBERON_0001894,diencephalon,thalamencephalon +http://purl.obolibrary.org/obo/UBERON_0001895,metencephalon,epencephalon +http://purl.obolibrary.org/obo/UBERON_0001895,metencephalon,epencephalon-2 +http://purl.obolibrary.org/obo/UBERON_0001896,medulla oblongata,bulb +http://purl.obolibrary.org/obo/UBERON_0001896,medulla oblongata,bulbus +http://purl.obolibrary.org/obo/UBERON_0001896,medulla oblongata,medulla +http://purl.obolibrary.org/obo/UBERON_0001896,medulla oblongata,medulla oblonzata +http://purl.obolibrary.org/obo/UBERON_0001896,medulla oblongata,metepencephalon +http://purl.obolibrary.org/obo/UBERON_0001897,Thalamus,Th +http://purl.obolibrary.org/obo/UBERON_0001897,Thalamus,thalamencephalon +http://purl.obolibrary.org/obo/UBERON_0001897,Thalamus,thalami +http://purl.obolibrary.org/obo/UBERON_0001897,Thalamus,thalamus +http://purl.obolibrary.org/obo/UBERON_0001897,Thalamus,thalamus opticus +http://purl.obolibrary.org/obo/UBERON_0001897,Thalamus,wider thalamus +http://purl.obolibrary.org/obo/UBERON_0001897,dorsal plus ventral thalamus,Th +http://purl.obolibrary.org/obo/UBERON_0001897,dorsal plus ventral thalamus,thalamencephalon +http://purl.obolibrary.org/obo/UBERON_0001897,dorsal plus ventral thalamus,thalami +http://purl.obolibrary.org/obo/UBERON_0001897,dorsal plus ventral thalamus,thalamus +http://purl.obolibrary.org/obo/UBERON_0001897,dorsal plus ventral thalamus,thalamus opticus +http://purl.obolibrary.org/obo/UBERON_0001897,dorsal plus ventral thalamus,wider thalamus +http://purl.obolibrary.org/obo/UBERON_0001898,hypothalamus,Hy +http://purl.obolibrary.org/obo/UBERON_0001898,hypothalamus,hypothalamus +http://purl.obolibrary.org/obo/UBERON_0001898,hypothalamus,preoptico-hypothalamic area +http://purl.obolibrary.org/obo/UBERON_0001898,hypothalamus,preoptico-hypothalamic region +http://purl.obolibrary.org/obo/UBERON_0001899,epithalamus,ETh +http://purl.obolibrary.org/obo/UBERON_0001899,epithalamus,epithalamus +http://purl.obolibrary.org/obo/UBERON_0001900,ventral thalamus,SbTh +http://purl.obolibrary.org/obo/UBERON_0001900,ventral thalamus,perithalamus +http://purl.obolibrary.org/obo/UBERON_0001900,ventral thalamus,prethalamus +http://purl.obolibrary.org/obo/UBERON_0001900,ventral thalamus,subthalamic region +http://purl.obolibrary.org/obo/UBERON_0001900,ventral thalamus,subthalamus +http://purl.obolibrary.org/obo/UBERON_0001900,ventral thalamus,thalamus ventralis +http://purl.obolibrary.org/obo/UBERON_0001900,ventral thalamus,ventral thalamus +http://purl.obolibrary.org/obo/UBERON_0001901,epithelium of trachea,epithelial tissue of trachea +http://purl.obolibrary.org/obo/UBERON_0001901,epithelium of trachea,epithelial tissue of windpipe +http://purl.obolibrary.org/obo/UBERON_0001901,epithelium of trachea,epithelium of windpipe +http://purl.obolibrary.org/obo/UBERON_0001901,epithelium of trachea,trachea epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0001901,epithelium of trachea,trachea epithelium +http://purl.obolibrary.org/obo/UBERON_0001901,epithelium of trachea,tracheal epithelium +http://purl.obolibrary.org/obo/UBERON_0001901,epithelium of trachea,windpipe epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0001901,epithelium of trachea,windpipe epithelium +http://purl.obolibrary.org/obo/UBERON_0001902,epithelium of small intestine,epithelial tissue of small bowel +http://purl.obolibrary.org/obo/UBERON_0001902,epithelium of small intestine,epithelial tissue of small intestine +http://purl.obolibrary.org/obo/UBERON_0001902,epithelium of small intestine,epithelium of small bowel +http://purl.obolibrary.org/obo/UBERON_0001902,epithelium of small intestine,mid intestine epithelium +http://purl.obolibrary.org/obo/UBERON_0001902,epithelium of small intestine,small bowel epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0001902,epithelium of small intestine,small bowel epithelium +http://purl.obolibrary.org/obo/UBERON_0001902,epithelium of small intestine,small intestinal epithelium +http://purl.obolibrary.org/obo/UBERON_0001902,epithelium of small intestine,small intestine epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0001902,epithelium of small intestine,small intestine epithelium +http://purl.obolibrary.org/obo/UBERON_0001903,thalamic reticular nucleus,nuclei reticulares (thalami) +http://purl.obolibrary.org/obo/UBERON_0001903,thalamic reticular nucleus,nucleus reticularis +http://purl.obolibrary.org/obo/UBERON_0001903,thalamic reticular nucleus,nucleus reticularis thalami +http://purl.obolibrary.org/obo/UBERON_0001903,thalamic reticular nucleus,nucleus reticulatus (thalami) +http://purl.obolibrary.org/obo/UBERON_0001903,thalamic reticular nucleus,nucleus thalamicus reticularis +http://purl.obolibrary.org/obo/UBERON_0001903,thalamic reticular nucleus,reticular nuclear group +http://purl.obolibrary.org/obo/UBERON_0001903,thalamic reticular nucleus,reticular nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0001903,thalamic reticular nucleus,reticular nucleus of the thalamus +http://purl.obolibrary.org/obo/UBERON_0001903,thalamic reticular nucleus,reticular nucleus thalamus (Arnold) +http://purl.obolibrary.org/obo/UBERON_0001903,thalamic reticular nucleus,reticular nucleus-2 +http://purl.obolibrary.org/obo/UBERON_0001903,thalamic reticular nucleus,reticular thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0001903,thalamic reticular nucleus,reticulatum thalami (Hassler) +http://purl.obolibrary.org/obo/UBERON_0001904,habenula,Hb +http://purl.obolibrary.org/obo/UBERON_0001904,habenula,ganglion intercrurale +http://purl.obolibrary.org/obo/UBERON_0001904,habenula,ganglion interpedunculare +http://purl.obolibrary.org/obo/UBERON_0001904,habenula,habenula complex +http://purl.obolibrary.org/obo/UBERON_0001904,habenula,habenulae +http://purl.obolibrary.org/obo/UBERON_0001904,habenula,habenular complex +http://purl.obolibrary.org/obo/UBERON_0001904,habenula,habenular nuclei +http://purl.obolibrary.org/obo/UBERON_0001904,habenula,nuclei habenulares +http://purl.obolibrary.org/obo/UBERON_0001904,habenula,nucleus habenularis +http://purl.obolibrary.org/obo/UBERON_0001904,habenula,pineal peduncle +http://purl.obolibrary.org/obo/UBERON_0001905,pineal body,corpus pineale +http://purl.obolibrary.org/obo/UBERON_0001905,pineal body,glandula pinealis +http://purl.obolibrary.org/obo/UBERON_0001905,pineal body,pineal gland +http://purl.obolibrary.org/obo/UBERON_0001905,pineal body,pineal organ +http://purl.obolibrary.org/obo/UBERON_0001906,subthalamic nucleus,Luy's body +http://purl.obolibrary.org/obo/UBERON_0001906,subthalamic nucleus,Luys' body +http://purl.obolibrary.org/obo/UBERON_0001906,subthalamic nucleus,Luys' nucleus +http://purl.obolibrary.org/obo/UBERON_0001906,subthalamic nucleus,body of Forel +http://purl.obolibrary.org/obo/UBERON_0001906,subthalamic nucleus,body of Luys +http://purl.obolibrary.org/obo/UBERON_0001906,subthalamic nucleus,corpus Luysi +http://purl.obolibrary.org/obo/UBERON_0001906,subthalamic nucleus,corpus subthalamicum +http://purl.obolibrary.org/obo/UBERON_0001906,subthalamic nucleus,nucleus of Luys +http://purl.obolibrary.org/obo/UBERON_0001906,subthalamic nucleus,nucleus of corpus luysii +http://purl.obolibrary.org/obo/UBERON_0001906,subthalamic nucleus,nucleus subthalamicus +http://purl.obolibrary.org/obo/UBERON_0001906,subthalamic nucleus,subthalamic nucleus (of Luys) +http://purl.obolibrary.org/obo/UBERON_0001906,subthalamic nucleus,subthalamic nucleus of Luys +http://purl.obolibrary.org/obo/UBERON_0001907,zona incerta,nucleus of the zona incerta +http://purl.obolibrary.org/obo/UBERON_0001907,zona incerta,zona incerta proper +http://purl.obolibrary.org/obo/UBERON_0001908,optic tract,optic lemniscus +http://purl.obolibrary.org/obo/UBERON_0001909,habenular commissure,commissura habenularum +http://purl.obolibrary.org/obo/UBERON_0001909,habenular commissure,commissure habenularum +http://purl.obolibrary.org/obo/UBERON_0001910,medial forebrain bundle,medial forebrain fasciculus +http://purl.obolibrary.org/obo/UBERON_0001910,medial forebrain bundle,telencephalic medial fasciculus +http://purl.obolibrary.org/obo/UBERON_0001911,mammary gland,glandula mammaria +http://purl.obolibrary.org/obo/UBERON_0001911,mammary gland,lactiferous gland +http://purl.obolibrary.org/obo/UBERON_0001912,lobule of mammary gland,acinus of mammary gland +http://purl.obolibrary.org/obo/UBERON_0001912,lobule of mammary gland,lactiferous acinus +http://purl.obolibrary.org/obo/UBERON_0001912,lobule of mammary gland,lactiferous gland lobule +http://purl.obolibrary.org/obo/UBERON_0001912,lobule of mammary gland,lactiferous lobule +http://purl.obolibrary.org/obo/UBERON_0001912,lobule of mammary gland,lobule of lactiferous gland +http://purl.obolibrary.org/obo/UBERON_0001912,lobule of mammary gland,lobule of mammary gland +http://purl.obolibrary.org/obo/UBERON_0001912,lobule of mammary gland,mammary acinus +http://purl.obolibrary.org/obo/UBERON_0001912,lobule of mammary gland,mammary gland lobule +http://purl.obolibrary.org/obo/UBERON_0001913,milk,mammary gland milk +http://purl.obolibrary.org/obo/UBERON_0001914,colostrum, +http://purl.obolibrary.org/obo/UBERON_0001915,endothelium of capillary,blood capillary endothelium +http://purl.obolibrary.org/obo/UBERON_0001915,endothelium of capillary,capillary endothelium +http://purl.obolibrary.org/obo/UBERON_0001915,endothelium of capillary,capillary vessel endothelium +http://purl.obolibrary.org/obo/UBERON_0001915,endothelium of capillary,endothelium of blood capillary +http://purl.obolibrary.org/obo/UBERON_0001915,endothelium of capillary,endothelium of capillary vessel +http://purl.obolibrary.org/obo/UBERON_0001916,endothelium of arteriole,arteriole endothelium +http://purl.obolibrary.org/obo/UBERON_0001917,endothelium of artery,arterial endothelium +http://purl.obolibrary.org/obo/UBERON_0001917,endothelium of artery,artery endothelium +http://purl.obolibrary.org/obo/UBERON_0001918,endothelium of venule,venule endothelium +http://purl.obolibrary.org/obo/UBERON_0001919,endothelium of vein,vein endothelium +http://purl.obolibrary.org/obo/UBERON_0001919,endothelium of vein,venous endothelium +http://purl.obolibrary.org/obo/UBERON_0001920,paraventricular nucleus of thalamus,nuclei paraventriculares thalami +http://purl.obolibrary.org/obo/UBERON_0001920,paraventricular nucleus of thalamus,paraventricular gray +http://purl.obolibrary.org/obo/UBERON_0001920,paraventricular nucleus of thalamus,paraventricular nuclei of thalamus +http://purl.obolibrary.org/obo/UBERON_0001920,paraventricular nucleus of thalamus,paraventricular thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0001921,reuniens nucleus,medioventral nucleus +http://purl.obolibrary.org/obo/UBERON_0001921,reuniens nucleus,nucleus reuniens +http://purl.obolibrary.org/obo/UBERON_0001921,reuniens nucleus,reuniens thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0001922,parafascicular nucleus,nuclei parafasciculares thalami +http://purl.obolibrary.org/obo/UBERON_0001922,parafascicular nucleus,nucleus parafascicularis +http://purl.obolibrary.org/obo/UBERON_0001922,parafascicular nucleus,nucleus parafascicularis (Hassler) +http://purl.obolibrary.org/obo/UBERON_0001922,parafascicular nucleus,nucleus parafascicularis thalami +http://purl.obolibrary.org/obo/UBERON_0001922,parafascicular nucleus,parafascicular nucleus (vogt) +http://purl.obolibrary.org/obo/UBERON_0001922,parafascicular nucleus,parafascicular nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0001922,parafascicular nucleus,parafascicular nucleus of the thalamus +http://purl.obolibrary.org/obo/UBERON_0001922,parafascicular nucleus,parafascicular thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0001923,central medial nucleus,central medial nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0001923,central medial nucleus,central medial nucleus thalamus (rioch 1928) +http://purl.obolibrary.org/obo/UBERON_0001923,central medial nucleus,central medial thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0001923,central medial nucleus,nucleus centralis medialis +http://purl.obolibrary.org/obo/UBERON_0001923,central medial nucleus,nucleus centralis medialis thalami +http://purl.obolibrary.org/obo/UBERON_0001924,paracentral nucleus,nucleus centralis lateralis superior (kusama) +http://purl.obolibrary.org/obo/UBERON_0001924,paracentral nucleus,nucleus paracentral +http://purl.obolibrary.org/obo/UBERON_0001924,paracentral nucleus,nucleus paracentral thalami +http://purl.obolibrary.org/obo/UBERON_0001924,paracentral nucleus,nucleus paracentralis thalami +http://purl.obolibrary.org/obo/UBERON_0001924,paracentral nucleus,paracentral nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0001924,paracentral nucleus,paracentral nucleus thalamus (gurdjian 1927) +http://purl.obolibrary.org/obo/UBERON_0001924,paracentral nucleus,paracentral thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0001925,ventral lateral nucleus of thalamus,lateral ventral nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0001925,ventral lateral nucleus of thalamus,nuclei ventrales laterales thalami +http://purl.obolibrary.org/obo/UBERON_0001925,ventral lateral nucleus of thalamus,nucleus ventralis intermedius +http://purl.obolibrary.org/obo/UBERON_0001925,ventral lateral nucleus of thalamus,nucleus ventralis lateralis +http://purl.obolibrary.org/obo/UBERON_0001925,ventral lateral nucleus of thalamus,nucleus ventralis lateralis thalami +http://purl.obolibrary.org/obo/UBERON_0001925,ventral lateral nucleus of thalamus,nucleus ventralis thalami lateralis +http://purl.obolibrary.org/obo/UBERON_0001925,ventral lateral nucleus of thalamus,nucleus ventrolateralis thalami +http://purl.obolibrary.org/obo/UBERON_0001925,ventral lateral nucleus of thalamus,ventral lateral complex of thalamus +http://purl.obolibrary.org/obo/UBERON_0001925,ventral lateral nucleus of thalamus,ventral lateral nucleus +http://purl.obolibrary.org/obo/UBERON_0001925,ventral lateral nucleus of thalamus,ventral lateral nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0001925,ventral lateral nucleus of thalamus,ventral lateral thalamic nuclei +http://purl.obolibrary.org/obo/UBERON_0001925,ventral lateral nucleus of thalamus,ventral lateral thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0001925,ventral lateral nucleus of thalamus,ventrolateral thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0001926,lateral geniculate body,LGB +http://purl.obolibrary.org/obo/UBERON_0001926,lateral geniculate body,LGN +http://purl.obolibrary.org/obo/UBERON_0001926,lateral geniculate body,corpus geniculatum externum +http://purl.obolibrary.org/obo/UBERON_0001926,lateral geniculate body,corpus geniculatum laterale +http://purl.obolibrary.org/obo/UBERON_0001926,lateral geniculate body,corpus geniculatum laterales +http://purl.obolibrary.org/obo/UBERON_0001926,lateral geniculate body,corpus geniculatus lateralis +http://purl.obolibrary.org/obo/UBERON_0001926,lateral geniculate body,external geniculate body +http://purl.obolibrary.org/obo/UBERON_0001926,lateral geniculate body,lateral geniculate complex +http://purl.obolibrary.org/obo/UBERON_0001926,lateral geniculate body,lateral geniculate nucleus +http://purl.obolibrary.org/obo/UBERON_0001926,lateral geniculate body,nucleus corporis geniculati lateralis +http://purl.obolibrary.org/obo/UBERON_0001926,lateral geniculate body,nucleus geniculatus lateralis +http://purl.obolibrary.org/obo/UBERON_0001927,medial geniculate body,MGB +http://purl.obolibrary.org/obo/UBERON_0001927,medial geniculate body,MGN +http://purl.obolibrary.org/obo/UBERON_0001927,medial geniculate body,corpus geniculatum mediale +http://purl.obolibrary.org/obo/UBERON_0001927,medial geniculate body,corpus geniculatus medialis +http://purl.obolibrary.org/obo/UBERON_0001927,medial geniculate body,internal geniculate body +http://purl.obolibrary.org/obo/UBERON_0001927,medial geniculate body,medial geniculate complex +http://purl.obolibrary.org/obo/UBERON_0001927,medial geniculate body,medial geniculate complex of dorsal thalamus +http://purl.obolibrary.org/obo/UBERON_0001927,medial geniculate body,medial geniculate nuclei +http://purl.obolibrary.org/obo/UBERON_0001927,medial geniculate body,medial geniculate nucleus +http://purl.obolibrary.org/obo/UBERON_0001927,medial geniculate body,nuclei corporis geniculati medialis +http://purl.obolibrary.org/obo/UBERON_0001927,medial geniculate body,nucleus corporis geniculati medialis +http://purl.obolibrary.org/obo/UBERON_0001927,medial geniculate body,nucleus geniculatus medialis +http://purl.obolibrary.org/obo/UBERON_0001928,preoptic area,POA +http://purl.obolibrary.org/obo/UBERON_0001928,preoptic area,area hypothalamica rostralis +http://purl.obolibrary.org/obo/UBERON_0001928,preoptic area,area praeoptica +http://purl.obolibrary.org/obo/UBERON_0001928,preoptic area,area preoptica +http://purl.obolibrary.org/obo/UBERON_0001928,preoptic area,nuclei preoptici +http://purl.obolibrary.org/obo/UBERON_0001928,preoptic area,preoptic hypothalamic area +http://purl.obolibrary.org/obo/UBERON_0001928,preoptic area,preoptic hypothalamic region +http://purl.obolibrary.org/obo/UBERON_0001928,preoptic area,preoptic nuclei +http://purl.obolibrary.org/obo/UBERON_0001928,preoptic area,preoptic region +http://purl.obolibrary.org/obo/UBERON_0001928,preoptic area,preoptic region of hypothalamus +http://purl.obolibrary.org/obo/UBERON_0001928,preoptic area,regio hypothalamica anterior +http://purl.obolibrary.org/obo/UBERON_0001929,supraoptic nucleus,nucleus supraopticus +http://purl.obolibrary.org/obo/UBERON_0001929,supraoptic nucleus,supra-optic nucleus +http://purl.obolibrary.org/obo/UBERON_0001929,supraoptic nucleus,supraoptic nucleus of hypothalamus +http://purl.obolibrary.org/obo/UBERON_0001930,paraventricular nucleus of hypothalamus,Pa +http://purl.obolibrary.org/obo/UBERON_0001930,paraventricular nucleus of hypothalamus,filiform nucleus +http://purl.obolibrary.org/obo/UBERON_0001930,paraventricular nucleus of hypothalamus,nuclei paraventriculares +http://purl.obolibrary.org/obo/UBERON_0001930,paraventricular nucleus of hypothalamus,nuclei paraventricularis hypothalami +http://purl.obolibrary.org/obo/UBERON_0001930,paraventricular nucleus of hypothalamus,nucleus filiformis +http://purl.obolibrary.org/obo/UBERON_0001930,paraventricular nucleus of hypothalamus,nucleus hypothalami filiformis +http://purl.obolibrary.org/obo/UBERON_0001930,paraventricular nucleus of hypothalamus,nucleus hypothalami paraventricularis +http://purl.obolibrary.org/obo/UBERON_0001930,paraventricular nucleus of hypothalamus,nucleus paraventricularis hypothalami +http://purl.obolibrary.org/obo/UBERON_0001930,paraventricular nucleus of hypothalamus,paraventricular hypothalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0001930,paraventricular nucleus of hypothalamus,paraventricular nucleus +http://purl.obolibrary.org/obo/UBERON_0001930,paraventricular nucleus of hypothalamus,paraventricular nucleus hypothalamus (Malone) +http://purl.obolibrary.org/obo/UBERON_0001930,paraventricular nucleus of hypothalamus,paraventricular nucleus of the hypothalamus +http://purl.obolibrary.org/obo/UBERON_0001930,paraventricular nucleus of hypothalamus,parvocellular hypothalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0001930,paraventricular nucleus of hypothalamus,subcommissural nucleus (Ziehen) +http://purl.obolibrary.org/obo/UBERON_0001931,lateral preoptic nucleus,LPO +http://purl.obolibrary.org/obo/UBERON_0001931,lateral preoptic nucleus,area praeoptica lateralis +http://purl.obolibrary.org/obo/UBERON_0001931,lateral preoptic nucleus,area preoptica lateralis +http://purl.obolibrary.org/obo/UBERON_0001931,lateral preoptic nucleus,lateral preoptic area +http://purl.obolibrary.org/obo/UBERON_0001931,lateral preoptic nucleus,lateral preoptic hypothalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0001931,lateral preoptic nucleus,nucleus praeopticus lateralis +http://purl.obolibrary.org/obo/UBERON_0001931,lateral preoptic nucleus,nucleus preopticus lateralis +http://purl.obolibrary.org/obo/UBERON_0001932,arcuate nucleus of hypothalamus,arcuate hypothalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0001932,arcuate nucleus of hypothalamus,arcuate nucleus +http://purl.obolibrary.org/obo/UBERON_0001932,arcuate nucleus of hypothalamus,arcuate nucleus-2 +http://purl.obolibrary.org/obo/UBERON_0001932,arcuate nucleus of hypothalamus,arcuate periventricular nucleus +http://purl.obolibrary.org/obo/UBERON_0001932,arcuate nucleus of hypothalamus,infundibular hypothalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0001932,arcuate nucleus of hypothalamus,infundibular nucleus +http://purl.obolibrary.org/obo/UBERON_0001932,arcuate nucleus of hypothalamus,infundibular periventricular nucleus +http://purl.obolibrary.org/obo/UBERON_0001932,arcuate nucleus of hypothalamus,nucleus arcuatus +http://purl.obolibrary.org/obo/UBERON_0001933,retrochiasmatic area,retrochiasmatic region +http://purl.obolibrary.org/obo/UBERON_0001934,dorsomedial nucleus of hypothalamus,dorsomedial hypothalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0001934,dorsomedial nucleus of hypothalamus,dorsomedial nucleus of dorsal hypothalamus +http://purl.obolibrary.org/obo/UBERON_0001934,dorsomedial nucleus of hypothalamus,dorsomedial nucleus of intermediate hypothalamus +http://purl.obolibrary.org/obo/UBERON_0001935,ventromedial nucleus of hypothalamus,ventromedial hypothalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0001936,tuberomammillary nucleus,caudal magnocellular nucleus +http://purl.obolibrary.org/obo/UBERON_0001936,tuberomammillary nucleus,mammilloinfundibular nucleus +http://purl.obolibrary.org/obo/UBERON_0001936,tuberomammillary nucleus,mammiloinfundibular nucleus +http://purl.obolibrary.org/obo/UBERON_0001936,tuberomammillary nucleus,tuberomammillary hypothalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0001936,tuberomammillary nucleus,tuberomammillary nucleus +http://purl.obolibrary.org/obo/UBERON_0001937,lateral hypothalamic nucleus,nucleus hypothalamicus lateralis +http://purl.obolibrary.org/obo/UBERON_0001938,lateral mammillary nucleus,lateral mammillary hypothalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0001938,lateral mammillary nucleus,lateral nucleus of mammillary body +http://purl.obolibrary.org/obo/UBERON_0001938,lateral mammillary nucleus,nucleus mammillaris lateralis +http://purl.obolibrary.org/obo/UBERON_0001939,medial mammillary nucleus,internal mammillary nucleus +http://purl.obolibrary.org/obo/UBERON_0001939,medial mammillary nucleus,medial nucleus of mammillary body +http://purl.obolibrary.org/obo/UBERON_0001939,medial mammillary nucleus,nucleus mammillaris medialis +http://purl.obolibrary.org/obo/UBERON_0001940,supramammillary nucleus, +http://purl.obolibrary.org/obo/UBERON_0001941,lateral habenular nucleus,lateral habenula +http://purl.obolibrary.org/obo/UBERON_0001941,lateral habenular nucleus,nucleus habenulae lateralis +http://purl.obolibrary.org/obo/UBERON_0001941,lateral habenular nucleus,nucleus habenularis lateralis +http://purl.obolibrary.org/obo/UBERON_0001941,lateral habenular nucleus,nucleus habenularis lateralis epithalami +http://purl.obolibrary.org/obo/UBERON_0001942,medial habenular nucleus,medial habenula +http://purl.obolibrary.org/obo/UBERON_0001942,medial habenular nucleus,nucleus habenulae medialis +http://purl.obolibrary.org/obo/UBERON_0001942,medial habenular nucleus,nucleus habenularis medialis +http://purl.obolibrary.org/obo/UBERON_0001942,medial habenular nucleus,nucleus habenularis medialis (Hassler) +http://purl.obolibrary.org/obo/UBERON_0001942,medial habenular nucleus,nucleus habenularis medialis epithalami +http://purl.obolibrary.org/obo/UBERON_0001943,midbrain tegmentum,MTg +http://purl.obolibrary.org/obo/UBERON_0001943,midbrain tegmentum,mesencephalic tegmentum +http://purl.obolibrary.org/obo/UBERON_0001943,midbrain tegmentum,tegmentum +http://purl.obolibrary.org/obo/UBERON_0001943,midbrain tegmentum,tegmentum mesencephali +http://purl.obolibrary.org/obo/UBERON_0001943,midbrain tegmentum,tegmentum mesencephalicum +http://purl.obolibrary.org/obo/UBERON_0001943,midbrain tegmentum,tegmentum of midbrain +http://purl.obolibrary.org/obo/UBERON_0001944,pretectal region,area praetectalis +http://purl.obolibrary.org/obo/UBERON_0001944,pretectal region,area pretectalis +http://purl.obolibrary.org/obo/UBERON_0001944,pretectal region,nuclei pretectales +http://purl.obolibrary.org/obo/UBERON_0001944,pretectal region,nucleus praetectalis +http://purl.obolibrary.org/obo/UBERON_0001944,pretectal region,praetectum +http://purl.obolibrary.org/obo/UBERON_0001944,pretectal region,pretectal area +http://purl.obolibrary.org/obo/UBERON_0001944,pretectal region,pretectal nuclei +http://purl.obolibrary.org/obo/UBERON_0001944,pretectal region,pretectum +http://purl.obolibrary.org/obo/UBERON_0001944,pretectal region,regio pretectalis +http://purl.obolibrary.org/obo/UBERON_0001945,superior colliculus,anterior colliculus +http://purl.obolibrary.org/obo/UBERON_0001945,superior colliculus,anterior corpus quadrigeminum +http://purl.obolibrary.org/obo/UBERON_0001945,superior colliculus,colliculus bigeminalis oralis +http://purl.obolibrary.org/obo/UBERON_0001945,superior colliculus,colliculus cranialis +http://purl.obolibrary.org/obo/UBERON_0001945,superior colliculus,colliculus rostralis +http://purl.obolibrary.org/obo/UBERON_0001945,superior colliculus,colliculus superior +http://purl.obolibrary.org/obo/UBERON_0001945,superior colliculus,corpora bigemina +http://purl.obolibrary.org/obo/UBERON_0001945,superior colliculus,corpus quadrigeminum superius +http://purl.obolibrary.org/obo/UBERON_0001945,superior colliculus,cranial colliculus +http://purl.obolibrary.org/obo/UBERON_0001945,superior colliculus,dorsal midbrain +http://purl.obolibrary.org/obo/UBERON_0001945,superior colliculus,layers of the superior colliculus +http://purl.obolibrary.org/obo/UBERON_0001945,superior colliculus,lobus opticus +http://purl.obolibrary.org/obo/UBERON_0001945,superior colliculus,nates +http://purl.obolibrary.org/obo/UBERON_0001945,superior colliculus,optic lobe +http://purl.obolibrary.org/obo/UBERON_0001945,superior colliculus,optic tectum +http://purl.obolibrary.org/obo/UBERON_0001945,superior colliculus,strata (grisea et alba) colliculi cranialis +http://purl.obolibrary.org/obo/UBERON_0001945,superior colliculus,strata (grisea et alba) colliculi superioris +http://purl.obolibrary.org/obo/UBERON_0001945,superior colliculus,tectal lobe +http://purl.obolibrary.org/obo/UBERON_0001945,superior colliculus,tectum +http://purl.obolibrary.org/obo/UBERON_0001945,superior colliculus,tectum opticum +http://purl.obolibrary.org/obo/UBERON_0001946,inferior colliculus,caudal colliculus +http://purl.obolibrary.org/obo/UBERON_0001946,inferior colliculus,colliculus caudalis +http://purl.obolibrary.org/obo/UBERON_0001946,inferior colliculus,colliculus inferior +http://purl.obolibrary.org/obo/UBERON_0001946,inferior colliculus,corpus bigeminalis caudalis +http://purl.obolibrary.org/obo/UBERON_0001946,inferior colliculus,corpus bigeminum posterioris +http://purl.obolibrary.org/obo/UBERON_0001946,inferior colliculus,corpus quadrigeminum inferius +http://purl.obolibrary.org/obo/UBERON_0001946,inferior colliculus,inferior colliculi +http://purl.obolibrary.org/obo/UBERON_0001946,inferior colliculus,posterior colliculus +http://purl.obolibrary.org/obo/UBERON_0001946,inferior colliculus,posterior corpus quadrigeminum +http://purl.obolibrary.org/obo/UBERON_0001947,red nucleus,R +http://purl.obolibrary.org/obo/UBERON_0001947,red nucleus,nucleus rotundus subthalamo-peduncularis +http://purl.obolibrary.org/obo/UBERON_0001947,red nucleus,nucleus ruber +http://purl.obolibrary.org/obo/UBERON_0001947,red nucleus,nucleus ruber tegmenti +http://purl.obolibrary.org/obo/UBERON_0001947,red nucleus,nucleus ruber tegmenti (Stilling) +http://purl.obolibrary.org/obo/UBERON_0001947,red nucleus,red nucleus (Burdach) +http://purl.obolibrary.org/obo/UBERON_0001948,Regional part of spinal cord,spinal cord part +http://purl.obolibrary.org/obo/UBERON_0001948,regional part of spinal cord,spinal cord part +http://purl.obolibrary.org/obo/UBERON_0001949,gingival epithelium,epithelial tissue of gingiva +http://purl.obolibrary.org/obo/UBERON_0001949,gingival epithelium,epithelium of gingiva +http://purl.obolibrary.org/obo/UBERON_0001949,gingival epithelium,gingiva epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0001949,gingival epithelium,gingiva epithelium +http://purl.obolibrary.org/obo/UBERON_0001950,neocortex,cerebral neocortex +http://purl.obolibrary.org/obo/UBERON_0001950,neocortex,homogenetic cortex +http://purl.obolibrary.org/obo/UBERON_0001950,neocortex,homotypical cortex +http://purl.obolibrary.org/obo/UBERON_0001950,neocortex,iso-cortex +http://purl.obolibrary.org/obo/UBERON_0001950,neocortex,isocortex +http://purl.obolibrary.org/obo/UBERON_0001950,neocortex,isocortex (sensu lato) +http://purl.obolibrary.org/obo/UBERON_0001950,neocortex,neocortex (isocortex) +http://purl.obolibrary.org/obo/UBERON_0001950,neocortex,neopallial cortex +http://purl.obolibrary.org/obo/UBERON_0001950,neocortex,neopallium +http://purl.obolibrary.org/obo/UBERON_0001950,neocortex,nonolfactory cortex +http://purl.obolibrary.org/obo/UBERON_0001950,neocortex,nucleus hypoglossalis +http://purl.obolibrary.org/obo/UBERON_0001951,epithelium of nasopharynx,epithelial tissue of nasal part of pharynx +http://purl.obolibrary.org/obo/UBERON_0001951,epithelium of nasopharynx,epithelial tissue of nasopharynx +http://purl.obolibrary.org/obo/UBERON_0001951,epithelium of nasopharynx,epithelial tissue of rhinopharynx +http://purl.obolibrary.org/obo/UBERON_0001951,epithelium of nasopharynx,epithelium of nasal part of pharynx +http://purl.obolibrary.org/obo/UBERON_0001951,epithelium of nasopharynx,epithelium of rhinopharynx +http://purl.obolibrary.org/obo/UBERON_0001951,epithelium of nasopharynx,nasal part of pharynx epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0001951,epithelium of nasopharynx,nasal part of pharynx epithelium +http://purl.obolibrary.org/obo/UBERON_0001951,epithelium of nasopharynx,nasopharynx epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0001951,epithelium of nasopharynx,nasopharynx epithelium +http://purl.obolibrary.org/obo/UBERON_0001951,epithelium of nasopharynx,rhinopharynx epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0001951,epithelium of nasopharynx,rhinopharynx epithelium +http://purl.obolibrary.org/obo/UBERON_0001952,epithelium of oropharynx,oropharyngeal epithelium +http://purl.obolibrary.org/obo/UBERON_0001952,epithelium of oropharynx,oropharynx epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0001952,epithelium of oropharynx,oropharynx epithelium +http://purl.obolibrary.org/obo/UBERON_0001953,presubiculum,presubicular cortex (presubiculum) +http://purl.obolibrary.org/obo/UBERON_0001953,presubiculum,presubiculum (Cajal) +http://purl.obolibrary.org/obo/UBERON_0001954,Ammon's horn,Ammon horn fields +http://purl.obolibrary.org/obo/UBERON_0001954,Ammon's horn,Ammon's horn +http://purl.obolibrary.org/obo/UBERON_0001954,Ammon's horn,Ammons horn +http://purl.obolibrary.org/obo/UBERON_0001954,Ammon's horn,ammon gyrus +http://purl.obolibrary.org/obo/UBERON_0001954,Ammon's horn,ammon horn +http://purl.obolibrary.org/obo/UBERON_0001954,Ammon's horn,cornu ammonis +http://purl.obolibrary.org/obo/UBERON_0001954,Ammon's horn,hippocampus +http://purl.obolibrary.org/obo/UBERON_0001954,Ammon's horn,hippocampus major +http://purl.obolibrary.org/obo/UBERON_0001954,Ammon's horn,hippocampus proper +http://purl.obolibrary.org/obo/UBERON_0001954,Ammon's horn,hippocampus proprius +http://purl.obolibrary.org/obo/UBERON_0001955,epithelium of respiratory bronchiole,bronchiolus respiratorius epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0001955,epithelium of respiratory bronchiole,bronchiolus respiratorius epithelium +http://purl.obolibrary.org/obo/UBERON_0001955,epithelium of respiratory bronchiole,epithelial tissue of bronchiolus respiratorius +http://purl.obolibrary.org/obo/UBERON_0001955,epithelium of respiratory bronchiole,epithelial tissue of respiratory bronchiole +http://purl.obolibrary.org/obo/UBERON_0001955,epithelium of respiratory bronchiole,epithelium of bronchiolus respiratorius +http://purl.obolibrary.org/obo/UBERON_0001955,epithelium of respiratory bronchiole,respiratory bronchiole epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0001955,epithelium of respiratory bronchiole,respiratory bronchiole epithelium +http://purl.obolibrary.org/obo/UBERON_0001956,cartilage of bronchus,bronchi cartilage +http://purl.obolibrary.org/obo/UBERON_0001956,cartilage of bronchus,bronchial cartilage +http://purl.obolibrary.org/obo/UBERON_0001956,cartilage of bronchus,bronchial cartilage ring +http://purl.obolibrary.org/obo/UBERON_0001956,cartilage of bronchus,bronchial trunk cartilage +http://purl.obolibrary.org/obo/UBERON_0001956,cartilage of bronchus,bronchus cartilage +http://purl.obolibrary.org/obo/UBERON_0001956,cartilage of bronchus,cartilage of bronchi +http://purl.obolibrary.org/obo/UBERON_0001956,cartilage of bronchus,cartilage of bronchial trunk +http://purl.obolibrary.org/obo/UBERON_0001956,cartilage of bronchus,cartilagines bronchiales +http://purl.obolibrary.org/obo/UBERON_0001957,submucosa of bronchus,bronchi submucosa +http://purl.obolibrary.org/obo/UBERON_0001957,submucosa of bronchus,bronchial submucosa +http://purl.obolibrary.org/obo/UBERON_0001957,submucosa of bronchus,bronchial trunk submucosa +http://purl.obolibrary.org/obo/UBERON_0001957,submucosa of bronchus,bronchus submucosa +http://purl.obolibrary.org/obo/UBERON_0001957,submucosa of bronchus,submucosa of bronchi +http://purl.obolibrary.org/obo/UBERON_0001957,submucosa of bronchus,submucosa of bronchial trunk +http://purl.obolibrary.org/obo/UBERON_0001957,submucosa of bronchus,tela submucosa bronchi +http://purl.obolibrary.org/obo/UBERON_0001958,terminal bronchiole epithelium,bronchiolus terminalis epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0001958,terminal bronchiole epithelium,bronchiolus terminalis epithelium +http://purl.obolibrary.org/obo/UBERON_0001958,terminal bronchiole epithelium,epithelial tissue of bronchiolus terminalis +http://purl.obolibrary.org/obo/UBERON_0001958,terminal bronchiole epithelium,epithelial tissue of terminal bronchiole +http://purl.obolibrary.org/obo/UBERON_0001958,terminal bronchiole epithelium,epithelium of bronchiolus terminalis +http://purl.obolibrary.org/obo/UBERON_0001958,terminal bronchiole epithelium,epithelium of terminal bronchiole +http://purl.obolibrary.org/obo/UBERON_0001958,terminal bronchiole epithelium,terminal bronchiole epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0001958,terminal bronchiole epithelium,terminal bronchiole epithelium +http://purl.obolibrary.org/obo/UBERON_0001959,white pulp of spleen,noduli lymphoidei splenici +http://purl.obolibrary.org/obo/UBERON_0001959,white pulp of spleen,pulpa alba +http://purl.obolibrary.org/obo/UBERON_0001959,white pulp of spleen,spleen white pulp +http://purl.obolibrary.org/obo/UBERON_0001959,white pulp of spleen,splenic white pulp +http://purl.obolibrary.org/obo/UBERON_0001959,white pulp of spleen,white pulp +http://purl.obolibrary.org/obo/UBERON_0001960,periarterial lymphatic sheath,PALS +http://purl.obolibrary.org/obo/UBERON_0001960,periarterial lymphatic sheath,T cell domain of the splenic white pulp +http://purl.obolibrary.org/obo/UBERON_0001960,periarterial lymphatic sheath,periarterial lymphoid sheath +http://purl.obolibrary.org/obo/UBERON_0001960,periarterial lymphatic sheath,periarteriolar sheath +http://purl.obolibrary.org/obo/UBERON_0001960,periarterial lymphatic sheath,spleen periarteriolar lymphatic sheath +http://purl.obolibrary.org/obo/UBERON_0001960,periarterial lymphatic sheath,splenic periarteriolar lymphoid sheath +http://purl.obolibrary.org/obo/UBERON_0001961,mucosa-associated lymphoid tissue,MALT +http://purl.obolibrary.org/obo/UBERON_0001961,mucosa-associated lymphoid tissue,epithelio-lymphoid tissue +http://purl.obolibrary.org/obo/UBERON_0001961,mucosa-associated lymphoid tissue,mucosa associated lymphatic tissue +http://purl.obolibrary.org/obo/UBERON_0001961,mucosa-associated lymphoid tissue,mucosa associated lymphoid tissue +http://purl.obolibrary.org/obo/UBERON_0001961,mucosa-associated lymphoid tissue,mucosa-associated lymphoid tissue +http://purl.obolibrary.org/obo/UBERON_0001961,mucosa-associated lymphoid tissue,mucosal-associated lymphatic tissue +http://purl.obolibrary.org/obo/UBERON_0001961,mucosa-associated lymphoid tissue,mucosal-associated lymphoid tissue +http://purl.obolibrary.org/obo/UBERON_0001962,gut-associated lymphoid tissue,GALT +http://purl.obolibrary.org/obo/UBERON_0001962,gut-associated lymphoid tissue,gut associated lymphoid tissue +http://purl.obolibrary.org/obo/UBERON_0001963,bronchial-associated lymphoid tissue,bronchus associated lymphoid tissue +http://purl.obolibrary.org/obo/UBERON_0001964,least splanchnic nerve,least thoracic splanchnic nerve +http://purl.obolibrary.org/obo/UBERON_0001964,least splanchnic nerve,lowest splanchnic nerve +http://purl.obolibrary.org/obo/UBERON_0001964,least splanchnic nerve,nervus splanchnicus imus +http://purl.obolibrary.org/obo/UBERON_0001964,least splanchnic nerve,ramus renalis nervus splanchnici minoris +http://purl.obolibrary.org/obo/UBERON_0001964,least splanchnic nerve,renal branch of lesser splanchnic nerve +http://purl.obolibrary.org/obo/UBERON_0001964,least splanchnic nerve,renal nerve +http://purl.obolibrary.org/obo/UBERON_0001965,substantia nigra pars compacta,SNC +http://purl.obolibrary.org/obo/UBERON_0001965,substantia nigra pars compacta,SNpc +http://purl.obolibrary.org/obo/UBERON_0001965,substantia nigra pars compacta,compact part of substantia nigra +http://purl.obolibrary.org/obo/UBERON_0001965,substantia nigra pars compacta,"nucleus substantiae nigrae, pars compacta" +http://purl.obolibrary.org/obo/UBERON_0001965,substantia nigra pars compacta,pars compacta +http://purl.obolibrary.org/obo/UBERON_0001965,substantia nigra pars compacta,pars compacta of substantia nigra +http://purl.obolibrary.org/obo/UBERON_0001965,substantia nigra pars compacta,pars compacta substantiae nigrae +http://purl.obolibrary.org/obo/UBERON_0001965,substantia nigra pars compacta,substantia nigra compact part +http://purl.obolibrary.org/obo/UBERON_0001965,substantia nigra pars compacta,substantia nigra compacta +http://purl.obolibrary.org/obo/UBERON_0001965,substantia nigra pars compacta,"substantia nigra, compact division" +http://purl.obolibrary.org/obo/UBERON_0001965,substantia nigra pars compacta,"substantia nigra, compact part" +http://purl.obolibrary.org/obo/UBERON_0001965,substantia nigra pars compacta,"substantia nigra, pars compacta" +http://purl.obolibrary.org/obo/UBERON_0001966,substantia nigra pars reticulata,SNPR +http://purl.obolibrary.org/obo/UBERON_0001966,substantia nigra pars reticulata,SNR +http://purl.obolibrary.org/obo/UBERON_0001966,substantia nigra pars reticulata,"nucleus substantiae nigrae, pars compacta" +http://purl.obolibrary.org/obo/UBERON_0001966,substantia nigra pars reticulata,"nucleus substantiae nigrae, pars reticularis" +http://purl.obolibrary.org/obo/UBERON_0001966,substantia nigra pars reticulata,pars compacta of substantia nigra +http://purl.obolibrary.org/obo/UBERON_0001966,substantia nigra pars reticulata,pars reticularis +http://purl.obolibrary.org/obo/UBERON_0001966,substantia nigra pars reticulata,pars reticularis substantiae nigrae +http://purl.obolibrary.org/obo/UBERON_0001966,substantia nigra pars reticulata,pars reticulata +http://purl.obolibrary.org/obo/UBERON_0001966,substantia nigra pars reticulata,reticular part of substantia nigra +http://purl.obolibrary.org/obo/UBERON_0001966,substantia nigra pars reticulata,substantia nigra reticular part +http://purl.obolibrary.org/obo/UBERON_0001966,substantia nigra pars reticulata,"substantia nigra, pars compacta" +http://purl.obolibrary.org/obo/UBERON_0001966,substantia nigra pars reticulata,"substantia nigra, pars diffusa" +http://purl.obolibrary.org/obo/UBERON_0001966,substantia nigra pars reticulata,"substantia nigra, pars reticulata" +http://purl.obolibrary.org/obo/UBERON_0001966,substantia nigra pars reticulata,"substantia nigra, reticular division" +http://purl.obolibrary.org/obo/UBERON_0001966,substantia nigra pars reticulata,"substantia nigra, reticular part" +http://purl.obolibrary.org/obo/UBERON_0001967,reticular lamina of epithelium,fibroreticular lamina +http://purl.obolibrary.org/obo/UBERON_0001967,reticular lamina of epithelium,lamina fibroreticularis +http://purl.obolibrary.org/obo/UBERON_0001968,semen, +http://purl.obolibrary.org/obo/UBERON_0001969,blood plasma,blood plasm +http://purl.obolibrary.org/obo/UBERON_0001969,blood plasma,portion of blood plasma +http://purl.obolibrary.org/obo/UBERON_0001970,bile, +http://purl.obolibrary.org/obo/UBERON_0001971,gastric juice,stomach secretion +http://purl.obolibrary.org/obo/UBERON_0001972,submucosa of esophagus,esophageal submucosa +http://purl.obolibrary.org/obo/UBERON_0001972,submucosa of esophagus,esophagus submucosa +http://purl.obolibrary.org/obo/UBERON_0001972,submucosa of esophagus,gullet submucosa +http://purl.obolibrary.org/obo/UBERON_0001972,submucosa of esophagus,oesophagus submucosa +http://purl.obolibrary.org/obo/UBERON_0001972,submucosa of esophagus,submucosa of esophagus +http://purl.obolibrary.org/obo/UBERON_0001972,submucosa of esophagus,submucosa of gullet +http://purl.obolibrary.org/obo/UBERON_0001972,submucosa of esophagus,submucosa of oesophagus +http://purl.obolibrary.org/obo/UBERON_0001972,submucosa of esophagus,tela submucosa (oesophagus) +http://purl.obolibrary.org/obo/UBERON_0001972,submucosa of esophagus,tela submucosa esophagi +http://purl.obolibrary.org/obo/UBERON_0001972,submucosa of esophagus,tela submucosa oesophageae +http://purl.obolibrary.org/obo/UBERON_0001972,submucosa of esophagus,tela submucosa of esophagus +http://purl.obolibrary.org/obo/UBERON_0001974,lamina propria of esophagus,esophagus lamina propria +http://purl.obolibrary.org/obo/UBERON_0001974,lamina propria of esophagus,esophagus lamina propria mucosa +http://purl.obolibrary.org/obo/UBERON_0001974,lamina propria of esophagus,esophagus lamina propria mucosae +http://purl.obolibrary.org/obo/UBERON_0001974,lamina propria of esophagus,gullet lamina propria +http://purl.obolibrary.org/obo/UBERON_0001974,lamina propria of esophagus,gullet lamina propria mucosa +http://purl.obolibrary.org/obo/UBERON_0001974,lamina propria of esophagus,gullet lamina propria mucosae +http://purl.obolibrary.org/obo/UBERON_0001974,lamina propria of esophagus,lamina propria mucosa of esophagus +http://purl.obolibrary.org/obo/UBERON_0001974,lamina propria of esophagus,lamina propria mucosa of gullet +http://purl.obolibrary.org/obo/UBERON_0001974,lamina propria of esophagus,lamina propria mucosa of oesophagus +http://purl.obolibrary.org/obo/UBERON_0001974,lamina propria of esophagus,lamina propria mucosae of esophagus +http://purl.obolibrary.org/obo/UBERON_0001974,lamina propria of esophagus,lamina propria mucosae of gullet +http://purl.obolibrary.org/obo/UBERON_0001974,lamina propria of esophagus,lamina propria mucosae of oesophagus +http://purl.obolibrary.org/obo/UBERON_0001974,lamina propria of esophagus,lamina propria of gullet +http://purl.obolibrary.org/obo/UBERON_0001974,lamina propria of esophagus,lamina propria of oesophagus +http://purl.obolibrary.org/obo/UBERON_0001974,lamina propria of esophagus,oesophagus lamina propria mucosa +http://purl.obolibrary.org/obo/UBERON_0001974,lamina propria of esophagus,oesophagus lamina propria mucosae +http://purl.obolibrary.org/obo/UBERON_0001975,serosa of esophagus,esophagus serosa +http://purl.obolibrary.org/obo/UBERON_0001975,serosa of esophagus,esophagus serous membrane +http://purl.obolibrary.org/obo/UBERON_0001975,serosa of esophagus,gullet serosa +http://purl.obolibrary.org/obo/UBERON_0001975,serosa of esophagus,gullet serous membrane +http://purl.obolibrary.org/obo/UBERON_0001975,serosa of esophagus,oesophagus serosa +http://purl.obolibrary.org/obo/UBERON_0001975,serosa of esophagus,oesophagus serous membrane +http://purl.obolibrary.org/obo/UBERON_0001975,serosa of esophagus,serosa of abdominal part of esophagus +http://purl.obolibrary.org/obo/UBERON_0001975,serosa of esophagus,serosa of gullet +http://purl.obolibrary.org/obo/UBERON_0001975,serosa of esophagus,serosa of oesophagus +http://purl.obolibrary.org/obo/UBERON_0001975,serosa of esophagus,serous coat of oesophagus +http://purl.obolibrary.org/obo/UBERON_0001975,serosa of esophagus,serous membrane of esophagus +http://purl.obolibrary.org/obo/UBERON_0001975,serosa of esophagus,serous membrane of gullet +http://purl.obolibrary.org/obo/UBERON_0001975,serosa of esophagus,serous membrane of oesophagus +http://purl.obolibrary.org/obo/UBERON_0001975,serosa of esophagus,tunica serosa oesophageae +http://purl.obolibrary.org/obo/UBERON_0001976,epithelium of esophagus,epithelial tissue of esophagus +http://purl.obolibrary.org/obo/UBERON_0001976,epithelium of esophagus,epithelial tissue of gullet +http://purl.obolibrary.org/obo/UBERON_0001976,epithelium of esophagus,epithelial tissue of oesophagus +http://purl.obolibrary.org/obo/UBERON_0001976,epithelium of esophagus,epithelium of gullet +http://purl.obolibrary.org/obo/UBERON_0001976,epithelium of esophagus,epithelium of oesophagus +http://purl.obolibrary.org/obo/UBERON_0001976,epithelium of esophagus,esophageal epithelium +http://purl.obolibrary.org/obo/UBERON_0001976,epithelium of esophagus,esophagus epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0001976,epithelium of esophagus,esophagus epithelium +http://purl.obolibrary.org/obo/UBERON_0001976,epithelium of esophagus,gullet epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0001976,epithelium of esophagus,gullet epithelium +http://purl.obolibrary.org/obo/UBERON_0001976,epithelium of esophagus,oesophagus epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0001977,blood serum,serum +http://purl.obolibrary.org/obo/UBERON_0001978,parenchyma of pancreas,pancreas parenchyma +http://purl.obolibrary.org/obo/UBERON_0001978,parenchyma of pancreas,pancreatic parenchyma +http://purl.obolibrary.org/obo/UBERON_0001979,venule, +http://purl.obolibrary.org/obo/UBERON_0001980,arteriole,arteriola +http://purl.obolibrary.org/obo/UBERON_0001981,blood vessel,region of vascular tree organ +http://purl.obolibrary.org/obo/UBERON_0001981,blood vessel,vas sanguineum +http://purl.obolibrary.org/obo/UBERON_0001981,blood vessel,vascular element +http://purl.obolibrary.org/obo/UBERON_0001981,blood vessel,vascular tree organ region +http://purl.obolibrary.org/obo/UBERON_0001982,capillary,blood capillary +http://purl.obolibrary.org/obo/UBERON_0001982,capillary,capillary vessel +http://purl.obolibrary.org/obo/UBERON_0001983,crypt of Lieberkuhn,Lieberkuhn crypt +http://purl.obolibrary.org/obo/UBERON_0001983,crypt of Lieberkuhn,Lieberkuhn gland +http://purl.obolibrary.org/obo/UBERON_0001983,crypt of Lieberkuhn,Lieberkuhn's gland +http://purl.obolibrary.org/obo/UBERON_0001983,crypt of Lieberkuhn,Lieberkuhn's glands +http://purl.obolibrary.org/obo/UBERON_0001983,crypt of Lieberkuhn,Lieberkühn crypt +http://purl.obolibrary.org/obo/UBERON_0001983,crypt of Lieberkuhn,crypt of Lieberkuhn +http://purl.obolibrary.org/obo/UBERON_0001983,crypt of Lieberkuhn,crypt of Lieberkühn +http://purl.obolibrary.org/obo/UBERON_0001983,crypt of Lieberkuhn,crypts of Lieberkühn +http://purl.obolibrary.org/obo/UBERON_0001983,crypt of Lieberkuhn,follicles of Lieberkühn +http://purl.obolibrary.org/obo/UBERON_0001983,crypt of Lieberkuhn,intestinal crypt +http://purl.obolibrary.org/obo/UBERON_0001983,crypt of Lieberkuhn,intestinal crypts +http://purl.obolibrary.org/obo/UBERON_0001984,crypt of Lieberkuhn of large intestine,Lieberkühn crypt of large intestine +http://purl.obolibrary.org/obo/UBERON_0001984,crypt of Lieberkuhn of large intestine,intestinal gland of large intestine +http://purl.obolibrary.org/obo/UBERON_0001984,crypt of Lieberkuhn of large intestine,large intestinal crypt of Lieberkuhn +http://purl.obolibrary.org/obo/UBERON_0001984,crypt of Lieberkuhn of large intestine,large intestine Lieberkühn crypt +http://purl.obolibrary.org/obo/UBERON_0001984,crypt of Lieberkuhn of large intestine,large intestine crypt of Lieberkuhn +http://purl.obolibrary.org/obo/UBERON_0001984,crypt of Lieberkuhn of large intestine,large intestine intestinal gland +http://purl.obolibrary.org/obo/UBERON_0001985,corneal endothelium,cornea endothelium +http://purl.obolibrary.org/obo/UBERON_0001985,corneal endothelium,endothelium of cornea +http://purl.obolibrary.org/obo/UBERON_0001986,endothelium, +http://purl.obolibrary.org/obo/UBERON_0001987,placenta,allantoic placenta +http://purl.obolibrary.org/obo/UBERON_0001987,placenta,eutherian placenta +http://purl.obolibrary.org/obo/UBERON_0001988,feces,faeces +http://purl.obolibrary.org/obo/UBERON_0001988,feces,fecal material +http://purl.obolibrary.org/obo/UBERON_0001988,feces,fecal matter +http://purl.obolibrary.org/obo/UBERON_0001988,feces,piece of shit +http://purl.obolibrary.org/obo/UBERON_0001988,feces,portion of excrement +http://purl.obolibrary.org/obo/UBERON_0001988,feces,portion of faeces +http://purl.obolibrary.org/obo/UBERON_0001988,feces,portion of fecal material +http://purl.obolibrary.org/obo/UBERON_0001988,feces,portion of fecal matter +http://purl.obolibrary.org/obo/UBERON_0001988,feces,portion of feces +http://purl.obolibrary.org/obo/UBERON_0001988,feces,portionem cacas +http://purl.obolibrary.org/obo/UBERON_0001988,feces,stool +http://purl.obolibrary.org/obo/UBERON_0001989,superior cervical ganglion,SCG +http://purl.obolibrary.org/obo/UBERON_0001989,superior cervical ganglion,ganglion cervicale superius +http://purl.obolibrary.org/obo/UBERON_0001989,superior cervical ganglion,superior cervical sympathetic ganglion +http://purl.obolibrary.org/obo/UBERON_0001989,superior cervical ganglion,superior sympathetic cervical ganglion +http://purl.obolibrary.org/obo/UBERON_0001990,middle cervical ganglion,ganglion cervicale medium +http://purl.obolibrary.org/obo/UBERON_0001990,middle cervical ganglion,middle cervical sympathetic ganglion +http://purl.obolibrary.org/obo/UBERON_0001991,cervical ganglion,cervical sympathetic ganglion +http://purl.obolibrary.org/obo/UBERON_0001992,papillary layer of dermis,corpus papillary +http://purl.obolibrary.org/obo/UBERON_0001992,papillary layer of dermis,dermis papillary layer +http://purl.obolibrary.org/obo/UBERON_0001992,papillary layer of dermis,papillary dermis +http://purl.obolibrary.org/obo/UBERON_0001992,papillary layer of dermis,papillary layer +http://purl.obolibrary.org/obo/UBERON_0001992,papillary layer of dermis,papillary layer of dermis +http://purl.obolibrary.org/obo/UBERON_0001992,papillary layer of dermis,stratum papillare +http://purl.obolibrary.org/obo/UBERON_0001992,papillary layer of dermis,stratum papillare (dermis) +http://purl.obolibrary.org/obo/UBERON_0001992,papillary layer of dermis,stratum papillare corii +http://purl.obolibrary.org/obo/UBERON_0001992,papillary layer of dermis,stratum papillare dermis +http://purl.obolibrary.org/obo/UBERON_0001992,papillary layer of dermis,superficial dermis +http://purl.obolibrary.org/obo/UBERON_0001993,reticular layer of dermis,dermis reticular layer +http://purl.obolibrary.org/obo/UBERON_0001993,reticular layer of dermis,dermis stratum reticulare +http://purl.obolibrary.org/obo/UBERON_0001993,reticular layer of dermis,reticular dermis +http://purl.obolibrary.org/obo/UBERON_0001993,reticular layer of dermis,stratum reticulare +http://purl.obolibrary.org/obo/UBERON_0001993,reticular layer of dermis,stratum reticulare dermis +http://purl.obolibrary.org/obo/UBERON_0001994,hyaline cartilage tissue,hyaline cartilage +http://purl.obolibrary.org/obo/UBERON_0001995,fibrocartilage,fibrocartilage tissue +http://purl.obolibrary.org/obo/UBERON_0001995,fibrocartilage,stratified cartilage tissue +http://purl.obolibrary.org/obo/UBERON_0001996,elastic cartilage tissue,elastic cartilage +http://purl.obolibrary.org/obo/UBERON_0001996,elastic cartilage tissue,elastic cartilage tissue +http://purl.obolibrary.org/obo/UBERON_0001996,elastic cartilage tissue,yellow elastic cartilage +http://purl.obolibrary.org/obo/UBERON_0001996,elastic cartilage tissue,yellow elastic cartilage tissue +http://purl.obolibrary.org/obo/UBERON_0001997,olfactory epithelium,MOE +http://purl.obolibrary.org/obo/UBERON_0001997,olfactory epithelium,main olfactory epithelium +http://purl.obolibrary.org/obo/UBERON_0001997,olfactory epithelium,nasal cavity olfactory epithelium +http://purl.obolibrary.org/obo/UBERON_0001997,olfactory epithelium,nasal epithelium +http://purl.obolibrary.org/obo/UBERON_0001997,olfactory epithelium,nasal sensory epithelium +http://purl.obolibrary.org/obo/UBERON_0001997,olfactory epithelium,olfactory membrane +http://purl.obolibrary.org/obo/UBERON_0001997,olfactory epithelium,olfactory sensory epithelium +http://purl.obolibrary.org/obo/UBERON_0001997,olfactory epithelium,pseudostratified main olfactory epithelium +http://purl.obolibrary.org/obo/UBERON_0001997,olfactory epithelium,sensory olfactory epithelium +http://purl.obolibrary.org/obo/UBERON_0001998,sternocostal joint,articulatio sternocostalis +http://purl.obolibrary.org/obo/UBERON_0001998,sternocostal joint,costo sternal joint +http://purl.obolibrary.org/obo/UBERON_0001998,sternocostal joint,costosternal joint +http://purl.obolibrary.org/obo/UBERON_0001998,sternocostal joint,sternochondral joint +http://purl.obolibrary.org/obo/UBERON_0001998,sternocostal joint,sternocostal synovial joint +http://purl.obolibrary.org/obo/UBERON_0001998,sternocostal joint,synovial sternocostal joint +http://purl.obolibrary.org/obo/UBERON_0001999,iliopsoas,Hyrtl's muscle +http://purl.obolibrary.org/obo/UBERON_0001999,iliopsoas,iliopsoas muscle +http://purl.obolibrary.org/obo/UBERON_0001999,iliopsoas,illopsoas +http://purl.obolibrary.org/obo/UBERON_0002000,gluteal muscle, +http://purl.obolibrary.org/obo/UBERON_0002001,joint of rib,rib joint +http://purl.obolibrary.org/obo/UBERON_0002002,interchondral joint,articulatio interchondralis +http://purl.obolibrary.org/obo/UBERON_0002002,interchondral joint,articulationes interchondrales +http://purl.obolibrary.org/obo/UBERON_0002002,interchondral joint,interchondral articulation +http://purl.obolibrary.org/obo/UBERON_0002002,interchondral joint,interchondral joints +http://purl.obolibrary.org/obo/UBERON_0002002,interchondral joint,interchondral joints set +http://purl.obolibrary.org/obo/UBERON_0002002,interchondral joint,synovial interchondral joint +http://purl.obolibrary.org/obo/UBERON_0002004,trunk of sciatic nerve,sciatic nerve trunk +http://purl.obolibrary.org/obo/UBERON_0002004,trunk of sciatic nerve,sciatic neural trunk +http://purl.obolibrary.org/obo/UBERON_0002005,enteric nervous system,PNS - enteric +http://purl.obolibrary.org/obo/UBERON_0002005,enteric nervous system,enteric PNS +http://purl.obolibrary.org/obo/UBERON_0002006,cortex of lymph node,lymph node cortex +http://purl.obolibrary.org/obo/UBERON_0002007,medulla of lymph node,lymph node medulla +http://purl.obolibrary.org/obo/UBERON_0002008,cardiac nerve plexus,autonomic nerve plexus of heart +http://purl.obolibrary.org/obo/UBERON_0002008,cardiac nerve plexus,autonomic plexus of heart +http://purl.obolibrary.org/obo/UBERON_0002008,cardiac nerve plexus,cardiac plexus +http://purl.obolibrary.org/obo/UBERON_0002008,cardiac nerve plexus,heart autonomic nerve plexus +http://purl.obolibrary.org/obo/UBERON_0002008,cardiac nerve plexus,heart autonomic plexus +http://purl.obolibrary.org/obo/UBERON_0002008,cardiac nerve plexus,plexus cardiacus +http://purl.obolibrary.org/obo/UBERON_0002009,pulmonary nerve plexus,plexus pulmonalis +http://purl.obolibrary.org/obo/UBERON_0002009,pulmonary nerve plexus,pulmonary plexus +http://purl.obolibrary.org/obo/UBERON_0002010,celiac nerve plexus,celiac plexus +http://purl.obolibrary.org/obo/UBERON_0002010,celiac nerve plexus,coeliac plexus +http://purl.obolibrary.org/obo/UBERON_0002010,celiac nerve plexus,plexus coeliacus +http://purl.obolibrary.org/obo/UBERON_0002010,celiac nerve plexus,plexus nervosus coeliacus +http://purl.obolibrary.org/obo/UBERON_0002011,thoracodorsal artery, +http://purl.obolibrary.org/obo/UBERON_0002012,pulmonary artery,arteria pulmonalis +http://purl.obolibrary.org/obo/UBERON_0002012,pulmonary artery,pulmonary arterial subtree +http://purl.obolibrary.org/obo/UBERON_0002012,pulmonary artery,pulmonary arterial tree +http://purl.obolibrary.org/obo/UBERON_0002012,pulmonary artery,pulmonary arterial tree organ part +http://purl.obolibrary.org/obo/UBERON_0002012,pulmonary artery,truncus pulmonalis +http://purl.obolibrary.org/obo/UBERON_0002013,superior hypogastric nerve plexus,hypogastric plexus +http://purl.obolibrary.org/obo/UBERON_0002013,superior hypogastric nerve plexus,nervus presacralis +http://purl.obolibrary.org/obo/UBERON_0002013,superior hypogastric nerve plexus,plexus hypogastricus inferior +http://purl.obolibrary.org/obo/UBERON_0002013,superior hypogastric nerve plexus,plexus hypogastricus superior +http://purl.obolibrary.org/obo/UBERON_0002013,superior hypogastric nerve plexus,presacral nerve +http://purl.obolibrary.org/obo/UBERON_0002013,superior hypogastric nerve plexus,superior hypogastric plexus +http://purl.obolibrary.org/obo/UBERON_0002014,inferior hypogastric nerve plexus,inferior hypogastric plexus +http://purl.obolibrary.org/obo/UBERON_0002014,inferior hypogastric nerve plexus,pelvic nerve plexus +http://purl.obolibrary.org/obo/UBERON_0002014,inferior hypogastric nerve plexus,pelvic plexus +http://purl.obolibrary.org/obo/UBERON_0002014,inferior hypogastric nerve plexus,plexus hypogastricus inferior +http://purl.obolibrary.org/obo/UBERON_0002014,inferior hypogastric nerve plexus,plexus nervosus hypogastricus inferior +http://purl.obolibrary.org/obo/UBERON_0002014,inferior hypogastric nerve plexus,plexus nervosus pelvicus +http://purl.obolibrary.org/obo/UBERON_0002014,inferior hypogastric nerve plexus,plexus pelvicus +http://purl.obolibrary.org/obo/UBERON_0002015,kidney capsule,capsula fibrosa renis +http://purl.obolibrary.org/obo/UBERON_0002015,kidney capsule,capsule of kidney +http://purl.obolibrary.org/obo/UBERON_0002015,kidney capsule,fibrous capsule of kidney +http://purl.obolibrary.org/obo/UBERON_0002015,kidney capsule,renal capsule +http://purl.obolibrary.org/obo/UBERON_0002016,pulmonary vein,pulmonary venous tree organ part +http://purl.obolibrary.org/obo/UBERON_0002017,portal vein,portal venous tree organ part +http://purl.obolibrary.org/obo/UBERON_0002018,synovial membrane of synovial joint,membrana synovialis (capsula articularis) +http://purl.obolibrary.org/obo/UBERON_0002018,synovial membrane of synovial joint,membrana synovialis capsulae articularis +http://purl.obolibrary.org/obo/UBERON_0002018,synovial membrane of synovial joint,stratum synoviale +http://purl.obolibrary.org/obo/UBERON_0002018,synovial membrane of synovial joint,stratum synoviale (capsula articularis) +http://purl.obolibrary.org/obo/UBERON_0002019,accessory XI nerve,Willis' nerve +http://purl.obolibrary.org/obo/UBERON_0002019,accessory XI nerve,accessory XI +http://purl.obolibrary.org/obo/UBERON_0002019,accessory XI nerve,accessory XI nerve +http://purl.obolibrary.org/obo/UBERON_0002019,accessory XI nerve,accessory nerve +http://purl.obolibrary.org/obo/UBERON_0002019,accessory XI nerve,accessory nerve [XI] +http://purl.obolibrary.org/obo/UBERON_0002019,accessory XI nerve,cervical accessory nerve +http://purl.obolibrary.org/obo/UBERON_0002019,accessory XI nerve,cranial nerve XI +http://purl.obolibrary.org/obo/UBERON_0002019,accessory XI nerve,eleventh cranial nerve +http://purl.obolibrary.org/obo/UBERON_0002019,accessory XI nerve,nervus accessorius [XI] +http://purl.obolibrary.org/obo/UBERON_0002019,accessory XI nerve,pars spinalis nervus accessorius +http://purl.obolibrary.org/obo/UBERON_0002019,accessory XI nerve,radix spinalis nervus accessorius +http://purl.obolibrary.org/obo/UBERON_0002019,accessory XI nerve,spinal accessory nerve +http://purl.obolibrary.org/obo/UBERON_0002019,accessory XI nerve,spinal accessory nerve tree +http://purl.obolibrary.org/obo/UBERON_0002019,accessory XI nerve,spinal part of accessory nerve +http://purl.obolibrary.org/obo/UBERON_0002020,gray matter,gray mater +http://purl.obolibrary.org/obo/UBERON_0002020,gray matter,gray matter +http://purl.obolibrary.org/obo/UBERON_0002020,gray matter,gray matter of neuraxis +http://purl.obolibrary.org/obo/UBERON_0002020,gray matter,grey matter +http://purl.obolibrary.org/obo/UBERON_0002020,gray matter,grey matter of neuraxis +http://purl.obolibrary.org/obo/UBERON_0002020,gray matter,grey substance +http://purl.obolibrary.org/obo/UBERON_0002020,gray matter,grisea +http://purl.obolibrary.org/obo/UBERON_0002020,gray matter,neuronal grey matter +http://purl.obolibrary.org/obo/UBERON_0002020,gray matter,substantia grisea +http://purl.obolibrary.org/obo/UBERON_0002021,occipital lobe,regio occipitalis +http://purl.obolibrary.org/obo/UBERON_0002022,insula,central lobe +http://purl.obolibrary.org/obo/UBERON_0002022,insula,cortex insularis +http://purl.obolibrary.org/obo/UBERON_0002022,insula,cortex of island +http://purl.obolibrary.org/obo/UBERON_0002022,insula,iNS +http://purl.obolibrary.org/obo/UBERON_0002022,insula,insula Reilii +http://purl.obolibrary.org/obo/UBERON_0002022,insula,insula cerebri +http://purl.obolibrary.org/obo/UBERON_0002022,insula,insula lobule +http://purl.obolibrary.org/obo/UBERON_0002022,insula,insula of Reil +http://purl.obolibrary.org/obo/UBERON_0002022,insula,insular cortex +http://purl.obolibrary.org/obo/UBERON_0002022,insula,insular gyrus +http://purl.obolibrary.org/obo/UBERON_0002022,insula,insular lobe +http://purl.obolibrary.org/obo/UBERON_0002022,insula,insular region +http://purl.obolibrary.org/obo/UBERON_0002022,insula,insulary cortex +http://purl.obolibrary.org/obo/UBERON_0002022,insula,island of Reil +http://purl.obolibrary.org/obo/UBERON_0002022,insula,lobus insularis +http://purl.obolibrary.org/obo/UBERON_0002022,insula,morphological insula +http://purl.obolibrary.org/obo/UBERON_0002023,claustrum of brain,claustrum +http://purl.obolibrary.org/obo/UBERON_0002023,claustrum of brain,claustrum (Burdach) +http://purl.obolibrary.org/obo/UBERON_0002023,claustrum of brain,dorsal claustrum +http://purl.obolibrary.org/obo/UBERON_0002023,claustrum of brain,dorsal portion of claustrum +http://purl.obolibrary.org/obo/UBERON_0002024,internal carotid nerve plexus,internal carotid plexus +http://purl.obolibrary.org/obo/UBERON_0002024,internal carotid nerve plexus,plexus caroticus internus +http://purl.obolibrary.org/obo/UBERON_0002025,stratum basale of epidermis,basal cell layer of epidermis +http://purl.obolibrary.org/obo/UBERON_0002025,stratum basale of epidermis,basal epidermal layer +http://purl.obolibrary.org/obo/UBERON_0002025,stratum basale of epidermis,epidermal basal stratum +http://purl.obolibrary.org/obo/UBERON_0002025,stratum basale of epidermis,epidermis stratum basale +http://purl.obolibrary.org/obo/UBERON_0002025,stratum basale of epidermis,stratum basalis of epidermis +http://purl.obolibrary.org/obo/UBERON_0002025,stratum basale of epidermis,stratum germinativum +http://purl.obolibrary.org/obo/UBERON_0002025,stratum basale of epidermis,stratum germinosum of epidermis +http://purl.obolibrary.org/obo/UBERON_0002026,stratum spinosum of epidermis,epidermis stratum spinosum +http://purl.obolibrary.org/obo/UBERON_0002026,stratum spinosum of epidermis,prickle cell layer of epidermis +http://purl.obolibrary.org/obo/UBERON_0002026,stratum spinosum of epidermis,squamous cell layer of epidermis +http://purl.obolibrary.org/obo/UBERON_0002026,stratum spinosum of epidermis,stratum spinosum +http://purl.obolibrary.org/obo/UBERON_0002027,stratum corneum of epidermis,cornified layer +http://purl.obolibrary.org/obo/UBERON_0002027,stratum corneum of epidermis,epidermis stratum corneum +http://purl.obolibrary.org/obo/UBERON_0002027,stratum corneum of epidermis,horny layer of epidermis +http://purl.obolibrary.org/obo/UBERON_0002027,stratum corneum of epidermis,keratinized squame layer of epidermis +http://purl.obolibrary.org/obo/UBERON_0002028,hindbrain,rhombencephalon +http://purl.obolibrary.org/obo/UBERON_0002029,epithelium of gall bladder,epithelial tissue of gall bladder +http://purl.obolibrary.org/obo/UBERON_0002029,epithelium of gall bladder,epithelial tissue of gallbladder +http://purl.obolibrary.org/obo/UBERON_0002029,epithelium of gall bladder,epithelium of gallbladder +http://purl.obolibrary.org/obo/UBERON_0002029,epithelium of gall bladder,gall bladder epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0002029,epithelium of gall bladder,gall bladder epithelium +http://purl.obolibrary.org/obo/UBERON_0002029,epithelium of gall bladder,gallbladder epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0002029,epithelium of gall bladder,gallbladder epithelium +http://purl.obolibrary.org/obo/UBERON_0002030,nipple,papilla mammae +http://purl.obolibrary.org/obo/UBERON_0002030,nipple,papilla of breast +http://purl.obolibrary.org/obo/UBERON_0002030,nipple,thele +http://purl.obolibrary.org/obo/UBERON_0002030,nipple,thelium +http://purl.obolibrary.org/obo/UBERON_0002031,epithelium of bronchus,bronchi epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0002031,epithelium of bronchus,bronchi epithelium +http://purl.obolibrary.org/obo/UBERON_0002031,epithelium of bronchus,bronchial epithelium +http://purl.obolibrary.org/obo/UBERON_0002031,epithelium of bronchus,bronchial trunk epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0002031,epithelium of bronchus,bronchial trunk epithelium +http://purl.obolibrary.org/obo/UBERON_0002031,epithelium of bronchus,bronchus epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0002031,epithelium of bronchus,bronchus epithelium +http://purl.obolibrary.org/obo/UBERON_0002031,epithelium of bronchus,epithelial tissue of bronchi +http://purl.obolibrary.org/obo/UBERON_0002031,epithelium of bronchus,epithelial tissue of bronchial trunk +http://purl.obolibrary.org/obo/UBERON_0002031,epithelium of bronchus,epithelial tissue of bronchus +http://purl.obolibrary.org/obo/UBERON_0002031,epithelium of bronchus,epithelium of bronchi +http://purl.obolibrary.org/obo/UBERON_0002031,epithelium of bronchus,epithelium of bronchial trunk +http://purl.obolibrary.org/obo/UBERON_0002032,areola, +http://purl.obolibrary.org/obo/UBERON_0002033,arrector muscle of hair,arrector pili +http://purl.obolibrary.org/obo/UBERON_0002033,arrector muscle of hair,arrector pili muscle +http://purl.obolibrary.org/obo/UBERON_0002033,arrector muscle of hair,arrector pili smooth muscle +http://purl.obolibrary.org/obo/UBERON_0002033,arrector muscle of hair,arrector pilli +http://purl.obolibrary.org/obo/UBERON_0002033,arrector muscle of hair,arrector pilli muscle +http://purl.obolibrary.org/obo/UBERON_0002033,arrector muscle of hair,arrector pilorum +http://purl.obolibrary.org/obo/UBERON_0002033,arrector muscle of hair,arrector pilorum muscle of hair +http://purl.obolibrary.org/obo/UBERON_0002034,suprachiasmatic nucleus,SCN +http://purl.obolibrary.org/obo/UBERON_0002034,suprachiasmatic nucleus,SCh +http://purl.obolibrary.org/obo/UBERON_0002034,suprachiasmatic nucleus,nucleus suprachiasmaticus +http://purl.obolibrary.org/obo/UBERON_0002034,suprachiasmatic nucleus,nucleus suprachiasmaticus hypothalami +http://purl.obolibrary.org/obo/UBERON_0002034,suprachiasmatic nucleus,suprachiasmatic nucleus (Spiegel-Zwieg) +http://purl.obolibrary.org/obo/UBERON_0002034,suprachiasmatic nucleus,suprachiasmatic nucleus of hypothalamus +http://purl.obolibrary.org/obo/UBERON_0002035,medial preoptic nucleus,MPO +http://purl.obolibrary.org/obo/UBERON_0002035,medial preoptic nucleus,area praeoptica medialis +http://purl.obolibrary.org/obo/UBERON_0002035,medial preoptic nucleus,area preopticus medialis +http://purl.obolibrary.org/obo/UBERON_0002035,medial preoptic nucleus,medial preoptic hypothalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0002035,medial preoptic nucleus,nucleus praeopticus medialis +http://purl.obolibrary.org/obo/UBERON_0002035,medial preoptic nucleus,nucleus preopticus medialis +http://purl.obolibrary.org/obo/UBERON_0002036,striated muscle tissue,striated muscle +http://purl.obolibrary.org/obo/UBERON_0002037,cerebellum,corpus cerebelli +http://purl.obolibrary.org/obo/UBERON_0002037,cerebellum,epencephalon-1 +http://purl.obolibrary.org/obo/UBERON_0002037,cerebellum,infratentorial region +http://purl.obolibrary.org/obo/UBERON_0002037,cerebellum,parencephalon +http://purl.obolibrary.org/obo/UBERON_0002038,substantia nigra,SN +http://purl.obolibrary.org/obo/UBERON_0002038,substantia nigra,Soemmering's substance +http://purl.obolibrary.org/obo/UBERON_0002038,substantia nigra,nucleus of basis pedunculi +http://purl.obolibrary.org/obo/UBERON_0002038,substantia nigra,nucleus pigmentosus subthalamo-peduncularis +http://purl.obolibrary.org/obo/UBERON_0002038,substantia nigra,substancia nigra +http://purl.obolibrary.org/obo/UBERON_0002038,substantia nigra,substantia nigra (Soemmerringi) +http://purl.obolibrary.org/obo/UBERON_0002039,inferior phrenic vein, +http://purl.obolibrary.org/obo/UBERON_0002040,bronchial artery,bronchial arterial tree +http://purl.obolibrary.org/obo/UBERON_0002041,terminal bronchus, +http://purl.obolibrary.org/obo/UBERON_0002042,lymphatic vessel endothelium,endothelium of lymph vessel +http://purl.obolibrary.org/obo/UBERON_0002042,lymphatic vessel endothelium,endothelium of lymphatic vessel +http://purl.obolibrary.org/obo/UBERON_0002042,lymphatic vessel endothelium,lymph vessel endothelium +http://purl.obolibrary.org/obo/UBERON_0002042,lymphatic vessel endothelium,lymphatic endothelium +http://purl.obolibrary.org/obo/UBERON_0002042,lymphatic vessel endothelium,lymphatic vessel endothelium +http://purl.obolibrary.org/obo/UBERON_0002043,dorsal raphe nucleus,DR +http://purl.obolibrary.org/obo/UBERON_0002043,dorsal raphe nucleus,DRN +http://purl.obolibrary.org/obo/UBERON_0002043,dorsal raphe nucleus,cell group b7 +http://purl.obolibrary.org/obo/UBERON_0002043,dorsal raphe nucleus,dorsal nucleus of the raphe +http://purl.obolibrary.org/obo/UBERON_0002043,dorsal raphe nucleus,dorsal nucleus raphe +http://purl.obolibrary.org/obo/UBERON_0002043,dorsal raphe nucleus,dorsal raphe +http://purl.obolibrary.org/obo/UBERON_0002043,dorsal raphe nucleus,dorsal raphé +http://purl.obolibrary.org/obo/UBERON_0002043,dorsal raphe nucleus,inferior raphe nucleus +http://purl.obolibrary.org/obo/UBERON_0002043,dorsal raphe nucleus,nucleus dorsalis raphes +http://purl.obolibrary.org/obo/UBERON_0002043,dorsal raphe nucleus,nucleus raphe dorsalis +http://purl.obolibrary.org/obo/UBERON_0002043,dorsal raphe nucleus,nucleus raphe posterior +http://purl.obolibrary.org/obo/UBERON_0002043,dorsal raphe nucleus,nucleus raphes dorsalis +http://purl.obolibrary.org/obo/UBERON_0002043,dorsal raphe nucleus,nucleus raphes posterior +http://purl.obolibrary.org/obo/UBERON_0002043,dorsal raphe nucleus,posterior raphe nucleus +http://purl.obolibrary.org/obo/UBERON_0002044,ventral nucleus of posterior commissure,Darkshevich nucleus +http://purl.obolibrary.org/obo/UBERON_0002044,ventral nucleus of posterior commissure,Darkshevich's nucleus +http://purl.obolibrary.org/obo/UBERON_0002044,ventral nucleus of posterior commissure,nucleus of Darkschewitsch +http://purl.obolibrary.org/obo/UBERON_0002045,cuneate nucleus,Burdach's nucleus +http://purl.obolibrary.org/obo/UBERON_0002045,cuneate nucleus,Cu +http://purl.obolibrary.org/obo/UBERON_0002045,cuneate nucleus,burdachs nucleus +http://purl.obolibrary.org/obo/UBERON_0002045,cuneate nucleus,cuneate +http://purl.obolibrary.org/obo/UBERON_0002045,cuneate nucleus,cuneate nucleus (Burdach) +http://purl.obolibrary.org/obo/UBERON_0002045,cuneate nucleus,cuneate nucleus of the medulla +http://purl.obolibrary.org/obo/UBERON_0002045,cuneate nucleus,nucleus cuneatus +http://purl.obolibrary.org/obo/UBERON_0002045,cuneate nucleus,nucleus cuneatus medialis +http://purl.obolibrary.org/obo/UBERON_0002045,cuneate nucleus,nucleus restiformis +http://purl.obolibrary.org/obo/UBERON_0002046,thyroid gland,thyroid +http://purl.obolibrary.org/obo/UBERON_0002047,pontine raphe nucleus,nucleus raphe pontis +http://purl.obolibrary.org/obo/UBERON_0002047,pontine raphe nucleus,nucleus raphes pontis +http://purl.obolibrary.org/obo/UBERON_0002047,pontine raphe nucleus,raphe (mediana pontina) +http://purl.obolibrary.org/obo/UBERON_0002047,pontine raphe nucleus,raphe of pons +http://purl.obolibrary.org/obo/UBERON_0002047,pontine raphe nucleus,raphe pontis +http://purl.obolibrary.org/obo/UBERON_0002047,pontine raphe nucleus,raphe pontis nucleus +http://purl.obolibrary.org/obo/UBERON_0002048,lung,pulmo +http://purl.obolibrary.org/obo/UBERON_0002049,vasculature,vascular network +http://purl.obolibrary.org/obo/UBERON_0002050,embryonic structure,developing embryonic structure +http://purl.obolibrary.org/obo/UBERON_0002050,embryonic structure,developing structure +http://purl.obolibrary.org/obo/UBERON_0002050,embryonic structure,embryonale Struktur +http://purl.obolibrary.org/obo/UBERON_0002050,embryonic structure,embryonic anatomical structure +http://purl.obolibrary.org/obo/UBERON_0002050,embryonic structure,embryonic structures +http://purl.obolibrary.org/obo/UBERON_0002051,epithelium of bronchiole,bronchiolar epithelium +http://purl.obolibrary.org/obo/UBERON_0002051,epithelium of bronchiole,bronchiole epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0002051,epithelium of bronchiole,bronchiole epithelium +http://purl.obolibrary.org/obo/UBERON_0002051,epithelium of bronchiole,epithelial tissue of bronchiole +http://purl.obolibrary.org/obo/UBERON_0002052,adrenal gland capsule,capsule of adrenal gland +http://purl.obolibrary.org/obo/UBERON_0002053,zona glomerulosa of adrenal gland,adrenal gland zona glomerulosa +http://purl.obolibrary.org/obo/UBERON_0002053,zona glomerulosa of adrenal gland,zona glomerulosa +http://purl.obolibrary.org/obo/UBERON_0002053,zona glomerulosa of adrenal gland,zona glomerulosa of suprarenal gland +http://purl.obolibrary.org/obo/UBERON_0002054,zona fasciculata of adrenal gland,adrenal gland zona fasciculata +http://purl.obolibrary.org/obo/UBERON_0002054,zona fasciculata of adrenal gland,zona fasciculata +http://purl.obolibrary.org/obo/UBERON_0002054,zona fasciculata of adrenal gland,zona fasciculata of suprarenal gland +http://purl.obolibrary.org/obo/UBERON_0002055,zona reticularis of adrenal gland,adrenal gland zona reticularis +http://purl.obolibrary.org/obo/UBERON_0002055,zona reticularis of adrenal gland,zona reticularis +http://purl.obolibrary.org/obo/UBERON_0002055,zona reticularis of adrenal gland,zona reticularis of suprarenal gland +http://purl.obolibrary.org/obo/UBERON_0002056,inferior suprarenal artery, +http://purl.obolibrary.org/obo/UBERON_0002057,phrenic artery, +http://purl.obolibrary.org/obo/UBERON_0002058,main ciliary ganglion,ciliary ganglion +http://purl.obolibrary.org/obo/UBERON_0002058,main ciliary ganglion,ganglion ciliare +http://purl.obolibrary.org/obo/UBERON_0002059,submandibular ganglion,Blandin`s ganglion +http://purl.obolibrary.org/obo/UBERON_0002059,submandibular ganglion,ganglion submandibulare +http://purl.obolibrary.org/obo/UBERON_0002059,submandibular ganglion,lingual ganglion +http://purl.obolibrary.org/obo/UBERON_0002059,submandibular ganglion,mandibular ganglion +http://purl.obolibrary.org/obo/UBERON_0002059,submandibular ganglion,maxillary ganglion +http://purl.obolibrary.org/obo/UBERON_0002059,submandibular ganglion,submaxillary ganglion +http://purl.obolibrary.org/obo/UBERON_0002060,femoral artery, +http://purl.obolibrary.org/obo/UBERON_0002061,truncus arteriosus, +http://purl.obolibrary.org/obo/UBERON_0002062,endocardial cushion,AV cushion +http://purl.obolibrary.org/obo/UBERON_0002062,endocardial cushion,atrioventricular cushion +http://purl.obolibrary.org/obo/UBERON_0002062,endocardial cushion,cardiac cushion +http://purl.obolibrary.org/obo/UBERON_0002062,endocardial cushion,endocardial cushion tissue +http://purl.obolibrary.org/obo/UBERON_0002063,sinus venosus, +http://purl.obolibrary.org/obo/UBERON_0002064,common cardinal vein, +http://purl.obolibrary.org/obo/UBERON_0002065,posterior cardinal vein, +http://purl.obolibrary.org/obo/UBERON_0002066,umbilical vein, +http://purl.obolibrary.org/obo/UBERON_0002067,dermis,vertebrate dermis +http://purl.obolibrary.org/obo/UBERON_0002068,urachus, +http://purl.obolibrary.org/obo/UBERON_0002069,stratum granulosum of epidermis,epidermis stratum granulosum +http://purl.obolibrary.org/obo/UBERON_0002069,stratum granulosum of epidermis,granular layer of epidermis +http://purl.obolibrary.org/obo/UBERON_0002069,stratum granulosum of epidermis,stratum granulosum +http://purl.obolibrary.org/obo/UBERON_0002070,superior pancreaticoduodenal artery,superior pancreatico-duodenal artery +http://purl.obolibrary.org/obo/UBERON_0002070,superior pancreaticoduodenal artery,superior pancreatoduodenal artery +http://purl.obolibrary.org/obo/UBERON_0002071,stratum lucidum of epidermis,epidermis stratum lucidum +http://purl.obolibrary.org/obo/UBERON_0002071,stratum lucidum of epidermis,stratum conjunctum of epidermis +http://purl.obolibrary.org/obo/UBERON_0002072,hypodermis,hypoderm +http://purl.obolibrary.org/obo/UBERON_0002072,hypodermis,sub-tegumental tissue +http://purl.obolibrary.org/obo/UBERON_0002072,hypodermis,subcutaneous tissue +http://purl.obolibrary.org/obo/UBERON_0002072,hypodermis,subcutis +http://purl.obolibrary.org/obo/UBERON_0002072,hypodermis,subtegumental tissue +http://purl.obolibrary.org/obo/UBERON_0002072,hypodermis,superficial fascia +http://purl.obolibrary.org/obo/UBERON_0002072,hypodermis,tela subcutanea +http://purl.obolibrary.org/obo/UBERON_0002072,hypodermis,vertebrate hypodermis +http://purl.obolibrary.org/obo/UBERON_0002073,hair follicle, +http://purl.obolibrary.org/obo/UBERON_0002074,hair shaft,shaft of hair +http://purl.obolibrary.org/obo/UBERON_0002075,viscus,splanchnic tissue +http://purl.obolibrary.org/obo/UBERON_0002075,viscus,viscera +http://purl.obolibrary.org/obo/UBERON_0002075,viscus,visceral organ +http://purl.obolibrary.org/obo/UBERON_0002075,viscus,visceral organ system +http://purl.obolibrary.org/obo/UBERON_0002075,viscus,visceral tissue +http://purl.obolibrary.org/obo/UBERON_0002076,cuticle of hair,hair cuticle +http://purl.obolibrary.org/obo/UBERON_0002077,cortex of hair,coat hair cortex +http://purl.obolibrary.org/obo/UBERON_0002077,cortex of hair,coat/hair cortex +http://purl.obolibrary.org/obo/UBERON_0002077,cortex of hair,cortex of coat hair +http://purl.obolibrary.org/obo/UBERON_0002077,cortex of hair,cortex of coat/hair +http://purl.obolibrary.org/obo/UBERON_0002077,cortex of hair,hair cortex +http://purl.obolibrary.org/obo/UBERON_0002078,right cardiac atrium,atrium dextrum +http://purl.obolibrary.org/obo/UBERON_0002078,right cardiac atrium,cardiac right atrium +http://purl.obolibrary.org/obo/UBERON_0002078,right cardiac atrium,heart right atrium +http://purl.obolibrary.org/obo/UBERON_0002078,right cardiac atrium,right atrium +http://purl.obolibrary.org/obo/UBERON_0002078,right cardiac atrium,right atrium of heart +http://purl.obolibrary.org/obo/UBERON_0002078,right cardiac atrium,right cardiac atrium +http://purl.obolibrary.org/obo/UBERON_0002079,left cardiac atrium,atrium sinistrum +http://purl.obolibrary.org/obo/UBERON_0002079,left cardiac atrium,cardiac left atrium +http://purl.obolibrary.org/obo/UBERON_0002079,left cardiac atrium,heart left atrium +http://purl.obolibrary.org/obo/UBERON_0002079,left cardiac atrium,left atrium +http://purl.obolibrary.org/obo/UBERON_0002079,left cardiac atrium,left atrium of heart +http://purl.obolibrary.org/obo/UBERON_0002079,left cardiac atrium,left cardiac atrium +http://purl.obolibrary.org/obo/UBERON_0002080,heart right ventricle,cardiac right ventricle +http://purl.obolibrary.org/obo/UBERON_0002080,heart right ventricle,right cardiac ventricle +http://purl.obolibrary.org/obo/UBERON_0002080,heart right ventricle,right ventricle +http://purl.obolibrary.org/obo/UBERON_0002080,heart right ventricle,right ventricle of heart +http://purl.obolibrary.org/obo/UBERON_0002080,heart right ventricle,ventriculus dexter +http://purl.obolibrary.org/obo/UBERON_0002081,cardiac atrium,atria +http://purl.obolibrary.org/obo/UBERON_0002081,cardiac atrium,atrial tissue +http://purl.obolibrary.org/obo/UBERON_0002081,cardiac atrium,atrium +http://purl.obolibrary.org/obo/UBERON_0002081,cardiac atrium,atrium of heart +http://purl.obolibrary.org/obo/UBERON_0002081,cardiac atrium,cardiac atria +http://purl.obolibrary.org/obo/UBERON_0002081,cardiac atrium,heart atrium +http://purl.obolibrary.org/obo/UBERON_0002082,cardiac ventricle,heart ventricle +http://purl.obolibrary.org/obo/UBERON_0002082,cardiac ventricle,lower chamber of heart +http://purl.obolibrary.org/obo/UBERON_0002082,cardiac ventricle,ventricle +http://purl.obolibrary.org/obo/UBERON_0002082,cardiac ventricle,ventricle of heart +http://purl.obolibrary.org/obo/UBERON_0002083,ductus venosus, +http://purl.obolibrary.org/obo/UBERON_0002084,heart left ventricle,cardiac left ventricle +http://purl.obolibrary.org/obo/UBERON_0002084,heart left ventricle,left cardiac ventricle +http://purl.obolibrary.org/obo/UBERON_0002084,heart left ventricle,left ventricle +http://purl.obolibrary.org/obo/UBERON_0002084,heart left ventricle,left ventricle of heart +http://purl.obolibrary.org/obo/UBERON_0002084,heart left ventricle,ventriculus sinister cordis +http://purl.obolibrary.org/obo/UBERON_0002085,interatrial septum,atrial septum +http://purl.obolibrary.org/obo/UBERON_0002085,interatrial septum,atrium septum +http://purl.obolibrary.org/obo/UBERON_0002085,interatrial septum,interatrial septal wall +http://purl.obolibrary.org/obo/UBERON_0002086,sinoatrial valve,sinuatrial valve +http://purl.obolibrary.org/obo/UBERON_0002087,atrioventricular canal,AV canal +http://purl.obolibrary.org/obo/UBERON_0002087,atrioventricular canal,AVC +http://purl.obolibrary.org/obo/UBERON_0002087,atrioventricular canal,atrial canal +http://purl.obolibrary.org/obo/UBERON_0002087,atrioventricular canal,atrio-ventricular canal +http://purl.obolibrary.org/obo/UBERON_0002088,lateral thoracic vein, +http://purl.obolibrary.org/obo/UBERON_0002089,thoracodorsal vein, +http://purl.obolibrary.org/obo/UBERON_0002090,postcranial axial skeleton,post-cranial axial skeleton +http://purl.obolibrary.org/obo/UBERON_0002091,appendicular skeleton,appendicular skeleton +http://purl.obolibrary.org/obo/UBERON_0002091,appendicular skeleton,entire appendicular skeleton +http://purl.obolibrary.org/obo/UBERON_0002092,brain dura mater,cranial dura mater +http://purl.obolibrary.org/obo/UBERON_0002092,brain dura mater,dura mater cranialis +http://purl.obolibrary.org/obo/UBERON_0002092,brain dura mater,dura mater encephali +http://purl.obolibrary.org/obo/UBERON_0002092,brain dura mater,dura mater of brain +http://purl.obolibrary.org/obo/UBERON_0002093,spinal dura mater,dura mater of neuraxis of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002093,spinal dura mater,dura mater of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002093,spinal dura mater,spinal cord dura mater +http://purl.obolibrary.org/obo/UBERON_0002093,spinal dura mater,spinal cord dura mater of neuraxis +http://purl.obolibrary.org/obo/UBERON_0002094,interventricular septum,heart interventricular septum +http://purl.obolibrary.org/obo/UBERON_0002094,interventricular septum,heart ventricular septum +http://purl.obolibrary.org/obo/UBERON_0002095,mesentery,generic mesentery +http://purl.obolibrary.org/obo/UBERON_0002095,mesentery,mesentery (generic) +http://purl.obolibrary.org/obo/UBERON_0002097,skin of body,entire skin +http://purl.obolibrary.org/obo/UBERON_0002097,skin of body,skin organ +http://purl.obolibrary.org/obo/UBERON_0002098,apex of heart,apex cordis +http://purl.obolibrary.org/obo/UBERON_0002098,apex of heart,cardiac apex +http://purl.obolibrary.org/obo/UBERON_0002098,apex of heart,heart apex +http://purl.obolibrary.org/obo/UBERON_0002099,cardiac septum,cardiac septa +http://purl.obolibrary.org/obo/UBERON_0002099,cardiac septum,heart septa +http://purl.obolibrary.org/obo/UBERON_0002099,cardiac septum,heart septum +http://purl.obolibrary.org/obo/UBERON_0002099,cardiac septum,septum of heart +http://purl.obolibrary.org/obo/UBERON_0002100,trunk,Rumpf +http://purl.obolibrary.org/obo/UBERON_0002100,trunk,thoracolumbar region +http://purl.obolibrary.org/obo/UBERON_0002100,trunk,torso +http://purl.obolibrary.org/obo/UBERON_0002100,trunk,trunk region +http://purl.obolibrary.org/obo/UBERON_0002101,limb,extremities +http://purl.obolibrary.org/obo/UBERON_0002101,limb,extremity +http://purl.obolibrary.org/obo/UBERON_0002101,limb,flipper +http://purl.obolibrary.org/obo/UBERON_0002101,limb,free limb +http://purl.obolibrary.org/obo/UBERON_0002101,limb,limb sensu Vertebrata +http://purl.obolibrary.org/obo/UBERON_0002101,limb,pentadactyl limb +http://purl.obolibrary.org/obo/UBERON_0002101,limb,tetrapod limb +http://purl.obolibrary.org/obo/UBERON_0002102,forelimb,anteriormost limb +http://purl.obolibrary.org/obo/UBERON_0002102,forelimb,fore limb +http://purl.obolibrary.org/obo/UBERON_0002102,forelimb,forelimb +http://purl.obolibrary.org/obo/UBERON_0002102,forelimb,free part of upper limb +http://purl.obolibrary.org/obo/UBERON_0002102,forelimb,free upper limb +http://purl.obolibrary.org/obo/UBERON_0002102,forelimb,membrum superius +http://purl.obolibrary.org/obo/UBERON_0002102,forelimb,pectoral limb +http://purl.obolibrary.org/obo/UBERON_0002102,forelimb,superior member +http://purl.obolibrary.org/obo/UBERON_0002102,forelimb,upper extremity +http://purl.obolibrary.org/obo/UBERON_0002102,forelimb,upper limb +http://purl.obolibrary.org/obo/UBERON_0002103,hindlimb,free lower limb +http://purl.obolibrary.org/obo/UBERON_0002103,hindlimb,hind limb +http://purl.obolibrary.org/obo/UBERON_0002103,hindlimb,hind-limb +http://purl.obolibrary.org/obo/UBERON_0002103,hindlimb,hindlimb +http://purl.obolibrary.org/obo/UBERON_0002103,hindlimb,inferior member +http://purl.obolibrary.org/obo/UBERON_0002103,hindlimb,lower limb +http://purl.obolibrary.org/obo/UBERON_0002103,hindlimb,membrum inferius +http://purl.obolibrary.org/obo/UBERON_0002104,visual system,photosensory system +http://purl.obolibrary.org/obo/UBERON_0002104,visual system,visual organ system +http://purl.obolibrary.org/obo/UBERON_0002105,vestibulo-auditory system,auditory organ system +http://purl.obolibrary.org/obo/UBERON_0002105,vestibulo-auditory system,auditory system +http://purl.obolibrary.org/obo/UBERON_0002105,vestibulo-auditory system,auditory/vestibular system +http://purl.obolibrary.org/obo/UBERON_0002105,vestibulo-auditory system,vestibuloauditory system +http://purl.obolibrary.org/obo/UBERON_0002106,spleen,lien +http://purl.obolibrary.org/obo/UBERON_0002107,liver,iecur +http://purl.obolibrary.org/obo/UBERON_0002107,liver,jecur +http://purl.obolibrary.org/obo/UBERON_0002108,small intestine,anterior intestine +http://purl.obolibrary.org/obo/UBERON_0002108,small intestine,intestinum tenue +http://purl.obolibrary.org/obo/UBERON_0002108,small intestine,mid intestine +http://purl.obolibrary.org/obo/UBERON_0002108,small intestine,small bowel +http://purl.obolibrary.org/obo/UBERON_0002108,small intestine,small intestine +http://purl.obolibrary.org/obo/UBERON_0002109,pair of nares,nares set +http://purl.obolibrary.org/obo/UBERON_0002109,pair of nares,nostrils +http://purl.obolibrary.org/obo/UBERON_0002109,pair of nares,pair of nostrils +http://purl.obolibrary.org/obo/UBERON_0002110,gallbladder,cholecyst +http://purl.obolibrary.org/obo/UBERON_0002110,gallbladder,gall bladder +http://purl.obolibrary.org/obo/UBERON_0002111,artery smooth muscle tissue,arterial smooth muscle +http://purl.obolibrary.org/obo/UBERON_0002111,artery smooth muscle tissue,artery smooth muscle +http://purl.obolibrary.org/obo/UBERON_0002111,artery smooth muscle tissue,artery smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0002111,artery smooth muscle tissue,smooth muscle of artery +http://purl.obolibrary.org/obo/UBERON_0002112,smooth muscle of esophagus,esophageal smooth muscle +http://purl.obolibrary.org/obo/UBERON_0002112,smooth muscle of esophagus,esophagus involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0002112,smooth muscle of esophagus,esophagus non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0002112,smooth muscle of esophagus,esophagus smooth muscle +http://purl.obolibrary.org/obo/UBERON_0002112,smooth muscle of esophagus,esophagus smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0002112,smooth muscle of esophagus,gullet involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0002112,smooth muscle of esophagus,gullet non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0002112,smooth muscle of esophagus,gullet smooth muscle +http://purl.obolibrary.org/obo/UBERON_0002112,smooth muscle of esophagus,gullet smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0002112,smooth muscle of esophagus,involuntary muscle of esophagus +http://purl.obolibrary.org/obo/UBERON_0002112,smooth muscle of esophagus,involuntary muscle of gullet +http://purl.obolibrary.org/obo/UBERON_0002112,smooth muscle of esophagus,involuntary muscle of oesophagus +http://purl.obolibrary.org/obo/UBERON_0002112,smooth muscle of esophagus,non-striated muscle of esophagus +http://purl.obolibrary.org/obo/UBERON_0002112,smooth muscle of esophagus,non-striated muscle of gullet +http://purl.obolibrary.org/obo/UBERON_0002112,smooth muscle of esophagus,non-striated muscle of oesophagus +http://purl.obolibrary.org/obo/UBERON_0002112,smooth muscle of esophagus,oesophagus involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0002112,smooth muscle of esophagus,oesophagus non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0002112,smooth muscle of esophagus,oesophagus smooth muscle +http://purl.obolibrary.org/obo/UBERON_0002112,smooth muscle of esophagus,oesophagus smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0002112,smooth muscle of esophagus,smooth muscle of gullet +http://purl.obolibrary.org/obo/UBERON_0002112,smooth muscle of esophagus,smooth muscle of oesophagus +http://purl.obolibrary.org/obo/UBERON_0002112,smooth muscle of esophagus,smooth muscle tissue of esophagus +http://purl.obolibrary.org/obo/UBERON_0002112,smooth muscle of esophagus,smooth muscle tissue of gullet +http://purl.obolibrary.org/obo/UBERON_0002112,smooth muscle of esophagus,smooth muscle tissue of oesophagus +http://purl.obolibrary.org/obo/UBERON_0002113,kidney, +http://purl.obolibrary.org/obo/UBERON_0002114,duodenum, +http://purl.obolibrary.org/obo/UBERON_0002115,jejunum, +http://purl.obolibrary.org/obo/UBERON_0002116,ileum, +http://purl.obolibrary.org/obo/UBERON_0002118,right ovary, +http://purl.obolibrary.org/obo/UBERON_0002119,left ovary, +http://purl.obolibrary.org/obo/UBERON_0002120,pronephros,pronephric kidney +http://purl.obolibrary.org/obo/UBERON_0002122,capsule of thymus,thymic capsule +http://purl.obolibrary.org/obo/UBERON_0002122,capsule of thymus,thymus capsule +http://purl.obolibrary.org/obo/UBERON_0002123,cortex of thymus,thymic cortex +http://purl.obolibrary.org/obo/UBERON_0002123,cortex of thymus,thymus cortex +http://purl.obolibrary.org/obo/UBERON_0002124,medulla of thymus,medulla of thymus gland +http://purl.obolibrary.org/obo/UBERON_0002124,medulla of thymus,thymus gland medulla +http://purl.obolibrary.org/obo/UBERON_0002124,medulla of thymus,thymus medulla +http://purl.obolibrary.org/obo/UBERON_0002125,thymus lobule,lobule of thymus +http://purl.obolibrary.org/obo/UBERON_0002125,thymus lobule,thymic lobule +http://purl.obolibrary.org/obo/UBERON_0002125,thymus lobule,thymus lobule +http://purl.obolibrary.org/obo/UBERON_0002126,solitary tract nuclear complex,nuclei of solitary tract +http://purl.obolibrary.org/obo/UBERON_0002126,solitary tract nuclear complex,nucleus tractus solitarii +http://purl.obolibrary.org/obo/UBERON_0002126,solitary tract nuclear complex,solitary nuclei +http://purl.obolibrary.org/obo/UBERON_0002127,inferior olivary complex,inferior olivary nuclear complex +http://purl.obolibrary.org/obo/UBERON_0002127,inferior olivary complex,inferior olive +http://purl.obolibrary.org/obo/UBERON_0002127,inferior olivary complex,oliva +http://purl.obolibrary.org/obo/UBERON_0002128,superior olivary complex,nucleus olivaris superior +http://purl.obolibrary.org/obo/UBERON_0002128,superior olivary complex,regio olivaris superioris +http://purl.obolibrary.org/obo/UBERON_0002128,superior olivary complex,superior olivary nuclei +http://purl.obolibrary.org/obo/UBERON_0002128,superior olivary complex,superior olivary nucleus +http://purl.obolibrary.org/obo/UBERON_0002128,superior olivary complex,superior olivary nucleus (Barr & Kiernan) +http://purl.obolibrary.org/obo/UBERON_0002128,superior olivary complex,superior olive +http://purl.obolibrary.org/obo/UBERON_0002129,cerebellar cortex,cortex cerebellaris +http://purl.obolibrary.org/obo/UBERON_0002129,cerebellar cortex,cortex cerebelli +http://purl.obolibrary.org/obo/UBERON_0002129,cerebellar cortex,cortex of cerebellar hemisphere +http://purl.obolibrary.org/obo/UBERON_0002130,cerebellar nuclear complex,central nuclei +http://purl.obolibrary.org/obo/UBERON_0002130,cerebellar nuclear complex,cerebellar nuclei +http://purl.obolibrary.org/obo/UBERON_0002130,cerebellar nuclear complex,deep cerebellar nuclear complex +http://purl.obolibrary.org/obo/UBERON_0002130,cerebellar nuclear complex,deep cerebellar nuclei +http://purl.obolibrary.org/obo/UBERON_0002130,cerebellar nuclear complex,intracerebellar nuclei +http://purl.obolibrary.org/obo/UBERON_0002130,cerebellar nuclear complex,intrinsic nuclei of cerebellum +http://purl.obolibrary.org/obo/UBERON_0002130,cerebellar nuclear complex,nuclei cerebellares +http://purl.obolibrary.org/obo/UBERON_0002130,cerebellar nuclear complex,nuclei cerebellaris +http://purl.obolibrary.org/obo/UBERON_0002130,cerebellar nuclear complex,nuclei cerebelli +http://purl.obolibrary.org/obo/UBERON_0002130,cerebellar nuclear complex,roof nuclei-2 +http://purl.obolibrary.org/obo/UBERON_0002131,anterior lobe of cerebellum,anterior cerebellar lobe +http://purl.obolibrary.org/obo/UBERON_0002131,anterior lobe of cerebellum,anterior lobe of cerebellum +http://purl.obolibrary.org/obo/UBERON_0002131,anterior lobe of cerebellum,anterior lobe of the cerebellum +http://purl.obolibrary.org/obo/UBERON_0002131,anterior lobe of cerebellum,cerebellar anterior lobe +http://purl.obolibrary.org/obo/UBERON_0002131,anterior lobe of cerebellum,cerebellum anterior lobe +http://purl.obolibrary.org/obo/UBERON_0002132,dentate nucleus,dentate cerebellar nucleus +http://purl.obolibrary.org/obo/UBERON_0002132,dentate nucleus,lateral cerebellar nucleus +http://purl.obolibrary.org/obo/UBERON_0002132,dentate nucleus,lateral nucleus of cerebellum +http://purl.obolibrary.org/obo/UBERON_0002133,atrioventricular valve,AV valve +http://purl.obolibrary.org/obo/UBERON_0002134,tricuspid valve,right atrioventricular valve +http://purl.obolibrary.org/obo/UBERON_0002134,tricuspid valve,valva atrioventricularis dextra +http://purl.obolibrary.org/obo/UBERON_0002135,mitral valve,left atrioventricular valve +http://purl.obolibrary.org/obo/UBERON_0002135,mitral valve,valva atrioventricularis sinistra +http://purl.obolibrary.org/obo/UBERON_0002136,hilus of dentate gyrus,CA4 +http://purl.obolibrary.org/obo/UBERON_0002136,hilus of dentate gyrus,dentate gyrus hilus +http://purl.obolibrary.org/obo/UBERON_0002136,hilus of dentate gyrus,field CA4 of hippocampal formation +http://purl.obolibrary.org/obo/UBERON_0002136,hilus of dentate gyrus,hilus gyri dentati +http://purl.obolibrary.org/obo/UBERON_0002136,hilus of dentate gyrus,hilus of the dentate gyrus +http://purl.obolibrary.org/obo/UBERON_0002136,hilus of dentate gyrus,multiform layer of dentate gyrus +http://purl.obolibrary.org/obo/UBERON_0002136,hilus of dentate gyrus,polymorphic later of dentate gyrus +http://purl.obolibrary.org/obo/UBERON_0002136,hilus of dentate gyrus,region CA4 +http://purl.obolibrary.org/obo/UBERON_0002137,aortic valve, +http://purl.obolibrary.org/obo/UBERON_0002138,habenulo-interpeduncular tract,Meynert's retroflex bundle +http://purl.obolibrary.org/obo/UBERON_0002138,habenulo-interpeduncular tract,fasciculus retroflexus +http://purl.obolibrary.org/obo/UBERON_0002138,habenulo-interpeduncular tract,fasciculus retroflexus (Meynert) +http://purl.obolibrary.org/obo/UBERON_0002138,habenulo-interpeduncular tract,habenulointerpeduncular fasciculus +http://purl.obolibrary.org/obo/UBERON_0002138,habenulo-interpeduncular tract,habenulopeduncular tract +http://purl.obolibrary.org/obo/UBERON_0002138,habenulo-interpeduncular tract,tractus habenulo-interpeduncularis +http://purl.obolibrary.org/obo/UBERON_0002139,subcommissural organ, +http://purl.obolibrary.org/obo/UBERON_0002140,parabigeminal nucleus,nucleus parabigeminalis +http://purl.obolibrary.org/obo/UBERON_0002141,parvocellular oculomotor nucleus,EW +http://purl.obolibrary.org/obo/UBERON_0002141,parvocellular oculomotor nucleus,Edinger-Westphal nucleus +http://purl.obolibrary.org/obo/UBERON_0002141,parvocellular oculomotor nucleus,Edinger-Westphal nucleus of oculomotor nerve +http://purl.obolibrary.org/obo/UBERON_0002141,parvocellular oculomotor nucleus,PC3 +http://purl.obolibrary.org/obo/UBERON_0002141,parvocellular oculomotor nucleus,accessory oculomotor nucleus +http://purl.obolibrary.org/obo/UBERON_0002141,parvocellular oculomotor nucleus,nuclei accessorii nervi oculomtorii (Edinger-Westphal) +http://purl.obolibrary.org/obo/UBERON_0002141,parvocellular oculomotor nucleus,nucleus Edinger Westphal +http://purl.obolibrary.org/obo/UBERON_0002141,parvocellular oculomotor nucleus,nucleus Edinger-Westphal +http://purl.obolibrary.org/obo/UBERON_0002141,parvocellular oculomotor nucleus,nucleus Westphal-Edinger +http://purl.obolibrary.org/obo/UBERON_0002141,parvocellular oculomotor nucleus,nucleus nervi oculomotorii Edinger-Westphal +http://purl.obolibrary.org/obo/UBERON_0002141,parvocellular oculomotor nucleus,nucleus nervi oculomotorii parvocellularis +http://purl.obolibrary.org/obo/UBERON_0002141,parvocellular oculomotor nucleus,nucleus rostralis nervi oculomotorii +http://purl.obolibrary.org/obo/UBERON_0002141,parvocellular oculomotor nucleus,"oculomotor nucleus, parvicellular part" +http://purl.obolibrary.org/obo/UBERON_0002141,parvocellular oculomotor nucleus,"oculomotor nucleus, parvocellular part" +http://purl.obolibrary.org/obo/UBERON_0002142,pedunculopontine tegmental nucleus,PPTg +http://purl.obolibrary.org/obo/UBERON_0002142,pedunculopontine tegmental nucleus,nucleus pedunculopontinus +http://purl.obolibrary.org/obo/UBERON_0002142,pedunculopontine tegmental nucleus,nucleus tegmenti pedunculopontinus +http://purl.obolibrary.org/obo/UBERON_0002142,pedunculopontine tegmental nucleus,peduncular pontine nucleus +http://purl.obolibrary.org/obo/UBERON_0002142,pedunculopontine tegmental nucleus,pedunculopontine nucleus +http://purl.obolibrary.org/obo/UBERON_0002143,dorsal tegmental nucleus,dorsal tegmental nucleus (Gudden) +http://purl.obolibrary.org/obo/UBERON_0002143,dorsal tegmental nucleus,dorsal tegmental nucleus of Gudden +http://purl.obolibrary.org/obo/UBERON_0002143,dorsal tegmental nucleus,gudden nucleus +http://purl.obolibrary.org/obo/UBERON_0002143,dorsal tegmental nucleus,nucleus tegmentalis dorsalis +http://purl.obolibrary.org/obo/UBERON_0002143,dorsal tegmental nucleus,nucleus tegmentalis posterior +http://purl.obolibrary.org/obo/UBERON_0002143,dorsal tegmental nucleus,posterior tegmental nucleus +http://purl.obolibrary.org/obo/UBERON_0002143,dorsal tegmental nucleus,von Gudden's nucleus +http://purl.obolibrary.org/obo/UBERON_0002144,peripeduncular nucleus,peripeduncular nucleus of pons +http://purl.obolibrary.org/obo/UBERON_0002145,interpeduncular nucleus,IP +http://purl.obolibrary.org/obo/UBERON_0002145,interpeduncular nucleus,interpedunclear nucleus +http://purl.obolibrary.org/obo/UBERON_0002145,interpeduncular nucleus,interpeduncular ganglion +http://purl.obolibrary.org/obo/UBERON_0002145,interpeduncular nucleus,interpeduncular nuclei +http://purl.obolibrary.org/obo/UBERON_0002145,interpeduncular nucleus,interpeduncular nucleus (Gudden) +http://purl.obolibrary.org/obo/UBERON_0002145,interpeduncular nucleus,interpeduncular nucleus of midbrain +http://purl.obolibrary.org/obo/UBERON_0002145,interpeduncular nucleus,interpeduncular nucleus tegmentum +http://purl.obolibrary.org/obo/UBERON_0002145,interpeduncular nucleus,nucleus interpeduncularis +http://purl.obolibrary.org/obo/UBERON_0002145,interpeduncular nucleus,nucleus interpeduncularis medialis +http://purl.obolibrary.org/obo/UBERON_0002146,pulmonary valve,pulmonic valve +http://purl.obolibrary.org/obo/UBERON_0002147,reticulotegmental nucleus,nucleus reticularis tegmenti pontis +http://purl.obolibrary.org/obo/UBERON_0002147,reticulotegmental nucleus,reticular tegmental nucleus +http://purl.obolibrary.org/obo/UBERON_0002147,reticulotegmental nucleus,reticulotegmental nucleus of pons +http://purl.obolibrary.org/obo/UBERON_0002147,reticulotegmental nucleus,"tegmental reticular nucleus, pontine gray" +http://purl.obolibrary.org/obo/UBERON_0002148,locus ceruleus,Noradrenergic cell group A6 +http://purl.obolibrary.org/obo/UBERON_0002148,locus ceruleus,blue nucleus +http://purl.obolibrary.org/obo/UBERON_0002148,locus ceruleus,caerulean nucleus +http://purl.obolibrary.org/obo/UBERON_0002148,locus ceruleus,loci coeruleus +http://purl.obolibrary.org/obo/UBERON_0002148,locus ceruleus,locus caeruleus +http://purl.obolibrary.org/obo/UBERON_0002148,locus ceruleus,locus cinereus +http://purl.obolibrary.org/obo/UBERON_0002148,locus ceruleus,locus coeruleu +http://purl.obolibrary.org/obo/UBERON_0002148,locus ceruleus,locus coeruleus +http://purl.obolibrary.org/obo/UBERON_0002148,locus ceruleus,locus coeruleus (Vicq d'Azyr) +http://purl.obolibrary.org/obo/UBERON_0002148,locus ceruleus,nucleus caeruleus +http://purl.obolibrary.org/obo/UBERON_0002148,locus ceruleus,nucleus loci caerulei +http://purl.obolibrary.org/obo/UBERON_0002148,locus ceruleus,nucleus of locus caeruleus +http://purl.obolibrary.org/obo/UBERON_0002148,locus ceruleus,nucleus pigmentosus pontis +http://purl.obolibrary.org/obo/UBERON_0002148,locus ceruleus,substantia ferruginea +http://purl.obolibrary.org/obo/UBERON_0002149,superior salivatory nucleus,nucleus salivarius superior +http://purl.obolibrary.org/obo/UBERON_0002149,superior salivatory nucleus,nucleus salivatorius cranialis +http://purl.obolibrary.org/obo/UBERON_0002149,superior salivatory nucleus,nucleus salivatorius rostralis +http://purl.obolibrary.org/obo/UBERON_0002149,superior salivatory nucleus,nucleus salivatorius superior +http://purl.obolibrary.org/obo/UBERON_0002149,superior salivatory nucleus,superior salivary nucleus +http://purl.obolibrary.org/obo/UBERON_0002150,superior cerebellar peduncle,brachium conjunctivum +http://purl.obolibrary.org/obo/UBERON_0002151,pontine nuclear group,nuclei brachii pontis +http://purl.obolibrary.org/obo/UBERON_0002151,pontine nuclear group,nuclei pontis +http://purl.obolibrary.org/obo/UBERON_0002151,pontine nuclear group,nucleus pontis +http://purl.obolibrary.org/obo/UBERON_0002151,pontine nuclear group,pontine gray +http://purl.obolibrary.org/obo/UBERON_0002151,pontine nuclear group,pontine gray matter +http://purl.obolibrary.org/obo/UBERON_0002151,pontine nuclear group,pontine grey matter +http://purl.obolibrary.org/obo/UBERON_0002151,pontine nuclear group,pontine nuclear complex +http://purl.obolibrary.org/obo/UBERON_0002151,pontine nuclear group,pontine nuclear group +http://purl.obolibrary.org/obo/UBERON_0002151,pontine nuclear group,pontine nuclei +http://purl.obolibrary.org/obo/UBERON_0002151,pontine nuclear group,pontine nucleus +http://purl.obolibrary.org/obo/UBERON_0002152,middle cerebellar peduncle,brachium pontis +http://purl.obolibrary.org/obo/UBERON_0002153,fastigial nucleus,medial (fastigial) nucleus +http://purl.obolibrary.org/obo/UBERON_0002153,fastigial nucleus,medial cerebellar nucleus +http://purl.obolibrary.org/obo/UBERON_0002153,fastigial nucleus,nucleus fastigii +http://purl.obolibrary.org/obo/UBERON_0002153,fastigial nucleus,roof nucleus-1 +http://purl.obolibrary.org/obo/UBERON_0002154,lateral reticular nucleus,lateral reticular nucleus (medulla) +http://purl.obolibrary.org/obo/UBERON_0002155,gigantocellular nucleus,gigantocellular group +http://purl.obolibrary.org/obo/UBERON_0002155,gigantocellular nucleus,gigantocellular reticular nuclei +http://purl.obolibrary.org/obo/UBERON_0002155,gigantocellular nucleus,gigantocellular reticular nucleus +http://purl.obolibrary.org/obo/UBERON_0002155,gigantocellular nucleus,nucleus gigantocellularis +http://purl.obolibrary.org/obo/UBERON_0002155,gigantocellular nucleus,nucleus reticularis gigantocellularis +http://purl.obolibrary.org/obo/UBERON_0002156,nucleus raphe magnus,magnus raphe nucleus +http://purl.obolibrary.org/obo/UBERON_0002156,nucleus raphe magnus,nucleus raphes magnus +http://purl.obolibrary.org/obo/UBERON_0002156,nucleus raphe magnus,raphe magnus nucleus +http://purl.obolibrary.org/obo/UBERON_0002157,nucleus raphe pallidus,nucleus raphes pallidus +http://purl.obolibrary.org/obo/UBERON_0002157,nucleus raphe pallidus,pallidal raphe nucleus +http://purl.obolibrary.org/obo/UBERON_0002157,nucleus raphe pallidus,raphe pallidus nucleus +http://purl.obolibrary.org/obo/UBERON_0002158,principal inferior olivary nucleus,chief inferior olivary nucleus +http://purl.obolibrary.org/obo/UBERON_0002158,principal inferior olivary nucleus,convoluted olive +http://purl.obolibrary.org/obo/UBERON_0002158,principal inferior olivary nucleus,"inferior olivary complex, principal olive" +http://purl.obolibrary.org/obo/UBERON_0002158,principal inferior olivary nucleus,inferior olive principal nucleus +http://purl.obolibrary.org/obo/UBERON_0002158,principal inferior olivary nucleus,"inferior olive, principal nucleus" +http://purl.obolibrary.org/obo/UBERON_0002158,principal inferior olivary nucleus,main olivary nucleus +http://purl.obolibrary.org/obo/UBERON_0002158,principal inferior olivary nucleus,nucleus olivaris principalis +http://purl.obolibrary.org/obo/UBERON_0002158,principal inferior olivary nucleus,principal nucleus of inferior olive +http://purl.obolibrary.org/obo/UBERON_0002158,principal inferior olivary nucleus,principal olivary nucleus +http://purl.obolibrary.org/obo/UBERON_0002158,principal inferior olivary nucleus,principal olive +http://purl.obolibrary.org/obo/UBERON_0002159,medial accessory inferior olivary nucleus,"inferior olivary complex, medial accessory olive" +http://purl.obolibrary.org/obo/UBERON_0002159,medial accessory inferior olivary nucleus,inferior olive medial nucleus +http://purl.obolibrary.org/obo/UBERON_0002159,medial accessory inferior olivary nucleus,"inferior olive, medial nucleus" +http://purl.obolibrary.org/obo/UBERON_0002159,medial accessory inferior olivary nucleus,medial accessory olivary nucleus +http://purl.obolibrary.org/obo/UBERON_0002159,medial accessory inferior olivary nucleus,nucleus olivaris accessorius medialis +http://purl.obolibrary.org/obo/UBERON_0002160,nucleus prepositus,PrP +http://purl.obolibrary.org/obo/UBERON_0002160,nucleus prepositus,nucleus praepositus +http://purl.obolibrary.org/obo/UBERON_0002160,nucleus prepositus,nucleus praepositus hypoglossi +http://purl.obolibrary.org/obo/UBERON_0002160,nucleus prepositus,nucleus prepositus hypoglossi +http://purl.obolibrary.org/obo/UBERON_0002160,nucleus prepositus,nucleus prepositus hypoglossus +http://purl.obolibrary.org/obo/UBERON_0002160,nucleus prepositus,prepositus hypoglossal nucleus +http://purl.obolibrary.org/obo/UBERON_0002160,nucleus prepositus,prepositus nucleus +http://purl.obolibrary.org/obo/UBERON_0002160,nucleus prepositus,prepositus nucleus (Marburg) +http://purl.obolibrary.org/obo/UBERON_0002161,gracile nucleus,Goll's nucleus +http://purl.obolibrary.org/obo/UBERON_0002161,gracile nucleus,golls nucleus +http://purl.obolibrary.org/obo/UBERON_0002161,gracile nucleus,gracile nucleus (Goll) +http://purl.obolibrary.org/obo/UBERON_0002161,gracile nucleus,gracile nucleus of the medulla +http://purl.obolibrary.org/obo/UBERON_0002161,gracile nucleus,"gracile nucleus, general" +http://purl.obolibrary.org/obo/UBERON_0002161,gracile nucleus,"gracile nucleus, principal part" +http://purl.obolibrary.org/obo/UBERON_0002161,gracile nucleus,nucleus gracilis +http://purl.obolibrary.org/obo/UBERON_0002162,area postrema,AP +http://purl.obolibrary.org/obo/UBERON_0002162,area postrema,chemoreceptor trigger zone +http://purl.obolibrary.org/obo/UBERON_0002163,inferior cerebellar peduncle,corpus restiforme +http://purl.obolibrary.org/obo/UBERON_0002163,inferior cerebellar peduncle,restiform body +http://purl.obolibrary.org/obo/UBERON_0002164,tectobulbar tract,tecto-bulbar tract +http://purl.obolibrary.org/obo/UBERON_0002165,endocardium,endocardial lining +http://purl.obolibrary.org/obo/UBERON_0002165,endocardium,endocardial tissue +http://purl.obolibrary.org/obo/UBERON_0002165,endocardium,heart endocardium +http://purl.obolibrary.org/obo/UBERON_0002166,endocardium of atrium,Cardiac atria endocardium +http://purl.obolibrary.org/obo/UBERON_0002166,endocardium of atrium,atrial endocardium +http://purl.obolibrary.org/obo/UBERON_0002166,endocardium of atrium,atrium endocardium +http://purl.obolibrary.org/obo/UBERON_0002166,endocardium of atrium,atrium of heart endocardium +http://purl.obolibrary.org/obo/UBERON_0002166,endocardium of atrium,cardiac atrium endocardium +http://purl.obolibrary.org/obo/UBERON_0002166,endocardium of atrium,endocardium of Cardiac atria +http://purl.obolibrary.org/obo/UBERON_0002166,endocardium of atrium,endocardium of atrium of heart +http://purl.obolibrary.org/obo/UBERON_0002166,endocardium of atrium,endocardium of cardiac atrium +http://purl.obolibrary.org/obo/UBERON_0002166,endocardium of atrium,endocardium of heart atrium +http://purl.obolibrary.org/obo/UBERON_0002166,endocardium of atrium,heart atrium endocardium +http://purl.obolibrary.org/obo/UBERON_0002167,right lung, +http://purl.obolibrary.org/obo/UBERON_0002168,left lung, +http://purl.obolibrary.org/obo/UBERON_0002169,alveolar sac,pulmonary alveolar sac +http://purl.obolibrary.org/obo/UBERON_0002169,alveolar sac,sacculus alveolaris +http://purl.obolibrary.org/obo/UBERON_0002170,upper lobe of right lung,lobus superior (pulmo dexter) +http://purl.obolibrary.org/obo/UBERON_0002170,upper lobe of right lung,lobus superior pulmonis dextri +http://purl.obolibrary.org/obo/UBERON_0002170,upper lobe of right lung,right cranial lobe of lung +http://purl.obolibrary.org/obo/UBERON_0002170,upper lobe of right lung,right lung cranial lobe +http://purl.obolibrary.org/obo/UBERON_0002170,upper lobe of right lung,right upper lobe +http://purl.obolibrary.org/obo/UBERON_0002170,upper lobe of right lung,right upper lobe of lung +http://purl.obolibrary.org/obo/UBERON_0002170,upper lobe of right lung,superior lobe of right lung +http://purl.obolibrary.org/obo/UBERON_0002170,upper lobe of right lung,upper lobe of right lung +http://purl.obolibrary.org/obo/UBERON_0002171,lower lobe of right lung,inferior lobe of right lung +http://purl.obolibrary.org/obo/UBERON_0002171,lower lobe of right lung,lobus inferior (pulmo dexter) +http://purl.obolibrary.org/obo/UBERON_0002171,lower lobe of right lung,lobus inferior pulmonis dextri +http://purl.obolibrary.org/obo/UBERON_0002171,lower lobe of right lung,lower lobe of right lung +http://purl.obolibrary.org/obo/UBERON_0002171,lower lobe of right lung,right caudal lobe of lung +http://purl.obolibrary.org/obo/UBERON_0002171,lower lobe of right lung,right lower lobe +http://purl.obolibrary.org/obo/UBERON_0002171,lower lobe of right lung,right lower lobe of lung +http://purl.obolibrary.org/obo/UBERON_0002172,alveolar atrium,alveolus of lung atrium +http://purl.obolibrary.org/obo/UBERON_0002172,alveolar atrium,atrium alveolare +http://purl.obolibrary.org/obo/UBERON_0002172,alveolar atrium,atrium of alveolus +http://purl.obolibrary.org/obo/UBERON_0002172,alveolar atrium,atrium of alveolus of lung +http://purl.obolibrary.org/obo/UBERON_0002172,alveolar atrium,atrium of lung alveolus +http://purl.obolibrary.org/obo/UBERON_0002172,alveolar atrium,lung alveolus atrium +http://purl.obolibrary.org/obo/UBERON_0002173,pulmonary alveolar duct,alveolar duct +http://purl.obolibrary.org/obo/UBERON_0002173,pulmonary alveolar duct,ductus alveolaris +http://purl.obolibrary.org/obo/UBERON_0002173,pulmonary alveolar duct,respiratory alveolar duct +http://purl.obolibrary.org/obo/UBERON_0002174,middle lobe of right lung,intermediate lobe of right lung +http://purl.obolibrary.org/obo/UBERON_0002174,middle lobe of right lung,lobus medius pulmonis dextri +http://purl.obolibrary.org/obo/UBERON_0002174,middle lobe of right lung,right lung middle lobe +http://purl.obolibrary.org/obo/UBERON_0002174,middle lobe of right lung,"right lung, middle lobe" +http://purl.obolibrary.org/obo/UBERON_0002174,middle lobe of right lung,right medial lobe of lung +http://purl.obolibrary.org/obo/UBERON_0002174,middle lobe of right lung,right middle lobe of lung +http://purl.obolibrary.org/obo/UBERON_0002175,intermediolateral nucleus,intermediolateral nucleus of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002175,intermediolateral nucleus,nucleus intermediolateralis medullae spinalis +http://purl.obolibrary.org/obo/UBERON_0002175,intermediolateral nucleus,spinal cord intermediolateral nucleus +http://purl.obolibrary.org/obo/UBERON_0002176,lateral cervical nucleus, +http://purl.obolibrary.org/obo/UBERON_0002177,right main bronchus,right major bronchus +http://purl.obolibrary.org/obo/UBERON_0002177,right main bronchus,right primary bronchus +http://purl.obolibrary.org/obo/UBERON_0002177,right main bronchus,right principal bronchus +http://purl.obolibrary.org/obo/UBERON_0002178,left main bronchus,left major bronchus +http://purl.obolibrary.org/obo/UBERON_0002178,left main bronchus,left primary bronchus +http://purl.obolibrary.org/obo/UBERON_0002178,left main bronchus,left principal bronchus +http://purl.obolibrary.org/obo/UBERON_0002179,lateral funiculus of spinal cord,lateral funiculus +http://purl.obolibrary.org/obo/UBERON_0002179,lateral funiculus of spinal cord,lateral funiculus of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002179,lateral funiculus of spinal cord,lateral white column of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002180,ventral funiculus of spinal cord,anterior funiculus +http://purl.obolibrary.org/obo/UBERON_0002180,ventral funiculus of spinal cord,anterior funiculus of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002180,ventral funiculus of spinal cord,anterior white column of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002180,ventral funiculus of spinal cord,funiculus anterior medullae spinalis +http://purl.obolibrary.org/obo/UBERON_0002180,ventral funiculus of spinal cord,ventral funiculi +http://purl.obolibrary.org/obo/UBERON_0002180,ventral funiculus of spinal cord,ventral funiculus +http://purl.obolibrary.org/obo/UBERON_0002180,ventral funiculus of spinal cord,ventral funiculus of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002180,ventral funiculus of spinal cord,ventral white column of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002181,substantia gelatinosa,central gelatinous substance of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002181,substantia gelatinosa,gelatinous substance of Rolando +http://purl.obolibrary.org/obo/UBERON_0002181,substantia gelatinosa,gelatinous substance of dorsal horn of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002181,substantia gelatinosa,gelatinous substance of posterior horn of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002181,substantia gelatinosa,lamina II of gray matter of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002181,substantia gelatinosa,lamina spinalis II +http://purl.obolibrary.org/obo/UBERON_0002181,substantia gelatinosa,rexed lamina II +http://purl.obolibrary.org/obo/UBERON_0002181,substantia gelatinosa,spinal lamina II +http://purl.obolibrary.org/obo/UBERON_0002181,substantia gelatinosa,substantia gelatinosa cornu posterioris medullae spinalis +http://purl.obolibrary.org/obo/UBERON_0002181,substantia gelatinosa,substantia gelatinosa of spinal cord dorsal horn +http://purl.obolibrary.org/obo/UBERON_0002182,main bronchus,bronchus principalis +http://purl.obolibrary.org/obo/UBERON_0002182,main bronchus,extrapulmonary bronchus +http://purl.obolibrary.org/obo/UBERON_0002182,main bronchus,mainstem bronchus +http://purl.obolibrary.org/obo/UBERON_0002182,main bronchus,major bronchus +http://purl.obolibrary.org/obo/UBERON_0002182,main bronchus,primary bronchus +http://purl.obolibrary.org/obo/UBERON_0002182,main bronchus,principal bronchus +http://purl.obolibrary.org/obo/UBERON_0002183,lobar bronchus,bronchi lobaris +http://purl.obolibrary.org/obo/UBERON_0002183,lobar bronchus,secondary bronchus +http://purl.obolibrary.org/obo/UBERON_0002184,segmental bronchus,tertiary bronchus +http://purl.obolibrary.org/obo/UBERON_0002185,bronchus,bronchi +http://purl.obolibrary.org/obo/UBERON_0002185,bronchus,bronchial tissue +http://purl.obolibrary.org/obo/UBERON_0002185,bronchus,bronchial trunk +http://purl.obolibrary.org/obo/UBERON_0002186,bronchiole,bronchioli +http://purl.obolibrary.org/obo/UBERON_0002186,bronchiole,bronchiolus +http://purl.obolibrary.org/obo/UBERON_0002187,terminal bronchiole,bronchioli terminalis +http://purl.obolibrary.org/obo/UBERON_0002187,terminal bronchiole,bronchiolus terminalis +http://purl.obolibrary.org/obo/UBERON_0002187,terminal bronchiole,terminal bronchiole tube +http://purl.obolibrary.org/obo/UBERON_0002188,respiratory bronchiole,bronchiolus respiratorii +http://purl.obolibrary.org/obo/UBERON_0002188,respiratory bronchiole,bronchiolus respiratorius +http://purl.obolibrary.org/obo/UBERON_0002189,outer cortex of kidney,kidney outer cortex +http://purl.obolibrary.org/obo/UBERON_0002189,outer cortex of kidney,outer renal cortex +http://purl.obolibrary.org/obo/UBERON_0002190,subcutaneous adipose tissue,fatty layer of subcutaneous tissue +http://purl.obolibrary.org/obo/UBERON_0002190,subcutaneous adipose tissue,fatty layer of superficial fascia +http://purl.obolibrary.org/obo/UBERON_0002190,subcutaneous adipose tissue,hypodermis fat layer +http://purl.obolibrary.org/obo/UBERON_0002190,subcutaneous adipose tissue,panniculus adiposus +http://purl.obolibrary.org/obo/UBERON_0002190,subcutaneous adipose tissue,panniculus adiposus (tela subcutanea) +http://purl.obolibrary.org/obo/UBERON_0002190,subcutaneous adipose tissue,panniculus adiposus telae subcutaneae +http://purl.obolibrary.org/obo/UBERON_0002190,subcutaneous adipose tissue,subcutaneous fat +http://purl.obolibrary.org/obo/UBERON_0002190,subcutaneous adipose tissue,subcutaneous fat layer +http://purl.obolibrary.org/obo/UBERON_0002191,subiculum,gyrus parahippocampalis +http://purl.obolibrary.org/obo/UBERON_0002191,subiculum,subicular cortex +http://purl.obolibrary.org/obo/UBERON_0002191,subiculum,subiculum cornu ammonis +http://purl.obolibrary.org/obo/UBERON_0002191,subiculum,subiculum hippocampi +http://purl.obolibrary.org/obo/UBERON_0002192,ventricular system choroidal fissure,choroidal fissure of lateral ventricle +http://purl.obolibrary.org/obo/UBERON_0002192,ventricular system choroidal fissure,lateral ventricle choroid fissure +http://purl.obolibrary.org/obo/UBERON_0002192,ventricular system choroidal fissure,ventricular system choroid fissure +http://purl.obolibrary.org/obo/UBERON_0002193,hemolymphoid system,haemolymphoid system +http://purl.obolibrary.org/obo/UBERON_0002193,hemolymphoid system,hematolymphoid system +http://purl.obolibrary.org/obo/UBERON_0002193,hemolymphoid system,lymphomyeloid complex +http://purl.obolibrary.org/obo/UBERON_0002194,capsule of lymph node,capsula nodi lymphoidei +http://purl.obolibrary.org/obo/UBERON_0002194,capsule of lymph node,lymph node capsule +http://purl.obolibrary.org/obo/UBERON_0002195,trabecula of lymph node,lymph node trabecula +http://purl.obolibrary.org/obo/UBERON_0002195,trabecula of lymph node,lymph node trabeculae +http://purl.obolibrary.org/obo/UBERON_0002195,trabecula of lymph node,lymph node trabeculum +http://purl.obolibrary.org/obo/UBERON_0002195,trabecula of lymph node,trabeculae of lymph node +http://purl.obolibrary.org/obo/UBERON_0002196,adenohypophysis,anterior hypophysis +http://purl.obolibrary.org/obo/UBERON_0002196,adenohypophysis,anterior lobe (hypophysis) +http://purl.obolibrary.org/obo/UBERON_0002196,adenohypophysis,anterior lobe of hypophysis +http://purl.obolibrary.org/obo/UBERON_0002196,adenohypophysis,anterior lobe of pituitary +http://purl.obolibrary.org/obo/UBERON_0002196,adenohypophysis,anterior lobe of pituitary gland +http://purl.obolibrary.org/obo/UBERON_0002196,adenohypophysis,anterior pituitary +http://purl.obolibrary.org/obo/UBERON_0002196,adenohypophysis,lobus anterior (glandula pituitaria) +http://purl.obolibrary.org/obo/UBERON_0002196,adenohypophysis,lobus anterior hypophysis +http://purl.obolibrary.org/obo/UBERON_0002196,adenohypophysis,"pituitary gland, anterior lobe" +http://purl.obolibrary.org/obo/UBERON_0002197,median eminence of neurohypophysis,ME +http://purl.obolibrary.org/obo/UBERON_0002197,median eminence of neurohypophysis,eminentia medialis (Shantha) +http://purl.obolibrary.org/obo/UBERON_0002197,median eminence of neurohypophysis,eminentia mediana +http://purl.obolibrary.org/obo/UBERON_0002197,median eminence of neurohypophysis,eminentia mediana hypothalami +http://purl.obolibrary.org/obo/UBERON_0002197,median eminence of neurohypophysis,eminentia postinfundibularis +http://purl.obolibrary.org/obo/UBERON_0002197,median eminence of neurohypophysis,medial eminence +http://purl.obolibrary.org/obo/UBERON_0002197,median eminence of neurohypophysis,median eminence +http://purl.obolibrary.org/obo/UBERON_0002197,median eminence of neurohypophysis,median eminence of hypothalamus +http://purl.obolibrary.org/obo/UBERON_0002197,median eminence of neurohypophysis,median eminence of posterior lobe of pituitary gland +http://purl.obolibrary.org/obo/UBERON_0002197,median eminence of neurohypophysis,median eminence of tuber cinereum +http://purl.obolibrary.org/obo/UBERON_0002198,neurohypophysis,NHP +http://purl.obolibrary.org/obo/UBERON_0002198,neurohypophysis,infundibular process +http://purl.obolibrary.org/obo/UBERON_0002198,neurohypophysis,lobus nervosus +http://purl.obolibrary.org/obo/UBERON_0002198,neurohypophysis,lobus nervosus neurohypophysis +http://purl.obolibrary.org/obo/UBERON_0002198,neurohypophysis,lobus posterior +http://purl.obolibrary.org/obo/UBERON_0002198,neurohypophysis,lobus posterior (glandula pituitaria) +http://purl.obolibrary.org/obo/UBERON_0002198,neurohypophysis,lobus posterior hypophysis +http://purl.obolibrary.org/obo/UBERON_0002198,neurohypophysis,neural lobe +http://purl.obolibrary.org/obo/UBERON_0002198,neurohypophysis,neural lobe of pituitary +http://purl.obolibrary.org/obo/UBERON_0002198,neurohypophysis,neural lobe of pituitary gland +http://purl.obolibrary.org/obo/UBERON_0002198,neurohypophysis,neuro hypophysis +http://purl.obolibrary.org/obo/UBERON_0002198,neurohypophysis,neurohypophysis +http://purl.obolibrary.org/obo/UBERON_0002198,neurohypophysis,pituitary gland neural lobe +http://purl.obolibrary.org/obo/UBERON_0002198,neurohypophysis,"pituitary gland, neural lobe" +http://purl.obolibrary.org/obo/UBERON_0002198,neurohypophysis,"pituitary gland, posterior lobe" +http://purl.obolibrary.org/obo/UBERON_0002198,neurohypophysis,posterior lobe of hypophysis +http://purl.obolibrary.org/obo/UBERON_0002198,neurohypophysis,posterior lobe of pituitary +http://purl.obolibrary.org/obo/UBERON_0002198,neurohypophysis,posterior lobe of pituitary gland +http://purl.obolibrary.org/obo/UBERON_0002198,neurohypophysis,posterior pituitary +http://purl.obolibrary.org/obo/UBERON_0002198,neurohypophysis,posterior pituitary gland +http://purl.obolibrary.org/obo/UBERON_0002199,integument,dermal system +http://purl.obolibrary.org/obo/UBERON_0002199,integument,dermis plus epidermis plus hypodermis +http://purl.obolibrary.org/obo/UBERON_0002199,integument,dermoid system +http://purl.obolibrary.org/obo/UBERON_0002199,integument,integumentum commune +http://purl.obolibrary.org/obo/UBERON_0002199,integument,skin +http://purl.obolibrary.org/obo/UBERON_0002199,integument,skin and subcutaneous tissue +http://purl.obolibrary.org/obo/UBERON_0002199,integument,skin plus hypodermis +http://purl.obolibrary.org/obo/UBERON_0002199,integument,tegument +http://purl.obolibrary.org/obo/UBERON_0002199,integument,the integument +http://purl.obolibrary.org/obo/UBERON_0002199,integument,vertebrate integument +http://purl.obolibrary.org/obo/UBERON_0002200,vasculature of head,adult head vascular network +http://purl.obolibrary.org/obo/UBERON_0002200,vasculature of head,adult head vasculature +http://purl.obolibrary.org/obo/UBERON_0002200,vasculature of head,cranial vasculature +http://purl.obolibrary.org/obo/UBERON_0002200,vasculature of head,head vascular network +http://purl.obolibrary.org/obo/UBERON_0002200,vasculature of head,vascular network of adult head +http://purl.obolibrary.org/obo/UBERON_0002200,vasculature of head,vascular network of head +http://purl.obolibrary.org/obo/UBERON_0002200,vasculature of head,vasculature of adult head +http://purl.obolibrary.org/obo/UBERON_0002201,vasculature of trunk,torso vascular network +http://purl.obolibrary.org/obo/UBERON_0002201,vasculature of trunk,torso vasculature +http://purl.obolibrary.org/obo/UBERON_0002201,vasculature of trunk,trunk vascular network +http://purl.obolibrary.org/obo/UBERON_0002201,vasculature of trunk,trunk vasculature +http://purl.obolibrary.org/obo/UBERON_0002201,vasculature of trunk,vascular network of torso +http://purl.obolibrary.org/obo/UBERON_0002201,vasculature of trunk,vascular network of trunk +http://purl.obolibrary.org/obo/UBERON_0002201,vasculature of trunk,vasculature of torso +http://purl.obolibrary.org/obo/UBERON_0002202,submucosa of trachea,submucosa of windpipe +http://purl.obolibrary.org/obo/UBERON_0002202,submucosa of trachea,trachea submucosa +http://purl.obolibrary.org/obo/UBERON_0002202,submucosa of trachea,tracheal submucosa +http://purl.obolibrary.org/obo/UBERON_0002202,submucosa of trachea,windpipe submucosa +http://purl.obolibrary.org/obo/UBERON_0002203,vasculature of eye,eye vascular network +http://purl.obolibrary.org/obo/UBERON_0002203,vasculature of eye,ocular blood vessel +http://purl.obolibrary.org/obo/UBERON_0002203,vasculature of eye,ocular vasculature +http://purl.obolibrary.org/obo/UBERON_0002203,vasculature of eye,vascular network of eye +http://purl.obolibrary.org/obo/UBERON_0002204,musculoskeletal system,musculo-skeletal system +http://purl.obolibrary.org/obo/UBERON_0002205,manubrium of sternum,manubrium of sternum +http://purl.obolibrary.org/obo/UBERON_0002205,manubrium of sternum,manubrium sterni +http://purl.obolibrary.org/obo/UBERON_0002205,manubrium of sternum,sternal manubrium +http://purl.obolibrary.org/obo/UBERON_0002205,manubrium of sternum,sternal rostrum +http://purl.obolibrary.org/obo/UBERON_0002205,manubrium of sternum,sternum rostrum +http://purl.obolibrary.org/obo/UBERON_0002206,mammillary body,MMB +http://purl.obolibrary.org/obo/UBERON_0002206,mammillary body,corpora mamillaria +http://purl.obolibrary.org/obo/UBERON_0002206,mammillary body,corpora mammillaria +http://purl.obolibrary.org/obo/UBERON_0002206,mammillary body,corpus mamillare +http://purl.obolibrary.org/obo/UBERON_0002206,mammillary body,corpus mamillaris +http://purl.obolibrary.org/obo/UBERON_0002206,mammillary body,corpus mammillare +http://purl.obolibrary.org/obo/UBERON_0002206,mammillary body,mammillary area +http://purl.obolibrary.org/obo/UBERON_0002207,xiphoid process,xiphisternum +http://purl.obolibrary.org/obo/UBERON_0002207,xiphoid process,xiphoid process +http://purl.obolibrary.org/obo/UBERON_0002207,xiphoid process,xiphoid process of sternum +http://purl.obolibrary.org/obo/UBERON_0002208,sternebra, +http://purl.obolibrary.org/obo/UBERON_0002209,fibrous joint,articulatio fibrosa +http://purl.obolibrary.org/obo/UBERON_0002209,fibrous joint,junctura fibrosa +http://purl.obolibrary.org/obo/UBERON_0002210,syndesmosis, +http://purl.obolibrary.org/obo/UBERON_0002211,nerve root,initial segment of nerve +http://purl.obolibrary.org/obo/UBERON_0002211,nerve root,radix nervi +http://purl.obolibrary.org/obo/UBERON_0002212,macula of saccule of membranous labyrinth,macula of membranous labyrinth saccule +http://purl.obolibrary.org/obo/UBERON_0002212,macula of saccule of membranous labyrinth,macula of saccule +http://purl.obolibrary.org/obo/UBERON_0002212,macula of saccule of membranous labyrinth,macula of sacculus (labyrinthus vestibularis) +http://purl.obolibrary.org/obo/UBERON_0002212,macula of saccule of membranous labyrinth,macula saccule +http://purl.obolibrary.org/obo/UBERON_0002212,macula of saccule of membranous labyrinth,macula sacculi +http://purl.obolibrary.org/obo/UBERON_0002212,macula of saccule of membranous labyrinth,membranous labyrinth saccule macula +http://purl.obolibrary.org/obo/UBERON_0002212,macula of saccule of membranous labyrinth,saccular macula +http://purl.obolibrary.org/obo/UBERON_0002212,macula of saccule of membranous labyrinth,saccular macula of membranous labyrinth +http://purl.obolibrary.org/obo/UBERON_0002212,macula of saccule of membranous labyrinth,saccule macula +http://purl.obolibrary.org/obo/UBERON_0002212,macula of saccule of membranous labyrinth,saccule of membranous labyrinth macula +http://purl.obolibrary.org/obo/UBERON_0002212,macula of saccule of membranous labyrinth,sacculus (labyrinthus vestibularis) macula +http://purl.obolibrary.org/obo/UBERON_0002213,cartilaginous joint,articulatio cartilaginea +http://purl.obolibrary.org/obo/UBERON_0002213,cartilaginous joint,junctura cartilaginea +http://purl.obolibrary.org/obo/UBERON_0002214,macula of utricle of membranous labyrinth,macula of membranous labyrinth utricle +http://purl.obolibrary.org/obo/UBERON_0002214,macula of utricle of membranous labyrinth,macula of utricle +http://purl.obolibrary.org/obo/UBERON_0002214,macula of utricle of membranous labyrinth,macula of utriculus (labyrinthus vestibularis) +http://purl.obolibrary.org/obo/UBERON_0002214,macula of utricle of membranous labyrinth,macula utricle +http://purl.obolibrary.org/obo/UBERON_0002214,macula of utricle of membranous labyrinth,macula utriculi +http://purl.obolibrary.org/obo/UBERON_0002214,macula of utricle of membranous labyrinth,membranous labyrinth utricle macula +http://purl.obolibrary.org/obo/UBERON_0002214,macula of utricle of membranous labyrinth,utricle macula +http://purl.obolibrary.org/obo/UBERON_0002214,macula of utricle of membranous labyrinth,utricle of membranous labyrinth macula +http://purl.obolibrary.org/obo/UBERON_0002214,macula of utricle of membranous labyrinth,utriculus (labyrinthus vestibularis) macula +http://purl.obolibrary.org/obo/UBERON_0002215,synchondrosis,cartilago epiphysialis +http://purl.obolibrary.org/obo/UBERON_0002215,synchondrosis,primary cartilaginous joint +http://purl.obolibrary.org/obo/UBERON_0002216,symphysis,secondary cartilaginous joint +http://purl.obolibrary.org/obo/UBERON_0002217,synovial joint,articulatio synoviale +http://purl.obolibrary.org/obo/UBERON_0002217,synovial joint,diarthroses +http://purl.obolibrary.org/obo/UBERON_0002217,synovial joint,diarthrosis +http://purl.obolibrary.org/obo/UBERON_0002217,synovial joint,diarthrosis joint +http://purl.obolibrary.org/obo/UBERON_0002218,tympanic ring, +http://purl.obolibrary.org/obo/UBERON_0002219,subfornical organ, +http://purl.obolibrary.org/obo/UBERON_0002221,fontanelle,fontanel +http://purl.obolibrary.org/obo/UBERON_0002221,fontanelle,fontanelles +http://purl.obolibrary.org/obo/UBERON_0002221,fontanelle,fontanels +http://purl.obolibrary.org/obo/UBERON_0002222,perichondrium, +http://purl.obolibrary.org/obo/UBERON_0002223,endolymphatic sac,saccus endolymphaticus +http://purl.obolibrary.org/obo/UBERON_0002224,thoracic cavity,cavitas thoracis +http://purl.obolibrary.org/obo/UBERON_0002224,thoracic cavity,cavity of chest +http://purl.obolibrary.org/obo/UBERON_0002224,thoracic cavity,cavity of thorax +http://purl.obolibrary.org/obo/UBERON_0002224,thoracic cavity,chest cavity +http://purl.obolibrary.org/obo/UBERON_0002224,thoracic cavity,pectoral cavity +http://purl.obolibrary.org/obo/UBERON_0002224,thoracic cavity,space of thoracic compartment +http://purl.obolibrary.org/obo/UBERON_0002224,thoracic cavity,thoracic lumen +http://purl.obolibrary.org/obo/UBERON_0002225,costal arch, +http://purl.obolibrary.org/obo/UBERON_0002226,basilar membrane of cochlea,basilar membrane +http://purl.obolibrary.org/obo/UBERON_0002227,spiral organ of cochlea,Corti's organ +http://purl.obolibrary.org/obo/UBERON_0002227,spiral organ of cochlea,auditory papilla +http://purl.obolibrary.org/obo/UBERON_0002227,spiral organ of cochlea,auditory papillae +http://purl.obolibrary.org/obo/UBERON_0002227,spiral organ of cochlea,basilar papilla +http://purl.obolibrary.org/obo/UBERON_0002227,spiral organ of cochlea,cochlear spiral organ +http://purl.obolibrary.org/obo/UBERON_0002227,spiral organ of cochlea,organ of Corti +http://purl.obolibrary.org/obo/UBERON_0002227,spiral organ of cochlea,organum spirale +http://purl.obolibrary.org/obo/UBERON_0002227,spiral organ of cochlea,papilla basilaris +http://purl.obolibrary.org/obo/UBERON_0002227,spiral organ of cochlea,spiral organ +http://purl.obolibrary.org/obo/UBERON_0002227,spiral organ of cochlea,spiral organ of Corti +http://purl.obolibrary.org/obo/UBERON_0002228,rib, +http://purl.obolibrary.org/obo/UBERON_0002229,interparietal bone,inter-parietal bone +http://purl.obolibrary.org/obo/UBERON_0002229,interparietal bone,interparietal +http://purl.obolibrary.org/obo/UBERON_0002230,head of rib,rib head +http://purl.obolibrary.org/obo/UBERON_0002231,body of rib,corpus costae +http://purl.obolibrary.org/obo/UBERON_0002231,body of rib,rib body +http://purl.obolibrary.org/obo/UBERON_0002231,body of rib,rib shaft +http://purl.obolibrary.org/obo/UBERON_0002231,body of rib,shaft of rib +http://purl.obolibrary.org/obo/UBERON_0002232,olfactory gland,olfactory gland of Bowman +http://purl.obolibrary.org/obo/UBERON_0002233,tectorial membrane of cochlea,tectorial membrane +http://purl.obolibrary.org/obo/UBERON_0002233,tectorial membrane of cochlea,tectorial membrane of spiral organ of cochlea +http://purl.obolibrary.org/obo/UBERON_0002234,proximal phalanx of manus,hand proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0002234,proximal phalanx of manus,phalanx proximalis manus +http://purl.obolibrary.org/obo/UBERON_0002234,proximal phalanx of manus,proximal manual phalanx +http://purl.obolibrary.org/obo/UBERON_0002234,proximal phalanx of manus,proximal phalanx of finger +http://purl.obolibrary.org/obo/UBERON_0002234,proximal phalanx of manus,proximal phalanx of fore digit +http://purl.obolibrary.org/obo/UBERON_0002234,proximal phalanx of manus,proximal phalanx of hand +http://purl.obolibrary.org/obo/UBERON_0002234,proximal phalanx of manus,proximal phalanx of manual digit +http://purl.obolibrary.org/obo/UBERON_0002235,tubercle of rib,rib tubercle +http://purl.obolibrary.org/obo/UBERON_0002235,tubercle of rib,tuberculum costae +http://purl.obolibrary.org/obo/UBERON_0002236,costal cartilage, +http://purl.obolibrary.org/obo/UBERON_0002237,true rib,costa vera +http://purl.obolibrary.org/obo/UBERON_0002238,false rib,costa spuria +http://purl.obolibrary.org/obo/UBERON_0002239,floating rib,costa fluitante +http://purl.obolibrary.org/obo/UBERON_0002239,floating rib,free rib +http://purl.obolibrary.org/obo/UBERON_0002239,floating rib,vertebral rib +http://purl.obolibrary.org/obo/UBERON_0002240,spinal cord,SpC +http://purl.obolibrary.org/obo/UBERON_0002240,spinal cord,cerebro-cerebellar fissure +http://purl.obolibrary.org/obo/UBERON_0002240,spinal cord,cerebrocerebellar fissure +http://purl.obolibrary.org/obo/UBERON_0002240,spinal cord,fissura cerebro-cerebellaris +http://purl.obolibrary.org/obo/UBERON_0002240,spinal cord,fissura cerebrocerebellaris +http://purl.obolibrary.org/obo/UBERON_0002240,spinal cord,medulla spinalis +http://purl.obolibrary.org/obo/UBERON_0002240,spinal cord,spinal cord structure +http://purl.obolibrary.org/obo/UBERON_0002240,spinal cord,spinal medulla +http://purl.obolibrary.org/obo/UBERON_0002241,chondrocranium,calvarium +http://purl.obolibrary.org/obo/UBERON_0002241,chondrocranium,neurocranium +http://purl.obolibrary.org/obo/UBERON_0002242,nucleus pulposus,nucleus pulposus (diskus intervertebralis) +http://purl.obolibrary.org/obo/UBERON_0002242,nucleus pulposus,pulpy nucleus +http://purl.obolibrary.org/obo/UBERON_0002243,cutaneous vein, +http://purl.obolibrary.org/obo/UBERON_0002244,premaxilla,premaxillae +http://purl.obolibrary.org/obo/UBERON_0002244,premaxilla,premaxillary +http://purl.obolibrary.org/obo/UBERON_0002245,cerebellar hemisphere,cerebellar hemisphere +http://purl.obolibrary.org/obo/UBERON_0002245,cerebellar hemisphere,cerebellum hemisphere +http://purl.obolibrary.org/obo/UBERON_0002245,cerebellar hemisphere,hemisphere of cerebellum +http://purl.obolibrary.org/obo/UBERON_0002245,cerebellar hemisphere,hemisphere of cerebellum [H II - H X] +http://purl.obolibrary.org/obo/UBERON_0002245,cerebellar hemisphere,hemispherium cerebelli [H II - H X] +http://purl.obolibrary.org/obo/UBERON_0002245,cerebellar hemisphere,hemispherium cerebelli [hII-hX] +http://purl.obolibrary.org/obo/UBERON_0002246,dorsal thoracic nucleus,Clarke's column +http://purl.obolibrary.org/obo/UBERON_0002246,dorsal thoracic nucleus,Clarke's nucleus +http://purl.obolibrary.org/obo/UBERON_0002246,dorsal thoracic nucleus,Stilling-Clarke's column +http://purl.obolibrary.org/obo/UBERON_0002246,dorsal thoracic nucleus,Stilling-Clarke's nucleus +http://purl.obolibrary.org/obo/UBERON_0002246,dorsal thoracic nucleus,dorsal nucleus of Clarke +http://purl.obolibrary.org/obo/UBERON_0002246,dorsal thoracic nucleus,nucleus thoracicus dorsalis +http://purl.obolibrary.org/obo/UBERON_0002246,dorsal thoracic nucleus,nucleus thoracicus posterior +http://purl.obolibrary.org/obo/UBERON_0002246,dorsal thoracic nucleus,posterior thoracic nucleus +http://purl.obolibrary.org/obo/UBERON_0002246,dorsal thoracic nucleus,spinal cord dorsal nucleus +http://purl.obolibrary.org/obo/UBERON_0002247,uterine horn, +http://purl.obolibrary.org/obo/UBERON_0002248,transverse pericardial sinus,Thiele's canal +http://purl.obolibrary.org/obo/UBERON_0002248,transverse pericardial sinus,transverse sinus of pericardial cavity +http://purl.obolibrary.org/obo/UBERON_0002249,median artery, +http://purl.obolibrary.org/obo/UBERON_0002250,popliteal artery, +http://purl.obolibrary.org/obo/UBERON_0002251,iliocostalis muscle,iliocostal muscle +http://purl.obolibrary.org/obo/UBERON_0002251,iliocostalis muscle,iliocostalis +http://purl.obolibrary.org/obo/UBERON_0002251,iliocostalis muscle,musculus iliocostalis +http://purl.obolibrary.org/obo/UBERON_0002252,splenius,splenius muscle +http://purl.obolibrary.org/obo/UBERON_0002254,thyroglossal duct,ductus thyroglossus +http://purl.obolibrary.org/obo/UBERON_0002255,vomeronasal organ,Jacobson's organ +http://purl.obolibrary.org/obo/UBERON_0002255,vomeronasal organ,organon vomeronasale +http://purl.obolibrary.org/obo/UBERON_0002255,vomeronasal organ,organum vomeronasale +http://purl.obolibrary.org/obo/UBERON_0002256,dorsal horn of spinal cord,columna grisea posterior medullae spinalis +http://purl.obolibrary.org/obo/UBERON_0002256,dorsal horn of spinal cord,cornu dorsale +http://purl.obolibrary.org/obo/UBERON_0002256,dorsal horn of spinal cord,cornu posterius medullae spinalis +http://purl.obolibrary.org/obo/UBERON_0002256,dorsal horn of spinal cord,dorsal gray column of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002256,dorsal horn of spinal cord,dorsal gray horn +http://purl.obolibrary.org/obo/UBERON_0002256,dorsal horn of spinal cord,dorsal gray matter of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002256,dorsal horn of spinal cord,dorsal grey column of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002256,dorsal horn of spinal cord,dorsal grey horn +http://purl.obolibrary.org/obo/UBERON_0002256,dorsal horn of spinal cord,dorsal horn +http://purl.obolibrary.org/obo/UBERON_0002256,dorsal horn of spinal cord,dorsal horn of the spinal cord +http://purl.obolibrary.org/obo/UBERON_0002256,dorsal horn of spinal cord,dorsal horn spinal cord +http://purl.obolibrary.org/obo/UBERON_0002256,dorsal horn of spinal cord,dorsal region of mature spinal cord +http://purl.obolibrary.org/obo/UBERON_0002256,dorsal horn of spinal cord,dorsal region of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002256,dorsal horn of spinal cord,dorsal spinal cord +http://purl.obolibrary.org/obo/UBERON_0002256,dorsal horn of spinal cord,posterior gray column of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002256,dorsal horn of spinal cord,posterior gray horn of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002256,dorsal horn of spinal cord,posterior grey column of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002256,dorsal horn of spinal cord,posterior horn of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002256,dorsal horn of spinal cord,spinal cord dorsal horn +http://purl.obolibrary.org/obo/UBERON_0002256,dorsal horn of spinal cord,spinal cord dorsal horns +http://purl.obolibrary.org/obo/UBERON_0002256,dorsal horn of spinal cord,spinal cord posterior horn +http://purl.obolibrary.org/obo/UBERON_0002257,ventral horn of spinal cord,anterior column +http://purl.obolibrary.org/obo/UBERON_0002257,ventral horn of spinal cord,anterior column of the spinal cord +http://purl.obolibrary.org/obo/UBERON_0002257,ventral horn of spinal cord,anterior gray column of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002257,ventral horn of spinal cord,anterior gray horn of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002257,ventral horn of spinal cord,anterior grey column of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002257,ventral horn of spinal cord,anterior horn +http://purl.obolibrary.org/obo/UBERON_0002257,ventral horn of spinal cord,anterior horn (spinal cord) +http://purl.obolibrary.org/obo/UBERON_0002257,ventral horn of spinal cord,columna grisea anterior medullae spinalis +http://purl.obolibrary.org/obo/UBERON_0002257,ventral horn of spinal cord,cornu anterius medullae spinalis +http://purl.obolibrary.org/obo/UBERON_0002257,ventral horn of spinal cord,spinal cord anterior horn +http://purl.obolibrary.org/obo/UBERON_0002257,ventral horn of spinal cord,spinal cord ventral horn +http://purl.obolibrary.org/obo/UBERON_0002257,ventral horn of spinal cord,ventral gray column of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002257,ventral horn of spinal cord,ventral gray matter of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002257,ventral horn of spinal cord,ventral grey column of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002257,ventral horn of spinal cord,ventral grey horn +http://purl.obolibrary.org/obo/UBERON_0002257,ventral horn of spinal cord,ventral horn of the spinal cord +http://purl.obolibrary.org/obo/UBERON_0002257,ventral horn of spinal cord,ventral horn spinal cord +http://purl.obolibrary.org/obo/UBERON_0002257,ventral horn of spinal cord,ventral horns spinal cord +http://purl.obolibrary.org/obo/UBERON_0002257,ventral horn of spinal cord,ventral region of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002257,ventral horn of spinal cord,ventral spinal cord +http://purl.obolibrary.org/obo/UBERON_0002258,dorsal funiculus of spinal cord,dorsal funiculus +http://purl.obolibrary.org/obo/UBERON_0002258,dorsal funiculus of spinal cord,dorsal funiculus of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002258,dorsal funiculus of spinal cord,dorsal white column of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002258,dorsal funiculus of spinal cord,funiculus dorsalis +http://purl.obolibrary.org/obo/UBERON_0002258,dorsal funiculus of spinal cord,funiculus posterior medullae spinalis +http://purl.obolibrary.org/obo/UBERON_0002258,dorsal funiculus of spinal cord,posterior funiculus +http://purl.obolibrary.org/obo/UBERON_0002258,dorsal funiculus of spinal cord,posterior funiculus of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002258,dorsal funiculus of spinal cord,posterior white column of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002259,corpora quadrigemina,colliculi +http://purl.obolibrary.org/obo/UBERON_0002259,corpora quadrigemina,corpora quadrigemina +http://purl.obolibrary.org/obo/UBERON_0002259,corpora quadrigemina,quadrigeminal body +http://purl.obolibrary.org/obo/UBERON_0002259,corpora quadrigemina,set of colliculi +http://purl.obolibrary.org/obo/UBERON_0002260,ventral root of spinal cord,anterior spinal root +http://purl.obolibrary.org/obo/UBERON_0002260,ventral root of spinal cord,ventral spinal root +http://purl.obolibrary.org/obo/UBERON_0002261,dorsal root of spinal cord,dorsal root +http://purl.obolibrary.org/obo/UBERON_0002261,dorsal root of spinal cord,dorsal root of spinal nerve +http://purl.obolibrary.org/obo/UBERON_0002261,dorsal root of spinal cord,dorsal spinal nerve root +http://purl.obolibrary.org/obo/UBERON_0002261,dorsal root of spinal cord,dorsal spinal root +http://purl.obolibrary.org/obo/UBERON_0002261,dorsal root of spinal cord,posterior root of spinal nerve +http://purl.obolibrary.org/obo/UBERON_0002261,dorsal root of spinal cord,radix dorsalis +http://purl.obolibrary.org/obo/UBERON_0002261,dorsal root of spinal cord,radix posterior (nervus spinalis) +http://purl.obolibrary.org/obo/UBERON_0002261,dorsal root of spinal cord,radix sensoria (nervus spinalis) +http://purl.obolibrary.org/obo/UBERON_0002261,dorsal root of spinal cord,sensory root of spinal nerve +http://purl.obolibrary.org/obo/UBERON_0002262,celiac ganglion,coeliac ganglion +http://purl.obolibrary.org/obo/UBERON_0002263,lentiform nucleus,lenticular nucleus +http://purl.obolibrary.org/obo/UBERON_0002263,lentiform nucleus,nucleus lenticularis +http://purl.obolibrary.org/obo/UBERON_0002263,lentiform nucleus,nucleus lentiformis +http://purl.obolibrary.org/obo/UBERON_0002264,olfactory bulb,bulbus olfactorius +http://purl.obolibrary.org/obo/UBERON_0002264,olfactory bulb,bulbus olfactorius (Morgagni) +http://purl.obolibrary.org/obo/UBERON_0002264,olfactory bulb,olfactory lobe +http://purl.obolibrary.org/obo/UBERON_0002264,olfactory bulb,olfactory lobe (Barr & Kiernan) +http://purl.obolibrary.org/obo/UBERON_0002265,olfactory tract, +http://purl.obolibrary.org/obo/UBERON_0002266,anterior olfactory nucleus,nucleus retrobulbaris [a8] +http://purl.obolibrary.org/obo/UBERON_0002266,anterior olfactory nucleus,retrobulbar nucleus [a8] +http://purl.obolibrary.org/obo/UBERON_0002267,laterodorsal tegmental nucleus,anterodorsal tegmental nucleus +http://purl.obolibrary.org/obo/UBERON_0002267,laterodorsal tegmental nucleus,lateroposterior tegmental nucleus +http://purl.obolibrary.org/obo/UBERON_0002267,laterodorsal tegmental nucleus,nucleus tegmentalis posterolateralis +http://purl.obolibrary.org/obo/UBERON_0002268,olfactory organ,main olfactory organ +http://purl.obolibrary.org/obo/UBERON_0002268,olfactory organ,olfactory neuroepithelium +http://purl.obolibrary.org/obo/UBERON_0002268,olfactory organ,olfactory organ +http://purl.obolibrary.org/obo/UBERON_0002268,olfactory organ,olfactory sense organ +http://purl.obolibrary.org/obo/UBERON_0002268,olfactory organ,olfactory sensory organ +http://purl.obolibrary.org/obo/UBERON_0002268,olfactory organ,organ olfactus +http://purl.obolibrary.org/obo/UBERON_0002268,olfactory organ,organum olfactorium +http://purl.obolibrary.org/obo/UBERON_0002268,olfactory organ,primary olfactory organ +http://purl.obolibrary.org/obo/UBERON_0002269,pupillary membrane, +http://purl.obolibrary.org/obo/UBERON_0002270,hyaloid artery,arteria hyaloidea +http://purl.obolibrary.org/obo/UBERON_0002271,periventricular zone of hypothalamus,hypothalamus periventricular zone +http://purl.obolibrary.org/obo/UBERON_0002271,periventricular zone of hypothalamus,periventricular zone of the hypothalamus +http://purl.obolibrary.org/obo/UBERON_0002271,periventricular zone of hypothalamus,zona periventricularis hypothalamicae +http://purl.obolibrary.org/obo/UBERON_0002272,medial zone of hypothalamus,hypothalamic medial zone behavioral control column +http://purl.obolibrary.org/obo/UBERON_0002272,medial zone of hypothalamus,hypothalamus medial zone +http://purl.obolibrary.org/obo/UBERON_0002272,medial zone of hypothalamus,medial zone of the hypothalamus +http://purl.obolibrary.org/obo/UBERON_0002272,medial zone of hypothalamus,zona medialis hypothalamicae +http://purl.obolibrary.org/obo/UBERON_0002273,lateral zone of hypothalamus,hypothalamic lateral zone +http://purl.obolibrary.org/obo/UBERON_0002273,lateral zone of hypothalamus,hypothalamus lateral zone +http://purl.obolibrary.org/obo/UBERON_0002273,lateral zone of hypothalamus,lateral zone of the hypothalamus +http://purl.obolibrary.org/obo/UBERON_0002273,lateral zone of hypothalamus,zona lateralis hypothalamicae +http://purl.obolibrary.org/obo/UBERON_0002274,perifornical nucleus, +http://purl.obolibrary.org/obo/UBERON_0002275,reticular formation,brain stem reticular formation +http://purl.obolibrary.org/obo/UBERON_0002275,reticular formation,brainstem reticular formation +http://purl.obolibrary.org/obo/UBERON_0002275,reticular formation,reticular formation (classical) +http://purl.obolibrary.org/obo/UBERON_0002275,reticular formation,reticular formation of the brainstem +http://purl.obolibrary.org/obo/UBERON_0002276,lamina of spiral limbus,limbus lamina spiralis +http://purl.obolibrary.org/obo/UBERON_0002276,lamina of spiral limbus,limbus laminae spiralis +http://purl.obolibrary.org/obo/UBERON_0002276,lamina of spiral limbus,limbus laminae spiralis osseae +http://purl.obolibrary.org/obo/UBERON_0002276,lamina of spiral limbus,spiral limbus lamina +http://purl.obolibrary.org/obo/UBERON_0002277,spiral sulcus,sulcus spiralis +http://purl.obolibrary.org/obo/UBERON_0002278,perilymphatic space, +http://purl.obolibrary.org/obo/UBERON_0002279,vestibular aqueduct, +http://purl.obolibrary.org/obo/UBERON_0002280,otolith,otoconium +http://purl.obolibrary.org/obo/UBERON_0002280,otolith,otoliths +http://purl.obolibrary.org/obo/UBERON_0002280,otolith,statoconium +http://purl.obolibrary.org/obo/UBERON_0002281,vestibular membrane of cochlear duct,Reissner membrane +http://purl.obolibrary.org/obo/UBERON_0002281,vestibular membrane of cochlear duct,Reissner's membrane +http://purl.obolibrary.org/obo/UBERON_0002281,vestibular membrane of cochlear duct,membrana vestibularis ductus cochlearis +http://purl.obolibrary.org/obo/UBERON_0002281,vestibular membrane of cochlear duct,paries vestibularis ductus cochlearis +http://purl.obolibrary.org/obo/UBERON_0002281,vestibular membrane of cochlear duct,superior wall of cochlear duct +http://purl.obolibrary.org/obo/UBERON_0002281,vestibular membrane of cochlear duct,vestibular membrane +http://purl.obolibrary.org/obo/UBERON_0002281,vestibular membrane of cochlear duct,vestibular membrane of Reissner +http://purl.obolibrary.org/obo/UBERON_0002281,vestibular membrane of cochlear duct,vestibular wall of cochlear duct +http://purl.obolibrary.org/obo/UBERON_0002282,stria vascularis of cochlear duct,psalterial cord +http://purl.obolibrary.org/obo/UBERON_0002282,stria vascularis of cochlear duct,stria vascularis +http://purl.obolibrary.org/obo/UBERON_0002282,stria vascularis of cochlear duct,stria vascularis of cochlea +http://purl.obolibrary.org/obo/UBERON_0002282,stria vascularis of cochlear duct,vascular stripe of cochlear duct +http://purl.obolibrary.org/obo/UBERON_0002283,nail matrix,keratogenous membrane +http://purl.obolibrary.org/obo/UBERON_0002283,nail matrix,matrix unguis +http://purl.obolibrary.org/obo/UBERON_0002283,nail matrix,nail germinal matrix +http://purl.obolibrary.org/obo/UBERON_0002283,nail matrix,onychostroma +http://purl.obolibrary.org/obo/UBERON_0002284,hyponychium, +http://purl.obolibrary.org/obo/UBERON_0002285,telencephalic ventricle,forebrain ventricle +http://purl.obolibrary.org/obo/UBERON_0002285,telencephalic ventricle,lateral ventricle +http://purl.obolibrary.org/obo/UBERON_0002285,telencephalic ventricle,lateral ventricle of brain +http://purl.obolibrary.org/obo/UBERON_0002285,telencephalic ventricle,lateral ventricles +http://purl.obolibrary.org/obo/UBERON_0002285,telencephalic ventricle,tectal ventricle +http://purl.obolibrary.org/obo/UBERON_0002285,telencephalic ventricle,telencephalic ventricle +http://purl.obolibrary.org/obo/UBERON_0002285,telencephalic ventricle,telencephalic ventricles +http://purl.obolibrary.org/obo/UBERON_0002285,telencephalic ventricle,telencephalic vesicle +http://purl.obolibrary.org/obo/UBERON_0002285,telencephalic ventricle,telencephalon lateral ventricle +http://purl.obolibrary.org/obo/UBERON_0002286,third ventricle,3rd ventricle +http://purl.obolibrary.org/obo/UBERON_0002286,third ventricle,ventriculus diencephali +http://purl.obolibrary.org/obo/UBERON_0002287,optic recess of third ventricle,optic recess +http://purl.obolibrary.org/obo/UBERON_0002287,optic recess of third ventricle,preoptic recess +http://purl.obolibrary.org/obo/UBERON_0002287,optic recess of third ventricle,recessus supraopticus +http://purl.obolibrary.org/obo/UBERON_0002287,optic recess of third ventricle,supraoptic recess +http://purl.obolibrary.org/obo/UBERON_0002288,choroid plexus of third ventricle,chorioid plexus of cerebral hemisphere of third ventricle +http://purl.obolibrary.org/obo/UBERON_0002288,choroid plexus of third ventricle,chorioid plexus of third ventricle +http://purl.obolibrary.org/obo/UBERON_0002288,choroid plexus of third ventricle,choroid plexus third ventricle +http://purl.obolibrary.org/obo/UBERON_0002288,choroid plexus of third ventricle,diencephalic choroid plexus +http://purl.obolibrary.org/obo/UBERON_0002288,choroid plexus of third ventricle,third ventricle chorioid plexus of cerebral hemisphere +http://purl.obolibrary.org/obo/UBERON_0002288,choroid plexus of third ventricle,third ventricle choroid plexus +http://purl.obolibrary.org/obo/UBERON_0002289,midbrain cerebral aqueduct,Sylvian aqueduct +http://purl.obolibrary.org/obo/UBERON_0002289,midbrain cerebral aqueduct,aqueduct (Sylvius) +http://purl.obolibrary.org/obo/UBERON_0002289,midbrain cerebral aqueduct,aqueduct of Sylvius +http://purl.obolibrary.org/obo/UBERON_0002289,midbrain cerebral aqueduct,aqueduct of midbrain +http://purl.obolibrary.org/obo/UBERON_0002289,midbrain cerebral aqueduct,aqueductus mesencephali +http://purl.obolibrary.org/obo/UBERON_0002289,midbrain cerebral aqueduct,cerebral aquaduct +http://purl.obolibrary.org/obo/UBERON_0002289,midbrain cerebral aqueduct,cerebral aqueduct +http://purl.obolibrary.org/obo/UBERON_0002289,midbrain cerebral aqueduct,cerebral aqueduct of Sylvius +http://purl.obolibrary.org/obo/UBERON_0002289,midbrain cerebral aqueduct,medial tectal ventricle +http://purl.obolibrary.org/obo/UBERON_0002289,midbrain cerebral aqueduct,mesencephalic duct +http://purl.obolibrary.org/obo/UBERON_0002289,midbrain cerebral aqueduct,mesencephalic ventricle +http://purl.obolibrary.org/obo/UBERON_0002289,midbrain cerebral aqueduct,midbrain cerebral aqueduct +http://purl.obolibrary.org/obo/UBERON_0002289,midbrain cerebral aqueduct,midbrain ventricle +http://purl.obolibrary.org/obo/UBERON_0002289,midbrain cerebral aqueduct,tectal ventricle +http://purl.obolibrary.org/obo/UBERON_0002290,choroid plexus of fourth ventricle,chorioid plexus of cerebral hemisphere of fourth ventricle +http://purl.obolibrary.org/obo/UBERON_0002290,choroid plexus of fourth ventricle,chorioid plexus of fourth ventricle +http://purl.obolibrary.org/obo/UBERON_0002290,choroid plexus of fourth ventricle,choroid plexus fourth ventricle +http://purl.obolibrary.org/obo/UBERON_0002290,choroid plexus of fourth ventricle,fourth ventricle chorioid plexus of cerebral hemisphere +http://purl.obolibrary.org/obo/UBERON_0002290,choroid plexus of fourth ventricle,fourth ventricle choroid plexus +http://purl.obolibrary.org/obo/UBERON_0002291,central canal of spinal cord,canalis centralis +http://purl.obolibrary.org/obo/UBERON_0002291,central canal of spinal cord,central canal +http://purl.obolibrary.org/obo/UBERON_0002291,central canal of spinal cord,central canal of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002291,central canal of spinal cord,spinal cord central canal +http://purl.obolibrary.org/obo/UBERON_0002291,central canal of spinal cord,ventricle of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002292,costovertebral joint,costovertebral synovial joint +http://purl.obolibrary.org/obo/UBERON_0002293,costochondral joint,articulatio costochondralis +http://purl.obolibrary.org/obo/UBERON_0002293,costochondral joint,chondrocostal synchondrosis +http://purl.obolibrary.org/obo/UBERON_0002293,costochondral joint,costochondral junction +http://purl.obolibrary.org/obo/UBERON_0002293,costochondral joint,costochondral synchondrosis +http://purl.obolibrary.org/obo/UBERON_0002294,biliary system,biliary apparatus +http://purl.obolibrary.org/obo/UBERON_0002295,scala media, +http://purl.obolibrary.org/obo/UBERON_0002296,dorsal mesentery, +http://purl.obolibrary.org/obo/UBERON_0002297,cerumen,ear wax +http://purl.obolibrary.org/obo/UBERON_0002297,cerumen,earwax +http://purl.obolibrary.org/obo/UBERON_0002298,brainstem,accessory medullary lamina of pallidum +http://purl.obolibrary.org/obo/UBERON_0002298,brainstem,brain stem +http://purl.obolibrary.org/obo/UBERON_0002298,brainstem,lamella pallidi incompleta +http://purl.obolibrary.org/obo/UBERON_0002298,brainstem,lamina medullaris accessoria +http://purl.obolibrary.org/obo/UBERON_0002298,brainstem,lamina medullaris incompleta pallidi +http://purl.obolibrary.org/obo/UBERON_0002298,brainstem,lamina pallidi incompleta +http://purl.obolibrary.org/obo/UBERON_0002298,brainstem,truncus encephali +http://purl.obolibrary.org/obo/UBERON_0002298,brainstem,truncus encephalicus +http://purl.obolibrary.org/obo/UBERON_0002299,alveolus of lung,alveolus pulmonis +http://purl.obolibrary.org/obo/UBERON_0002299,alveolus of lung,lung alveolus +http://purl.obolibrary.org/obo/UBERON_0002299,alveolus of lung,pulmonary alveolus +http://purl.obolibrary.org/obo/UBERON_0002299,alveolus of lung,respiratory alveolus +http://purl.obolibrary.org/obo/UBERON_0002301,layer of neocortex,cerebral cortex layer +http://purl.obolibrary.org/obo/UBERON_0002301,layer of neocortex,cortical layer +http://purl.obolibrary.org/obo/UBERON_0002301,layer of neocortex,lamina of neocortex +http://purl.obolibrary.org/obo/UBERON_0002301,layer of neocortex,layer of neocortex +http://purl.obolibrary.org/obo/UBERON_0002301,layer of neocortex,neocortex layer +http://purl.obolibrary.org/obo/UBERON_0002302,myocardium of atrium,atrial myocardium +http://purl.obolibrary.org/obo/UBERON_0002302,myocardium of atrium,atrium myocardium +http://purl.obolibrary.org/obo/UBERON_0002303,juxtaglomerular apparatus,complexus juxtaglomerularis +http://purl.obolibrary.org/obo/UBERON_0002303,juxtaglomerular apparatus,juxtaglomerular complex +http://purl.obolibrary.org/obo/UBERON_0002304,layer of dentate gyrus,dentate gyrus cell layer +http://purl.obolibrary.org/obo/UBERON_0002304,layer of dentate gyrus,dentate gyrus layer +http://purl.obolibrary.org/obo/UBERON_0002305,layer of hippocampus,cytoarchitectural fields of hippocampal formation +http://purl.obolibrary.org/obo/UBERON_0002305,layer of hippocampus,hippocampus layer +http://purl.obolibrary.org/obo/UBERON_0002305,layer of hippocampus,hippocampus proper layer +http://purl.obolibrary.org/obo/UBERON_0002305,layer of hippocampus,layer of cornu ammonis +http://purl.obolibrary.org/obo/UBERON_0002306,nasal mucus, +http://purl.obolibrary.org/obo/UBERON_0002307,choroid plexus of lateral ventricle,chorioid plexus of cerebral hemisphere of lateral ventricle +http://purl.obolibrary.org/obo/UBERON_0002307,choroid plexus of lateral ventricle,chorioid plexus of lateral ventricle +http://purl.obolibrary.org/obo/UBERON_0002307,choroid plexus of lateral ventricle,choroid plexus telencephalic ventricle +http://purl.obolibrary.org/obo/UBERON_0002307,choroid plexus of lateral ventricle,lateral ventricle chorioid plexus of cerebral hemisphere +http://purl.obolibrary.org/obo/UBERON_0002307,choroid plexus of lateral ventricle,lateral ventricle choroid plexus +http://purl.obolibrary.org/obo/UBERON_0002308,nucleus of brain,brain nuclei +http://purl.obolibrary.org/obo/UBERON_0002308,nucleus of brain,brain nucleus +http://purl.obolibrary.org/obo/UBERON_0002309,medial longitudinal fasciculus,MLF +http://purl.obolibrary.org/obo/UBERON_0002309,medial longitudinal fasciculus,fasciculus longitudinalis medialis +http://purl.obolibrary.org/obo/UBERON_0002309,medial longitudinal fasciculus,medial longitudinal fascicle +http://purl.obolibrary.org/obo/UBERON_0002310,hippocampus fimbria,fimbria hippocampus +http://purl.obolibrary.org/obo/UBERON_0002310,hippocampus fimbria,fimbria of hippocampus +http://purl.obolibrary.org/obo/UBERON_0002310,hippocampus fimbria,fimbria of the fornix +http://purl.obolibrary.org/obo/UBERON_0002310,hippocampus fimbria,fimbria-fornix +http://purl.obolibrary.org/obo/UBERON_0002310,hippocampus fimbria,hippocampal fimbria +http://purl.obolibrary.org/obo/UBERON_0002310,hippocampus fimbria,neuraxis fimbria +http://purl.obolibrary.org/obo/UBERON_0002313,hippocampus pyramidal layer,gyrus occipitalis inferior +http://purl.obolibrary.org/obo/UBERON_0002313,hippocampus pyramidal layer,gyrus occipitalis tertius +http://purl.obolibrary.org/obo/UBERON_0002313,hippocampus pyramidal layer,hippocampal pyramidal cell layer +http://purl.obolibrary.org/obo/UBERON_0002313,hippocampus pyramidal layer,hippocampal pyramidal layer +http://purl.obolibrary.org/obo/UBERON_0002313,hippocampus pyramidal layer,hippocampus pyramidal cell layer +http://purl.obolibrary.org/obo/UBERON_0002313,hippocampus pyramidal layer,hippocampus stratum pyramidale +http://purl.obolibrary.org/obo/UBERON_0002313,hippocampus pyramidal layer,pyramidal cell layer of the hippocampus +http://purl.obolibrary.org/obo/UBERON_0002313,hippocampus pyramidal layer,pyramidal layer of hippocampus +http://purl.obolibrary.org/obo/UBERON_0002313,hippocampus pyramidal layer,stratum pyramidale +http://purl.obolibrary.org/obo/UBERON_0002313,hippocampus pyramidal layer,stratum pyramidale hippocampi +http://purl.obolibrary.org/obo/UBERON_0002314,midbrain tectum,mesencephalic tectum +http://purl.obolibrary.org/obo/UBERON_0002314,midbrain tectum,neuraxis tectum +http://purl.obolibrary.org/obo/UBERON_0002314,midbrain tectum,t. mesencephali +http://purl.obolibrary.org/obo/UBERON_0002314,midbrain tectum,tectum +http://purl.obolibrary.org/obo/UBERON_0002314,midbrain tectum,tectum mesencephali +http://purl.obolibrary.org/obo/UBERON_0002314,midbrain tectum,tectum mesencephalicum +http://purl.obolibrary.org/obo/UBERON_0002314,midbrain tectum,tectum of midbrain +http://purl.obolibrary.org/obo/UBERON_0002315,gray matter of spinal cord,gray matter of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002315,gray matter of spinal cord,gray substance of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002315,gray matter of spinal cord,grey matter of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002315,gray matter of spinal cord,grey substance of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002315,gray matter of spinal cord,spinal cord gray matter +http://purl.obolibrary.org/obo/UBERON_0002315,gray matter of spinal cord,spinal cord grey matter +http://purl.obolibrary.org/obo/UBERON_0002315,gray matter of spinal cord,spinal cord grey substance +http://purl.obolibrary.org/obo/UBERON_0002315,gray matter of spinal cord,substantia grisea medullae spinalis +http://purl.obolibrary.org/obo/UBERON_0002316,white matter,CNS tract/commissure +http://purl.obolibrary.org/obo/UBERON_0002316,white matter,CNS tracts and commissures +http://purl.obolibrary.org/obo/UBERON_0002316,white matter,CNS white matter +http://purl.obolibrary.org/obo/UBERON_0002316,white matter,neuronal white matter +http://purl.obolibrary.org/obo/UBERON_0002316,white matter,substantia alba +http://purl.obolibrary.org/obo/UBERON_0002316,white matter,white mater +http://purl.obolibrary.org/obo/UBERON_0002316,white matter,white matter of neuraxis +http://purl.obolibrary.org/obo/UBERON_0002316,white matter,white substance +http://purl.obolibrary.org/obo/UBERON_0002317,white matter of cerebellum,cerebellar white matter +http://purl.obolibrary.org/obo/UBERON_0002317,white matter of cerebellum,cerebellum white matter +http://purl.obolibrary.org/obo/UBERON_0002318,white matter of spinal cord,spinal cord white matter +http://purl.obolibrary.org/obo/UBERON_0002318,white matter of spinal cord,spinal cord white matter of neuraxis +http://purl.obolibrary.org/obo/UBERON_0002318,white matter of spinal cord,spinal cord white substance +http://purl.obolibrary.org/obo/UBERON_0002318,white matter of spinal cord,substantia alba medullae spinalis +http://purl.obolibrary.org/obo/UBERON_0002318,white matter of spinal cord,white matter of neuraxis of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002318,white matter of spinal cord,white substance of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002319,mesangium, +http://purl.obolibrary.org/obo/UBERON_0002320,glomerular mesangium, +http://purl.obolibrary.org/obo/UBERON_0002321,extraglomerular mesangium, +http://purl.obolibrary.org/obo/UBERON_0002322,periventricular nucleus,ventral zone of periventricular hypothalamus +http://purl.obolibrary.org/obo/UBERON_0002323,coelemic cavity lumen,coelomic cavity +http://purl.obolibrary.org/obo/UBERON_0002323,coelemic cavity lumen,coelomic cavity lumen +http://purl.obolibrary.org/obo/UBERON_0002323,coelemic cavity lumen,main body cavity +http://purl.obolibrary.org/obo/UBERON_0002323,coelemic cavity lumen,space of body compartment +http://purl.obolibrary.org/obo/UBERON_0002324,muscle of back,back muscle +http://purl.obolibrary.org/obo/UBERON_0002324,muscle of back,back muscle organ +http://purl.obolibrary.org/obo/UBERON_0002324,muscle of back,muscle organ of back +http://purl.obolibrary.org/obo/UBERON_0002325,epithelium of urethra,epithelial tissue of urethra +http://purl.obolibrary.org/obo/UBERON_0002325,epithelium of urethra,urethra epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0002325,epithelium of urethra,urethra epithelium +http://purl.obolibrary.org/obo/UBERON_0002326,lamina propria of urethra,lamina propria mucosa of urethra +http://purl.obolibrary.org/obo/UBERON_0002326,lamina propria of urethra,lamina propria mucosae of urethra +http://purl.obolibrary.org/obo/UBERON_0002326,lamina propria of urethra,urethra lamina propria +http://purl.obolibrary.org/obo/UBERON_0002326,lamina propria of urethra,urethra lamina propria mucosa +http://purl.obolibrary.org/obo/UBERON_0002326,lamina propria of urethra,urethra lamina propria mucosae +http://purl.obolibrary.org/obo/UBERON_0002327,trunk of intercostal nerve,intercostal nerve trunk +http://purl.obolibrary.org/obo/UBERON_0002327,trunk of intercostal nerve,intercostal neural trunk +http://purl.obolibrary.org/obo/UBERON_0002328,notochord,embryonic notocord +http://purl.obolibrary.org/obo/UBERON_0002328,notochord,notocord +http://purl.obolibrary.org/obo/UBERON_0002329,somite, +http://purl.obolibrary.org/obo/UBERON_0002330,exocrine system,exocrine glandular system +http://purl.obolibrary.org/obo/UBERON_0002331,umbilical cord,chorda umbilicalis +http://purl.obolibrary.org/obo/UBERON_0002331,umbilical cord,funiculus umbilicalis +http://purl.obolibrary.org/obo/UBERON_0002333,pulmonary trunk,pulmonary artery (trunk) +http://purl.obolibrary.org/obo/UBERON_0002333,pulmonary trunk,trunk of pulmonary arterial tree +http://purl.obolibrary.org/obo/UBERON_0002334,submandibular duct, +http://purl.obolibrary.org/obo/UBERON_0002335,macula densa, +http://purl.obolibrary.org/obo/UBERON_0002336,corpus callosum, +http://purl.obolibrary.org/obo/UBERON_0002337,endometrial stroma,endometrium stroma +http://purl.obolibrary.org/obo/UBERON_0002337,endometrial stroma,stroma of endometrium +http://purl.obolibrary.org/obo/UBERON_0002338,lamina propria of bronchus,bronchi lamina propria +http://purl.obolibrary.org/obo/UBERON_0002338,lamina propria of bronchus,bronchi lamina propria mucosa +http://purl.obolibrary.org/obo/UBERON_0002338,lamina propria of bronchus,bronchi lamina propria mucosae +http://purl.obolibrary.org/obo/UBERON_0002338,lamina propria of bronchus,bronchial trunk lamina propria +http://purl.obolibrary.org/obo/UBERON_0002338,lamina propria of bronchus,bronchial trunk lamina propria mucosa +http://purl.obolibrary.org/obo/UBERON_0002338,lamina propria of bronchus,bronchial trunk lamina propria mucosae +http://purl.obolibrary.org/obo/UBERON_0002338,lamina propria of bronchus,bronchus lamina propria +http://purl.obolibrary.org/obo/UBERON_0002338,lamina propria of bronchus,bronchus lamina propria mucosa +http://purl.obolibrary.org/obo/UBERON_0002338,lamina propria of bronchus,bronchus lamina propria mucosae +http://purl.obolibrary.org/obo/UBERON_0002338,lamina propria of bronchus,lamina propria mucosa of bronchi +http://purl.obolibrary.org/obo/UBERON_0002338,lamina propria of bronchus,lamina propria mucosa of bronchial trunk +http://purl.obolibrary.org/obo/UBERON_0002338,lamina propria of bronchus,lamina propria mucosa of bronchus +http://purl.obolibrary.org/obo/UBERON_0002338,lamina propria of bronchus,lamina propria mucosae of bronchi +http://purl.obolibrary.org/obo/UBERON_0002338,lamina propria of bronchus,lamina propria mucosae of bronchial trunk +http://purl.obolibrary.org/obo/UBERON_0002338,lamina propria of bronchus,lamina propria mucosae of bronchus +http://purl.obolibrary.org/obo/UBERON_0002338,lamina propria of bronchus,lamina propria of bronchi +http://purl.obolibrary.org/obo/UBERON_0002338,lamina propria of bronchus,lamina propria of bronchial trunk +http://purl.obolibrary.org/obo/UBERON_0002339,epithelium of lobar bronchus,epithelial tissue of lobar bronchus +http://purl.obolibrary.org/obo/UBERON_0002339,epithelium of lobar bronchus,epithelial tissue of secondary bronchus +http://purl.obolibrary.org/obo/UBERON_0002339,epithelium of lobar bronchus,epithelium of secondary bronchus +http://purl.obolibrary.org/obo/UBERON_0002339,epithelium of lobar bronchus,lobar bronchial epithelium +http://purl.obolibrary.org/obo/UBERON_0002339,epithelium of lobar bronchus,lobar bronchus epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0002339,epithelium of lobar bronchus,lobar bronchus epithelium +http://purl.obolibrary.org/obo/UBERON_0002339,epithelium of lobar bronchus,secondary bronchus epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0002339,epithelium of lobar bronchus,secondary bronchus epithelium +http://purl.obolibrary.org/obo/UBERON_0002340,epithelium of main bronchus,bronchus principalis epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0002340,epithelium of main bronchus,bronchus principalis epithelium +http://purl.obolibrary.org/obo/UBERON_0002340,epithelium of main bronchus,epithelial tissue of bronchus principalis +http://purl.obolibrary.org/obo/UBERON_0002340,epithelium of main bronchus,epithelial tissue of main bronchus +http://purl.obolibrary.org/obo/UBERON_0002340,epithelium of main bronchus,epithelial tissue of primary bronchus +http://purl.obolibrary.org/obo/UBERON_0002340,epithelium of main bronchus,epithelial tissue of principal bronchus +http://purl.obolibrary.org/obo/UBERON_0002340,epithelium of main bronchus,epithelium of bronchus principalis +http://purl.obolibrary.org/obo/UBERON_0002340,epithelium of main bronchus,epithelium of primary bronchus +http://purl.obolibrary.org/obo/UBERON_0002340,epithelium of main bronchus,epithelium of principal bronchus +http://purl.obolibrary.org/obo/UBERON_0002340,epithelium of main bronchus,main bronchial epithelium +http://purl.obolibrary.org/obo/UBERON_0002340,epithelium of main bronchus,main bronchus epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0002340,epithelium of main bronchus,main bronchus epithelium +http://purl.obolibrary.org/obo/UBERON_0002340,epithelium of main bronchus,primary bronchus epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0002340,epithelium of main bronchus,primary bronchus epithelium +http://purl.obolibrary.org/obo/UBERON_0002340,epithelium of main bronchus,principal bronchus epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0002340,epithelium of main bronchus,principal bronchus epithelium +http://purl.obolibrary.org/obo/UBERON_0002341,epithelium of segmental bronchus,epithelial tissue of segmental bronchus +http://purl.obolibrary.org/obo/UBERON_0002341,epithelium of segmental bronchus,epithelial tissue of tertiary bronchus +http://purl.obolibrary.org/obo/UBERON_0002341,epithelium of segmental bronchus,epithelium of tertiary bronchus +http://purl.obolibrary.org/obo/UBERON_0002341,epithelium of segmental bronchus,segmental bronchial epithelium +http://purl.obolibrary.org/obo/UBERON_0002341,epithelium of segmental bronchus,segmental bronchus epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0002341,epithelium of segmental bronchus,segmental bronchus epithelium +http://purl.obolibrary.org/obo/UBERON_0002341,epithelium of segmental bronchus,tertiary bronchus epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0002341,epithelium of segmental bronchus,tertiary bronchus epithelium +http://purl.obolibrary.org/obo/UBERON_0002342,neural crest,NC +http://purl.obolibrary.org/obo/UBERON_0002343,abdomen musculature,abdominal musculature +http://purl.obolibrary.org/obo/UBERON_0002343,abdomen musculature,muscle group of abdomen +http://purl.obolibrary.org/obo/UBERON_0002343,abdomen musculature,muscles of abdomen +http://purl.obolibrary.org/obo/UBERON_0002343,abdomen musculature,musculature of abdomen +http://purl.obolibrary.org/obo/UBERON_0002343,abdomen musculature,musculature of abdominal wall +http://purl.obolibrary.org/obo/UBERON_0002343,abdomen musculature,set of muscles of abdomen +http://purl.obolibrary.org/obo/UBERON_0002345,descending thoracic aorta, +http://purl.obolibrary.org/obo/UBERON_0002346,neurectoderm,neural ectoderm +http://purl.obolibrary.org/obo/UBERON_0002346,neurectoderm,neuroectoderm +http://purl.obolibrary.org/obo/UBERON_0002347,thoracic vertebra,dorsal vertebra +http://purl.obolibrary.org/obo/UBERON_0002347,thoracic vertebra,thorax vertebra +http://purl.obolibrary.org/obo/UBERON_0002347,thoracic vertebra,vertebra of thorax +http://purl.obolibrary.org/obo/UBERON_0002347,thoracic vertebra,vertebra thoracica +http://purl.obolibrary.org/obo/UBERON_0002348,epicardium,heart epicardium +http://purl.obolibrary.org/obo/UBERON_0002348,epicardium,pericardium visceral mesothelium +http://purl.obolibrary.org/obo/UBERON_0002348,epicardium,visceral serous pericardium of heart +http://purl.obolibrary.org/obo/UBERON_0002348,epicardium,visceral serous pericardium proper +http://purl.obolibrary.org/obo/UBERON_0002349,myocardium,heart myocardium +http://purl.obolibrary.org/obo/UBERON_0002349,myocardium,muscle of heart +http://purl.obolibrary.org/obo/UBERON_0002350,conducting system of heart,cardiac conducting system +http://purl.obolibrary.org/obo/UBERON_0002350,conducting system of heart,cardiac conduction system +http://purl.obolibrary.org/obo/UBERON_0002350,conducting system of heart,cardiac impulse conducting system +http://purl.obolibrary.org/obo/UBERON_0002350,conducting system of heart,cardionector +http://purl.obolibrary.org/obo/UBERON_0002350,conducting system of heart,complexus stimulans cordis +http://purl.obolibrary.org/obo/UBERON_0002350,conducting system of heart,heart conduction system +http://purl.obolibrary.org/obo/UBERON_0002350,conducting system of heart,impulse conducting system +http://purl.obolibrary.org/obo/UBERON_0002350,conducting system of heart,systema conducente cordis +http://purl.obolibrary.org/obo/UBERON_0002351,sinoatrial node,Koch's node +http://purl.obolibrary.org/obo/UBERON_0002351,sinoatrial node,SA nodal muscle tissue +http://purl.obolibrary.org/obo/UBERON_0002351,sinoatrial node,SA node +http://purl.obolibrary.org/obo/UBERON_0002351,sinoatrial node,cardiac pacemaker +http://purl.obolibrary.org/obo/UBERON_0002351,sinoatrial node,node of Keith-Flack +http://purl.obolibrary.org/obo/UBERON_0002351,sinoatrial node,nodus sinuatrialis +http://purl.obolibrary.org/obo/UBERON_0002351,sinoatrial node,sinoatrial node +http://purl.obolibrary.org/obo/UBERON_0002351,sinoatrial node,sinu-atrial node +http://purl.obolibrary.org/obo/UBERON_0002351,sinoatrial node,sinuatrial nodal muscle tissue +http://purl.obolibrary.org/obo/UBERON_0002351,sinoatrial node,sinuatrial node +http://purl.obolibrary.org/obo/UBERON_0002351,sinoatrial node,sinus node +http://purl.obolibrary.org/obo/UBERON_0002351,sinoatrial node,sinus node of Keith and Flack +http://purl.obolibrary.org/obo/UBERON_0002352,atrioventricular node,AV nodal muscle tissue +http://purl.obolibrary.org/obo/UBERON_0002352,atrioventricular node,AV node +http://purl.obolibrary.org/obo/UBERON_0002352,atrioventricular node,Aschoff-Tawara node +http://purl.obolibrary.org/obo/UBERON_0002352,atrioventricular node,atrioventricular nodal muscle tissue +http://purl.obolibrary.org/obo/UBERON_0002352,atrioventricular node,node of Tawara +http://purl.obolibrary.org/obo/UBERON_0002352,atrioventricular node,nodus atrioventricularis +http://purl.obolibrary.org/obo/UBERON_0002353,bundle of His,AV bundle +http://purl.obolibrary.org/obo/UBERON_0002353,bundle of His,AVB +http://purl.obolibrary.org/obo/UBERON_0002353,bundle of His,His bundle +http://purl.obolibrary.org/obo/UBERON_0002353,bundle of His,atrio-ventricular bundle +http://purl.obolibrary.org/obo/UBERON_0002353,bundle of His,atrioventricular bundle +http://purl.obolibrary.org/obo/UBERON_0002353,bundle of His,atrioventricular bundle muscle tissue +http://purl.obolibrary.org/obo/UBERON_0002353,bundle of His,atrioventricular fasciculus +http://purl.obolibrary.org/obo/UBERON_0002353,bundle of His,bundle of His +http://purl.obolibrary.org/obo/UBERON_0002353,bundle of His,fasciculus atrioventricularis +http://purl.obolibrary.org/obo/UBERON_0002354,cardiac Purkinje fiber,Purkinje fiber +http://purl.obolibrary.org/obo/UBERON_0002354,cardiac Purkinje fiber,cardiac Purkinje fiber +http://purl.obolibrary.org/obo/UBERON_0002354,cardiac Purkinje fiber,myofibra conducens cardiacus +http://purl.obolibrary.org/obo/UBERON_0002354,cardiac Purkinje fiber,subendocardial branch +http://purl.obolibrary.org/obo/UBERON_0002355,pelvic region of trunk,lesser pelvis +http://purl.obolibrary.org/obo/UBERON_0002355,pelvic region of trunk,pelvic region +http://purl.obolibrary.org/obo/UBERON_0002355,pelvic region of trunk,pelvis +http://purl.obolibrary.org/obo/UBERON_0002355,pelvic region of trunk,pelvis region +http://purl.obolibrary.org/obo/UBERON_0002355,pelvic region of trunk,true pelvis +http://purl.obolibrary.org/obo/UBERON_0002356,perineum,perineal region +http://purl.obolibrary.org/obo/UBERON_0002356,perineum,regio perinealis +http://purl.obolibrary.org/obo/UBERON_0002357,serous pericardium,pericardium serosum +http://purl.obolibrary.org/obo/UBERON_0002357,serous pericardium,serous portion of pericardium +http://purl.obolibrary.org/obo/UBERON_0002358,peritoneum, +http://purl.obolibrary.org/obo/UBERON_0002359,fibrous pericardium,fibrous portion of pericardium +http://purl.obolibrary.org/obo/UBERON_0002360,meninx,layer of meninges +http://purl.obolibrary.org/obo/UBERON_0002360,meninx,meningeal layer +http://purl.obolibrary.org/obo/UBERON_0002361,pia mater,pia mater of neuraxis +http://purl.obolibrary.org/obo/UBERON_0002361,pia mater,pial membrane +http://purl.obolibrary.org/obo/UBERON_0002362,arachnoid mater,arachnoid +http://purl.obolibrary.org/obo/UBERON_0002362,arachnoid mater,arachnoid mater of neuraxis +http://purl.obolibrary.org/obo/UBERON_0002362,arachnoid mater,arachnoid membrane +http://purl.obolibrary.org/obo/UBERON_0002363,dura mater,dura mater of neuraxis +http://purl.obolibrary.org/obo/UBERON_0002363,dura mater,pachymeninges +http://purl.obolibrary.org/obo/UBERON_0002364,tympanic membrane,Rivinus' membrane +http://purl.obolibrary.org/obo/UBERON_0002364,tympanic membrane,ear drum +http://purl.obolibrary.org/obo/UBERON_0002364,tympanic membrane,eardrum +http://purl.obolibrary.org/obo/UBERON_0002364,tympanic membrane,lateral wall of tympanic cavity +http://purl.obolibrary.org/obo/UBERON_0002364,tympanic membrane,membranous wall of tympanic cavity +http://purl.obolibrary.org/obo/UBERON_0002364,tympanic membrane,myrinx +http://purl.obolibrary.org/obo/UBERON_0002364,tympanic membrane,paries membranaceus cavi tympani +http://purl.obolibrary.org/obo/UBERON_0002365,exocrine gland,ducted gland +http://purl.obolibrary.org/obo/UBERON_0002365,exocrine gland,glandula exocrina +http://purl.obolibrary.org/obo/UBERON_0002366,bulbo-urethral gland,Cowper's gland +http://purl.obolibrary.org/obo/UBERON_0002366,bulbo-urethral gland,Cowper's gland of male +http://purl.obolibrary.org/obo/UBERON_0002366,bulbo-urethral gland,Cowper's glands +http://purl.obolibrary.org/obo/UBERON_0002366,bulbo-urethral gland,Mery's gland +http://purl.obolibrary.org/obo/UBERON_0002366,bulbo-urethral gland,Méry gland +http://purl.obolibrary.org/obo/UBERON_0002366,bulbo-urethral gland,bulbourethral gland +http://purl.obolibrary.org/obo/UBERON_0002366,bulbo-urethral gland,glandula bulbourethralis +http://purl.obolibrary.org/obo/UBERON_0002367,prostate gland,male prostate +http://purl.obolibrary.org/obo/UBERON_0002367,prostate gland,prostata +http://purl.obolibrary.org/obo/UBERON_0002367,prostate gland,prostate +http://purl.obolibrary.org/obo/UBERON_0002368,endocrine gland,ductless gland +http://purl.obolibrary.org/obo/UBERON_0002368,endocrine gland,glandula endocrina +http://purl.obolibrary.org/obo/UBERON_0002368,endocrine gland,glandulae endocrinae +http://purl.obolibrary.org/obo/UBERON_0002369,adrenal gland,adrenal +http://purl.obolibrary.org/obo/UBERON_0002369,adrenal gland,adrenal capsule +http://purl.obolibrary.org/obo/UBERON_0002369,adrenal gland,adrenal medulla cell +http://purl.obolibrary.org/obo/UBERON_0002369,adrenal gland,atrabiliary capsule +http://purl.obolibrary.org/obo/UBERON_0002369,adrenal gland,epinephric gland +http://purl.obolibrary.org/obo/UBERON_0002369,adrenal gland,epinephros +http://purl.obolibrary.org/obo/UBERON_0002369,adrenal gland,glandula adrenalis +http://purl.obolibrary.org/obo/UBERON_0002369,adrenal gland,glandula suprarenalis +http://purl.obolibrary.org/obo/UBERON_0002369,adrenal gland,interrenal gland +http://purl.obolibrary.org/obo/UBERON_0002369,adrenal gland,suprarenal capsule +http://purl.obolibrary.org/obo/UBERON_0002369,adrenal gland,suprarenal gland +http://purl.obolibrary.org/obo/UBERON_0002370,thymus,thymus gland +http://purl.obolibrary.org/obo/UBERON_0002370,thymus,thymus organ +http://purl.obolibrary.org/obo/UBERON_0002371,bone marrow,medulla ossea +http://purl.obolibrary.org/obo/UBERON_0002371,bone marrow,medulla ossium +http://purl.obolibrary.org/obo/UBERON_0002372,tonsil, +http://purl.obolibrary.org/obo/UBERON_0002373,palatine tonsil,faucial tonsil +http://purl.obolibrary.org/obo/UBERON_0002374,metacarpal bone,metacarpal +http://purl.obolibrary.org/obo/UBERON_0002375,cricoid cartilage,cartilago cricoidea +http://purl.obolibrary.org/obo/UBERON_0002376,cranial muscle,cephalic muscle +http://purl.obolibrary.org/obo/UBERON_0002376,cranial muscle,cephalic musculature +http://purl.obolibrary.org/obo/UBERON_0002376,cranial muscle,head muscle +http://purl.obolibrary.org/obo/UBERON_0002376,cranial muscle,head muscle organ +http://purl.obolibrary.org/obo/UBERON_0002376,cranial muscle,muscle of head +http://purl.obolibrary.org/obo/UBERON_0002376,cranial muscle,muscle organ of adult head +http://purl.obolibrary.org/obo/UBERON_0002376,cranial muscle,muscle organ of head +http://purl.obolibrary.org/obo/UBERON_0002376,cranial muscle,musculus caput +http://purl.obolibrary.org/obo/UBERON_0002377,muscle of neck,muscle organ of neck +http://purl.obolibrary.org/obo/UBERON_0002377,muscle of neck,muscle organ of neck (volume) +http://purl.obolibrary.org/obo/UBERON_0002377,muscle of neck,neck (volume) muscle organ +http://purl.obolibrary.org/obo/UBERON_0002377,muscle of neck,neck muscle +http://purl.obolibrary.org/obo/UBERON_0002377,muscle of neck,neck muscle organ +http://purl.obolibrary.org/obo/UBERON_0002378,muscle of abdomen,abdomen muscle +http://purl.obolibrary.org/obo/UBERON_0002378,muscle of abdomen,abdomen muscle organ +http://purl.obolibrary.org/obo/UBERON_0002378,muscle of abdomen,abdominal muscle +http://purl.obolibrary.org/obo/UBERON_0002378,muscle of abdomen,abdominal wall muscle +http://purl.obolibrary.org/obo/UBERON_0002378,muscle of abdomen,muscle organ of abdomen +http://purl.obolibrary.org/obo/UBERON_0002379,perineal muscle,muscle of perineum +http://purl.obolibrary.org/obo/UBERON_0002379,perineal muscle,muscle organ of perineal region +http://purl.obolibrary.org/obo/UBERON_0002379,perineal muscle,muscle organ of perineum +http://purl.obolibrary.org/obo/UBERON_0002379,perineal muscle,perineal region muscle organ +http://purl.obolibrary.org/obo/UBERON_0002379,perineal muscle,perineum muscle organ +http://purl.obolibrary.org/obo/UBERON_0002380,trapezius muscle,trapezius +http://purl.obolibrary.org/obo/UBERON_0002381,pectoralis major,pectoralis major muscle +http://purl.obolibrary.org/obo/UBERON_0002381,pectoralis major,pectoralis major muscle structure +http://purl.obolibrary.org/obo/UBERON_0002382,rectus abdominis muscle,m. rectus abdominis +http://purl.obolibrary.org/obo/UBERON_0002382,rectus abdominis muscle,musculus rectus abdominis +http://purl.obolibrary.org/obo/UBERON_0002382,rectus abdominis muscle,rectus abdominis +http://purl.obolibrary.org/obo/UBERON_0002383,supraspinatus muscle,musculus supraspinatus +http://purl.obolibrary.org/obo/UBERON_0002383,supraspinatus muscle,supraspinatus +http://purl.obolibrary.org/obo/UBERON_0002384,connective tissue,Bindegewebe +http://purl.obolibrary.org/obo/UBERON_0002384,connective tissue,portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0002384,connective tissue,textus connectivus +http://purl.obolibrary.org/obo/UBERON_0002385,muscle tissue,muscular tissue +http://purl.obolibrary.org/obo/UBERON_0002385,muscle tissue,portion of muscle tissue +http://purl.obolibrary.org/obo/UBERON_0002385,muscle tissue,textus muscularis +http://purl.obolibrary.org/obo/UBERON_0002386,forelimb zeugopod,antebrachial region +http://purl.obolibrary.org/obo/UBERON_0002386,forelimb zeugopod,antebrachium +http://purl.obolibrary.org/obo/UBERON_0002386,forelimb zeugopod,antibrachium +http://purl.obolibrary.org/obo/UBERON_0002386,forelimb zeugopod,arm middle limb segment +http://purl.obolibrary.org/obo/UBERON_0002386,forelimb zeugopod,arm zeugopod +http://purl.obolibrary.org/obo/UBERON_0002386,forelimb zeugopod,brachial region middle limb segment +http://purl.obolibrary.org/obo/UBERON_0002386,forelimb zeugopod,brachial region zeugopod +http://purl.obolibrary.org/obo/UBERON_0002386,forelimb zeugopod,forearm +http://purl.obolibrary.org/obo/UBERON_0002386,forelimb zeugopod,forelimb epipodium +http://purl.obolibrary.org/obo/UBERON_0002386,forelimb zeugopod,forelimb zeugopodium +http://purl.obolibrary.org/obo/UBERON_0002386,forelimb zeugopod,forelimb zygopod +http://purl.obolibrary.org/obo/UBERON_0002386,forelimb zeugopod,intermediate segment of free upper limb +http://purl.obolibrary.org/obo/UBERON_0002386,forelimb zeugopod,lower arm +http://purl.obolibrary.org/obo/UBERON_0002386,forelimb zeugopod,lower segment of arm +http://purl.obolibrary.org/obo/UBERON_0002386,forelimb zeugopod,middle limb segment of arm +http://purl.obolibrary.org/obo/UBERON_0002386,forelimb zeugopod,middle limb segment of brachial region +http://purl.obolibrary.org/obo/UBERON_0002386,forelimb zeugopod,middle limb segment of forelimb +http://purl.obolibrary.org/obo/UBERON_0002386,forelimb zeugopod,middle limb segment of proximal segment of free upper limb +http://purl.obolibrary.org/obo/UBERON_0002386,forelimb zeugopod,regio antebrachialis +http://purl.obolibrary.org/obo/UBERON_0002386,forelimb zeugopod,zeugopod of arm +http://purl.obolibrary.org/obo/UBERON_0002386,forelimb zeugopod,zeugopod of brachial region +http://purl.obolibrary.org/obo/UBERON_0002386,forelimb zeugopod,zeugopod of forelimb +http://purl.obolibrary.org/obo/UBERON_0002386,forelimb zeugopod,zeugopod of proximal segment of free upper limb +http://purl.obolibrary.org/obo/UBERON_0002387,pes,foot +http://purl.obolibrary.org/obo/UBERON_0002387,pes,hindlimb autopod +http://purl.obolibrary.org/obo/UBERON_0002387,pes,hindlimb autopodium +http://purl.obolibrary.org/obo/UBERON_0002387,pes,hindlimb distal free limb segment +http://purl.obolibrary.org/obo/UBERON_0002387,pes,pes +http://purl.obolibrary.org/obo/UBERON_0002387,pes,terminal segment of free lower limb +http://purl.obolibrary.org/obo/UBERON_0002389,manual digit,digit of hand +http://purl.obolibrary.org/obo/UBERON_0002389,manual digit,digit of manus +http://purl.obolibrary.org/obo/UBERON_0002389,manual digit,digitus manus +http://purl.obolibrary.org/obo/UBERON_0002389,manual digit,finger +http://purl.obolibrary.org/obo/UBERON_0002389,manual digit,fore digit +http://purl.obolibrary.org/obo/UBERON_0002389,manual digit,forelimb digit +http://purl.obolibrary.org/obo/UBERON_0002389,manual digit,hand digit +http://purl.obolibrary.org/obo/UBERON_0002389,manual digit,manual digit (phalangeal portion) plus soft tissue +http://purl.obolibrary.org/obo/UBERON_0002390,hematopoietic system,Blutbildungssystem +http://purl.obolibrary.org/obo/UBERON_0002390,hematopoietic system,haematological system +http://purl.obolibrary.org/obo/UBERON_0002390,hematopoietic system,haematopoietic system +http://purl.obolibrary.org/obo/UBERON_0002390,hematopoietic system,haemopoietic system +http://purl.obolibrary.org/obo/UBERON_0002390,hematopoietic system,hematological system +http://purl.obolibrary.org/obo/UBERON_0002390,hematopoietic system,hematolymphoid system +http://purl.obolibrary.org/obo/UBERON_0002390,hematopoietic system,hemopoietic system +http://purl.obolibrary.org/obo/UBERON_0002390,hematopoietic system,organa haemopoietica +http://purl.obolibrary.org/obo/UBERON_0002391,lymph, +http://purl.obolibrary.org/obo/UBERON_0002392,nasolacrimal duct, +http://purl.obolibrary.org/obo/UBERON_0002393,pharyngotympanic tube,auditory tube +http://purl.obolibrary.org/obo/UBERON_0002393,pharyngotympanic tube,internal auditory tube +http://purl.obolibrary.org/obo/UBERON_0002393,pharyngotympanic tube,pharyngo-tympanic tube +http://purl.obolibrary.org/obo/UBERON_0002393,pharyngotympanic tube,tuba auditiva +http://purl.obolibrary.org/obo/UBERON_0002393,pharyngotympanic tube,tuba auditoria +http://purl.obolibrary.org/obo/UBERON_0002394,bile duct, +http://purl.obolibrary.org/obo/UBERON_0002395,talus, +http://purl.obolibrary.org/obo/UBERON_0002396,vomer,vomer bone +http://purl.obolibrary.org/obo/UBERON_0002397,maxilla, +http://purl.obolibrary.org/obo/UBERON_0002398,manus,forelimb autopod +http://purl.obolibrary.org/obo/UBERON_0002398,manus,forelimb autopodium +http://purl.obolibrary.org/obo/UBERON_0002398,manus,hand +http://purl.obolibrary.org/obo/UBERON_0002398,manus,hand region +http://purl.obolibrary.org/obo/UBERON_0002398,manus,terminal segment of free upper limb +http://purl.obolibrary.org/obo/UBERON_0002399,lesser omentum, +http://purl.obolibrary.org/obo/UBERON_0002400,parietal pleura, +http://purl.obolibrary.org/obo/UBERON_0002401,visceral pleura,pleura pulmonalis +http://purl.obolibrary.org/obo/UBERON_0002401,visceral pleura,pleura visceralis +http://purl.obolibrary.org/obo/UBERON_0002401,visceral pleura,pleura visceralis (pulmonalis) +http://purl.obolibrary.org/obo/UBERON_0002401,visceral pleura,pulmonary visceral pleura +http://purl.obolibrary.org/obo/UBERON_0002402,pleural cavity,cavitas pleuralis +http://purl.obolibrary.org/obo/UBERON_0002403,internal intercostal muscle,intercostales internus +http://purl.obolibrary.org/obo/UBERON_0002404,transversus thoracis, +http://purl.obolibrary.org/obo/UBERON_0002405,immune system, +http://purl.obolibrary.org/obo/UBERON_0002406,pericardial sac,pericardium +http://purl.obolibrary.org/obo/UBERON_0002407,pericardium, +http://purl.obolibrary.org/obo/UBERON_0002408,parietal serous pericardium,lamina parietalis (pericardii serosum) +http://purl.obolibrary.org/obo/UBERON_0002408,parietal serous pericardium,lamina parietalis pericardii +http://purl.obolibrary.org/obo/UBERON_0002408,parietal serous pericardium,parietal layer of serous pericardium +http://purl.obolibrary.org/obo/UBERON_0002408,parietal serous pericardium,parietal pericardium +http://purl.obolibrary.org/obo/UBERON_0002409,pericardial fluid, +http://purl.obolibrary.org/obo/UBERON_0002410,autonomic nervous system,ANS +http://purl.obolibrary.org/obo/UBERON_0002410,autonomic nervous system,autonomic division of peripheral nervous system +http://purl.obolibrary.org/obo/UBERON_0002410,autonomic nervous system,autonomic part of peripheral nervous system +http://purl.obolibrary.org/obo/UBERON_0002410,autonomic nervous system,divisio autonomica systematis nervosi peripherici +http://purl.obolibrary.org/obo/UBERON_0002410,autonomic nervous system,pars autonomica systematis nervosi peripherici +http://purl.obolibrary.org/obo/UBERON_0002410,autonomic nervous system,peripheral autonomic nervous system +http://purl.obolibrary.org/obo/UBERON_0002410,autonomic nervous system,visceral nervous system +http://purl.obolibrary.org/obo/UBERON_0002411,clitoris, +http://purl.obolibrary.org/obo/UBERON_0002412,vertebra,vertebra bone +http://purl.obolibrary.org/obo/UBERON_0002412,vertebra,vertebrae +http://purl.obolibrary.org/obo/UBERON_0002413,cervical vertebra,cervical vertebrae +http://purl.obolibrary.org/obo/UBERON_0002414,lumbar vertebra, +http://purl.obolibrary.org/obo/UBERON_0002415,tail,caudal subdivision +http://purl.obolibrary.org/obo/UBERON_0002416,integumental system,body surface +http://purl.obolibrary.org/obo/UBERON_0002416,integumental system,dermal system +http://purl.obolibrary.org/obo/UBERON_0002416,integumental system,external covering of organism +http://purl.obolibrary.org/obo/UBERON_0002416,integumental system,integumentary system +http://purl.obolibrary.org/obo/UBERON_0002416,integumental system,integumentum commune +http://purl.obolibrary.org/obo/UBERON_0002416,integumental system,organism surface +http://purl.obolibrary.org/obo/UBERON_0002416,integumental system,surface +http://purl.obolibrary.org/obo/UBERON_0002417,abdominal segment of trunk,abdomen/pelvis/perineum +http://purl.obolibrary.org/obo/UBERON_0002417,abdominal segment of trunk,lower body +http://purl.obolibrary.org/obo/UBERON_0002417,abdominal segment of trunk,lower trunk +http://purl.obolibrary.org/obo/UBERON_0002417,abdominal segment of trunk,lumbar region +http://purl.obolibrary.org/obo/UBERON_0002418,cartilage tissue,cartilage tissue +http://purl.obolibrary.org/obo/UBERON_0002418,cartilage tissue,cartilaginous tissue +http://purl.obolibrary.org/obo/UBERON_0002418,cartilage tissue,chondrogenic tissue +http://purl.obolibrary.org/obo/UBERON_0002419,skin gland,glandulae cutis +http://purl.obolibrary.org/obo/UBERON_0002420,basal ganglion,basal ganglia +http://purl.obolibrary.org/obo/UBERON_0002420,basal ganglion,basal ganglion of telencephalon +http://purl.obolibrary.org/obo/UBERON_0002420,basal ganglion,basal nucleus +http://purl.obolibrary.org/obo/UBERON_0002420,basal ganglion,nuclei basales +http://purl.obolibrary.org/obo/UBERON_0002421,hippocampal formation,archipallium +http://purl.obolibrary.org/obo/UBERON_0002421,hippocampal formation,formatio hippocampi +http://purl.obolibrary.org/obo/UBERON_0002421,hippocampal formation,hippocampus +http://purl.obolibrary.org/obo/UBERON_0002421,hippocampal formation,hippocampus (Crosby) +http://purl.obolibrary.org/obo/UBERON_0002421,hippocampal formation,major hippocampus +http://purl.obolibrary.org/obo/UBERON_0002421,hippocampal formation,primal cortex +http://purl.obolibrary.org/obo/UBERON_0002421,hippocampal formation,seahorse +http://purl.obolibrary.org/obo/UBERON_0002422,fourth ventricle,4th ventricle +http://purl.obolibrary.org/obo/UBERON_0002422,fourth ventricle,IVth ventricle +http://purl.obolibrary.org/obo/UBERON_0002422,fourth ventricle,fourth ventricle proper +http://purl.obolibrary.org/obo/UBERON_0002422,fourth ventricle,hindbrain ventricle +http://purl.obolibrary.org/obo/UBERON_0002422,fourth ventricle,rhombencephalic ventricle +http://purl.obolibrary.org/obo/UBERON_0002422,fourth ventricle,rhombencephalic vesicle +http://purl.obolibrary.org/obo/UBERON_0002422,fourth ventricle,ventricle IV +http://purl.obolibrary.org/obo/UBERON_0002422,fourth ventricle,ventricle of hindbrain +http://purl.obolibrary.org/obo/UBERON_0002422,fourth ventricle,ventricle of rhombencephalon +http://purl.obolibrary.org/obo/UBERON_0002422,fourth ventricle,ventriculus quartus +http://purl.obolibrary.org/obo/UBERON_0002423,hepatobiliary system,hepaticobiliary system +http://purl.obolibrary.org/obo/UBERON_0002423,hepatobiliary system,liver and biliary system +http://purl.obolibrary.org/obo/UBERON_0002423,hepatobiliary system,liver/biliary system +http://purl.obolibrary.org/obo/UBERON_0002424,oral epithelium,epithelium of mucosa of mouth +http://purl.obolibrary.org/obo/UBERON_0002424,oral epithelium,epithelium of oral mucosa +http://purl.obolibrary.org/obo/UBERON_0002425,visceral serous pericardium,epicardium +http://purl.obolibrary.org/obo/UBERON_0002425,visceral serous pericardium,lamina visceralis pericardii serosi +http://purl.obolibrary.org/obo/UBERON_0002425,visceral serous pericardium,pericardium visceral mesothelium +http://purl.obolibrary.org/obo/UBERON_0002425,visceral serous pericardium,serous visceral pericardium +http://purl.obolibrary.org/obo/UBERON_0002425,visceral serous pericardium,visceral lamina of serous pericardium +http://purl.obolibrary.org/obo/UBERON_0002425,visceral serous pericardium,visceral layer of serous pericardium +http://purl.obolibrary.org/obo/UBERON_0002425,visceral serous pericardium,visceral pericardium +http://purl.obolibrary.org/obo/UBERON_0002426,chest muscle,anterior thoracic region muscle organ +http://purl.obolibrary.org/obo/UBERON_0002426,chest muscle,anterolateral part of thorax muscle organ +http://purl.obolibrary.org/obo/UBERON_0002426,chest muscle,chest muscle organ +http://purl.obolibrary.org/obo/UBERON_0002426,chest muscle,front of thorax muscle organ +http://purl.obolibrary.org/obo/UBERON_0002426,chest muscle,muscle of thorax +http://purl.obolibrary.org/obo/UBERON_0002426,chest muscle,muscle organ of anterior thoracic region +http://purl.obolibrary.org/obo/UBERON_0002426,chest muscle,muscle organ of anterolateral part of thorax +http://purl.obolibrary.org/obo/UBERON_0002426,chest muscle,muscle organ of chest +http://purl.obolibrary.org/obo/UBERON_0002426,chest muscle,muscle organ of front of thorax +http://purl.obolibrary.org/obo/UBERON_0002426,chest muscle,musculus thoracicus +http://purl.obolibrary.org/obo/UBERON_0002426,chest muscle,thoracic muscle +http://purl.obolibrary.org/obo/UBERON_0002427,arm skin,skin of arm +http://purl.obolibrary.org/obo/UBERON_0002428,limb bone,bone of extremity +http://purl.obolibrary.org/obo/UBERON_0002428,limb bone,bone of limb +http://purl.obolibrary.org/obo/UBERON_0002428,limb bone,free limb bone +http://purl.obolibrary.org/obo/UBERON_0002429,cervical lymph node,lymph node of neck +http://purl.obolibrary.org/obo/UBERON_0002430,lateral hypothalamic area,LH +http://purl.obolibrary.org/obo/UBERON_0002430,lateral hypothalamic area,area hypothalamica lateralis +http://purl.obolibrary.org/obo/UBERON_0002430,lateral hypothalamic area,area lateralis hypothalami +http://purl.obolibrary.org/obo/UBERON_0002430,lateral hypothalamic area,lateral division of hypothalamus +http://purl.obolibrary.org/obo/UBERON_0002430,lateral hypothalamic area,lateral group of hypothalamic nuclei +http://purl.obolibrary.org/obo/UBERON_0002430,lateral hypothalamic area,lateral hypothalamic area (Nissl 1913) +http://purl.obolibrary.org/obo/UBERON_0002430,lateral hypothalamic area,lateral hypothalamic area proper +http://purl.obolibrary.org/obo/UBERON_0002430,lateral hypothalamic area,lateral hypothalamic group +http://purl.obolibrary.org/obo/UBERON_0002430,lateral hypothalamic area,lateral hypothalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0002430,lateral hypothalamic area,lateral hypothalamic region +http://purl.obolibrary.org/obo/UBERON_0002430,lateral hypothalamic area,lateral hypothalamic zone (Crosby) +http://purl.obolibrary.org/obo/UBERON_0002432,pars intermedia of adenohypophysis,intermediate lobe of adenohypophysis +http://purl.obolibrary.org/obo/UBERON_0002432,pars intermedia of adenohypophysis,intermediate lobe of pituitary +http://purl.obolibrary.org/obo/UBERON_0002432,pars intermedia of adenohypophysis,pars intermedia +http://purl.obolibrary.org/obo/UBERON_0002432,pars intermedia of adenohypophysis,pars intermedia (glandula pituitaria) +http://purl.obolibrary.org/obo/UBERON_0002432,pars intermedia of adenohypophysis,pars intermedia adenohypophysis +http://purl.obolibrary.org/obo/UBERON_0002432,pars intermedia of adenohypophysis,pars intermedia of anterior lobe of pituitary gland +http://purl.obolibrary.org/obo/UBERON_0002433,pars tuberalis of adenohypophysis,pars infundibularis of adenohypophysis +http://purl.obolibrary.org/obo/UBERON_0002433,pars tuberalis of adenohypophysis,pars tuberalis +http://purl.obolibrary.org/obo/UBERON_0002433,pars tuberalis of adenohypophysis,pars tuberalis (glandula pituitaria) +http://purl.obolibrary.org/obo/UBERON_0002433,pars tuberalis of adenohypophysis,pars tuberalis adenohypophysis +http://purl.obolibrary.org/obo/UBERON_0002433,pars tuberalis of adenohypophysis,pars tuberalis of anterior lobe of pituitary gland +http://purl.obolibrary.org/obo/UBERON_0002434,pituitary stalk,hypophyseal stalk +http://purl.obolibrary.org/obo/UBERON_0002434,pituitary stalk,infundibular stalk +http://purl.obolibrary.org/obo/UBERON_0002434,pituitary stalk,infundibular stem +http://purl.obolibrary.org/obo/UBERON_0002434,pituitary stalk,infundibular stem of neurohypophysis +http://purl.obolibrary.org/obo/UBERON_0002434,pituitary stalk,infundibulum +http://purl.obolibrary.org/obo/UBERON_0002434,pituitary stalk,infundibulum (lobus posterior) (glandula pituitaria) +http://purl.obolibrary.org/obo/UBERON_0002434,pituitary stalk,infundibulum hypophysis +http://purl.obolibrary.org/obo/UBERON_0002434,pituitary stalk,infundibulum of neurohypophysis +http://purl.obolibrary.org/obo/UBERON_0002434,pituitary stalk,infundibulum of pituitary gland +http://purl.obolibrary.org/obo/UBERON_0002434,pituitary stalk,infundibulum of posterior lobe of pituitary gland +http://purl.obolibrary.org/obo/UBERON_0002434,pituitary stalk,neurohypophysis infundibulum +http://purl.obolibrary.org/obo/UBERON_0002434,pituitary stalk,pituitary infundibular stalk +http://purl.obolibrary.org/obo/UBERON_0002434,pituitary stalk,tuberal part of hypophysis +http://purl.obolibrary.org/obo/UBERON_0002435,striatum,caudate putamen +http://purl.obolibrary.org/obo/UBERON_0002435,striatum,corpus striatum +http://purl.obolibrary.org/obo/UBERON_0002435,striatum,corpus striatum (Zilles) +http://purl.obolibrary.org/obo/UBERON_0002435,striatum,dorsal striatum +http://purl.obolibrary.org/obo/UBERON_0002435,striatum,neostriatum +http://purl.obolibrary.org/obo/UBERON_0002435,striatum,neuraxis striatum +http://purl.obolibrary.org/obo/UBERON_0002435,striatum,striate nucleus +http://purl.obolibrary.org/obo/UBERON_0002435,striatum,striated nucleus +http://purl.obolibrary.org/obo/UBERON_0002435,striatum,striatum +http://purl.obolibrary.org/obo/UBERON_0002435,striatum,striatum of neuraxis +http://purl.obolibrary.org/obo/UBERON_0002436,primary visual cortex,striate cortex +http://purl.obolibrary.org/obo/UBERON_0002437,cerebral hemisphere white matter,cerebral hemisphere white matter +http://purl.obolibrary.org/obo/UBERON_0002437,cerebral hemisphere white matter,cerebral white matter +http://purl.obolibrary.org/obo/UBERON_0002437,cerebral hemisphere white matter,hemisphere white matter +http://purl.obolibrary.org/obo/UBERON_0002437,cerebral hemisphere white matter,region of cerebral white matter +http://purl.obolibrary.org/obo/UBERON_0002437,cerebral hemisphere white matter,substantia medullaris cerebri +http://purl.obolibrary.org/obo/UBERON_0002437,cerebral hemisphere white matter,white matter structure of cerebral hemisphere +http://purl.obolibrary.org/obo/UBERON_0002438,ventral tegmental nucleus,deep tegmental nucleus of Gudden +http://purl.obolibrary.org/obo/UBERON_0002438,ventral tegmental nucleus,ventral raphe tegmental nucleus +http://purl.obolibrary.org/obo/UBERON_0002438,ventral tegmental nucleus,ventral tegmental nuclei +http://purl.obolibrary.org/obo/UBERON_0002438,ventral tegmental nucleus,ventral tegmental nucleus (gudden) +http://purl.obolibrary.org/obo/UBERON_0002438,ventral tegmental nucleus,ventral tegmental nucleus of Gudden +http://purl.obolibrary.org/obo/UBERON_0002439,myenteric nerve plexus,Auberbach plexus +http://purl.obolibrary.org/obo/UBERON_0002439,myenteric nerve plexus,Auberbach's plexus +http://purl.obolibrary.org/obo/UBERON_0002439,myenteric nerve plexus,Auberbachs plexus +http://purl.obolibrary.org/obo/UBERON_0002439,myenteric nerve plexus,Auerbach's plexus +http://purl.obolibrary.org/obo/UBERON_0002439,myenteric nerve plexus,Meissner's plexus +http://purl.obolibrary.org/obo/UBERON_0002439,myenteric nerve plexus,Remak's plexus +http://purl.obolibrary.org/obo/UBERON_0002439,myenteric nerve plexus,myenteric plexus +http://purl.obolibrary.org/obo/UBERON_0002439,myenteric nerve plexus,plexus myentericus +http://purl.obolibrary.org/obo/UBERON_0002439,myenteric nerve plexus,plexus nervosus submucosus +http://purl.obolibrary.org/obo/UBERON_0002439,myenteric nerve plexus,plexus submucosus +http://purl.obolibrary.org/obo/UBERON_0002439,myenteric nerve plexus,submucous plexus +http://purl.obolibrary.org/obo/UBERON_0002440,inferior cervical ganglion,cervico-thoracic +http://purl.obolibrary.org/obo/UBERON_0002440,inferior cervical ganglion,cervico-thoracic ganglion +http://purl.obolibrary.org/obo/UBERON_0002440,inferior cervical ganglion,ganglion cervicale inferioris +http://purl.obolibrary.org/obo/UBERON_0002440,inferior cervical ganglion,ganglion cervicale inferius +http://purl.obolibrary.org/obo/UBERON_0002440,inferior cervical ganglion,stellate ganglion +http://purl.obolibrary.org/obo/UBERON_0002440,inferior cervical ganglion,variant cervical ganglion +http://purl.obolibrary.org/obo/UBERON_0002441,cervicothoracic ganglion,cervicothoracic sympathetic ganglion +http://purl.obolibrary.org/obo/UBERON_0002441,cervicothoracic ganglion,ganglion cervicothoracicum +http://purl.obolibrary.org/obo/UBERON_0002441,cervicothoracic ganglion,ganglion stellatum +http://purl.obolibrary.org/obo/UBERON_0002441,cervicothoracic ganglion,stellate ganglion +http://purl.obolibrary.org/obo/UBERON_0002442,axillary nerve trunk,right axillary neural trunk +http://purl.obolibrary.org/obo/UBERON_0002442,axillary nerve trunk,trunk of right axillary nerve +http://purl.obolibrary.org/obo/UBERON_0002443,choroidal blood vessel,blood vessel of choroid +http://purl.obolibrary.org/obo/UBERON_0002443,choroidal blood vessel,blood vessel of choroid coat +http://purl.obolibrary.org/obo/UBERON_0002443,choroidal blood vessel,blood vessel of choroidea +http://purl.obolibrary.org/obo/UBERON_0002443,choroidal blood vessel,blood vessel of posterior uvea +http://purl.obolibrary.org/obo/UBERON_0002443,choroidal blood vessel,choroid blood vessel +http://purl.obolibrary.org/obo/UBERON_0002443,choroidal blood vessel,choroid blood vessels +http://purl.obolibrary.org/obo/UBERON_0002443,choroidal blood vessel,choroid blood vessels set +http://purl.obolibrary.org/obo/UBERON_0002443,choroidal blood vessel,choroid coat blood vessel +http://purl.obolibrary.org/obo/UBERON_0002443,choroidal blood vessel,choroidea blood vessel +http://purl.obolibrary.org/obo/UBERON_0002443,choroidal blood vessel,posterior uvea blood vessel +http://purl.obolibrary.org/obo/UBERON_0002443,choroidal blood vessel,vasa sanguinea choroideae +http://purl.obolibrary.org/obo/UBERON_0002444,lens fiber,fibrae lentis +http://purl.obolibrary.org/obo/UBERON_0002444,lens fiber,lens fibers +http://purl.obolibrary.org/obo/UBERON_0002444,lens fiber,lens fibers set +http://purl.obolibrary.org/obo/UBERON_0002444,lens fiber,lens fibres +http://purl.obolibrary.org/obo/UBERON_0002445,ulnare,cuneiform bone of hand +http://purl.obolibrary.org/obo/UBERON_0002445,ulnare,cuneiform bone of manus +http://purl.obolibrary.org/obo/UBERON_0002445,ulnare,os triquetrum +http://purl.obolibrary.org/obo/UBERON_0002445,ulnare,os ulnare +http://purl.obolibrary.org/obo/UBERON_0002445,ulnare,triangular bone +http://purl.obolibrary.org/obo/UBERON_0002445,ulnare,triquetral +http://purl.obolibrary.org/obo/UBERON_0002445,ulnare,triquetral bone +http://purl.obolibrary.org/obo/UBERON_0002446,patella, +http://purl.obolibrary.org/obo/UBERON_0002447,palatine gland,palatine glands set +http://purl.obolibrary.org/obo/UBERON_0002447,palatine gland,palatine mucuous gland +http://purl.obolibrary.org/obo/UBERON_0002447,palatine gland,palatine salivary gland +http://purl.obolibrary.org/obo/UBERON_0002447,palatine gland,salivary palatine gland +http://purl.obolibrary.org/obo/UBERON_0002448,fungiform papilla,fungiform papilla of tongue +http://purl.obolibrary.org/obo/UBERON_0002448,fungiform papilla,fungiform papillae +http://purl.obolibrary.org/obo/UBERON_0002448,fungiform papilla,fungiform papillae set +http://purl.obolibrary.org/obo/UBERON_0002450,decidua,decidous membrane +http://purl.obolibrary.org/obo/UBERON_0002451,endometrial gland,endometrial gland +http://purl.obolibrary.org/obo/UBERON_0002451,endometrial gland,endometrial mucuous gland +http://purl.obolibrary.org/obo/UBERON_0002451,endometrial gland,endometrium gland +http://purl.obolibrary.org/obo/UBERON_0002451,endometrial gland,glandulae uterinae +http://purl.obolibrary.org/obo/UBERON_0002451,endometrial gland,uterine gland +http://purl.obolibrary.org/obo/UBERON_0002453,ethmoid sinus,ethmoidal bone sinus +http://purl.obolibrary.org/obo/UBERON_0002453,ethmoid sinus,ethmoidal sinus +http://purl.obolibrary.org/obo/UBERON_0002454,dorsal metacarpal artery,arteriae metacarpales dorsales +http://purl.obolibrary.org/obo/UBERON_0002454,dorsal metacarpal artery,dorsal metacarpal arteries +http://purl.obolibrary.org/obo/UBERON_0002454,dorsal metacarpal artery,dorsal metacarpal arteries set +http://purl.obolibrary.org/obo/UBERON_0002455,common plantar digital arteries,arteriae digitales plantares communes +http://purl.obolibrary.org/obo/UBERON_0002455,common plantar digital arteries,common plantar digital arteries +http://purl.obolibrary.org/obo/UBERON_0002455,common plantar digital arteries,common plantar digital arteries set +http://purl.obolibrary.org/obo/UBERON_0002456,internal thoracic artery,internal mammary artery +http://purl.obolibrary.org/obo/UBERON_0002456,internal thoracic artery,internal thoracic mammary artery +http://purl.obolibrary.org/obo/UBERON_0002457,intersomitic artery,intersegmental artery +http://purl.obolibrary.org/obo/UBERON_0002458,spinal artery,spinal arteries +http://purl.obolibrary.org/obo/UBERON_0002459,inferior palpebral vein,inferior palpebral veins +http://purl.obolibrary.org/obo/UBERON_0002459,inferior palpebral vein,inferior palpebral veins set +http://purl.obolibrary.org/obo/UBERON_0002459,inferior palpebral vein,vein of inferior eyelid +http://purl.obolibrary.org/obo/UBERON_0002460,vesical vein,venae vesicales +http://purl.obolibrary.org/obo/UBERON_0002460,vesical vein,vesical veins +http://purl.obolibrary.org/obo/UBERON_0002460,vesical vein,vesical veins set +http://purl.obolibrary.org/obo/UBERON_0002461,anterior abdominal wall muscle,muscle of anterior abdominal wall +http://purl.obolibrary.org/obo/UBERON_0002461,anterior abdominal wall muscle,ventral abdominal wall muscle +http://purl.obolibrary.org/obo/UBERON_0002462,erector spinae muscle group,erector spinae +http://purl.obolibrary.org/obo/UBERON_0002462,erector spinae muscle group,extensor spinae +http://purl.obolibrary.org/obo/UBERON_0002462,erector spinae muscle group,extensor spinae muscles +http://purl.obolibrary.org/obo/UBERON_0002462,erector spinae muscle group,sacrospinalis +http://purl.obolibrary.org/obo/UBERON_0002463,muscle of posterior compartment of hindlimb stylopod,hamstring muscle +http://purl.obolibrary.org/obo/UBERON_0002463,muscle of posterior compartment of hindlimb stylopod,muscle of posterior compartment of thigh +http://purl.obolibrary.org/obo/UBERON_0002463,muscle of posterior compartment of hindlimb stylopod,posterior femoral muscle +http://purl.obolibrary.org/obo/UBERON_0002464,nerve trunk,peripheral nerve trunk +http://purl.obolibrary.org/obo/UBERON_0002464,nerve trunk,trunk of nerve +http://purl.obolibrary.org/obo/UBERON_0002464,nerve trunk,trunk of peripheral nerve +http://purl.obolibrary.org/obo/UBERON_0002465,lymphoid system,lymphatic circulatory system +http://purl.obolibrary.org/obo/UBERON_0002465,lymphoid system,lymphatic drainage system +http://purl.obolibrary.org/obo/UBERON_0002465,lymphoid system,lymphatic system +http://purl.obolibrary.org/obo/UBERON_0002465,lymphoid system,systema lymphoideum +http://purl.obolibrary.org/obo/UBERON_0002466,intestine secretion,intestinal secretion +http://purl.obolibrary.org/obo/UBERON_0002466,intestine secretion,succus entericus +http://purl.obolibrary.org/obo/UBERON_0002467,filiform papilla,filiform papilla of tongue +http://purl.obolibrary.org/obo/UBERON_0002467,filiform papilla,filiform papillae +http://purl.obolibrary.org/obo/UBERON_0002467,filiform papilla,filiform papillae set +http://purl.obolibrary.org/obo/UBERON_0002468,foliate papilla,foliate papilla of tongue +http://purl.obolibrary.org/obo/UBERON_0002468,foliate papilla,foliate papillae +http://purl.obolibrary.org/obo/UBERON_0002468,foliate papilla,foliate papillae set +http://purl.obolibrary.org/obo/UBERON_0002469,esophagus mucosa,esophageal mucosa +http://purl.obolibrary.org/obo/UBERON_0002469,esophagus mucosa,esophageal mucous membrane +http://purl.obolibrary.org/obo/UBERON_0002469,esophagus mucosa,esophagus mucosa +http://purl.obolibrary.org/obo/UBERON_0002469,esophagus mucosa,esophagus mucous membrane +http://purl.obolibrary.org/obo/UBERON_0002469,esophagus mucosa,lamina muscularis mucosae oesophageae +http://purl.obolibrary.org/obo/UBERON_0002469,esophagus mucosa,mucosa of esophagus +http://purl.obolibrary.org/obo/UBERON_0002469,esophagus mucosa,mucosa of oesophagus +http://purl.obolibrary.org/obo/UBERON_0002469,esophagus mucosa,mucous membrane of esophagus +http://purl.obolibrary.org/obo/UBERON_0002469,esophagus mucosa,mucous membrane of oesophagus +http://purl.obolibrary.org/obo/UBERON_0002469,esophagus mucosa,oesophageal mucosa +http://purl.obolibrary.org/obo/UBERON_0002469,esophagus mucosa,oesophagus mucosa +http://purl.obolibrary.org/obo/UBERON_0002469,esophagus mucosa,oesophagus mucous membrane +http://purl.obolibrary.org/obo/UBERON_0002469,esophagus mucosa,tunica mucosa esophagi +http://purl.obolibrary.org/obo/UBERON_0002469,esophagus mucosa,tunica mucosa oesophageae +http://purl.obolibrary.org/obo/UBERON_0002469,esophagus mucosa,tunica mucosa oesophagi +http://purl.obolibrary.org/obo/UBERON_0002470,autopod region,autopodial limb segment +http://purl.obolibrary.org/obo/UBERON_0002470,autopod region,autopodial segment +http://purl.obolibrary.org/obo/UBERON_0002470,autopod region,autopodium +http://purl.obolibrary.org/obo/UBERON_0002470,autopod region,autopodium region +http://purl.obolibrary.org/obo/UBERON_0002470,autopod region,distal free limb segment +http://purl.obolibrary.org/obo/UBERON_0002470,autopod region,distal segment of free limb +http://purl.obolibrary.org/obo/UBERON_0002471,zeugopod,epipodium +http://purl.obolibrary.org/obo/UBERON_0002471,zeugopod,middle free limb segment +http://purl.obolibrary.org/obo/UBERON_0002471,zeugopod,middle limb segment +http://purl.obolibrary.org/obo/UBERON_0002471,zeugopod,zeugopod limb segment +http://purl.obolibrary.org/obo/UBERON_0002471,zeugopod,zeugopodial limb segment +http://purl.obolibrary.org/obo/UBERON_0002471,zeugopod,zeugopodium +http://purl.obolibrary.org/obo/UBERON_0002471,zeugopod,zygopod +http://purl.obolibrary.org/obo/UBERON_0002471,zeugopod,zygopodium +http://purl.obolibrary.org/obo/UBERON_0002472,stylopod,propodium +http://purl.obolibrary.org/obo/UBERON_0002472,stylopod,proximal free limb segment +http://purl.obolibrary.org/obo/UBERON_0002472,stylopod,stylopodial limb segment +http://purl.obolibrary.org/obo/UBERON_0002472,stylopod,stylopodium +http://purl.obolibrary.org/obo/UBERON_0002473,intercerebral commissure, +http://purl.obolibrary.org/obo/UBERON_0002474,cerebellar peduncular complex,cerebellar peduncles +http://purl.obolibrary.org/obo/UBERON_0002474,cerebellar peduncular complex,cerebellar peduncles and decussations +http://purl.obolibrary.org/obo/UBERON_0002474,cerebellar peduncular complex,cerebellar peduncles set +http://purl.obolibrary.org/obo/UBERON_0002474,cerebellar peduncular complex,cerebellum peduncles +http://purl.obolibrary.org/obo/UBERON_0002474,cerebellar peduncular complex,pedunculi cerebellares +http://purl.obolibrary.org/obo/UBERON_0002475,saphenous nerve, +http://purl.obolibrary.org/obo/UBERON_0002476,lateral globus pallidus,external globus pallidus +http://purl.obolibrary.org/obo/UBERON_0002476,lateral globus pallidus,external pallidum +http://purl.obolibrary.org/obo/UBERON_0002476,lateral globus pallidus,external part of globus pallidus +http://purl.obolibrary.org/obo/UBERON_0002476,lateral globus pallidus,globus pallidus (rat) +http://purl.obolibrary.org/obo/UBERON_0002476,lateral globus pallidus,globus pallidus extermal segment +http://purl.obolibrary.org/obo/UBERON_0002476,lateral globus pallidus,globus pallidus external segment +http://purl.obolibrary.org/obo/UBERON_0002476,lateral globus pallidus,globus pallidus externus +http://purl.obolibrary.org/obo/UBERON_0002476,lateral globus pallidus,globus pallidus lateral part +http://purl.obolibrary.org/obo/UBERON_0002476,lateral globus pallidus,globus pallidus lateral segment +http://purl.obolibrary.org/obo/UBERON_0002476,lateral globus pallidus,globus pallidus lateralis +http://purl.obolibrary.org/obo/UBERON_0002476,lateral globus pallidus,"globus pallidus, external segment" +http://purl.obolibrary.org/obo/UBERON_0002476,lateral globus pallidus,"globus pallidus, lateral part" +http://purl.obolibrary.org/obo/UBERON_0002476,lateral globus pallidus,"globus pallidus, lateral segment" +http://purl.obolibrary.org/obo/UBERON_0002476,lateral globus pallidus,"globus pallidus, pars externa" +http://purl.obolibrary.org/obo/UBERON_0002476,lateral globus pallidus,lateral division of globus pallidus +http://purl.obolibrary.org/obo/UBERON_0002476,lateral globus pallidus,lateral pallidal segment +http://purl.obolibrary.org/obo/UBERON_0002476,lateral globus pallidus,lateral pallidum +http://purl.obolibrary.org/obo/UBERON_0002476,lateral globus pallidus,lateral part of globus pallidus +http://purl.obolibrary.org/obo/UBERON_0002476,lateral globus pallidus,lateral segment of globus pallidus +http://purl.obolibrary.org/obo/UBERON_0002476,lateral globus pallidus,lateral segment of the globus pallidus +http://purl.obolibrary.org/obo/UBERON_0002476,lateral globus pallidus,nucleus lateralis globi pallidi +http://purl.obolibrary.org/obo/UBERON_0002476,lateral globus pallidus,pallidum I +http://purl.obolibrary.org/obo/UBERON_0002476,lateral globus pallidus,pallidum dorsal region external segment +http://purl.obolibrary.org/obo/UBERON_0002476,lateral globus pallidus,pallidus II +http://purl.obolibrary.org/obo/UBERON_0002476,lateral globus pallidus,pars lateralis globi pallidi medialis +http://purl.obolibrary.org/obo/UBERON_0002477,medial globus pallidus,entopeduncular nucleus +http://purl.obolibrary.org/obo/UBERON_0002477,medial globus pallidus,entopeduncular nucleus (monakow) +http://purl.obolibrary.org/obo/UBERON_0002477,medial globus pallidus,globus pallidus inernal segment +http://purl.obolibrary.org/obo/UBERON_0002477,medial globus pallidus,globus pallidus interna +http://purl.obolibrary.org/obo/UBERON_0002477,medial globus pallidus,globus pallidus internal segment +http://purl.obolibrary.org/obo/UBERON_0002477,medial globus pallidus,globus pallidus internus +http://purl.obolibrary.org/obo/UBERON_0002477,medial globus pallidus,globus pallidus medial part +http://purl.obolibrary.org/obo/UBERON_0002477,medial globus pallidus,globus pallidus medial segment +http://purl.obolibrary.org/obo/UBERON_0002477,medial globus pallidus,globus pallidus medialis +http://purl.obolibrary.org/obo/UBERON_0002477,medial globus pallidus,globus pallidus pars medialis +http://purl.obolibrary.org/obo/UBERON_0002477,medial globus pallidus,"globus pallidus, internal segment" +http://purl.obolibrary.org/obo/UBERON_0002477,medial globus pallidus,"globus pallidus, medial part" +http://purl.obolibrary.org/obo/UBERON_0002477,medial globus pallidus,"globus pallidus, medial segment" +http://purl.obolibrary.org/obo/UBERON_0002477,medial globus pallidus,"globus pallidus, pars interna" +http://purl.obolibrary.org/obo/UBERON_0002477,medial globus pallidus,internal globus pallidus +http://purl.obolibrary.org/obo/UBERON_0002477,medial globus pallidus,internal pallidum +http://purl.obolibrary.org/obo/UBERON_0002477,medial globus pallidus,internal part of globus pallidus +http://purl.obolibrary.org/obo/UBERON_0002477,medial globus pallidus,medial division of globus pallidus +http://purl.obolibrary.org/obo/UBERON_0002477,medial globus pallidus,medial globus pallidus (entopeduncular nucleus) +http://purl.obolibrary.org/obo/UBERON_0002477,medial globus pallidus,medial pallidal segment +http://purl.obolibrary.org/obo/UBERON_0002477,medial globus pallidus,medial part of globus pallidus +http://purl.obolibrary.org/obo/UBERON_0002477,medial globus pallidus,medial segment of globus pallidus +http://purl.obolibrary.org/obo/UBERON_0002477,medial globus pallidus,medial segment of the globus pallidus +http://purl.obolibrary.org/obo/UBERON_0002477,medial globus pallidus,mesial pallidum +http://purl.obolibrary.org/obo/UBERON_0002477,medial globus pallidus,nucleus medialis globi pallidi +http://purl.obolibrary.org/obo/UBERON_0002477,medial globus pallidus,pallidum I +http://purl.obolibrary.org/obo/UBERON_0002477,medial globus pallidus,pallidum II +http://purl.obolibrary.org/obo/UBERON_0002477,medial globus pallidus,pallidum dorsal region internal segment +http://purl.obolibrary.org/obo/UBERON_0002477,medial globus pallidus,pallidus I +http://purl.obolibrary.org/obo/UBERON_0002477,medial globus pallidus,pars medialis globi pallidi +http://purl.obolibrary.org/obo/UBERON_0002477,medial globus pallidus,principal medial geniculate nucleus +http://purl.obolibrary.org/obo/UBERON_0002478,orbitosphenoid,ala minor (os sphenoidale) +http://purl.obolibrary.org/obo/UBERON_0002478,orbitosphenoid,ala minor ossis sphenoidalis +http://purl.obolibrary.org/obo/UBERON_0002478,orbitosphenoid,ingrassia's process +http://purl.obolibrary.org/obo/UBERON_0002478,orbitosphenoid,lesser wing of sphenoid +http://purl.obolibrary.org/obo/UBERON_0002478,orbitosphenoid,lesser wing of sphenoidal bone +http://purl.obolibrary.org/obo/UBERON_0002478,orbitosphenoid,orbitosphenoid bone +http://purl.obolibrary.org/obo/UBERON_0002479,dorsal lateral geniculate nucleus,"lateral geniculate complex, dorsal part" +http://purl.obolibrary.org/obo/UBERON_0002479,dorsal lateral geniculate nucleus,"lateral geniculate nucleus, dorsal part" +http://purl.obolibrary.org/obo/UBERON_0002479,dorsal lateral geniculate nucleus,nucleus dorsalis corporis geniculati lateralis +http://purl.obolibrary.org/obo/UBERON_0002479,dorsal lateral geniculate nucleus,nucleus geniculatus lateralis pars dorsalis +http://purl.obolibrary.org/obo/UBERON_0002480,ventral lateral geniculate nucleus,"corpus geniculatum externum, nucleus accessorius" +http://purl.obolibrary.org/obo/UBERON_0002480,ventral lateral geniculate nucleus,"corpus geniculatum laterale, pars oralis" +http://purl.obolibrary.org/obo/UBERON_0002480,ventral lateral geniculate nucleus,dorsal_nucleus_of_lateral_geniculate_body +http://purl.obolibrary.org/obo/UBERON_0002480,ventral lateral geniculate nucleus,griseum praegeniculatum +http://purl.obolibrary.org/obo/UBERON_0002480,ventral lateral geniculate nucleus,"lateral geniculate complex, ventral part" +http://purl.obolibrary.org/obo/UBERON_0002480,ventral lateral geniculate nucleus,"lateral geniculate complex, ventral part (kolliker)" +http://purl.obolibrary.org/obo/UBERON_0002480,ventral lateral geniculate nucleus,"lateral geniculate nucleus, ventral part" +http://purl.obolibrary.org/obo/UBERON_0002480,ventral lateral geniculate nucleus,"nucleus corporis geniculati lateralis, pars ventralis" +http://purl.obolibrary.org/obo/UBERON_0002480,ventral lateral geniculate nucleus,nucleus praegeniculatus +http://purl.obolibrary.org/obo/UBERON_0002480,ventral lateral geniculate nucleus,nucleus pregeniculatum +http://purl.obolibrary.org/obo/UBERON_0002480,ventral lateral geniculate nucleus,nucleus pregeniculatus +http://purl.obolibrary.org/obo/UBERON_0002480,ventral lateral geniculate nucleus,nucleus ventralis corporis geniculati lateralis +http://purl.obolibrary.org/obo/UBERON_0002480,ventral lateral geniculate nucleus,praegeniculatum +http://purl.obolibrary.org/obo/UBERON_0002480,ventral lateral geniculate nucleus,pregeniculate nucleus +http://purl.obolibrary.org/obo/UBERON_0002480,ventral lateral geniculate nucleus,ventral part of the lateral geniculate complex +http://purl.obolibrary.org/obo/UBERON_0002481,bone tissue,calcium tissue +http://purl.obolibrary.org/obo/UBERON_0002481,bone tissue,osseous tissue +http://purl.obolibrary.org/obo/UBERON_0002481,bone tissue,osteogenic tissue +http://purl.obolibrary.org/obo/UBERON_0002482,lamellar bone, +http://purl.obolibrary.org/obo/UBERON_0002483,trabecular bone tissue,cancellous bone +http://purl.obolibrary.org/obo/UBERON_0002483,trabecular bone tissue,cancellous bone tissue +http://purl.obolibrary.org/obo/UBERON_0002483,trabecular bone tissue,spongy bone +http://purl.obolibrary.org/obo/UBERON_0002483,trabecular bone tissue,spongy bone tissue +http://purl.obolibrary.org/obo/UBERON_0002483,trabecular bone tissue,substantia spongiosa +http://purl.obolibrary.org/obo/UBERON_0002483,trabecular bone tissue,substantia spongiosa ossium +http://purl.obolibrary.org/obo/UBERON_0002483,trabecular bone tissue,substantia trabecularis +http://purl.obolibrary.org/obo/UBERON_0002483,trabecular bone tissue,trabecular bone +http://purl.obolibrary.org/obo/UBERON_0002484,bone marrow cavity,cavity of cancellous bone +http://purl.obolibrary.org/obo/UBERON_0002484,bone marrow cavity,marrow cavity +http://purl.obolibrary.org/obo/UBERON_0002484,bone marrow cavity,medullary cavity +http://purl.obolibrary.org/obo/UBERON_0002485,prostate duct,duct of prostate +http://purl.obolibrary.org/obo/UBERON_0002485,prostate duct,duct of prostate gland +http://purl.obolibrary.org/obo/UBERON_0002485,prostate duct,prostate duct +http://purl.obolibrary.org/obo/UBERON_0002485,prostate duct,prostate gland duct +http://purl.obolibrary.org/obo/UBERON_0002485,prostate duct,prostatic duct +http://purl.obolibrary.org/obo/UBERON_0002486,glottis, +http://purl.obolibrary.org/obo/UBERON_0002487,tooth cavity,cavitas dentis +http://purl.obolibrary.org/obo/UBERON_0002487,tooth cavity,cavitas pulparis +http://purl.obolibrary.org/obo/UBERON_0002487,tooth cavity,lumen of tooth +http://purl.obolibrary.org/obo/UBERON_0002487,tooth cavity,pulp cavity +http://purl.obolibrary.org/obo/UBERON_0002487,tooth cavity,pulp cavity of tooth +http://purl.obolibrary.org/obo/UBERON_0002488,helix of outer ear,helical part of pinna +http://purl.obolibrary.org/obo/UBERON_0002488,helix of outer ear,helix +http://purl.obolibrary.org/obo/UBERON_0002488,helix of outer ear,helix (auricula) +http://purl.obolibrary.org/obo/UBERON_0002488,helix of outer ear,helix of auricle of ear +http://purl.obolibrary.org/obo/UBERON_0002488,helix of outer ear,helix of ear +http://purl.obolibrary.org/obo/UBERON_0002488,helix of outer ear,helix of pinna +http://purl.obolibrary.org/obo/UBERON_0002489,coronal suture,coronal suture of skull +http://purl.obolibrary.org/obo/UBERON_0002489,coronal suture,fronto-parietal suture +http://purl.obolibrary.org/obo/UBERON_0002489,coronal suture,frontoparietal suture +http://purl.obolibrary.org/obo/UBERON_0002490,frontal suture,frontal suture of skull +http://purl.obolibrary.org/obo/UBERON_0002490,frontal suture,median frontal suture +http://purl.obolibrary.org/obo/UBERON_0002490,frontal suture,sutura frontalis +http://purl.obolibrary.org/obo/UBERON_0002490,frontal suture,sutura metopica +http://purl.obolibrary.org/obo/UBERON_0002491,lambdoid suture,lambdoid suture of skull +http://purl.obolibrary.org/obo/UBERON_0002492,sagittal suture,sagittal suture of skull +http://purl.obolibrary.org/obo/UBERON_0002493,uterine artery, +http://purl.obolibrary.org/obo/UBERON_0002494,papillary muscle of heart,papillary muscle +http://purl.obolibrary.org/obo/UBERON_0002494,papillary muscle of heart,papillary muscle of ventricle +http://purl.obolibrary.org/obo/UBERON_0002494,papillary muscle of heart,ventricular papillary muscle +http://purl.obolibrary.org/obo/UBERON_0002494,papillary muscle of heart,ventricule papillary muscle +http://purl.obolibrary.org/obo/UBERON_0002495,long bone, +http://purl.obolibrary.org/obo/UBERON_0002496,stapes base,base of stapes +http://purl.obolibrary.org/obo/UBERON_0002496,stapes base,basis stapedis +http://purl.obolibrary.org/obo/UBERON_0002496,stapes base,stapes footpiece +http://purl.obolibrary.org/obo/UBERON_0002496,stapes base,stapes footplate +http://purl.obolibrary.org/obo/UBERON_0002497,acromion,acromion process +http://purl.obolibrary.org/obo/UBERON_0002497,acromion,scapular acromion +http://purl.obolibrary.org/obo/UBERON_0002498,deltopectoral crest,crista ventralis +http://purl.obolibrary.org/obo/UBERON_0002498,deltopectoral crest,deltoid crest +http://purl.obolibrary.org/obo/UBERON_0002498,deltopectoral crest,deltoid eminence +http://purl.obolibrary.org/obo/UBERON_0002498,deltopectoral crest,deltoid impression +http://purl.obolibrary.org/obo/UBERON_0002498,deltopectoral crest,deltoid tuberosity +http://purl.obolibrary.org/obo/UBERON_0002498,deltopectoral crest,deltoid tuberosity of humerus +http://purl.obolibrary.org/obo/UBERON_0002498,deltopectoral crest,tuberositas deltoidea +http://purl.obolibrary.org/obo/UBERON_0002498,deltopectoral crest,tuberositas deltoidea (corpus humeri) +http://purl.obolibrary.org/obo/UBERON_0002498,deltopectoral crest,tuberositas deltoidea humeri +http://purl.obolibrary.org/obo/UBERON_0002499,cochlear labyrinth, +http://purl.obolibrary.org/obo/UBERON_0002500,zygomatic arch,zygoma +http://purl.obolibrary.org/obo/UBERON_0002501,oval window,oval window of petrous part of temporal bone +http://purl.obolibrary.org/obo/UBERON_0002502,round window of inner ear,round window +http://purl.obolibrary.org/obo/UBERON_0002502,round window of inner ear,round window of petrous part of temporal bone +http://purl.obolibrary.org/obo/UBERON_0002503,greater trochanter,great trochanter +http://purl.obolibrary.org/obo/UBERON_0002503,greater trochanter,greater trochanter of femur +http://purl.obolibrary.org/obo/UBERON_0002504,lesser trochanter,lesser trochanter of femur +http://purl.obolibrary.org/obo/UBERON_0002505,spiral modiolar artery, +http://purl.obolibrary.org/obo/UBERON_0002506,iris epithelium,epithelial tissue of iris +http://purl.obolibrary.org/obo/UBERON_0002506,iris epithelium,epithelium of iris +http://purl.obolibrary.org/obo/UBERON_0002506,iris epithelium,epithelium pigmentosum (iris) +http://purl.obolibrary.org/obo/UBERON_0002506,iris epithelium,epithelium pigmentosum iridis +http://purl.obolibrary.org/obo/UBERON_0002506,iris epithelium,iris epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0002506,iris epithelium,iris epithelium +http://purl.obolibrary.org/obo/UBERON_0002506,iris epithelium,pigmented epithelium of iris +http://purl.obolibrary.org/obo/UBERON_0002507,abdominal lymph node,abdomen lymph node +http://purl.obolibrary.org/obo/UBERON_0002507,abdominal lymph node,lymph node of abdomen +http://purl.obolibrary.org/obo/UBERON_0002507,abdominal lymph node,parietal abdominal lymph node +http://purl.obolibrary.org/obo/UBERON_0002508,celiac lymph node,celiac axis lymph node +http://purl.obolibrary.org/obo/UBERON_0002508,celiac lymph node,celiac node +http://purl.obolibrary.org/obo/UBERON_0002508,celiac lymph node,coeliac axis lymph node +http://purl.obolibrary.org/obo/UBERON_0002508,celiac lymph node,coeliac node +http://purl.obolibrary.org/obo/UBERON_0002508,celiac lymph node,nodus lymphaticus coeliacus +http://purl.obolibrary.org/obo/UBERON_0002508,celiac lymph node,terminal ventral aortic node +http://purl.obolibrary.org/obo/UBERON_0002509,mesenteric lymph node,mesenteric node +http://purl.obolibrary.org/obo/UBERON_0002509,mesenteric lymph node,nodi lymphoidei mesenterici +http://purl.obolibrary.org/obo/UBERON_0002510,anterior fontanel,anterior fontanelle +http://purl.obolibrary.org/obo/UBERON_0002511,trabecula carnea,ventricle trabecula carnea +http://purl.obolibrary.org/obo/UBERON_0002512,corpus luteum,corpora lutea +http://purl.obolibrary.org/obo/UBERON_0002512,corpus luteum,corpus luteum of ovary +http://purl.obolibrary.org/obo/UBERON_0002512,corpus luteum,ovarian corpus luteum +http://purl.obolibrary.org/obo/UBERON_0002513,endochondral bone,ossified chondrogenic bone +http://purl.obolibrary.org/obo/UBERON_0002514,intramembranous bone, +http://purl.obolibrary.org/obo/UBERON_0002515,periosteum, +http://purl.obolibrary.org/obo/UBERON_0002516,epiphyseal plate,epiphyseal growth plate +http://purl.obolibrary.org/obo/UBERON_0002516,epiphyseal plate,epiphyseal growth plate cartilage +http://purl.obolibrary.org/obo/UBERON_0002516,epiphyseal plate,epiphysial plate +http://purl.obolibrary.org/obo/UBERON_0002516,epiphyseal plate,long bone epiphyseal plate +http://purl.obolibrary.org/obo/UBERON_0002517,basicranium,base of cranium +http://purl.obolibrary.org/obo/UBERON_0002517,basicranium,base of skull +http://purl.obolibrary.org/obo/UBERON_0002517,basicranium,basis cranii +http://purl.obolibrary.org/obo/UBERON_0002517,basicranium,cranial base +http://purl.obolibrary.org/obo/UBERON_0002518,otolith organ, +http://purl.obolibrary.org/obo/UBERON_0002519,otolithic part of statoconial membrane,otolith layer of statoconial membrane +http://purl.obolibrary.org/obo/UBERON_0002520,submandibular lymph node,submandibular node +http://purl.obolibrary.org/obo/UBERON_0002521,elastic tissue,elastic connective tissue +http://purl.obolibrary.org/obo/UBERON_0002521,elastic tissue,textus connectivus elasticus +http://purl.obolibrary.org/obo/UBERON_0002522,tunica media, +http://purl.obolibrary.org/obo/UBERON_0002523,tunica intima, +http://purl.obolibrary.org/obo/UBERON_0002524,mediastinal lymph node,mediastinal node +http://purl.obolibrary.org/obo/UBERON_0002525,brachial lymph node, +http://purl.obolibrary.org/obo/UBERON_0002526,lumbar lymph node, +http://purl.obolibrary.org/obo/UBERON_0002527,pancreatic lymph node,lymph node of pancreas +http://purl.obolibrary.org/obo/UBERON_0002527,pancreatic lymph node,pancreas lymph node +http://purl.obolibrary.org/obo/UBERON_0002527,pancreatic lymph node,pancreatic node +http://purl.obolibrary.org/obo/UBERON_0002528,sacral lymph node,sacral node +http://purl.obolibrary.org/obo/UBERON_0002529,limb segment,extremity part +http://purl.obolibrary.org/obo/UBERON_0002529,limb segment,free limb segment +http://purl.obolibrary.org/obo/UBERON_0002529,limb segment,limb region +http://purl.obolibrary.org/obo/UBERON_0002529,limb segment,region of limb +http://purl.obolibrary.org/obo/UBERON_0002529,limb segment,segment of limb +http://purl.obolibrary.org/obo/UBERON_0002529,limb segment,subdivision of limb +http://purl.obolibrary.org/obo/UBERON_0002530,gland,Druese +http://purl.obolibrary.org/obo/UBERON_0002530,gland,glandula +http://purl.obolibrary.org/obo/UBERON_0002530,gland,glandular organ +http://purl.obolibrary.org/obo/UBERON_0002531,paired fin bud,fin bud +http://purl.obolibrary.org/obo/UBERON_0002531,paired fin bud,fin buds +http://purl.obolibrary.org/obo/UBERON_0002532,epiblast (generic),epiblast +http://purl.obolibrary.org/obo/UBERON_0002533,post-anal tail bud,tail bud +http://purl.obolibrary.org/obo/UBERON_0002533,post-anal tail bud,tailbud +http://purl.obolibrary.org/obo/UBERON_0002534,paired fin,pelvic/pectoral fin +http://purl.obolibrary.org/obo/UBERON_0002535,gill, +http://purl.obolibrary.org/obo/UBERON_0002536,arthropod sensillum,sensillum +http://purl.obolibrary.org/obo/UBERON_0002537,hermaphrodite gonad,hermaphrodite genitalia +http://purl.obolibrary.org/obo/UBERON_0002538,hatching gland, +http://purl.obolibrary.org/obo/UBERON_0002539,pharyngeal arch,pharyngeal arches +http://purl.obolibrary.org/obo/UBERON_0002540,lateral line system, +http://purl.obolibrary.org/obo/UBERON_0002541,germ ring, +http://purl.obolibrary.org/obo/UBERON_0002542,scale,scale (sensu Metazoa) +http://purl.obolibrary.org/obo/UBERON_0002544,digit,acropodial unit +http://purl.obolibrary.org/obo/UBERON_0002544,digit,digit (phalangeal portion) plus soft tissue +http://purl.obolibrary.org/obo/UBERON_0002544,digit,limb digit +http://purl.obolibrary.org/obo/UBERON_0002546,cranial placode,ectodermal cranial placode +http://purl.obolibrary.org/obo/UBERON_0002547,tadpole, +http://purl.obolibrary.org/obo/UBERON_0002548,larva,larval organism +http://purl.obolibrary.org/obo/UBERON_0002549,ventral trigeminal tract,anterior trigeminothalamic tract +http://purl.obolibrary.org/obo/UBERON_0002549,ventral trigeminal tract,tractus trigeminothalamicus anterior +http://purl.obolibrary.org/obo/UBERON_0002549,ventral trigeminal tract,trigeminal lemniscus-2 +http://purl.obolibrary.org/obo/UBERON_0002549,ventral trigeminal tract,ventral crossed tract +http://purl.obolibrary.org/obo/UBERON_0002549,ventral trigeminal tract,ventral secondary ascending tract of V +http://purl.obolibrary.org/obo/UBERON_0002549,ventral trigeminal tract,ventral trigeminal pathway +http://purl.obolibrary.org/obo/UBERON_0002549,ventral trigeminal tract,ventral trigeminothalamic tract +http://purl.obolibrary.org/obo/UBERON_0002550,anterior hypothalamic region,anterior hypothalamic area +http://purl.obolibrary.org/obo/UBERON_0002550,anterior hypothalamic region,chiasmal zone +http://purl.obolibrary.org/obo/UBERON_0002551,interstitial nucleus of Cajal,ICjl +http://purl.obolibrary.org/obo/UBERON_0002551,interstitial nucleus of Cajal,NIC +http://purl.obolibrary.org/obo/UBERON_0002551,interstitial nucleus of Cajal,interstitial nucleus +http://purl.obolibrary.org/obo/UBERON_0002551,interstitial nucleus of Cajal,interstitial nucleus of Cajal +http://purl.obolibrary.org/obo/UBERON_0002551,interstitial nucleus of Cajal,interstitial nucleus of medial longitudinal fasciculus +http://purl.obolibrary.org/obo/UBERON_0002551,interstitial nucleus of Cajal,interstitial nucleus of medial longitudinal fasciculus (Crosby) +http://purl.obolibrary.org/obo/UBERON_0002551,interstitial nucleus of Cajal,interstitial nucleus of the medial longitudinal fascicle (Boyce 1895) +http://purl.obolibrary.org/obo/UBERON_0002551,interstitial nucleus of Cajal,interstitial nucleus of the medial longitudinal fasciculus +http://purl.obolibrary.org/obo/UBERON_0002551,interstitial nucleus of Cajal,nucleus interstitialis +http://purl.obolibrary.org/obo/UBERON_0002551,interstitial nucleus of Cajal,nucleus interstitialis Cajal +http://purl.obolibrary.org/obo/UBERON_0002551,interstitial nucleus of Cajal,nucleus of the posterior commissure (Kvlliker) +http://purl.obolibrary.org/obo/UBERON_0002552,vestibulocerebellar tract,vestibulocerebellar fibers +http://purl.obolibrary.org/obo/UBERON_0002553,anatomical cavity, +http://purl.obolibrary.org/obo/UBERON_0002555,intermediate hypothalamic region,area hypothalamica intermedia +http://purl.obolibrary.org/obo/UBERON_0002555,intermediate hypothalamic region,intermediate hypothalamic area +http://purl.obolibrary.org/obo/UBERON_0002556,corticotectal tract,corticotectal fibers +http://purl.obolibrary.org/obo/UBERON_0002556,corticotectal tract,corticotectal fibres +http://purl.obolibrary.org/obo/UBERON_0002556,corticotectal tract,fibrae corticotectales +http://purl.obolibrary.org/obo/UBERON_0002557,linear nucleus, +http://purl.obolibrary.org/obo/UBERON_0002558,organ cavity,cavity of organ +http://purl.obolibrary.org/obo/UBERON_0002559,medullary reticular formation,bulb reticular formation +http://purl.obolibrary.org/obo/UBERON_0002559,medullary reticular formation,bulbar reticular formation +http://purl.obolibrary.org/obo/UBERON_0002559,medullary reticular formation,medulla oblongata reticular formation +http://purl.obolibrary.org/obo/UBERON_0002559,medullary reticular formation,medulla oblonmgata reticular formation +http://purl.obolibrary.org/obo/UBERON_0002559,medullary reticular formation,medullary reticular nucleus +http://purl.obolibrary.org/obo/UBERON_0002559,medullary reticular formation,metepencephalon reticular formation +http://purl.obolibrary.org/obo/UBERON_0002559,medullary reticular formation,reticular formation of bulb +http://purl.obolibrary.org/obo/UBERON_0002559,medullary reticular formation,reticular formation of medulla +http://purl.obolibrary.org/obo/UBERON_0002559,medullary reticular formation,reticular formation of medulla oblongata +http://purl.obolibrary.org/obo/UBERON_0002559,medullary reticular formation,reticular formation of medulla oblonmgata +http://purl.obolibrary.org/obo/UBERON_0002559,medullary reticular formation,reticular formation of metepencephalon +http://purl.obolibrary.org/obo/UBERON_0002559,medullary reticular formation,rhombencephalic reticular formation +http://purl.obolibrary.org/obo/UBERON_0002560,temporal operculum,facies supratemporalis +http://purl.obolibrary.org/obo/UBERON_0002561,lumen of central nervous system,cavity of neuraxis +http://purl.obolibrary.org/obo/UBERON_0002561,lumen of central nervous system,cavity of ventricular system of neuraxis +http://purl.obolibrary.org/obo/UBERON_0002561,lumen of central nervous system,neuraxis cavity +http://purl.obolibrary.org/obo/UBERON_0002561,lumen of central nervous system,neuraxis lumen +http://purl.obolibrary.org/obo/UBERON_0002562,superior frontal sulcus,sulcus f1 +http://purl.obolibrary.org/obo/UBERON_0002562,superior frontal sulcus,sulcus frontalis primus +http://purl.obolibrary.org/obo/UBERON_0002562,superior frontal sulcus,sulcus frontalis superior +http://purl.obolibrary.org/obo/UBERON_0002562,superior frontal sulcus,superior frontal fissure +http://purl.obolibrary.org/obo/UBERON_0002563,central nucleus of inferior colliculus,chief nucleus of inferior colliculus +http://purl.obolibrary.org/obo/UBERON_0002563,central nucleus of inferior colliculus,"inferior colliculus, central nucleus" +http://purl.obolibrary.org/obo/UBERON_0002563,central nucleus of inferior colliculus,nucleus centralis colliculi inferioris +http://purl.obolibrary.org/obo/UBERON_0002563,central nucleus of inferior colliculus,nucleus of inferior colliculus (Crosby) +http://purl.obolibrary.org/obo/UBERON_0002564,lateral orbital gyrus, +http://purl.obolibrary.org/obo/UBERON_0002565,olivary pretectal nucleus,nucleus praetectalis olivaris +http://purl.obolibrary.org/obo/UBERON_0002565,olivary pretectal nucleus,olivary nucleus of superior colliculus +http://purl.obolibrary.org/obo/UBERON_0002565,olivary pretectal nucleus,pretectal olivary nucleus +http://purl.obolibrary.org/obo/UBERON_0002566,superior precentral sulcus,precentral dimple +http://purl.obolibrary.org/obo/UBERON_0002566,superior precentral sulcus,sulcus praecentralis superior +http://purl.obolibrary.org/obo/UBERON_0002566,superior precentral sulcus,sulcus precentralis superior +http://purl.obolibrary.org/obo/UBERON_0002566,superior precentral sulcus,superior part of precentral fissure +http://purl.obolibrary.org/obo/UBERON_0002567,basal part of pons,basal part of the pons +http://purl.obolibrary.org/obo/UBERON_0002567,basal part of pons,basal portion of pons +http://purl.obolibrary.org/obo/UBERON_0002567,basal part of pons,base of pons +http://purl.obolibrary.org/obo/UBERON_0002567,basal part of pons,basilar part of pons +http://purl.obolibrary.org/obo/UBERON_0002567,basal part of pons,basilar pons +http://purl.obolibrary.org/obo/UBERON_0002567,basal part of pons,basis pontis +http://purl.obolibrary.org/obo/UBERON_0002567,basal part of pons,pars anterior pontis +http://purl.obolibrary.org/obo/UBERON_0002567,basal part of pons,pars basilaris pontis +http://purl.obolibrary.org/obo/UBERON_0002567,basal part of pons,pars ventralis pontis +http://purl.obolibrary.org/obo/UBERON_0002567,basal part of pons,pons proper +http://purl.obolibrary.org/obo/UBERON_0002567,basal part of pons,ventral pons +http://purl.obolibrary.org/obo/UBERON_0002567,basal part of pons,ventral portion of pons +http://purl.obolibrary.org/obo/UBERON_0002568,amiculum of dentate nucleus,dentate nuclear amiculum +http://purl.obolibrary.org/obo/UBERON_0002569,transverse temporal sulcus, +http://purl.obolibrary.org/obo/UBERON_0002570,medial orbital gyrus, +http://purl.obolibrary.org/obo/UBERON_0002571,external nucleus of inferior colliculus,nucleus externus colliculi inferioris +http://purl.obolibrary.org/obo/UBERON_0002571,external nucleus of inferior colliculus,nucleus lateralis colliculi inferioris +http://purl.obolibrary.org/obo/UBERON_0002572,principal pretectal nucleus, +http://purl.obolibrary.org/obo/UBERON_0002573,pontine reticular formation,formatio reticularis pontis +http://purl.obolibrary.org/obo/UBERON_0002573,pontine reticular formation,pons of varolius reticular formation +http://purl.obolibrary.org/obo/UBERON_0002573,pontine reticular formation,pons reticular formation +http://purl.obolibrary.org/obo/UBERON_0002573,pontine reticular formation,pontine reticular nucleus +http://purl.obolibrary.org/obo/UBERON_0002573,pontine reticular formation,pontine reticular nucleus rostral part +http://purl.obolibrary.org/obo/UBERON_0002573,pontine reticular formation,reticular formation of pons +http://purl.obolibrary.org/obo/UBERON_0002573,pontine reticular formation,reticular formation of pons of varolius +http://purl.obolibrary.org/obo/UBERON_0002575,posterior orbital gyrus, +http://purl.obolibrary.org/obo/UBERON_0002576,temporal pole,polus temporalis +http://purl.obolibrary.org/obo/UBERON_0002577,pericentral nucleus of inferior colliculus,cortex of inferior colliculus +http://purl.obolibrary.org/obo/UBERON_0002577,pericentral nucleus of inferior colliculus,nucleus pericentralis colliculi inferioris +http://purl.obolibrary.org/obo/UBERON_0002578,sublentiform nucleus,nucleus sublentiformis +http://purl.obolibrary.org/obo/UBERON_0002580,brachium of superior colliculus,brachium colliculi cranialis +http://purl.obolibrary.org/obo/UBERON_0002580,brachium of superior colliculus,brachium colliculi rostralis +http://purl.obolibrary.org/obo/UBERON_0002580,brachium of superior colliculus,brachium colliculi superioris +http://purl.obolibrary.org/obo/UBERON_0002580,brachium of superior colliculus,brachium of the superior colliculus +http://purl.obolibrary.org/obo/UBERON_0002580,brachium of superior colliculus,brachium quadrigeminum superius +http://purl.obolibrary.org/obo/UBERON_0002580,brachium of superior colliculus,superior brachium +http://purl.obolibrary.org/obo/UBERON_0002580,brachium of superior colliculus,superior collicular brachium +http://purl.obolibrary.org/obo/UBERON_0002580,brachium of superior colliculus,superior colliculus brachium +http://purl.obolibrary.org/obo/UBERON_0002580,brachium of superior colliculus,superior quadrigeminal brachium +http://purl.obolibrary.org/obo/UBERON_0002581,postcentral gyrus,gyrus centralis posterior +http://purl.obolibrary.org/obo/UBERON_0002581,postcentral gyrus,gyrus postcentralis +http://purl.obolibrary.org/obo/UBERON_0002581,postcentral gyrus,post central gyrus +http://purl.obolibrary.org/obo/UBERON_0002581,postcentral gyrus,postcentral convolution +http://purl.obolibrary.org/obo/UBERON_0002581,postcentral gyrus,posterior central gyrus +http://purl.obolibrary.org/obo/UBERON_0002581,postcentral gyrus,postrolandic gyrus +http://purl.obolibrary.org/obo/UBERON_0002581,postcentral gyrus,somatosensory cortex +http://purl.obolibrary.org/obo/UBERON_0002582,anterior calcarine sulcus,anterior calcarine fissure +http://purl.obolibrary.org/obo/UBERON_0002582,anterior calcarine sulcus,sulcus calcarinus anterior +http://purl.obolibrary.org/obo/UBERON_0002583,commissure of superior colliculus,anterior colliculus commissure +http://purl.obolibrary.org/obo/UBERON_0002583,commissure of superior colliculus,anterior corpus quadrigeminum commissure +http://purl.obolibrary.org/obo/UBERON_0002583,commissure of superior colliculus,commissure of anterior colliculus +http://purl.obolibrary.org/obo/UBERON_0002583,commissure of superior colliculus,commissure of anterior corpus quadrigeminum +http://purl.obolibrary.org/obo/UBERON_0002583,commissure of superior colliculus,commissure of cranial colliculus +http://purl.obolibrary.org/obo/UBERON_0002583,commissure of superior colliculus,commissure of optic tectum +http://purl.obolibrary.org/obo/UBERON_0002583,commissure of superior colliculus,commissure of superior colliculi +http://purl.obolibrary.org/obo/UBERON_0002583,commissure of superior colliculus,cranial colliculus commissure +http://purl.obolibrary.org/obo/UBERON_0002583,commissure of superior colliculus,intertectal commissure +http://purl.obolibrary.org/obo/UBERON_0002583,commissure of superior colliculus,optic tectum commissure +http://purl.obolibrary.org/obo/UBERON_0002583,commissure of superior colliculus,superior colliculus commissure +http://purl.obolibrary.org/obo/UBERON_0002585,central tegmental tract of midbrain, +http://purl.obolibrary.org/obo/UBERON_0002586,calcarine sulcus,calcarine fissure +http://purl.obolibrary.org/obo/UBERON_0002586,calcarine sulcus,sulcus calcarinus +http://purl.obolibrary.org/obo/UBERON_0002587,nucleus subceruleus,nucleus subcaeruleus +http://purl.obolibrary.org/obo/UBERON_0002587,nucleus subceruleus,nucleus subcoeruleus +http://purl.obolibrary.org/obo/UBERON_0002587,nucleus subceruleus,subcaerulean nucleus +http://purl.obolibrary.org/obo/UBERON_0002587,nucleus subceruleus,subceruleus nucleus +http://purl.obolibrary.org/obo/UBERON_0002587,nucleus subceruleus,subcoeruleus nucleus +http://purl.obolibrary.org/obo/UBERON_0002588,decussation of superior cerebellar peduncle,Wernekink's decussation +http://purl.obolibrary.org/obo/UBERON_0002588,decussation of superior cerebellar peduncle,decussatio pedunculorum cerebellarium superiorum +http://purl.obolibrary.org/obo/UBERON_0002588,decussation of superior cerebellar peduncle,decussation of brachium conjunctivum +http://purl.obolibrary.org/obo/UBERON_0002588,decussation of superior cerebellar peduncle,decussation of superior cerebellar peduncles +http://purl.obolibrary.org/obo/UBERON_0002588,decussation of superior cerebellar peduncle,superior cerebellar peduncle decussation +http://purl.obolibrary.org/obo/UBERON_0002589,lateral corticospinal tract,"corticospinal tract, crossed" +http://purl.obolibrary.org/obo/UBERON_0002589,lateral corticospinal tract,crossed pyramidal tract +http://purl.obolibrary.org/obo/UBERON_0002589,lateral corticospinal tract,lateral pyramidal tract +http://purl.obolibrary.org/obo/UBERON_0002589,lateral corticospinal tract,"pyramidal tract, crossed" +http://purl.obolibrary.org/obo/UBERON_0002590,prepyriform area,(pre-)piriform cortex +http://purl.obolibrary.org/obo/UBERON_0002590,prepyriform area,area prepiriformis +http://purl.obolibrary.org/obo/UBERON_0002590,prepyriform area,eupalaeocortex +http://purl.obolibrary.org/obo/UBERON_0002590,prepyriform area,gyrus olfactorius lateralis +http://purl.obolibrary.org/obo/UBERON_0002590,prepyriform area,lateral olfactory gyrus +http://purl.obolibrary.org/obo/UBERON_0002590,prepyriform area,palaeocortex II +http://purl.obolibrary.org/obo/UBERON_0002590,prepyriform area,piriform cortex (price) +http://purl.obolibrary.org/obo/UBERON_0002590,prepyriform area,piriform olfactory cortex +http://purl.obolibrary.org/obo/UBERON_0002590,prepyriform area,prepiriform cortex +http://purl.obolibrary.org/obo/UBERON_0002590,prepyriform area,prepiriform region +http://purl.obolibrary.org/obo/UBERON_0002590,prepyriform area,prepyriform cortex +http://purl.obolibrary.org/obo/UBERON_0002590,prepyriform area,pyriform area +http://purl.obolibrary.org/obo/UBERON_0002590,prepyriform area,regio praepiriformis +http://purl.obolibrary.org/obo/UBERON_0002591,oral part of spinal trigeminal nucleus, +http://purl.obolibrary.org/obo/UBERON_0002592,juxtarestiform body, +http://purl.obolibrary.org/obo/UBERON_0002593,orbital operculum,operculum orbitale +http://purl.obolibrary.org/obo/UBERON_0002593,orbital operculum,pars orbitalis of frontal operculum (Ono) +http://purl.obolibrary.org/obo/UBERON_0002594,dentatothalamic tract,dentatothalamic fibers +http://purl.obolibrary.org/obo/UBERON_0002595,orbital sulcus,cruciate sulcus of campbell +http://purl.obolibrary.org/obo/UBERON_0002595,orbital sulcus,orbital sulci +http://purl.obolibrary.org/obo/UBERON_0002595,orbital sulcus,sulci orbitalis +http://purl.obolibrary.org/obo/UBERON_0002595,orbital sulcus,sulcus orbitalis +http://purl.obolibrary.org/obo/UBERON_0002596,ventral posterior nucleus of thalamus,nucleus ventrales posteriores +http://purl.obolibrary.org/obo/UBERON_0002596,ventral posterior nucleus of thalamus,nucleus ventralis posterior +http://purl.obolibrary.org/obo/UBERON_0002596,ventral posterior nucleus of thalamus,ventral posterior nucleus +http://purl.obolibrary.org/obo/UBERON_0002596,ventral posterior nucleus of thalamus,ventral posterior thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0002596,ventral posterior nucleus of thalamus,ventrobasal complex +http://purl.obolibrary.org/obo/UBERON_0002596,ventral posterior nucleus of thalamus,ventrobasal nucleus +http://purl.obolibrary.org/obo/UBERON_0002597,principal sensory nucleus of trigeminal nerve,chief sensory nucleus +http://purl.obolibrary.org/obo/UBERON_0002597,principal sensory nucleus of trigeminal nerve,chief sensory trigeminal nucleus +http://purl.obolibrary.org/obo/UBERON_0002597,principal sensory nucleus of trigeminal nerve,chief trigeminal sensory nucleus +http://purl.obolibrary.org/obo/UBERON_0002597,principal sensory nucleus of trigeminal nerve,main sensory nucleus +http://purl.obolibrary.org/obo/UBERON_0002597,principal sensory nucleus of trigeminal nerve,main sensory nucleus of cranial nerve v +http://purl.obolibrary.org/obo/UBERON_0002597,principal sensory nucleus of trigeminal nerve,nucleus pontinus nervi trigeminalis +http://purl.obolibrary.org/obo/UBERON_0002597,principal sensory nucleus of trigeminal nerve,nucleus pontinus nervi trigemini +http://purl.obolibrary.org/obo/UBERON_0002597,principal sensory nucleus of trigeminal nerve,nucleus principalis nervi trigemini +http://purl.obolibrary.org/obo/UBERON_0002597,principal sensory nucleus of trigeminal nerve,nucleus sensibilis superior nervi trigemini +http://purl.obolibrary.org/obo/UBERON_0002597,principal sensory nucleus of trigeminal nerve,nucleus sensorius principalis nervi trigemini +http://purl.obolibrary.org/obo/UBERON_0002597,principal sensory nucleus of trigeminal nerve,nucleus sensorius superior nervi trigemini +http://purl.obolibrary.org/obo/UBERON_0002597,principal sensory nucleus of trigeminal nerve,pontine nucleus +http://purl.obolibrary.org/obo/UBERON_0002597,principal sensory nucleus of trigeminal nerve,pontine nucleus of the trigeminal nerve +http://purl.obolibrary.org/obo/UBERON_0002597,principal sensory nucleus of trigeminal nerve,primary nucleus of the trigeminal nerve +http://purl.obolibrary.org/obo/UBERON_0002597,principal sensory nucleus of trigeminal nerve,principal sensory nucleus +http://purl.obolibrary.org/obo/UBERON_0002597,principal sensory nucleus of trigeminal nerve,principal sensory nucleus of the trigeminal +http://purl.obolibrary.org/obo/UBERON_0002597,principal sensory nucleus of trigeminal nerve,principal sensory nucleus of the trigeminal nerve +http://purl.obolibrary.org/obo/UBERON_0002597,principal sensory nucleus of trigeminal nerve,principal sensory nucleus of trigeminal nerve +http://purl.obolibrary.org/obo/UBERON_0002597,principal sensory nucleus of trigeminal nerve,principal sensory trigeminal nucleus +http://purl.obolibrary.org/obo/UBERON_0002597,principal sensory nucleus of trigeminal nerve,principal trigeminal nucleus +http://purl.obolibrary.org/obo/UBERON_0002597,principal sensory nucleus of trigeminal nerve,superior trigeminal nucleus +http://purl.obolibrary.org/obo/UBERON_0002597,principal sensory nucleus of trigeminal nerve,superior trigeminal sensory nucleus +http://purl.obolibrary.org/obo/UBERON_0002597,principal sensory nucleus of trigeminal nerve,trigeminal V chief sensory nucleus +http://purl.obolibrary.org/obo/UBERON_0002597,principal sensory nucleus of trigeminal nerve,trigeminal V principal sensory nucleus +http://purl.obolibrary.org/obo/UBERON_0002597,principal sensory nucleus of trigeminal nerve,trigeminal nerve superior sensory nucleus +http://purl.obolibrary.org/obo/UBERON_0002598,paracentral sulcus,sulcus subcentralis medialis +http://purl.obolibrary.org/obo/UBERON_0002599,medial olfactory gyrus, +http://purl.obolibrary.org/obo/UBERON_0002600,limbic lobe,fornicate convolution +http://purl.obolibrary.org/obo/UBERON_0002600,limbic lobe,fornicate gyrus +http://purl.obolibrary.org/obo/UBERON_0002600,limbic lobe,fornicate lobe +http://purl.obolibrary.org/obo/UBERON_0002600,limbic lobe,grande lobe limbique of Broca +http://purl.obolibrary.org/obo/UBERON_0002600,limbic lobe,gyrus fornicatus +http://purl.obolibrary.org/obo/UBERON_0002600,limbic lobe,limbic lobe (carpenter) +http://purl.obolibrary.org/obo/UBERON_0002600,limbic lobe,lobus limbicus +http://purl.obolibrary.org/obo/UBERON_0002601,fasciolar gyrus,FC +http://purl.obolibrary.org/obo/UBERON_0002601,fasciolar gyrus,fasciola cinerea +http://purl.obolibrary.org/obo/UBERON_0002601,fasciolar gyrus,"fasciola cinerea (Reil, Arnold)" +http://purl.obolibrary.org/obo/UBERON_0002601,fasciolar gyrus,fasciola cinereum +http://purl.obolibrary.org/obo/UBERON_0002601,fasciolar gyrus,gyrus fasciolaris +http://purl.obolibrary.org/obo/UBERON_0002601,fasciolar gyrus,gyrus retrosplenialis hippocampi +http://purl.obolibrary.org/obo/UBERON_0002601,fasciolar gyrus,retrosplenial gyrus of hippocampus +http://purl.obolibrary.org/obo/UBERON_0002601,fasciolar gyrus,splenial gyrus +http://purl.obolibrary.org/obo/UBERON_0002602,emboliform nucleus,anterior interposed nucleus +http://purl.obolibrary.org/obo/UBERON_0002602,emboliform nucleus,anterior interpositus nucleus +http://purl.obolibrary.org/obo/UBERON_0002602,emboliform nucleus,cerebellar emboliform nucleus +http://purl.obolibrary.org/obo/UBERON_0002602,emboliform nucleus,cerebellum emboliform nucleus +http://purl.obolibrary.org/obo/UBERON_0002602,emboliform nucleus,embolus +http://purl.obolibrary.org/obo/UBERON_0002602,emboliform nucleus,lateral interpositus (emboliform) nucleus +http://purl.obolibrary.org/obo/UBERON_0002602,emboliform nucleus,nucleus interpositus anterior +http://purl.obolibrary.org/obo/UBERON_0002603,paraterminal gyrus,precommissural hippocampus +http://purl.obolibrary.org/obo/UBERON_0002603,paraterminal gyrus,subcallosal gyrus +http://purl.obolibrary.org/obo/UBERON_0002604,ventral nucleus of lateral lemniscus,anterior nucleus of lateral lemniscus +http://purl.obolibrary.org/obo/UBERON_0002604,ventral nucleus of lateral lemniscus,nucleus anterior lemnisci lateralis +http://purl.obolibrary.org/obo/UBERON_0002604,ventral nucleus of lateral lemniscus,nucleus lemnisci lateralis pars ventralis +http://purl.obolibrary.org/obo/UBERON_0002604,ventral nucleus of lateral lemniscus,nucleus lemnisci lateralis ventralis +http://purl.obolibrary.org/obo/UBERON_0002604,ventral nucleus of lateral lemniscus,nucleus of the lateral lemniscus ventral part +http://purl.obolibrary.org/obo/UBERON_0002604,ventral nucleus of lateral lemniscus,"nucleus of the lateral lemniscus, ventral part" +http://purl.obolibrary.org/obo/UBERON_0002604,ventral nucleus of lateral lemniscus,ventral nucleus of the lateral lemniscus +http://purl.obolibrary.org/obo/UBERON_0002605,precentral operculum,operculum precentrale +http://purl.obolibrary.org/obo/UBERON_0002606,neuropil, +http://purl.obolibrary.org/obo/UBERON_0002607,superior rostral sulcus,sulcus rostralis superior +http://purl.obolibrary.org/obo/UBERON_0002608,caudal part of ventral lateral nucleus,dorsal part of ventral lateral posterior nucleus (jones) +http://purl.obolibrary.org/obo/UBERON_0002608,caudal part of ventral lateral nucleus,nucleus dorsooralis (van buren) +http://purl.obolibrary.org/obo/UBERON_0002608,caudal part of ventral lateral nucleus,nucleus lateralis intermedius mediodorsalis situs dorsalis +http://purl.obolibrary.org/obo/UBERON_0002608,caudal part of ventral lateral nucleus,"nucleus ventralis lateralis, pars caudalis" +http://purl.obolibrary.org/obo/UBERON_0002608,caudal part of ventral lateral nucleus,"ventral lateral nucleus, caudal part" +http://purl.obolibrary.org/obo/UBERON_0002608,caudal part of ventral lateral nucleus,"ventral lateral thalamic nucleus, caudal part" +http://purl.obolibrary.org/obo/UBERON_0002609,spinothalamic tract of midbrain, +http://purl.obolibrary.org/obo/UBERON_0002610,cochlear nuclear complex,cochlear nuclei +http://purl.obolibrary.org/obo/UBERON_0002610,cochlear nuclear complex,nuclei cochleares +http://purl.obolibrary.org/obo/UBERON_0002612,transverse orbital sulcus,sulcus orbitalis transversus +http://purl.obolibrary.org/obo/UBERON_0002613,cerebellum globose nucleus,globose nucleus +http://purl.obolibrary.org/obo/UBERON_0002613,cerebellum globose nucleus,medial interposed nucleus +http://purl.obolibrary.org/obo/UBERON_0002613,cerebellum globose nucleus,medial interpositus (globose) nucleus +http://purl.obolibrary.org/obo/UBERON_0002613,cerebellum globose nucleus,medial interpositus nucleus +http://purl.obolibrary.org/obo/UBERON_0002613,cerebellum globose nucleus,nucleus interpositus posterior +http://purl.obolibrary.org/obo/UBERON_0002613,cerebellum globose nucleus,posterior interposed nucleus +http://purl.obolibrary.org/obo/UBERON_0002613,cerebellum globose nucleus,posterior interpositus nucleus +http://purl.obolibrary.org/obo/UBERON_0002614,medial part of ventral lateral nucleus,"nucleus ventralis lateralis thalami, pars medialis" +http://purl.obolibrary.org/obo/UBERON_0002614,medial part of ventral lateral nucleus,nucleus ventrooralis medialis (Hassler) +http://purl.obolibrary.org/obo/UBERON_0002614,medial part of ventral lateral nucleus,vMp (Macchi) +http://purl.obolibrary.org/obo/UBERON_0002614,medial part of ventral lateral nucleus,"ventral lateral nucleus, medial part" +http://purl.obolibrary.org/obo/UBERON_0002614,medial part of ventral lateral nucleus,ventral medial nucleus +http://purl.obolibrary.org/obo/UBERON_0002614,medial part of ventral lateral nucleus,ventral medial nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0002615,ventral tegmental decussation,anterior tegmental decussation +http://purl.obolibrary.org/obo/UBERON_0002615,ventral tegmental decussation,decussatio tegmentalis anterior +http://purl.obolibrary.org/obo/UBERON_0002615,ventral tegmental decussation,decussation of forel +http://purl.obolibrary.org/obo/UBERON_0002615,ventral tegmental decussation,ventral tegmental decussation of forel +http://purl.obolibrary.org/obo/UBERON_0002616,regional part of brain,anatomical structure of brain +http://purl.obolibrary.org/obo/UBERON_0002616,regional part of brain,biological structure of brain +http://purl.obolibrary.org/obo/UBERON_0002616,regional part of brain,brain anatomical structure +http://purl.obolibrary.org/obo/UBERON_0002616,regional part of brain,brain biological structure +http://purl.obolibrary.org/obo/UBERON_0002616,regional part of brain,brain part +http://purl.obolibrary.org/obo/UBERON_0002616,regional part of brain,neuraxis segment +http://purl.obolibrary.org/obo/UBERON_0002616,regional part of brain,neuroanatomical region +http://purl.obolibrary.org/obo/UBERON_0002616,regional part of brain,segment of brain +http://purl.obolibrary.org/obo/UBERON_0002617,pars postrema of ventral lateral nucleus,nucleus dorsointermedius externus magnocellularis (hassler) +http://purl.obolibrary.org/obo/UBERON_0002617,pars postrema of ventral lateral nucleus,nucleus lateralis intermedius mediodorsalis situs postremus +http://purl.obolibrary.org/obo/UBERON_0002617,pars postrema of ventral lateral nucleus,"nucleus ventralis lateralis thalami, pars postrema" +http://purl.obolibrary.org/obo/UBERON_0002617,pars postrema of ventral lateral nucleus,posterodorsal part of ventral lateral posterior nucleus (jones) +http://purl.obolibrary.org/obo/UBERON_0002617,pars postrema of ventral lateral nucleus,vLps +http://purl.obolibrary.org/obo/UBERON_0002617,pars postrema of ventral lateral nucleus,ventral lateral nucleus (pars postrema) +http://purl.obolibrary.org/obo/UBERON_0002618,root of trochlear nerve,central part of trochlear nerve +http://purl.obolibrary.org/obo/UBERON_0002618,root of trochlear nerve,trochlear nerve fibers +http://purl.obolibrary.org/obo/UBERON_0002618,root of trochlear nerve,trochlear nerve root +http://purl.obolibrary.org/obo/UBERON_0002618,root of trochlear nerve,trochlear nerve tract +http://purl.obolibrary.org/obo/UBERON_0002620,tuber cinereum, +http://purl.obolibrary.org/obo/UBERON_0002622,preoptic periventricular nucleus,nucleus preopticus periventricularis +http://purl.obolibrary.org/obo/UBERON_0002622,preoptic periventricular nucleus,periventricular preoptic nucleus +http://purl.obolibrary.org/obo/UBERON_0002622,preoptic periventricular nucleus,preoptic periventricular hypothalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0002623,cerebral peduncle,CP +http://purl.obolibrary.org/obo/UBERON_0002623,cerebral peduncle,cerebal peduncle +http://purl.obolibrary.org/obo/UBERON_0002623,cerebral peduncle,cerebral peduncle +http://purl.obolibrary.org/obo/UBERON_0002623,cerebral peduncle,cerebral peduncle (archaic) +http://purl.obolibrary.org/obo/UBERON_0002623,cerebral peduncle,peduncle of midbrain +http://purl.obolibrary.org/obo/UBERON_0002623,cerebral peduncle,pedunculi cerebri +http://purl.obolibrary.org/obo/UBERON_0002623,cerebral peduncle,pedunculus cerebralis +http://purl.obolibrary.org/obo/UBERON_0002623,cerebral peduncle,pedunculus cerebri +http://purl.obolibrary.org/obo/UBERON_0002623,cerebral peduncle,tegmentum +http://purl.obolibrary.org/obo/UBERON_0002624,orbital part of inferior frontal gyrus,"gyrus frontalis inferior, pars orbitalis" +http://purl.obolibrary.org/obo/UBERON_0002624,orbital part of inferior frontal gyrus,"inferior frontal gyrus, orbital part" +http://purl.obolibrary.org/obo/UBERON_0002624,orbital part of inferior frontal gyrus,pars orbitalis gyri frontalis inferioris +http://purl.obolibrary.org/obo/UBERON_0002625,median preoptic nucleus,MnPO +http://purl.obolibrary.org/obo/UBERON_0002625,median preoptic nucleus,median preoptic nucleus (Loo) +http://purl.obolibrary.org/obo/UBERON_0002625,median preoptic nucleus,nucleus praeopticus medianus +http://purl.obolibrary.org/obo/UBERON_0002625,median preoptic nucleus,nucleus preopticus medianus +http://purl.obolibrary.org/obo/UBERON_0002625,median preoptic nucleus,"periventricular nucleus, preventricular portion" +http://purl.obolibrary.org/obo/UBERON_0002626,head of caudate nucleus,caput (caudatus) +http://purl.obolibrary.org/obo/UBERON_0002626,head of caudate nucleus,caudate nuclear head +http://purl.obolibrary.org/obo/UBERON_0002627,capsule of medial geniculate body,capsula corporis geniculati medialis +http://purl.obolibrary.org/obo/UBERON_0002627,capsule of medial geniculate body,medial geniculate body capsule +http://purl.obolibrary.org/obo/UBERON_0002628,tail of caudate nucleus,caudate nuclear tail +http://purl.obolibrary.org/obo/UBERON_0002629,triangular part of inferior frontal gyrus,"gyrus frontalis inferior, pars triangularis" +http://purl.obolibrary.org/obo/UBERON_0002629,triangular part of inferior frontal gyrus,pars triangularis +http://purl.obolibrary.org/obo/UBERON_0002629,triangular part of inferior frontal gyrus,pars triangularis gyri frontalis inferioris +http://purl.obolibrary.org/obo/UBERON_0002629,triangular part of inferior frontal gyrus,pars triangularis of frontal operculum (Ono) +http://purl.obolibrary.org/obo/UBERON_0002630,body of caudate nucleus,caudate nuclear body +http://purl.obolibrary.org/obo/UBERON_0002630,body of caudate nucleus,corpus (caudatus) +http://purl.obolibrary.org/obo/UBERON_0002631,cerebral crus,cerebral peduncle (clinical definition) +http://purl.obolibrary.org/obo/UBERON_0002631,cerebral crus,crura cerebri +http://purl.obolibrary.org/obo/UBERON_0002631,cerebral crus,crus cerebri +http://purl.obolibrary.org/obo/UBERON_0002632,medial part of medial mammillary nucleus,medial mammillary nucleus (carpenter) +http://purl.obolibrary.org/obo/UBERON_0002632,medial part of medial mammillary nucleus,"medial mammillary nucleus, medial part" +http://purl.obolibrary.org/obo/UBERON_0002632,medial part of medial mammillary nucleus,"medial mammillary nucleus, median part" +http://purl.obolibrary.org/obo/UBERON_0002632,medial part of medial mammillary nucleus,medial subdivision of medial mammillary nucleus +http://purl.obolibrary.org/obo/UBERON_0002633,motor nucleus of trigeminal nerve,motor nucleus +http://purl.obolibrary.org/obo/UBERON_0002633,motor nucleus of trigeminal nerve,motor nucleus V +http://purl.obolibrary.org/obo/UBERON_0002633,motor nucleus of trigeminal nerve,motor nucleus of cranial nerve v +http://purl.obolibrary.org/obo/UBERON_0002633,motor nucleus of trigeminal nerve,motor nucleus of the trigeminal +http://purl.obolibrary.org/obo/UBERON_0002633,motor nucleus of trigeminal nerve,motor nucleus of the trigeminal nerve +http://purl.obolibrary.org/obo/UBERON_0002633,motor nucleus of trigeminal nerve,motor nucleus of trigeminal +http://purl.obolibrary.org/obo/UBERON_0002633,motor nucleus of trigeminal nerve,motor nucleus of trigeminal nerve +http://purl.obolibrary.org/obo/UBERON_0002633,motor nucleus of trigeminal nerve,motor trigeminal nucleus +http://purl.obolibrary.org/obo/UBERON_0002633,motor nucleus of trigeminal nerve,nV +http://purl.obolibrary.org/obo/UBERON_0002633,motor nucleus of trigeminal nerve,nucleus motorius nervi trigeminalis +http://purl.obolibrary.org/obo/UBERON_0002633,motor nucleus of trigeminal nerve,nucleus motorius nervi trigemini +http://purl.obolibrary.org/obo/UBERON_0002633,motor nucleus of trigeminal nerve,nucleus motorius trigeminalis +http://purl.obolibrary.org/obo/UBERON_0002633,motor nucleus of trigeminal nerve,trigeminal V motor nucleus +http://purl.obolibrary.org/obo/UBERON_0002633,motor nucleus of trigeminal nerve,trigeminal motor nuclei +http://purl.obolibrary.org/obo/UBERON_0002633,motor nucleus of trigeminal nerve,trigeminal motor nucleus +http://purl.obolibrary.org/obo/UBERON_0002634,anterior nucleus of hypothalamus,anterior hypothalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0002634,anterior nucleus of hypothalamus,area hypothalamica rostralis +http://purl.obolibrary.org/obo/UBERON_0002634,anterior nucleus of hypothalamus,fundamental gray substance +http://purl.obolibrary.org/obo/UBERON_0002634,anterior nucleus of hypothalamus,parvocellular nucleus of hypothalamus +http://purl.obolibrary.org/obo/UBERON_0002636,lateral pulvinar nucleus,lateral pulvinar nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0002636,lateral pulvinar nucleus,nucleus pulvinaris lateralis +http://purl.obolibrary.org/obo/UBERON_0002636,lateral pulvinar nucleus,nucleus pulvinaris lateralis (Hassler) +http://purl.obolibrary.org/obo/UBERON_0002636,lateral pulvinar nucleus,nucleus pulvinaris lateralis thalami +http://purl.obolibrary.org/obo/UBERON_0002636,lateral pulvinar nucleus,"nucleus pulvinaris thalami, pars lateralis" +http://purl.obolibrary.org/obo/UBERON_0002637,ventral anterior nucleus of thalamus,nucleus lateropolaris +http://purl.obolibrary.org/obo/UBERON_0002637,ventral anterior nucleus of thalamus,nucleus ventralis anterior +http://purl.obolibrary.org/obo/UBERON_0002637,ventral anterior nucleus of thalamus,nucleus ventralis anterior thalami +http://purl.obolibrary.org/obo/UBERON_0002637,ventral anterior nucleus of thalamus,nucleus ventralis thalami anterior +http://purl.obolibrary.org/obo/UBERON_0002637,ventral anterior nucleus of thalamus,ventral anterior nucleus +http://purl.obolibrary.org/obo/UBERON_0002637,ventral anterior nucleus of thalamus,ventral anterior nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0002637,ventral anterior nucleus of thalamus,ventral anterior thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0002637,ventral anterior nucleus of thalamus,ventroanterior nucleus of the thalamus +http://purl.obolibrary.org/obo/UBERON_0002637,ventral anterior nucleus of thalamus,ventroanterior thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0002638,medial pulvinar nucleus,nucleus pulvinaris medialis +http://purl.obolibrary.org/obo/UBERON_0002638,medial pulvinar nucleus,nucleus pulvinaris medialis thalami +http://purl.obolibrary.org/obo/UBERON_0002638,medial pulvinar nucleus,"nucleus pulvinaris thalami, pars medialis" +http://purl.obolibrary.org/obo/UBERON_0002639,midbrain reticular formation,MBRF +http://purl.obolibrary.org/obo/UBERON_0002639,midbrain reticular formation,formatio reticularis mesencephali +http://purl.obolibrary.org/obo/UBERON_0002639,midbrain reticular formation,formatio reticularis tegmentalis +http://purl.obolibrary.org/obo/UBERON_0002639,midbrain reticular formation,formatio reticularis tegmenti mesencephali +http://purl.obolibrary.org/obo/UBERON_0002639,midbrain reticular formation,reticular formation of midbrain +http://purl.obolibrary.org/obo/UBERON_0002639,midbrain reticular formation,substantia reticularis mesencephali +http://purl.obolibrary.org/obo/UBERON_0002639,midbrain reticular formation,tegmental reticular formation +http://purl.obolibrary.org/obo/UBERON_0002640,cuneocerebellar tract,cuneocerebellar fibers +http://purl.obolibrary.org/obo/UBERON_0002641,oral pulvinar nucleus,anterior pulvinar nucleus +http://purl.obolibrary.org/obo/UBERON_0002641,oral pulvinar nucleus,nucleus pulvinaris anterior +http://purl.obolibrary.org/obo/UBERON_0002641,oral pulvinar nucleus,nucleus pulvinaris oralis +http://purl.obolibrary.org/obo/UBERON_0002641,oral pulvinar nucleus,nucleus pulvinaris oralis thalami +http://purl.obolibrary.org/obo/UBERON_0002641,oral pulvinar nucleus,oral nuclear group of pulvinar +http://purl.obolibrary.org/obo/UBERON_0002641,oral pulvinar nucleus,oral part of pulvinar +http://purl.obolibrary.org/obo/UBERON_0002641,oral pulvinar nucleus,oral portion of pulvinar +http://purl.obolibrary.org/obo/UBERON_0002642,cuneate fasciculus of medulla,fasciculus cuneatus (myelencephali) +http://purl.obolibrary.org/obo/UBERON_0002643,decussation of medial lemniscus,decussation of lemnisci +http://purl.obolibrary.org/obo/UBERON_0002643,decussation of medial lemniscus,decussation of lemniscus +http://purl.obolibrary.org/obo/UBERON_0002643,decussation of medial lemniscus,decussation of medial lemnisci +http://purl.obolibrary.org/obo/UBERON_0002643,decussation of medial lemniscus,medial lemniscus decussation +http://purl.obolibrary.org/obo/UBERON_0002643,decussation of medial lemniscus,medullary sensory decussation +http://purl.obolibrary.org/obo/UBERON_0002643,decussation of medial lemniscus,sensory decussation +http://purl.obolibrary.org/obo/UBERON_0002644,intermediate orbital gyrus, +http://purl.obolibrary.org/obo/UBERON_0002645,densocellular part of medial dorsal nucleus,nucleus medialis dorsalis paralamellaris (Hassler) +http://purl.obolibrary.org/obo/UBERON_0002645,densocellular part of medial dorsal nucleus,"nucleus medialis dorsalis, pars densocellularis" +http://purl.obolibrary.org/obo/UBERON_0002646,dorsal longitudinal fasciculus of medulla,bundle of Schutz of medulla +http://purl.obolibrary.org/obo/UBERON_0002646,dorsal longitudinal fasciculus of medulla,fasciculus of Schutz of medulla +http://purl.obolibrary.org/obo/UBERON_0002646,dorsal longitudinal fasciculus of medulla,medulla bundle of Schutz +http://purl.obolibrary.org/obo/UBERON_0002646,dorsal longitudinal fasciculus of medulla,medulla dorsal longitudinal fasciculus +http://purl.obolibrary.org/obo/UBERON_0002646,dorsal longitudinal fasciculus of medulla,medulla fasciculus of Schutz +http://purl.obolibrary.org/obo/UBERON_0002646,dorsal longitudinal fasciculus of medulla,medulla posterior longitudinal fasciculus +http://purl.obolibrary.org/obo/UBERON_0002646,dorsal longitudinal fasciculus of medulla,posterior longitudinal fasciculus of medulla +http://purl.obolibrary.org/obo/UBERON_0002647,magnocellular part of medial dorsal nucleus,MDmc +http://purl.obolibrary.org/obo/UBERON_0002647,magnocellular part of medial dorsal nucleus,"dorsomedial thalamic nucleus, magnocellular part" +http://purl.obolibrary.org/obo/UBERON_0002647,magnocellular part of medial dorsal nucleus,magnocellular mediodorsal nucleus +http://purl.obolibrary.org/obo/UBERON_0002647,magnocellular part of medial dorsal nucleus,magnocellular nucleus of medial dorsal nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0002647,magnocellular part of medial dorsal nucleus,magnocellular part of dorsomedial nucleus +http://purl.obolibrary.org/obo/UBERON_0002647,magnocellular part of medial dorsal nucleus,magnocellular part of mediodorsal nucleus +http://purl.obolibrary.org/obo/UBERON_0002647,magnocellular part of medial dorsal nucleus,"mediodorsal nucleus of the thalamus, medial part" +http://purl.obolibrary.org/obo/UBERON_0002647,magnocellular part of medial dorsal nucleus,"nucleus medialis dorsalis, pars magnocellularis" +http://purl.obolibrary.org/obo/UBERON_0002647,magnocellular part of medial dorsal nucleus,nucleus medialis fibrosus +http://purl.obolibrary.org/obo/UBERON_0002647,magnocellular part of medial dorsal nucleus,nucleus medialis fibrosus (hassler) +http://purl.obolibrary.org/obo/UBERON_0002647,magnocellular part of medial dorsal nucleus,pars magnocellularis nuclei mediodorsalis thalami +http://purl.obolibrary.org/obo/UBERON_0002648,anterior median eminence, +http://purl.obolibrary.org/obo/UBERON_0002649,dorsolateral fasciculus of medulla,dorsolateral fasciculus +http://purl.obolibrary.org/obo/UBERON_0002649,dorsolateral fasciculus of medulla,dorsolateral tract +http://purl.obolibrary.org/obo/UBERON_0002649,dorsolateral fasciculus of medulla,lissauer's tract +http://purl.obolibrary.org/obo/UBERON_0002649,dorsolateral fasciculus of medulla,posterolateral fasciculus +http://purl.obolibrary.org/obo/UBERON_0002649,dorsolateral fasciculus of medulla,posterolateral tract +http://purl.obolibrary.org/obo/UBERON_0002649,dorsolateral fasciculus of medulla,tract of Lissauer +http://purl.obolibrary.org/obo/UBERON_0002649,dorsolateral fasciculus of medulla,tractus posterolateralis +http://purl.obolibrary.org/obo/UBERON_0002649,dorsolateral fasciculus of medulla,zone of Lissauer +http://purl.obolibrary.org/obo/UBERON_0002650,paralaminar part of medial dorsal nucleus,"dorsomedial thalamic nucleus, paralaminar part" +http://purl.obolibrary.org/obo/UBERON_0002650,paralaminar part of medial dorsal nucleus,"mediodorsal thalamic nucleus, paralaminar part" +http://purl.obolibrary.org/obo/UBERON_0002650,paralaminar part of medial dorsal nucleus,nucleus medialis dorsalis caudalis (hassler) +http://purl.obolibrary.org/obo/UBERON_0002650,paralaminar part of medial dorsal nucleus,"nucleus medialis dorsalis thalami, pars multiformis" +http://purl.obolibrary.org/obo/UBERON_0002650,paralaminar part of medial dorsal nucleus,"nucleus medialis dorsalis, pars multiformis" +http://purl.obolibrary.org/obo/UBERON_0002650,paralaminar part of medial dorsal nucleus,"nucleus medialis dorsalis, pars paralaminaris" +http://purl.obolibrary.org/obo/UBERON_0002650,paralaminar part of medial dorsal nucleus,paralaminar part of dorsomedial nucleus +http://purl.obolibrary.org/obo/UBERON_0002650,paralaminar part of medial dorsal nucleus,paralaminar part of medial dorsal nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0002650,paralaminar part of medial dorsal nucleus,pars paralaminaris nuclei mediodorsalis thalami +http://purl.obolibrary.org/obo/UBERON_0002650,paralaminar part of medial dorsal nucleus,pars paralaminaris of medial dorsal nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0002650,paralaminar part of medial dorsal nucleus,ventral mediodorsal nucleus +http://purl.obolibrary.org/obo/UBERON_0002651,anterior horn of lateral ventricle,anterior horn of lateral ventricle +http://purl.obolibrary.org/obo/UBERON_0002651,anterior horn of lateral ventricle,cornu anterius (ventriculi lateralis) +http://purl.obolibrary.org/obo/UBERON_0002651,anterior horn of lateral ventricle,cornu anterius ventriculi lateralis +http://purl.obolibrary.org/obo/UBERON_0002651,anterior horn of lateral ventricle,cornu frontale (ventriculi lateralis) +http://purl.obolibrary.org/obo/UBERON_0002651,anterior horn of lateral ventricle,cornu frontale ventriculi lateralis +http://purl.obolibrary.org/obo/UBERON_0002651,anterior horn of lateral ventricle,frontal horn of lateral ventricle +http://purl.obolibrary.org/obo/UBERON_0002651,anterior horn of lateral ventricle,"ventriculus lateralis, cornu anterius" +http://purl.obolibrary.org/obo/UBERON_0002652,posterior median eminence, +http://purl.obolibrary.org/obo/UBERON_0002653,gracile fasciculus of medulla,Goll's tract +http://purl.obolibrary.org/obo/UBERON_0002653,gracile fasciculus of medulla,column of Goll +http://purl.obolibrary.org/obo/UBERON_0002653,gracile fasciculus of medulla,fasciculus of goll +http://purl.obolibrary.org/obo/UBERON_0002653,gracile fasciculus of medulla,gracile fascicle of medulla +http://purl.obolibrary.org/obo/UBERON_0002653,gracile fasciculus of medulla,medulla segment of fasciculus gracilis +http://purl.obolibrary.org/obo/UBERON_0002653,gracile fasciculus of medulla,medulla segment of gracile fasciculus +http://purl.obolibrary.org/obo/UBERON_0002654,parvocellular part of medial dorsal nucleus,"dorsomedial thalamic nucleus, parvicellular part" +http://purl.obolibrary.org/obo/UBERON_0002654,parvocellular part of medial dorsal nucleus,lateral mediodorsal nucleus +http://purl.obolibrary.org/obo/UBERON_0002654,parvocellular part of medial dorsal nucleus,lateral nucleus of medial dorsal nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0002654,parvocellular part of medial dorsal nucleus,"mediodorsal thalamic nucleus, pars fasciculosa" +http://purl.obolibrary.org/obo/UBERON_0002654,parvocellular part of medial dorsal nucleus,nucleus medialis dorsalis fasciculosis (hassler) +http://purl.obolibrary.org/obo/UBERON_0002654,parvocellular part of medial dorsal nucleus,nucleus medialis dorsalis nucleus fasciculosis (hassler) +http://purl.obolibrary.org/obo/UBERON_0002654,parvocellular part of medial dorsal nucleus,"nucleus medialis dorsalis, pars parvicellularis" +http://purl.obolibrary.org/obo/UBERON_0002654,parvocellular part of medial dorsal nucleus,pars parvocellularis lateralis nuclei mediodorsalis thalami +http://purl.obolibrary.org/obo/UBERON_0002654,parvocellular part of medial dorsal nucleus,pars principalis nuclei ventralis anterior thalami +http://purl.obolibrary.org/obo/UBERON_0002654,parvocellular part of medial dorsal nucleus,parvicellular part of dorsomedial nucleus +http://purl.obolibrary.org/obo/UBERON_0002654,parvocellular part of medial dorsal nucleus,parvicellular part of medial dorsal nucleus +http://purl.obolibrary.org/obo/UBERON_0002654,parvocellular part of medial dorsal nucleus,parvocellular nucleus of medial dorsal nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0002654,parvocellular part of medial dorsal nucleus,principal division of ventral anterior nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0002655,body of lateral ventricle,central part of lateral ventricle +http://purl.obolibrary.org/obo/UBERON_0002655,body of lateral ventricle,corpus ventriculi lateralis +http://purl.obolibrary.org/obo/UBERON_0002655,body of lateral ventricle,lateral ventricular body +http://purl.obolibrary.org/obo/UBERON_0002655,body of lateral ventricle,pars centralis (ventriculi lateralis) +http://purl.obolibrary.org/obo/UBERON_0002655,body of lateral ventricle,pars centralis ventriculi lateralis +http://purl.obolibrary.org/obo/UBERON_0002655,body of lateral ventricle,"ventriculus lateralis, corpus" +http://purl.obolibrary.org/obo/UBERON_0002655,body of lateral ventricle,"ventriculus lateralis, pars centralis" +http://purl.obolibrary.org/obo/UBERON_0002656,periamygdaloid area,periamygdaloid area +http://purl.obolibrary.org/obo/UBERON_0002656,periamygdaloid area,periamygdaloid region +http://purl.obolibrary.org/obo/UBERON_0002656,periamygdaloid area,semilunar gyrus +http://purl.obolibrary.org/obo/UBERON_0002656,periamygdaloid area,ventral cortical nucleus of amygdala +http://purl.obolibrary.org/obo/UBERON_0002657,posterior parahippocampal gyrus,parahippocampal gyrus (amaral) +http://purl.obolibrary.org/obo/UBERON_0002657,posterior parahippocampal gyrus,parahippocampal gyrus (insausti) +http://purl.obolibrary.org/obo/UBERON_0002658,medial lemniscus of midbrain,midbrain medial lemniscus +http://purl.obolibrary.org/obo/UBERON_0002659,superior medullary velum,anterior medullary velum +http://purl.obolibrary.org/obo/UBERON_0002660,medial longitudinal fasciculus of midbrain,midbrain medial longitudinal fasciculus +http://purl.obolibrary.org/obo/UBERON_0002661,superior frontal gyrus,marginal gyrus +http://purl.obolibrary.org/obo/UBERON_0002661,superior frontal gyrus,superior frontal convolution +http://purl.obolibrary.org/obo/UBERON_0002662,medial pes lemniscus,superficial pes lemniscus +http://purl.obolibrary.org/obo/UBERON_0002663,septal nuclear complex,nuclei septales +http://purl.obolibrary.org/obo/UBERON_0002663,septal nuclear complex,parolfactory nuclei +http://purl.obolibrary.org/obo/UBERON_0002663,septal nuclear complex,septal nuclei +http://purl.obolibrary.org/obo/UBERON_0002663,septal nuclear complex,septal nucleus +http://purl.obolibrary.org/obo/UBERON_0002664,lateral part of medial mammillary nucleus,intercalated mammillary nucleus +http://purl.obolibrary.org/obo/UBERON_0002664,lateral part of medial mammillary nucleus,intermediate mammillary nucleus +http://purl.obolibrary.org/obo/UBERON_0002664,lateral part of medial mammillary nucleus,lateral mammillary nucleus (gagel) +http://purl.obolibrary.org/obo/UBERON_0002664,lateral part of medial mammillary nucleus,lateral subdivision of medial mammillary nucleus +http://purl.obolibrary.org/obo/UBERON_0002664,lateral part of medial mammillary nucleus,"medial mammillary nucleus, lateral part" +http://purl.obolibrary.org/obo/UBERON_0002665,supracallosal gyrus,gyrus supracallosus +http://purl.obolibrary.org/obo/UBERON_0002665,supracallosal gyrus,hippocampus supracommissuralis +http://purl.obolibrary.org/obo/UBERON_0002665,supracallosal gyrus,supracommissural hippocampal rudiment +http://purl.obolibrary.org/obo/UBERON_0002665,supracallosal gyrus,supracommissural hippocampus +http://purl.obolibrary.org/obo/UBERON_0002666,mesencephalic tract of trigeminal nerve,mesencephalic root of v +http://purl.obolibrary.org/obo/UBERON_0002666,mesencephalic tract of trigeminal nerve,mesencephalic trigeminal tract +http://purl.obolibrary.org/obo/UBERON_0002667,lateral septal nucleus,lateral parolfactory nucleus +http://purl.obolibrary.org/obo/UBERON_0002667,lateral septal nucleus,lateral septal nucleus (cajal) +http://purl.obolibrary.org/obo/UBERON_0002667,lateral septal nucleus,lateral septum +http://purl.obolibrary.org/obo/UBERON_0002667,lateral septal nucleus,lateral septum nucleus +http://purl.obolibrary.org/obo/UBERON_0002668,oculomotor nerve root,central part of oculomotor nerve +http://purl.obolibrary.org/obo/UBERON_0002668,oculomotor nerve root,oculomotor nerve fibers +http://purl.obolibrary.org/obo/UBERON_0002668,oculomotor nerve root,root of oculomotor nerve +http://purl.obolibrary.org/obo/UBERON_0002669,anterior horizontal limb of lateral sulcus,anterior branch of lateral sulcus +http://purl.obolibrary.org/obo/UBERON_0002669,anterior horizontal limb of lateral sulcus,anterior horizontal limb of lateral fissure +http://purl.obolibrary.org/obo/UBERON_0002669,anterior horizontal limb of lateral sulcus,anterior horizontal ramus of lateral fissure +http://purl.obolibrary.org/obo/UBERON_0002669,anterior horizontal limb of lateral sulcus,anterior ramus of lateral cerebral sulcus +http://purl.obolibrary.org/obo/UBERON_0002669,anterior horizontal limb of lateral sulcus,horizontal limb of lateral fissure +http://purl.obolibrary.org/obo/UBERON_0002669,anterior horizontal limb of lateral sulcus,horizontal ramus of sylvian fissure +http://purl.obolibrary.org/obo/UBERON_0002669,anterior horizontal limb of lateral sulcus,ramus anterior sulci lateralis cerebri +http://purl.obolibrary.org/obo/UBERON_0002670,anterior ascending limb of lateral sulcus,anterior ascending limb of lateral fissure +http://purl.obolibrary.org/obo/UBERON_0002670,anterior ascending limb of lateral sulcus,anterior ascending ramus of lateral sulcus +http://purl.obolibrary.org/obo/UBERON_0002670,anterior ascending limb of lateral sulcus,ascending branch of lateral sulcus +http://purl.obolibrary.org/obo/UBERON_0002670,anterior ascending limb of lateral sulcus,ascending ramus of lateral cerebral sulcus +http://purl.obolibrary.org/obo/UBERON_0002670,anterior ascending limb of lateral sulcus,ascending ramus of sylvian fissure +http://purl.obolibrary.org/obo/UBERON_0002670,anterior ascending limb of lateral sulcus,middle ramus of lateral fissure +http://purl.obolibrary.org/obo/UBERON_0002670,anterior ascending limb of lateral sulcus,ramus ascendens sulci lateralis cerebri +http://purl.obolibrary.org/obo/UBERON_0002670,anterior ascending limb of lateral sulcus,superior branch of lateral fissure +http://purl.obolibrary.org/obo/UBERON_0002671,pallidotegmental fasciculus,pallidotegmental tract +http://purl.obolibrary.org/obo/UBERON_0002672,anterior subcentral sulcus, +http://purl.obolibrary.org/obo/UBERON_0002673,vestibular nuclear complex,nuclei vestibulares in medulla oblongata +http://purl.obolibrary.org/obo/UBERON_0002673,vestibular nuclear complex,vestibular nuclei +http://purl.obolibrary.org/obo/UBERON_0002673,vestibular nuclear complex,vestibular nuclei in medulla oblongata +http://purl.obolibrary.org/obo/UBERON_0002675,diagonal sulcus, +http://purl.obolibrary.org/obo/UBERON_0002676,ventral supraoptic decussation,Gudden commissure +http://purl.obolibrary.org/obo/UBERON_0002676,ventral supraoptic decussation,Gudden's commissure +http://purl.obolibrary.org/obo/UBERON_0002676,ventral supraoptic decussation,VSOX +http://purl.obolibrary.org/obo/UBERON_0002676,ventral supraoptic decussation,commissura supraoptica ventralis +http://purl.obolibrary.org/obo/UBERON_0002676,ventral supraoptic decussation,commissure of Gudden +http://purl.obolibrary.org/obo/UBERON_0002676,ventral supraoptic decussation,"supraoptic commissures, ventral" +http://purl.obolibrary.org/obo/UBERON_0002676,ventral supraoptic decussation,ventral supra-optic commissure +http://purl.obolibrary.org/obo/UBERON_0002676,ventral supraoptic decussation,ventral supraoptic commissure (of Meynert) +http://purl.obolibrary.org/obo/UBERON_0002676,ventral supraoptic decussation,ventral supraoptic decussation +http://purl.obolibrary.org/obo/UBERON_0002676,ventral supraoptic decussation,von Gudden's commissure +http://purl.obolibrary.org/obo/UBERON_0002679,anterodorsal nucleus of thalamus,anterior dorsal thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0002679,anterodorsal nucleus of thalamus,anterodorsal nucleus +http://purl.obolibrary.org/obo/UBERON_0002679,anterodorsal nucleus of thalamus,anterodorsal nucleus of the thalamus +http://purl.obolibrary.org/obo/UBERON_0002679,anterodorsal nucleus of thalamus,anterodorsal thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0002679,anterodorsal nucleus of thalamus,nucleus anterior dorsalis +http://purl.obolibrary.org/obo/UBERON_0002679,anterodorsal nucleus of thalamus,nucleus anterior dorsalis thalami +http://purl.obolibrary.org/obo/UBERON_0002679,anterodorsal nucleus of thalamus,nucleus anterior thalami dorsalis +http://purl.obolibrary.org/obo/UBERON_0002679,anterodorsal nucleus of thalamus,nucleus anterodorsalis +http://purl.obolibrary.org/obo/UBERON_0002679,anterodorsal nucleus of thalamus,nucleus anterodorsalis (hassler) +http://purl.obolibrary.org/obo/UBERON_0002679,anterodorsal nucleus of thalamus,nucleus anterodorsalis thalami +http://purl.obolibrary.org/obo/UBERON_0002679,anterodorsal nucleus of thalamus,nucleus anterosuperior +http://purl.obolibrary.org/obo/UBERON_0002679,anterodorsal nucleus of thalamus,nucleus thalamicus anterodorsalis +http://purl.obolibrary.org/obo/UBERON_0002681,anteromedial nucleus of thalamus,anteromedial nucleus +http://purl.obolibrary.org/obo/UBERON_0002681,anteromedial nucleus of thalamus,anteromedial nucleus of the thalamus +http://purl.obolibrary.org/obo/UBERON_0002681,anteromedial nucleus of thalamus,anteromedial thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0002681,anteromedial nucleus of thalamus,nucleus anterior medialis +http://purl.obolibrary.org/obo/UBERON_0002681,anteromedial nucleus of thalamus,nucleus anterior medialis thalami +http://purl.obolibrary.org/obo/UBERON_0002681,anteromedial nucleus of thalamus,nucleus anterior thalami medialis +http://purl.obolibrary.org/obo/UBERON_0002681,anteromedial nucleus of thalamus,nucleus anteromedialis (hassler) +http://purl.obolibrary.org/obo/UBERON_0002681,anteromedial nucleus of thalamus,nucleus anteromedialis thalami +http://purl.obolibrary.org/obo/UBERON_0002681,anteromedial nucleus of thalamus,nucleus thalamicus anteromedialis +http://purl.obolibrary.org/obo/UBERON_0002682,abducens nucleus,abducens VI nucleus +http://purl.obolibrary.org/obo/UBERON_0002682,abducens nucleus,abducens motor nuclei +http://purl.obolibrary.org/obo/UBERON_0002682,abducens nucleus,abducens motor nucleus +http://purl.obolibrary.org/obo/UBERON_0002682,abducens nucleus,abducens nerve nucleus +http://purl.obolibrary.org/obo/UBERON_0002682,abducens nucleus,abducens nucleus proper +http://purl.obolibrary.org/obo/UBERON_0002682,abducens nucleus,abducent nucleus +http://purl.obolibrary.org/obo/UBERON_0002682,abducens nucleus,motor nucleus VI +http://purl.obolibrary.org/obo/UBERON_0002682,abducens nucleus,nVI +http://purl.obolibrary.org/obo/UBERON_0002682,abducens nucleus,nucleus abducens +http://purl.obolibrary.org/obo/UBERON_0002682,abducens nucleus,nucleus nervi abducentis +http://purl.obolibrary.org/obo/UBERON_0002682,abducens nucleus,nucleus of abducens nerve +http://purl.obolibrary.org/obo/UBERON_0002682,abducens nucleus,nucleus of abducens nerve (VI) +http://purl.obolibrary.org/obo/UBERON_0002682,abducens nucleus,sixth cranial nerve nucleus +http://purl.obolibrary.org/obo/UBERON_0002683,rhinal sulcus,fissura rhinalis +http://purl.obolibrary.org/obo/UBERON_0002683,rhinal sulcus,"rhinal fissuer (Turner, Rezius)" +http://purl.obolibrary.org/obo/UBERON_0002683,rhinal sulcus,rhinal fissure +http://purl.obolibrary.org/obo/UBERON_0002683,rhinal sulcus,sulcus rhinalis +http://purl.obolibrary.org/obo/UBERON_0002684,nucleus raphe obscurus,nucleus raphes obscurus +http://purl.obolibrary.org/obo/UBERON_0002684,nucleus raphe obscurus,obscurus raphe nucleus +http://purl.obolibrary.org/obo/UBERON_0002684,nucleus raphe obscurus,raphe obscurus nucleus +http://purl.obolibrary.org/obo/UBERON_0002685,anteroventral nucleus of thalamus,anterior ventral nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0002685,anteroventral nucleus of thalamus,anteroprincipal thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0002685,anteroventral nucleus of thalamus,anteroventral nucleus +http://purl.obolibrary.org/obo/UBERON_0002685,anteroventral nucleus of thalamus,anteroventral nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0002685,anteroventral nucleus of thalamus,anteroventral nucleus of the thalamus +http://purl.obolibrary.org/obo/UBERON_0002685,anteroventral nucleus of thalamus,anteroventral thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0002685,anteroventral nucleus of thalamus,nucleus anterior thalami ventralis +http://purl.obolibrary.org/obo/UBERON_0002685,anteroventral nucleus of thalamus,nucleus anterior ventralis +http://purl.obolibrary.org/obo/UBERON_0002685,anteroventral nucleus of thalamus,nucleus anteroinferior +http://purl.obolibrary.org/obo/UBERON_0002685,anteroventral nucleus of thalamus,nucleus anteroventralis +http://purl.obolibrary.org/obo/UBERON_0002685,anteroventral nucleus of thalamus,nucleus anteroventralis thalami +http://purl.obolibrary.org/obo/UBERON_0002685,anteroventral nucleus of thalamus,nucleus thalamicus anteroprincipalis +http://purl.obolibrary.org/obo/UBERON_0002685,anteroventral nucleus of thalamus,nucleus thalamicus anteroventralis +http://purl.obolibrary.org/obo/UBERON_0002686,angular gyrus,middle part of inferior parietal lobule +http://purl.obolibrary.org/obo/UBERON_0002686,angular gyrus,preoccipital gyrus +http://purl.obolibrary.org/obo/UBERON_0002687,area X of ventral lateral nucleus,anteromedial part of ventral lateral posterior nucleus (jones) +http://purl.obolibrary.org/obo/UBERON_0002687,area X of ventral lateral nucleus,area X +http://purl.obolibrary.org/obo/UBERON_0002687,area X of ventral lateral nucleus,area X of Olszewski +http://purl.obolibrary.org/obo/UBERON_0002687,area X of ventral lateral nucleus,nucleus lateralis intermedius mediodorsalis situs ventralis medialis +http://purl.obolibrary.org/obo/UBERON_0002687,area X of ventral lateral nucleus,"nucleus ventralis oralis, pars posterior (dewulf)" +http://purl.obolibrary.org/obo/UBERON_0002687,area X of ventral lateral nucleus,nucleus ventrooralis internus (hassler) +http://purl.obolibrary.org/obo/UBERON_0002687,area X of ventral lateral nucleus,"nucleus ventrooralis internus, superior part" +http://purl.obolibrary.org/obo/UBERON_0002688,supramarginal gyrus,anterior part of inferior parietal lobule +http://purl.obolibrary.org/obo/UBERON_0002688,supramarginal gyrus,inferior parietal lobule (krieg) +http://purl.obolibrary.org/obo/UBERON_0002689,supraoptic crest,OVLT +http://purl.obolibrary.org/obo/UBERON_0002689,supraoptic crest,organum vasculosum lamina terminalis +http://purl.obolibrary.org/obo/UBERON_0002689,supraoptic crest,organum vasculosum laminae terminalis +http://purl.obolibrary.org/obo/UBERON_0002689,supraoptic crest,prechiasmatic gland +http://purl.obolibrary.org/obo/UBERON_0002689,supraoptic crest,vascular organ of lamina terminalis +http://purl.obolibrary.org/obo/UBERON_0002690,anteroventral periventricular nucleus, +http://purl.obolibrary.org/obo/UBERON_0002691,ventral tegmental area,VTA +http://purl.obolibrary.org/obo/UBERON_0002691,ventral tegmental area,a10a +http://purl.obolibrary.org/obo/UBERON_0002691,ventral tegmental area,area tegmentalis ventralis +http://purl.obolibrary.org/obo/UBERON_0002691,ventral tegmental area,area tegmentalis ventralis (Tsai) +http://purl.obolibrary.org/obo/UBERON_0002691,ventral tegmental area,tegmentum ventrale +http://purl.obolibrary.org/obo/UBERON_0002691,ventral tegmental area,ventral brain stem +http://purl.obolibrary.org/obo/UBERON_0002691,ventral tegmental area,ventral tegmental area (Tsai) +http://purl.obolibrary.org/obo/UBERON_0002691,ventral tegmental area,ventral tegmental area of tsai +http://purl.obolibrary.org/obo/UBERON_0002691,ventral tegmental area,ventral tegmental nucleus (Rioch) +http://purl.obolibrary.org/obo/UBERON_0002691,ventral tegmental area,ventral tegmental nucleus (tsai) +http://purl.obolibrary.org/obo/UBERON_0002691,ventral tegmental area,ventral tegmental nucleus of tsai +http://purl.obolibrary.org/obo/UBERON_0002691,ventral tegmental area,ventromedial mesencephalic tegmentum +http://purl.obolibrary.org/obo/UBERON_0002692,medullary raphe nuclear complex,raphe medullae oblongatae +http://purl.obolibrary.org/obo/UBERON_0002692,medullary raphe nuclear complex,raphe nuclei of medulla +http://purl.obolibrary.org/obo/UBERON_0002692,medullary raphe nuclear complex,raphe of medulla oblongata +http://purl.obolibrary.org/obo/UBERON_0002693,occipitotemporal sulcus,inferior temporal fissure +http://purl.obolibrary.org/obo/UBERON_0002693,occipitotemporal sulcus,inferior temporal fissure (Crosby) +http://purl.obolibrary.org/obo/UBERON_0002693,occipitotemporal sulcus,inferior temporal sulcus (roberts) +http://purl.obolibrary.org/obo/UBERON_0002693,occipitotemporal sulcus,inferior temporal sulcus (szikla) +http://purl.obolibrary.org/obo/UBERON_0002693,occipitotemporal sulcus,inferior temporal sulcus-2 +http://purl.obolibrary.org/obo/UBERON_0002693,occipitotemporal sulcus,lateral occipitotemporal sulcus +http://purl.obolibrary.org/obo/UBERON_0002693,occipitotemporal sulcus,occipito-temporal sulcus +http://purl.obolibrary.org/obo/UBERON_0002693,occipitotemporal sulcus,third temporal sulcus +http://purl.obolibrary.org/obo/UBERON_0002694,anterior hypothalamic commissure,anterior hypothalamic commissure (Ganser) +http://purl.obolibrary.org/obo/UBERON_0002694,anterior hypothalamic commissure,anterior hypothalamic decussation of Ganser +http://purl.obolibrary.org/obo/UBERON_0002695,parieto-occipital sulcus,fissura parieto-occipitalis +http://purl.obolibrary.org/obo/UBERON_0002695,parieto-occipital sulcus,parieto-occipital fissure +http://purl.obolibrary.org/obo/UBERON_0002695,parieto-occipital sulcus,parieto-occipital incisure +http://purl.obolibrary.org/obo/UBERON_0002695,parieto-occipital sulcus,parietooccipital sulcus +http://purl.obolibrary.org/obo/UBERON_0002695,parieto-occipital sulcus,sulcus parieto-occipitalis +http://purl.obolibrary.org/obo/UBERON_0002695,parieto-occipital sulcus,sulcus parieto-occipitalis medialis +http://purl.obolibrary.org/obo/UBERON_0002695,parieto-occipital sulcus,sulcus parietoccipitalis +http://purl.obolibrary.org/obo/UBERON_0002695,parieto-occipital sulcus,sulcus parietooccipitalis +http://purl.obolibrary.org/obo/UBERON_0002696,cuneiform nucleus,cunieform nucleus +http://purl.obolibrary.org/obo/UBERON_0002696,cuneiform nucleus,parabigeminal area (mai) +http://purl.obolibrary.org/obo/UBERON_0002697,dorsal supraoptic decussation,Meynert's commissure +http://purl.obolibrary.org/obo/UBERON_0002697,dorsal supraoptic decussation,commissura supraoptica dorsalis +http://purl.obolibrary.org/obo/UBERON_0002697,dorsal supraoptic decussation,commissure of Meynert +http://purl.obolibrary.org/obo/UBERON_0002697,dorsal supraoptic decussation,dorsal supra-optic commissure +http://purl.obolibrary.org/obo/UBERON_0002697,dorsal supraoptic decussation,dorsal supraoptic commissure +http://purl.obolibrary.org/obo/UBERON_0002697,dorsal supraoptic decussation,dorsal supraoptic commissure (of ganser) +http://purl.obolibrary.org/obo/UBERON_0002697,dorsal supraoptic decussation,dorsal supraoptic decussation (of Meynert) +http://purl.obolibrary.org/obo/UBERON_0002697,dorsal supraoptic decussation,dorsal supraoptic decussation (of ganser) +http://purl.obolibrary.org/obo/UBERON_0002697,dorsal supraoptic decussation,dorsal supraoptic decussation of Meynert +http://purl.obolibrary.org/obo/UBERON_0002697,dorsal supraoptic decussation,ganser's commissure +http://purl.obolibrary.org/obo/UBERON_0002697,dorsal supraoptic decussation,supraoptic commissure of Meynert +http://purl.obolibrary.org/obo/UBERON_0002697,dorsal supraoptic decussation,"supraoptic commissures, dorsal" +http://purl.obolibrary.org/obo/UBERON_0002698,preoccipital notch,incisura parieto-occipitalis +http://purl.obolibrary.org/obo/UBERON_0002698,preoccipital notch,incisura praeoccipitalis +http://purl.obolibrary.org/obo/UBERON_0002698,preoccipital notch,incisura preoccipitalis +http://purl.obolibrary.org/obo/UBERON_0002698,preoccipital notch,occipital notch +http://purl.obolibrary.org/obo/UBERON_0002698,preoccipital notch,preoccipital incisura +http://purl.obolibrary.org/obo/UBERON_0002698,preoccipital notch,preoccipital incisure +http://purl.obolibrary.org/obo/UBERON_0002699,supraopticohypophysial tract,supra-opticohypophysial tract +http://purl.obolibrary.org/obo/UBERON_0002699,supraopticohypophysial tract,supraopticohypophyseal tract +http://purl.obolibrary.org/obo/UBERON_0002699,supraopticohypophysial tract,tractus supraopticohypophysialis +http://purl.obolibrary.org/obo/UBERON_0002700,subcuneiform nucleus,subcuneiform area of midbrain +http://purl.obolibrary.org/obo/UBERON_0002701,anterior median oculomotor nucleus,anterior medial visceral nucleus +http://purl.obolibrary.org/obo/UBERON_0002701,anterior median oculomotor nucleus,anterior median nucleus of oculomotor nerve +http://purl.obolibrary.org/obo/UBERON_0002701,anterior median oculomotor nucleus,anterior median nucleus of oculomotor nuclear complex +http://purl.obolibrary.org/obo/UBERON_0002701,anterior median oculomotor nucleus,nucleus visceralis anteromedialis +http://purl.obolibrary.org/obo/UBERON_0002701,anterior median oculomotor nucleus,ventral medial nucleus of oculomotor nerve +http://purl.obolibrary.org/obo/UBERON_0002701,anterior median oculomotor nucleus,ventral medial visceral nucleus +http://purl.obolibrary.org/obo/UBERON_0002702,middle frontal gyrus,gyrus frontalis medialis +http://purl.obolibrary.org/obo/UBERON_0002702,middle frontal gyrus,intermediate frontal gyrus +http://purl.obolibrary.org/obo/UBERON_0002702,middle frontal gyrus,medial frontal gyrus +http://purl.obolibrary.org/obo/UBERON_0002703,precentral gyrus,precentral convolution +http://purl.obolibrary.org/obo/UBERON_0002703,precentral gyrus,prerolandic gyrus +http://purl.obolibrary.org/obo/UBERON_0002704,metathalamus,MTh +http://purl.obolibrary.org/obo/UBERON_0002704,metathalamus,corpora geniculata +http://purl.obolibrary.org/obo/UBERON_0002704,metathalamus,geniculate group of dorsal thalamus +http://purl.obolibrary.org/obo/UBERON_0002704,metathalamus,geniculate group of the dorsal thalamus +http://purl.obolibrary.org/obo/UBERON_0002704,metathalamus,geniculate thalamic group +http://purl.obolibrary.org/obo/UBERON_0002704,metathalamus,geniculate thalamic nuclear group (metathalamus) +http://purl.obolibrary.org/obo/UBERON_0002704,metathalamus,nuclei metathalami +http://purl.obolibrary.org/obo/UBERON_0002705,midline nuclear group,median nuclei of thalamus +http://purl.obolibrary.org/obo/UBERON_0002705,midline nuclear group,midline nuclear group +http://purl.obolibrary.org/obo/UBERON_0002705,midline nuclear group,midline nuclear group of thalamus +http://purl.obolibrary.org/obo/UBERON_0002705,midline nuclear group,midline nuclei of thalamus +http://purl.obolibrary.org/obo/UBERON_0002705,midline nuclear group,midline thalamic group +http://purl.obolibrary.org/obo/UBERON_0002705,midline nuclear group,nuclei mediani (thalami) +http://purl.obolibrary.org/obo/UBERON_0002705,midline nuclear group,nuclei mediani thalami +http://purl.obolibrary.org/obo/UBERON_0002705,midline nuclear group,periventricular nuclei of thalamus +http://purl.obolibrary.org/obo/UBERON_0002706,posterior nucleus of hypothalamus,area hypothalamica posterior +http://purl.obolibrary.org/obo/UBERON_0002706,posterior nucleus of hypothalamus,posterior hypothalamic area +http://purl.obolibrary.org/obo/UBERON_0002706,posterior nucleus of hypothalamus,posterior hypothalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0002707,corticospinal tract,corticospinal fibers +http://purl.obolibrary.org/obo/UBERON_0002707,corticospinal tract,fasciculus cerebro-spinalis +http://purl.obolibrary.org/obo/UBERON_0002707,corticospinal tract,fasciculus pyramidalis +http://purl.obolibrary.org/obo/UBERON_0002707,corticospinal tract,fibrae corticospinales +http://purl.obolibrary.org/obo/UBERON_0002707,corticospinal tract,pyramid (Willis) +http://purl.obolibrary.org/obo/UBERON_0002707,corticospinal tract,tractus cortico-spinalis +http://purl.obolibrary.org/obo/UBERON_0002707,corticospinal tract,tractus corticospinalis +http://purl.obolibrary.org/obo/UBERON_0002707,corticospinal tract,tractus pyramidalis +http://purl.obolibrary.org/obo/UBERON_0002708,posterior periventricular nucleus,griseum periventriculare hypothalami +http://purl.obolibrary.org/obo/UBERON_0002708,posterior periventricular nucleus,nucleus periventricularis posterior +http://purl.obolibrary.org/obo/UBERON_0002708,posterior periventricular nucleus,"periventricular hypothalamic nucleus, posterior part" +http://purl.obolibrary.org/obo/UBERON_0002708,posterior periventricular nucleus,"periventricular nucleus, posterior subdivision" +http://purl.obolibrary.org/obo/UBERON_0002708,posterior periventricular nucleus,posterior paraventricular nucleus +http://purl.obolibrary.org/obo/UBERON_0002708,posterior periventricular nucleus,posterior periventricular hypothalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0002708,posterior periventricular nucleus,posterior periventricular nucleus +http://purl.obolibrary.org/obo/UBERON_0002708,posterior periventricular nucleus,posterior periventricular nucleus of hypothalamus +http://purl.obolibrary.org/obo/UBERON_0002708,posterior periventricular nucleus,posterior periventricular nucleus of the hypothalamus +http://purl.obolibrary.org/obo/UBERON_0002709,posterior nuclear complex of thalamus,caudal thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0002709,posterior nuclear complex of thalamus,nuclei posteriores thalami +http://purl.obolibrary.org/obo/UBERON_0002709,posterior nuclear complex of thalamus,posterior complex of thalamus +http://purl.obolibrary.org/obo/UBERON_0002709,posterior nuclear complex of thalamus,posterior complex of the thalamus +http://purl.obolibrary.org/obo/UBERON_0002709,posterior nuclear complex of thalamus,posterior nuclear complex +http://purl.obolibrary.org/obo/UBERON_0002709,posterior nuclear complex of thalamus,posterior nuclear complex of thalamus +http://purl.obolibrary.org/obo/UBERON_0002709,posterior nuclear complex of thalamus,posterior nuclear group of thalamus +http://purl.obolibrary.org/obo/UBERON_0002709,posterior nuclear complex of thalamus,posterior nucleus of dorsal thalamus +http://purl.obolibrary.org/obo/UBERON_0002709,posterior nuclear complex of thalamus,posterior thalamic nuclear group +http://purl.obolibrary.org/obo/UBERON_0002709,posterior nuclear complex of thalamus,posterior thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0002710,cingulate sulcus,calloso-marginal sulcus +http://purl.obolibrary.org/obo/UBERON_0002710,cingulate sulcus,callosomarginal fissure +http://purl.obolibrary.org/obo/UBERON_0002710,cingulate sulcus,callosomarginal sulcus +http://purl.obolibrary.org/obo/UBERON_0002710,cingulate sulcus,cingulate fissure +http://purl.obolibrary.org/obo/UBERON_0002710,cingulate sulcus,sulcus callosomarginalis +http://purl.obolibrary.org/obo/UBERON_0002710,cingulate sulcus,sulcus cingulatus +http://purl.obolibrary.org/obo/UBERON_0002710,cingulate sulcus,sulcus cinguli +http://purl.obolibrary.org/obo/UBERON_0002711,nucleus of posterior commissure,Darkshevich nucleus +http://purl.obolibrary.org/obo/UBERON_0002711,nucleus of posterior commissure,Darkshevich's nucleus +http://purl.obolibrary.org/obo/UBERON_0002711,nucleus of posterior commissure,PCom +http://purl.obolibrary.org/obo/UBERON_0002711,nucleus of posterior commissure,nucleus commissura posterior +http://purl.obolibrary.org/obo/UBERON_0002711,nucleus of posterior commissure,nucleus commissuralis posterioris +http://purl.obolibrary.org/obo/UBERON_0002711,nucleus of posterior commissure,nucleus interstitialis of posterior commissure +http://purl.obolibrary.org/obo/UBERON_0002711,nucleus of posterior commissure,nucleus of Darkschewitsch +http://purl.obolibrary.org/obo/UBERON_0002711,nucleus of posterior commissure,nucleus of the posterior commissure +http://purl.obolibrary.org/obo/UBERON_0002711,nucleus of posterior commissure,posterior commissure nucleus +http://purl.obolibrary.org/obo/UBERON_0002712,premammillary nucleus,PMm +http://purl.obolibrary.org/obo/UBERON_0002712,premammillary nucleus,nuclei premamillaris +http://purl.obolibrary.org/obo/UBERON_0002712,premammillary nucleus,nucleus premamillaris hypothalami +http://purl.obolibrary.org/obo/UBERON_0002712,premammillary nucleus,premamillary nucleus +http://purl.obolibrary.org/obo/UBERON_0002712,premammillary nucleus,premammillary nuclei +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,central lobe marginal branch of cingulate sulcus +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,central lobe marginal ramus of cingulate sulcus +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,central lobe marginal sulcus +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,circular fissure +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,circular sulcus (of reil) +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,circuminsular sulcus +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,ciruclar insular sulcus +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,cortex of island marginal branch of cingulate sulcus +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,cortex of island marginal ramus of cingulate sulcus +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,cortex of island marginal sulcus +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,insula lobule marginal branch of cingulate sulcus +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,insula lobule marginal ramus of cingulate sulcus +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,insula lobule marginal sulcus +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,insula marginal branch of cingulate sulcus +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,insula marginal ramus of cingulate sulcus +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,insula marginal sulcus +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,insular cortex marginal branch of cingulate sulcus +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,insular cortex marginal ramus of cingulate sulcus +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,insular cortex marginal sulcus +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,insular lobe marginal branch of cingulate sulcus +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,insular lobe marginal ramus of cingulate sulcus +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,insular lobe marginal sulcus +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,insular region marginal branch of cingulate sulcus +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,insular region marginal ramus of cingulate sulcus +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,insular region marginal sulcus +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,island of reil marginal branch of cingulate sulcus +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,island of reil marginal ramus of cingulate sulcus +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,island of reil marginal sulcus +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,limiting fissure +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,marginal branch of cingulate sulcus of central lobe +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,marginal branch of cingulate sulcus of cortex of island +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,marginal branch of cingulate sulcus of insula +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,marginal branch of cingulate sulcus of insula lobule +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,marginal branch of cingulate sulcus of insular cortex +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,marginal branch of cingulate sulcus of insular lobe +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,marginal branch of cingulate sulcus of insular region +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,marginal branch of cingulate sulcus of island of reil +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,marginal insular sulcus +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,marginal ramus of cingulate sulcus of central lobe +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,marginal ramus of cingulate sulcus of cortex of island +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,marginal ramus of cingulate sulcus of insula +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,marginal ramus of cingulate sulcus of insula lobule +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,marginal ramus of cingulate sulcus of insular cortex +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,marginal ramus of cingulate sulcus of insular lobe +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,marginal ramus of cingulate sulcus of insular region +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,marginal ramus of cingulate sulcus of island of reil +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,marginal sulcus of central lobe +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,marginal sulcus of cortex of island +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,marginal sulcus of insula +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,marginal sulcus of insula lobule +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,marginal sulcus of insular cortex +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,marginal sulcus of insular lobe +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,marginal sulcus of insular region +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,marginal sulcus of island of reil +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,sulcus circularis insulae +http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula,sulcus marginalis insulae +http://purl.obolibrary.org/obo/UBERON_0002714,rubrospinal tract,Monakow's tract +http://purl.obolibrary.org/obo/UBERON_0002714,rubrospinal tract,rubrospinal tract (Monakow) +http://purl.obolibrary.org/obo/UBERON_0002715,spinal trigeminal tract of medulla, +http://purl.obolibrary.org/obo/UBERON_0002716,collateral sulcus,collateral fissure +http://purl.obolibrary.org/obo/UBERON_0002716,collateral sulcus,sulcus collateralis +http://purl.obolibrary.org/obo/UBERON_0002717,rostral interstitial nucleus of medial longitudinal fasciculus,riMLF +http://purl.obolibrary.org/obo/UBERON_0002717,rostral interstitial nucleus of medial longitudinal fasciculus,rostral interstitial nucleus of MLF +http://purl.obolibrary.org/obo/UBERON_0002718,solitary tract,respiratory bundle of Gierke +http://purl.obolibrary.org/obo/UBERON_0002719,spino-olivary tract,helweg's tract +http://purl.obolibrary.org/obo/UBERON_0002720,mammillary peduncle,peduncle of mammillary body +http://purl.obolibrary.org/obo/UBERON_0002721,lateral sulcus,Sylvian fissure +http://purl.obolibrary.org/obo/UBERON_0002721,lateral sulcus,Sylvian sulcus +http://purl.obolibrary.org/obo/UBERON_0002721,lateral sulcus,fissura lateralis +http://purl.obolibrary.org/obo/UBERON_0002721,lateral sulcus,fissura lateralis cerebri +http://purl.obolibrary.org/obo/UBERON_0002721,lateral sulcus,fissura lateralis cerebri (sylvii) +http://purl.obolibrary.org/obo/UBERON_0002721,lateral sulcus,fissura transversa cerebri +http://purl.obolibrary.org/obo/UBERON_0002721,lateral sulcus,fissure of Sylvius +http://purl.obolibrary.org/obo/UBERON_0002721,lateral sulcus,lateral cerebral fissure +http://purl.obolibrary.org/obo/UBERON_0002721,lateral sulcus,lateral cerebral sulcus +http://purl.obolibrary.org/obo/UBERON_0002721,lateral sulcus,lateral fissure +http://purl.obolibrary.org/obo/UBERON_0002721,lateral sulcus,lateral fissure of Sylvius +http://purl.obolibrary.org/obo/UBERON_0002721,lateral sulcus,sulcus lateralis +http://purl.obolibrary.org/obo/UBERON_0002721,lateral sulcus,sulcus lateralis cerebri +http://purl.obolibrary.org/obo/UBERON_0002721,lateral sulcus,transverse cerebral fissure +http://purl.obolibrary.org/obo/UBERON_0002722,trochlear nucleus,fourth cranial nerve nucleus +http://purl.obolibrary.org/obo/UBERON_0002722,trochlear nucleus,motor nucleus IV +http://purl.obolibrary.org/obo/UBERON_0002722,trochlear nucleus,nIV +http://purl.obolibrary.org/obo/UBERON_0002722,trochlear nucleus,nucleus nervi trochlearis +http://purl.obolibrary.org/obo/UBERON_0002722,trochlear nucleus,nucleus of trochlear nerve +http://purl.obolibrary.org/obo/UBERON_0002722,trochlear nucleus,trochlear IV nucleus +http://purl.obolibrary.org/obo/UBERON_0002722,trochlear nucleus,trochlear motor nucleus +http://purl.obolibrary.org/obo/UBERON_0002723,mammillary princeps fasciculus,principal mammillary fasciculus +http://purl.obolibrary.org/obo/UBERON_0002723,mammillary princeps fasciculus,principal mammillary tract +http://purl.obolibrary.org/obo/UBERON_0002723,mammillary princeps fasciculus,principle mamillary fasciculus +http://purl.obolibrary.org/obo/UBERON_0002724,limen of insula,angulus gyri olfactorii lateralis +http://purl.obolibrary.org/obo/UBERON_0002724,limen of insula,gyrus ambiens (Noback) +http://purl.obolibrary.org/obo/UBERON_0002724,limen of insula,insula limen +http://purl.obolibrary.org/obo/UBERON_0002724,limen of insula,limen insulae +http://purl.obolibrary.org/obo/UBERON_0002726,cervical spinal cord,cervical segment of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002726,cervical spinal cord,cervical segments of spinal cord [1-8] +http://purl.obolibrary.org/obo/UBERON_0002726,cervical spinal cord,cervical spinal cord +http://purl.obolibrary.org/obo/UBERON_0002726,cervical spinal cord,pars cervicalis medullae spinalis +http://purl.obolibrary.org/obo/UBERON_0002726,cervical spinal cord,segmenta cervicalia medullae spinalis [1-8 +http://purl.obolibrary.org/obo/UBERON_0002727,medial medullary lamina of globus pallidus,inner medullary lamina +http://purl.obolibrary.org/obo/UBERON_0002727,medial medullary lamina of globus pallidus,internal medullary lamina of corpus striatum +http://purl.obolibrary.org/obo/UBERON_0002727,medial medullary lamina of globus pallidus,internal medullary lamina of globus pallidus +http://purl.obolibrary.org/obo/UBERON_0002727,medial medullary lamina of globus pallidus,internal medullary lamina of lentiform nucleus +http://purl.obolibrary.org/obo/UBERON_0002727,medial medullary lamina of globus pallidus,lamina medullaris interna corporis striati +http://purl.obolibrary.org/obo/UBERON_0002727,medial medullary lamina of globus pallidus,lamina medullaris medialis corporis striati +http://purl.obolibrary.org/obo/UBERON_0002727,medial medullary lamina of globus pallidus,medial medullary lamina +http://purl.obolibrary.org/obo/UBERON_0002727,medial medullary lamina of globus pallidus,medial medullary lamina of corpus striatum +http://purl.obolibrary.org/obo/UBERON_0002727,medial medullary lamina of globus pallidus,medial medullary lamina of globus pallidus +http://purl.obolibrary.org/obo/UBERON_0002727,medial medullary lamina of globus pallidus,medial medullary lamina of pallidum +http://purl.obolibrary.org/obo/UBERON_0002727,medial medullary lamina of globus pallidus,medial medullary stria +http://purl.obolibrary.org/obo/UBERON_0002728,entorhinal cortex,Brodmann's area 28 +http://purl.obolibrary.org/obo/UBERON_0002728,entorhinal cortex,"area entorhinalis (28,34)" +http://purl.obolibrary.org/obo/UBERON_0002728,entorhinal cortex,area entorhinalis ventralis et dorsalis +http://purl.obolibrary.org/obo/UBERON_0002728,entorhinal cortex,cortex entorhinalis +http://purl.obolibrary.org/obo/UBERON_0002728,entorhinal cortex,entorhinal area +http://purl.obolibrary.org/obo/UBERON_0002728,entorhinal cortex,entorhinal cortex +http://purl.obolibrary.org/obo/UBERON_0002729,claustral amygdaloid area,claustrum diffusa +http://purl.obolibrary.org/obo/UBERON_0002729,claustral amygdaloid area,claustrum parvum +http://purl.obolibrary.org/obo/UBERON_0002729,claustral amygdaloid area,ventral claustrum +http://purl.obolibrary.org/obo/UBERON_0002729,claustral amygdaloid area,ventral portion of claustrum +http://purl.obolibrary.org/obo/UBERON_0002731,vestibulocochlear nerve root,central part of vestibulocochlear nerve +http://purl.obolibrary.org/obo/UBERON_0002731,vestibulocochlear nerve root,fibrae nervi statoacustici +http://purl.obolibrary.org/obo/UBERON_0002731,vestibulocochlear nerve root,root of vestibulocochlear nerve +http://purl.obolibrary.org/obo/UBERON_0002731,vestibulocochlear nerve root,statoacoustic nerve fibers +http://purl.obolibrary.org/obo/UBERON_0002731,vestibulocochlear nerve root,vestibulocochlear nerve fibers +http://purl.obolibrary.org/obo/UBERON_0002731,vestibulocochlear nerve root,vestibulocochlear nerve roots +http://purl.obolibrary.org/obo/UBERON_0002731,vestibulocochlear nerve root,vestibulocochlear nerve tract +http://purl.obolibrary.org/obo/UBERON_0002732,longitudinal pontine fibers,fibrae pontis longitudinales +http://purl.obolibrary.org/obo/UBERON_0002732,longitudinal pontine fibers,longitudinal fasciculus of the pons +http://purl.obolibrary.org/obo/UBERON_0002732,longitudinal pontine fibers,longitudinal pontine fibers +http://purl.obolibrary.org/obo/UBERON_0002732,longitudinal pontine fibers,longitudinal pontine fibres +http://purl.obolibrary.org/obo/UBERON_0002732,longitudinal pontine fibers,longitudinal pontine tract +http://purl.obolibrary.org/obo/UBERON_0002733,intralaminar nuclear group,intralaminar nuclear complex +http://purl.obolibrary.org/obo/UBERON_0002733,intralaminar nuclear group,intralaminar nuclear group +http://purl.obolibrary.org/obo/UBERON_0002733,intralaminar nuclear group,intralaminar nuclear group of thalamus +http://purl.obolibrary.org/obo/UBERON_0002733,intralaminar nuclear group,intralaminar nuclei of thalamus +http://purl.obolibrary.org/obo/UBERON_0002733,intralaminar nuclear group,intralaminar thalamic nuclei +http://purl.obolibrary.org/obo/UBERON_0002733,intralaminar nuclear group,nonspecific thalamic system +http://purl.obolibrary.org/obo/UBERON_0002733,intralaminar nuclear group,nuclei intralaminares (thalami) +http://purl.obolibrary.org/obo/UBERON_0002733,intralaminar nuclear group,nuclei intralaminares thalami +http://purl.obolibrary.org/obo/UBERON_0002734,superior temporal sulcus,parallel sulcus +http://purl.obolibrary.org/obo/UBERON_0002734,superior temporal sulcus,sulcus t1 +http://purl.obolibrary.org/obo/UBERON_0002734,superior temporal sulcus,superior temporal fissure +http://purl.obolibrary.org/obo/UBERON_0002735,transverse pontine fibers,fibrae pontis transversae +http://purl.obolibrary.org/obo/UBERON_0002735,transverse pontine fibers,superficial transverse fibers of pons +http://purl.obolibrary.org/obo/UBERON_0002735,transverse pontine fibers,transverse fibers of pons +http://purl.obolibrary.org/obo/UBERON_0002735,transverse pontine fibers,transverse pontine fibers +http://purl.obolibrary.org/obo/UBERON_0002735,transverse pontine fibers,transverse pontine fibres +http://purl.obolibrary.org/obo/UBERON_0002735,transverse pontine fibers,transverse pontine tract +http://purl.obolibrary.org/obo/UBERON_0002736,lateral nuclear group of thalamus,LNG +http://purl.obolibrary.org/obo/UBERON_0002736,lateral nuclear group of thalamus,lateral group of nuclei +http://purl.obolibrary.org/obo/UBERON_0002736,lateral nuclear group of thalamus,lateral group of the dorsal thalamus +http://purl.obolibrary.org/obo/UBERON_0002736,lateral nuclear group of thalamus,lateral nuclear group +http://purl.obolibrary.org/obo/UBERON_0002736,lateral nuclear group of thalamus,lateral nuclear group of dorsal thalamus +http://purl.obolibrary.org/obo/UBERON_0002736,lateral nuclear group of thalamus,lateral nuclear group of thalamus +http://purl.obolibrary.org/obo/UBERON_0002736,lateral nuclear group of thalamus,lateral nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0002736,lateral nuclear group of thalamus,lateral thalamic group +http://purl.obolibrary.org/obo/UBERON_0002736,lateral nuclear group of thalamus,lateral thalamic nuclear group +http://purl.obolibrary.org/obo/UBERON_0002736,lateral nuclear group of thalamus,lateral thalamic nuclear region +http://purl.obolibrary.org/obo/UBERON_0002736,lateral nuclear group of thalamus,lateral thalamic nuclei +http://purl.obolibrary.org/obo/UBERON_0002736,lateral nuclear group of thalamus,lateral thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0002736,lateral nuclear group of thalamus,nuclei laterales thalami +http://purl.obolibrary.org/obo/UBERON_0002736,lateral nuclear group of thalamus,nucleus lateralis thalami +http://purl.obolibrary.org/obo/UBERON_0002737,lateral inferior limiting sulcus, +http://purl.obolibrary.org/obo/UBERON_0002738,isthmus of cingulate gyrus,cingulate gyrus isthmus +http://purl.obolibrary.org/obo/UBERON_0002738,isthmus of cingulate gyrus,isthmus of fornicate gyrus +http://purl.obolibrary.org/obo/UBERON_0002738,isthmus of cingulate gyrus,isthmus of limbic lobe +http://purl.obolibrary.org/obo/UBERON_0002739,medial dorsal nucleus of thalamus,dorsal medial nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0002739,medial dorsal nucleus of thalamus,dorsomedial nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0002739,medial dorsal nucleus of thalamus,medial dorsal nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0002739,medial dorsal nucleus of thalamus,medial dorsal thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0002739,medial dorsal nucleus of thalamus,medial nuclear group of thalamus +http://purl.obolibrary.org/obo/UBERON_0002739,medial dorsal nucleus of thalamus,mediodorsal nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0002739,medial dorsal nucleus of thalamus,mediodorsal thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0002739,medial dorsal nucleus of thalamus,nucleus dorsomedialis thalami +http://purl.obolibrary.org/obo/UBERON_0002740,posterior cingulate gyrus, +http://purl.obolibrary.org/obo/UBERON_0002741,diagonal band of Broca,broca's diagonal band +http://purl.obolibrary.org/obo/UBERON_0002741,diagonal band of Broca,broca's diagonal gyrus +http://purl.obolibrary.org/obo/UBERON_0002741,diagonal band of Broca,diagonal band +http://purl.obolibrary.org/obo/UBERON_0002741,diagonal band of Broca,diagonal band of Broca +http://purl.obolibrary.org/obo/UBERON_0002741,diagonal band of Broca,diagonal gyrus +http://purl.obolibrary.org/obo/UBERON_0002741,diagonal band of Broca,olfactory fasciculus +http://purl.obolibrary.org/obo/UBERON_0002741,diagonal band of Broca,olfactory radiations of Zuckerkandl +http://purl.obolibrary.org/obo/UBERON_0002742,lamina of septum pellucidum,lamina of the septum pellucidum +http://purl.obolibrary.org/obo/UBERON_0002742,lamina of septum pellucidum,lamina septi pellucidi +http://purl.obolibrary.org/obo/UBERON_0002742,lamina of septum pellucidum,laminae septi pellucidi +http://purl.obolibrary.org/obo/UBERON_0002742,lamina of septum pellucidum,septum pellucidum lamina +http://purl.obolibrary.org/obo/UBERON_0002743,basal forebrain,basal forebrain area +http://purl.obolibrary.org/obo/UBERON_0002743,basal forebrain,pars basalis telencephali +http://purl.obolibrary.org/obo/UBERON_0002744,hilum of dentate nucleus,dentate nuclear hilum +http://purl.obolibrary.org/obo/UBERON_0002745,ventral amygdalofugal projection,projectiones ventrales amygdalae +http://purl.obolibrary.org/obo/UBERON_0002745,ventral amygdalofugal projection,ventral amygdalofugal pathway +http://purl.obolibrary.org/obo/UBERON_0002746,intermediate periventricular nucleus,hPe +http://purl.obolibrary.org/obo/UBERON_0002746,intermediate periventricular nucleus,intermediate periventricular nucleus of hypothalamus +http://purl.obolibrary.org/obo/UBERON_0002746,intermediate periventricular nucleus,periventricular nucleus at the tuberal level +http://purl.obolibrary.org/obo/UBERON_0002747,neodentate part of dentate nucleus,neodentate portion of dentate nucleus +http://purl.obolibrary.org/obo/UBERON_0002748,medial lemniscus of medulla,medulla medial lemniscus +http://purl.obolibrary.org/obo/UBERON_0002749,regional part of cerebellar cortex,cerebellar cortical segment +http://purl.obolibrary.org/obo/UBERON_0002749,regional part of cerebellar cortex,segment of cerebellar cortex +http://purl.obolibrary.org/obo/UBERON_0002750,medial longitudinal fasciculus of medulla,medial longitudinal fasciculus of medulla oblongata +http://purl.obolibrary.org/obo/UBERON_0002750,medial longitudinal fasciculus of medulla,medulla medial longitudinal fasciculus +http://purl.obolibrary.org/obo/UBERON_0002751,inferior temporal gyrus,gyrus temporalis inferior +http://purl.obolibrary.org/obo/UBERON_0002751,inferior temporal gyrus,lateral occipitotemporal gyrus (heimer-83) +http://purl.obolibrary.org/obo/UBERON_0002752,olivocerebellar tract, +http://purl.obolibrary.org/obo/UBERON_0002753,posterior spinocerebellar tract,dorsal spinocerebellar tract +http://purl.obolibrary.org/obo/UBERON_0002753,posterior spinocerebellar tract,dorsal spinocerebellar tract of the medulla +http://purl.obolibrary.org/obo/UBERON_0002753,posterior spinocerebellar tract,flechsig's tract +http://purl.obolibrary.org/obo/UBERON_0002754,predorsal bundle,predorsal bundle of Edinger +http://purl.obolibrary.org/obo/UBERON_0002754,predorsal bundle,predorsal fasciculus +http://purl.obolibrary.org/obo/UBERON_0002754,predorsal bundle,tectospinal fibers +http://purl.obolibrary.org/obo/UBERON_0002755,pyramidal decussation,corticospinal decussation +http://purl.obolibrary.org/obo/UBERON_0002755,pyramidal decussation,decussatio pyramidum +http://purl.obolibrary.org/obo/UBERON_0002755,pyramidal decussation,decussatio pyramidum medullae oblongatae +http://purl.obolibrary.org/obo/UBERON_0002755,pyramidal decussation,decussation of corticospinal tract +http://purl.obolibrary.org/obo/UBERON_0002755,pyramidal decussation,decussation of pyramidal tract fibers +http://purl.obolibrary.org/obo/UBERON_0002755,pyramidal decussation,decussation of pyramids +http://purl.obolibrary.org/obo/UBERON_0002755,pyramidal decussation,decussation of pyramids of medulla +http://purl.obolibrary.org/obo/UBERON_0002755,pyramidal decussation,decussation of the pyramidal tract +http://purl.obolibrary.org/obo/UBERON_0002755,pyramidal decussation,motor decussation +http://purl.obolibrary.org/obo/UBERON_0002755,pyramidal decussation,motor decussation of medulla +http://purl.obolibrary.org/obo/UBERON_0002755,pyramidal decussation,pyramidal decussation (pourfour du petit) +http://purl.obolibrary.org/obo/UBERON_0002755,pyramidal decussation,pyramidal tract decussation +http://purl.obolibrary.org/obo/UBERON_0002756,anterior cingulate gyrus, +http://purl.obolibrary.org/obo/UBERON_0002758,dorsal nucleus of medial geniculate body,dorsal nucleus of medial geniculate complex +http://purl.obolibrary.org/obo/UBERON_0002758,dorsal nucleus of medial geniculate body,"medial geniculate complex, dorsal part" +http://purl.obolibrary.org/obo/UBERON_0002758,dorsal nucleus of medial geniculate body,"medial geniculate nucleus, dorsal part" +http://purl.obolibrary.org/obo/UBERON_0002758,dorsal nucleus of medial geniculate body,"nucleus corporis geniculati medialis, pars dorsalis" +http://purl.obolibrary.org/obo/UBERON_0002758,dorsal nucleus of medial geniculate body,nucleus dorsalis corporis geniculati medialis +http://purl.obolibrary.org/obo/UBERON_0002758,dorsal nucleus of medial geniculate body,nucleus geniculatus medialis fibrosus (hassler) +http://purl.obolibrary.org/obo/UBERON_0002758,dorsal nucleus of medial geniculate body,nucleus geniculatus medialis pars dorsalis +http://purl.obolibrary.org/obo/UBERON_0002759,magnocellular nucleus of medial geniculate body,"corpus geniculatus mediale, pars magnocelluaris" +http://purl.obolibrary.org/obo/UBERON_0002759,magnocellular nucleus of medial geniculate body,magnocelluar nucleus of medial geniculate complex +http://purl.obolibrary.org/obo/UBERON_0002759,magnocellular nucleus of medial geniculate body,medial division of medial geniculate body +http://purl.obolibrary.org/obo/UBERON_0002759,magnocellular nucleus of medial geniculate body,"medial geniculate complex, medial part" +http://purl.obolibrary.org/obo/UBERON_0002759,magnocellular nucleus of medial geniculate body,"medial geniculate nucleus, medial part" +http://purl.obolibrary.org/obo/UBERON_0002759,magnocellular nucleus of medial geniculate body,medial magnocellular nucleus of medial geniculate body +http://purl.obolibrary.org/obo/UBERON_0002759,magnocellular nucleus of medial geniculate body,medial nucleus of medial geniculate body +http://purl.obolibrary.org/obo/UBERON_0002759,magnocellular nucleus of medial geniculate body,"nucleus corporis geniculati medialis, pars magnocelluaris" +http://purl.obolibrary.org/obo/UBERON_0002759,magnocellular nucleus of medial geniculate body,nucleus geniculatus medialis magnocelluaris (hassler) +http://purl.obolibrary.org/obo/UBERON_0002759,magnocellular nucleus of medial geniculate body,"nucleus geniculatus medialis, pars magnocelluaris" +http://purl.obolibrary.org/obo/UBERON_0002760,ventral corticospinal tract,anterior corticospinal tract +http://purl.obolibrary.org/obo/UBERON_0002760,ventral corticospinal tract,anterior pyramidal tract +http://purl.obolibrary.org/obo/UBERON_0002760,ventral corticospinal tract,anterior tract of turck +http://purl.obolibrary.org/obo/UBERON_0002760,ventral corticospinal tract,bundle of Turck +http://purl.obolibrary.org/obo/UBERON_0002760,ventral corticospinal tract,column of Turck +http://purl.obolibrary.org/obo/UBERON_0002760,ventral corticospinal tract,"corticospinal tract, uncrossed" +http://purl.obolibrary.org/obo/UBERON_0002761,inferior frontal sulcus,inferior frontal fissure +http://purl.obolibrary.org/obo/UBERON_0002761,inferior frontal sulcus,sulcus f2 +http://purl.obolibrary.org/obo/UBERON_0002762,internal medullary lamina of thalamus,envelope (involucrum medial) (Hassler) +http://purl.obolibrary.org/obo/UBERON_0002762,internal medullary lamina of thalamus,internal medullary lamina +http://purl.obolibrary.org/obo/UBERON_0002762,internal medullary lamina of thalamus,internal medullary lamina of thalamus +http://purl.obolibrary.org/obo/UBERON_0002762,internal medullary lamina of thalamus,lamina medullaris interna +http://purl.obolibrary.org/obo/UBERON_0002762,internal medullary lamina of thalamus,lamina medullaris interna thalami +http://purl.obolibrary.org/obo/UBERON_0002762,internal medullary lamina of thalamus,lamina medullaris medialis thalami +http://purl.obolibrary.org/obo/UBERON_0002762,internal medullary lamina of thalamus,lamina medullaris thalami interna +http://purl.obolibrary.org/obo/UBERON_0002763,accessory medullary lamina of globus pallidus,accessory medullar lamina of pallidum +http://purl.obolibrary.org/obo/UBERON_0002763,accessory medullary lamina of globus pallidus,accessory medullary lamina +http://purl.obolibrary.org/obo/UBERON_0002763,accessory medullary lamina of globus pallidus,accessory medullary lamina of corpus striatum +http://purl.obolibrary.org/obo/UBERON_0002763,accessory medullary lamina of globus pallidus,accessory medullary lamina of globus pallidus +http://purl.obolibrary.org/obo/UBERON_0002763,accessory medullary lamina of globus pallidus,accessory medullary lamina pallidus +http://purl.obolibrary.org/obo/UBERON_0002763,accessory medullary lamina of globus pallidus,incomplete medullary lamina of globus pallidus +http://purl.obolibrary.org/obo/UBERON_0002763,accessory medullary lamina of globus pallidus,lamina medullaris accessoria corporis striati +http://purl.obolibrary.org/obo/UBERON_0002764,inferior precentral sulcus,inferior part of precentral fissure +http://purl.obolibrary.org/obo/UBERON_0002764,inferior precentral sulcus,sulcus praecentralis inferior +http://purl.obolibrary.org/obo/UBERON_0002764,inferior precentral sulcus,sulcus precentralis inferior +http://purl.obolibrary.org/obo/UBERON_0002765,lateral medullary lamina of globus pallidus,external medulary lamina of globus pallidus +http://purl.obolibrary.org/obo/UBERON_0002765,lateral medullary lamina of globus pallidus,external medulary lamina of lentiform nucleus +http://purl.obolibrary.org/obo/UBERON_0002765,lateral medullary lamina of globus pallidus,external medullary lamina of corpus striatum +http://purl.obolibrary.org/obo/UBERON_0002765,lateral medullary lamina of globus pallidus,external medullary lamina of globus pallidus +http://purl.obolibrary.org/obo/UBERON_0002765,lateral medullary lamina of globus pallidus,external medullary lamina of lentiform nucleus +http://purl.obolibrary.org/obo/UBERON_0002765,lateral medullary lamina of globus pallidus,lamina medullaris externa corporis striati +http://purl.obolibrary.org/obo/UBERON_0002765,lateral medullary lamina of globus pallidus,lamina medullaris lateralis corporis striati +http://purl.obolibrary.org/obo/UBERON_0002765,lateral medullary lamina of globus pallidus,lateral medulary lamina of globus pallidus +http://purl.obolibrary.org/obo/UBERON_0002765,lateral medullary lamina of globus pallidus,lateral medulary stria +http://purl.obolibrary.org/obo/UBERON_0002765,lateral medullary lamina of globus pallidus,lateral medullary lamina +http://purl.obolibrary.org/obo/UBERON_0002765,lateral medullary lamina of globus pallidus,lateral medullary lamina of corpus striatum +http://purl.obolibrary.org/obo/UBERON_0002765,lateral medullary lamina of globus pallidus,lateral medullary lamina of globus pallidus +http://purl.obolibrary.org/obo/UBERON_0002765,lateral medullary lamina of globus pallidus,lateral medullary lamina of pallidum +http://purl.obolibrary.org/obo/UBERON_0002765,lateral medullary lamina of globus pallidus,lateral medullary stria +http://purl.obolibrary.org/obo/UBERON_0002765,lateral medullary lamina of globus pallidus,medulary lamina of pallidum +http://purl.obolibrary.org/obo/UBERON_0002765,lateral medullary lamina of globus pallidus,outer medulary lamina +http://purl.obolibrary.org/obo/UBERON_0002765,lateral medullary lamina of globus pallidus,outer medullary lamina +http://purl.obolibrary.org/obo/UBERON_0002766,fusiform gyrus,gyrus occipitotemporalis lateralis +http://purl.obolibrary.org/obo/UBERON_0002766,fusiform gyrus,lateral occipitotemporal gyrus +http://purl.obolibrary.org/obo/UBERON_0002766,fusiform gyrus,medial occipitotemporal gyrus-1 (heimer) +http://purl.obolibrary.org/obo/UBERON_0002766,fusiform gyrus,occipitotemporal gyrus +http://purl.obolibrary.org/obo/UBERON_0002767,inferior rostral sulcus,sulcus rostralis inferior +http://purl.obolibrary.org/obo/UBERON_0002768,vestibulospinal tract,vestibulo-spinal tract +http://purl.obolibrary.org/obo/UBERON_0002769,superior temporal gyrus,gyrus temporalis superior +http://purl.obolibrary.org/obo/UBERON_0002770,posterior hypothalamic region,PHR +http://purl.obolibrary.org/obo/UBERON_0002770,posterior hypothalamic region,hypothalamus posterior +http://purl.obolibrary.org/obo/UBERON_0002770,posterior hypothalamic region,mammillary level of hypothalamus +http://purl.obolibrary.org/obo/UBERON_0002770,posterior hypothalamic region,mammillary region +http://purl.obolibrary.org/obo/UBERON_0002770,posterior hypothalamic region,posterior hypothalamus +http://purl.obolibrary.org/obo/UBERON_0002770,posterior hypothalamic region,regio hypothalamica posterior +http://purl.obolibrary.org/obo/UBERON_0002771,middle temporal gyrus,gyrus temporalis medius +http://purl.obolibrary.org/obo/UBERON_0002771,middle temporal gyrus,intermediate temporal gyrus +http://purl.obolibrary.org/obo/UBERON_0002772,olfactory sulcus,olfactory groove +http://purl.obolibrary.org/obo/UBERON_0002772,olfactory sulcus,sulcus olfactorius +http://purl.obolibrary.org/obo/UBERON_0002773,anterior transverse temporal gyrus,anterior transverse convolution of heschl +http://purl.obolibrary.org/obo/UBERON_0002773,anterior transverse temporal gyrus,anterior transverse temporal convolution of heschl +http://purl.obolibrary.org/obo/UBERON_0002773,anterior transverse temporal gyrus,first transverse gyrus of Heschl +http://purl.obolibrary.org/obo/UBERON_0002773,anterior transverse temporal gyrus,great transverse gyrus of Heschl +http://purl.obolibrary.org/obo/UBERON_0002774,posterior transverse temporal gyrus,posterior transverse convolution of heschl +http://purl.obolibrary.org/obo/UBERON_0002774,posterior transverse temporal gyrus,posterior transverse temporal convolution of heschl +http://purl.obolibrary.org/obo/UBERON_0002775,olivocochlear bundle,bundle of Rasmussen +http://purl.obolibrary.org/obo/UBERON_0002775,olivocochlear bundle,efferent cochlear bundle +http://purl.obolibrary.org/obo/UBERON_0002775,olivocochlear bundle,efferent cochlear pathway +http://purl.obolibrary.org/obo/UBERON_0002775,olivocochlear bundle,olivocochlear bundle of rasmussen +http://purl.obolibrary.org/obo/UBERON_0002775,olivocochlear bundle,olivocochlear tract +http://purl.obolibrary.org/obo/UBERON_0002775,olivocochlear bundle,tractus olivocochlearis +http://purl.obolibrary.org/obo/UBERON_0002776,ventral nuclear group,VNG +http://purl.obolibrary.org/obo/UBERON_0002776,ventral nuclear group,"dorsal thalamus, ventral group" +http://purl.obolibrary.org/obo/UBERON_0002776,ventral nuclear group,nuclei ventrales thalami +http://purl.obolibrary.org/obo/UBERON_0002776,ventral nuclear group,ventral dorsal thalamic nuclear group +http://purl.obolibrary.org/obo/UBERON_0002776,ventral nuclear group,ventral group of dorsal thalamus +http://purl.obolibrary.org/obo/UBERON_0002776,ventral nuclear group,ventral group of the dorsal thalamus +http://purl.obolibrary.org/obo/UBERON_0002776,ventral nuclear group,ventral nuclear group +http://purl.obolibrary.org/obo/UBERON_0002776,ventral nuclear group,ventral nuclear group of thalamus +http://purl.obolibrary.org/obo/UBERON_0002776,ventral nuclear group,ventral nuclear mass +http://purl.obolibrary.org/obo/UBERON_0002776,ventral nuclear group,ventral nuclei of thalamus +http://purl.obolibrary.org/obo/UBERON_0002776,ventral nuclear group,ventral thalamus nucleus +http://purl.obolibrary.org/obo/UBERON_0002776,ventral nuclear group,ventral tier thalamic nuclei +http://purl.obolibrary.org/obo/UBERON_0002778,ventral pallidum,fibrae nervi vagi +http://purl.obolibrary.org/obo/UBERON_0002778,ventral pallidum,globus pallidus ventral part +http://purl.obolibrary.org/obo/UBERON_0002778,ventral pallidum,pallidum ventral region +http://purl.obolibrary.org/obo/UBERON_0002778,ventral pallidum,ventral globus pallidus +http://purl.obolibrary.org/obo/UBERON_0002778,ventral pallidum,ventral pallidum +http://purl.obolibrary.org/obo/UBERON_0002779,lateral superior olivary nucleus,LSON +http://purl.obolibrary.org/obo/UBERON_0002779,lateral superior olivary nucleus,accessory olivary nucleus +http://purl.obolibrary.org/obo/UBERON_0002779,lateral superior olivary nucleus,accessory superior olivary nucleus +http://purl.obolibrary.org/obo/UBERON_0002779,lateral superior olivary nucleus,accessory superior olive +http://purl.obolibrary.org/obo/UBERON_0002779,lateral superior olivary nucleus,inferior olivary complex dorsalaccessory nucleus +http://purl.obolibrary.org/obo/UBERON_0002779,lateral superior olivary nucleus,lateral superior olive +http://purl.obolibrary.org/obo/UBERON_0002779,lateral superior olivary nucleus,nucleus olivaris superior lateralis +http://purl.obolibrary.org/obo/UBERON_0002779,lateral superior olivary nucleus,"superior olivary complex, lateral part" +http://purl.obolibrary.org/obo/UBERON_0002779,lateral superior olivary nucleus,"superior olivary nucleus, lateral part" +http://purl.obolibrary.org/obo/UBERON_0002779,lateral superior olivary nucleus,superior olive lateral part +http://purl.obolibrary.org/obo/UBERON_0002781,caudal part of ventral posterolateral nucleus of thalamus,caudal part of ventral posterolateral nucleus +http://purl.obolibrary.org/obo/UBERON_0002781,caudal part of ventral posterolateral nucleus of thalamus,ventral posterior lateral nucleus (ilinsky) +http://purl.obolibrary.org/obo/UBERON_0002781,caudal part of ventral posterolateral nucleus of thalamus,"ventral posterolateral nucleus, caudal part" +http://purl.obolibrary.org/obo/UBERON_0002781,caudal part of ventral posterolateral nucleus of thalamus,"ventral posterolateral thalamic nucleus, caudal part" +http://purl.obolibrary.org/obo/UBERON_0002782,medial superior olivary nucleus,MSO +http://purl.obolibrary.org/obo/UBERON_0002782,medial superior olivary nucleus,chief nucleus of superior olive +http://purl.obolibrary.org/obo/UBERON_0002782,medial superior olivary nucleus,chief superior olivary nucleus +http://purl.obolibrary.org/obo/UBERON_0002782,medial superior olivary nucleus,main superior olivary nucleus +http://purl.obolibrary.org/obo/UBERON_0002782,medial superior olivary nucleus,medial superior olive +http://purl.obolibrary.org/obo/UBERON_0002782,medial superior olivary nucleus,nucleus laminaris +http://purl.obolibrary.org/obo/UBERON_0002782,medial superior olivary nucleus,nucleus olivaris superior medialis +http://purl.obolibrary.org/obo/UBERON_0002782,medial superior olivary nucleus,principal superior olivary nucleus +http://purl.obolibrary.org/obo/UBERON_0002782,medial superior olivary nucleus,"superior olivary complex, medial part" +http://purl.obolibrary.org/obo/UBERON_0002782,medial superior olivary nucleus,"superior olivary nucleus, medial part" +http://purl.obolibrary.org/obo/UBERON_0002782,medial superior olivary nucleus,superior olive medial part +http://purl.obolibrary.org/obo/UBERON_0002782,medial superior olivary nucleus,superior paraolivary nucleus +http://purl.obolibrary.org/obo/UBERON_0002782,medial superior olivary nucleus,superior parolivary nucleus +http://purl.obolibrary.org/obo/UBERON_0002783,central tegmental tract of pons, +http://purl.obolibrary.org/obo/UBERON_0002786,root of abducens nerve,abducens nerve fibers +http://purl.obolibrary.org/obo/UBERON_0002786,root of abducens nerve,abducens nerve tract +http://purl.obolibrary.org/obo/UBERON_0002786,root of abducens nerve,central part of abducens nerve +http://purl.obolibrary.org/obo/UBERON_0002786,root of abducens nerve,root of abducens nerve +http://purl.obolibrary.org/obo/UBERON_0002787,decussation of trochlear nerve,decussatio fibrarum nervorum trochlearium +http://purl.obolibrary.org/obo/UBERON_0002787,decussation of trochlear nerve,decussation of trochlear nerve (IV) +http://purl.obolibrary.org/obo/UBERON_0002787,decussation of trochlear nerve,decussation of trochlear nerve fibers +http://purl.obolibrary.org/obo/UBERON_0002787,decussation of trochlear nerve,trochlear neural decussation +http://purl.obolibrary.org/obo/UBERON_0002788,anterior nuclear group,anterior nuclear group +http://purl.obolibrary.org/obo/UBERON_0002788,anterior nuclear group,anterior nuclear group of thalamus +http://purl.obolibrary.org/obo/UBERON_0002788,anterior nuclear group,anterior nuclei of thalamus +http://purl.obolibrary.org/obo/UBERON_0002788,anterior nuclear group,anterior nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0002788,anterior nuclear group,anterior thalamic group +http://purl.obolibrary.org/obo/UBERON_0002788,anterior nuclear group,anterior thalamic nuclei +http://purl.obolibrary.org/obo/UBERON_0002788,anterior nuclear group,anterior thalamus +http://purl.obolibrary.org/obo/UBERON_0002788,anterior nuclear group,nuclei anterior thalami +http://purl.obolibrary.org/obo/UBERON_0002788,anterior nuclear group,nuclei anteriores (thalami) +http://purl.obolibrary.org/obo/UBERON_0002788,anterior nuclear group,nuclei anteriores thalami +http://purl.obolibrary.org/obo/UBERON_0002788,anterior nuclear group,nuclei thalamicus anterior +http://purl.obolibrary.org/obo/UBERON_0002790,dorsal acoustic stria,dorsal acoustic stria (Monakow) +http://purl.obolibrary.org/obo/UBERON_0002790,dorsal acoustic stria,posterior acoustic stria +http://purl.obolibrary.org/obo/UBERON_0002790,dorsal acoustic stria,stria cochlearis posterior +http://purl.obolibrary.org/obo/UBERON_0002790,dorsal acoustic stria,striae acusticae dorsalis +http://purl.obolibrary.org/obo/UBERON_0002792,lumbar spinal cord,lumbar segment of spinal cord +http://purl.obolibrary.org/obo/UBERON_0002792,lumbar spinal cord,lumbar segments of spinal cord [1-5] +http://purl.obolibrary.org/obo/UBERON_0002792,lumbar spinal cord,lumbar spinal cord +http://purl.obolibrary.org/obo/UBERON_0002792,lumbar spinal cord,pars lumbalis medullae spinalis +http://purl.obolibrary.org/obo/UBERON_0002792,lumbar spinal cord,segmenta lumbalia medullae spinalis [1-5] +http://purl.obolibrary.org/obo/UBERON_0002792,lumbar spinal cord,spinal cord lumbar segment +http://purl.obolibrary.org/obo/UBERON_0002793,dorsal longitudinal fasciculus of pons, +http://purl.obolibrary.org/obo/UBERON_0002794,medial longitudinal fasciculus of pons,medial longitudinal fasciculus of pons of varolius +http://purl.obolibrary.org/obo/UBERON_0002794,medial longitudinal fasciculus of pons,pons medial longitudinal fasciculus +http://purl.obolibrary.org/obo/UBERON_0002794,medial longitudinal fasciculus of pons,pons of varolius medial longitudinal fasciculus +http://purl.obolibrary.org/obo/UBERON_0002795,frontal pole,frontal pole +http://purl.obolibrary.org/obo/UBERON_0002795,frontal pole,polus frontalis +http://purl.obolibrary.org/obo/UBERON_0002796,motor root of trigeminal nerve,motor branch of trigeminal nerve +http://purl.obolibrary.org/obo/UBERON_0002796,motor root of trigeminal nerve,motor root of nervus v +http://purl.obolibrary.org/obo/UBERON_0002796,motor root of trigeminal nerve,radix motoria (Nervus trigeminus [V]) +http://purl.obolibrary.org/obo/UBERON_0002796,motor root of trigeminal nerve,radix motoria nervus trigemini +http://purl.obolibrary.org/obo/UBERON_0002797,dorsal trigeminal tract,dorsal ascending trigeminal tract +http://purl.obolibrary.org/obo/UBERON_0002797,dorsal trigeminal tract,dorsal division of trigeminal lemniscus +http://purl.obolibrary.org/obo/UBERON_0002797,dorsal trigeminal tract,dorsal secondary ascending tract of v +http://purl.obolibrary.org/obo/UBERON_0002797,dorsal trigeminal tract,dorsal secondary tract of v +http://purl.obolibrary.org/obo/UBERON_0002797,dorsal trigeminal tract,dorsal trigeminal lemniscus +http://purl.obolibrary.org/obo/UBERON_0002797,dorsal trigeminal tract,dorsal trigeminal pathway +http://purl.obolibrary.org/obo/UBERON_0002797,dorsal trigeminal tract,dorsal trigeminothalamic tract +http://purl.obolibrary.org/obo/UBERON_0002797,dorsal trigeminal tract,posterior trigeminothalamic tract +http://purl.obolibrary.org/obo/UBERON_0002797,dorsal trigeminal tract,reticulothalamic tract +http://purl.obolibrary.org/obo/UBERON_0002797,dorsal trigeminal tract,tractus trigeminothalamicus posterior +http://purl.obolibrary.org/obo/UBERON_0002797,dorsal trigeminal tract,uncrossed dorsal trigeminothalamic tract +http://purl.obolibrary.org/obo/UBERON_0002798,spinothalamic tract of pons,pons of varolius spinothalamic tract +http://purl.obolibrary.org/obo/UBERON_0002798,spinothalamic tract of pons,pons of varolius spinothalamic tract of medulla +http://purl.obolibrary.org/obo/UBERON_0002798,spinothalamic tract of pons,pons spinothalamic tract +http://purl.obolibrary.org/obo/UBERON_0002798,spinothalamic tract of pons,pons spinothalamic tract of medulla +http://purl.obolibrary.org/obo/UBERON_0002798,spinothalamic tract of pons,spinothalamic tract of medulla of pons +http://purl.obolibrary.org/obo/UBERON_0002798,spinothalamic tract of pons,spinothalamic tract of medulla of pons of varolius +http://purl.obolibrary.org/obo/UBERON_0002798,spinothalamic tract of pons,spinothalamic tract of pons of varolius +http://purl.obolibrary.org/obo/UBERON_0002799,fronto-orbital sulcus,fronto-orbital dimple +http://purl.obolibrary.org/obo/UBERON_0002799,fronto-orbital sulcus,orbito-frontal sulcus +http://purl.obolibrary.org/obo/UBERON_0002799,fronto-orbital sulcus,orbitofrontal sulcus +http://purl.obolibrary.org/obo/UBERON_0002800,spinal trigeminal tract of pons, +http://purl.obolibrary.org/obo/UBERON_0002801,stratum zonale of thalamus,neuraxis stratum +http://purl.obolibrary.org/obo/UBERON_0002801,stratum zonale of thalamus,stratum zonale thalami +http://purl.obolibrary.org/obo/UBERON_0002802,left parietal lobe, +http://purl.obolibrary.org/obo/UBERON_0002803,right parietal lobe, +http://purl.obolibrary.org/obo/UBERON_0002804,left limbic lobe, +http://purl.obolibrary.org/obo/UBERON_0002805,right limbic lobe, +http://purl.obolibrary.org/obo/UBERON_0002806,left occipital lobe, +http://purl.obolibrary.org/obo/UBERON_0002807,right occipital lobe, +http://purl.obolibrary.org/obo/UBERON_0002808,left temporal lobe, +http://purl.obolibrary.org/obo/UBERON_0002809,right temporal lobe, +http://purl.obolibrary.org/obo/UBERON_0002810,right frontal lobe, +http://purl.obolibrary.org/obo/UBERON_0002811,left frontal lobe, +http://purl.obolibrary.org/obo/UBERON_0002812,left cerebral hemisphere,left hemisphere +http://purl.obolibrary.org/obo/UBERON_0002813,right cerebral hemisphere,right hemisphere +http://purl.obolibrary.org/obo/UBERON_0002814,posterior superior fissure of cerebellum,fissura post clivalis +http://purl.obolibrary.org/obo/UBERON_0002814,posterior superior fissure of cerebellum,post-clival fissure +http://purl.obolibrary.org/obo/UBERON_0002814,posterior superior fissure of cerebellum,postclival fissure +http://purl.obolibrary.org/obo/UBERON_0002814,posterior superior fissure of cerebellum,posterior superior fissure of cerebellum +http://purl.obolibrary.org/obo/UBERON_0002814,posterior superior fissure of cerebellum,postlunate fissure +http://purl.obolibrary.org/obo/UBERON_0002814,posterior superior fissure of cerebellum,superior posterior cerebellar fissure +http://purl.obolibrary.org/obo/UBERON_0002815,horizontal fissure of cerebellum,fissura horizontalis cerebelli +http://purl.obolibrary.org/obo/UBERON_0002815,horizontal fissure of cerebellum,fissura intercruralis +http://purl.obolibrary.org/obo/UBERON_0002815,horizontal fissure of cerebellum,fissura intercruralis cerebelli +http://purl.obolibrary.org/obo/UBERON_0002815,horizontal fissure of cerebellum,great horizontal fissure +http://purl.obolibrary.org/obo/UBERON_0002815,horizontal fissure of cerebellum,horizontal sulcus +http://purl.obolibrary.org/obo/UBERON_0002815,horizontal fissure of cerebellum,intercrural fissure of cerebellum +http://purl.obolibrary.org/obo/UBERON_0002816,prepyramidal fissure of cerebellum,fissura inferior anterior +http://purl.obolibrary.org/obo/UBERON_0002816,prepyramidal fissure of cerebellum,fissura parafloccularis +http://purl.obolibrary.org/obo/UBERON_0002816,prepyramidal fissure of cerebellum,fissura praepyramidalis +http://purl.obolibrary.org/obo/UBERON_0002816,prepyramidal fissure of cerebellum,fissura prebiventralis cerebelli +http://purl.obolibrary.org/obo/UBERON_0002816,prepyramidal fissure of cerebellum,fissura prepyramidalis +http://purl.obolibrary.org/obo/UBERON_0002816,prepyramidal fissure of cerebellum,fissura prepyramidalis cerebelli +http://purl.obolibrary.org/obo/UBERON_0002816,prepyramidal fissure of cerebellum,prebiventral fissure of cerebellum +http://purl.obolibrary.org/obo/UBERON_0002816,prepyramidal fissure of cerebellum,prepyramidal fissure of cerebellum +http://purl.obolibrary.org/obo/UBERON_0002816,prepyramidal fissure of cerebellum,prepyramidal sulcus +http://purl.obolibrary.org/obo/UBERON_0002817,secondary fissure of cerebellum,fissura postpyramidalis cerebelli +http://purl.obolibrary.org/obo/UBERON_0002817,secondary fissure of cerebellum,post-pyramidal fissure of cerebellum +http://purl.obolibrary.org/obo/UBERON_0002817,secondary fissure of cerebellum,postpyramidal fissure +http://purl.obolibrary.org/obo/UBERON_0002817,secondary fissure of cerebellum,secondary fissure of cerebellum +http://purl.obolibrary.org/obo/UBERON_0002818,posterolateral fissure of cerebellum,dorsolateral fissure of cerebellum +http://purl.obolibrary.org/obo/UBERON_0002818,posterolateral fissure of cerebellum,posterolateral fissure of cerebellum +http://purl.obolibrary.org/obo/UBERON_0002818,posterolateral fissure of cerebellum,prenodular fissure +http://purl.obolibrary.org/obo/UBERON_0002818,posterolateral fissure of cerebellum,prenodular sulcus +http://purl.obolibrary.org/obo/UBERON_0002818,posterolateral fissure of cerebellum,uvulonodular fissure +http://purl.obolibrary.org/obo/UBERON_0002819,apex of cochlea,apex of cochlear canal +http://purl.obolibrary.org/obo/UBERON_0002819,apex of cochlea,apex of the cochlear canal +http://purl.obolibrary.org/obo/UBERON_0002819,apex of cochlea,cochlea apex +http://purl.obolibrary.org/obo/UBERON_0002819,apex of cochlea,cupula of cochlea +http://purl.obolibrary.org/obo/UBERON_0002819,apex of cochlea,cupula of the cochlear canal +http://purl.obolibrary.org/obo/UBERON_0002820,zona arcuata of basilar membrane of cochlea,arcuate zone of basilar membrane +http://purl.obolibrary.org/obo/UBERON_0002820,zona arcuata of basilar membrane of cochlea,arcuate zone of organ of corti +http://purl.obolibrary.org/obo/UBERON_0002820,zona arcuata of basilar membrane of cochlea,"basilar membrane of cochlea, zona arcuata" +http://purl.obolibrary.org/obo/UBERON_0002822,macula lutea proper, +http://purl.obolibrary.org/obo/UBERON_0002823,clivus of fovea centralis,clivus of macula lutea +http://purl.obolibrary.org/obo/UBERON_0002823,clivus of fovea centralis,fovea centralis clivus +http://purl.obolibrary.org/obo/UBERON_0002824,vestibular ganglion,Scarpa's ganglion +http://purl.obolibrary.org/obo/UBERON_0002824,vestibular ganglion,"nucleus nervi oculomotorii, pars medialis" +http://purl.obolibrary.org/obo/UBERON_0002824,vestibular ganglion,vestibular part of vestibulocochlear ganglion +http://purl.obolibrary.org/obo/UBERON_0002824,vestibular ganglion,vestibulocochlear VIII ganglion vestibular component +http://purl.obolibrary.org/obo/UBERON_0002824,vestibular ganglion,vestibulocochlear ganglion vestibular component +http://purl.obolibrary.org/obo/UBERON_0002825,superior part of vestibular ganglion,pars superior ganglionis vestibularis +http://purl.obolibrary.org/obo/UBERON_0002825,superior part of vestibular ganglion,vestibular ganglion superior part +http://purl.obolibrary.org/obo/UBERON_0002826,inferior part of vestibular ganglion,pars inferior ganglionis vestibularis +http://purl.obolibrary.org/obo/UBERON_0002826,inferior part of vestibular ganglion,vestibular ganglion inferior part +http://purl.obolibrary.org/obo/UBERON_0002827,vestibulocochlear ganglion,SAG +http://purl.obolibrary.org/obo/UBERON_0002827,vestibulocochlear ganglion,acoustic ganglion +http://purl.obolibrary.org/obo/UBERON_0002827,vestibulocochlear ganglion,acoustic ganglion VIII +http://purl.obolibrary.org/obo/UBERON_0002827,vestibulocochlear ganglion,acoustico-vestibular VIII ganglion +http://purl.obolibrary.org/obo/UBERON_0002827,vestibulocochlear ganglion,auditory ganglion +http://purl.obolibrary.org/obo/UBERON_0002827,vestibulocochlear ganglion,gVIII +http://purl.obolibrary.org/obo/UBERON_0002827,vestibulocochlear ganglion,ganglion VIII +http://purl.obolibrary.org/obo/UBERON_0002827,vestibulocochlear ganglion,nucleus nervi oculomotorii ventrolateralis +http://purl.obolibrary.org/obo/UBERON_0002827,vestibulocochlear ganglion,"nucleus nervi oculomotorii, pars ventralis" +http://purl.obolibrary.org/obo/UBERON_0002827,vestibulocochlear ganglion,statoacoustic (VIII) ganglion +http://purl.obolibrary.org/obo/UBERON_0002827,vestibulocochlear ganglion,statoacoustic VIII ganglion +http://purl.obolibrary.org/obo/UBERON_0002827,vestibulocochlear ganglion,statoacoustic ganglia +http://purl.obolibrary.org/obo/UBERON_0002827,vestibulocochlear ganglion,statoacoustic ganglion +http://purl.obolibrary.org/obo/UBERON_0002827,vestibulocochlear ganglion,vestibulocochlear VIII ganglion +http://purl.obolibrary.org/obo/UBERON_0002827,vestibulocochlear ganglion,vestibulocochlear ganglia +http://purl.obolibrary.org/obo/UBERON_0002828,ventral cochlear nucleus,VCo +http://purl.obolibrary.org/obo/UBERON_0002828,ventral cochlear nucleus,accessory cochlear nucleus +http://purl.obolibrary.org/obo/UBERON_0002828,ventral cochlear nucleus,anterior cochlear nucleus +http://purl.obolibrary.org/obo/UBERON_0002828,ventral cochlear nucleus,c1281209 +http://purl.obolibrary.org/obo/UBERON_0002828,ventral cochlear nucleus,nucleus acustici accessorici +http://purl.obolibrary.org/obo/UBERON_0002828,ventral cochlear nucleus,nucleus cochlearis anterior +http://purl.obolibrary.org/obo/UBERON_0002828,ventral cochlear nucleus,nucleus cochlearis ventralis +http://purl.obolibrary.org/obo/UBERON_0002828,ventral cochlear nucleus,ventral cochlear nuclei +http://purl.obolibrary.org/obo/UBERON_0002828,ventral cochlear nucleus,ventral cochlear nucleus +http://purl.obolibrary.org/obo/UBERON_0002828,ventral cochlear nucleus,ventral coclear nucleus +http://purl.obolibrary.org/obo/UBERON_0002828,ventral cochlear nucleus,ventral division of cochlear nucleus +http://purl.obolibrary.org/obo/UBERON_0002829,dorsal cochlear nucleus,DCo +http://purl.obolibrary.org/obo/UBERON_0002829,dorsal cochlear nucleus,dorsal cochlear nucleus +http://purl.obolibrary.org/obo/UBERON_0002829,dorsal cochlear nucleus,dorsal coclear nucleus +http://purl.obolibrary.org/obo/UBERON_0002829,dorsal cochlear nucleus,dorsal division of cochlear nucleus +http://purl.obolibrary.org/obo/UBERON_0002829,dorsal cochlear nucleus,nucleus cochlearis dorsalis +http://purl.obolibrary.org/obo/UBERON_0002829,dorsal cochlear nucleus,nucleus cochlearis posterior +http://purl.obolibrary.org/obo/UBERON_0002829,dorsal cochlear nucleus,posterior cochlear nucleus +http://purl.obolibrary.org/obo/UBERON_0002829,dorsal cochlear nucleus,tuberculum acousticum +http://purl.obolibrary.org/obo/UBERON_0002830,anteroventral cochlear nucleus,anterior part of anterior cochlear nucleus +http://purl.obolibrary.org/obo/UBERON_0002830,anteroventral cochlear nucleus,anteroventral auditory nucleus +http://purl.obolibrary.org/obo/UBERON_0002830,anteroventral cochlear nucleus,nucleus magnocellularis +http://purl.obolibrary.org/obo/UBERON_0002831,posteroventral cochlear nucleus,posterior part of anterior cochlear nucleus +http://purl.obolibrary.org/obo/UBERON_0002832,ventral nucleus of trapezoid body,VNTB +http://purl.obolibrary.org/obo/UBERON_0002832,ventral nucleus of trapezoid body,anterior nucleus of trapezoid body +http://purl.obolibrary.org/obo/UBERON_0002832,ventral nucleus of trapezoid body,nucleus anterior corporis trapezoidei +http://purl.obolibrary.org/obo/UBERON_0002832,ventral nucleus of trapezoid body,nucleus ventralis corporis trapezoidei +http://purl.obolibrary.org/obo/UBERON_0002832,ventral nucleus of trapezoid body,ventral trapezoid nucleus +http://purl.obolibrary.org/obo/UBERON_0002833,medial nucleus of trapezoid body,MNTB +http://purl.obolibrary.org/obo/UBERON_0002834,cervical dorsal root ganglion,cervical dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0002834,cervical dorsal root ganglion,cervical spinal ganglion +http://purl.obolibrary.org/obo/UBERON_0002835,thoracic dorsal root ganglion,dorsal root ganglion of thorax +http://purl.obolibrary.org/obo/UBERON_0002835,thoracic dorsal root ganglion,ganglion of dorsal root of thorax +http://purl.obolibrary.org/obo/UBERON_0002835,thoracic dorsal root ganglion,ganglion spinalis of thorax +http://purl.obolibrary.org/obo/UBERON_0002835,thoracic dorsal root ganglion,thoracic dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0002835,thoracic dorsal root ganglion,thoracic spinal ganglion +http://purl.obolibrary.org/obo/UBERON_0002835,thoracic dorsal root ganglion,thorax dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0002835,thoracic dorsal root ganglion,thorax ganglion of dorsal root +http://purl.obolibrary.org/obo/UBERON_0002835,thoracic dorsal root ganglion,thorax ganglion spinalis +http://purl.obolibrary.org/obo/UBERON_0002836,lumbar dorsal root ganglion,lumbar dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0002836,lumbar dorsal root ganglion,lumbar spinal ganglion +http://purl.obolibrary.org/obo/UBERON_0002837,sacral dorsal root ganglion,sacral dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0002837,sacral dorsal root ganglion,sacral spinal ganglion +http://purl.obolibrary.org/obo/UBERON_0002838,first cervical dorsal root ganglion,first cervical dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0002838,first cervical dorsal root ganglion,first cervical spinal ganglion +http://purl.obolibrary.org/obo/UBERON_0002839,second cervical dorsal root ganglion,C2 dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0002839,second cervical dorsal root ganglion,second cervical dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0002839,second cervical dorsal root ganglion,second cervical spinal ganglion +http://purl.obolibrary.org/obo/UBERON_0002840,third cervical dorsal root ganglion,C3 dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0002840,third cervical dorsal root ganglion,third cervical dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0002840,third cervical dorsal root ganglion,third cervical spinal ganglion +http://purl.obolibrary.org/obo/UBERON_0002841,fourth cervical dorsal root ganglion,C4 dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0002841,fourth cervical dorsal root ganglion,fourth cervical dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0002841,fourth cervical dorsal root ganglion,fourth cervical spinal ganglion +http://purl.obolibrary.org/obo/UBERON_0002842,fifth cervical dorsal root ganglion,C5 dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0002842,fifth cervical dorsal root ganglion,fifth cervical dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0002842,fifth cervical dorsal root ganglion,fifth cervical spinal ganglion +http://purl.obolibrary.org/obo/UBERON_0002843,seventh cervical dorsal root ganglion,C7 dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0002843,seventh cervical dorsal root ganglion,seventh cervical dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0002843,seventh cervical dorsal root ganglion,seventh cervical spinal ganglion +http://purl.obolibrary.org/obo/UBERON_0002844,eighth cervical dorsal root ganglion,eighth cervical dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0002844,eighth cervical dorsal root ganglion,eighth cervical spinal ganglion +http://purl.obolibrary.org/obo/UBERON_0002845,first thoracic dorsal root ganglion,first thoracic dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0002845,first thoracic dorsal root ganglion,first thoracic spinal ganglion +http://purl.obolibrary.org/obo/UBERON_0002846,second thoracic dorsal root ganglion,second thoracic dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0002846,second thoracic dorsal root ganglion,second thoracic spinal ganglion +http://purl.obolibrary.org/obo/UBERON_0002847,third thoracic dorsal root ganglion,third thoracic dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0002847,third thoracic dorsal root ganglion,third thoracic spinal ganglion +http://purl.obolibrary.org/obo/UBERON_0002848,fifth thoracic dorsal root ganglion,fifth thoracic dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0002848,fifth thoracic dorsal root ganglion,fifth thoracic spinal ganglion +http://purl.obolibrary.org/obo/UBERON_0002849,sixth thoracic dorsal root ganglion,sixth thoracic dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0002849,sixth thoracic dorsal root ganglion,sixth thoracic spinal ganglion +http://purl.obolibrary.org/obo/UBERON_0002850,seventh thoracic dorsal root ganglion,seventh thoracic dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0002850,seventh thoracic dorsal root ganglion,seventh thoracic spinal ganglion +http://purl.obolibrary.org/obo/UBERON_0002851,eighth thoracic dorsal root ganglion,eighth thoracic dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0002851,eighth thoracic dorsal root ganglion,eighth thoracic spinal ganglion +http://purl.obolibrary.org/obo/UBERON_0002852,ninth thoracic dorsal root ganglion,ninth thoracic dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0002852,ninth thoracic dorsal root ganglion,ninth thoracic spinal ganglion +http://purl.obolibrary.org/obo/UBERON_0002853,tenth thoracic dorsal root ganglion,tenth thoracic dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0002853,tenth thoracic dorsal root ganglion,tenth thoracic spinal ganglion +http://purl.obolibrary.org/obo/UBERON_0002854,eleventh thoracic dorsal root ganglion,eleventh thoracic dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0002854,eleventh thoracic dorsal root ganglion,eleventh thoracic spinal ganglion +http://purl.obolibrary.org/obo/UBERON_0002855,twelfth thoracic dorsal root ganglion,twelfth thoracic dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0002855,twelfth thoracic dorsal root ganglion,twelfth thoracic spinal ganglion +http://purl.obolibrary.org/obo/UBERON_0002856,second lumbar dorsal root ganglion,second lumbar dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0002856,second lumbar dorsal root ganglion,second lumbar spinal ganglion +http://purl.obolibrary.org/obo/UBERON_0002857,first lumbar dorsal root ganglion,first lumbar dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0002857,first lumbar dorsal root ganglion,first lumbar spinal ganglion +http://purl.obolibrary.org/obo/UBERON_0002858,third lumbar dorsal root ganglion,third lumbar dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0002858,third lumbar dorsal root ganglion,third lumbar spinal ganglion +http://purl.obolibrary.org/obo/UBERON_0002859,fifth lumbar dorsal root ganglion,L5 dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0002859,fifth lumbar dorsal root ganglion,L5 ganglion +http://purl.obolibrary.org/obo/UBERON_0002859,fifth lumbar dorsal root ganglion,fifth lumbar dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0002859,fifth lumbar dorsal root ganglion,fifth lumbar spinal ganglion +http://purl.obolibrary.org/obo/UBERON_0002860,first sacral dorsal root ganglion,first sacral dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0002860,first sacral dorsal root ganglion,first sacral spinal ganglion +http://purl.obolibrary.org/obo/UBERON_0002861,second sacral dorsal root ganglion,second sacral dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0002861,second sacral dorsal root ganglion,second sacral spinal ganglion +http://purl.obolibrary.org/obo/UBERON_0002862,third sacral dorsal root ganglion,third sacral dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0002862,third sacral dorsal root ganglion,third sacral spinal ganglion +http://purl.obolibrary.org/obo/UBERON_0002863,fifth sacral dorsal root ganglion,fifth sacral dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0002863,fifth sacral dorsal root ganglion,fifth sacral spinal ganglion +http://purl.obolibrary.org/obo/UBERON_0002864,accessory cuneate nucleus,external cuneate nucleus +http://purl.obolibrary.org/obo/UBERON_0002864,accessory cuneate nucleus,lateral cuneate nucleus +http://purl.obolibrary.org/obo/UBERON_0002864,accessory cuneate nucleus,nucleus of corpus restiforme +http://purl.obolibrary.org/obo/UBERON_0002865,arcuate nucleus of medulla,ArcM +http://purl.obolibrary.org/obo/UBERON_0002865,arcuate nucleus of medulla,arcuate hypothalamic nucleus medial part +http://purl.obolibrary.org/obo/UBERON_0002865,arcuate nucleus of medulla,arcuate hypothalamic nucleus of medulla +http://purl.obolibrary.org/obo/UBERON_0002865,arcuate nucleus of medulla,arcuate nucleus (medulla) +http://purl.obolibrary.org/obo/UBERON_0002865,arcuate nucleus of medulla,arcuate nucleus of hypothalamus of medulla +http://purl.obolibrary.org/obo/UBERON_0002865,arcuate nucleus of medulla,arcuate nucleus of the medulla +http://purl.obolibrary.org/obo/UBERON_0002865,arcuate nucleus of medulla,"arcuate nucleus, medial part" +http://purl.obolibrary.org/obo/UBERON_0002865,arcuate nucleus of medulla,arcuate nucleus-1 +http://purl.obolibrary.org/obo/UBERON_0002865,arcuate nucleus of medulla,arcuate nucleus-2 of medulla +http://purl.obolibrary.org/obo/UBERON_0002865,arcuate nucleus of medulla,arcuate periventricular nucleus of medulla +http://purl.obolibrary.org/obo/UBERON_0002865,arcuate nucleus of medulla,infundibular hypothalamic nucleus of medulla +http://purl.obolibrary.org/obo/UBERON_0002865,arcuate nucleus of medulla,infundibular nucleus of medulla +http://purl.obolibrary.org/obo/UBERON_0002865,arcuate nucleus of medulla,infundibular periventricular nucleus of medulla +http://purl.obolibrary.org/obo/UBERON_0002865,arcuate nucleus of medulla,medial arcuate nucleus +http://purl.obolibrary.org/obo/UBERON_0002865,arcuate nucleus of medulla,medulla arcuate hypothalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0002865,arcuate nucleus of medulla,medulla arcuate nucleus +http://purl.obolibrary.org/obo/UBERON_0002865,arcuate nucleus of medulla,medulla arcuate nucleus of hypothalamus +http://purl.obolibrary.org/obo/UBERON_0002865,arcuate nucleus of medulla,medulla arcuate nucleus-2 +http://purl.obolibrary.org/obo/UBERON_0002865,arcuate nucleus of medulla,medulla arcuate periventricular nucleus +http://purl.obolibrary.org/obo/UBERON_0002865,arcuate nucleus of medulla,medulla infundibular hypothalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0002865,arcuate nucleus of medulla,medulla infundibular nucleus +http://purl.obolibrary.org/obo/UBERON_0002865,arcuate nucleus of medulla,medulla infundibular periventricular nucleus +http://purl.obolibrary.org/obo/UBERON_0002865,arcuate nucleus of medulla,nuclei arcuati +http://purl.obolibrary.org/obo/UBERON_0002865,arcuate nucleus of medulla,nucleus arciformis pyramidalis +http://purl.obolibrary.org/obo/UBERON_0002865,arcuate nucleus of medulla,nucleus arcuatus myelencephali +http://purl.obolibrary.org/obo/UBERON_0002865,arcuate nucleus of medulla,nucleus arcuatus pyramidalis +http://purl.obolibrary.org/obo/UBERON_0002866,caudal part of spinal trigeminal nucleus,caudal nucleus +http://purl.obolibrary.org/obo/UBERON_0002866,caudal part of spinal trigeminal nucleus,caudal nucleus (kandell) +http://purl.obolibrary.org/obo/UBERON_0002866,caudal part of spinal trigeminal nucleus,"spinal trigeminal nucleus, caudal part" +http://purl.obolibrary.org/obo/UBERON_0002867,central gray substance of medulla,central gray matter +http://purl.obolibrary.org/obo/UBERON_0002867,central gray substance of medulla,medullary central gray substance +http://purl.obolibrary.org/obo/UBERON_0002868,commissural nucleus of vagus nerve,commissural nucleus-1 +http://purl.obolibrary.org/obo/UBERON_0002868,commissural nucleus of vagus nerve,nucleus of inferior commissure +http://purl.obolibrary.org/obo/UBERON_0002868,commissural nucleus of vagus nerve,nucleus of inferior commisure +http://purl.obolibrary.org/obo/UBERON_0002869,diffuse reticular nucleus,Koelliker-Fuse nucleus +http://purl.obolibrary.org/obo/UBERON_0002869,diffuse reticular nucleus,Kolloker-Fuse nucleus +http://purl.obolibrary.org/obo/UBERON_0002869,diffuse reticular nucleus,Kölliker-Fuse nucleus +http://purl.obolibrary.org/obo/UBERON_0002869,diffuse reticular nucleus,kolliker-Fuse nucleus +http://purl.obolibrary.org/obo/UBERON_0002869,diffuse reticular nucleus,nucleus of Kolliker-Fuse +http://purl.obolibrary.org/obo/UBERON_0002869,diffuse reticular nucleus,nucleus subparabrachialis +http://purl.obolibrary.org/obo/UBERON_0002869,diffuse reticular nucleus,subparabrachial nucleus +http://purl.obolibrary.org/obo/UBERON_0002870,dorsal motor nucleus of vagus nerve,dorsal efferent nucleus of vagus +http://purl.obolibrary.org/obo/UBERON_0002870,dorsal motor nucleus of vagus nerve,dorsal motor nucleus +http://purl.obolibrary.org/obo/UBERON_0002870,dorsal motor nucleus of vagus nerve,dorsal motor nucleus of the vagus +http://purl.obolibrary.org/obo/UBERON_0002870,dorsal motor nucleus of vagus nerve,dorsal motor nucleus of the vagus (vagal nucleus) +http://purl.obolibrary.org/obo/UBERON_0002870,dorsal motor nucleus of vagus nerve,dorsal motor nucleus of the vagus nerve +http://purl.obolibrary.org/obo/UBERON_0002870,dorsal motor nucleus of vagus nerve,dorsal motor nucleus of vagus +http://purl.obolibrary.org/obo/UBERON_0002870,dorsal motor nucleus of vagus nerve,dorsal motor nucleus of vagus X nerve +http://purl.obolibrary.org/obo/UBERON_0002870,dorsal motor nucleus of vagus nerve,dorsal motor nucleus of vagus nerve +http://purl.obolibrary.org/obo/UBERON_0002870,dorsal motor nucleus of vagus nerve,dorsal motor vagal nucleus +http://purl.obolibrary.org/obo/UBERON_0002870,dorsal motor nucleus of vagus nerve,dorsal nucleus of the vagus nerve +http://purl.obolibrary.org/obo/UBERON_0002870,dorsal motor nucleus of vagus nerve,dorsal nucleus of vagus nerve +http://purl.obolibrary.org/obo/UBERON_0002870,dorsal motor nucleus of vagus nerve,dorsal vagal nucleus +http://purl.obolibrary.org/obo/UBERON_0002870,dorsal motor nucleus of vagus nerve,nucleus alaris +http://purl.obolibrary.org/obo/UBERON_0002870,dorsal motor nucleus of vagus nerve,nucleus alaris (Oertel) +http://purl.obolibrary.org/obo/UBERON_0002870,dorsal motor nucleus of vagus nerve,nucleus dorsalis motorius nervi vagi +http://purl.obolibrary.org/obo/UBERON_0002870,dorsal motor nucleus of vagus nerve,nucleus dorsalis nervi vagi +http://purl.obolibrary.org/obo/UBERON_0002870,dorsal motor nucleus of vagus nerve,nucleus posterior nervi vagi +http://purl.obolibrary.org/obo/UBERON_0002870,dorsal motor nucleus of vagus nerve,nucleus vagalis dorsalis +http://purl.obolibrary.org/obo/UBERON_0002870,dorsal motor nucleus of vagus nerve,posterior nucleus of vagus nerve +http://purl.obolibrary.org/obo/UBERON_0002870,dorsal motor nucleus of vagus nerve,vagus nucleus +http://purl.obolibrary.org/obo/UBERON_0002871,hypoglossal nucleus,hypoglossal XII nucleus +http://purl.obolibrary.org/obo/UBERON_0002871,hypoglossal nucleus,hypoglossal nerve nucleus +http://purl.obolibrary.org/obo/UBERON_0002871,hypoglossal nucleus,hypoglossal nucleus +http://purl.obolibrary.org/obo/UBERON_0002871,hypoglossal nucleus,nucleus hypoglossalis +http://purl.obolibrary.org/obo/UBERON_0002871,hypoglossal nucleus,nucleus nervi hypoglossi +http://purl.obolibrary.org/obo/UBERON_0002871,hypoglossal nucleus,nucleus of hypoglossal nerve +http://purl.obolibrary.org/obo/UBERON_0002871,hypoglossal nucleus,twelfth cranial nerve nucleus +http://purl.obolibrary.org/obo/UBERON_0002872,inferior salivatory nucleus,inferior salivary nucleus +http://purl.obolibrary.org/obo/UBERON_0002872,inferior salivatory nucleus,inferior salivatary nucleus +http://purl.obolibrary.org/obo/UBERON_0002872,inferior salivatory nucleus,nucleus salivarius inferior +http://purl.obolibrary.org/obo/UBERON_0002872,inferior salivatory nucleus,nucleus salivatorius caudalis +http://purl.obolibrary.org/obo/UBERON_0002872,inferior salivatory nucleus,nucleus salivatorius inferior +http://purl.obolibrary.org/obo/UBERON_0002872,inferior salivatory nucleus,nucleus salivatorius inferior nervi glossopharyngei +http://purl.obolibrary.org/obo/UBERON_0002873,interpolar part of spinal trigeminal nucleus, +http://purl.obolibrary.org/obo/UBERON_0002874,lateral pericuneate nucleus, +http://purl.obolibrary.org/obo/UBERON_0002875,medial pericuneate nucleus, +http://purl.obolibrary.org/obo/UBERON_0002876,nucleus intercalatus,intercalated nucleus of medulla +http://purl.obolibrary.org/obo/UBERON_0002876,nucleus intercalatus,nucleus Staderini +http://purl.obolibrary.org/obo/UBERON_0002876,nucleus intercalatus,nucleus intercalatus of medulla +http://purl.obolibrary.org/obo/UBERON_0002876,nucleus intercalatus,nucleus of Staderini +http://purl.obolibrary.org/obo/UBERON_0002877,parasolitary nucleus,nucleus fasciculus solitarius +http://purl.obolibrary.org/obo/UBERON_0002877,parasolitary nucleus,nucleus juxtasolitarius +http://purl.obolibrary.org/obo/UBERON_0002879,peritrigeminal nucleus, +http://purl.obolibrary.org/obo/UBERON_0002880,pontobulbar nucleus,nucleus of circumolivary bundle +http://purl.obolibrary.org/obo/UBERON_0002880,pontobulbar nucleus,pontobulbar body +http://purl.obolibrary.org/obo/UBERON_0002881,sublingual nucleus,Roller's nucleus +http://purl.obolibrary.org/obo/UBERON_0002881,sublingual nucleus,SLg +http://purl.obolibrary.org/obo/UBERON_0002881,sublingual nucleus,inferior central nucleus +http://purl.obolibrary.org/obo/UBERON_0002881,sublingual nucleus,nucleus Roller +http://purl.obolibrary.org/obo/UBERON_0002881,sublingual nucleus,nucleus of roller +http://purl.obolibrary.org/obo/UBERON_0002881,sublingual nucleus,nucleus parvocellularis nervi hypoglossi +http://purl.obolibrary.org/obo/UBERON_0002881,sublingual nucleus,nucleus sublingualis +http://purl.obolibrary.org/obo/UBERON_0002882,supraspinal nucleus, +http://purl.obolibrary.org/obo/UBERON_0002883,central amygdaloid nucleus,amygdala central nucleus +http://purl.obolibrary.org/obo/UBERON_0002883,central amygdaloid nucleus,central amygdala +http://purl.obolibrary.org/obo/UBERON_0002883,central amygdaloid nucleus,central amygdalar nucleus +http://purl.obolibrary.org/obo/UBERON_0002883,central amygdaloid nucleus,central nuclear group +http://purl.obolibrary.org/obo/UBERON_0002883,central amygdaloid nucleus,central nucleus amygdala +http://purl.obolibrary.org/obo/UBERON_0002883,central amygdaloid nucleus,central nucleus of amygda +http://purl.obolibrary.org/obo/UBERON_0002883,central amygdaloid nucleus,central nucleus of amygdala +http://purl.obolibrary.org/obo/UBERON_0002883,central amygdaloid nucleus,central nucleus of the amygdala +http://purl.obolibrary.org/obo/UBERON_0002883,central amygdaloid nucleus,nucleus amygdalae centralis +http://purl.obolibrary.org/obo/UBERON_0002883,central amygdaloid nucleus,nucleus amygdaloideus centralis +http://purl.obolibrary.org/obo/UBERON_0002883,central amygdaloid nucleus,nucleus centralis amygdalae +http://purl.obolibrary.org/obo/UBERON_0002884,intercalated amygdaloid nuclei,intercalated amygdaloid nuclei +http://purl.obolibrary.org/obo/UBERON_0002884,intercalated amygdaloid nuclei,intercalated amygdaloid nucleus +http://purl.obolibrary.org/obo/UBERON_0002884,intercalated amygdaloid nuclei,intercalated masses of nucleus amygdaloideus +http://purl.obolibrary.org/obo/UBERON_0002884,intercalated amygdaloid nuclei,intercalated nuclei of amygdala +http://purl.obolibrary.org/obo/UBERON_0002884,intercalated amygdaloid nuclei,intercalated nucleus of the amygdala +http://purl.obolibrary.org/obo/UBERON_0002884,intercalated amygdaloid nuclei,massa intercalata +http://purl.obolibrary.org/obo/UBERON_0002884,intercalated amygdaloid nuclei,massa intercalata of amygdala +http://purl.obolibrary.org/obo/UBERON_0002885,accessory basal amygdaloid nucleus,accessory basal nucleus of amygdala +http://purl.obolibrary.org/obo/UBERON_0002885,accessory basal amygdaloid nucleus,"basal amygdaloid nucleus, medial part" +http://purl.obolibrary.org/obo/UBERON_0002885,accessory basal amygdaloid nucleus,basomedial nucleus (accessory basal nucleus) +http://purl.obolibrary.org/obo/UBERON_0002885,accessory basal amygdaloid nucleus,basomedial nucleus (de olmos) +http://purl.obolibrary.org/obo/UBERON_0002886,lateral amygdaloid nucleus,lateral amygdala +http://purl.obolibrary.org/obo/UBERON_0002886,lateral amygdaloid nucleus,lateral amygdalar nucleus +http://purl.obolibrary.org/obo/UBERON_0002886,lateral amygdaloid nucleus,lateral nucleus of amygdala +http://purl.obolibrary.org/obo/UBERON_0002886,lateral amygdaloid nucleus,lateral nucleus of the amygdala +http://purl.obolibrary.org/obo/UBERON_0002886,lateral amygdaloid nucleus,lateral principal nucleus of amygdala +http://purl.obolibrary.org/obo/UBERON_0002886,lateral amygdaloid nucleus,medial principal nucleus +http://purl.obolibrary.org/obo/UBERON_0002886,lateral amygdaloid nucleus,nucleus amygdalae lateralis +http://purl.obolibrary.org/obo/UBERON_0002886,lateral amygdaloid nucleus,nucleus amygdaloideus lateralis +http://purl.obolibrary.org/obo/UBERON_0002886,lateral amygdaloid nucleus,nucleus lateralis amygdalae +http://purl.obolibrary.org/obo/UBERON_0002887,basal amygdaloid nucleus,basolateral amygaloid nucleus +http://purl.obolibrary.org/obo/UBERON_0002887,basal amygdaloid nucleus,basolateral amygdalar nucleus +http://purl.obolibrary.org/obo/UBERON_0002887,basal amygdaloid nucleus,basolateral amygdaloid nucleus +http://purl.obolibrary.org/obo/UBERON_0002887,basal amygdaloid nucleus,basolateral nucleus (de olmos) +http://purl.obolibrary.org/obo/UBERON_0002887,basal amygdaloid nucleus,intermediate principal nucleus +http://purl.obolibrary.org/obo/UBERON_0002887,basal amygdaloid nucleus,nucleus amygdalae basalis lateralis +http://purl.obolibrary.org/obo/UBERON_0002888,lateral part of basal amygdaloid nucleus,lateral basal nucleus of amygdala +http://purl.obolibrary.org/obo/UBERON_0002888,lateral part of basal amygdaloid nucleus,lateral basal nucleus of the amygdala +http://purl.obolibrary.org/obo/UBERON_0002888,lateral part of basal amygdaloid nucleus,lateral division of basal nucleus +http://purl.obolibrary.org/obo/UBERON_0002888,lateral part of basal amygdaloid nucleus,lateral division of the basal nucleus +http://purl.obolibrary.org/obo/UBERON_0002889,medial part of basal amygdaloid nucleus,basomedial amygdalar nucleus +http://purl.obolibrary.org/obo/UBERON_0002889,medial part of basal amygdaloid nucleus,basomedial amygdaloid nucleus +http://purl.obolibrary.org/obo/UBERON_0002889,medial part of basal amygdaloid nucleus,medial basal nucleus of amygdala +http://purl.obolibrary.org/obo/UBERON_0002889,medial part of basal amygdaloid nucleus,medial division of basal nucleus +http://purl.obolibrary.org/obo/UBERON_0002889,medial part of basal amygdaloid nucleus,nucleus amygdalae basalis medialis +http://purl.obolibrary.org/obo/UBERON_0002890,anterior amygdaloid area,anterior amygaloid area +http://purl.obolibrary.org/obo/UBERON_0002890,anterior amygdaloid area,anterior amygdalar area +http://purl.obolibrary.org/obo/UBERON_0002891,cortical amygdaloid nucleus,posterior cortical amygdaloid nucleus +http://purl.obolibrary.org/obo/UBERON_0002891,cortical amygdaloid nucleus,posterior cortical nucleus of amygdala +http://purl.obolibrary.org/obo/UBERON_0002892,medial amygdaloid nucleus,medial amygalar nucleus +http://purl.obolibrary.org/obo/UBERON_0002892,medial amygdaloid nucleus,medial amygdala +http://purl.obolibrary.org/obo/UBERON_0002892,medial amygdaloid nucleus,medial amygdalar nucleus +http://purl.obolibrary.org/obo/UBERON_0002892,medial amygdaloid nucleus,medial amygdaloid nucleus principal part +http://purl.obolibrary.org/obo/UBERON_0002892,medial amygdaloid nucleus,medial nucleus of amygdala +http://purl.obolibrary.org/obo/UBERON_0002892,medial amygdaloid nucleus,medial nucleus of the amygdala +http://purl.obolibrary.org/obo/UBERON_0002892,medial amygdaloid nucleus,nucleus amygdalae medialis +http://purl.obolibrary.org/obo/UBERON_0002892,medial amygdaloid nucleus,nucleus amygdaloideus medialis +http://purl.obolibrary.org/obo/UBERON_0002892,medial amygdaloid nucleus,nucleus medialis amygdalae +http://purl.obolibrary.org/obo/UBERON_0002893,nucleus of lateral olfactory tract,NLOT +http://purl.obolibrary.org/obo/UBERON_0002893,nucleus of lateral olfactory tract,lateral olfactory tract nucleus +http://purl.obolibrary.org/obo/UBERON_0002893,nucleus of lateral olfactory tract,nucleus of the lateral olfactory tract (ganser) +http://purl.obolibrary.org/obo/UBERON_0002894,olfactory cortex,archaeocortex +http://purl.obolibrary.org/obo/UBERON_0002894,olfactory cortex,archeocortex +http://purl.obolibrary.org/obo/UBERON_0002894,olfactory cortex,olfactory areas +http://purl.obolibrary.org/obo/UBERON_0002894,olfactory cortex,olfactory lobe +http://purl.obolibrary.org/obo/UBERON_0002895,secondary olfactory cortex,secondary olfactory areas +http://purl.obolibrary.org/obo/UBERON_0002895,secondary olfactory cortex,secondary olfactory cortex +http://purl.obolibrary.org/obo/UBERON_0002895,secondary olfactory cortex,secondary olfactory cortical area (carpenter) +http://purl.obolibrary.org/obo/UBERON_0002896,telodiencephalic fissure,telo-diencephalic fissure +http://purl.obolibrary.org/obo/UBERON_0002897,cistern of lamina terminalis,cisterna lamina terminalis +http://purl.obolibrary.org/obo/UBERON_0002897,cistern of lamina terminalis,lamina terminalis cistern +http://purl.obolibrary.org/obo/UBERON_0002898,chiasmatic cistern,cisterna chiasmatica +http://purl.obolibrary.org/obo/UBERON_0002898,chiasmatic cistern,cisterna chiasmatis +http://purl.obolibrary.org/obo/UBERON_0002899,hippocampal sulcus,dentate fissure +http://purl.obolibrary.org/obo/UBERON_0002899,hippocampal sulcus,hippocampal fissure +http://purl.obolibrary.org/obo/UBERON_0002899,hippocampal sulcus,sulcus hippocampi +http://purl.obolibrary.org/obo/UBERON_0002900,transverse occipital sulcus,sulcus occipitalis transversus +http://purl.obolibrary.org/obo/UBERON_0002901,posterior calcarine sulcus,postcalcarine sulcus +http://purl.obolibrary.org/obo/UBERON_0002901,posterior calcarine sulcus,posterior calcarine fissure +http://purl.obolibrary.org/obo/UBERON_0002901,posterior calcarine sulcus,posterior part of calcarine sulcus +http://purl.obolibrary.org/obo/UBERON_0002901,posterior calcarine sulcus,sulcus calcarinus posterior +http://purl.obolibrary.org/obo/UBERON_0002902,occipital pole,polus occipitalis +http://purl.obolibrary.org/obo/UBERON_0002903,lunate sulcus,lunate fissure +http://purl.obolibrary.org/obo/UBERON_0002903,lunate sulcus,sulcus lunatus +http://purl.obolibrary.org/obo/UBERON_0002903,lunate sulcus,sulcus simialis +http://purl.obolibrary.org/obo/UBERON_0002904,lateral occipital sulcus,sulcus occipitalis lateralis +http://purl.obolibrary.org/obo/UBERON_0002905,intralingual sulcus,sulcus intralingualis +http://purl.obolibrary.org/obo/UBERON_0002906,anterior occipital sulcus,ascending limb of the inferior temporal sulcus +http://purl.obolibrary.org/obo/UBERON_0002906,anterior occipital sulcus,posterior inferior temporal sulcus +http://purl.obolibrary.org/obo/UBERON_0002906,anterior occipital sulcus,sulci occipitales superiores +http://purl.obolibrary.org/obo/UBERON_0002906,anterior occipital sulcus,sulcus annectans +http://purl.obolibrary.org/obo/UBERON_0002906,anterior occipital sulcus,sulcus occipitalis anterior +http://purl.obolibrary.org/obo/UBERON_0002907,superior postcentral sulcus,postcentral dimple +http://purl.obolibrary.org/obo/UBERON_0002907,superior postcentral sulcus,sulcus postcentralis superior +http://purl.obolibrary.org/obo/UBERON_0002908,subparietal sulcus,splenial sulcus +http://purl.obolibrary.org/obo/UBERON_0002908,subparietal sulcus,sulcus subparietalis +http://purl.obolibrary.org/obo/UBERON_0002908,subparietal sulcus,suprasplenial sulcus +http://purl.obolibrary.org/obo/UBERON_0002909,posterior subcentral sulcus,sulcus subcentralis posterior +http://purl.obolibrary.org/obo/UBERON_0002910,posterior ascending limb of lateral sulcus,ascending terminal ramus of sylvian fissure +http://purl.obolibrary.org/obo/UBERON_0002910,posterior ascending limb of lateral sulcus,posterior ascending limb of lateral fissure +http://purl.obolibrary.org/obo/UBERON_0002910,posterior ascending limb of lateral sulcus,posterior ramus of lateral cerebral sulcus +http://purl.obolibrary.org/obo/UBERON_0002910,posterior ascending limb of lateral sulcus,ramus posterior ascendens fissurae lateralis +http://purl.obolibrary.org/obo/UBERON_0002910,posterior ascending limb of lateral sulcus,ramus posterior sulci lateralis cerebri +http://purl.obolibrary.org/obo/UBERON_0002911,parietal operculum,operculum parietale +http://purl.obolibrary.org/obo/UBERON_0002912,marginal sulcus,marginal branch of cingulate sulcus +http://purl.obolibrary.org/obo/UBERON_0002912,marginal sulcus,marginal ramus of cingulate sulcus +http://purl.obolibrary.org/obo/UBERON_0002912,marginal sulcus,ramus marginalis sulci cingulati +http://purl.obolibrary.org/obo/UBERON_0002912,marginal sulcus,ramus marginalis sulci cinguli +http://purl.obolibrary.org/obo/UBERON_0002912,marginal sulcus,sulcus marginalis +http://purl.obolibrary.org/obo/UBERON_0002913,intraparietal sulcus,interparietal fissure +http://purl.obolibrary.org/obo/UBERON_0002913,intraparietal sulcus,intraparietal fissure +http://purl.obolibrary.org/obo/UBERON_0002913,intraparietal sulcus,sulcus interparietalis +http://purl.obolibrary.org/obo/UBERON_0002914,inferior postcentral sulcus,sulcus postcentralis inferior +http://purl.obolibrary.org/obo/UBERON_0002915,postcentral sulcus of parietal lobe,postcentral fissure of cerebral hemisphere +http://purl.obolibrary.org/obo/UBERON_0002915,postcentral sulcus of parietal lobe,postcentral fissure-1 +http://purl.obolibrary.org/obo/UBERON_0002915,postcentral sulcus of parietal lobe,postcentral sulcus +http://purl.obolibrary.org/obo/UBERON_0002915,postcentral sulcus of parietal lobe,structure of postcentral sulcus +http://purl.obolibrary.org/obo/UBERON_0002915,postcentral sulcus of parietal lobe,sulcus postcentralis +http://purl.obolibrary.org/obo/UBERON_0002916,central sulcus,central cerebral sulcus +http://purl.obolibrary.org/obo/UBERON_0002916,central sulcus,central fissure +http://purl.obolibrary.org/obo/UBERON_0002916,central sulcus,central sulcus of Rolando +http://purl.obolibrary.org/obo/UBERON_0002916,central sulcus,fissure of Rolando +http://purl.obolibrary.org/obo/UBERON_0002916,central sulcus,rolandic fissure +http://purl.obolibrary.org/obo/UBERON_0002916,central sulcus,sulcus centralis +http://purl.obolibrary.org/obo/UBERON_0002916,central sulcus,sulcus centralis (rolandi) +http://purl.obolibrary.org/obo/UBERON_0002916,central sulcus,sulcus centralis cerebri +http://purl.obolibrary.org/obo/UBERON_0002916,central sulcus,sulcus of Rolando +http://purl.obolibrary.org/obo/UBERON_0002918,medial parabrachial nucleus, +http://purl.obolibrary.org/obo/UBERON_0002919,anterior parolfactory sulcus,paraolfactory sulci +http://purl.obolibrary.org/obo/UBERON_0002919,anterior parolfactory sulcus,paraolfactory sulcus +http://purl.obolibrary.org/obo/UBERON_0002919,anterior parolfactory sulcus,sulcus parolfactorius anterior +http://purl.obolibrary.org/obo/UBERON_0002920,callosal sulcus,sulcus corporis callosi +http://purl.obolibrary.org/obo/UBERON_0002920,callosal sulcus,sulcus of corpus callosum +http://purl.obolibrary.org/obo/UBERON_0002921,longitudinal fissure,fissura interhemispherica +http://purl.obolibrary.org/obo/UBERON_0002921,longitudinal fissure,fissura longitudinalis cerebrales +http://purl.obolibrary.org/obo/UBERON_0002921,longitudinal fissure,fissura longitudinalis cerebri +http://purl.obolibrary.org/obo/UBERON_0002921,longitudinal fissure,fissura longitudinalis magna +http://purl.obolibrary.org/obo/UBERON_0002921,longitudinal fissure,hemispheric sulcus +http://purl.obolibrary.org/obo/UBERON_0002921,longitudinal fissure,interhemispheric fissure +http://purl.obolibrary.org/obo/UBERON_0002921,longitudinal fissure,longitudinal cerebral fissure +http://purl.obolibrary.org/obo/UBERON_0002921,longitudinal fissure,longitudinal fissure of hemisphere +http://purl.obolibrary.org/obo/UBERON_0002921,longitudinal fissure,longitudinal fissure of the cerebrum +http://purl.obolibrary.org/obo/UBERON_0002921,longitudinal fissure,longitudinal sulcus +http://purl.obolibrary.org/obo/UBERON_0002921,longitudinal fissure,medial longitudinal fissure +http://purl.obolibrary.org/obo/UBERON_0002921,longitudinal fissure,sagittal fissure +http://purl.obolibrary.org/obo/UBERON_0002922,olfactory trigone,trigonum olfactorium +http://purl.obolibrary.org/obo/UBERON_0002923,posterior parolfactory sulcus, +http://purl.obolibrary.org/obo/UBERON_0002924,terminal nerve,cranial nerve 0 +http://purl.obolibrary.org/obo/UBERON_0002924,terminal nerve,cranial nerve zero +http://purl.obolibrary.org/obo/UBERON_0002924,terminal nerve,nervus terminalis +http://purl.obolibrary.org/obo/UBERON_0002924,terminal nerve,terminalis nerve +http://purl.obolibrary.org/obo/UBERON_0002925,trigeminal nucleus,nucleus mesencephalicus nervi trigemini +http://purl.obolibrary.org/obo/UBERON_0002925,trigeminal nucleus,nucleus mesencephalicus trigeminalis +http://purl.obolibrary.org/obo/UBERON_0002925,trigeminal nucleus,nucleus of trigeminal nuclear complex +http://purl.obolibrary.org/obo/UBERON_0002925,trigeminal nucleus,nucleus tractus mesencephali nervi trigeminalis +http://purl.obolibrary.org/obo/UBERON_0002925,trigeminal nucleus,trigeminal V nucleus +http://purl.obolibrary.org/obo/UBERON_0002925,trigeminal nucleus,trigeminal nuclear complex nucleus +http://purl.obolibrary.org/obo/UBERON_0002925,trigeminal nucleus,trigeminal nucleus +http://purl.obolibrary.org/obo/UBERON_0002926,gustatory epithelium, +http://purl.obolibrary.org/obo/UBERON_0002928,dentate gyrus polymorphic layer, +http://purl.obolibrary.org/obo/UBERON_0002929,dentate gyrus pyramidal layer, +http://purl.obolibrary.org/obo/UBERON_0002930,tectopontine tract,fibrae tectopontinae +http://purl.obolibrary.org/obo/UBERON_0002930,tectopontine tract,tectopontine fibers +http://purl.obolibrary.org/obo/UBERON_0002930,tectopontine tract,tectopontine fibres +http://purl.obolibrary.org/obo/UBERON_0002931,dorsal septal nucleus, +http://purl.obolibrary.org/obo/UBERON_0002932,trapezoid body,TZ +http://purl.obolibrary.org/obo/UBERON_0002932,trapezoid body,corpus trapezoides +http://purl.obolibrary.org/obo/UBERON_0002932,trapezoid body,corpus trapezoideum +http://purl.obolibrary.org/obo/UBERON_0002932,trapezoid body,trapezoid body (Treviranus) +http://purl.obolibrary.org/obo/UBERON_0002933,nucleus of anterior commissure,anterior commissure nucleus +http://purl.obolibrary.org/obo/UBERON_0002933,nucleus of anterior commissure,bed nucleus of anterior commissure +http://purl.obolibrary.org/obo/UBERON_0002933,nucleus of anterior commissure,nucleus of commissura anterior +http://purl.obolibrary.org/obo/UBERON_0002934,ventral oculomotor nucleus,V3 +http://purl.obolibrary.org/obo/UBERON_0002934,ventral oculomotor nucleus,nucleus nervi oculomotorii ventrolateralis +http://purl.obolibrary.org/obo/UBERON_0002934,ventral oculomotor nucleus,"nucleus nervi oculomotorii, pars ventralis" +http://purl.obolibrary.org/obo/UBERON_0002934,ventral oculomotor nucleus,ventral nucleus of oculomotor nuclear complex +http://purl.obolibrary.org/obo/UBERON_0002934,ventral oculomotor nucleus,ventral oculomotor cell column +http://purl.obolibrary.org/obo/UBERON_0002935,magnocellular part of ventral anterior nucleus,magnocellular division of ventral anterior nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0002935,magnocellular part of ventral anterior nucleus,magnocellular ventral anterior nucleus +http://purl.obolibrary.org/obo/UBERON_0002935,magnocellular part of ventral anterior nucleus,nucleus lateropolaris (magnocellularis) +http://purl.obolibrary.org/obo/UBERON_0002935,magnocellular part of ventral anterior nucleus,nucleus lateropolaris magnocellularis (hassler) +http://purl.obolibrary.org/obo/UBERON_0002935,magnocellular part of ventral anterior nucleus,nucleus rostralis lateralis situs perifascicularis +http://purl.obolibrary.org/obo/UBERON_0002935,magnocellular part of ventral anterior nucleus,"nucleus thalamicus ventral anterior, pars magnocellularis" +http://purl.obolibrary.org/obo/UBERON_0002935,magnocellular part of ventral anterior nucleus,"nucleus ventralis anterior, pars magnocellularis" +http://purl.obolibrary.org/obo/UBERON_0002935,magnocellular part of ventral anterior nucleus,pars magnocellularis nuclei ventralis anterior thalami +http://purl.obolibrary.org/obo/UBERON_0002935,magnocellular part of ventral anterior nucleus,"ventral anterior nucleus, magnocellular part" +http://purl.obolibrary.org/obo/UBERON_0002935,magnocellular part of ventral anterior nucleus,"ventral anterior nucleus, pars magnocellularis" +http://purl.obolibrary.org/obo/UBERON_0002935,magnocellular part of ventral anterior nucleus,"ventral anterior thalamic nucleus, magnocellular part" +http://purl.obolibrary.org/obo/UBERON_0002935,magnocellular part of ventral anterior nucleus,"ventroanterior thalamic nucleus, magnocellular part" +http://purl.obolibrary.org/obo/UBERON_0002936,magnocellular part of red nucleus,paleoruber +http://purl.obolibrary.org/obo/UBERON_0002936,magnocellular part of red nucleus,pars magnocellularis nuclei rubri +http://purl.obolibrary.org/obo/UBERON_0002936,magnocellular part of red nucleus,"red nucleus, magnocellular part" +http://purl.obolibrary.org/obo/UBERON_0002937,parvocellular part of ventral anterior nucleus,nucleus ventralis anterior (dewulf) +http://purl.obolibrary.org/obo/UBERON_0002937,parvocellular part of ventral anterior nucleus,"nucleus ventralis anterior, pars parvicellularis" +http://purl.obolibrary.org/obo/UBERON_0002937,parvocellular part of ventral anterior nucleus,parvicellular part of ventral anterior nucleus +http://purl.obolibrary.org/obo/UBERON_0002937,parvocellular part of ventral anterior nucleus,"ventral anterior nucleus, pars parvicellularis" +http://purl.obolibrary.org/obo/UBERON_0002937,parvocellular part of ventral anterior nucleus,"ventral anterior thalamic nucleus, parvicellular part" +http://purl.obolibrary.org/obo/UBERON_0002937,parvocellular part of ventral anterior nucleus,ventralis anterior (jones) +http://purl.obolibrary.org/obo/UBERON_0002938,parvocellular part of red nucleus,neoruber +http://purl.obolibrary.org/obo/UBERON_0002938,parvocellular part of red nucleus,pars parvocellularis nuclei rubri +http://purl.obolibrary.org/obo/UBERON_0002938,parvocellular part of red nucleus,"red nucleus, parvocellular part" +http://purl.obolibrary.org/obo/UBERON_0002939,ventral posteroinferior nucleus,nucleus ventralis posterior inferior thalami +http://purl.obolibrary.org/obo/UBERON_0002939,ventral posteroinferior nucleus,ventral posterior inferior nucleus +http://purl.obolibrary.org/obo/UBERON_0002939,ventral posteroinferior nucleus,ventral posterior inferior nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0002939,ventral posteroinferior nucleus,ventral posterior inferior thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0002940,anterior column of fornix,anterior crus of fornix +http://purl.obolibrary.org/obo/UBERON_0002940,anterior column of fornix,anterior pillar of fornix +http://purl.obolibrary.org/obo/UBERON_0002940,anterior column of fornix,columna fornicis anterior +http://purl.obolibrary.org/obo/UBERON_0002940,anterior column of fornix,"fornix, crus anterius" +http://purl.obolibrary.org/obo/UBERON_0002941,capsule of red nucleus,red nuclear capsule +http://purl.obolibrary.org/obo/UBERON_0002942,ventral posterolateral nucleus,nucleus ventralis posterior lateralis thalami +http://purl.obolibrary.org/obo/UBERON_0002942,ventral posterolateral nucleus,nucleus ventralis posterolateralis +http://purl.obolibrary.org/obo/UBERON_0002942,ventral posterolateral nucleus,nucleus ventralis posterolateralis thalami +http://purl.obolibrary.org/obo/UBERON_0002942,ventral posterolateral nucleus,nucleus ventralis thalami posterior lateralis +http://purl.obolibrary.org/obo/UBERON_0002942,ventral posterolateral nucleus,posterolateral ventral nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0002942,ventral posterolateral nucleus,posterolateral ventral nucleus of the thalamus +http://purl.obolibrary.org/obo/UBERON_0002942,ventral posterolateral nucleus,ventral posterolateral nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0002942,ventral posterolateral nucleus,ventral posterolateral nucleus of the thalamus +http://purl.obolibrary.org/obo/UBERON_0002942,ventral posterolateral nucleus,ventral posterolateral thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0002943,lingual gyrus,gyrus occipitotemporalis medialis +http://purl.obolibrary.org/obo/UBERON_0002943,lingual gyrus,lingula of cerebral hemisphere +http://purl.obolibrary.org/obo/UBERON_0002943,lingual gyrus,medial occipitotemporal gyrus +http://purl.obolibrary.org/obo/UBERON_0002943,lingual gyrus,medial occipitotemporal gyrus-2 +http://purl.obolibrary.org/obo/UBERON_0002944,spinothalamic tract of medulla, +http://purl.obolibrary.org/obo/UBERON_0002945,ventral posteromedial nucleus of thalamus,arcuate nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0002945,ventral posteromedial nucleus of thalamus,arcuate nucleus of the thalamus +http://purl.obolibrary.org/obo/UBERON_0002945,ventral posteromedial nucleus of thalamus,arcuate nucleus-3 +http://purl.obolibrary.org/obo/UBERON_0002945,ventral posteromedial nucleus of thalamus,nucleus arcuatus thalami +http://purl.obolibrary.org/obo/UBERON_0002945,ventral posteromedial nucleus of thalamus,nucleus semilunaris thalami +http://purl.obolibrary.org/obo/UBERON_0002945,ventral posteromedial nucleus of thalamus,nucleus ventralis posterior medialis thalami +http://purl.obolibrary.org/obo/UBERON_0002945,ventral posteromedial nucleus of thalamus,nucleus ventralis posteromedialis +http://purl.obolibrary.org/obo/UBERON_0002945,ventral posteromedial nucleus of thalamus,nucleus ventralis posteromedialis thalami +http://purl.obolibrary.org/obo/UBERON_0002945,ventral posteromedial nucleus of thalamus,nucleus ventrocaudalis anterior internus (hassler) +http://purl.obolibrary.org/obo/UBERON_0002945,ventral posteromedial nucleus of thalamus,posteromedial ventral nucleus +http://purl.obolibrary.org/obo/UBERON_0002945,ventral posteromedial nucleus of thalamus,posteromedial ventral nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0002945,ventral posteromedial nucleus of thalamus,posteromedial ventral nucleus of the thalamus +http://purl.obolibrary.org/obo/UBERON_0002945,ventral posteromedial nucleus of thalamus,semilunar nucleus +http://purl.obolibrary.org/obo/UBERON_0002945,ventral posteromedial nucleus of thalamus,thalamic gustatory nucleus +http://purl.obolibrary.org/obo/UBERON_0002945,ventral posteromedial nucleus of thalamus,ventral posterior medial nucleus +http://purl.obolibrary.org/obo/UBERON_0002945,ventral posteromedial nucleus of thalamus,ventral posterior medial nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0002945,ventral posteromedial nucleus of thalamus,ventral posteromedial nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0002945,ventral posteromedial nucleus of thalamus,ventral posteromedial nucleus of the thalamus +http://purl.obolibrary.org/obo/UBERON_0002945,ventral posteromedial nucleus of thalamus,ventral posteromedial thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0002945,ventral posteromedial nucleus of thalamus,ventroposteromedial nucleus of the thalamus +http://purl.obolibrary.org/obo/UBERON_0002947,frontal operculum, +http://purl.obolibrary.org/obo/UBERON_0002948,superior occipital gyrus,gyrus occipitalis primus +http://purl.obolibrary.org/obo/UBERON_0002949,tectospinal tract,Held's bundle +http://purl.obolibrary.org/obo/UBERON_0002949,tectospinal tract,tectospinal pathway +http://purl.obolibrary.org/obo/UBERON_0002952,intermediate acoustic stria,commissure of held +http://purl.obolibrary.org/obo/UBERON_0002952,intermediate acoustic stria,intermediate acoustic stria (held) +http://purl.obolibrary.org/obo/UBERON_0002952,intermediate acoustic stria,intermediate acoustic stria of held +http://purl.obolibrary.org/obo/UBERON_0002952,intermediate acoustic stria,striae acusticae intermedius +http://purl.obolibrary.org/obo/UBERON_0002953,lateral lemniscus,central acoustic tract +http://purl.obolibrary.org/obo/UBERON_0002953,lateral lemniscus,lateral fillet +http://purl.obolibrary.org/obo/UBERON_0002953,lateral lemniscus,lateral lemniscus (Reil) +http://purl.obolibrary.org/obo/UBERON_0002953,lateral lemniscus,lemniscus acusticus +http://purl.obolibrary.org/obo/UBERON_0002953,lateral lemniscus,lemniscus lateralis +http://purl.obolibrary.org/obo/UBERON_0002954,dorsal hypothalamic area,dorsal hypothalamic zone +http://purl.obolibrary.org/obo/UBERON_0002955,rhomboidal nucleus,rhomboid nucleus +http://purl.obolibrary.org/obo/UBERON_0002955,rhomboidal nucleus,rhomboid thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0002956,granular layer of cerebellar cortex,cerebellar granular layer +http://purl.obolibrary.org/obo/UBERON_0002956,granular layer of cerebellar cortex,cerebellar granule cell layer +http://purl.obolibrary.org/obo/UBERON_0002956,granular layer of cerebellar cortex,cerebellar granule layer +http://purl.obolibrary.org/obo/UBERON_0002956,granular layer of cerebellar cortex,cerebellum granule cell layer +http://purl.obolibrary.org/obo/UBERON_0002956,granular layer of cerebellar cortex,cerebellum granule layer +http://purl.obolibrary.org/obo/UBERON_0002956,granular layer of cerebellar cortex,granular layer of cerebellum +http://purl.obolibrary.org/obo/UBERON_0002956,granular layer of cerebellar cortex,granule cell layer of cerebellar cortex +http://purl.obolibrary.org/obo/UBERON_0002956,granular layer of cerebellar cortex,stratum granulosum cerebelli +http://purl.obolibrary.org/obo/UBERON_0002956,granular layer of cerebellar cortex,stratum granulosum corticis cerebelli +http://purl.obolibrary.org/obo/UBERON_0002957,caudal central oculomotor nucleus,caudal central nucleus +http://purl.obolibrary.org/obo/UBERON_0002957,caudal central oculomotor nucleus,caudal central nucleus of oculomotor nerve +http://purl.obolibrary.org/obo/UBERON_0002957,caudal central oculomotor nucleus,oculomotor nerve central caudal nucleus +http://purl.obolibrary.org/obo/UBERON_0002958,medial lemniscus of pons,medial lemniscus of pons of varolius +http://purl.obolibrary.org/obo/UBERON_0002958,medial lemniscus of pons,pons medial lemniscus +http://purl.obolibrary.org/obo/UBERON_0002958,medial lemniscus of pons,pons of varolius medial lemniscus +http://purl.obolibrary.org/obo/UBERON_0002959,subfascicular nucleus, +http://purl.obolibrary.org/obo/UBERON_0002960,central oculomotor nucleus,central nucleus of perlia +http://purl.obolibrary.org/obo/UBERON_0002960,central oculomotor nucleus,nucleus of perlia +http://purl.obolibrary.org/obo/UBERON_0002960,central oculomotor nucleus,spitzka's nucleus +http://purl.obolibrary.org/obo/UBERON_0002961,archicortex,archipallium +http://purl.obolibrary.org/obo/UBERON_0002962,adductor pollicis muscle,adductor pollicis +http://purl.obolibrary.org/obo/UBERON_0002963,caudal pontine reticular nucleus,"pontine reticular nucleus, caudal part" +http://purl.obolibrary.org/obo/UBERON_0002964,dorsal oculomotor nucleus,dorsal nucleus of oculomotor nuclear complex +http://purl.obolibrary.org/obo/UBERON_0002964,dorsal oculomotor nucleus,dorsal oculomotor cell column +http://purl.obolibrary.org/obo/UBERON_0002965,rostral intralaminar nuclear group,anterior group of intralaminar nuclei +http://purl.obolibrary.org/obo/UBERON_0002965,rostral intralaminar nuclear group,nuclei intralaminares rostrales +http://purl.obolibrary.org/obo/UBERON_0002965,rostral intralaminar nuclear group,rostral group of intralaminar nuclei +http://purl.obolibrary.org/obo/UBERON_0002965,rostral intralaminar nuclear group,rostral intralaminar nuclear group +http://purl.obolibrary.org/obo/UBERON_0002965,rostral intralaminar nuclear group,rostral intralaminar nuclei +http://purl.obolibrary.org/obo/UBERON_0002967,cingulate gyrus,cingulate area +http://purl.obolibrary.org/obo/UBERON_0002967,cingulate gyrus,cingulate region +http://purl.obolibrary.org/obo/UBERON_0002967,cingulate gyrus,falciform lobe +http://purl.obolibrary.org/obo/UBERON_0002967,cingulate gyrus,upper limbic gyrus +http://purl.obolibrary.org/obo/UBERON_0002968,central gray substance of pons,central gray of pons +http://purl.obolibrary.org/obo/UBERON_0002968,central gray substance of pons,central gray of the pons +http://purl.obolibrary.org/obo/UBERON_0002968,central gray substance of pons,griseum centrale pontis +http://purl.obolibrary.org/obo/UBERON_0002968,central gray substance of pons,pontine central gray +http://purl.obolibrary.org/obo/UBERON_0002969,inferior temporal sulcus,inferior temporal sulcus-1 +http://purl.obolibrary.org/obo/UBERON_0002969,inferior temporal sulcus,middle temporal sulcus (szikla) +http://purl.obolibrary.org/obo/UBERON_0002969,inferior temporal sulcus,second temporal sulcus +http://purl.obolibrary.org/obo/UBERON_0002969,inferior temporal sulcus,sulcus t2 +http://purl.obolibrary.org/obo/UBERON_0002970,intermediate oculomotor nucleus,intermediate nucleus of oculomotor nuclear complex +http://purl.obolibrary.org/obo/UBERON_0002970,intermediate oculomotor nucleus,intermediate oculomotor cell column +http://purl.obolibrary.org/obo/UBERON_0002971,periolivary nucleus,POI +http://purl.obolibrary.org/obo/UBERON_0002971,periolivary nucleus,nuclei periolivares +http://purl.obolibrary.org/obo/UBERON_0002971,periolivary nucleus,nucleus periolivaris +http://purl.obolibrary.org/obo/UBERON_0002971,periolivary nucleus,peri-olivary nuclei +http://purl.obolibrary.org/obo/UBERON_0002971,periolivary nucleus,peri-olivary nucleus +http://purl.obolibrary.org/obo/UBERON_0002971,periolivary nucleus,periolivary nuclei +http://purl.obolibrary.org/obo/UBERON_0002971,periolivary nucleus,periolivary region +http://purl.obolibrary.org/obo/UBERON_0002971,periolivary nucleus,superior olivary complex periolivary region +http://purl.obolibrary.org/obo/UBERON_0002972,centromedian nucleus of thalamus,central magnocellular nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0002972,centromedian nucleus of thalamus,central nucleus-1 +http://purl.obolibrary.org/obo/UBERON_0002972,centromedian nucleus of thalamus,centre median nucleus +http://purl.obolibrary.org/obo/UBERON_0002972,centromedian nucleus of thalamus,centromedian nucleus +http://purl.obolibrary.org/obo/UBERON_0002972,centromedian nucleus of thalamus,centromedian nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0002972,centromedian nucleus of thalamus,centromedian thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0002972,centromedian nucleus of thalamus,centrum medianum +http://purl.obolibrary.org/obo/UBERON_0002972,centromedian nucleus of thalamus,centrum medianum thalami +http://purl.obolibrary.org/obo/UBERON_0002972,centromedian nucleus of thalamus,noyau centre median of Luys +http://purl.obolibrary.org/obo/UBERON_0002972,centromedian nucleus of thalamus,nucleus centralis centralis +http://purl.obolibrary.org/obo/UBERON_0002972,centromedian nucleus of thalamus,nucleus centralis thalami (Hassler) +http://purl.obolibrary.org/obo/UBERON_0002972,centromedian nucleus of thalamus,nucleus centri mediani thalami +http://purl.obolibrary.org/obo/UBERON_0002972,centromedian nucleus of thalamus,nucleus centromedianus +http://purl.obolibrary.org/obo/UBERON_0002972,centromedian nucleus of thalamus,nucleus centromedianus thalami +http://purl.obolibrary.org/obo/UBERON_0002972,centromedian nucleus of thalamus,nucleus centrum medianum +http://purl.obolibrary.org/obo/UBERON_0002973,parahippocampal gyrus,gyrus hippocampi +http://purl.obolibrary.org/obo/UBERON_0002973,parahippocampal gyrus,gyrus parahippocampalis +http://purl.obolibrary.org/obo/UBERON_0002973,parahippocampal gyrus,gyrus parahippocampi +http://purl.obolibrary.org/obo/UBERON_0002973,parahippocampal gyrus,hippocampal convolution +http://purl.obolibrary.org/obo/UBERON_0002973,parahippocampal gyrus,hippocampal gyrus +http://purl.obolibrary.org/obo/UBERON_0002974,molecular layer of cerebellar cortex,cerebellar molecular layer +http://purl.obolibrary.org/obo/UBERON_0002974,molecular layer of cerebellar cortex,cerebellum molecular cell layer +http://purl.obolibrary.org/obo/UBERON_0002974,molecular layer of cerebellar cortex,cerebellum molecular layer +http://purl.obolibrary.org/obo/UBERON_0002974,molecular layer of cerebellar cortex,fasciculi thalami +http://purl.obolibrary.org/obo/UBERON_0002974,molecular layer of cerebellar cortex,stratum moleculare corticis cerebelli +http://purl.obolibrary.org/obo/UBERON_0002974,molecular layer of cerebellar cortex,thalamic fiber tracts +http://purl.obolibrary.org/obo/UBERON_0002975,medial oculomotor nucleus,medial nucleus of oculomotor nuclear complex +http://purl.obolibrary.org/obo/UBERON_0002975,medial oculomotor nucleus,medial oculomotor cell column +http://purl.obolibrary.org/obo/UBERON_0002976,preolivary nucleus,preolivary nuclei +http://purl.obolibrary.org/obo/UBERON_0002977,triangular septal nucleus,nucleus triangularis septi +http://purl.obolibrary.org/obo/UBERON_0002977,triangular septal nucleus,triangular nucleus of septum +http://purl.obolibrary.org/obo/UBERON_0002977,triangular septal nucleus,triangular nucleus septum (cajal) +http://purl.obolibrary.org/obo/UBERON_0002978,oral part of ventral lateral nucleus,nucleus lateralis oralis situs principalis +http://purl.obolibrary.org/obo/UBERON_0002978,oral part of ventral lateral nucleus,"nucleus ventralis lateralis, pars oralis" +http://purl.obolibrary.org/obo/UBERON_0002978,oral part of ventral lateral nucleus,"nucleus ventrooralis externus, anterior part (van buren)" +http://purl.obolibrary.org/obo/UBERON_0002978,oral part of ventral lateral nucleus,subnucleus rostralis +http://purl.obolibrary.org/obo/UBERON_0002978,oral part of ventral lateral nucleus,"ventral anterior nucleus, pars densicellularis" +http://purl.obolibrary.org/obo/UBERON_0002978,oral part of ventral lateral nucleus,ventral lateral anterior nucleus +http://purl.obolibrary.org/obo/UBERON_0002978,oral part of ventral lateral nucleus,"ventral lateral nucleus, oral part" +http://purl.obolibrary.org/obo/UBERON_0002978,oral part of ventral lateral nucleus,"ventral lateral thalamic nucleus, oral part" +http://purl.obolibrary.org/obo/UBERON_0002979,Purkinje cell layer of cerebellar cortex,Purkinje cell layer +http://purl.obolibrary.org/obo/UBERON_0002979,Purkinje cell layer of cerebellar cortex,cerebellar Purkinje cell layer +http://purl.obolibrary.org/obo/UBERON_0002979,Purkinje cell layer of cerebellar cortex,cerebellum Purkinje cell layer +http://purl.obolibrary.org/obo/UBERON_0002979,Purkinje cell layer of cerebellar cortex,cerebellum Purkinje layer +http://purl.obolibrary.org/obo/UBERON_0002979,Purkinje cell layer of cerebellar cortex,nuclei reticulares (thalami) +http://purl.obolibrary.org/obo/UBERON_0002979,Purkinje cell layer of cerebellar cortex,nucleus reticularis +http://purl.obolibrary.org/obo/UBERON_0002979,Purkinje cell layer of cerebellar cortex,nucleus reticulatus (thalami) +http://purl.obolibrary.org/obo/UBERON_0002979,Purkinje cell layer of cerebellar cortex,nucleus thalamicus reticularis +http://purl.obolibrary.org/obo/UBERON_0002979,Purkinje cell layer of cerebellar cortex,reticular nucleus thalamus (Arnold) +http://purl.obolibrary.org/obo/UBERON_0002979,Purkinje cell layer of cerebellar cortex,reticulatum thalami (Hassler) +http://purl.obolibrary.org/obo/UBERON_0002980,opercular part of inferior frontal gyrus,"gyrus frontalis inferior, pars opercularis" +http://purl.obolibrary.org/obo/UBERON_0002980,opercular part of inferior frontal gyrus,opercular portion of inferior frontal gyrus +http://purl.obolibrary.org/obo/UBERON_0002980,opercular part of inferior frontal gyrus,pars opercularis +http://purl.obolibrary.org/obo/UBERON_0002980,opercular part of inferior frontal gyrus,pars opercularis gyri frontalis inferioris +http://purl.obolibrary.org/obo/UBERON_0002980,opercular part of inferior frontal gyrus,pars posterior of inferior frontal gyrus +http://purl.obolibrary.org/obo/UBERON_0002980,opercular part of inferior frontal gyrus,posterior part of inferior frontal gyrus +http://purl.obolibrary.org/obo/UBERON_0002981,pulvinar nucleus,Pul +http://purl.obolibrary.org/obo/UBERON_0002981,pulvinar nucleus,nuclei pulvinares +http://purl.obolibrary.org/obo/UBERON_0002981,pulvinar nucleus,nucleus pulvinaris +http://purl.obolibrary.org/obo/UBERON_0002981,pulvinar nucleus,nucleus pulvinaris thalami +http://purl.obolibrary.org/obo/UBERON_0002981,pulvinar nucleus,posterior nucleus (P) +http://purl.obolibrary.org/obo/UBERON_0002981,pulvinar nucleus,pulvinar +http://purl.obolibrary.org/obo/UBERON_0002981,pulvinar nucleus,pulvinar nuclei +http://purl.obolibrary.org/obo/UBERON_0002981,pulvinar nucleus,pulvinar thalami +http://purl.obolibrary.org/obo/UBERON_0002981,pulvinar nucleus,pulvinar thalamus +http://purl.obolibrary.org/obo/UBERON_0002982,inferior pulvinar nucleus,nucleus pulvinaris inferior +http://purl.obolibrary.org/obo/UBERON_0002982,inferior pulvinar nucleus,nucleus pulvinaris inferior thalami +http://purl.obolibrary.org/obo/UBERON_0002982,inferior pulvinar nucleus,"nucleus pulvinaris thalami, pars inferior" +http://purl.obolibrary.org/obo/UBERON_0002983,lateral posterior nucleus of thalamus,LP +http://purl.obolibrary.org/obo/UBERON_0002983,lateral posterior nucleus of thalamus,lateral posterior complex +http://purl.obolibrary.org/obo/UBERON_0002983,lateral posterior nucleus of thalamus,lateral posterior nucleus +http://purl.obolibrary.org/obo/UBERON_0002983,lateral posterior nucleus of thalamus,lateral posterior nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0002983,lateral posterior nucleus of thalamus,lateral posterior nucleus of the thalamus +http://purl.obolibrary.org/obo/UBERON_0002983,lateral posterior nucleus of thalamus,lateral posterior thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0002983,lateral posterior nucleus of thalamus,"laterodorsal nucleus, caudal part" +http://purl.obolibrary.org/obo/UBERON_0002983,lateral posterior nucleus of thalamus,nucleus dorso-caudalis +http://purl.obolibrary.org/obo/UBERON_0002983,lateral posterior nucleus of thalamus,nucleus dorsocaudalis (Hassler) +http://purl.obolibrary.org/obo/UBERON_0002983,lateral posterior nucleus of thalamus,nucleus lateralis posterior +http://purl.obolibrary.org/obo/UBERON_0002983,lateral posterior nucleus of thalamus,nucleus lateralis posterior thalami +http://purl.obolibrary.org/obo/UBERON_0002983,lateral posterior nucleus of thalamus,nucleus lateralis thalami posterior +http://purl.obolibrary.org/obo/UBERON_0002983,lateral posterior nucleus of thalamus,posterior lateral nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0002984,lateral dorsal nucleus,"dorsal thalamus, lateral group" +http://purl.obolibrary.org/obo/UBERON_0002984,lateral dorsal nucleus,lateral dorsal nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0002984,lateral dorsal nucleus,lateral dorsal thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0002984,lateral dorsal nucleus,laterodorsal nucleus nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0002984,lateral dorsal nucleus,laterodorsal nucleus thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0002984,lateral dorsal nucleus,"laterodorsal nucleus, superficial part" +http://purl.obolibrary.org/obo/UBERON_0002984,lateral dorsal nucleus,laterodorsal thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0002984,lateral dorsal nucleus,nucleus dorsalis lateralis thalami +http://purl.obolibrary.org/obo/UBERON_0002984,lateral dorsal nucleus,nucleus dorsalis superficialis (Hassler) +http://purl.obolibrary.org/obo/UBERON_0002984,lateral dorsal nucleus,nucleus dorsolateralis thalami +http://purl.obolibrary.org/obo/UBERON_0002984,lateral dorsal nucleus,nucleus lateralis dorsalis +http://purl.obolibrary.org/obo/UBERON_0002984,lateral dorsal nucleus,nucleus lateralis dorsalis of thalamus +http://purl.obolibrary.org/obo/UBERON_0002984,lateral dorsal nucleus,nucleus lateralis dorsalis thalami +http://purl.obolibrary.org/obo/UBERON_0002984,lateral dorsal nucleus,nucleus lateralis thalami dorsalis +http://purl.obolibrary.org/obo/UBERON_0002985,ventral nucleus of medial geniculate body,"medial geniculate complex, ventral part" +http://purl.obolibrary.org/obo/UBERON_0002985,ventral nucleus of medial geniculate body,"medial geniculate nucleus, ventral part" +http://purl.obolibrary.org/obo/UBERON_0002985,ventral nucleus of medial geniculate body,medial nucleus of medial geniculate complex +http://purl.obolibrary.org/obo/UBERON_0002985,ventral nucleus of medial geniculate body,"nucleus corporis geniculati medialis, pars ventralis" +http://purl.obolibrary.org/obo/UBERON_0002985,ventral nucleus of medial geniculate body,nucleus geniculatus medialis fasciculosis (Hassler) +http://purl.obolibrary.org/obo/UBERON_0002985,ventral nucleus of medial geniculate body,nucleus geniculatus medialis fasciculosus (Hassler) +http://purl.obolibrary.org/obo/UBERON_0002985,ventral nucleus of medial geniculate body,nucleus geniculatus medialis pars ventralis +http://purl.obolibrary.org/obo/UBERON_0002985,ventral nucleus of medial geniculate body,nucleus ventralis corporis geniculati medialis +http://purl.obolibrary.org/obo/UBERON_0002985,ventral nucleus of medial geniculate body,ventral nucleus of medial geniculate complex +http://purl.obolibrary.org/obo/UBERON_0002985,ventral nucleus of medial geniculate body,ventral principal nucleus of medial geniculate body +http://purl.obolibrary.org/obo/UBERON_0002987,anterior spinocerebellar tract,Gower's tract +http://purl.obolibrary.org/obo/UBERON_0002987,anterior spinocerebellar tract,Gowers' tract +http://purl.obolibrary.org/obo/UBERON_0002987,anterior spinocerebellar tract,tractus spinocerebellaris anterior +http://purl.obolibrary.org/obo/UBERON_0002987,anterior spinocerebellar tract,tractus spinocerebellaris ventralis +http://purl.obolibrary.org/obo/UBERON_0002987,anterior spinocerebellar tract,ventral spinocerebellar tract +http://purl.obolibrary.org/obo/UBERON_0002987,anterior spinocerebellar tract,ventral spinocerebellar tract (Gowers) +http://purl.obolibrary.org/obo/UBERON_0002988,first dorsal interosseous of manus,abductor indicis +http://purl.obolibrary.org/obo/UBERON_0002988,first dorsal interosseous of manus,first dorsal interosseous of hand +http://purl.obolibrary.org/obo/UBERON_0002989,anconeus muscle,anconeus +http://purl.obolibrary.org/obo/UBERON_0002989,anconeus muscle,m. anconeus +http://purl.obolibrary.org/obo/UBERON_0002989,anconeus muscle,musculus anconaeus +http://purl.obolibrary.org/obo/UBERON_0002989,anconeus muscle,musculus anconeus +http://purl.obolibrary.org/obo/UBERON_0002990,mammillothalamic tract of hypothalamus, +http://purl.obolibrary.org/obo/UBERON_0002991,supramammillary commissure,commissure of forel +http://purl.obolibrary.org/obo/UBERON_0002991,supramammillary commissure,commissure y +http://purl.obolibrary.org/obo/UBERON_0002991,supramammillary commissure,decussation supramamilaris +http://purl.obolibrary.org/obo/UBERON_0002991,supramammillary commissure,postmammillary decussation +http://purl.obolibrary.org/obo/UBERON_0002991,supramammillary commissure,supramammillary decussation +http://purl.obolibrary.org/obo/UBERON_0002992,paratenial nucleus,nucleus parataenialis +http://purl.obolibrary.org/obo/UBERON_0002992,paratenial nucleus,parataenial nucleus +http://purl.obolibrary.org/obo/UBERON_0002992,paratenial nucleus,paratenial thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0002993,inferior central nucleus,inferior central nucleus (of roller) +http://purl.obolibrary.org/obo/UBERON_0002993,inferior central nucleus,inferior central nucleus of raphe +http://purl.obolibrary.org/obo/UBERON_0002993,inferior central nucleus,inferior central tegmental nucleus +http://purl.obolibrary.org/obo/UBERON_0002993,inferior central nucleus,nucleus centralis inferior +http://purl.obolibrary.org/obo/UBERON_0002993,inferior central nucleus,nucleus tegmentalis centralis inferior +http://purl.obolibrary.org/obo/UBERON_0002995,substantia nigra pars lateralis,lateral part of substantia nigra +http://purl.obolibrary.org/obo/UBERON_0002995,substantia nigra pars lateralis,pars lateralis +http://purl.obolibrary.org/obo/UBERON_0002995,substantia nigra pars lateralis,pars lateralis substantiae nigrae +http://purl.obolibrary.org/obo/UBERON_0002995,substantia nigra pars lateralis,"substantia nigra, lateral part" +http://purl.obolibrary.org/obo/UBERON_0002996,nucleus of optic tract,large-celled nucleus of optic tract +http://purl.obolibrary.org/obo/UBERON_0002996,nucleus of optic tract,lentiform nucleus of pretectal area +http://purl.obolibrary.org/obo/UBERON_0002996,nucleus of optic tract,nucleus of the optic tract +http://purl.obolibrary.org/obo/UBERON_0002996,nucleus of optic tract,optic tract nucleus +http://purl.obolibrary.org/obo/UBERON_0002997,nucleus of medial eminence,medial eminence nucleus +http://purl.obolibrary.org/obo/UBERON_0002997,nucleus of medial eminence,nucleus eminentiae teretis +http://purl.obolibrary.org/obo/UBERON_0002997,nucleus of medial eminence,nucleus of eminentia teres +http://purl.obolibrary.org/obo/UBERON_0002998,inferior frontal gyrus,inferior frontal convolution +http://purl.obolibrary.org/obo/UBERON_0002999,oral pontine reticular nucleus,"pontine reticular nucleus, rostral part" +http://purl.obolibrary.org/obo/UBERON_0003001,nervous system lemniscus,lemniscus +http://purl.obolibrary.org/obo/UBERON_0003001,nervous system lemniscus,neuraxis lemniscus +http://purl.obolibrary.org/obo/UBERON_0003002,medial lemniscus, +http://purl.obolibrary.org/obo/UBERON_0003004,median raphe nucleus,MRN +http://purl.obolibrary.org/obo/UBERON_0003004,median raphe nucleus,cell group b8 +http://purl.obolibrary.org/obo/UBERON_0003004,median raphe nucleus,medial raphe nucleus +http://purl.obolibrary.org/obo/UBERON_0003004,median raphe nucleus,median nucleus of the raphe +http://purl.obolibrary.org/obo/UBERON_0003004,median raphe nucleus,nucleus centralis superior +http://purl.obolibrary.org/obo/UBERON_0003004,median raphe nucleus,nucleus raphes medianus +http://purl.obolibrary.org/obo/UBERON_0003004,median raphe nucleus,superior central nucleus +http://purl.obolibrary.org/obo/UBERON_0003004,median raphe nucleus,superior central nucleus raphe +http://purl.obolibrary.org/obo/UBERON_0003004,median raphe nucleus,superior central tegmental nucleus +http://purl.obolibrary.org/obo/UBERON_0003005,dorsal longitudinal fasciculus of midbrain,bundle of Schutz of midbrain +http://purl.obolibrary.org/obo/UBERON_0003005,dorsal longitudinal fasciculus of midbrain,fasciculus of Schutz of midbrain +http://purl.obolibrary.org/obo/UBERON_0003005,dorsal longitudinal fasciculus of midbrain,midbrain bundle of Schutz +http://purl.obolibrary.org/obo/UBERON_0003005,dorsal longitudinal fasciculus of midbrain,midbrain dorsal longitudinal fasciculus +http://purl.obolibrary.org/obo/UBERON_0003005,dorsal longitudinal fasciculus of midbrain,midbrain fasciculus of Schutz +http://purl.obolibrary.org/obo/UBERON_0003005,dorsal longitudinal fasciculus of midbrain,midbrain posterior longitudinal fasciculus +http://purl.obolibrary.org/obo/UBERON_0003005,dorsal longitudinal fasciculus of midbrain,posterior longitudinal fasciculus of midbrain +http://purl.obolibrary.org/obo/UBERON_0003006,dorsal nucleus of lateral lemniscus,dorsal nucleus of the lateral lemniscus +http://purl.obolibrary.org/obo/UBERON_0003006,dorsal nucleus of lateral lemniscus,"nucleus of the lateral lemniscus, dorsal part" +http://purl.obolibrary.org/obo/UBERON_0003006,dorsal nucleus of lateral lemniscus,nucleus posterior lemnisci lateralis +http://purl.obolibrary.org/obo/UBERON_0003006,dorsal nucleus of lateral lemniscus,posterior nucleus of lateral lemniscus +http://purl.obolibrary.org/obo/UBERON_0003007,lateral parabrachial nucleus, +http://purl.obolibrary.org/obo/UBERON_0003008,dorsal longitudinal fasciculus of hypothalamus, +http://purl.obolibrary.org/obo/UBERON_0003009,dorsal tegmental decussation,Meynert's decussation +http://purl.obolibrary.org/obo/UBERON_0003009,dorsal tegmental decussation,decussatio tegmentalis posterior +http://purl.obolibrary.org/obo/UBERON_0003009,dorsal tegmental decussation,dorsal fountain decussation +http://purl.obolibrary.org/obo/UBERON_0003009,dorsal tegmental decussation,fountain decussation of Meynert +http://purl.obolibrary.org/obo/UBERON_0003009,dorsal tegmental decussation,posterior tegmental decussation +http://purl.obolibrary.org/obo/UBERON_0003010,lateral pes lemniscus,deep pes lemniscus +http://purl.obolibrary.org/obo/UBERON_0003010,lateral pes lemniscus,fussschleife +http://purl.obolibrary.org/obo/UBERON_0003010,lateral pes lemniscus,lateral pontine bundle +http://purl.obolibrary.org/obo/UBERON_0003010,lateral pes lemniscus,laterale haubenfussschleife +http://purl.obolibrary.org/obo/UBERON_0003010,lateral pes lemniscus,laterale pontine buendel +http://purl.obolibrary.org/obo/UBERON_0003010,lateral pes lemniscus,pes lemniscus profond +http://purl.obolibrary.org/obo/UBERON_0003011,facial motor nucleus,branchiomotor nucleus of facial nerve +http://purl.obolibrary.org/obo/UBERON_0003011,facial motor nucleus,facial motor nucleus +http://purl.obolibrary.org/obo/UBERON_0003011,facial motor nucleus,facial nerve motor nucleus +http://purl.obolibrary.org/obo/UBERON_0003011,facial motor nucleus,facial nucleus +http://purl.obolibrary.org/obo/UBERON_0003011,facial motor nucleus,motor nucleus VII +http://purl.obolibrary.org/obo/UBERON_0003011,facial motor nucleus,motor nucleus of VII +http://purl.obolibrary.org/obo/UBERON_0003011,facial motor nucleus,motor nucleus of facial nerve +http://purl.obolibrary.org/obo/UBERON_0003011,facial motor nucleus,n. nervi facialis +http://purl.obolibrary.org/obo/UBERON_0003011,facial motor nucleus,nVII +http://purl.obolibrary.org/obo/UBERON_0003011,facial motor nucleus,nucleus facialis +http://purl.obolibrary.org/obo/UBERON_0003011,facial motor nucleus,nucleus motorius nervi facialis +http://purl.obolibrary.org/obo/UBERON_0003011,facial motor nucleus,nucleus nervi facialis +http://purl.obolibrary.org/obo/UBERON_0003012,flocculonodular lobe,cerebellum flocculonodular lobe +http://purl.obolibrary.org/obo/UBERON_0003012,flocculonodular lobe,flocculonodular lobe +http://purl.obolibrary.org/obo/UBERON_0003012,flocculonodular lobe,flocculonodular lobe of cerebellum +http://purl.obolibrary.org/obo/UBERON_0003012,flocculonodular lobe,lobus flocculonodularis +http://purl.obolibrary.org/obo/UBERON_0003012,flocculonodular lobe,posterior lobe-2 of cerebellum +http://purl.obolibrary.org/obo/UBERON_0003013,alar central lobule,ala centralis +http://purl.obolibrary.org/obo/UBERON_0003013,alar central lobule,alae of central lobule +http://purl.obolibrary.org/obo/UBERON_0003013,alar central lobule,"lobules II, III of vermis" +http://purl.obolibrary.org/obo/UBERON_0003015,anterior quadrangular lobule,anterior crescentic lobule of cerebellum +http://purl.obolibrary.org/obo/UBERON_0003015,anterior quadrangular lobule,anterior quadrangular lobule of cerebellum +http://purl.obolibrary.org/obo/UBERON_0003015,anterior quadrangular lobule,anterior quadrangular lobule of cerebellum [H IV et V] +http://purl.obolibrary.org/obo/UBERON_0003015,anterior quadrangular lobule,anterior semilunar lobule +http://purl.obolibrary.org/obo/UBERON_0003015,anterior quadrangular lobule,lobulus quadrangularis (pars rostralis) +http://purl.obolibrary.org/obo/UBERON_0003015,anterior quadrangular lobule,lobulus quadrangularis anterior cerebelli [h iv et v] +http://purl.obolibrary.org/obo/UBERON_0003015,anterior quadrangular lobule,semilunar lobule-1 (anterior) +http://purl.obolibrary.org/obo/UBERON_0003016,postcommissural fornix of brain,fornix (entering Corpus mamillare) +http://purl.obolibrary.org/obo/UBERON_0003016,postcommissural fornix of brain,postcommissural fornix +http://purl.obolibrary.org/obo/UBERON_0003017,substantia innominata,innominate substance +http://purl.obolibrary.org/obo/UBERON_0003017,substantia innominata,nucleus of substantia innominata +http://purl.obolibrary.org/obo/UBERON_0003017,substantia innominata,"substantia innominata (Reil, Reichert)" +http://purl.obolibrary.org/obo/UBERON_0003017,substantia innominata,substantia innominata of Meynert +http://purl.obolibrary.org/obo/UBERON_0003017,substantia innominata,substantia innominata of Reichert +http://purl.obolibrary.org/obo/UBERON_0003017,substantia innominata,substantia innominata of Reil +http://purl.obolibrary.org/obo/UBERON_0003017,substantia innominata,substriatal gray +http://purl.obolibrary.org/obo/UBERON_0003018,parvocellular part of ventral posteromedial nucleus,gustatory nucleus (thalamus) +http://purl.obolibrary.org/obo/UBERON_0003018,parvocellular part of ventral posteromedial nucleus,gustatory thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0003018,parvocellular part of ventral posteromedial nucleus,"nucleus ventralis posterior medialis thalami, pars parvicellularis" +http://purl.obolibrary.org/obo/UBERON_0003018,parvocellular part of ventral posteromedial nucleus,pars parvicellularis nuclei ventralis posteromedialis thalami +http://purl.obolibrary.org/obo/UBERON_0003018,parvocellular part of ventral posteromedial nucleus,parvicellular part of ventral posteromedial nucleus +http://purl.obolibrary.org/obo/UBERON_0003018,parvocellular part of ventral posteromedial nucleus,parvicellular part of ventral posteromedial nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0003018,parvocellular part of ventral posteromedial nucleus,"ventral posteromedial nucleus of thalamus, parvicellular part" +http://purl.obolibrary.org/obo/UBERON_0003018,parvocellular part of ventral posteromedial nucleus,"ventral posteromedial nucleus, parvocellular part" +http://purl.obolibrary.org/obo/UBERON_0003018,parvocellular part of ventral posteromedial nucleus,"ventral posteromedial thalamic nucleus, parvicellular part" +http://purl.obolibrary.org/obo/UBERON_0003018,parvocellular part of ventral posteromedial nucleus,"ventroposteromedial nucleus of the thalamus, parvicellular part" +http://purl.obolibrary.org/obo/UBERON_0003019,oral part of ventral posterolateral nucleus,nucleus lateralis intermedius lateralis +http://purl.obolibrary.org/obo/UBERON_0003019,oral part of ventral posterolateral nucleus,nucleus posteroventralis oralis +http://purl.obolibrary.org/obo/UBERON_0003019,oral part of ventral posterolateral nucleus,nucleus ventralis intermedius (dewulf) +http://purl.obolibrary.org/obo/UBERON_0003019,oral part of ventral posterolateral nucleus,nucleus ventralis intermedius (walker) +http://purl.obolibrary.org/obo/UBERON_0003019,oral part of ventral posterolateral nucleus,nucleus ventralis intermedius thalami +http://purl.obolibrary.org/obo/UBERON_0003019,oral part of ventral posterolateral nucleus,"nucleus ventralis posterior lateralis, pars oralis" +http://purl.obolibrary.org/obo/UBERON_0003019,oral part of ventral posterolateral nucleus,nucleus ventrointermedius +http://purl.obolibrary.org/obo/UBERON_0003019,oral part of ventral posterolateral nucleus,ventral part of ventral lateral posterior nucleus (jones) +http://purl.obolibrary.org/obo/UBERON_0003019,oral part of ventral posterolateral nucleus,"ventral posterolateral nucleus, oral part" +http://purl.obolibrary.org/obo/UBERON_0003019,oral part of ventral posterolateral nucleus,"ventral posterolateral thalamic nucleus, oral part" +http://purl.obolibrary.org/obo/UBERON_0003020,subcallosal area,adolfactory area +http://purl.obolibrary.org/obo/UBERON_0003020,subcallosal area,area paraolfactoria +http://purl.obolibrary.org/obo/UBERON_0003020,subcallosal area,paraolfactory area +http://purl.obolibrary.org/obo/UBERON_0003020,subcallosal area,parolfactory area +http://purl.obolibrary.org/obo/UBERON_0003021,central lobule,central lobule of cerebellum +http://purl.obolibrary.org/obo/UBERON_0003021,central lobule,central lobule of cerebellum [II and III] +http://purl.obolibrary.org/obo/UBERON_0003021,central lobule,lobulus centralis cerebelli [ii et iii] +http://purl.obolibrary.org/obo/UBERON_0003023,pontine tegmentum,dorsal pons +http://purl.obolibrary.org/obo/UBERON_0003023,pontine tegmentum,dorsal portion of pons +http://purl.obolibrary.org/obo/UBERON_0003023,pontine tegmentum,pars dorsalis pontis +http://purl.obolibrary.org/obo/UBERON_0003023,pontine tegmentum,pars posterior pontis +http://purl.obolibrary.org/obo/UBERON_0003023,pontine tegmentum,tegmental portion of pons +http://purl.obolibrary.org/obo/UBERON_0003023,pontine tegmentum,tegmentum of pons +http://purl.obolibrary.org/obo/UBERON_0003023,pontine tegmentum,tegmentum pontis +http://purl.obolibrary.org/obo/UBERON_0003024,principal part of ventral posteromedial nucleus,"nucleus ventralis posteromedialis, pars prinicipalis" +http://purl.obolibrary.org/obo/UBERON_0003025,brachium of inferior colliculus,brachium of medial geniculate +http://purl.obolibrary.org/obo/UBERON_0003025,brachium of inferior colliculus,inferior brachium +http://purl.obolibrary.org/obo/UBERON_0003025,brachium of inferior colliculus,inferior collicular brachium +http://purl.obolibrary.org/obo/UBERON_0003025,brachium of inferior colliculus,inferior colliculus brachium +http://purl.obolibrary.org/obo/UBERON_0003025,brachium of inferior colliculus,inferior quadrigeminal brachium +http://purl.obolibrary.org/obo/UBERON_0003025,brachium of inferior colliculus,peduncle of inferior colliculus +http://purl.obolibrary.org/obo/UBERON_0003026,limitans nucleus,limitans thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0003026,limitans nucleus,nucleus limitans +http://purl.obolibrary.org/obo/UBERON_0003026,limitans nucleus,nucleus limitans opticus (Hassler) +http://purl.obolibrary.org/obo/UBERON_0003026,limitans nucleus,nucleus limitans thalami +http://purl.obolibrary.org/obo/UBERON_0003027,cingulate cortex,cingulate neocortex +http://purl.obolibrary.org/obo/UBERON_0003028,commissure of inferior colliculus,caudal colliculus commissure +http://purl.obolibrary.org/obo/UBERON_0003028,commissure of inferior colliculus,commissure of caudal colliculus +http://purl.obolibrary.org/obo/UBERON_0003028,commissure of inferior colliculus,commissure of inferior colliculi +http://purl.obolibrary.org/obo/UBERON_0003028,commissure of inferior colliculus,commissure of posterior colliculus +http://purl.obolibrary.org/obo/UBERON_0003028,commissure of inferior colliculus,commissure of posterior corpus quadrigeminum +http://purl.obolibrary.org/obo/UBERON_0003028,commissure of inferior colliculus,inferior collicular commissure +http://purl.obolibrary.org/obo/UBERON_0003028,commissure of inferior colliculus,inferior colliculus commissure +http://purl.obolibrary.org/obo/UBERON_0003028,commissure of inferior colliculus,posterior colliculus commissure +http://purl.obolibrary.org/obo/UBERON_0003028,commissure of inferior colliculus,posterior corpus quadrigeminum commissure +http://purl.obolibrary.org/obo/UBERON_0003029,stria terminalis,semicircular stria +http://purl.obolibrary.org/obo/UBERON_0003029,stria terminalis,terminal stria +http://purl.obolibrary.org/obo/UBERON_0003030,posterior nucleus of thalamus,nucleus posterior thalami +http://purl.obolibrary.org/obo/UBERON_0003030,posterior nucleus of thalamus,nucleus thalami posterior +http://purl.obolibrary.org/obo/UBERON_0003031,submedial nucleus of thalamus,gelatinosus thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0003031,submedial nucleus of thalamus,nucleus submedialis thalami +http://purl.obolibrary.org/obo/UBERON_0003031,submedial nucleus of thalamus,nucleus submedius thalami +http://purl.obolibrary.org/obo/UBERON_0003031,submedial nucleus of thalamus,submedial nucleus +http://purl.obolibrary.org/obo/UBERON_0003031,submedial nucleus of thalamus,submedial nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0003031,submedial nucleus of thalamus,submedial nucleus thalamus +http://purl.obolibrary.org/obo/UBERON_0003031,submedial nucleus of thalamus,submedial thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0003033,suprageniculate nucleus of thalamus,nucleus suprageniculatus +http://purl.obolibrary.org/obo/UBERON_0003033,suprageniculate nucleus of thalamus,suprageniculate nucleus +http://purl.obolibrary.org/obo/UBERON_0003033,suprageniculate nucleus of thalamus,suprageniculate thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0003034,central dorsal nucleus of thalamus,central dorsal nucleus +http://purl.obolibrary.org/obo/UBERON_0003034,central dorsal nucleus of thalamus,central dorsal nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0003034,central dorsal nucleus of thalamus,nucleus centralis dorsalis thalami +http://purl.obolibrary.org/obo/UBERON_0003034,central dorsal nucleus of thalamus,nucleus centralis superior lateralis +http://purl.obolibrary.org/obo/UBERON_0003034,central dorsal nucleus of thalamus,nucleus centralis superior lateralis thalami +http://purl.obolibrary.org/obo/UBERON_0003036,central lateral nucleus,central lateral nucleus of thalamus +http://purl.obolibrary.org/obo/UBERON_0003036,central lateral nucleus,central lateral thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0003036,central lateral nucleus,centrolateral thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0003036,central lateral nucleus,nucleus centralis lateralis of thalamus +http://purl.obolibrary.org/obo/UBERON_0003036,central lateral nucleus,nucleus centralis lateralis thalami +http://purl.obolibrary.org/obo/UBERON_0003037,septum,septa +http://purl.obolibrary.org/obo/UBERON_0003038,thoracic spinal cord,pars thoracica medullae spinalis +http://purl.obolibrary.org/obo/UBERON_0003038,thoracic spinal cord,segmenta thoracica medullae spinalis [1-12] +http://purl.obolibrary.org/obo/UBERON_0003038,thoracic spinal cord,thoracic region of spinal cord +http://purl.obolibrary.org/obo/UBERON_0003038,thoracic spinal cord,thoracic segment of spinal cord +http://purl.obolibrary.org/obo/UBERON_0003038,thoracic spinal cord,thoracic segments of spinal cord [1-12] +http://purl.obolibrary.org/obo/UBERON_0003038,thoracic spinal cord,thoracic spinal cord +http://purl.obolibrary.org/obo/UBERON_0003039,anterior commissure anterior part,anterior commissure pars anterior +http://purl.obolibrary.org/obo/UBERON_0003039,anterior commissure anterior part,"anterior commissure, anterior part" +http://purl.obolibrary.org/obo/UBERON_0003039,anterior commissure anterior part,anterior part of anterior commissure +http://purl.obolibrary.org/obo/UBERON_0003039,anterior commissure anterior part,"commissura anterior, crus anterius" +http://purl.obolibrary.org/obo/UBERON_0003039,anterior commissure anterior part,"commissura anterior, pars anterior" +http://purl.obolibrary.org/obo/UBERON_0003039,anterior commissure anterior part,"commissura anterior, pars olfactoria" +http://purl.obolibrary.org/obo/UBERON_0003039,anterior commissure anterior part,"commissura rostralis, pars anterior" +http://purl.obolibrary.org/obo/UBERON_0003039,anterior commissure anterior part,olfactory limb of anterior commissure +http://purl.obolibrary.org/obo/UBERON_0003039,anterior commissure anterior part,olfactory part of anterior commissure +http://purl.obolibrary.org/obo/UBERON_0003039,anterior commissure anterior part,pars anterior commissurae anterioris +http://purl.obolibrary.org/obo/UBERON_0003039,anterior commissure anterior part,pars olfactoria commissurae anterioris +http://purl.obolibrary.org/obo/UBERON_0003040,Periaqueductal gray of midbrain,CGMB +http://purl.obolibrary.org/obo/UBERON_0003040,Periaqueductal gray of midbrain,anulus aquaeductus +http://purl.obolibrary.org/obo/UBERON_0003040,Periaqueductal gray of midbrain,anulus aqueductus cerebri +http://purl.obolibrary.org/obo/UBERON_0003040,Periaqueductal gray of midbrain,anulus of cerebral aqueduct +http://purl.obolibrary.org/obo/UBERON_0003040,Periaqueductal gray of midbrain,central (periaqueductal) gray +http://purl.obolibrary.org/obo/UBERON_0003040,Periaqueductal gray of midbrain,central gray +http://purl.obolibrary.org/obo/UBERON_0003040,Periaqueductal gray of midbrain,central gray of the midbrain +http://purl.obolibrary.org/obo/UBERON_0003040,Periaqueductal gray of midbrain,central gray substance of the midbrain +http://purl.obolibrary.org/obo/UBERON_0003040,Periaqueductal gray of midbrain,central grey +http://purl.obolibrary.org/obo/UBERON_0003040,Periaqueductal gray of midbrain,central grey substance of midbrain +http://purl.obolibrary.org/obo/UBERON_0003040,Periaqueductal gray of midbrain,griseum centrale +http://purl.obolibrary.org/obo/UBERON_0003040,Periaqueductal gray of midbrain,griseum centrale mesencephali +http://purl.obolibrary.org/obo/UBERON_0003040,Periaqueductal gray of midbrain,griseum periventriculare mesencephali +http://purl.obolibrary.org/obo/UBERON_0003040,Periaqueductal gray of midbrain,midbrain periaqueductal grey +http://purl.obolibrary.org/obo/UBERON_0003040,Periaqueductal gray of midbrain,pAG +http://purl.obolibrary.org/obo/UBERON_0003040,Periaqueductal gray of midbrain,periaquectuctal grey +http://purl.obolibrary.org/obo/UBERON_0003040,Periaqueductal gray of midbrain,periaqueductal gray +http://purl.obolibrary.org/obo/UBERON_0003040,Periaqueductal gray of midbrain,periaqueductal gray matter +http://purl.obolibrary.org/obo/UBERON_0003040,Periaqueductal gray of midbrain,periaqueductal gray of tegmentum +http://purl.obolibrary.org/obo/UBERON_0003040,Periaqueductal gray of midbrain,"periaqueductal gray, proper" +http://purl.obolibrary.org/obo/UBERON_0003040,Periaqueductal gray of midbrain,periaqueductal grey +http://purl.obolibrary.org/obo/UBERON_0003040,Periaqueductal gray of midbrain,periaqueductal grey matter +http://purl.obolibrary.org/obo/UBERON_0003040,Periaqueductal gray of midbrain,periaqueductal grey substance +http://purl.obolibrary.org/obo/UBERON_0003040,Periaqueductal gray of midbrain,s. grisea centralis +http://purl.obolibrary.org/obo/UBERON_0003040,Periaqueductal gray of midbrain,substantia grisea centralis +http://purl.obolibrary.org/obo/UBERON_0003040,Periaqueductal gray of midbrain,substantia grisea centralis mesencephali +http://purl.obolibrary.org/obo/UBERON_0003040,central gray substance of midbrain,CGMB +http://purl.obolibrary.org/obo/UBERON_0003040,central gray substance of midbrain,anulus aquaeductus +http://purl.obolibrary.org/obo/UBERON_0003040,central gray substance of midbrain,anulus aqueductus cerebri +http://purl.obolibrary.org/obo/UBERON_0003040,central gray substance of midbrain,anulus of cerebral aqueduct +http://purl.obolibrary.org/obo/UBERON_0003040,central gray substance of midbrain,central (periaqueductal) gray +http://purl.obolibrary.org/obo/UBERON_0003040,central gray substance of midbrain,central gray +http://purl.obolibrary.org/obo/UBERON_0003040,central gray substance of midbrain,central gray of the midbrain +http://purl.obolibrary.org/obo/UBERON_0003040,central gray substance of midbrain,central gray substance of the midbrain +http://purl.obolibrary.org/obo/UBERON_0003040,central gray substance of midbrain,central grey +http://purl.obolibrary.org/obo/UBERON_0003040,central gray substance of midbrain,central grey substance of midbrain +http://purl.obolibrary.org/obo/UBERON_0003040,central gray substance of midbrain,griseum centrale +http://purl.obolibrary.org/obo/UBERON_0003040,central gray substance of midbrain,griseum centrale mesencephali +http://purl.obolibrary.org/obo/UBERON_0003040,central gray substance of midbrain,griseum periventriculare mesencephali +http://purl.obolibrary.org/obo/UBERON_0003040,central gray substance of midbrain,midbrain periaqueductal grey +http://purl.obolibrary.org/obo/UBERON_0003040,central gray substance of midbrain,pAG +http://purl.obolibrary.org/obo/UBERON_0003040,central gray substance of midbrain,periaquectuctal grey +http://purl.obolibrary.org/obo/UBERON_0003040,central gray substance of midbrain,periaqueductal gray +http://purl.obolibrary.org/obo/UBERON_0003040,central gray substance of midbrain,periaqueductal gray matter +http://purl.obolibrary.org/obo/UBERON_0003040,central gray substance of midbrain,periaqueductal gray of tegmentum +http://purl.obolibrary.org/obo/UBERON_0003040,central gray substance of midbrain,"periaqueductal gray, proper" +http://purl.obolibrary.org/obo/UBERON_0003040,central gray substance of midbrain,periaqueductal grey +http://purl.obolibrary.org/obo/UBERON_0003040,central gray substance of midbrain,periaqueductal grey matter +http://purl.obolibrary.org/obo/UBERON_0003040,central gray substance of midbrain,periaqueductal grey substance +http://purl.obolibrary.org/obo/UBERON_0003040,central gray substance of midbrain,s. grisea centralis +http://purl.obolibrary.org/obo/UBERON_0003040,central gray substance of midbrain,substantia grisea centralis +http://purl.obolibrary.org/obo/UBERON_0003040,central gray substance of midbrain,substantia grisea centralis mesencephali +http://purl.obolibrary.org/obo/UBERON_0003041,trigeminal nerve fibers,central part of trigeminal nerve +http://purl.obolibrary.org/obo/UBERON_0003041,trigeminal nerve fibers,fibrae nervi trigemini +http://purl.obolibrary.org/obo/UBERON_0003041,trigeminal nerve fibers,trigeminal nerve fibers +http://purl.obolibrary.org/obo/UBERON_0003041,trigeminal nerve fibers,trigeminal nerve tract +http://purl.obolibrary.org/obo/UBERON_0003043,posterior part of anterior commissure,anterior commissure pars posterior +http://purl.obolibrary.org/obo/UBERON_0003043,posterior part of anterior commissure,anterior commissure temporal limb +http://purl.obolibrary.org/obo/UBERON_0003043,posterior part of anterior commissure,"anterior commissure, posterior part" +http://purl.obolibrary.org/obo/UBERON_0003043,posterior part of anterior commissure,"commissura anterior, crus posterius" +http://purl.obolibrary.org/obo/UBERON_0003043,posterior part of anterior commissure,"commissura anterior, pars posterior" +http://purl.obolibrary.org/obo/UBERON_0003043,posterior part of anterior commissure,"commissura rostralis, pars posterior" +http://purl.obolibrary.org/obo/UBERON_0003043,posterior part of anterior commissure,pars posterior commissurae anterioris +http://purl.obolibrary.org/obo/UBERON_0003043,posterior part of anterior commissure,temporal limb of anterior commissure +http://purl.obolibrary.org/obo/UBERON_0003044,uncinate fasciculus,cerebral uncinate fasciculus +http://purl.obolibrary.org/obo/UBERON_0003045,dorsal longitudinal fasciculus,bundle of Schutz +http://purl.obolibrary.org/obo/UBERON_0003045,dorsal longitudinal fasciculus,fasciculus longitudinalis posterior +http://purl.obolibrary.org/obo/UBERON_0003045,dorsal longitudinal fasciculus,fasciculus of Schutz +http://purl.obolibrary.org/obo/UBERON_0003045,dorsal longitudinal fasciculus,posterior longitudinal fasciculus +http://purl.obolibrary.org/obo/UBERON_0003046,ventral acoustic stria,anterior acoustic stria +http://purl.obolibrary.org/obo/UBERON_0003046,ventral acoustic stria,stria cochlearis anterior +http://purl.obolibrary.org/obo/UBERON_0003049,collagen and cuticulin-based cuticle, +http://purl.obolibrary.org/obo/UBERON_0003050,olfactory placode,olfactory placodes +http://purl.obolibrary.org/obo/UBERON_0003050,olfactory placode,placoda nasalis +http://purl.obolibrary.org/obo/UBERON_0003050,olfactory placode,placoda olfactoria +http://purl.obolibrary.org/obo/UBERON_0003051,ear vesicle,otic vesicle +http://purl.obolibrary.org/obo/UBERON_0003052,midbrain-hindbrain boundary,MHB +http://purl.obolibrary.org/obo/UBERON_0003052,midbrain-hindbrain boundary,mid-hindbrain boundary +http://purl.obolibrary.org/obo/UBERON_0003052,midbrain-hindbrain boundary,mid-hindbrain junction +http://purl.obolibrary.org/obo/UBERON_0003052,midbrain-hindbrain boundary,midbrain hindbrain boundary +http://purl.obolibrary.org/obo/UBERON_0003053,ventricular zone,VZ +http://purl.obolibrary.org/obo/UBERON_0003053,ventricular zone,brain ventricular zone +http://purl.obolibrary.org/obo/UBERON_0003053,ventricular zone,ventricular zone of brain +http://purl.obolibrary.org/obo/UBERON_0003054,roof plate,roof plate neural tube +http://purl.obolibrary.org/obo/UBERON_0003054,roof plate,roof plate neural tube region +http://purl.obolibrary.org/obo/UBERON_0003054,roof plate,roofplate +http://purl.obolibrary.org/obo/UBERON_0003055,periderm,skin periderm +http://purl.obolibrary.org/obo/UBERON_0003056,pre-chordal neural plate, +http://purl.obolibrary.org/obo/UBERON_0003057,chordal neural plate, +http://purl.obolibrary.org/obo/UBERON_0003058,hypochord,ipochord +http://purl.obolibrary.org/obo/UBERON_0003058,hypochord,subnotochordal rod +http://purl.obolibrary.org/obo/UBERON_0003059,presomitic mesoderm,segmental plate +http://purl.obolibrary.org/obo/UBERON_0003059,presomitic mesoderm,unsegmented paraxial mesoderm +http://purl.obolibrary.org/obo/UBERON_0003060,pronephric duct, +http://purl.obolibrary.org/obo/UBERON_0003061,blood island,blood islands +http://purl.obolibrary.org/obo/UBERON_0003062,primitive knot,Hensen node +http://purl.obolibrary.org/obo/UBERON_0003062,primitive knot,Hensen's node +http://purl.obolibrary.org/obo/UBERON_0003062,primitive knot,Spemann Mangold organizer +http://purl.obolibrary.org/obo/UBERON_0003062,primitive knot,Spemann's organizer +http://purl.obolibrary.org/obo/UBERON_0003062,primitive knot,embryo organizer +http://purl.obolibrary.org/obo/UBERON_0003062,primitive knot,embryonic organizer +http://purl.obolibrary.org/obo/UBERON_0003062,primitive knot,embryonic shield +http://purl.obolibrary.org/obo/UBERON_0003062,primitive knot,organizer +http://purl.obolibrary.org/obo/UBERON_0003062,primitive knot,primitive node +http://purl.obolibrary.org/obo/UBERON_0003062,primitive knot,shield +http://purl.obolibrary.org/obo/UBERON_0003063,prechordal plate, +http://purl.obolibrary.org/obo/UBERON_0003064,intermediate mesoderm, +http://purl.obolibrary.org/obo/UBERON_0003065,ciliary marginal zone,peripheral growth zone +http://purl.obolibrary.org/obo/UBERON_0003065,ciliary marginal zone,retinal ciliary marginal zone +http://purl.obolibrary.org/obo/UBERON_0003066,pharyngeal arch 2,2nd pharyngeal arch +http://purl.obolibrary.org/obo/UBERON_0003066,pharyngeal arch 2,arcus pharyngeus secundus +http://purl.obolibrary.org/obo/UBERON_0003066,pharyngeal arch 2,branchial arch 2 +http://purl.obolibrary.org/obo/UBERON_0003066,pharyngeal arch 2,hyoid arch +http://purl.obolibrary.org/obo/UBERON_0003066,pharyngeal arch 2,pharyngeal arch 2 +http://purl.obolibrary.org/obo/UBERON_0003066,pharyngeal arch 2,second branchial arch +http://purl.obolibrary.org/obo/UBERON_0003066,pharyngeal arch 2,second pharyngeal arch +http://purl.obolibrary.org/obo/UBERON_0003066,pharyngeal arch 2,second visceral arch +http://purl.obolibrary.org/obo/UBERON_0003066,pharyngeal arch 2,visceral arch 2 +http://purl.obolibrary.org/obo/UBERON_0003067,dorsolateral placode,dorsolateral placodes +http://purl.obolibrary.org/obo/UBERON_0003068,axial mesoderm, +http://purl.obolibrary.org/obo/UBERON_0003069,otic placode,placoda otica +http://purl.obolibrary.org/obo/UBERON_0003070,trigeminal placode complex,trigeminal V placode +http://purl.obolibrary.org/obo/UBERON_0003070,trigeminal placode complex,trigeminal placode +http://purl.obolibrary.org/obo/UBERON_0003071,eye primordium,eye placode +http://purl.obolibrary.org/obo/UBERON_0003071,eye primordium,occular primordium +http://purl.obolibrary.org/obo/UBERON_0003071,eye primordium,ocular primordium +http://purl.obolibrary.org/obo/UBERON_0003071,eye primordium,optic placode +http://purl.obolibrary.org/obo/UBERON_0003071,eye primordium,optic placode of camera-type eye +http://purl.obolibrary.org/obo/UBERON_0003071,eye primordium,optic primordium +http://purl.obolibrary.org/obo/UBERON_0003072,optic cup, +http://purl.obolibrary.org/obo/UBERON_0003073,lens placode, +http://purl.obolibrary.org/obo/UBERON_0003074,mesonephric duct,Wolffian duct +http://purl.obolibrary.org/obo/UBERON_0003075,neural plate, +http://purl.obolibrary.org/obo/UBERON_0003076,posterior neural tube, +http://purl.obolibrary.org/obo/UBERON_0003077,paraxial mesoderm,paraxial mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003077,paraxial mesoderm,somitic mesoderm +http://purl.obolibrary.org/obo/UBERON_0003078,epibranchial placode,epibranchial placodes +http://purl.obolibrary.org/obo/UBERON_0003079,floor plate,floorplate +http://purl.obolibrary.org/obo/UBERON_0003080,anterior neural tube, +http://purl.obolibrary.org/obo/UBERON_0003081,lateral plate mesoderm,LPM +http://purl.obolibrary.org/obo/UBERON_0003081,lateral plate mesoderm,lateral mesoderm +http://purl.obolibrary.org/obo/UBERON_0003082,myotome,myomeres +http://purl.obolibrary.org/obo/UBERON_0003083,trunk neural crest,TNC +http://purl.obolibrary.org/obo/UBERON_0003084,heart primordium, +http://purl.obolibrary.org/obo/UBERON_0003085,ventral aorta, +http://purl.obolibrary.org/obo/UBERON_0003086,caudal artery, +http://purl.obolibrary.org/obo/UBERON_0003087,anterior cardinal vein,rostral cardinal vein +http://purl.obolibrary.org/obo/UBERON_0003088,caudal vein, +http://purl.obolibrary.org/obo/UBERON_0003089,sclerotome,sclerotomes +http://purl.obolibrary.org/obo/UBERON_0003090,supraorbital lateral line,supraorbital line +http://purl.obolibrary.org/obo/UBERON_0003091,thyroid primordium, +http://purl.obolibrary.org/obo/UBERON_0003092,ultimobranchial body,corpus ultimopharyngeum +http://purl.obolibrary.org/obo/UBERON_0003092,ultimobranchial body,postbranchial body +http://purl.obolibrary.org/obo/UBERON_0003092,ultimobranchial body,telobranchial body +http://purl.obolibrary.org/obo/UBERON_0003092,ultimobranchial body,telopharyngeal body +http://purl.obolibrary.org/obo/UBERON_0003092,ultimobranchial body,ultimobranchial +http://purl.obolibrary.org/obo/UBERON_0003092,ultimobranchial body,ultimobranchial bodies +http://purl.obolibrary.org/obo/UBERON_0003092,ultimobranchial body,ultimobranchial gland +http://purl.obolibrary.org/obo/UBERON_0003092,ultimobranchial body,ultimopharyngeal body +http://purl.obolibrary.org/obo/UBERON_0003092,ultimobranchial body,ultimopharyngeal gland +http://purl.obolibrary.org/obo/UBERON_0003093,occipital lateral line, +http://purl.obolibrary.org/obo/UBERON_0003094,infraorbital lateral line,infraorbital line +http://purl.obolibrary.org/obo/UBERON_0003095,dorsal lateral line, +http://purl.obolibrary.org/obo/UBERON_0003096,middle lateral line, +http://purl.obolibrary.org/obo/UBERON_0003097,dorsal fin, +http://purl.obolibrary.org/obo/UBERON_0003098,optic stalk, +http://purl.obolibrary.org/obo/UBERON_0003099,cranial neural crest,CNC +http://purl.obolibrary.org/obo/UBERON_0003099,cranial neural crest,cephalic neural crest +http://purl.obolibrary.org/obo/UBERON_0003099,cranial neural crest,cranial NCC population +http://purl.obolibrary.org/obo/UBERON_0003099,cranial neural crest,head NCC population +http://purl.obolibrary.org/obo/UBERON_0003100,female organism,female +http://purl.obolibrary.org/obo/UBERON_0003100,female organism,female human body +http://purl.obolibrary.org/obo/UBERON_0003101,male organism,male +http://purl.obolibrary.org/obo/UBERON_0003101,male organism,male human body +http://purl.obolibrary.org/obo/UBERON_0003102,surface structure,anatomical surface feature +http://purl.obolibrary.org/obo/UBERON_0003103,compound organ,organ +http://purl.obolibrary.org/obo/UBERON_0003104,mesenchyme,mesenchymal tissue +http://purl.obolibrary.org/obo/UBERON_0003104,mesenchyme,mesenchyme tissue +http://purl.obolibrary.org/obo/UBERON_0003104,mesenchyme,portion of mesenchymal tissue +http://purl.obolibrary.org/obo/UBERON_0003104,mesenchyme,portion of mesenchyme tissue +http://purl.obolibrary.org/obo/UBERON_0003105,dorsal lateral plate region,DLP +http://purl.obolibrary.org/obo/UBERON_0003106,urostyle, +http://purl.obolibrary.org/obo/UBERON_0003107,Meckel's cartilage,Meckels cartilage +http://purl.obolibrary.org/obo/UBERON_0003107,Meckel's cartilage,cartilago arcus pharyngei primi +http://purl.obolibrary.org/obo/UBERON_0003107,Meckel's cartilage,primary mandinle +http://purl.obolibrary.org/obo/UBERON_0003107,Meckel's cartilage,ventral mandibular cartilage +http://purl.obolibrary.org/obo/UBERON_0003108,suspensorium,hyopalatine +http://purl.obolibrary.org/obo/UBERON_0003108,suspensorium,suspensoria +http://purl.obolibrary.org/obo/UBERON_0003109,parapophysis,lateral process of basiventral +http://purl.obolibrary.org/obo/UBERON_0003109,parapophysis,parapophyses +http://purl.obolibrary.org/obo/UBERON_0003109,parapophysis,transverse apophyses +http://purl.obolibrary.org/obo/UBERON_0003109,parapophysis,transverse apophysis +http://purl.obolibrary.org/obo/UBERON_0003110,otic region, +http://purl.obolibrary.org/obo/UBERON_0003111,sphenoid region, +http://purl.obolibrary.org/obo/UBERON_0003112,olfactory region, +http://purl.obolibrary.org/obo/UBERON_0003113,dermatocranium,dendrocranium +http://purl.obolibrary.org/obo/UBERON_0003113,dermatocranium,exocranium +http://purl.obolibrary.org/obo/UBERON_0003114,pharyngeal arch 3,3rd pharyngeal arch +http://purl.obolibrary.org/obo/UBERON_0003114,pharyngeal arch 3,first gill arch +http://purl.obolibrary.org/obo/UBERON_0003114,pharyngeal arch 3,gill arch 1 +http://purl.obolibrary.org/obo/UBERON_0003114,pharyngeal arch 3,third pharyngeal arch +http://purl.obolibrary.org/obo/UBERON_0003114,pharyngeal arch 3,third visceral arch +http://purl.obolibrary.org/obo/UBERON_0003114,pharyngeal arch 3,visceral arch 3 +http://purl.obolibrary.org/obo/UBERON_0003115,pharyngeal arch 4,4th branchial arch +http://purl.obolibrary.org/obo/UBERON_0003115,pharyngeal arch 4,4th pharyngeal arch +http://purl.obolibrary.org/obo/UBERON_0003115,pharyngeal arch 4,4th visceral arch +http://purl.obolibrary.org/obo/UBERON_0003115,pharyngeal arch 4,fourth pharyngeal arch +http://purl.obolibrary.org/obo/UBERON_0003115,pharyngeal arch 4,gill arch 2 +http://purl.obolibrary.org/obo/UBERON_0003115,pharyngeal arch 4,second gill arch +http://purl.obolibrary.org/obo/UBERON_0003115,pharyngeal arch 4,visceral arch 4 +http://purl.obolibrary.org/obo/UBERON_0003116,pharyngeal arch 5,fifth visceral arch +http://purl.obolibrary.org/obo/UBERON_0003116,pharyngeal arch 5,gill arch 3 +http://purl.obolibrary.org/obo/UBERON_0003116,pharyngeal arch 5,visceral arch 5 +http://purl.obolibrary.org/obo/UBERON_0003117,pharyngeal arch 6,6th arch +http://purl.obolibrary.org/obo/UBERON_0003117,pharyngeal arch 6,gill arch 4 +http://purl.obolibrary.org/obo/UBERON_0003117,pharyngeal arch 6,sixth branchial arch +http://purl.obolibrary.org/obo/UBERON_0003117,pharyngeal arch 6,visceral arch 6 +http://purl.obolibrary.org/obo/UBERON_0003118,pharyngeal arch artery 1,1st arch artery +http://purl.obolibrary.org/obo/UBERON_0003118,pharyngeal arch artery 1,AA1 +http://purl.obolibrary.org/obo/UBERON_0003118,pharyngeal arch artery 1,aortic arch 1 +http://purl.obolibrary.org/obo/UBERON_0003118,pharyngeal arch artery 1,first aortic arch +http://purl.obolibrary.org/obo/UBERON_0003118,pharyngeal arch artery 1,first branchial arch artery +http://purl.obolibrary.org/obo/UBERON_0003118,pharyngeal arch artery 1,mandibular aortic arch +http://purl.obolibrary.org/obo/UBERON_0003119,pharyngeal arch artery 2,2nd arch artery +http://purl.obolibrary.org/obo/UBERON_0003119,pharyngeal arch artery 2,AA2 +http://purl.obolibrary.org/obo/UBERON_0003119,pharyngeal arch artery 2,aortic arch 2 +http://purl.obolibrary.org/obo/UBERON_0003119,pharyngeal arch artery 2,hyoid aortic arch +http://purl.obolibrary.org/obo/UBERON_0003119,pharyngeal arch artery 2,second aortic arch +http://purl.obolibrary.org/obo/UBERON_0003119,pharyngeal arch artery 2,second branchial arch artery +http://purl.obolibrary.org/obo/UBERON_0003120,pharyngeal arch artery 3,3rd arch artery +http://purl.obolibrary.org/obo/UBERON_0003120,pharyngeal arch artery 3,AA3 +http://purl.obolibrary.org/obo/UBERON_0003120,pharyngeal arch artery 3,aortic arch 3 +http://purl.obolibrary.org/obo/UBERON_0003120,pharyngeal arch artery 3,carotid arch +http://purl.obolibrary.org/obo/UBERON_0003120,pharyngeal arch artery 3,third aortic arch +http://purl.obolibrary.org/obo/UBERON_0003120,pharyngeal arch artery 3,third branchial arch artery +http://purl.obolibrary.org/obo/UBERON_0003121,pharyngeal arch artery 4,4th arch artery +http://purl.obolibrary.org/obo/UBERON_0003121,pharyngeal arch artery 4,AA4 +http://purl.obolibrary.org/obo/UBERON_0003121,pharyngeal arch artery 4,aortic arch 4 +http://purl.obolibrary.org/obo/UBERON_0003121,pharyngeal arch artery 4,fourth aortic arch +http://purl.obolibrary.org/obo/UBERON_0003121,pharyngeal arch artery 4,fourth branchial arch artery +http://purl.obolibrary.org/obo/UBERON_0003122,pharyngeal arch artery 5,AA5 +http://purl.obolibrary.org/obo/UBERON_0003122,pharyngeal arch artery 5,aortic arch 5 +http://purl.obolibrary.org/obo/UBERON_0003122,pharyngeal arch artery 5,fifth aortic arch +http://purl.obolibrary.org/obo/UBERON_0003123,pharyngeal arch artery 6,6th arch artery +http://purl.obolibrary.org/obo/UBERON_0003123,pharyngeal arch artery 6,AA6 +http://purl.obolibrary.org/obo/UBERON_0003123,pharyngeal arch artery 6,aortic arch 6 +http://purl.obolibrary.org/obo/UBERON_0003123,pharyngeal arch artery 6,sixth aortic arch +http://purl.obolibrary.org/obo/UBERON_0003123,pharyngeal arch artery 6,sixth branchial arch artery +http://purl.obolibrary.org/obo/UBERON_0003124,chorion membrane,chorion +http://purl.obolibrary.org/obo/UBERON_0003124,chorion membrane,chorion (vertebrates) +http://purl.obolibrary.org/obo/UBERON_0003124,chorion membrane,embryonic chorion +http://purl.obolibrary.org/obo/UBERON_0003124,chorion membrane,fetal chorion +http://purl.obolibrary.org/obo/UBERON_0003124,chorion membrane,uterine chorion +http://purl.obolibrary.org/obo/UBERON_0003125,vitelline membrane, +http://purl.obolibrary.org/obo/UBERON_0003126,trachea,cartilaginous trachea +http://purl.obolibrary.org/obo/UBERON_0003126,trachea,tracheal tubule +http://purl.obolibrary.org/obo/UBERON_0003126,trachea,vertebrate trachea +http://purl.obolibrary.org/obo/UBERON_0003126,trachea,windpipe +http://purl.obolibrary.org/obo/UBERON_0003127,open tracheal system trachea,invertebrate trachea +http://purl.obolibrary.org/obo/UBERON_0003127,open tracheal system trachea,trachea +http://purl.obolibrary.org/obo/UBERON_0003128,cranium,bones of cranium +http://purl.obolibrary.org/obo/UBERON_0003128,cranium,calvarium +http://purl.obolibrary.org/obo/UBERON_0003128,cranium,epicranial plate +http://purl.obolibrary.org/obo/UBERON_0003128,cranium,ossa cranii +http://purl.obolibrary.org/obo/UBERON_0003128,cranium,set of bones of cranium +http://purl.obolibrary.org/obo/UBERON_0003128,cranium,skeletal system of head +http://purl.obolibrary.org/obo/UBERON_0003128,cranium,skull minus mandible +http://purl.obolibrary.org/obo/UBERON_0003128,cranium,upper part of skull +http://purl.obolibrary.org/obo/UBERON_0003129,skull,cranial skeleton +http://purl.obolibrary.org/obo/UBERON_0003129,skull,skeletal system of head +http://purl.obolibrary.org/obo/UBERON_0003130,arthropod sternum, +http://purl.obolibrary.org/obo/UBERON_0003131,arthropod tibia, +http://purl.obolibrary.org/obo/UBERON_0003133,reproductive organ,genital organ +http://purl.obolibrary.org/obo/UBERON_0003133,reproductive organ,genitalia +http://purl.obolibrary.org/obo/UBERON_0003133,reproductive organ,reproductive system organ +http://purl.obolibrary.org/obo/UBERON_0003133,reproductive organ,sex organ +http://purl.obolibrary.org/obo/UBERON_0003134,female reproductive organ,female organism reproductive organ +http://purl.obolibrary.org/obo/UBERON_0003134,female reproductive organ,female organism reproductive structure +http://purl.obolibrary.org/obo/UBERON_0003134,female reproductive organ,female organism reproductive system organ +http://purl.obolibrary.org/obo/UBERON_0003134,female reproductive organ,female organism sex organ +http://purl.obolibrary.org/obo/UBERON_0003134,female reproductive organ,female reproductive gland/organ +http://purl.obolibrary.org/obo/UBERON_0003134,female reproductive organ,female reproductive system organ +http://purl.obolibrary.org/obo/UBERON_0003134,female reproductive organ,female sex organ +http://purl.obolibrary.org/obo/UBERON_0003134,female reproductive organ,reproductive organ of female organism +http://purl.obolibrary.org/obo/UBERON_0003134,female reproductive organ,reproductive structure of female organism +http://purl.obolibrary.org/obo/UBERON_0003134,female reproductive organ,reproductive system organ of female organism +http://purl.obolibrary.org/obo/UBERON_0003134,female reproductive organ,sex organ of female organism +http://purl.obolibrary.org/obo/UBERON_0003135,male reproductive organ,male genital +http://purl.obolibrary.org/obo/UBERON_0003135,male reproductive organ,male organism reproductive organ +http://purl.obolibrary.org/obo/UBERON_0003135,male reproductive organ,male organism reproductive structure +http://purl.obolibrary.org/obo/UBERON_0003135,male reproductive organ,male organism reproductive system organ +http://purl.obolibrary.org/obo/UBERON_0003135,male reproductive organ,male organism sex organ +http://purl.obolibrary.org/obo/UBERON_0003135,male reproductive organ,male reproductive gland/organ +http://purl.obolibrary.org/obo/UBERON_0003135,male reproductive organ,male reproductive system organ +http://purl.obolibrary.org/obo/UBERON_0003135,male reproductive organ,male sex organ +http://purl.obolibrary.org/obo/UBERON_0003135,male reproductive organ,reproductive organ of male organism +http://purl.obolibrary.org/obo/UBERON_0003135,male reproductive organ,reproductive structure of male organism +http://purl.obolibrary.org/obo/UBERON_0003135,male reproductive organ,reproductive system organ of male organism +http://purl.obolibrary.org/obo/UBERON_0003135,male reproductive organ,sex organ of male organism +http://purl.obolibrary.org/obo/UBERON_0003142,prepupa, +http://purl.obolibrary.org/obo/UBERON_0003143,pupa, +http://purl.obolibrary.org/obo/UBERON_0003153,insect head capsule, +http://purl.obolibrary.org/obo/UBERON_0003155,arthropod occiput, +http://purl.obolibrary.org/obo/UBERON_0003161,dorsal ocellus,ocellus +http://purl.obolibrary.org/obo/UBERON_0003162,lateral ocellus, +http://purl.obolibrary.org/obo/UBERON_0003194,imaginal disc-derived wing vein, +http://purl.obolibrary.org/obo/UBERON_0003199,egg chamber,germarium derived egg chamber +http://purl.obolibrary.org/obo/UBERON_0003201,exocuticle, +http://purl.obolibrary.org/obo/UBERON_0003202,endocuticle, +http://purl.obolibrary.org/obo/UBERON_0003209,blood nerve barrier,blood-nerve barrier +http://purl.obolibrary.org/obo/UBERON_0003210,blood-cerebrospinal fluid barrier,blood-CSF barrier +http://purl.obolibrary.org/obo/UBERON_0003211,median eye,medial ocellus +http://purl.obolibrary.org/obo/UBERON_0003211,median eye,median ocellus +http://purl.obolibrary.org/obo/UBERON_0003212,gustatory organ,gustatory organ system organ +http://purl.obolibrary.org/obo/UBERON_0003212,gustatory organ,gustatory system organ +http://purl.obolibrary.org/obo/UBERON_0003212,gustatory organ,organ of gustatory organ system +http://purl.obolibrary.org/obo/UBERON_0003212,gustatory organ,organ of gustatory system +http://purl.obolibrary.org/obo/UBERON_0003212,gustatory organ,organ of taste system +http://purl.obolibrary.org/obo/UBERON_0003212,gustatory organ,taste organ +http://purl.obolibrary.org/obo/UBERON_0003212,gustatory organ,taste system organ +http://purl.obolibrary.org/obo/UBERON_0003214,mammary gland alveolus,alveolus of lactiferous gland +http://purl.obolibrary.org/obo/UBERON_0003214,mammary gland alveolus,alveolus of lobe of breast +http://purl.obolibrary.org/obo/UBERON_0003214,mammary gland alveolus,alveolus of lobe of mammary gland +http://purl.obolibrary.org/obo/UBERON_0003214,mammary gland alveolus,alveolus of mammary gland +http://purl.obolibrary.org/obo/UBERON_0003214,mammary gland alveolus,lactiferous alveolus +http://purl.obolibrary.org/obo/UBERON_0003214,mammary gland alveolus,lactiferous gland alveolus +http://purl.obolibrary.org/obo/UBERON_0003214,mammary gland alveolus,lobe of breast alveolus +http://purl.obolibrary.org/obo/UBERON_0003214,mammary gland alveolus,lobe of mammary gland alveolus +http://purl.obolibrary.org/obo/UBERON_0003214,mammary gland alveolus,mammary alveolus +http://purl.obolibrary.org/obo/UBERON_0003215,alveolus, +http://purl.obolibrary.org/obo/UBERON_0003216,hard palate,hard palate +http://purl.obolibrary.org/obo/UBERON_0003216,hard palate,palatum durum +http://purl.obolibrary.org/obo/UBERON_0003217,neural lobe of neurohypophysis,lobus nervosus (Neurohypophysis) +http://purl.obolibrary.org/obo/UBERON_0003217,neural lobe of neurohypophysis,pars nervosa (hypophysis) +http://purl.obolibrary.org/obo/UBERON_0003217,neural lobe of neurohypophysis,pars nervosa (neurohypophysis) +http://purl.obolibrary.org/obo/UBERON_0003217,neural lobe of neurohypophysis,pars nervosa neurohypophysis +http://purl.obolibrary.org/obo/UBERON_0003217,neural lobe of neurohypophysis,pars nervosa of hypophysis +http://purl.obolibrary.org/obo/UBERON_0003217,neural lobe of neurohypophysis,pars nervosa of neurohypophysis +http://purl.obolibrary.org/obo/UBERON_0003217,neural lobe of neurohypophysis,pars nervosa of pituitary +http://purl.obolibrary.org/obo/UBERON_0003217,neural lobe of neurohypophysis,pars nervosa of posterior lobe of pituitary gland +http://purl.obolibrary.org/obo/UBERON_0003217,neural lobe of neurohypophysis,pars nervosa pituitary gland +http://purl.obolibrary.org/obo/UBERON_0003217,neural lobe of neurohypophysis,pars posterior +http://purl.obolibrary.org/obo/UBERON_0003217,neural lobe of neurohypophysis,pars posterior of hypophysis +http://purl.obolibrary.org/obo/UBERON_0003217,neural lobe of neurohypophysis,posterior lobe of neurohypophysis +http://purl.obolibrary.org/obo/UBERON_0003217,neural lobe of neurohypophysis,posterior lobe-3 +http://purl.obolibrary.org/obo/UBERON_0003218,ovary septum, +http://purl.obolibrary.org/obo/UBERON_0003219,shell septum, +http://purl.obolibrary.org/obo/UBERON_0003220,metanephric mesenchyme,metanephric blastema +http://purl.obolibrary.org/obo/UBERON_0003220,metanephric mesenchyme,metanephric mesoderm +http://purl.obolibrary.org/obo/UBERON_0003220,metanephric mesenchyme,metanephrogenic mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003220,metanephric mesenchyme,metanephros associated mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003221,phalanx,digit long bone +http://purl.obolibrary.org/obo/UBERON_0003221,phalanx,long bone of digit +http://purl.obolibrary.org/obo/UBERON_0003221,phalanx,phalange +http://purl.obolibrary.org/obo/UBERON_0003221,phalanx,phalanges +http://purl.obolibrary.org/obo/UBERON_0003221,phalanx,phalanx bone +http://purl.obolibrary.org/obo/UBERON_0003222,flexor digitorum superficialis,flexor digitorum superficialis muscle +http://purl.obolibrary.org/obo/UBERON_0003224,chorion syncytiotrophoblast, +http://purl.obolibrary.org/obo/UBERON_0003228,supinator muscle,supinator +http://purl.obolibrary.org/obo/UBERON_0003229,epithelium of elbow,cubital region epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003229,epithelium of elbow,cubital region epithelium +http://purl.obolibrary.org/obo/UBERON_0003229,epithelium of elbow,elbow epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003229,epithelium of elbow,elbow epithelium +http://purl.obolibrary.org/obo/UBERON_0003229,epithelium of elbow,epithelial tissue of cubital region +http://purl.obolibrary.org/obo/UBERON_0003229,epithelium of elbow,epithelial tissue of elbow +http://purl.obolibrary.org/obo/UBERON_0003229,epithelium of elbow,epithelium of cubital region +http://purl.obolibrary.org/obo/UBERON_0003230,epithelium of carpal region,carpal region epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003230,epithelium of carpal region,carpal region epithelium +http://purl.obolibrary.org/obo/UBERON_0003230,epithelium of carpal region,epithelial tissue of carpal region +http://purl.obolibrary.org/obo/UBERON_0003230,epithelium of carpal region,epithelial tissue of wrist +http://purl.obolibrary.org/obo/UBERON_0003230,epithelium of carpal region,epithelium of wrist +http://purl.obolibrary.org/obo/UBERON_0003230,epithelium of carpal region,wrist epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003230,epithelium of carpal region,wrist epithelium +http://purl.obolibrary.org/obo/UBERON_0003231,epithelium of hip,epithelial tissue of hip +http://purl.obolibrary.org/obo/UBERON_0003231,epithelium of hip,epithelial tissue of hip region +http://purl.obolibrary.org/obo/UBERON_0003231,epithelium of hip,epithelial tissue of regio coxae +http://purl.obolibrary.org/obo/UBERON_0003231,epithelium of hip,epithelium of hip region +http://purl.obolibrary.org/obo/UBERON_0003231,epithelium of hip,epithelium of regio coxae +http://purl.obolibrary.org/obo/UBERON_0003231,epithelium of hip,hip epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003231,epithelium of hip,hip epithelium +http://purl.obolibrary.org/obo/UBERON_0003231,epithelium of hip,hip region epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003231,epithelium of hip,hip region epithelium +http://purl.obolibrary.org/obo/UBERON_0003231,epithelium of hip,regio coxae epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003231,epithelium of hip,regio coxae epithelium +http://purl.obolibrary.org/obo/UBERON_0003232,epithelium of knee,epithelial tissue of knee +http://purl.obolibrary.org/obo/UBERON_0003232,epithelium of knee,knee epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003232,epithelium of knee,knee epithelium +http://purl.obolibrary.org/obo/UBERON_0003233,epithelium of shoulder,epithelial tissue of shoulder +http://purl.obolibrary.org/obo/UBERON_0003233,epithelium of shoulder,shoulder epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003233,epithelium of shoulder,shoulder epithelium +http://purl.obolibrary.org/obo/UBERON_0003234,extensor pollicis longus muscle,extensor pollicis longus +http://purl.obolibrary.org/obo/UBERON_0003235,epithelium of upper jaw,epithelial tissue of palatoquadrate arch +http://purl.obolibrary.org/obo/UBERON_0003235,epithelium of upper jaw,epithelial tissue of upper jaw +http://purl.obolibrary.org/obo/UBERON_0003235,epithelium of upper jaw,epithelium of palatoquadrate arch +http://purl.obolibrary.org/obo/UBERON_0003235,epithelium of upper jaw,palatoquadrate arch epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003235,epithelium of upper jaw,palatoquadrate arch epithelium +http://purl.obolibrary.org/obo/UBERON_0003235,epithelium of upper jaw,upper jaw epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003235,epithelium of upper jaw,upper jaw epithelium +http://purl.obolibrary.org/obo/UBERON_0003236,epithelium of lower jaw,epithelial tissue of lower jaw +http://purl.obolibrary.org/obo/UBERON_0003236,epithelium of lower jaw,epithelial tissue of ventral mandibular arch +http://purl.obolibrary.org/obo/UBERON_0003236,epithelium of lower jaw,epithelium of ventral mandibular arch +http://purl.obolibrary.org/obo/UBERON_0003236,epithelium of lower jaw,lower jaw epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003236,epithelium of lower jaw,lower jaw epithelium +http://purl.obolibrary.org/obo/UBERON_0003236,epithelium of lower jaw,ventral mandibular arch epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003236,epithelium of lower jaw,ventral mandibular arch epithelium +http://purl.obolibrary.org/obo/UBERON_0003238,epithelium of superior semicircular canal,anterior semicircular canal epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003238,epithelium of superior semicircular canal,anterior semicircular canal epithelium +http://purl.obolibrary.org/obo/UBERON_0003238,epithelium of superior semicircular canal,epithelial tissue of anterior semicircular canal +http://purl.obolibrary.org/obo/UBERON_0003238,epithelium of superior semicircular canal,epithelial tissue of superior semicircular canal +http://purl.obolibrary.org/obo/UBERON_0003238,epithelium of superior semicircular canal,epithelium of anterior semicircular canal +http://purl.obolibrary.org/obo/UBERON_0003238,epithelium of superior semicircular canal,superior semicircular canal epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003238,epithelium of superior semicircular canal,superior semicircular canal epithelium +http://purl.obolibrary.org/obo/UBERON_0003239,epithelium of posterior semicircular canal,epithelial tissue of posterior semicircular canal +http://purl.obolibrary.org/obo/UBERON_0003239,epithelium of posterior semicircular canal,posterior semicircular canal epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003239,epithelium of posterior semicircular canal,posterior semicircular canal epithelium +http://purl.obolibrary.org/obo/UBERON_0003240,epithelium of lateral semicircular canal,epithelial tissue of lateral semicircular canal +http://purl.obolibrary.org/obo/UBERON_0003240,epithelium of lateral semicircular canal,lateral semicircular canal epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003240,epithelium of lateral semicircular canal,lateral semicircular canal epithelium +http://purl.obolibrary.org/obo/UBERON_0003241,epithelium of utricle,epithelial tissue of membranous labyrinth utricle +http://purl.obolibrary.org/obo/UBERON_0003241,epithelium of utricle,epithelial tissue of utricle +http://purl.obolibrary.org/obo/UBERON_0003241,epithelium of utricle,epithelial tissue of utricle of membranous labyrinth +http://purl.obolibrary.org/obo/UBERON_0003241,epithelium of utricle,epithelial tissue of utriculus (labyrinthus vestibularis) +http://purl.obolibrary.org/obo/UBERON_0003241,epithelium of utricle,epithelium of membranous labyrinth utricle +http://purl.obolibrary.org/obo/UBERON_0003241,epithelium of utricle,epithelium of utricle of membranous labyrinth +http://purl.obolibrary.org/obo/UBERON_0003241,epithelium of utricle,epithelium of utriculus (labyrinthus vestibularis) +http://purl.obolibrary.org/obo/UBERON_0003241,epithelium of utricle,membranous labyrinth utricle epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003241,epithelium of utricle,membranous labyrinth utricle epithelium +http://purl.obolibrary.org/obo/UBERON_0003241,epithelium of utricle,utricle epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003241,epithelium of utricle,utricle epithelium +http://purl.obolibrary.org/obo/UBERON_0003241,epithelium of utricle,utricle of membranous labyrinth epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003241,epithelium of utricle,utricle of membranous labyrinth epithelium +http://purl.obolibrary.org/obo/UBERON_0003241,epithelium of utricle,utriculus (labyrinthus vestibularis) epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003241,epithelium of utricle,utriculus (labyrinthus vestibularis) epithelium +http://purl.obolibrary.org/obo/UBERON_0003242,epithelium of saccule,epithelial tissue of membranous labyrinth saccule +http://purl.obolibrary.org/obo/UBERON_0003242,epithelium of saccule,epithelial tissue of saccule +http://purl.obolibrary.org/obo/UBERON_0003242,epithelium of saccule,epithelial tissue of saccule of membranous labyrinth +http://purl.obolibrary.org/obo/UBERON_0003242,epithelium of saccule,epithelial tissue of sacculus (labyrinthus vestibularis) +http://purl.obolibrary.org/obo/UBERON_0003242,epithelium of saccule,epithelium of membranous labyrinth saccule +http://purl.obolibrary.org/obo/UBERON_0003242,epithelium of saccule,epithelium of saccule of membranous labyrinth +http://purl.obolibrary.org/obo/UBERON_0003242,epithelium of saccule,epithelium of sacculus (labyrinthus vestibularis) +http://purl.obolibrary.org/obo/UBERON_0003242,epithelium of saccule,membranous labyrinth saccule epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003242,epithelium of saccule,membranous labyrinth saccule epithelium +http://purl.obolibrary.org/obo/UBERON_0003242,epithelium of saccule,saccule epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003242,epithelium of saccule,saccule epithelium +http://purl.obolibrary.org/obo/UBERON_0003242,epithelium of saccule,saccule of membranous labyrinth epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003242,epithelium of saccule,saccule of membranous labyrinth epithelium +http://purl.obolibrary.org/obo/UBERON_0003242,epithelium of saccule,sacculus (labyrinthus vestibularis) epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003242,epithelium of saccule,sacculus (labyrinthus vestibularis) epithelium +http://purl.obolibrary.org/obo/UBERON_0003243,epithelium of cochlear duct,Reissner's canal epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003243,epithelium of cochlear duct,Reissner's canal epithelium +http://purl.obolibrary.org/obo/UBERON_0003243,epithelium of cochlear duct,cochlear duct epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003243,epithelium of cochlear duct,cochlear duct epithelium +http://purl.obolibrary.org/obo/UBERON_0003243,epithelium of cochlear duct,cochlear duct of membranous labyrinth epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003243,epithelium of cochlear duct,cochlear duct of membranous labyrinth epithelium +http://purl.obolibrary.org/obo/UBERON_0003243,epithelium of cochlear duct,epithelial tissue of Reissner's canal +http://purl.obolibrary.org/obo/UBERON_0003243,epithelium of cochlear duct,epithelial tissue of cochlear duct +http://purl.obolibrary.org/obo/UBERON_0003243,epithelium of cochlear duct,epithelial tissue of cochlear duct of membranous labyrinth +http://purl.obolibrary.org/obo/UBERON_0003243,epithelium of cochlear duct,epithelium of Reissner's canal +http://purl.obolibrary.org/obo/UBERON_0003243,epithelium of cochlear duct,epithelium of cochlear duct of membranous labyrinth +http://purl.obolibrary.org/obo/UBERON_0003244,epithelium of mammary gland,epithelium of lactiferous gland +http://purl.obolibrary.org/obo/UBERON_0003244,epithelium of mammary gland,lactiferous gland epithelium +http://purl.obolibrary.org/obo/UBERON_0003244,epithelium of mammary gland,mammary epithelium +http://purl.obolibrary.org/obo/UBERON_0003244,epithelium of mammary gland,mammary gland epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003244,epithelium of mammary gland,mammary gland epithelium +http://purl.obolibrary.org/obo/UBERON_0003246,epithelium of endolymphatic sac,endolymphatic sac epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003246,epithelium of endolymphatic sac,endolymphatic sac epithelium +http://purl.obolibrary.org/obo/UBERON_0003246,epithelium of endolymphatic sac,epithelial tissue of endolymphatic sac +http://purl.obolibrary.org/obo/UBERON_0003247,epithelium of forearm,forearm epithelium +http://purl.obolibrary.org/obo/UBERON_0003248,epithelium of footplate,foot plate epithelium +http://purl.obolibrary.org/obo/UBERON_0003248,epithelium of footplate,footplate epithelium +http://purl.obolibrary.org/obo/UBERON_0003249,epithelium of otic placode,epithelial tissue of otic placode +http://purl.obolibrary.org/obo/UBERON_0003249,epithelium of otic placode,otic epithelium +http://purl.obolibrary.org/obo/UBERON_0003249,epithelium of otic placode,otic placode epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003249,epithelium of otic placode,otic placode epithelium +http://purl.obolibrary.org/obo/UBERON_0003250,rectus capitis lateralis muscle,lateral rectus capitis +http://purl.obolibrary.org/obo/UBERON_0003250,rectus capitis lateralis muscle,musculus rectus capitis lateralis +http://purl.obolibrary.org/obo/UBERON_0003250,rectus capitis lateralis muscle,rectus capitis lateralis +http://purl.obolibrary.org/obo/UBERON_0003250,rectus capitis lateralis muscle,rectus capitus lateralis +http://purl.obolibrary.org/obo/UBERON_0003250,rectus capitis lateralis muscle,rectus capitus lateralis muscle +http://purl.obolibrary.org/obo/UBERON_0003251,temporal part of head, +http://purl.obolibrary.org/obo/UBERON_0003252,thoracic rib cage,cavea thoracis +http://purl.obolibrary.org/obo/UBERON_0003252,thoracic rib cage,rib cage +http://purl.obolibrary.org/obo/UBERON_0003252,thoracic rib cage,thoracic cage +http://purl.obolibrary.org/obo/UBERON_0003253,neck of rib,collum costae +http://purl.obolibrary.org/obo/UBERON_0003253,neck of rib,rib neck +http://purl.obolibrary.org/obo/UBERON_0003254,amniotic ectoderm,amnion ectoderm +http://purl.obolibrary.org/obo/UBERON_0003254,amniotic ectoderm,amnionic ectoderm +http://purl.obolibrary.org/obo/UBERON_0003257,yolk sac endoderm, +http://purl.obolibrary.org/obo/UBERON_0003258,endoderm of foregut,foregut endoderm +http://purl.obolibrary.org/obo/UBERON_0003259,endoderm of midgut,midgut endoderm +http://purl.obolibrary.org/obo/UBERON_0003260,endoderm of hindgut,hindgut endoderm +http://purl.obolibrary.org/obo/UBERON_0003261,thyroid primordium endoderm,endoderm of thyroid primordium +http://purl.obolibrary.org/obo/UBERON_0003262,amniotic mesoderm,amnion mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003262,amniotic mesoderm,amnion mesoderm +http://purl.obolibrary.org/obo/UBERON_0003262,amniotic mesoderm,amnionic mesoderm +http://purl.obolibrary.org/obo/UBERON_0003262,amniotic mesoderm,mesenchyme of amnion +http://purl.obolibrary.org/obo/UBERON_0003265,chorionic mesenchyme,chorion mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003265,chorionic mesenchyme,chorion mesoderm +http://purl.obolibrary.org/obo/UBERON_0003265,chorionic mesenchyme,chorionic mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003265,chorionic mesenchyme,mesenchyme of chorion +http://purl.obolibrary.org/obo/UBERON_0003265,chorionic mesenchyme,mesenchyme of chorion (vertebrates) +http://purl.obolibrary.org/obo/UBERON_0003267,tooth of upper jaw,upper jaw tooth +http://purl.obolibrary.org/obo/UBERON_0003268,tooth of lower jaw,calcareous tooth of lower jaw +http://purl.obolibrary.org/obo/UBERON_0003268,tooth of lower jaw,lower jaw calcareous tooth +http://purl.obolibrary.org/obo/UBERON_0003268,tooth of lower jaw,lower jaw dentine containing tooth +http://purl.obolibrary.org/obo/UBERON_0003268,tooth of lower jaw,lower jaw tooth +http://purl.obolibrary.org/obo/UBERON_0003268,tooth of lower jaw,lower jaw vertebrate tooth +http://purl.obolibrary.org/obo/UBERON_0003269,skeletal muscle tissue of eye,eye skeletal muscle +http://purl.obolibrary.org/obo/UBERON_0003269,skeletal muscle tissue of eye,eye skeletal muscle tissue +http://purl.obolibrary.org/obo/UBERON_0003269,skeletal muscle tissue of eye,skeletal muscle tissue of eye +http://purl.obolibrary.org/obo/UBERON_0003274,mesothelium of omental bursa,lesser sac mesothelium +http://purl.obolibrary.org/obo/UBERON_0003274,mesothelium of omental bursa,omental bursa mesothelium +http://purl.obolibrary.org/obo/UBERON_0003277,skeleton of upper jaw,upper jaw skeleton +http://purl.obolibrary.org/obo/UBERON_0003278,skeleton of lower jaw,lower jaw skeleton +http://purl.obolibrary.org/obo/UBERON_0003279,endothelium of trachea,endothelium of windpipe +http://purl.obolibrary.org/obo/UBERON_0003279,endothelium of trachea,trachea endothelium +http://purl.obolibrary.org/obo/UBERON_0003279,endothelium of trachea,windpipe endothelium +http://purl.obolibrary.org/obo/UBERON_0003280,endothelium of main bronchus,bronchus principalis endothelium +http://purl.obolibrary.org/obo/UBERON_0003280,endothelium of main bronchus,endothelium of bronchus principalis +http://purl.obolibrary.org/obo/UBERON_0003280,endothelium of main bronchus,endothelium of primary bronchus +http://purl.obolibrary.org/obo/UBERON_0003280,endothelium of main bronchus,endothelium of principal bronchus +http://purl.obolibrary.org/obo/UBERON_0003280,endothelium of main bronchus,main bronchus endothelium +http://purl.obolibrary.org/obo/UBERON_0003280,endothelium of main bronchus,primary bronchus endothelium +http://purl.obolibrary.org/obo/UBERON_0003280,endothelium of main bronchus,principal bronchus endothelium +http://purl.obolibrary.org/obo/UBERON_0003281,mesentery of stomach,mesentery of ventriculus +http://purl.obolibrary.org/obo/UBERON_0003281,mesentery of stomach,mesogaster +http://purl.obolibrary.org/obo/UBERON_0003281,mesentery of stomach,mesogastium +http://purl.obolibrary.org/obo/UBERON_0003281,mesentery of stomach,mesogastrium +http://purl.obolibrary.org/obo/UBERON_0003281,mesentery of stomach,stomach mesentery +http://purl.obolibrary.org/obo/UBERON_0003281,mesentery of stomach,ventriculus mesentery +http://purl.obolibrary.org/obo/UBERON_0003282,mesentery of heart,heart mesentery +http://purl.obolibrary.org/obo/UBERON_0003283,mesentery of oesophagus,esophagus mesentery +http://purl.obolibrary.org/obo/UBERON_0003283,mesentery of oesophagus,gullet mesentery +http://purl.obolibrary.org/obo/UBERON_0003283,mesentery of oesophagus,mesentery of esophagus +http://purl.obolibrary.org/obo/UBERON_0003283,mesentery of oesophagus,mesentery of gullet +http://purl.obolibrary.org/obo/UBERON_0003283,mesentery of oesophagus,meso-esophagus +http://purl.obolibrary.org/obo/UBERON_0003283,mesentery of oesophagus,oesophagus mesentery +http://purl.obolibrary.org/obo/UBERON_0003284,mesentery of midgut,midgut mesentery +http://purl.obolibrary.org/obo/UBERON_0003286,foregut region of duodenum,foregut duodenum +http://purl.obolibrary.org/obo/UBERON_0003287,midgut region of duodenum,midgut duodenum +http://purl.obolibrary.org/obo/UBERON_0003288,meninx of midbrain,meninges of midbrain +http://purl.obolibrary.org/obo/UBERON_0003288,meninx of midbrain,midbrain meninges +http://purl.obolibrary.org/obo/UBERON_0003288,meninx of midbrain,midbrain meninx +http://purl.obolibrary.org/obo/UBERON_0003289,meninx of telencephalon,meninges of telencephalon +http://purl.obolibrary.org/obo/UBERON_0003289,meninx of telencephalon,telencephalon meninges +http://purl.obolibrary.org/obo/UBERON_0003289,meninx of telencephalon,telencephalon meninx +http://purl.obolibrary.org/obo/UBERON_0003290,meninx of diencephalon,between brain meninges +http://purl.obolibrary.org/obo/UBERON_0003290,meninx of diencephalon,between brain meninx +http://purl.obolibrary.org/obo/UBERON_0003290,meninx of diencephalon,diencephalon meninges +http://purl.obolibrary.org/obo/UBERON_0003290,meninx of diencephalon,diencephalon meninx +http://purl.obolibrary.org/obo/UBERON_0003290,meninx of diencephalon,interbrain meninges +http://purl.obolibrary.org/obo/UBERON_0003290,meninx of diencephalon,interbrain meninx +http://purl.obolibrary.org/obo/UBERON_0003290,meninx of diencephalon,mature diencephalon meninges +http://purl.obolibrary.org/obo/UBERON_0003290,meninx of diencephalon,mature diencephalon meninx +http://purl.obolibrary.org/obo/UBERON_0003290,meninx of diencephalon,meninges of between brain +http://purl.obolibrary.org/obo/UBERON_0003290,meninx of diencephalon,meninges of diencephalon +http://purl.obolibrary.org/obo/UBERON_0003290,meninx of diencephalon,meninges of interbrain +http://purl.obolibrary.org/obo/UBERON_0003290,meninx of diencephalon,meninges of mature diencephalon +http://purl.obolibrary.org/obo/UBERON_0003290,meninx of diencephalon,meninx of between brain +http://purl.obolibrary.org/obo/UBERON_0003290,meninx of diencephalon,meninx of interbrain +http://purl.obolibrary.org/obo/UBERON_0003290,meninx of diencephalon,meninx of mature diencephalon +http://purl.obolibrary.org/obo/UBERON_0003291,meninx of hindbrain,hindbrain meninges +http://purl.obolibrary.org/obo/UBERON_0003291,meninx of hindbrain,hindbrain meninx +http://purl.obolibrary.org/obo/UBERON_0003291,meninx of hindbrain,meninges of hindbrain +http://purl.obolibrary.org/obo/UBERON_0003292,meninx of spinal cord,menines of spinal cord +http://purl.obolibrary.org/obo/UBERON_0003292,meninx of spinal cord,meninges of spinal cord +http://purl.obolibrary.org/obo/UBERON_0003292,meninx of spinal cord,spinal cord meninges +http://purl.obolibrary.org/obo/UBERON_0003292,meninx of spinal cord,spinal cord meninx +http://purl.obolibrary.org/obo/UBERON_0003292,meninx of spinal cord,spinal meninges +http://purl.obolibrary.org/obo/UBERON_0003292,meninx of spinal cord,spinal meninx +http://purl.obolibrary.org/obo/UBERON_0003294,gland of foregut,foregut gland +http://purl.obolibrary.org/obo/UBERON_0003295,pharyngeal gland,pharynx gland +http://purl.obolibrary.org/obo/UBERON_0003296,gland of diencephalon,diencephalon gland +http://purl.obolibrary.org/obo/UBERON_0003296,gland of diencephalon,interbrain gland +http://purl.obolibrary.org/obo/UBERON_0003297,gland of integumental system,integumental gland +http://purl.obolibrary.org/obo/UBERON_0003297,gland of integumental system,integumental system gland +http://purl.obolibrary.org/obo/UBERON_0003297,gland of integumental system,integumentary gland +http://purl.obolibrary.org/obo/UBERON_0003299,roof plate of midbrain,midbrain roof plate +http://purl.obolibrary.org/obo/UBERON_0003299,roof plate of midbrain,midbrain roofplate +http://purl.obolibrary.org/obo/UBERON_0003299,roof plate of midbrain,roof plate midbrain +http://purl.obolibrary.org/obo/UBERON_0003299,roof plate of midbrain,roof plate midbrain region +http://purl.obolibrary.org/obo/UBERON_0003299,roof plate of midbrain,roofplate of midbrain +http://purl.obolibrary.org/obo/UBERON_0003300,roof plate of telencephalon,roof plate telencephalon +http://purl.obolibrary.org/obo/UBERON_0003300,roof plate of telencephalon,roofplate of telencephalon +http://purl.obolibrary.org/obo/UBERON_0003300,roof plate of telencephalon,telencephalon roof plate +http://purl.obolibrary.org/obo/UBERON_0003300,roof plate of telencephalon,telencephalon roofplate +http://purl.obolibrary.org/obo/UBERON_0003301,roof plate of diencephalon,between brain roof plate +http://purl.obolibrary.org/obo/UBERON_0003301,roof plate of diencephalon,between brain roofplate +http://purl.obolibrary.org/obo/UBERON_0003301,roof plate of diencephalon,diencephalon roof plate +http://purl.obolibrary.org/obo/UBERON_0003301,roof plate of diencephalon,diencephalon roofplate +http://purl.obolibrary.org/obo/UBERON_0003301,roof plate of diencephalon,interbrain roof plate +http://purl.obolibrary.org/obo/UBERON_0003301,roof plate of diencephalon,interbrain roofplate +http://purl.obolibrary.org/obo/UBERON_0003301,roof plate of diencephalon,mature diencephalon roof plate +http://purl.obolibrary.org/obo/UBERON_0003301,roof plate of diencephalon,mature diencephalon roofplate +http://purl.obolibrary.org/obo/UBERON_0003301,roof plate of diencephalon,roof plate diencephalic region +http://purl.obolibrary.org/obo/UBERON_0003301,roof plate of diencephalon,roof plate diencephalon +http://purl.obolibrary.org/obo/UBERON_0003301,roof plate of diencephalon,roof plate of between brain +http://purl.obolibrary.org/obo/UBERON_0003301,roof plate of diencephalon,roof plate of interbrain +http://purl.obolibrary.org/obo/UBERON_0003301,roof plate of diencephalon,roof plate of mature diencephalon +http://purl.obolibrary.org/obo/UBERON_0003301,roof plate of diencephalon,roofplate of between brain +http://purl.obolibrary.org/obo/UBERON_0003301,roof plate of diencephalon,roofplate of diencephalon +http://purl.obolibrary.org/obo/UBERON_0003301,roof plate of diencephalon,roofplate of interbrain +http://purl.obolibrary.org/obo/UBERON_0003301,roof plate of diencephalon,roofplate of mature diencephalon +http://purl.obolibrary.org/obo/UBERON_0003302,roof plate of metencephalon,epencephalon-2 roof plate +http://purl.obolibrary.org/obo/UBERON_0003302,roof plate of metencephalon,epencephalon-2 roofplate +http://purl.obolibrary.org/obo/UBERON_0003302,roof plate of metencephalon,metencephalon roof plate +http://purl.obolibrary.org/obo/UBERON_0003302,roof plate of metencephalon,metencephalon roofplate +http://purl.obolibrary.org/obo/UBERON_0003302,roof plate of metencephalon,roof plate metencephalon +http://purl.obolibrary.org/obo/UBERON_0003302,roof plate of metencephalon,roof plate of epencephalon-2 +http://purl.obolibrary.org/obo/UBERON_0003302,roof plate of metencephalon,roofplate of epencephalon-2 +http://purl.obolibrary.org/obo/UBERON_0003302,roof plate of metencephalon,roofplate of metencephalon +http://purl.obolibrary.org/obo/UBERON_0003303,roof plate of medulla oblongata,bulb roof plate +http://purl.obolibrary.org/obo/UBERON_0003303,roof plate of medulla oblongata,bulb roofplate +http://purl.obolibrary.org/obo/UBERON_0003303,roof plate of medulla oblongata,medulla oblongata roof plate +http://purl.obolibrary.org/obo/UBERON_0003303,roof plate of medulla oblongata,medulla oblongata roofplate +http://purl.obolibrary.org/obo/UBERON_0003303,roof plate of medulla oblongata,medulla oblonmgata roof plate +http://purl.obolibrary.org/obo/UBERON_0003303,roof plate of medulla oblongata,medulla oblonmgata roofplate +http://purl.obolibrary.org/obo/UBERON_0003303,roof plate of medulla oblongata,metepencephalon roof plate +http://purl.obolibrary.org/obo/UBERON_0003303,roof plate of medulla oblongata,metepencephalon roofplate +http://purl.obolibrary.org/obo/UBERON_0003303,roof plate of medulla oblongata,roof plate medulla oblongata +http://purl.obolibrary.org/obo/UBERON_0003303,roof plate of medulla oblongata,roof plate of bulb +http://purl.obolibrary.org/obo/UBERON_0003303,roof plate of medulla oblongata,roof plate of medulla oblonmgata +http://purl.obolibrary.org/obo/UBERON_0003303,roof plate of medulla oblongata,roof plate of metepencephalon +http://purl.obolibrary.org/obo/UBERON_0003303,roof plate of medulla oblongata,roofplate of bulb +http://purl.obolibrary.org/obo/UBERON_0003303,roof plate of medulla oblongata,roofplate of medulla oblongata +http://purl.obolibrary.org/obo/UBERON_0003303,roof plate of medulla oblongata,roofplate of medulla oblonmgata +http://purl.obolibrary.org/obo/UBERON_0003303,roof plate of medulla oblongata,roofplate of metepencephalon +http://purl.obolibrary.org/obo/UBERON_0003304,mesoderm blood island,mesoderm blood islands +http://purl.obolibrary.org/obo/UBERON_0003306,floor plate of neural tube,floor plate neural tube +http://purl.obolibrary.org/obo/UBERON_0003306,floor plate of neural tube,floorplate of neural tube +http://purl.obolibrary.org/obo/UBERON_0003306,floor plate of neural tube,neural tube floor plate +http://purl.obolibrary.org/obo/UBERON_0003306,floor plate of neural tube,neural tube floorplate +http://purl.obolibrary.org/obo/UBERON_0003307,floor plate of midbrain,floor plate midbrain +http://purl.obolibrary.org/obo/UBERON_0003307,floor plate of midbrain,floor plate midbrain region +http://purl.obolibrary.org/obo/UBERON_0003307,floor plate of midbrain,floorplate of midbrain +http://purl.obolibrary.org/obo/UBERON_0003307,floor plate of midbrain,midbrain floor plate +http://purl.obolibrary.org/obo/UBERON_0003307,floor plate of midbrain,midbrain floorplate +http://purl.obolibrary.org/obo/UBERON_0003308,floor plate of telencephalon,floor plate telencephalic region +http://purl.obolibrary.org/obo/UBERON_0003308,floor plate of telencephalon,floor plate telencephalon +http://purl.obolibrary.org/obo/UBERON_0003308,floor plate of telencephalon,floorplate of telencephalon +http://purl.obolibrary.org/obo/UBERON_0003308,floor plate of telencephalon,floorplate telencephalon +http://purl.obolibrary.org/obo/UBERON_0003308,floor plate of telencephalon,telencephalon floor plate +http://purl.obolibrary.org/obo/UBERON_0003308,floor plate of telencephalon,telencephalon floorplate +http://purl.obolibrary.org/obo/UBERON_0003309,floor plate of diencephalon,between brain floor plate +http://purl.obolibrary.org/obo/UBERON_0003309,floor plate of diencephalon,between brain floorplate +http://purl.obolibrary.org/obo/UBERON_0003309,floor plate of diencephalon,diencephalon floor plate +http://purl.obolibrary.org/obo/UBERON_0003309,floor plate of diencephalon,diencephalon floorplate +http://purl.obolibrary.org/obo/UBERON_0003309,floor plate of diencephalon,floor plate diencephalic region +http://purl.obolibrary.org/obo/UBERON_0003309,floor plate of diencephalon,floor plate diencephalon +http://purl.obolibrary.org/obo/UBERON_0003309,floor plate of diencephalon,floor plate of between brain +http://purl.obolibrary.org/obo/UBERON_0003309,floor plate of diencephalon,floor plate of interbrain +http://purl.obolibrary.org/obo/UBERON_0003309,floor plate of diencephalon,floor plate of mature diencephalon +http://purl.obolibrary.org/obo/UBERON_0003309,floor plate of diencephalon,floorplate diencephalon +http://purl.obolibrary.org/obo/UBERON_0003309,floor plate of diencephalon,floorplate of between brain +http://purl.obolibrary.org/obo/UBERON_0003309,floor plate of diencephalon,floorplate of diencephalon +http://purl.obolibrary.org/obo/UBERON_0003309,floor plate of diencephalon,floorplate of interbrain +http://purl.obolibrary.org/obo/UBERON_0003309,floor plate of diencephalon,floorplate of mature diencephalon +http://purl.obolibrary.org/obo/UBERON_0003309,floor plate of diencephalon,interbrain floor plate +http://purl.obolibrary.org/obo/UBERON_0003309,floor plate of diencephalon,interbrain floorplate +http://purl.obolibrary.org/obo/UBERON_0003309,floor plate of diencephalon,mature diencephalon floor plate +http://purl.obolibrary.org/obo/UBERON_0003309,floor plate of diencephalon,mature diencephalon floorplate +http://purl.obolibrary.org/obo/UBERON_0003310,floor plate of metencephalon,epencephalon-2 floor plate +http://purl.obolibrary.org/obo/UBERON_0003310,floor plate of metencephalon,epencephalon-2 floorplate +http://purl.obolibrary.org/obo/UBERON_0003310,floor plate of metencephalon,floor plate metencephalon +http://purl.obolibrary.org/obo/UBERON_0003310,floor plate of metencephalon,floor plate of epencephalon-2 +http://purl.obolibrary.org/obo/UBERON_0003310,floor plate of metencephalon,floorplate of epencephalon-2 +http://purl.obolibrary.org/obo/UBERON_0003310,floor plate of metencephalon,floorplate of metencephalon +http://purl.obolibrary.org/obo/UBERON_0003310,floor plate of metencephalon,metencephalon floor plate +http://purl.obolibrary.org/obo/UBERON_0003310,floor plate of metencephalon,metencephalon floorplate +http://purl.obolibrary.org/obo/UBERON_0003311,floor plate of medulla oblongata,bulb floor plate +http://purl.obolibrary.org/obo/UBERON_0003311,floor plate of medulla oblongata,bulb floorplate +http://purl.obolibrary.org/obo/UBERON_0003311,floor plate of medulla oblongata,floor plate medulla oblongata +http://purl.obolibrary.org/obo/UBERON_0003311,floor plate of medulla oblongata,floor plate of bulb +http://purl.obolibrary.org/obo/UBERON_0003311,floor plate of medulla oblongata,floor plate of medulla oblonmgata +http://purl.obolibrary.org/obo/UBERON_0003311,floor plate of medulla oblongata,floor plate of metepencephalon +http://purl.obolibrary.org/obo/UBERON_0003311,floor plate of medulla oblongata,floorplate of bulb +http://purl.obolibrary.org/obo/UBERON_0003311,floor plate of medulla oblongata,floorplate of medulla oblongata +http://purl.obolibrary.org/obo/UBERON_0003311,floor plate of medulla oblongata,floorplate of medulla oblonmgata +http://purl.obolibrary.org/obo/UBERON_0003311,floor plate of medulla oblongata,floorplate of metepencephalon +http://purl.obolibrary.org/obo/UBERON_0003311,floor plate of medulla oblongata,medulla oblongata floor plate +http://purl.obolibrary.org/obo/UBERON_0003311,floor plate of medulla oblongata,medulla oblongata floorplate +http://purl.obolibrary.org/obo/UBERON_0003311,floor plate of medulla oblongata,medulla oblonmgata floor plate +http://purl.obolibrary.org/obo/UBERON_0003311,floor plate of medulla oblongata,medulla oblonmgata floorplate +http://purl.obolibrary.org/obo/UBERON_0003311,floor plate of medulla oblongata,metepencephalon floor plate +http://purl.obolibrary.org/obo/UBERON_0003311,floor plate of medulla oblongata,metepencephalon floorplate +http://purl.obolibrary.org/obo/UBERON_0003312,mesenchyme of testis,testis mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003314,eye mesenchyme,mesenchyme of eye +http://purl.obolibrary.org/obo/UBERON_0003315,mesenchyme of ovary,female reproductive system gonad mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003315,mesenchyme of ovary,female reproductive system gonada mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003315,mesenchyme of ovary,gonad of female reproductive system mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003315,mesenchyme of ovary,gonada of female reproductive system mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003315,mesenchyme of ovary,mesenchyme of female reproductive system gonad +http://purl.obolibrary.org/obo/UBERON_0003315,mesenchyme of ovary,mesenchyme of female reproductive system gonada +http://purl.obolibrary.org/obo/UBERON_0003315,mesenchyme of ovary,mesenchyme of gonad of female reproductive system +http://purl.obolibrary.org/obo/UBERON_0003315,mesenchyme of ovary,mesenchyme of gonada of female reproductive system +http://purl.obolibrary.org/obo/UBERON_0003315,mesenchyme of ovary,ovary mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003316,mesenchyme of yolk sac,yolk sac mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003317,odontogenic papilla of incisor,incisor dental papilla +http://purl.obolibrary.org/obo/UBERON_0003317,odontogenic papilla of incisor,incisor odontogenic papilla +http://purl.obolibrary.org/obo/UBERON_0003317,odontogenic papilla of incisor,incisor tooth odontogenic papilla +http://purl.obolibrary.org/obo/UBERON_0003317,odontogenic papilla of incisor,odontogenic papilla of incisor tooth +http://purl.obolibrary.org/obo/UBERON_0003318,mesenchyme of elbow,cubital region mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003318,mesenchyme of elbow,elbow mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003318,mesenchyme of elbow,mesenchyme of cubital region +http://purl.obolibrary.org/obo/UBERON_0003319,mesenchyme of carpal region,carpal region mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003319,mesenchyme of carpal region,carpus mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003319,mesenchyme of carpal region,mesenchyme of wrist +http://purl.obolibrary.org/obo/UBERON_0003319,mesenchyme of carpal region,wrist mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003320,mesenchyme of hip,hip mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003320,mesenchyme of hip,hip region mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003320,mesenchyme of hip,mesenchyme of hip region +http://purl.obolibrary.org/obo/UBERON_0003320,mesenchyme of hip,mesenchyme of regio coxae +http://purl.obolibrary.org/obo/UBERON_0003320,mesenchyme of hip,regio coxae mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003321,mesenchyme of knee,knee mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003322,mesenchyme of shoulder,shoulder mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003323,mesenchyme of upper jaw,mesenchyme of palatoquadrate arch +http://purl.obolibrary.org/obo/UBERON_0003323,mesenchyme of upper jaw,palatoquadrate arch mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003323,mesenchyme of upper jaw,upper jaw mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003324,mesenchyme of lower jaw,lower jaw mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003324,mesenchyme of lower jaw,mesenchyme of ventral mandibular arch +http://purl.obolibrary.org/obo/UBERON_0003324,mesenchyme of lower jaw,ventral mandibular arch mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003325,mesenchyme of pinna,auricle mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003325,mesenchyme of pinna,auricle of ear mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003325,mesenchyme of pinna,auricle of external ear mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003325,mesenchyme of pinna,auricula (auris externa) mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003325,mesenchyme of pinna,auricula mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003325,mesenchyme of pinna,mesenchyme of auricle +http://purl.obolibrary.org/obo/UBERON_0003325,mesenchyme of pinna,mesenchyme of auricle of ear +http://purl.obolibrary.org/obo/UBERON_0003325,mesenchyme of pinna,mesenchyme of auricle of external ear +http://purl.obolibrary.org/obo/UBERON_0003325,mesenchyme of pinna,mesenchyme of auricula +http://purl.obolibrary.org/obo/UBERON_0003325,mesenchyme of pinna,mesenchyme of auricula (auris externa) +http://purl.obolibrary.org/obo/UBERON_0003325,mesenchyme of pinna,mesenchyme of pinna of ear +http://purl.obolibrary.org/obo/UBERON_0003325,mesenchyme of pinna,pinna mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003325,mesenchyme of pinna,pinna of ear mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003326,mesenchyme of mammary gland,lactiferous gland mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003326,mesenchyme of mammary gland,lobe of breast mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003326,mesenchyme of mammary gland,lobe of mammary gland mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003326,mesenchyme of mammary gland,mammary gland mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003326,mesenchyme of mammary gland,mammary mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003326,mesenchyme of mammary gland,mesenchyme of lactiferous gland +http://purl.obolibrary.org/obo/UBERON_0003326,mesenchyme of mammary gland,mesenchyme of lobe of breast +http://purl.obolibrary.org/obo/UBERON_0003326,mesenchyme of mammary gland,mesenchyme of lobe of mammary gland +http://purl.obolibrary.org/obo/UBERON_0003327,mesenchyme of forearm, +http://purl.obolibrary.org/obo/UBERON_0003328,mesenchyme of footplate,foot plate mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003329,submucosa of anal canal,anal canal submucosa +http://purl.obolibrary.org/obo/UBERON_0003329,submucosa of anal canal,anal canal viewed anatomically submucosa +http://purl.obolibrary.org/obo/UBERON_0003329,submucosa of anal canal,anal region submucosa +http://purl.obolibrary.org/obo/UBERON_0003329,submucosa of anal canal,anatomical anal canal submucosa +http://purl.obolibrary.org/obo/UBERON_0003329,submucosa of anal canal,submucosa of anal canal viewed anatomically +http://purl.obolibrary.org/obo/UBERON_0003329,submucosa of anal canal,submucosa of anal region +http://purl.obolibrary.org/obo/UBERON_0003329,submucosa of anal canal,submucosa of anatomical anal canal +http://purl.obolibrary.org/obo/UBERON_0003330,submucosa of rectum,rectal submucosa +http://purl.obolibrary.org/obo/UBERON_0003330,submucosa of rectum,rectum submucosa +http://purl.obolibrary.org/obo/UBERON_0003330,submucosa of rectum,tela submucosa recti +http://purl.obolibrary.org/obo/UBERON_0003331,submucosa of colon,colon submucosa +http://purl.obolibrary.org/obo/UBERON_0003331,submucosa of colon,colonic submucosa +http://purl.obolibrary.org/obo/UBERON_0003331,submucosa of colon,large bowel submucosa +http://purl.obolibrary.org/obo/UBERON_0003331,submucosa of colon,submucosa of large bowel +http://purl.obolibrary.org/obo/UBERON_0003332,submucosa of duodenum,doudenal submucosa +http://purl.obolibrary.org/obo/UBERON_0003332,submucosa of duodenum,duodenal submucosa +http://purl.obolibrary.org/obo/UBERON_0003332,submucosa of duodenum,duodenum submucosa +http://purl.obolibrary.org/obo/UBERON_0003333,submucosa of jejunum,jejunal submucosa +http://purl.obolibrary.org/obo/UBERON_0003333,submucosa of jejunum,jejunum submucosa +http://purl.obolibrary.org/obo/UBERON_0003334,serosa of rectum,rectal serosa +http://purl.obolibrary.org/obo/UBERON_0003334,serosa of rectum,rectum serosa +http://purl.obolibrary.org/obo/UBERON_0003334,serosa of rectum,rectum serous membrane +http://purl.obolibrary.org/obo/UBERON_0003334,serosa of rectum,serous membrane of rectum +http://purl.obolibrary.org/obo/UBERON_0003334,serosa of rectum,visceral peritoneum of rectum +http://purl.obolibrary.org/obo/UBERON_0003335,serosa of colon,colon serosa +http://purl.obolibrary.org/obo/UBERON_0003335,serosa of colon,colon serous membrane +http://purl.obolibrary.org/obo/UBERON_0003335,serosa of colon,colonic serosa +http://purl.obolibrary.org/obo/UBERON_0003335,serosa of colon,large bowel serosa +http://purl.obolibrary.org/obo/UBERON_0003335,serosa of colon,large bowel serous membrane +http://purl.obolibrary.org/obo/UBERON_0003335,serosa of colon,serosa of large bowel +http://purl.obolibrary.org/obo/UBERON_0003335,serosa of colon,serous membrane of colon +http://purl.obolibrary.org/obo/UBERON_0003335,serosa of colon,serous membrane of large bowel +http://purl.obolibrary.org/obo/UBERON_0003335,serosa of colon,visceral peritoneum of colon +http://purl.obolibrary.org/obo/UBERON_0003336,serosa of duodenum,doudenal serosa +http://purl.obolibrary.org/obo/UBERON_0003336,serosa of duodenum,duodenal serosa +http://purl.obolibrary.org/obo/UBERON_0003336,serosa of duodenum,duodenum serosa +http://purl.obolibrary.org/obo/UBERON_0003336,serosa of duodenum,duodenum serous membrane +http://purl.obolibrary.org/obo/UBERON_0003336,serosa of duodenum,serous membrane of duodenum +http://purl.obolibrary.org/obo/UBERON_0003336,serosa of duodenum,visceral peritoneum of duodenum +http://purl.obolibrary.org/obo/UBERON_0003337,serosa of jejunum,jejunal serosa +http://purl.obolibrary.org/obo/UBERON_0003337,serosa of jejunum,jejunum serosa +http://purl.obolibrary.org/obo/UBERON_0003337,serosa of jejunum,jejunum serous membrane +http://purl.obolibrary.org/obo/UBERON_0003337,serosa of jejunum,serous membrane of jejunum +http://purl.obolibrary.org/obo/UBERON_0003337,serosa of jejunum,visceral peritoneum of jejunum +http://purl.obolibrary.org/obo/UBERON_0003338,ganglion of peripheral nervous system,peripheral nervous system ganglion +http://purl.obolibrary.org/obo/UBERON_0003339,ganglion of central nervous system,central nervous system ganglion +http://purl.obolibrary.org/obo/UBERON_0003339,ganglion of central nervous system,ganglion of neuraxis +http://purl.obolibrary.org/obo/UBERON_0003339,ganglion of central nervous system,neuraxis ganglion +http://purl.obolibrary.org/obo/UBERON_0003342,mucosa of anal canal,anal canal mucosa +http://purl.obolibrary.org/obo/UBERON_0003342,mucosa of anal canal,anal canal mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0003342,mucosa of anal canal,anal canal mucous membrane +http://purl.obolibrary.org/obo/UBERON_0003342,mucosa of anal canal,anal canal organ mucosa +http://purl.obolibrary.org/obo/UBERON_0003342,mucosa of anal canal,anal canal viewed anatomically mucosa +http://purl.obolibrary.org/obo/UBERON_0003342,mucosa of anal canal,anal canal viewed anatomically mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0003342,mucosa of anal canal,anal canal viewed anatomically mucous membrane +http://purl.obolibrary.org/obo/UBERON_0003342,mucosa of anal canal,anal canal viewed anatomically organ mucosa +http://purl.obolibrary.org/obo/UBERON_0003342,mucosa of anal canal,anal mucosa +http://purl.obolibrary.org/obo/UBERON_0003342,mucosa of anal canal,anal mucous membrane +http://purl.obolibrary.org/obo/UBERON_0003342,mucosa of anal canal,anal region mucosa +http://purl.obolibrary.org/obo/UBERON_0003342,mucosa of anal canal,anal region mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0003342,mucosa of anal canal,anal region mucous membrane +http://purl.obolibrary.org/obo/UBERON_0003342,mucosa of anal canal,anal region organ mucosa +http://purl.obolibrary.org/obo/UBERON_0003342,mucosa of anal canal,anatomical anal canal mucosa +http://purl.obolibrary.org/obo/UBERON_0003342,mucosa of anal canal,anatomical anal canal mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0003342,mucosa of anal canal,anatomical anal canal mucous membrane +http://purl.obolibrary.org/obo/UBERON_0003342,mucosa of anal canal,anatomical anal canal organ mucosa +http://purl.obolibrary.org/obo/UBERON_0003342,mucosa of anal canal,mucosa of anal canal viewed anatomically +http://purl.obolibrary.org/obo/UBERON_0003342,mucosa of anal canal,mucosa of anal region +http://purl.obolibrary.org/obo/UBERON_0003342,mucosa of anal canal,mucosa of anatomical anal canal +http://purl.obolibrary.org/obo/UBERON_0003342,mucosa of anal canal,mucosa of organ of anal canal +http://purl.obolibrary.org/obo/UBERON_0003342,mucosa of anal canal,mucosa of organ of anal canal viewed anatomically +http://purl.obolibrary.org/obo/UBERON_0003342,mucosa of anal canal,mucosa of organ of anal region +http://purl.obolibrary.org/obo/UBERON_0003342,mucosa of anal canal,mucosa of organ of anatomical anal canal +http://purl.obolibrary.org/obo/UBERON_0003342,mucosa of anal canal,mucous membrane of anal canal +http://purl.obolibrary.org/obo/UBERON_0003342,mucosa of anal canal,mucous membrane of anal canal viewed anatomically +http://purl.obolibrary.org/obo/UBERON_0003342,mucosa of anal canal,mucous membrane of anal region +http://purl.obolibrary.org/obo/UBERON_0003342,mucosa of anal canal,mucous membrane of anatomical anal canal +http://purl.obolibrary.org/obo/UBERON_0003342,mucosa of anal canal,organ mucosa of anal canal +http://purl.obolibrary.org/obo/UBERON_0003342,mucosa of anal canal,organ mucosa of anal canal viewed anatomically +http://purl.obolibrary.org/obo/UBERON_0003342,mucosa of anal canal,organ mucosa of anal region +http://purl.obolibrary.org/obo/UBERON_0003342,mucosa of anal canal,organ mucosa of anatomical anal canal +http://purl.obolibrary.org/obo/UBERON_0003343,mucosa of oral region,mucosa of oral opening +http://purl.obolibrary.org/obo/UBERON_0003343,mucosa of oral region,mucosa of oral part of face +http://purl.obolibrary.org/obo/UBERON_0003343,mucosa of oral region,mucosa of organ of oral opening +http://purl.obolibrary.org/obo/UBERON_0003343,mucosa of oral region,mucosa of organ of oral part of face +http://purl.obolibrary.org/obo/UBERON_0003343,mucosa of oral region,mucosa of organ of oral region +http://purl.obolibrary.org/obo/UBERON_0003343,mucosa of oral region,mucosa of organ of subdivision of mouth +http://purl.obolibrary.org/obo/UBERON_0003343,mucosa of oral region,mucosa of subdivision of mouth +http://purl.obolibrary.org/obo/UBERON_0003343,mucosa of oral region,mucous membrane of oral opening +http://purl.obolibrary.org/obo/UBERON_0003343,mucosa of oral region,mucous membrane of oral part of face +http://purl.obolibrary.org/obo/UBERON_0003343,mucosa of oral region,mucous membrane of oral region +http://purl.obolibrary.org/obo/UBERON_0003343,mucosa of oral region,mucous membrane of subdivision of mouth +http://purl.obolibrary.org/obo/UBERON_0003343,mucosa of oral region,oral opening mucosa +http://purl.obolibrary.org/obo/UBERON_0003343,mucosa of oral region,oral opening mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0003343,mucosa of oral region,oral opening mucous membrane +http://purl.obolibrary.org/obo/UBERON_0003343,mucosa of oral region,oral opening organ mucosa +http://purl.obolibrary.org/obo/UBERON_0003343,mucosa of oral region,oral part of face mucosa +http://purl.obolibrary.org/obo/UBERON_0003343,mucosa of oral region,oral part of face mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0003343,mucosa of oral region,oral part of face mucous membrane +http://purl.obolibrary.org/obo/UBERON_0003343,mucosa of oral region,oral part of face organ mucosa +http://purl.obolibrary.org/obo/UBERON_0003343,mucosa of oral region,oral region mucosa +http://purl.obolibrary.org/obo/UBERON_0003343,mucosa of oral region,oral region mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0003343,mucosa of oral region,oral region mucous membrane +http://purl.obolibrary.org/obo/UBERON_0003343,mucosa of oral region,oral region organ mucosa +http://purl.obolibrary.org/obo/UBERON_0003343,mucosa of oral region,organ mucosa of oral opening +http://purl.obolibrary.org/obo/UBERON_0003343,mucosa of oral region,organ mucosa of oral part of face +http://purl.obolibrary.org/obo/UBERON_0003343,mucosa of oral region,organ mucosa of oral region +http://purl.obolibrary.org/obo/UBERON_0003343,mucosa of oral region,organ mucosa of subdivision of mouth +http://purl.obolibrary.org/obo/UBERON_0003343,mucosa of oral region,subdivision of mouth mucosa +http://purl.obolibrary.org/obo/UBERON_0003343,mucosa of oral region,subdivision of mouth mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0003343,mucosa of oral region,subdivision of mouth mucous membrane +http://purl.obolibrary.org/obo/UBERON_0003343,mucosa of oral region,subdivision of mouth organ mucosa +http://purl.obolibrary.org/obo/UBERON_0003346,mucosa of rectum,mucosa of organ of rectum +http://purl.obolibrary.org/obo/UBERON_0003346,mucosa of rectum,mucous membrane of rectum +http://purl.obolibrary.org/obo/UBERON_0003346,mucosa of rectum,organ mucosa of rectum +http://purl.obolibrary.org/obo/UBERON_0003346,mucosa of rectum,rectal mucosa +http://purl.obolibrary.org/obo/UBERON_0003346,mucosa of rectum,rectal mucous membrane +http://purl.obolibrary.org/obo/UBERON_0003346,mucosa of rectum,rectum mucosa +http://purl.obolibrary.org/obo/UBERON_0003346,mucosa of rectum,rectum mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0003346,mucosa of rectum,rectum mucous membrane +http://purl.obolibrary.org/obo/UBERON_0003346,mucosa of rectum,rectum organ mucosa +http://purl.obolibrary.org/obo/UBERON_0003350,epithelium of mucosa,lamina epithelialis mucosa +http://purl.obolibrary.org/obo/UBERON_0003350,epithelium of mucosa,lamina epithelialis mucosae +http://purl.obolibrary.org/obo/UBERON_0003351,pharyngeal epithelium,epithelial tissue of pharynx +http://purl.obolibrary.org/obo/UBERON_0003351,pharyngeal epithelium,epithelium of pharynx +http://purl.obolibrary.org/obo/UBERON_0003351,pharyngeal epithelium,pharynx epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003351,pharyngeal epithelium,pharynx epithelium +http://purl.obolibrary.org/obo/UBERON_0003352,epithelium of midgut,epithelial tissue of midgut +http://purl.obolibrary.org/obo/UBERON_0003352,epithelium of midgut,midgut epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003352,epithelium of midgut,midgut epithelium +http://purl.obolibrary.org/obo/UBERON_0003353,epithelium of hindgut,epithelial tissue of hindgut +http://purl.obolibrary.org/obo/UBERON_0003353,epithelium of hindgut,hindgut epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003353,epithelium of hindgut,hindgut epithelium +http://purl.obolibrary.org/obo/UBERON_0003354,epithelium of rectum,epithelial tissue of rectum +http://purl.obolibrary.org/obo/UBERON_0003354,epithelium of rectum,rectal epithelium +http://purl.obolibrary.org/obo/UBERON_0003354,epithelium of rectum,rectum epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003354,epithelium of rectum,rectum epithelium +http://purl.obolibrary.org/obo/UBERON_0003355,epithelium of incisor,epithelial tissue of incisor +http://purl.obolibrary.org/obo/UBERON_0003355,epithelium of incisor,epithelial tissue of incisor tooth +http://purl.obolibrary.org/obo/UBERON_0003355,epithelium of incisor,epithelium of incisor tooth +http://purl.obolibrary.org/obo/UBERON_0003355,epithelium of incisor,incisor epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003355,epithelium of incisor,incisor epithelium +http://purl.obolibrary.org/obo/UBERON_0003355,epithelium of incisor,incisor tooth epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003355,epithelium of incisor,incisor tooth epithelium +http://purl.obolibrary.org/obo/UBERON_0003356,epithelium of nasal septum,epithelial tissue of nasal septum +http://purl.obolibrary.org/obo/UBERON_0003356,epithelium of nasal septum,nasal septum epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003356,epithelium of nasal septum,nasal septum epithelium +http://purl.obolibrary.org/obo/UBERON_0003357,epithelium of tongue,epithelial tissue of tongue +http://purl.obolibrary.org/obo/UBERON_0003357,epithelium of tongue,tongue epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003357,epithelium of tongue,tongue epithelium +http://purl.obolibrary.org/obo/UBERON_0003358,epithelium of soft palate,epithelial tissue of soft palate +http://purl.obolibrary.org/obo/UBERON_0003358,epithelium of soft palate,soft palate epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003358,epithelium of soft palate,soft palate epithelium +http://purl.obolibrary.org/obo/UBERON_0003359,epithelium of submandibular gland,epithelial tissue of submandibular gland +http://purl.obolibrary.org/obo/UBERON_0003359,epithelium of submandibular gland,submandibular gland epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003359,epithelium of submandibular gland,submandibular gland epithelium +http://purl.obolibrary.org/obo/UBERON_0003360,epithelium of parotid gland,epithelial tissue of parotid gland +http://purl.obolibrary.org/obo/UBERON_0003360,epithelium of parotid gland,epithelium of parotid +http://purl.obolibrary.org/obo/UBERON_0003360,epithelium of parotid gland,epithelium of parotid gland +http://purl.obolibrary.org/obo/UBERON_0003360,epithelium of parotid gland,parotid epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003360,epithelium of parotid gland,parotid epithelium +http://purl.obolibrary.org/obo/UBERON_0003360,epithelium of parotid gland,parotid gland epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003360,epithelium of parotid gland,parotid gland epithelium +http://purl.obolibrary.org/obo/UBERON_0003361,epithelium of sublingual gland,Rivinus'gland epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003361,epithelium of sublingual gland,Rivinus'gland epithelium +http://purl.obolibrary.org/obo/UBERON_0003361,epithelium of sublingual gland,ductus sublingualis epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003361,epithelium of sublingual gland,ductus sublingualis epithelium +http://purl.obolibrary.org/obo/UBERON_0003361,epithelium of sublingual gland,epithelial tissue of Rivinus'gland +http://purl.obolibrary.org/obo/UBERON_0003361,epithelium of sublingual gland,epithelial tissue of ductus sublingualis +http://purl.obolibrary.org/obo/UBERON_0003361,epithelium of sublingual gland,epithelial tissue of sublingual gland +http://purl.obolibrary.org/obo/UBERON_0003361,epithelium of sublingual gland,epithelium of Rivinus'gland +http://purl.obolibrary.org/obo/UBERON_0003361,epithelium of sublingual gland,epithelium of ductus sublingualis +http://purl.obolibrary.org/obo/UBERON_0003361,epithelium of sublingual gland,sublingual gland epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003361,epithelium of sublingual gland,sublingual gland epithelium +http://purl.obolibrary.org/obo/UBERON_0003362,epithelium of endolymphatic duct,endolymphatic duct epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003362,epithelium of endolymphatic duct,endolymphatic duct epithelium +http://purl.obolibrary.org/obo/UBERON_0003362,epithelium of endolymphatic duct,epithelial tissue of endolymphatic duct +http://purl.obolibrary.org/obo/UBERON_0003363,epithelium of ductus reuniens,ductus reuniens epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003363,epithelium of ductus reuniens,ductus reuniens epithelium +http://purl.obolibrary.org/obo/UBERON_0003363,epithelium of ductus reuniens,epithelial tissue of ductus reuniens +http://purl.obolibrary.org/obo/UBERON_0003364,epithelium of right lung,epithelial tissue of right lung +http://purl.obolibrary.org/obo/UBERON_0003364,epithelium of right lung,right lung epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003364,epithelium of right lung,right lung epithelium +http://purl.obolibrary.org/obo/UBERON_0003365,epithelium of left lung,epithelial tissue of left lung +http://purl.obolibrary.org/obo/UBERON_0003365,epithelium of left lung,left lung epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003365,epithelium of left lung,left lung epithelium +http://purl.obolibrary.org/obo/UBERON_0003366,epithelium of uterine horn,epithelial tissue of uterine horn +http://purl.obolibrary.org/obo/UBERON_0003366,epithelium of uterine horn,uterine horn epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003366,epithelium of uterine horn,uterine horn epithelium +http://purl.obolibrary.org/obo/UBERON_0003367,epithelium of vomeronasal organ,Jacobson's organ epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003367,epithelium of vomeronasal organ,Jacobson's organ epithelium +http://purl.obolibrary.org/obo/UBERON_0003367,epithelium of vomeronasal organ,epithelial tissue of Jacobson's organ +http://purl.obolibrary.org/obo/UBERON_0003367,epithelium of vomeronasal organ,epithelial tissue of vomeronasal organ +http://purl.obolibrary.org/obo/UBERON_0003367,epithelium of vomeronasal organ,epithelium of Jacobson's organ +http://purl.obolibrary.org/obo/UBERON_0003367,epithelium of vomeronasal organ,vomeronasal epithelium +http://purl.obolibrary.org/obo/UBERON_0003367,epithelium of vomeronasal organ,vomeronasal organ epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003367,epithelium of vomeronasal organ,vomeronasal organ epithelium +http://purl.obolibrary.org/obo/UBERON_0003367,epithelium of vomeronasal organ,vomeronasal organ sensory epithelium +http://purl.obolibrary.org/obo/UBERON_0003368,epithelium of hard palate,epithelial tissue of hard palate +http://purl.obolibrary.org/obo/UBERON_0003368,epithelium of hard palate,hard palate epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003368,epithelium of hard palate,hard palate epithelium +http://purl.obolibrary.org/obo/UBERON_0003369,fossa ovalis of heart,fossa ovalis +http://purl.obolibrary.org/obo/UBERON_0003369,fossa ovalis of heart,oval fossa +http://purl.obolibrary.org/obo/UBERON_0003371,pelvic appendage bud ectoderm,hindlimb ectoderm +http://purl.obolibrary.org/obo/UBERON_0003372,pectoral appendage bud ectoderm, +http://purl.obolibrary.org/obo/UBERON_0003373,ectoderm of footplate, +http://purl.obolibrary.org/obo/UBERON_0003374,chorionic ectoderm,chorion ectoderm +http://purl.obolibrary.org/obo/UBERON_0003378,cardiac muscle of auricular region,atrium auricular region cardiac muscle +http://purl.obolibrary.org/obo/UBERON_0003378,cardiac muscle of auricular region,auricular region heart muscle +http://purl.obolibrary.org/obo/UBERON_0003378,cardiac muscle of auricular region,cardiac muscle tissue of auricle +http://purl.obolibrary.org/obo/UBERON_0003379,cardiac muscle of right atrium,cardiac muscle of cardiac right atrium +http://purl.obolibrary.org/obo/UBERON_0003379,cardiac muscle of right atrium,cardiac muscle of heart right atrium +http://purl.obolibrary.org/obo/UBERON_0003379,cardiac muscle of right atrium,cardiac muscle tissue of heart right atrium +http://purl.obolibrary.org/obo/UBERON_0003379,cardiac muscle of right atrium,cardiac muscle tissue of right atrium +http://purl.obolibrary.org/obo/UBERON_0003379,cardiac muscle of right atrium,cardiac muscle tissue of right atrium of heart +http://purl.obolibrary.org/obo/UBERON_0003379,cardiac muscle of right atrium,myocardium of right atrium +http://purl.obolibrary.org/obo/UBERON_0003379,cardiac muscle of right atrium,right atrium heart muscle +http://purl.obolibrary.org/obo/UBERON_0003379,cardiac muscle of right atrium,right atrium myocardium +http://purl.obolibrary.org/obo/UBERON_0003379,cardiac muscle of right atrium,textus muscularis of myocardium of right atrium +http://purl.obolibrary.org/obo/UBERON_0003379,cardiac muscle of right atrium,textus muscularis of myocardium of right atrium of heart +http://purl.obolibrary.org/obo/UBERON_0003379,cardiac muscle of right atrium,textus muscularis of myocardium of right cardiac atrium +http://purl.obolibrary.org/obo/UBERON_0003380,cardiac muscle of left atrium,cardiac left atrium cardiac muscle +http://purl.obolibrary.org/obo/UBERON_0003380,cardiac muscle of left atrium,cardiac left atrium cardiac muscle tissue +http://purl.obolibrary.org/obo/UBERON_0003380,cardiac muscle of left atrium,cardiac muscle of cardiac left atrium +http://purl.obolibrary.org/obo/UBERON_0003380,cardiac muscle of left atrium,cardiac muscle of heart left atrium +http://purl.obolibrary.org/obo/UBERON_0003380,cardiac muscle of left atrium,cardiac muscle of left atrium of heart +http://purl.obolibrary.org/obo/UBERON_0003380,cardiac muscle of left atrium,left atrium heart muscle +http://purl.obolibrary.org/obo/UBERON_0003380,cardiac muscle of left atrium,left atrium myocardium +http://purl.obolibrary.org/obo/UBERON_0003380,cardiac muscle of left atrium,myocardium of left atrium +http://purl.obolibrary.org/obo/UBERON_0003380,cardiac muscle of left atrium,textus muscularis of myocardium of cardiac left atrium +http://purl.obolibrary.org/obo/UBERON_0003380,cardiac muscle of left atrium,textus muscularis of myocardium of heart left atrium +http://purl.obolibrary.org/obo/UBERON_0003380,cardiac muscle of left atrium,textus muscularis of myocardium of left atrium +http://purl.obolibrary.org/obo/UBERON_0003380,cardiac muscle of left atrium,textus muscularis of myocardium of left atrium of heart +http://purl.obolibrary.org/obo/UBERON_0003380,cardiac muscle of left atrium,textus muscularis of myocardium of left cardiac atrium +http://purl.obolibrary.org/obo/UBERON_0003381,cardiac muscle of right ventricle,cardiac muscle tissue of right ventricle +http://purl.obolibrary.org/obo/UBERON_0003381,cardiac muscle of right ventricle,right ventricular cardiac muscle tissue +http://purl.obolibrary.org/obo/UBERON_0003382,cardiac muscle of left ventricle,cardiac muscle tissue of left ventricle +http://purl.obolibrary.org/obo/UBERON_0003382,cardiac muscle of left ventricle,left ventricular cardiac muscle tissue +http://purl.obolibrary.org/obo/UBERON_0003383,cardiac muscle tissue of interventricular septum,cardiac muscle of interventricular septum +http://purl.obolibrary.org/obo/UBERON_0003383,cardiac muscle tissue of interventricular septum,cardiac muscle tissue of interventricular septum +http://purl.obolibrary.org/obo/UBERON_0003383,cardiac muscle tissue of interventricular septum,interventricular septum cardiac muscle +http://purl.obolibrary.org/obo/UBERON_0003383,cardiac muscle tissue of interventricular septum,interventricular septum heart muscle +http://purl.obolibrary.org/obo/UBERON_0003383,cardiac muscle tissue of interventricular septum,interventricular septum myocardium +http://purl.obolibrary.org/obo/UBERON_0003384,skeletal muscle tissue of pharynx,pharynx skeletal muscle +http://purl.obolibrary.org/obo/UBERON_0003384,skeletal muscle tissue of pharynx,pharynx skeletal muscle tissue +http://purl.obolibrary.org/obo/UBERON_0003384,skeletal muscle tissue of pharynx,skeletal muscle tissue of pharynx +http://purl.obolibrary.org/obo/UBERON_0003386,smooth muscle of eye,ocular smooth muscle +http://purl.obolibrary.org/obo/UBERON_0003387,smooth muscle of trachea,trachea smooth muscle +http://purl.obolibrary.org/obo/UBERON_0003387,smooth muscle of trachea,tracheal smooth muscle +http://purl.obolibrary.org/obo/UBERON_0003388,mesothelium of pericardial cavity,cavity of pericardial sac meso-epithelium +http://purl.obolibrary.org/obo/UBERON_0003388,mesothelium of pericardial cavity,cavity of pericardial sac mesothelium +http://purl.obolibrary.org/obo/UBERON_0003388,mesothelium of pericardial cavity,meso-epithelium of cavity of pericardial sac +http://purl.obolibrary.org/obo/UBERON_0003388,mesothelium of pericardial cavity,meso-epithelium of pericardial cavity +http://purl.obolibrary.org/obo/UBERON_0003388,mesothelium of pericardial cavity,mesothelium of cavity of pericardial sac +http://purl.obolibrary.org/obo/UBERON_0003388,mesothelium of pericardial cavity,pericardial cavity meso-epithelium +http://purl.obolibrary.org/obo/UBERON_0003388,mesothelium of pericardial cavity,pericardial cavity mesothelium +http://purl.obolibrary.org/obo/UBERON_0003389,mesothelium of diaphragm,diaphragm meso-epithelium +http://purl.obolibrary.org/obo/UBERON_0003389,mesothelium of diaphragm,diaphragm mesothelium +http://purl.obolibrary.org/obo/UBERON_0003389,mesothelium of diaphragm,meso-epithelium of diaphragm +http://purl.obolibrary.org/obo/UBERON_0003389,mesothelium of diaphragm,meso-epithelium of thoracic diaphragm +http://purl.obolibrary.org/obo/UBERON_0003389,mesothelium of diaphragm,mesothelium of thoracic diaphragm +http://purl.obolibrary.org/obo/UBERON_0003389,mesothelium of diaphragm,thoracic diaphragm meso-epithelium +http://purl.obolibrary.org/obo/UBERON_0003389,mesothelium of diaphragm,thoracic diaphragm mesothelium +http://purl.obolibrary.org/obo/UBERON_0003390,mesothelium of pleural cavity,meso-epithelium of pleural cavity +http://purl.obolibrary.org/obo/UBERON_0003390,mesothelium of pleural cavity,mesothelium of pleura +http://purl.obolibrary.org/obo/UBERON_0003390,mesothelium of pleural cavity,pleural cavity meso-epithelium +http://purl.obolibrary.org/obo/UBERON_0003390,mesothelium of pleural cavity,pleural cavity mesothelium +http://purl.obolibrary.org/obo/UBERON_0003390,mesothelium of pleural cavity,pleural mesothelium +http://purl.obolibrary.org/obo/UBERON_0003393,mesentery of urinary system,excretory system mesentery +http://purl.obolibrary.org/obo/UBERON_0003393,mesentery of urinary system,mesentery of excretory system +http://purl.obolibrary.org/obo/UBERON_0003393,mesentery of urinary system,mesentery of renal system +http://purl.obolibrary.org/obo/UBERON_0003393,mesentery of urinary system,mesentery of systema urinaria +http://purl.obolibrary.org/obo/UBERON_0003393,mesentery of urinary system,renal system mesentery +http://purl.obolibrary.org/obo/UBERON_0003393,mesentery of urinary system,systema urinaria mesentery +http://purl.obolibrary.org/obo/UBERON_0003393,mesentery of urinary system,urinary system mesentery +http://purl.obolibrary.org/obo/UBERON_0003394,mesentery of hindgut,hindgut mesentery +http://purl.obolibrary.org/obo/UBERON_0003395,mesentery of rectum,rectum mesentery +http://purl.obolibrary.org/obo/UBERON_0003396,mesentery of colon,colon mesentery +http://purl.obolibrary.org/obo/UBERON_0003396,mesentery of colon,large bowel mesentery +http://purl.obolibrary.org/obo/UBERON_0003396,mesentery of colon,large intestinal mesentery +http://purl.obolibrary.org/obo/UBERON_0003396,mesentery of colon,mesentery of large bowel +http://purl.obolibrary.org/obo/UBERON_0003396,mesentery of colon,mesentery of large intestine +http://purl.obolibrary.org/obo/UBERON_0003396,mesentery of colon,mesocolon +http://purl.obolibrary.org/obo/UBERON_0003397,mesentery of duodenum,duodenum mesentery +http://purl.obolibrary.org/obo/UBERON_0003398,mesentery of jejunum,jejunal mesentery +http://purl.obolibrary.org/obo/UBERON_0003398,mesentery of jejunum,jejunum mesentery +http://purl.obolibrary.org/obo/UBERON_0003398,mesentery of jejunum,mesojejunum +http://purl.obolibrary.org/obo/UBERON_0003403,skin of forearm,forearm skin +http://purl.obolibrary.org/obo/UBERON_0003403,skin of forearm,lower arm skin +http://purl.obolibrary.org/obo/UBERON_0003403,skin of forearm,lower segment of arm skin +http://purl.obolibrary.org/obo/UBERON_0003403,skin of forearm,skin of antebrachial region +http://purl.obolibrary.org/obo/UBERON_0003403,skin of forearm,skin of lower arm +http://purl.obolibrary.org/obo/UBERON_0003403,skin of forearm,skin of lower segment of arm +http://purl.obolibrary.org/obo/UBERON_0003403,skin of forearm,skin of zeugopod of arm +http://purl.obolibrary.org/obo/UBERON_0003404,lobar bronchus of right lung,right lobar bronchus +http://purl.obolibrary.org/obo/UBERON_0003404,lobar bronchus of right lung,right lung lobar bronchus +http://purl.obolibrary.org/obo/UBERON_0003404,lobar bronchus of right lung,right lung secondary bronchus +http://purl.obolibrary.org/obo/UBERON_0003404,lobar bronchus of right lung,secondary bronchus of right lung +http://purl.obolibrary.org/obo/UBERON_0003405,lobar bronchus of left lung,left lobar bronchus +http://purl.obolibrary.org/obo/UBERON_0003405,lobar bronchus of left lung,left lung lobar bronchus +http://purl.obolibrary.org/obo/UBERON_0003405,lobar bronchus of left lung,left lung secondary bronchus +http://purl.obolibrary.org/obo/UBERON_0003405,lobar bronchus of left lung,secondary bronchus of left lung +http://purl.obolibrary.org/obo/UBERON_0003406,cartilage of respiratory system,apparatus respiratorius cartilage +http://purl.obolibrary.org/obo/UBERON_0003406,cartilage of respiratory system,cartilage of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0003406,cartilage of respiratory system,respiratory system cartilage +http://purl.obolibrary.org/obo/UBERON_0003407,cartilage of nasal septum,cartilago septal nasi +http://purl.obolibrary.org/obo/UBERON_0003407,cartilage of nasal septum,nasal septum cartilage +http://purl.obolibrary.org/obo/UBERON_0003407,cartilage of nasal septum,septal nasal cartilage +http://purl.obolibrary.org/obo/UBERON_0003408,gland of digestive tract,digestive tract gland +http://purl.obolibrary.org/obo/UBERON_0003408,gland of digestive tract,gland of digestive tract +http://purl.obolibrary.org/obo/UBERON_0003408,gland of digestive tract,gland of lower gastrointestinal tract +http://purl.obolibrary.org/obo/UBERON_0003408,gland of digestive tract,gut gland +http://purl.obolibrary.org/obo/UBERON_0003408,gland of digestive tract,lower gastrointestinal tract gland +http://purl.obolibrary.org/obo/UBERON_0003409,gland of tongue,lingual gland +http://purl.obolibrary.org/obo/UBERON_0003409,gland of tongue,tongue gland +http://purl.obolibrary.org/obo/UBERON_0003410,oropharyngeal gland,gland of oral part of pharynx +http://purl.obolibrary.org/obo/UBERON_0003410,oropharyngeal gland,gland of oropharynx +http://purl.obolibrary.org/obo/UBERON_0003410,oropharyngeal gland,oral part of pharynx gland +http://purl.obolibrary.org/obo/UBERON_0003410,oropharyngeal gland,oropharynx gland +http://purl.obolibrary.org/obo/UBERON_0003412,pelvic appendage bud mesenchyme,leg mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003412,pelvic appendage bud mesenchyme,lower limb bud mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003413,pectoral appendage bud mesenchyme, +http://purl.obolibrary.org/obo/UBERON_0003414,mesenchyme of mandible,bone of lower jaw mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003414,mesenchyme of mandible,bone of ventral mandibular arch mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003414,mesenchyme of mandible,bone organ of lower jaw mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003414,mesenchyme of mandible,bone organ of ventral mandibular arch mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003414,mesenchyme of mandible,lower jaw bone mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003414,mesenchyme of mandible,lower jaw bone organ mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003414,mesenchyme of mandible,mandible mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003414,mesenchyme of mandible,mandibulla mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003414,mesenchyme of mandible,mesenchyme of bone of lower jaw +http://purl.obolibrary.org/obo/UBERON_0003414,mesenchyme of mandible,mesenchyme of bone of ventral mandibular arch +http://purl.obolibrary.org/obo/UBERON_0003414,mesenchyme of mandible,mesenchyme of bone organ of lower jaw +http://purl.obolibrary.org/obo/UBERON_0003414,mesenchyme of mandible,mesenchyme of bone organ of ventral mandibular arch +http://purl.obolibrary.org/obo/UBERON_0003414,mesenchyme of mandible,mesenchyme of lower jaw bone +http://purl.obolibrary.org/obo/UBERON_0003414,mesenchyme of mandible,mesenchyme of lower jaw bone organ +http://purl.obolibrary.org/obo/UBERON_0003414,mesenchyme of mandible,mesenchyme of mandibulla +http://purl.obolibrary.org/obo/UBERON_0003414,mesenchyme of mandible,mesenchyme of ventral mandibular arch bone +http://purl.obolibrary.org/obo/UBERON_0003414,mesenchyme of mandible,mesenchyme of ventral mandibular arch bone organ +http://purl.obolibrary.org/obo/UBERON_0003414,mesenchyme of mandible,ventral mandibular arch bone mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003414,mesenchyme of mandible,ventral mandibular arch bone organ mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003415,mesenchyme of nasal septum,nasal septum mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003416,mesenchyme of tongue,tongue mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003417,mesenchyme of soft palate,soft palate mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003418,mesenchyme of submandibular gland,submandibular gland mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003419,mesenchyme of parotid,mesenchyme of parotid gland +http://purl.obolibrary.org/obo/UBERON_0003419,mesenchyme of parotid,parotid gland mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003419,mesenchyme of parotid,parotid mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003420,mesenchyme of sublingual gland,Rivinus'gland mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003420,mesenchyme of sublingual gland,ductus sublingualis mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003420,mesenchyme of sublingual gland,mesenchyme of Rivinus'gland +http://purl.obolibrary.org/obo/UBERON_0003420,mesenchyme of sublingual gland,mesenchyme of ductus sublingualis +http://purl.obolibrary.org/obo/UBERON_0003420,mesenchyme of sublingual gland,sublingual gland mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003421,mesenchyme of vomeronasal organ,Jacobson's organ mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003421,mesenchyme of vomeronasal organ,mesenchyme of Jacobson's organ +http://purl.obolibrary.org/obo/UBERON_0003421,mesenchyme of vomeronasal organ,vomeronasal mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003421,mesenchyme of vomeronasal organ,vomeronasal organ mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003422,mesenchyme of umbilical cord,Wharton's jelly +http://purl.obolibrary.org/obo/UBERON_0003422,mesenchyme of umbilical cord,umbilical cord mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003424,mesenchyme of hard palate,hard palate mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003425,renal lymph node,kidney lymph node +http://purl.obolibrary.org/obo/UBERON_0003425,renal lymph node,lymph node of kidney +http://purl.obolibrary.org/obo/UBERON_0003426,dermis adipose tissue,adipose tissue of dermis +http://purl.obolibrary.org/obo/UBERON_0003426,dermis adipose tissue,dermis fat tissue +http://purl.obolibrary.org/obo/UBERON_0003426,dermis adipose tissue,dermis fatty tissue +http://purl.obolibrary.org/obo/UBERON_0003426,dermis adipose tissue,fat tissue of dermis +http://purl.obolibrary.org/obo/UBERON_0003426,dermis adipose tissue,fatty tissue of dermis +http://purl.obolibrary.org/obo/UBERON_0003427,abdominal fat pad,abdomen fat pad +http://purl.obolibrary.org/obo/UBERON_0003427,abdominal fat pad,abdominal fat depot +http://purl.obolibrary.org/obo/UBERON_0003427,abdominal fat pad,fat pad of abdomen +http://purl.obolibrary.org/obo/UBERON_0003428,gonadal fat pad,fat pad of gonad +http://purl.obolibrary.org/obo/UBERON_0003428,gonadal fat pad,fat pad of gonads +http://purl.obolibrary.org/obo/UBERON_0003428,gonadal fat pad,gonad fat pad +http://purl.obolibrary.org/obo/UBERON_0003428,gonadal fat pad,gonad-associated fat pad +http://purl.obolibrary.org/obo/UBERON_0003428,gonadal fat pad,gonadal fat depot +http://purl.obolibrary.org/obo/UBERON_0003428,gonadal fat pad,gonadal fat pad +http://purl.obolibrary.org/obo/UBERON_0003429,abdomen nerve,nerve of abdomen +http://purl.obolibrary.org/obo/UBERON_0003430,neck nerve,neck (volume) nerve +http://purl.obolibrary.org/obo/UBERON_0003430,neck nerve,nerve of neck +http://purl.obolibrary.org/obo/UBERON_0003430,neck nerve,nerve of neck (volume) +http://purl.obolibrary.org/obo/UBERON_0003431,leg nerve,nerve of leg +http://purl.obolibrary.org/obo/UBERON_0003432,chest nerve,anterior thoracic region nerve +http://purl.obolibrary.org/obo/UBERON_0003432,chest nerve,anterolateral part of thorax nerve +http://purl.obolibrary.org/obo/UBERON_0003432,chest nerve,front of thorax nerve +http://purl.obolibrary.org/obo/UBERON_0003432,chest nerve,nerve of anterior thoracic region +http://purl.obolibrary.org/obo/UBERON_0003432,chest nerve,nerve of anterolateral part of thorax +http://purl.obolibrary.org/obo/UBERON_0003432,chest nerve,nerve of chest +http://purl.obolibrary.org/obo/UBERON_0003432,chest nerve,nerve of front of thorax +http://purl.obolibrary.org/obo/UBERON_0003433,arm nerve,brachial region nerve +http://purl.obolibrary.org/obo/UBERON_0003433,arm nerve,nerve of arm +http://purl.obolibrary.org/obo/UBERON_0003433,arm nerve,nerve of brachial region +http://purl.obolibrary.org/obo/UBERON_0003434,wrist nerve,carpal region nerve +http://purl.obolibrary.org/obo/UBERON_0003434,wrist nerve,nerve of carpal region +http://purl.obolibrary.org/obo/UBERON_0003434,wrist nerve,nerve of wrist +http://purl.obolibrary.org/obo/UBERON_0003435,pedal digit nerve,digit of foot nerve +http://purl.obolibrary.org/obo/UBERON_0003435,pedal digit nerve,digit of terminal segment of free lower limb nerve +http://purl.obolibrary.org/obo/UBERON_0003435,pedal digit nerve,digitus pedis nerve +http://purl.obolibrary.org/obo/UBERON_0003435,pedal digit nerve,foot digit nerve +http://purl.obolibrary.org/obo/UBERON_0003435,pedal digit nerve,hind limb digit nerve +http://purl.obolibrary.org/obo/UBERON_0003435,pedal digit nerve,nerve of digit of foot +http://purl.obolibrary.org/obo/UBERON_0003435,pedal digit nerve,nerve of digit of terminal segment of free lower limb +http://purl.obolibrary.org/obo/UBERON_0003435,pedal digit nerve,nerve of digitus pedis +http://purl.obolibrary.org/obo/UBERON_0003435,pedal digit nerve,nerve of foot digit +http://purl.obolibrary.org/obo/UBERON_0003435,pedal digit nerve,nerve of terminal segment of free lower limb digit +http://purl.obolibrary.org/obo/UBERON_0003435,pedal digit nerve,nerve of toe +http://purl.obolibrary.org/obo/UBERON_0003435,pedal digit nerve,terminal segment of free lower limb digit nerve +http://purl.obolibrary.org/obo/UBERON_0003435,pedal digit nerve,toe nerve +http://purl.obolibrary.org/obo/UBERON_0003436,shoulder nerve,nerve of shoulder +http://purl.obolibrary.org/obo/UBERON_0003437,eyelid nerve,blepharon nerve +http://purl.obolibrary.org/obo/UBERON_0003437,eyelid nerve,nerve of blepharon +http://purl.obolibrary.org/obo/UBERON_0003437,eyelid nerve,nerve of eyelid +http://purl.obolibrary.org/obo/UBERON_0003437,eyelid nerve,palpebral nerve +http://purl.obolibrary.org/obo/UBERON_0003438,iris nerve,ciliary nerve +http://purl.obolibrary.org/obo/UBERON_0003438,iris nerve,nerve of iris +http://purl.obolibrary.org/obo/UBERON_0003439,nerve of trunk region,nerve of torso +http://purl.obolibrary.org/obo/UBERON_0003439,nerve of trunk region,nerve of trunk +http://purl.obolibrary.org/obo/UBERON_0003439,nerve of trunk region,torso nerve +http://purl.obolibrary.org/obo/UBERON_0003439,nerve of trunk region,trunk nerve +http://purl.obolibrary.org/obo/UBERON_0003440,limb nerve,nerve of limb +http://purl.obolibrary.org/obo/UBERON_0003441,forelimb nerve,fore limb nerve +http://purl.obolibrary.org/obo/UBERON_0003441,forelimb nerve,nerve of fore limb +http://purl.obolibrary.org/obo/UBERON_0003441,forelimb nerve,nerve of forelimb +http://purl.obolibrary.org/obo/UBERON_0003441,forelimb nerve,nerve of superior member +http://purl.obolibrary.org/obo/UBERON_0003441,forelimb nerve,nerve of upper extremity +http://purl.obolibrary.org/obo/UBERON_0003442,hindlimb nerve,hind limb nerve +http://purl.obolibrary.org/obo/UBERON_0003442,hindlimb nerve,nerve of hind limb +http://purl.obolibrary.org/obo/UBERON_0003442,hindlimb nerve,nerve of hindlimb +http://purl.obolibrary.org/obo/UBERON_0003442,hindlimb nerve,nerve of inferior member +http://purl.obolibrary.org/obo/UBERON_0003442,hindlimb nerve,nerve of lower extremity +http://purl.obolibrary.org/obo/UBERON_0003443,thoracic cavity nerve,cavity of chest nerve +http://purl.obolibrary.org/obo/UBERON_0003443,thoracic cavity nerve,cavity of thorax nerve +http://purl.obolibrary.org/obo/UBERON_0003443,thoracic cavity nerve,chest cavity nerve +http://purl.obolibrary.org/obo/UBERON_0003443,thoracic cavity nerve,nerve of cavity of chest +http://purl.obolibrary.org/obo/UBERON_0003443,thoracic cavity nerve,nerve of cavity of thorax +http://purl.obolibrary.org/obo/UBERON_0003443,thoracic cavity nerve,nerve of chest cavity +http://purl.obolibrary.org/obo/UBERON_0003443,thoracic cavity nerve,nerve of pectoral cavity +http://purl.obolibrary.org/obo/UBERON_0003443,thoracic cavity nerve,nerve of thoracic cavity +http://purl.obolibrary.org/obo/UBERON_0003443,thoracic cavity nerve,pectoral cavity nerve +http://purl.obolibrary.org/obo/UBERON_0003444,pelvis nerve,nerve of pelvis +http://purl.obolibrary.org/obo/UBERON_0003445,pes nerve,foot nerve +http://purl.obolibrary.org/obo/UBERON_0003445,pes nerve,nerve of foot +http://purl.obolibrary.org/obo/UBERON_0003446,ankle nerve,nerve of ankle +http://purl.obolibrary.org/obo/UBERON_0003446,ankle nerve,tarsal region nerve +http://purl.obolibrary.org/obo/UBERON_0003447,digit nerve of manus,digit of hand nerve +http://purl.obolibrary.org/obo/UBERON_0003447,digit nerve of manus,digit of terminal segment of free upper limb nerve +http://purl.obolibrary.org/obo/UBERON_0003447,digit nerve of manus,digitus manus nerve +http://purl.obolibrary.org/obo/UBERON_0003447,digit nerve of manus,finger nerve +http://purl.obolibrary.org/obo/UBERON_0003447,digit nerve of manus,hand digit nerve +http://purl.obolibrary.org/obo/UBERON_0003447,digit nerve of manus,nerve of digit of hand +http://purl.obolibrary.org/obo/UBERON_0003447,digit nerve of manus,nerve of digit of terminal segment of free upper limb +http://purl.obolibrary.org/obo/UBERON_0003447,digit nerve of manus,nerve of digitus manus +http://purl.obolibrary.org/obo/UBERON_0003447,digit nerve of manus,nerve of finger +http://purl.obolibrary.org/obo/UBERON_0003447,digit nerve of manus,nerve of hand digit +http://purl.obolibrary.org/obo/UBERON_0003447,digit nerve of manus,nerve of terminal segment of free upper limb digit +http://purl.obolibrary.org/obo/UBERON_0003447,digit nerve of manus,terminal segment of free upper limb digit nerve +http://purl.obolibrary.org/obo/UBERON_0003448,manus nerve,hand nerve +http://purl.obolibrary.org/obo/UBERON_0003448,manus nerve,nerve of hand +http://purl.obolibrary.org/obo/UBERON_0003448,manus nerve,nerve of manus +http://purl.obolibrary.org/obo/UBERON_0003449,tail intervertebral disc,intervertebral disc of post-ventral region +http://purl.obolibrary.org/obo/UBERON_0003449,tail intervertebral disc,intervertebral disc of tail +http://purl.obolibrary.org/obo/UBERON_0003449,tail intervertebral disc,intervertebral disk of post-ventral region +http://purl.obolibrary.org/obo/UBERON_0003449,tail intervertebral disc,intervertebral disk of tail +http://purl.obolibrary.org/obo/UBERON_0003449,tail intervertebral disc,tail intervertebral disk +http://purl.obolibrary.org/obo/UBERON_0003449,tail intervertebral disc,tail spinal disc +http://purl.obolibrary.org/obo/UBERON_0003450,upper jaw incisor,incisor of palatoquadrate arch +http://purl.obolibrary.org/obo/UBERON_0003450,upper jaw incisor,incisor of upper jaw +http://purl.obolibrary.org/obo/UBERON_0003450,upper jaw incisor,incisor tooth of palatoquadrate arch +http://purl.obolibrary.org/obo/UBERON_0003450,upper jaw incisor,incisor tooth of upper jaw +http://purl.obolibrary.org/obo/UBERON_0003450,upper jaw incisor,palatoquadrate arch incisor +http://purl.obolibrary.org/obo/UBERON_0003450,upper jaw incisor,palatoquadrate arch incisor tooth +http://purl.obolibrary.org/obo/UBERON_0003450,upper jaw incisor,upper incisor +http://purl.obolibrary.org/obo/UBERON_0003450,upper jaw incisor,upper jaw incisor tooth +http://purl.obolibrary.org/obo/UBERON_0003451,lower jaw incisor,incisor of lower jaw +http://purl.obolibrary.org/obo/UBERON_0003451,lower jaw incisor,incisor of ventral mandibular arch +http://purl.obolibrary.org/obo/UBERON_0003451,lower jaw incisor,incisor tooth of lower jaw +http://purl.obolibrary.org/obo/UBERON_0003451,lower jaw incisor,incisor tooth of ventral mandibular arch +http://purl.obolibrary.org/obo/UBERON_0003451,lower jaw incisor,lower incisor +http://purl.obolibrary.org/obo/UBERON_0003451,lower jaw incisor,lower jaw incisor tooth +http://purl.obolibrary.org/obo/UBERON_0003451,lower jaw incisor,mandibular incisor +http://purl.obolibrary.org/obo/UBERON_0003451,lower jaw incisor,ventral mandibular arch incisor +http://purl.obolibrary.org/obo/UBERON_0003451,lower jaw incisor,ventral mandibular arch incisor tooth +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,cardiac muscle muscle tissue of trabecula carnea +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,cardiac muscle of trabecula carnea +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,cardiac muscle textus muscularis of trabecula carnea +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,cardiac muscle tissue of trabecula carnea +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,heart muscle muscle tissue of trabecula carnea +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,heart muscle textus muscularis of trabecula carnea +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,heart myocardium muscle tissue of trabecula carnea +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,heart myocardium textus muscularis of trabecula carnea +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,muscle of heart muscle tissue of trabecula carnea +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,muscle of heart textus muscularis of trabecula carnea +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,muscle tissue of cardiac muscle of trabecula carnea +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,muscle tissue of heart muscle of trabecula carnea +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,muscle tissue of heart myocardium of trabecula carnea +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,muscle tissue of muscle of heart of trabecula carnea +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,muscle tissue of myocardium of trabecula carnea +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,myocardium muscle tissue of trabecula carnea +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,myocardium textus muscularis of trabecula carnea +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,textus muscularis of cardiac muscle of trabecula carnea +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,textus muscularis of heart muscle of trabecula carnea +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,textus muscularis of heart myocardium of trabecula carnea +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,textus muscularis of muscle of heart of trabecula carnea +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,textus muscularis of myocardium of trabecula carnea +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,trabecula carnea cardiac muscle +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,trabecula carnea cardiac muscle muscle tissue +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,trabecula carnea cardiac muscle textus muscularis +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,trabecula carnea heart muscle muscle tissue +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,trabecula carnea heart muscle textus muscularis +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,trabecula carnea heart myocardium muscle tissue +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,trabecula carnea heart myocardium textus muscularis +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,trabecula carnea muscle of heart muscle tissue +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,trabecula carnea muscle of heart textus muscularis +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,trabecula carnea muscle tissue of cardiac muscle +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,trabecula carnea muscle tissue of heart muscle +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,trabecula carnea muscle tissue of heart myocardium +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,trabecula carnea muscle tissue of muscle of heart +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,trabecula carnea muscle tissue of myocardium +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,trabecula carnea myocardium muscle tissue +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,trabecula carnea myocardium textus muscularis +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,trabecula carnea textus muscularis of cardiac muscle +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,trabecula carnea textus muscularis of heart muscle +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,trabecula carnea textus muscularis of heart myocardium +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,trabecula carnea textus muscularis of muscle of heart +http://purl.obolibrary.org/obo/UBERON_0003452,trabecula carnea cardiac muscle tissue,trabecula carnea textus muscularis of myocardium +http://purl.obolibrary.org/obo/UBERON_0003453,large intestine Peyer's patch,Peyer's patch of large intestine +http://purl.obolibrary.org/obo/UBERON_0003453,large intestine Peyer's patch,large intestine Peyer's patch +http://purl.obolibrary.org/obo/UBERON_0003454,small intestine Peyer's patch,Peyer's patch of small bowel +http://purl.obolibrary.org/obo/UBERON_0003454,small intestine Peyer's patch,Peyer's patch of small intestine +http://purl.obolibrary.org/obo/UBERON_0003454,small intestine Peyer's patch,aggregated lymphoid follicle of small intestine +http://purl.obolibrary.org/obo/UBERON_0003454,small intestine Peyer's patch,noduli lymphoidei aggregati intestini tenuis +http://purl.obolibrary.org/obo/UBERON_0003454,small intestine Peyer's patch,small bowel Peyer's patch +http://purl.obolibrary.org/obo/UBERON_0003454,small intestine Peyer's patch,small intestine Peyer's patch +http://purl.obolibrary.org/obo/UBERON_0003455,inner renal medulla loop of Henle,kidney inner medulla loop of Henle +http://purl.obolibrary.org/obo/UBERON_0003455,inner renal medulla loop of Henle,"loop of Henle, inner medullary portion" +http://purl.obolibrary.org/obo/UBERON_0003456,respiratory system lymphatic vessel,apparatus respiratorius lymph vessel +http://purl.obolibrary.org/obo/UBERON_0003456,respiratory system lymphatic vessel,apparatus respiratorius lymphatic vessel +http://purl.obolibrary.org/obo/UBERON_0003456,respiratory system lymphatic vessel,lymph vessel of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0003456,respiratory system lymphatic vessel,lymph vessel of respiratory system +http://purl.obolibrary.org/obo/UBERON_0003456,respiratory system lymphatic vessel,lymphatic vessel of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0003456,respiratory system lymphatic vessel,lymphatic vessel of respiratory system +http://purl.obolibrary.org/obo/UBERON_0003456,respiratory system lymphatic vessel,respiratory system lymph vessel +http://purl.obolibrary.org/obo/UBERON_0003457,head bone,adult head bone +http://purl.obolibrary.org/obo/UBERON_0003457,head bone,adult head bone organ +http://purl.obolibrary.org/obo/UBERON_0003457,head bone,bone of adult head +http://purl.obolibrary.org/obo/UBERON_0003457,head bone,bone of head +http://purl.obolibrary.org/obo/UBERON_0003457,head bone,bone organ of adult head +http://purl.obolibrary.org/obo/UBERON_0003457,head bone,bone organ of head +http://purl.obolibrary.org/obo/UBERON_0003457,head bone,head bone organ +http://purl.obolibrary.org/obo/UBERON_0003458,neck bone,bone of neck +http://purl.obolibrary.org/obo/UBERON_0003458,neck bone,bone of neck (volume) +http://purl.obolibrary.org/obo/UBERON_0003458,neck bone,bone organ of neck +http://purl.obolibrary.org/obo/UBERON_0003458,neck bone,bone organ of neck (volume) +http://purl.obolibrary.org/obo/UBERON_0003458,neck bone,neck (volume) bone +http://purl.obolibrary.org/obo/UBERON_0003458,neck bone,neck (volume) bone organ +http://purl.obolibrary.org/obo/UBERON_0003458,neck bone,neck bone organ +http://purl.obolibrary.org/obo/UBERON_0003459,chest bone,anterior thoracic region bone +http://purl.obolibrary.org/obo/UBERON_0003459,chest bone,anterior thoracic region bone organ +http://purl.obolibrary.org/obo/UBERON_0003459,chest bone,anterolateral part of thorax bone +http://purl.obolibrary.org/obo/UBERON_0003459,chest bone,anterolateral part of thorax bone organ +http://purl.obolibrary.org/obo/UBERON_0003459,chest bone,bone of anterior thoracic region +http://purl.obolibrary.org/obo/UBERON_0003459,chest bone,bone of anterolateral part of thorax +http://purl.obolibrary.org/obo/UBERON_0003459,chest bone,bone of chest +http://purl.obolibrary.org/obo/UBERON_0003459,chest bone,bone of front of thorax +http://purl.obolibrary.org/obo/UBERON_0003459,chest bone,bone organ of anterior thoracic region +http://purl.obolibrary.org/obo/UBERON_0003459,chest bone,bone organ of anterolateral part of thorax +http://purl.obolibrary.org/obo/UBERON_0003459,chest bone,bone organ of chest +http://purl.obolibrary.org/obo/UBERON_0003459,chest bone,bone organ of front of thorax +http://purl.obolibrary.org/obo/UBERON_0003459,chest bone,chest bone organ +http://purl.obolibrary.org/obo/UBERON_0003459,chest bone,front of thorax bone +http://purl.obolibrary.org/obo/UBERON_0003459,chest bone,front of thorax bone organ +http://purl.obolibrary.org/obo/UBERON_0003460,arm bone,arm bone organ +http://purl.obolibrary.org/obo/UBERON_0003460,arm bone,bone of arm +http://purl.obolibrary.org/obo/UBERON_0003460,arm bone,bone organ of arm +http://purl.obolibrary.org/obo/UBERON_0003461,shoulder bone,bone of shoulder +http://purl.obolibrary.org/obo/UBERON_0003461,shoulder bone,shoulder-articulating bone +http://purl.obolibrary.org/obo/UBERON_0003462,facial bone,bone of facial skeleton +http://purl.obolibrary.org/obo/UBERON_0003462,facial bone,facial bone +http://purl.obolibrary.org/obo/UBERON_0003462,facial bone,facial skeleton bone +http://purl.obolibrary.org/obo/UBERON_0003463,trunk bone,bone of torso +http://purl.obolibrary.org/obo/UBERON_0003463,trunk bone,bone of trunk +http://purl.obolibrary.org/obo/UBERON_0003463,trunk bone,bone organ of torso +http://purl.obolibrary.org/obo/UBERON_0003463,trunk bone,bone organ of trunk +http://purl.obolibrary.org/obo/UBERON_0003463,trunk bone,torso bone +http://purl.obolibrary.org/obo/UBERON_0003463,trunk bone,torso bone organ +http://purl.obolibrary.org/obo/UBERON_0003463,trunk bone,trunk bone organ +http://purl.obolibrary.org/obo/UBERON_0003464,hindlimb bone,bone of hind limb +http://purl.obolibrary.org/obo/UBERON_0003464,hindlimb bone,bone of hindlimb +http://purl.obolibrary.org/obo/UBERON_0003464,hindlimb bone,bone of inferior member +http://purl.obolibrary.org/obo/UBERON_0003464,hindlimb bone,bone of lower extremity +http://purl.obolibrary.org/obo/UBERON_0003464,hindlimb bone,bone organ of hind limb +http://purl.obolibrary.org/obo/UBERON_0003464,hindlimb bone,bone organ of hindlimb +http://purl.obolibrary.org/obo/UBERON_0003464,hindlimb bone,bone organ of lower extremity +http://purl.obolibrary.org/obo/UBERON_0003464,hindlimb bone,hind limb bone +http://purl.obolibrary.org/obo/UBERON_0003464,hindlimb bone,hind limb bone organ +http://purl.obolibrary.org/obo/UBERON_0003464,hindlimb bone,hindlimb bone organ +http://purl.obolibrary.org/obo/UBERON_0003466,forelimb zeugopod bone,antebrachial region bone +http://purl.obolibrary.org/obo/UBERON_0003466,forelimb zeugopod bone,antebrachial region bone organ +http://purl.obolibrary.org/obo/UBERON_0003466,forelimb zeugopod bone,arm zeugopod bone +http://purl.obolibrary.org/obo/UBERON_0003466,forelimb zeugopod bone,arm zeugopod bone organ +http://purl.obolibrary.org/obo/UBERON_0003466,forelimb zeugopod bone,lower arm bone +http://purl.obolibrary.org/obo/UBERON_0003466,forelimb zeugopod bone,"zeugopod bone, forelimb" +http://purl.obolibrary.org/obo/UBERON_0003466,forelimb zeugopod bone,"zeugopod bone, upper" +http://purl.obolibrary.org/obo/UBERON_0003467,sesamoid bone of gastrocnemius,gastrocnemius sesamoid bone +http://purl.obolibrary.org/obo/UBERON_0003467,sesamoid bone of gastrocnemius,m. gastrocnemius sesamoid bone +http://purl.obolibrary.org/obo/UBERON_0003467,sesamoid bone of gastrocnemius,ossa sessamoidea m. gastrocnemii +http://purl.obolibrary.org/obo/UBERON_0003467,sesamoid bone of gastrocnemius,sesamoid bone of m. gastrocnemius +http://purl.obolibrary.org/obo/UBERON_0003468,ureteric segment of renal artery, +http://purl.obolibrary.org/obo/UBERON_0003469,respiratory system artery, +http://purl.obolibrary.org/obo/UBERON_0003470,artery of upper lip,arteria labialis superior +http://purl.obolibrary.org/obo/UBERON_0003470,artery of upper lip,ramus labialis superior arteriae facialis +http://purl.obolibrary.org/obo/UBERON_0003470,artery of upper lip,superior labial artery +http://purl.obolibrary.org/obo/UBERON_0003470,artery of upper lip,superior labial branch of facial artery +http://purl.obolibrary.org/obo/UBERON_0003471,artery of lower lip,arteria labialis inferior +http://purl.obolibrary.org/obo/UBERON_0003471,artery of lower lip,inferior labial artery +http://purl.obolibrary.org/obo/UBERON_0003471,artery of lower lip,inferior labial branch of facial artery +http://purl.obolibrary.org/obo/UBERON_0003471,artery of lower lip,ramus labialis inferior (arteria facialis) +http://purl.obolibrary.org/obo/UBERON_0003471,artery of lower lip,ramus labialis inferior arteriae facialis +http://purl.obolibrary.org/obo/UBERON_0003472,cerebellar artery, +http://purl.obolibrary.org/obo/UBERON_0003473,thoracic cavity artery, +http://purl.obolibrary.org/obo/UBERON_0003474,meningeal artery, +http://purl.obolibrary.org/obo/UBERON_0003475,ureteric vein,ureter vein +http://purl.obolibrary.org/obo/UBERON_0003475,ureteric vein,vein of ureter +http://purl.obolibrary.org/obo/UBERON_0003476,respiratory system venous blood vessel,apparatus respiratorius vein +http://purl.obolibrary.org/obo/UBERON_0003476,respiratory system venous blood vessel,respiratory system vein +http://purl.obolibrary.org/obo/UBERON_0003476,respiratory system venous blood vessel,vein of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0003476,respiratory system venous blood vessel,vein of respiratory system +http://purl.obolibrary.org/obo/UBERON_0003477,vein of upper lip,superior labial vein +http://purl.obolibrary.org/obo/UBERON_0003477,vein of upper lip,upper lip vein +http://purl.obolibrary.org/obo/UBERON_0003477,vein of upper lip,vena labialis superior +http://purl.obolibrary.org/obo/UBERON_0003478,vein of lower lip,inferior labial vein +http://purl.obolibrary.org/obo/UBERON_0003478,vein of lower lip,lower lip vein +http://purl.obolibrary.org/obo/UBERON_0003478,vein of lower lip,vena labialis inferior +http://purl.obolibrary.org/obo/UBERON_0003479,thoracic cavity vein,cavity of chest vein +http://purl.obolibrary.org/obo/UBERON_0003479,thoracic cavity vein,cavity of thorax vein +http://purl.obolibrary.org/obo/UBERON_0003479,thoracic cavity vein,chest cavity vein +http://purl.obolibrary.org/obo/UBERON_0003479,thoracic cavity vein,pectoral cavity vein +http://purl.obolibrary.org/obo/UBERON_0003479,thoracic cavity vein,vein of cavity of chest +http://purl.obolibrary.org/obo/UBERON_0003479,thoracic cavity vein,vein of cavity of thorax +http://purl.obolibrary.org/obo/UBERON_0003479,thoracic cavity vein,vein of chest cavity +http://purl.obolibrary.org/obo/UBERON_0003479,thoracic cavity vein,vein of pectoral cavity +http://purl.obolibrary.org/obo/UBERON_0003479,thoracic cavity vein,vein of thoracic cavity +http://purl.obolibrary.org/obo/UBERON_0003480,vein of clitoris,clitoris vein +http://purl.obolibrary.org/obo/UBERON_0003481,tail vein,post-vent region vein +http://purl.obolibrary.org/obo/UBERON_0003481,tail vein,vein of post-vent region +http://purl.obolibrary.org/obo/UBERON_0003481,tail vein,vein of tail +http://purl.obolibrary.org/obo/UBERON_0003482,vein of trabecular bone,spongy bone vein +http://purl.obolibrary.org/obo/UBERON_0003482,vein of trabecular bone,trabecular bone tissue vein +http://purl.obolibrary.org/obo/UBERON_0003482,vein of trabecular bone,trabecular bone vein +http://purl.obolibrary.org/obo/UBERON_0003482,vein of trabecular bone,vein of spongy bone +http://purl.obolibrary.org/obo/UBERON_0003482,vein of trabecular bone,vein of trabecular bone tissue +http://purl.obolibrary.org/obo/UBERON_0003483,thymus lymphoid tissue,lymphoid tissue of thymus +http://purl.obolibrary.org/obo/UBERON_0003483,thymus lymphoid tissue,lymphoid tissue of thymus gland +http://purl.obolibrary.org/obo/UBERON_0003483,thymus lymphoid tissue,thymus gland lymphoid tissue +http://purl.obolibrary.org/obo/UBERON_0003484,eye sebaceous gland,camera-type eye sebaceous gland +http://purl.obolibrary.org/obo/UBERON_0003484,eye sebaceous gland,sebaceous gland of camera-type eye +http://purl.obolibrary.org/obo/UBERON_0003484,eye sebaceous gland,sebaceous gland of vertebrate eye +http://purl.obolibrary.org/obo/UBERON_0003484,eye sebaceous gland,vertebrate eye sebaceous gland +http://purl.obolibrary.org/obo/UBERON_0003485,vagina sebaceous gland,sebaceous gland of vagina +http://purl.obolibrary.org/obo/UBERON_0003487,skin sebaceous gland,cutaneous sebaceous gland +http://purl.obolibrary.org/obo/UBERON_0003487,skin sebaceous gland,sebaceous gland of skin +http://purl.obolibrary.org/obo/UBERON_0003488,abdominal mammary gland,abdomen lactiferous gland +http://purl.obolibrary.org/obo/UBERON_0003488,abdominal mammary gland,abdomen lobe of breast +http://purl.obolibrary.org/obo/UBERON_0003488,abdominal mammary gland,abdomen lobe of mammary gland +http://purl.obolibrary.org/obo/UBERON_0003488,abdominal mammary gland,abdomen mammary gland +http://purl.obolibrary.org/obo/UBERON_0003488,abdominal mammary gland,lactiferous gland of abdomen +http://purl.obolibrary.org/obo/UBERON_0003488,abdominal mammary gland,lobe of breast of abdomen +http://purl.obolibrary.org/obo/UBERON_0003488,abdominal mammary gland,lobe of mammary gland of abdomen +http://purl.obolibrary.org/obo/UBERON_0003488,abdominal mammary gland,mammary gland of abdomen +http://purl.obolibrary.org/obo/UBERON_0003489,respiratory system capillary endothelium,apparatus respiratorius blood capillary endothelium +http://purl.obolibrary.org/obo/UBERON_0003489,respiratory system capillary endothelium,apparatus respiratorius capillary endothelium +http://purl.obolibrary.org/obo/UBERON_0003489,respiratory system capillary endothelium,apparatus respiratorius capillary vessel endothelium +http://purl.obolibrary.org/obo/UBERON_0003489,respiratory system capillary endothelium,apparatus respiratorius endothelium of blood capillary +http://purl.obolibrary.org/obo/UBERON_0003489,respiratory system capillary endothelium,apparatus respiratorius endothelium of capillary +http://purl.obolibrary.org/obo/UBERON_0003489,respiratory system capillary endothelium,apparatus respiratorius endothelium of capillary vessel +http://purl.obolibrary.org/obo/UBERON_0003489,respiratory system capillary endothelium,blood capillary endothelium of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0003489,respiratory system capillary endothelium,blood capillary endothelium of respiratory system +http://purl.obolibrary.org/obo/UBERON_0003489,respiratory system capillary endothelium,capillary endothelium of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0003489,respiratory system capillary endothelium,capillary endothelium of respiratory system +http://purl.obolibrary.org/obo/UBERON_0003489,respiratory system capillary endothelium,capillary vessel endothelium of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0003489,respiratory system capillary endothelium,capillary vessel endothelium of respiratory system +http://purl.obolibrary.org/obo/UBERON_0003489,respiratory system capillary endothelium,endothelium of blood capillary of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0003489,respiratory system capillary endothelium,endothelium of blood capillary of respiratory system +http://purl.obolibrary.org/obo/UBERON_0003489,respiratory system capillary endothelium,endothelium of capillary of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0003489,respiratory system capillary endothelium,endothelium of capillary of respiratory system +http://purl.obolibrary.org/obo/UBERON_0003489,respiratory system capillary endothelium,endothelium of capillary vessel of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0003489,respiratory system capillary endothelium,endothelium of capillary vessel of respiratory system +http://purl.obolibrary.org/obo/UBERON_0003489,respiratory system capillary endothelium,respiratory system blood capillary endothelium +http://purl.obolibrary.org/obo/UBERON_0003489,respiratory system capillary endothelium,respiratory system capillary vessel endothelium +http://purl.obolibrary.org/obo/UBERON_0003489,respiratory system capillary endothelium,respiratory system endothelium of blood capillary +http://purl.obolibrary.org/obo/UBERON_0003489,respiratory system capillary endothelium,respiratory system endothelium of capillary +http://purl.obolibrary.org/obo/UBERON_0003489,respiratory system capillary endothelium,respiratory system endothelium of capillary vessel +http://purl.obolibrary.org/obo/UBERON_0003490,respiratory system reticular lamina,apparatus respiratorius fibroreticular lamina +http://purl.obolibrary.org/obo/UBERON_0003490,respiratory system reticular lamina,apparatus respiratorius lamina fibroreticularis +http://purl.obolibrary.org/obo/UBERON_0003490,respiratory system reticular lamina,apparatus respiratorius reticular lamina +http://purl.obolibrary.org/obo/UBERON_0003490,respiratory system reticular lamina,fibroreticular lamina of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0003490,respiratory system reticular lamina,fibroreticular lamina of respiratory system +http://purl.obolibrary.org/obo/UBERON_0003490,respiratory system reticular lamina,lamina fibroreticularis of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0003490,respiratory system reticular lamina,lamina fibroreticularis of respiratory system +http://purl.obolibrary.org/obo/UBERON_0003490,respiratory system reticular lamina,respiratory system fibroreticular lamina +http://purl.obolibrary.org/obo/UBERON_0003490,respiratory system reticular lamina,respiratory system lamina fibroreticularis +http://purl.obolibrary.org/obo/UBERON_0003490,respiratory system reticular lamina,reticular lamina of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0003490,respiratory system reticular lamina,reticular lamina of respiratory system +http://purl.obolibrary.org/obo/UBERON_0003492,bronchus reticular lamina,bronchi fibroreticular lamina +http://purl.obolibrary.org/obo/UBERON_0003492,bronchus reticular lamina,bronchi lamina fibroreticularis +http://purl.obolibrary.org/obo/UBERON_0003492,bronchus reticular lamina,bronchi reticular lamina +http://purl.obolibrary.org/obo/UBERON_0003492,bronchus reticular lamina,bronchial trunk fibroreticular lamina +http://purl.obolibrary.org/obo/UBERON_0003492,bronchus reticular lamina,bronchial trunk lamina fibroreticularis +http://purl.obolibrary.org/obo/UBERON_0003492,bronchus reticular lamina,bronchial trunk reticular lamina +http://purl.obolibrary.org/obo/UBERON_0003492,bronchus reticular lamina,bronchus fibroreticular lamina +http://purl.obolibrary.org/obo/UBERON_0003492,bronchus reticular lamina,bronchus lamina fibroreticularis +http://purl.obolibrary.org/obo/UBERON_0003492,bronchus reticular lamina,fibroreticular lamina of bronchi +http://purl.obolibrary.org/obo/UBERON_0003492,bronchus reticular lamina,fibroreticular lamina of bronchial trunk +http://purl.obolibrary.org/obo/UBERON_0003492,bronchus reticular lamina,fibroreticular lamina of bronchus +http://purl.obolibrary.org/obo/UBERON_0003492,bronchus reticular lamina,lamina fibroreticularis of bronchi +http://purl.obolibrary.org/obo/UBERON_0003492,bronchus reticular lamina,lamina fibroreticularis of bronchial trunk +http://purl.obolibrary.org/obo/UBERON_0003492,bronchus reticular lamina,lamina fibroreticularis of bronchus +http://purl.obolibrary.org/obo/UBERON_0003492,bronchus reticular lamina,reticular lamina of bronchi +http://purl.obolibrary.org/obo/UBERON_0003492,bronchus reticular lamina,reticular lamina of bronchial trunk +http://purl.obolibrary.org/obo/UBERON_0003492,bronchus reticular lamina,reticular lamina of bronchus +http://purl.obolibrary.org/obo/UBERON_0003493,trachea reticular lamina,fibroreticular lamina of cartilaginous trachea +http://purl.obolibrary.org/obo/UBERON_0003493,trachea reticular lamina,fibroreticular lamina of windpipe +http://purl.obolibrary.org/obo/UBERON_0003493,trachea reticular lamina,lamina fibroreticularis of cartilaginous trachea +http://purl.obolibrary.org/obo/UBERON_0003493,trachea reticular lamina,lamina fibroreticularis of windpipe +http://purl.obolibrary.org/obo/UBERON_0003493,trachea reticular lamina,reticular lamina of cartilaginous trachea +http://purl.obolibrary.org/obo/UBERON_0003493,trachea reticular lamina,reticular lamina of windpipe +http://purl.obolibrary.org/obo/UBERON_0003493,trachea reticular lamina,windpipe fibroreticular lamina +http://purl.obolibrary.org/obo/UBERON_0003493,trachea reticular lamina,windpipe lamina fibroreticularis +http://purl.obolibrary.org/obo/UBERON_0003493,trachea reticular lamina,windpipe reticular lamina +http://purl.obolibrary.org/obo/UBERON_0003494,respiratory system venule,apparatus respiratorius venule +http://purl.obolibrary.org/obo/UBERON_0003494,respiratory system venule,venule of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0003494,respiratory system venule,venule of respiratory system +http://purl.obolibrary.org/obo/UBERON_0003495,respiratory system arteriole, +http://purl.obolibrary.org/obo/UBERON_0003496,head blood vessel,adult head blood vessel +http://purl.obolibrary.org/obo/UBERON_0003496,head blood vessel,blood vessel of adult head +http://purl.obolibrary.org/obo/UBERON_0003496,head blood vessel,blood vessel of head +http://purl.obolibrary.org/obo/UBERON_0003497,abdomen blood vessel,blood vessel of abdomen +http://purl.obolibrary.org/obo/UBERON_0003498,heart blood vessel,blood vessel of heart +http://purl.obolibrary.org/obo/UBERON_0003499,brain blood vessel,blood vessel of brain +http://purl.obolibrary.org/obo/UBERON_0003500,corneal blood vessel,blood vessel of cornea +http://purl.obolibrary.org/obo/UBERON_0003500,corneal blood vessel,cornea blood vessel +http://purl.obolibrary.org/obo/UBERON_0003501,retina blood vessel,blood vessel of inner layer of eyeball +http://purl.obolibrary.org/obo/UBERON_0003501,retina blood vessel,blood vessel of retina +http://purl.obolibrary.org/obo/UBERON_0003501,retina blood vessel,blood vessel of tunica interna of eyeball +http://purl.obolibrary.org/obo/UBERON_0003501,retina blood vessel,inner layer of eyeball blood vessel +http://purl.obolibrary.org/obo/UBERON_0003501,retina blood vessel,retinal blood vessel +http://purl.obolibrary.org/obo/UBERON_0003501,retina blood vessel,tunica interna of eyeball blood vessel +http://purl.obolibrary.org/obo/UBERON_0003502,neck blood vessel,blood vessel of neck +http://purl.obolibrary.org/obo/UBERON_0003502,neck blood vessel,blood vessel of neck (volume) +http://purl.obolibrary.org/obo/UBERON_0003502,neck blood vessel,neck (volume) blood vessel +http://purl.obolibrary.org/obo/UBERON_0003503,leg blood vessel,blood vessel of leg +http://purl.obolibrary.org/obo/UBERON_0003504,respiratory system blood vessel,apparatus respiratorius blood vessel +http://purl.obolibrary.org/obo/UBERON_0003504,respiratory system blood vessel,blood vessel of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0003504,respiratory system blood vessel,blood vessel of respiratory system +http://purl.obolibrary.org/obo/UBERON_0003505,trachea blood vessel,blood vessel of trachea +http://purl.obolibrary.org/obo/UBERON_0003506,chest blood vessel,anterior thoracic region blood vessel +http://purl.obolibrary.org/obo/UBERON_0003506,chest blood vessel,anterolateral part of thorax blood vessel +http://purl.obolibrary.org/obo/UBERON_0003506,chest blood vessel,blood vessel of anterior thoracic region +http://purl.obolibrary.org/obo/UBERON_0003506,chest blood vessel,blood vessel of anterolateral part of thorax +http://purl.obolibrary.org/obo/UBERON_0003506,chest blood vessel,blood vessel of chest +http://purl.obolibrary.org/obo/UBERON_0003506,chest blood vessel,blood vessel of front of thorax +http://purl.obolibrary.org/obo/UBERON_0003506,chest blood vessel,front of thorax blood vessel +http://purl.obolibrary.org/obo/UBERON_0003507,arm blood vessel,blood vessel of arm +http://purl.obolibrary.org/obo/UBERON_0003508,pedal digit blood vessel,blood vessel of digit of foot +http://purl.obolibrary.org/obo/UBERON_0003508,pedal digit blood vessel,blood vessel of digit of terminal segment of free lower limb +http://purl.obolibrary.org/obo/UBERON_0003508,pedal digit blood vessel,blood vessel of digitus pedis +http://purl.obolibrary.org/obo/UBERON_0003508,pedal digit blood vessel,blood vessel of foot digit +http://purl.obolibrary.org/obo/UBERON_0003508,pedal digit blood vessel,blood vessel of terminal segment of free lower limb digit +http://purl.obolibrary.org/obo/UBERON_0003508,pedal digit blood vessel,blood vessel of toe +http://purl.obolibrary.org/obo/UBERON_0003508,pedal digit blood vessel,digit of foot blood vessel +http://purl.obolibrary.org/obo/UBERON_0003508,pedal digit blood vessel,digit of terminal segment of free lower limb blood vessel +http://purl.obolibrary.org/obo/UBERON_0003508,pedal digit blood vessel,digitus pedis blood vessel +http://purl.obolibrary.org/obo/UBERON_0003508,pedal digit blood vessel,foot digit blood vessel +http://purl.obolibrary.org/obo/UBERON_0003508,pedal digit blood vessel,hind limb digit blood vessel +http://purl.obolibrary.org/obo/UBERON_0003508,pedal digit blood vessel,terminal segment of free lower limb digit blood vessel +http://purl.obolibrary.org/obo/UBERON_0003508,pedal digit blood vessel,toe blood vessel +http://purl.obolibrary.org/obo/UBERON_0003509,arterial blood vessel, +http://purl.obolibrary.org/obo/UBERON_0003510,eyelid blood vessel,blepharon blood vessel +http://purl.obolibrary.org/obo/UBERON_0003510,eyelid blood vessel,blood vessel of blepharon +http://purl.obolibrary.org/obo/UBERON_0003510,eyelid blood vessel,blood vessel of eyelid +http://purl.obolibrary.org/obo/UBERON_0003511,iris blood vessel,blood vessel of iris +http://purl.obolibrary.org/obo/UBERON_0003512,lung blood vessel,blood vessel of lung +http://purl.obolibrary.org/obo/UBERON_0003513,trunk blood vessel,blood vessel of torso +http://purl.obolibrary.org/obo/UBERON_0003513,trunk blood vessel,blood vessel of trunk +http://purl.obolibrary.org/obo/UBERON_0003513,trunk blood vessel,torso blood vessel +http://purl.obolibrary.org/obo/UBERON_0003514,limb blood vessel,blood vessel of limb +http://purl.obolibrary.org/obo/UBERON_0003515,forelimb blood vessel,anteriormost limb blood vessel +http://purl.obolibrary.org/obo/UBERON_0003515,forelimb blood vessel,blood vessel of anteriormost limb +http://purl.obolibrary.org/obo/UBERON_0003515,forelimb blood vessel,blood vessel of fore limb +http://purl.obolibrary.org/obo/UBERON_0003515,forelimb blood vessel,blood vessel of forelimb +http://purl.obolibrary.org/obo/UBERON_0003515,forelimb blood vessel,blood vessel of upper extremity +http://purl.obolibrary.org/obo/UBERON_0003515,forelimb blood vessel,fore limb blood vessel +http://purl.obolibrary.org/obo/UBERON_0003516,hindlimb blood vessel,blood vessel of hind limb +http://purl.obolibrary.org/obo/UBERON_0003516,hindlimb blood vessel,blood vessel of hindlimb +http://purl.obolibrary.org/obo/UBERON_0003516,hindlimb blood vessel,blood vessel of lower extremity +http://purl.obolibrary.org/obo/UBERON_0003516,hindlimb blood vessel,hind limb blood vessel +http://purl.obolibrary.org/obo/UBERON_0003517,kidney blood vessel,blood vessel of kidney +http://purl.obolibrary.org/obo/UBERON_0003517,kidney blood vessel,renal blood vessel +http://purl.obolibrary.org/obo/UBERON_0003518,main bronchus blood vessel,blood vessel of bronchus principalis +http://purl.obolibrary.org/obo/UBERON_0003518,main bronchus blood vessel,blood vessel of main bronchus +http://purl.obolibrary.org/obo/UBERON_0003518,main bronchus blood vessel,blood vessel of primary bronchus +http://purl.obolibrary.org/obo/UBERON_0003518,main bronchus blood vessel,blood vessel of principal bronchus +http://purl.obolibrary.org/obo/UBERON_0003518,main bronchus blood vessel,bronchus principalis blood vessel +http://purl.obolibrary.org/obo/UBERON_0003518,main bronchus blood vessel,primary bronchus blood vessel +http://purl.obolibrary.org/obo/UBERON_0003518,main bronchus blood vessel,principal bronchus blood vessel +http://purl.obolibrary.org/obo/UBERON_0003519,thoracic cavity blood vessel,blood vessel of cavity of chest +http://purl.obolibrary.org/obo/UBERON_0003519,thoracic cavity blood vessel,blood vessel of cavity of thorax +http://purl.obolibrary.org/obo/UBERON_0003519,thoracic cavity blood vessel,blood vessel of chest cavity +http://purl.obolibrary.org/obo/UBERON_0003519,thoracic cavity blood vessel,blood vessel of pectoral cavity +http://purl.obolibrary.org/obo/UBERON_0003519,thoracic cavity blood vessel,blood vessel of thoracic cavity +http://purl.obolibrary.org/obo/UBERON_0003519,thoracic cavity blood vessel,cavity of chest blood vessel +http://purl.obolibrary.org/obo/UBERON_0003519,thoracic cavity blood vessel,cavity of thorax blood vessel +http://purl.obolibrary.org/obo/UBERON_0003519,thoracic cavity blood vessel,chest cavity blood vessel +http://purl.obolibrary.org/obo/UBERON_0003519,thoracic cavity blood vessel,pectoral cavity blood vessel +http://purl.obolibrary.org/obo/UBERON_0003520,pelvis blood vessel,blood vessel of pelvis +http://purl.obolibrary.org/obo/UBERON_0003521,pes blood vessel,blood vessel of foot +http://purl.obolibrary.org/obo/UBERON_0003521,pes blood vessel,foot blood vessel +http://purl.obolibrary.org/obo/UBERON_0003522,manual digit blood vessel,blood vessel of digit of terminal segment of free upper limb +http://purl.obolibrary.org/obo/UBERON_0003522,manual digit blood vessel,blood vessel of terminal segment of free upper limb digit +http://purl.obolibrary.org/obo/UBERON_0003522,manual digit blood vessel,digit of terminal segment of free upper limb blood vessel +http://purl.obolibrary.org/obo/UBERON_0003522,manual digit blood vessel,finger blood vessel +http://purl.obolibrary.org/obo/UBERON_0003522,manual digit blood vessel,hand digit blood vessel +http://purl.obolibrary.org/obo/UBERON_0003522,manual digit blood vessel,terminal segment of free upper limb digit blood vessel +http://purl.obolibrary.org/obo/UBERON_0003523,manus blood vessel,blood vessel of hand +http://purl.obolibrary.org/obo/UBERON_0003523,manus blood vessel,blood vessel of manus +http://purl.obolibrary.org/obo/UBERON_0003523,manus blood vessel,hand blood vessel +http://purl.obolibrary.org/obo/UBERON_0003524,tail blood vessel,blood vessel of post-vent region +http://purl.obolibrary.org/obo/UBERON_0003524,tail blood vessel,blood vessel of tail +http://purl.obolibrary.org/obo/UBERON_0003524,tail blood vessel,post-vent region blood vessel +http://purl.obolibrary.org/obo/UBERON_0003526,respiratory system capillary,apparatus respiratorius blood capillary +http://purl.obolibrary.org/obo/UBERON_0003526,respiratory system capillary,apparatus respiratorius capillary +http://purl.obolibrary.org/obo/UBERON_0003526,respiratory system capillary,apparatus respiratorius capillary vessel +http://purl.obolibrary.org/obo/UBERON_0003526,respiratory system capillary,blood capillary of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0003526,respiratory system capillary,blood capillary of respiratory system +http://purl.obolibrary.org/obo/UBERON_0003526,respiratory system capillary,capillary of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0003526,respiratory system capillary,capillary of respiratory system +http://purl.obolibrary.org/obo/UBERON_0003526,respiratory system capillary,capillary vessel of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0003526,respiratory system capillary,capillary vessel of respiratory system +http://purl.obolibrary.org/obo/UBERON_0003526,respiratory system capillary,respiratory system blood capillary +http://purl.obolibrary.org/obo/UBERON_0003526,respiratory system capillary,respiratory system capillary vessel +http://purl.obolibrary.org/obo/UBERON_0003527,kidney capillary,blood capillary of kidney +http://purl.obolibrary.org/obo/UBERON_0003527,kidney capillary,capillary of kidney +http://purl.obolibrary.org/obo/UBERON_0003527,kidney capillary,capillary vessel of kidney +http://purl.obolibrary.org/obo/UBERON_0003527,kidney capillary,kidney blood capillary +http://purl.obolibrary.org/obo/UBERON_0003527,kidney capillary,kidney capillary vessel +http://purl.obolibrary.org/obo/UBERON_0003527,kidney capillary,renal capillary +http://purl.obolibrary.org/obo/UBERON_0003528,brain gray matter,brain grey matter +http://purl.obolibrary.org/obo/UBERON_0003528,brain gray matter,brain grey substance +http://purl.obolibrary.org/obo/UBERON_0003528,brain gray matter,gray matter of brain +http://purl.obolibrary.org/obo/UBERON_0003528,brain gray matter,grey matter of brain +http://purl.obolibrary.org/obo/UBERON_0003528,brain gray matter,grey substance of brain +http://purl.obolibrary.org/obo/UBERON_0003529,respiratory system lymphatic vessel endothelium,apparatus respiratorius endothelium of lymph vessel +http://purl.obolibrary.org/obo/UBERON_0003529,respiratory system lymphatic vessel endothelium,apparatus respiratorius lymph vessel endothelium +http://purl.obolibrary.org/obo/UBERON_0003529,respiratory system lymphatic vessel endothelium,apparatus respiratorius lymphatic vessel endothelium +http://purl.obolibrary.org/obo/UBERON_0003529,respiratory system lymphatic vessel endothelium,endothelium of lymph vessel of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0003529,respiratory system lymphatic vessel endothelium,endothelium of lymph vessel of respiratory system +http://purl.obolibrary.org/obo/UBERON_0003529,respiratory system lymphatic vessel endothelium,lymph vessel endothelium of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0003529,respiratory system lymphatic vessel endothelium,lymph vessel endothelium of respiratory system +http://purl.obolibrary.org/obo/UBERON_0003529,respiratory system lymphatic vessel endothelium,lymphatic vessel endothelium of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0003529,respiratory system lymphatic vessel endothelium,lymphatic vessel endothelium of respiratory system +http://purl.obolibrary.org/obo/UBERON_0003529,respiratory system lymphatic vessel endothelium,respiratory system endothelium of lymph vessel +http://purl.obolibrary.org/obo/UBERON_0003529,respiratory system lymphatic vessel endothelium,respiratory system lymph vessel endothelium +http://purl.obolibrary.org/obo/UBERON_0003529,respiratory system lymphatic vessel endothelium,respiratory system lymphatic vessel endothelium +http://purl.obolibrary.org/obo/UBERON_0003530,pedal digit skin,digit of foot skin +http://purl.obolibrary.org/obo/UBERON_0003530,pedal digit skin,digit of terminal segment of free lower limb skin +http://purl.obolibrary.org/obo/UBERON_0003530,pedal digit skin,digitus pedis skin +http://purl.obolibrary.org/obo/UBERON_0003530,pedal digit skin,foot digit skin +http://purl.obolibrary.org/obo/UBERON_0003530,pedal digit skin,hind limb digit skin +http://purl.obolibrary.org/obo/UBERON_0003530,pedal digit skin,skin of digit of foot +http://purl.obolibrary.org/obo/UBERON_0003530,pedal digit skin,skin of digit of terminal segment of free lower limb +http://purl.obolibrary.org/obo/UBERON_0003530,pedal digit skin,skin of digitus pedis +http://purl.obolibrary.org/obo/UBERON_0003530,pedal digit skin,skin of foot digit +http://purl.obolibrary.org/obo/UBERON_0003530,pedal digit skin,skin of terminal segment of free lower limb digit +http://purl.obolibrary.org/obo/UBERON_0003530,pedal digit skin,skin of toe +http://purl.obolibrary.org/obo/UBERON_0003530,pedal digit skin,terminal segment of free lower limb digit skin +http://purl.obolibrary.org/obo/UBERON_0003530,pedal digit skin,toe skin +http://purl.obolibrary.org/obo/UBERON_0003531,forelimb skin,anteriormost limb skin +http://purl.obolibrary.org/obo/UBERON_0003531,forelimb skin,fore limb skin +http://purl.obolibrary.org/obo/UBERON_0003531,forelimb skin,skin of fore limb +http://purl.obolibrary.org/obo/UBERON_0003531,forelimb skin,skin of forelimb +http://purl.obolibrary.org/obo/UBERON_0003531,forelimb skin,skin of upper limb +http://purl.obolibrary.org/obo/UBERON_0003531,forelimb skin,upper limb skin +http://purl.obolibrary.org/obo/UBERON_0003532,hindlimb skin,hind limb skin +http://purl.obolibrary.org/obo/UBERON_0003532,hindlimb skin,lower limb skin +http://purl.obolibrary.org/obo/UBERON_0003532,hindlimb skin,skin of hind limb +http://purl.obolibrary.org/obo/UBERON_0003532,hindlimb skin,skin of hindlimb +http://purl.obolibrary.org/obo/UBERON_0003532,hindlimb skin,skin of lower extremity +http://purl.obolibrary.org/obo/UBERON_0003532,hindlimb skin,skin of lower limb +http://purl.obolibrary.org/obo/UBERON_0003533,manual digit skin,digit of hand skin +http://purl.obolibrary.org/obo/UBERON_0003533,manual digit skin,digit of terminal segment of free upper limb skin +http://purl.obolibrary.org/obo/UBERON_0003533,manual digit skin,digitus manus skin +http://purl.obolibrary.org/obo/UBERON_0003533,manual digit skin,finger skin +http://purl.obolibrary.org/obo/UBERON_0003533,manual digit skin,fore limb digit skin +http://purl.obolibrary.org/obo/UBERON_0003533,manual digit skin,hand digit skin +http://purl.obolibrary.org/obo/UBERON_0003533,manual digit skin,skin of digit of hand +http://purl.obolibrary.org/obo/UBERON_0003533,manual digit skin,skin of digit of terminal segment of free upper limb +http://purl.obolibrary.org/obo/UBERON_0003533,manual digit skin,skin of digitus manus +http://purl.obolibrary.org/obo/UBERON_0003533,manual digit skin,skin of finger +http://purl.obolibrary.org/obo/UBERON_0003533,manual digit skin,skin of hand digit +http://purl.obolibrary.org/obo/UBERON_0003533,manual digit skin,skin of terminal segment of free upper limb digit +http://purl.obolibrary.org/obo/UBERON_0003533,manual digit skin,terminal segment of free upper limb digit skin +http://purl.obolibrary.org/obo/UBERON_0003534,tail skin,post-vent region skin +http://purl.obolibrary.org/obo/UBERON_0003534,tail skin,skin of post-vent region +http://purl.obolibrary.org/obo/UBERON_0003534,tail skin,skin of tail +http://purl.obolibrary.org/obo/UBERON_0003535,vagus X nerve trunk,trunk of vagal nerve +http://purl.obolibrary.org/obo/UBERON_0003535,vagus X nerve trunk,trunk of vagus nerve +http://purl.obolibrary.org/obo/UBERON_0003535,vagus X nerve trunk,vagal X nerve trunk +http://purl.obolibrary.org/obo/UBERON_0003535,vagus X nerve trunk,vagal nerve trunk +http://purl.obolibrary.org/obo/UBERON_0003535,vagus X nerve trunk,vagus nerve trunk +http://purl.obolibrary.org/obo/UBERON_0003535,vagus X nerve trunk,vagus neural trunk +http://purl.obolibrary.org/obo/UBERON_0003536,right lung alveolar duct,alveolar duct of right lung +http://purl.obolibrary.org/obo/UBERON_0003537,left lung alveolar duct,alveolar duct of left lung +http://purl.obolibrary.org/obo/UBERON_0003538,right lung bronchiole,bronchiole of right lung +http://purl.obolibrary.org/obo/UBERON_0003539,left lung bronchiole,bronchiole of left lung +http://purl.obolibrary.org/obo/UBERON_0003540,right lung terminal bronchiole,bronchiolus terminalis of right lung +http://purl.obolibrary.org/obo/UBERON_0003540,right lung terminal bronchiole,right lung bronchiolus terminalis +http://purl.obolibrary.org/obo/UBERON_0003540,right lung terminal bronchiole,terminal bronchiole of right lung +http://purl.obolibrary.org/obo/UBERON_0003541,left lung terminal bronchiole,bronchiolus terminalis of left lung +http://purl.obolibrary.org/obo/UBERON_0003541,left lung terminal bronchiole,left lung bronchiolus terminalis +http://purl.obolibrary.org/obo/UBERON_0003541,left lung terminal bronchiole,terminal bronchiole of left lung +http://purl.obolibrary.org/obo/UBERON_0003542,right lung respiratory bronchiole,bronchiolus respiratorius of right lung +http://purl.obolibrary.org/obo/UBERON_0003542,right lung respiratory bronchiole,respiratory bronchiole of right lung +http://purl.obolibrary.org/obo/UBERON_0003542,right lung respiratory bronchiole,right lung bronchiolus respiratorius +http://purl.obolibrary.org/obo/UBERON_0003543,left lung respiratory bronchiole,bronchiolus respiratorius of left lung +http://purl.obolibrary.org/obo/UBERON_0003543,left lung respiratory bronchiole,left lung bronchiolus respiratorius +http://purl.obolibrary.org/obo/UBERON_0003543,left lung respiratory bronchiole,respiratory bronchiole of left lung +http://purl.obolibrary.org/obo/UBERON_0003544,brain white matter,brain white matter of neuraxis +http://purl.obolibrary.org/obo/UBERON_0003544,brain white matter,brain white substance +http://purl.obolibrary.org/obo/UBERON_0003544,brain white matter,white matter of brain +http://purl.obolibrary.org/obo/UBERON_0003544,brain white matter,white matter of neuraxis of brain +http://purl.obolibrary.org/obo/UBERON_0003544,brain white matter,white substance of brain +http://purl.obolibrary.org/obo/UBERON_0003546,distal convoluted tubule macula densa, +http://purl.obolibrary.org/obo/UBERON_0003547,brain meninx,brain meninges +http://purl.obolibrary.org/obo/UBERON_0003547,brain meninx,meninges of brain +http://purl.obolibrary.org/obo/UBERON_0003547,brain meninx,meninx of brain +http://purl.obolibrary.org/obo/UBERON_0003548,forebrain meninges,forebrain meninx +http://purl.obolibrary.org/obo/UBERON_0003548,forebrain meninges,meninges of forebrain +http://purl.obolibrary.org/obo/UBERON_0003548,forebrain meninges,meninx of forebrain +http://purl.obolibrary.org/obo/UBERON_0003549,brain pia mater,brain pia mater of neuraxis +http://purl.obolibrary.org/obo/UBERON_0003549,brain pia mater,pia mater of brain +http://purl.obolibrary.org/obo/UBERON_0003549,brain pia mater,pia mater of neuraxis of brain +http://purl.obolibrary.org/obo/UBERON_0003550,forebrain pia mater,forebrain pia mater of neuraxis +http://purl.obolibrary.org/obo/UBERON_0003550,forebrain pia mater,pia mater of forebrain +http://purl.obolibrary.org/obo/UBERON_0003550,forebrain pia mater,pia mater of neuraxis of forebrain +http://purl.obolibrary.org/obo/UBERON_0003551,midbrain pia mater,midbrain pia mater of neuraxis +http://purl.obolibrary.org/obo/UBERON_0003551,midbrain pia mater,pia mater of midbrain +http://purl.obolibrary.org/obo/UBERON_0003551,midbrain pia mater,pia mater of neuraxis of midbrain +http://purl.obolibrary.org/obo/UBERON_0003552,telencephalon pia mater,pia mater of neuraxis of telencephalon +http://purl.obolibrary.org/obo/UBERON_0003552,telencephalon pia mater,pia mater of telencephalon +http://purl.obolibrary.org/obo/UBERON_0003552,telencephalon pia mater,telencephalon pia mater of neuraxis +http://purl.obolibrary.org/obo/UBERON_0003553,diencephalon pia mater,between brain pia mater +http://purl.obolibrary.org/obo/UBERON_0003553,diencephalon pia mater,between brain pia mater of neuraxis +http://purl.obolibrary.org/obo/UBERON_0003553,diencephalon pia mater,diencephalon pia mater of neuraxis +http://purl.obolibrary.org/obo/UBERON_0003553,diencephalon pia mater,interbrain pia mater +http://purl.obolibrary.org/obo/UBERON_0003553,diencephalon pia mater,interbrain pia mater of neuraxis +http://purl.obolibrary.org/obo/UBERON_0003553,diencephalon pia mater,mature diencephalon pia mater +http://purl.obolibrary.org/obo/UBERON_0003553,diencephalon pia mater,mature diencephalon pia mater of neuraxis +http://purl.obolibrary.org/obo/UBERON_0003553,diencephalon pia mater,pia mater of between brain +http://purl.obolibrary.org/obo/UBERON_0003553,diencephalon pia mater,pia mater of diencephalon +http://purl.obolibrary.org/obo/UBERON_0003553,diencephalon pia mater,pia mater of interbrain +http://purl.obolibrary.org/obo/UBERON_0003553,diencephalon pia mater,pia mater of mature diencephalon +http://purl.obolibrary.org/obo/UBERON_0003553,diencephalon pia mater,pia mater of neuraxis of between brain +http://purl.obolibrary.org/obo/UBERON_0003553,diencephalon pia mater,pia mater of neuraxis of diencephalon +http://purl.obolibrary.org/obo/UBERON_0003553,diencephalon pia mater,pia mater of neuraxis of interbrain +http://purl.obolibrary.org/obo/UBERON_0003553,diencephalon pia mater,pia mater of neuraxis of mature diencephalon +http://purl.obolibrary.org/obo/UBERON_0003554,hindbrain pia mater,hindbrain pia mater of neuraxis +http://purl.obolibrary.org/obo/UBERON_0003554,hindbrain pia mater,pia mater of hindbrain +http://purl.obolibrary.org/obo/UBERON_0003554,hindbrain pia mater,pia mater of neuraxis of hindbrain +http://purl.obolibrary.org/obo/UBERON_0003555,spinal cord pia mater,pia mater of neuraxis of spinal cord +http://purl.obolibrary.org/obo/UBERON_0003555,spinal cord pia mater,pia mater of spinal cord +http://purl.obolibrary.org/obo/UBERON_0003555,spinal cord pia mater,spinal cord pia mater of neuraxis +http://purl.obolibrary.org/obo/UBERON_0003556,forebrain arachnoid mater,arachnoid mater of forebrain +http://purl.obolibrary.org/obo/UBERON_0003556,forebrain arachnoid mater,arachnoid mater of neuraxis of forebrain +http://purl.obolibrary.org/obo/UBERON_0003556,forebrain arachnoid mater,arachnoid of forebrain +http://purl.obolibrary.org/obo/UBERON_0003556,forebrain arachnoid mater,forebrain arachnoid +http://purl.obolibrary.org/obo/UBERON_0003556,forebrain arachnoid mater,forebrain arachnoid mater of neuraxis +http://purl.obolibrary.org/obo/UBERON_0003557,midbrain arachnoid mater,arachnoid mater of midbrain +http://purl.obolibrary.org/obo/UBERON_0003557,midbrain arachnoid mater,arachnoid mater of neuraxis of midbrain +http://purl.obolibrary.org/obo/UBERON_0003557,midbrain arachnoid mater,arachnoid of midbrain +http://purl.obolibrary.org/obo/UBERON_0003557,midbrain arachnoid mater,midbrain arachnoid +http://purl.obolibrary.org/obo/UBERON_0003557,midbrain arachnoid mater,midbrain arachnoid mater of neuraxis +http://purl.obolibrary.org/obo/UBERON_0003558,diencephalon arachnoid mater,arachnoid mater of between brain +http://purl.obolibrary.org/obo/UBERON_0003558,diencephalon arachnoid mater,arachnoid mater of diencephalon +http://purl.obolibrary.org/obo/UBERON_0003558,diencephalon arachnoid mater,arachnoid mater of interbrain +http://purl.obolibrary.org/obo/UBERON_0003558,diencephalon arachnoid mater,arachnoid mater of mature diencephalon +http://purl.obolibrary.org/obo/UBERON_0003558,diencephalon arachnoid mater,arachnoid mater of neuraxis of between brain +http://purl.obolibrary.org/obo/UBERON_0003558,diencephalon arachnoid mater,arachnoid mater of neuraxis of diencephalon +http://purl.obolibrary.org/obo/UBERON_0003558,diencephalon arachnoid mater,arachnoid mater of neuraxis of interbrain +http://purl.obolibrary.org/obo/UBERON_0003558,diencephalon arachnoid mater,arachnoid mater of neuraxis of mature diencephalon +http://purl.obolibrary.org/obo/UBERON_0003558,diencephalon arachnoid mater,arachnoid of between brain +http://purl.obolibrary.org/obo/UBERON_0003558,diencephalon arachnoid mater,arachnoid of diencephalon +http://purl.obolibrary.org/obo/UBERON_0003558,diencephalon arachnoid mater,arachnoid of interbrain +http://purl.obolibrary.org/obo/UBERON_0003558,diencephalon arachnoid mater,arachnoid of mature diencephalon +http://purl.obolibrary.org/obo/UBERON_0003558,diencephalon arachnoid mater,between brain arachnoid +http://purl.obolibrary.org/obo/UBERON_0003558,diencephalon arachnoid mater,between brain arachnoid mater +http://purl.obolibrary.org/obo/UBERON_0003558,diencephalon arachnoid mater,between brain arachnoid mater of neuraxis +http://purl.obolibrary.org/obo/UBERON_0003558,diencephalon arachnoid mater,diencephalon arachnoid +http://purl.obolibrary.org/obo/UBERON_0003558,diencephalon arachnoid mater,diencephalon arachnoid mater of neuraxis +http://purl.obolibrary.org/obo/UBERON_0003558,diencephalon arachnoid mater,interbrain arachnoid +http://purl.obolibrary.org/obo/UBERON_0003558,diencephalon arachnoid mater,interbrain arachnoid mater +http://purl.obolibrary.org/obo/UBERON_0003558,diencephalon arachnoid mater,interbrain arachnoid mater of neuraxis +http://purl.obolibrary.org/obo/UBERON_0003558,diencephalon arachnoid mater,mature diencephalon arachnoid +http://purl.obolibrary.org/obo/UBERON_0003558,diencephalon arachnoid mater,mature diencephalon arachnoid mater +http://purl.obolibrary.org/obo/UBERON_0003558,diencephalon arachnoid mater,mature diencephalon arachnoid mater of neuraxis +http://purl.obolibrary.org/obo/UBERON_0003559,hindbrain arachnoid mater,arachnoid mater of hindbrain +http://purl.obolibrary.org/obo/UBERON_0003559,hindbrain arachnoid mater,arachnoid mater of neuraxis of hindbrain +http://purl.obolibrary.org/obo/UBERON_0003559,hindbrain arachnoid mater,arachnoid of hindbrain +http://purl.obolibrary.org/obo/UBERON_0003559,hindbrain arachnoid mater,hindbrain arachnoid +http://purl.obolibrary.org/obo/UBERON_0003559,hindbrain arachnoid mater,hindbrain arachnoid mater of neuraxis +http://purl.obolibrary.org/obo/UBERON_0003560,spinal cord arachnoid mater,arachnoid mater of neuraxis of spinal cord +http://purl.obolibrary.org/obo/UBERON_0003560,spinal cord arachnoid mater,arachnoid mater of spinal cord +http://purl.obolibrary.org/obo/UBERON_0003560,spinal cord arachnoid mater,arachnoid of spinal cord +http://purl.obolibrary.org/obo/UBERON_0003560,spinal cord arachnoid mater,spinal cord arachnoid +http://purl.obolibrary.org/obo/UBERON_0003560,spinal cord arachnoid mater,spinal cord arachnoid mater of neuraxis +http://purl.obolibrary.org/obo/UBERON_0003561,forebrain dura mater,dura mater of forebrain +http://purl.obolibrary.org/obo/UBERON_0003561,forebrain dura mater,dura mater of neuraxis of forebrain +http://purl.obolibrary.org/obo/UBERON_0003561,forebrain dura mater,forebrain dura mater of neuraxis +http://purl.obolibrary.org/obo/UBERON_0003562,midbrain dura mater,dura mater of midbrain +http://purl.obolibrary.org/obo/UBERON_0003562,midbrain dura mater,dura mater of neuraxis of midbrain +http://purl.obolibrary.org/obo/UBERON_0003562,midbrain dura mater,midbrain dura mater of neuraxis +http://purl.obolibrary.org/obo/UBERON_0003563,telencephalon dura mater,dura mater of neuraxis of telencephalon +http://purl.obolibrary.org/obo/UBERON_0003563,telencephalon dura mater,dura mater of telencephalon +http://purl.obolibrary.org/obo/UBERON_0003563,telencephalon dura mater,telencephalon dura mater of neuraxis +http://purl.obolibrary.org/obo/UBERON_0003564,diencephalon dura mater,between brain dura mater +http://purl.obolibrary.org/obo/UBERON_0003564,diencephalon dura mater,between brain dura mater of neuraxis +http://purl.obolibrary.org/obo/UBERON_0003564,diencephalon dura mater,diencephalon dura mater of neuraxis +http://purl.obolibrary.org/obo/UBERON_0003564,diencephalon dura mater,dura mater of between brain +http://purl.obolibrary.org/obo/UBERON_0003564,diencephalon dura mater,dura mater of diencephalon +http://purl.obolibrary.org/obo/UBERON_0003564,diencephalon dura mater,dura mater of interbrain +http://purl.obolibrary.org/obo/UBERON_0003564,diencephalon dura mater,dura mater of mature diencephalon +http://purl.obolibrary.org/obo/UBERON_0003564,diencephalon dura mater,dura mater of neuraxis of between brain +http://purl.obolibrary.org/obo/UBERON_0003564,diencephalon dura mater,dura mater of neuraxis of diencephalon +http://purl.obolibrary.org/obo/UBERON_0003564,diencephalon dura mater,dura mater of neuraxis of interbrain +http://purl.obolibrary.org/obo/UBERON_0003564,diencephalon dura mater,dura mater of neuraxis of mature diencephalon +http://purl.obolibrary.org/obo/UBERON_0003564,diencephalon dura mater,interbrain dura mater +http://purl.obolibrary.org/obo/UBERON_0003564,diencephalon dura mater,interbrain dura mater of neuraxis +http://purl.obolibrary.org/obo/UBERON_0003564,diencephalon dura mater,mature diencephalon dura mater +http://purl.obolibrary.org/obo/UBERON_0003564,diencephalon dura mater,mature diencephalon dura mater of neuraxis +http://purl.obolibrary.org/obo/UBERON_0003565,hindbrain dura mater,dura mater of hindbrain +http://purl.obolibrary.org/obo/UBERON_0003565,hindbrain dura mater,dura mater of neuraxis of hindbrain +http://purl.obolibrary.org/obo/UBERON_0003565,hindbrain dura mater,hindbrain dura mater of neuraxis +http://purl.obolibrary.org/obo/UBERON_0003566,head connective tissue,adult head connective tissue +http://purl.obolibrary.org/obo/UBERON_0003566,head connective tissue,adult head portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0003566,head connective tissue,adult head textus connectivus +http://purl.obolibrary.org/obo/UBERON_0003566,head connective tissue,connective tissue of adult head +http://purl.obolibrary.org/obo/UBERON_0003566,head connective tissue,connective tissue of head +http://purl.obolibrary.org/obo/UBERON_0003566,head connective tissue,head portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0003566,head connective tissue,head textus connectivus +http://purl.obolibrary.org/obo/UBERON_0003566,head connective tissue,portion of connective tissue of adult head +http://purl.obolibrary.org/obo/UBERON_0003566,head connective tissue,portion of connective tissue of head +http://purl.obolibrary.org/obo/UBERON_0003566,head connective tissue,textus connectivus of adult head +http://purl.obolibrary.org/obo/UBERON_0003566,head connective tissue,textus connectivus of head +http://purl.obolibrary.org/obo/UBERON_0003567,abdomen connective tissue,abdomen portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0003567,abdomen connective tissue,abdomen textus connectivus +http://purl.obolibrary.org/obo/UBERON_0003567,abdomen connective tissue,connective tissue of abdomen +http://purl.obolibrary.org/obo/UBERON_0003567,abdomen connective tissue,portion of connective tissue of abdomen +http://purl.obolibrary.org/obo/UBERON_0003567,abdomen connective tissue,textus connectivus of abdomen +http://purl.obolibrary.org/obo/UBERON_0003568,neck connective tissue,connective tissue of neck +http://purl.obolibrary.org/obo/UBERON_0003568,neck connective tissue,connective tissue of neck (volume) +http://purl.obolibrary.org/obo/UBERON_0003568,neck connective tissue,neck (volume) connective tissue +http://purl.obolibrary.org/obo/UBERON_0003568,neck connective tissue,neck (volume) portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0003568,neck connective tissue,neck (volume) textus connectivus +http://purl.obolibrary.org/obo/UBERON_0003568,neck connective tissue,neck portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0003568,neck connective tissue,neck textus connectivus +http://purl.obolibrary.org/obo/UBERON_0003568,neck connective tissue,portion of connective tissue of neck +http://purl.obolibrary.org/obo/UBERON_0003568,neck connective tissue,portion of connective tissue of neck (volume) +http://purl.obolibrary.org/obo/UBERON_0003568,neck connective tissue,textus connectivus of neck +http://purl.obolibrary.org/obo/UBERON_0003568,neck connective tissue,textus connectivus of neck (volume) +http://purl.obolibrary.org/obo/UBERON_0003569,leg connective tissue,connective tissue of leg +http://purl.obolibrary.org/obo/UBERON_0003569,leg connective tissue,leg portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0003569,leg connective tissue,leg textus connectivus +http://purl.obolibrary.org/obo/UBERON_0003569,leg connective tissue,portion of connective tissue of leg +http://purl.obolibrary.org/obo/UBERON_0003569,leg connective tissue,textus connectivus of leg +http://purl.obolibrary.org/obo/UBERON_0003570,respiratory system connective tissue,apparatus respiratorius connective tissue +http://purl.obolibrary.org/obo/UBERON_0003570,respiratory system connective tissue,apparatus respiratorius portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0003570,respiratory system connective tissue,apparatus respiratorius textus connectivus +http://purl.obolibrary.org/obo/UBERON_0003570,respiratory system connective tissue,connective tissue of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0003570,respiratory system connective tissue,connective tissue of respiratory system +http://purl.obolibrary.org/obo/UBERON_0003570,respiratory system connective tissue,portion of connective tissue of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0003570,respiratory system connective tissue,portion of connective tissue of respiratory system +http://purl.obolibrary.org/obo/UBERON_0003570,respiratory system connective tissue,respiratory system portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0003570,respiratory system connective tissue,respiratory system textus connectivus +http://purl.obolibrary.org/obo/UBERON_0003570,respiratory system connective tissue,textus connectivus of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0003570,respiratory system connective tissue,textus connectivus of respiratory system +http://purl.obolibrary.org/obo/UBERON_0003571,trachea connective tissue,connective tissue of trachea +http://purl.obolibrary.org/obo/UBERON_0003571,trachea connective tissue,connective tissue of windpipe +http://purl.obolibrary.org/obo/UBERON_0003572,chest connective tissue,anterior thoracic region connective tissue +http://purl.obolibrary.org/obo/UBERON_0003572,chest connective tissue,anterior thoracic region portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0003572,chest connective tissue,anterior thoracic region textus connectivus +http://purl.obolibrary.org/obo/UBERON_0003572,chest connective tissue,anterolateral part of thorax connective tissue +http://purl.obolibrary.org/obo/UBERON_0003572,chest connective tissue,anterolateral part of thorax portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0003572,chest connective tissue,anterolateral part of thorax textus connectivus +http://purl.obolibrary.org/obo/UBERON_0003572,chest connective tissue,chest portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0003572,chest connective tissue,chest textus connectivus +http://purl.obolibrary.org/obo/UBERON_0003572,chest connective tissue,connective tissue of anterior thoracic region +http://purl.obolibrary.org/obo/UBERON_0003572,chest connective tissue,connective tissue of anterolateral part of thorax +http://purl.obolibrary.org/obo/UBERON_0003572,chest connective tissue,connective tissue of chest +http://purl.obolibrary.org/obo/UBERON_0003572,chest connective tissue,connective tissue of front of thorax +http://purl.obolibrary.org/obo/UBERON_0003572,chest connective tissue,front of thorax connective tissue +http://purl.obolibrary.org/obo/UBERON_0003572,chest connective tissue,front of thorax portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0003572,chest connective tissue,front of thorax textus connectivus +http://purl.obolibrary.org/obo/UBERON_0003572,chest connective tissue,portion of connective tissue of anterior thoracic region +http://purl.obolibrary.org/obo/UBERON_0003572,chest connective tissue,portion of connective tissue of anterolateral part of thorax +http://purl.obolibrary.org/obo/UBERON_0003572,chest connective tissue,portion of connective tissue of chest +http://purl.obolibrary.org/obo/UBERON_0003572,chest connective tissue,portion of connective tissue of front of thorax +http://purl.obolibrary.org/obo/UBERON_0003572,chest connective tissue,textus connectivus of anterior thoracic region +http://purl.obolibrary.org/obo/UBERON_0003572,chest connective tissue,textus connectivus of anterolateral part of thorax +http://purl.obolibrary.org/obo/UBERON_0003572,chest connective tissue,textus connectivus of chest +http://purl.obolibrary.org/obo/UBERON_0003572,chest connective tissue,textus connectivus of front of thorax +http://purl.obolibrary.org/obo/UBERON_0003573,arm connective tissue, +http://purl.obolibrary.org/obo/UBERON_0003574,elbow connective tissue,connective tissue of cubital region +http://purl.obolibrary.org/obo/UBERON_0003574,elbow connective tissue,connective tissue of elbow +http://purl.obolibrary.org/obo/UBERON_0003574,elbow connective tissue,textus connectivus of cubital region +http://purl.obolibrary.org/obo/UBERON_0003575,wrist connective tissue,carpal region connective tissue +http://purl.obolibrary.org/obo/UBERON_0003575,wrist connective tissue,connective tissue of carpal region +http://purl.obolibrary.org/obo/UBERON_0003575,wrist connective tissue,connective tissue of wrist +http://purl.obolibrary.org/obo/UBERON_0003576,hip connective tissue,connective tissue of hip +http://purl.obolibrary.org/obo/UBERON_0003576,hip connective tissue,connective tissue of hip region +http://purl.obolibrary.org/obo/UBERON_0003576,hip connective tissue,connective tissue of regio coxae +http://purl.obolibrary.org/obo/UBERON_0003577,knee connective tissue,connective tissue of knee +http://purl.obolibrary.org/obo/UBERON_0003577,knee connective tissue,knee portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0003578,pedal digit connective tissue,connective tissue of digit of foot +http://purl.obolibrary.org/obo/UBERON_0003578,pedal digit connective tissue,connective tissue of digitus pedis +http://purl.obolibrary.org/obo/UBERON_0003578,pedal digit connective tissue,connective tissue of foot digit +http://purl.obolibrary.org/obo/UBERON_0003578,pedal digit connective tissue,connective tissue of toe +http://purl.obolibrary.org/obo/UBERON_0003578,pedal digit connective tissue,digitus pedis textus connectivus +http://purl.obolibrary.org/obo/UBERON_0003578,pedal digit connective tissue,foot digit connective tissue +http://purl.obolibrary.org/obo/UBERON_0003578,pedal digit connective tissue,hind limb digit connective tissue +http://purl.obolibrary.org/obo/UBERON_0003579,shoulder connective tissue,connective tissue of shoulder +http://purl.obolibrary.org/obo/UBERON_0003579,shoulder connective tissue,portion of connective tissue of shoulder +http://purl.obolibrary.org/obo/UBERON_0003579,shoulder connective tissue,shoulder portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0003579,shoulder connective tissue,shoulder textus connectivus +http://purl.obolibrary.org/obo/UBERON_0003579,shoulder connective tissue,textus connectivus of shoulder +http://purl.obolibrary.org/obo/UBERON_0003580,lower respiratory tract connective tissue,connective tissue of lower respiratory tract +http://purl.obolibrary.org/obo/UBERON_0003580,lower respiratory tract connective tissue,lower respiratory tract portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0003580,lower respiratory tract connective tissue,lower respiratory tract textus connectivus +http://purl.obolibrary.org/obo/UBERON_0003580,lower respiratory tract connective tissue,portion of connective tissue of lower respiratory tract +http://purl.obolibrary.org/obo/UBERON_0003580,lower respiratory tract connective tissue,textus connectivus of lower respiratory tract +http://purl.obolibrary.org/obo/UBERON_0003581,eyelid connective tissue,blepharon connective tissue +http://purl.obolibrary.org/obo/UBERON_0003581,eyelid connective tissue,connective tissue of blepharon +http://purl.obolibrary.org/obo/UBERON_0003581,eyelid connective tissue,connective tissue of eyelid +http://purl.obolibrary.org/obo/UBERON_0003582,nasopharynx connective tissue,connective tissue of nasal part of pharynx +http://purl.obolibrary.org/obo/UBERON_0003582,nasopharynx connective tissue,connective tissue of nasopharynx +http://purl.obolibrary.org/obo/UBERON_0003582,nasopharynx connective tissue,connective tissue of rhinopharynx +http://purl.obolibrary.org/obo/UBERON_0003582,nasopharynx connective tissue,nasal part of pharynx connective tissue +http://purl.obolibrary.org/obo/UBERON_0003582,nasopharynx connective tissue,nasal part of pharynx portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0003582,nasopharynx connective tissue,nasal part of pharynx textus connectivus +http://purl.obolibrary.org/obo/UBERON_0003582,nasopharynx connective tissue,nasopharynx portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0003582,nasopharynx connective tissue,nasopharynx textus connectivus +http://purl.obolibrary.org/obo/UBERON_0003582,nasopharynx connective tissue,portion of connective tissue of nasal part of pharynx +http://purl.obolibrary.org/obo/UBERON_0003582,nasopharynx connective tissue,portion of connective tissue of nasopharynx +http://purl.obolibrary.org/obo/UBERON_0003582,nasopharynx connective tissue,portion of connective tissue of rhinopharynx +http://purl.obolibrary.org/obo/UBERON_0003582,nasopharynx connective tissue,rhinopharynx connective tissue +http://purl.obolibrary.org/obo/UBERON_0003582,nasopharynx connective tissue,rhinopharynx portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0003582,nasopharynx connective tissue,rhinopharynx textus connectivus +http://purl.obolibrary.org/obo/UBERON_0003582,nasopharynx connective tissue,textus connectivus of nasal part of pharynx +http://purl.obolibrary.org/obo/UBERON_0003582,nasopharynx connective tissue,textus connectivus of nasopharynx +http://purl.obolibrary.org/obo/UBERON_0003582,nasopharynx connective tissue,textus connectivus of rhinopharynx +http://purl.obolibrary.org/obo/UBERON_0003583,larynx connective tissue,connective tissue of larynx +http://purl.obolibrary.org/obo/UBERON_0003583,larynx connective tissue,larynx portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0003583,larynx connective tissue,larynx textus connectivus +http://purl.obolibrary.org/obo/UBERON_0003583,larynx connective tissue,portion of connective tissue of larynx +http://purl.obolibrary.org/obo/UBERON_0003583,larynx connective tissue,textus connectivus of larynx +http://purl.obolibrary.org/obo/UBERON_0003584,mammary gland connective tissue,connective tissue of lactiferous gland +http://purl.obolibrary.org/obo/UBERON_0003584,mammary gland connective tissue,connective tissue of lobe of breast +http://purl.obolibrary.org/obo/UBERON_0003584,mammary gland connective tissue,connective tissue of lobe of mammary gland +http://purl.obolibrary.org/obo/UBERON_0003584,mammary gland connective tissue,connective tissue of mammary gland +http://purl.obolibrary.org/obo/UBERON_0003584,mammary gland connective tissue,lactiferous gland connective tissue +http://purl.obolibrary.org/obo/UBERON_0003584,mammary gland connective tissue,lactiferous gland portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0003584,mammary gland connective tissue,lactiferous gland stroma +http://purl.obolibrary.org/obo/UBERON_0003584,mammary gland connective tissue,mammary gland stroma +http://purl.obolibrary.org/obo/UBERON_0003584,mammary gland connective tissue,mammary stroma +http://purl.obolibrary.org/obo/UBERON_0003584,mammary gland connective tissue,stroma of lactiferous gland +http://purl.obolibrary.org/obo/UBERON_0003585,dermis connective tissue,connective tissue of dermis +http://purl.obolibrary.org/obo/UBERON_0003585,dermis connective tissue,dermis portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0003585,dermis connective tissue,dermis textus connectivus +http://purl.obolibrary.org/obo/UBERON_0003585,dermis connective tissue,portion of connective tissue of dermis +http://purl.obolibrary.org/obo/UBERON_0003585,dermis connective tissue,textus connectivus of dermis +http://purl.obolibrary.org/obo/UBERON_0003586,trunk connective tissue,connective tissue of torso +http://purl.obolibrary.org/obo/UBERON_0003586,trunk connective tissue,connective tissue of trunk +http://purl.obolibrary.org/obo/UBERON_0003586,trunk connective tissue,portion of connective tissue of torso +http://purl.obolibrary.org/obo/UBERON_0003586,trunk connective tissue,portion of connective tissue of trunk +http://purl.obolibrary.org/obo/UBERON_0003586,trunk connective tissue,textus connectivus of torso +http://purl.obolibrary.org/obo/UBERON_0003586,trunk connective tissue,textus connectivus of trunk +http://purl.obolibrary.org/obo/UBERON_0003586,trunk connective tissue,torso connective tissue +http://purl.obolibrary.org/obo/UBERON_0003586,trunk connective tissue,torso portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0003586,trunk connective tissue,torso textus connectivus +http://purl.obolibrary.org/obo/UBERON_0003586,trunk connective tissue,trunk portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0003586,trunk connective tissue,trunk textus connectivus +http://purl.obolibrary.org/obo/UBERON_0003587,limb connective tissue,connective tissue of limb +http://purl.obolibrary.org/obo/UBERON_0003587,limb connective tissue,limb portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0003587,limb connective tissue,limb textus connectivus +http://purl.obolibrary.org/obo/UBERON_0003587,limb connective tissue,portion of connective tissue of limb +http://purl.obolibrary.org/obo/UBERON_0003587,limb connective tissue,textus connectivus of limb +http://purl.obolibrary.org/obo/UBERON_0003588,forelimb connective tissue,connective tissue of anteriormost limb +http://purl.obolibrary.org/obo/UBERON_0003588,forelimb connective tissue,connective tissue of fore limb +http://purl.obolibrary.org/obo/UBERON_0003588,forelimb connective tissue,connective tissue of forelimb +http://purl.obolibrary.org/obo/UBERON_0003588,forelimb connective tissue,connective tissue of superior member +http://purl.obolibrary.org/obo/UBERON_0003588,forelimb connective tissue,connective tissue of upper extremity +http://purl.obolibrary.org/obo/UBERON_0003589,hindlimb connective tissue,connective tissue of hind limb +http://purl.obolibrary.org/obo/UBERON_0003589,hindlimb connective tissue,connective tissue of hindlimb +http://purl.obolibrary.org/obo/UBERON_0003589,hindlimb connective tissue,connective tissue of inferior member +http://purl.obolibrary.org/obo/UBERON_0003589,hindlimb connective tissue,connective tissue of lower extremity +http://purl.obolibrary.org/obo/UBERON_0003589,hindlimb connective tissue,hind limb connective tissue +http://purl.obolibrary.org/obo/UBERON_0003590,main bronchus connective tissue,bronchus principalis connective tissue +http://purl.obolibrary.org/obo/UBERON_0003590,main bronchus connective tissue,bronchus principalis portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0003590,main bronchus connective tissue,bronchus principalis textus connectivus +http://purl.obolibrary.org/obo/UBERON_0003590,main bronchus connective tissue,connective tissue of bronchus principalis +http://purl.obolibrary.org/obo/UBERON_0003590,main bronchus connective tissue,connective tissue of main bronchus +http://purl.obolibrary.org/obo/UBERON_0003590,main bronchus connective tissue,connective tissue of primary bronchus +http://purl.obolibrary.org/obo/UBERON_0003590,main bronchus connective tissue,connective tissue of principal bronchus +http://purl.obolibrary.org/obo/UBERON_0003591,lobar bronchus connective tissue,connective tissue of lobar bronchus +http://purl.obolibrary.org/obo/UBERON_0003591,lobar bronchus connective tissue,connective tissue of secondary bronchus +http://purl.obolibrary.org/obo/UBERON_0003592,bronchus connective tissue,bronchi connective tissue +http://purl.obolibrary.org/obo/UBERON_0003592,bronchus connective tissue,bronchi portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0003592,bronchus connective tissue,bronchi textus connectivus +http://purl.obolibrary.org/obo/UBERON_0003592,bronchus connective tissue,bronchial trunk connective tissue +http://purl.obolibrary.org/obo/UBERON_0003592,bronchus connective tissue,bronchial trunk portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0003592,bronchus connective tissue,bronchial trunk textus connectivus +http://purl.obolibrary.org/obo/UBERON_0003592,bronchus connective tissue,bronchus portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0003592,bronchus connective tissue,bronchus textus connectivus +http://purl.obolibrary.org/obo/UBERON_0003592,bronchus connective tissue,connective tissue of bronchi +http://purl.obolibrary.org/obo/UBERON_0003592,bronchus connective tissue,connective tissue of bronchial trunk +http://purl.obolibrary.org/obo/UBERON_0003592,bronchus connective tissue,connective tissue of bronchus +http://purl.obolibrary.org/obo/UBERON_0003592,bronchus connective tissue,portion of connective tissue of bronchi +http://purl.obolibrary.org/obo/UBERON_0003592,bronchus connective tissue,portion of connective tissue of bronchial trunk +http://purl.obolibrary.org/obo/UBERON_0003592,bronchus connective tissue,portion of connective tissue of bronchus +http://purl.obolibrary.org/obo/UBERON_0003592,bronchus connective tissue,textus connectivus of bronchi +http://purl.obolibrary.org/obo/UBERON_0003592,bronchus connective tissue,textus connectivus of bronchial trunk +http://purl.obolibrary.org/obo/UBERON_0003592,bronchus connective tissue,textus connectivus of bronchus +http://purl.obolibrary.org/obo/UBERON_0003593,thoracic cavity connective tissue,cavity of chest connective tissue +http://purl.obolibrary.org/obo/UBERON_0003593,thoracic cavity connective tissue,cavity of chest portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0003593,thoracic cavity connective tissue,cavity of chest textus connectivus +http://purl.obolibrary.org/obo/UBERON_0003593,thoracic cavity connective tissue,cavity of thorax connective tissue +http://purl.obolibrary.org/obo/UBERON_0003593,thoracic cavity connective tissue,cavity of thorax portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0003593,thoracic cavity connective tissue,cavity of thorax textus connectivus +http://purl.obolibrary.org/obo/UBERON_0003593,thoracic cavity connective tissue,chest cavity connective tissue +http://purl.obolibrary.org/obo/UBERON_0003593,thoracic cavity connective tissue,chest cavity portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0003593,thoracic cavity connective tissue,chest cavity textus connectivus +http://purl.obolibrary.org/obo/UBERON_0003593,thoracic cavity connective tissue,connective tissue of cavity of chest +http://purl.obolibrary.org/obo/UBERON_0003593,thoracic cavity connective tissue,connective tissue of cavity of thorax +http://purl.obolibrary.org/obo/UBERON_0003593,thoracic cavity connective tissue,connective tissue of chest cavity +http://purl.obolibrary.org/obo/UBERON_0003593,thoracic cavity connective tissue,connective tissue of pectoral cavity +http://purl.obolibrary.org/obo/UBERON_0003593,thoracic cavity connective tissue,connective tissue of thoracic cavity +http://purl.obolibrary.org/obo/UBERON_0003593,thoracic cavity connective tissue,pectoral cavity connective tissue +http://purl.obolibrary.org/obo/UBERON_0003593,thoracic cavity connective tissue,pectoral cavity portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0003593,thoracic cavity connective tissue,pectoral cavity textus connectivus +http://purl.obolibrary.org/obo/UBERON_0003593,thoracic cavity connective tissue,portion of connective tissue of cavity of chest +http://purl.obolibrary.org/obo/UBERON_0003593,thoracic cavity connective tissue,portion of connective tissue of cavity of thorax +http://purl.obolibrary.org/obo/UBERON_0003593,thoracic cavity connective tissue,portion of connective tissue of chest cavity +http://purl.obolibrary.org/obo/UBERON_0003593,thoracic cavity connective tissue,portion of connective tissue of pectoral cavity +http://purl.obolibrary.org/obo/UBERON_0003593,thoracic cavity connective tissue,portion of connective tissue of thoracic cavity +http://purl.obolibrary.org/obo/UBERON_0003593,thoracic cavity connective tissue,textus connectivus of cavity of chest +http://purl.obolibrary.org/obo/UBERON_0003593,thoracic cavity connective tissue,textus connectivus of cavity of thorax +http://purl.obolibrary.org/obo/UBERON_0003593,thoracic cavity connective tissue,textus connectivus of chest cavity +http://purl.obolibrary.org/obo/UBERON_0003593,thoracic cavity connective tissue,textus connectivus of pectoral cavity +http://purl.obolibrary.org/obo/UBERON_0003593,thoracic cavity connective tissue,textus connectivus of thoracic cavity +http://purl.obolibrary.org/obo/UBERON_0003593,thoracic cavity connective tissue,thoracic cavity portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0003593,thoracic cavity connective tissue,thoracic cavity textus connectivus +http://purl.obolibrary.org/obo/UBERON_0003594,pelvis connective tissue,connective tissue of pelvis +http://purl.obolibrary.org/obo/UBERON_0003594,pelvis connective tissue,pelvis portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0003594,pelvis connective tissue,pelvis textus connectivus +http://purl.obolibrary.org/obo/UBERON_0003594,pelvis connective tissue,portion of connective tissue of pelvis +http://purl.obolibrary.org/obo/UBERON_0003594,pelvis connective tissue,textus connectivus of pelvis +http://purl.obolibrary.org/obo/UBERON_0003595,pes connective tissue,connective tissue of foot +http://purl.obolibrary.org/obo/UBERON_0003595,pes connective tissue,connective tissue of terminal segment of free lower limb +http://purl.obolibrary.org/obo/UBERON_0003595,pes connective tissue,foot connective tissue +http://purl.obolibrary.org/obo/UBERON_0003595,pes connective tissue,textus connectivus of pes +http://purl.obolibrary.org/obo/UBERON_0003596,ankle connective tissue,connective tissue of ankle +http://purl.obolibrary.org/obo/UBERON_0003596,ankle connective tissue,tarsal region connective tissue +http://purl.obolibrary.org/obo/UBERON_0003597,manual digit connective tissue,connective tissue of digit of hand +http://purl.obolibrary.org/obo/UBERON_0003597,manual digit connective tissue,connective tissue of digitus manus +http://purl.obolibrary.org/obo/UBERON_0003597,manual digit connective tissue,connective tissue of finger +http://purl.obolibrary.org/obo/UBERON_0003597,manual digit connective tissue,connective tissue of hand digit +http://purl.obolibrary.org/obo/UBERON_0003597,manual digit connective tissue,fore limb digit connective tissue +http://purl.obolibrary.org/obo/UBERON_0003597,manual digit connective tissue,hand digit connective tissue +http://purl.obolibrary.org/obo/UBERON_0003598,manus connective tissue,connective tissue of hand +http://purl.obolibrary.org/obo/UBERON_0003598,manus connective tissue,connective tissue of terminal segment of free upper limb +http://purl.obolibrary.org/obo/UBERON_0003598,manus connective tissue,hand connective tissue +http://purl.obolibrary.org/obo/UBERON_0003599,tail connective tissue,connective tissue of post-vent region +http://purl.obolibrary.org/obo/UBERON_0003599,tail connective tissue,connective tissue of tail +http://purl.obolibrary.org/obo/UBERON_0003599,tail connective tissue,portion of connective tissue of post-vent region +http://purl.obolibrary.org/obo/UBERON_0003599,tail connective tissue,portion of connective tissue of tail +http://purl.obolibrary.org/obo/UBERON_0003599,tail connective tissue,post-vent region connective tissue +http://purl.obolibrary.org/obo/UBERON_0003599,tail connective tissue,post-vent region portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0003599,tail connective tissue,post-vent region textus connectivus +http://purl.obolibrary.org/obo/UBERON_0003599,tail connective tissue,tail portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0003599,tail connective tissue,tail textus connectivus +http://purl.obolibrary.org/obo/UBERON_0003599,tail connective tissue,textus connectivus of post-vent region +http://purl.obolibrary.org/obo/UBERON_0003599,tail connective tissue,textus connectivus of tail +http://purl.obolibrary.org/obo/UBERON_0003601,neck cartilage,cartilage of neck +http://purl.obolibrary.org/obo/UBERON_0003601,neck cartilage,cartilage of neck (volume) +http://purl.obolibrary.org/obo/UBERON_0003601,neck cartilage,neck (volume) cartilage +http://purl.obolibrary.org/obo/UBERON_0003603,lower respiratory tract cartilage,cartilage of lower respiratory tract +http://purl.obolibrary.org/obo/UBERON_0003604,trachea cartilage,cartilage of trachea +http://purl.obolibrary.org/obo/UBERON_0003604,trachea cartilage,cartilage of windpipe +http://purl.obolibrary.org/obo/UBERON_0003604,trachea cartilage,cartilaginous ring of trachea +http://purl.obolibrary.org/obo/UBERON_0003604,trachea cartilage,cartilaginous trachea cartilage +http://purl.obolibrary.org/obo/UBERON_0003604,trachea cartilage,cartilago trachealis +http://purl.obolibrary.org/obo/UBERON_0003604,trachea cartilage,tracheal cartilage +http://purl.obolibrary.org/obo/UBERON_0003604,trachea cartilage,windpipe cartilage +http://purl.obolibrary.org/obo/UBERON_0003605,eye skin gland,camera-type eye skin gland +http://purl.obolibrary.org/obo/UBERON_0003605,eye skin gland,camera-type eye skin glands +http://purl.obolibrary.org/obo/UBERON_0003605,eye skin gland,camera-type eye skin glands set +http://purl.obolibrary.org/obo/UBERON_0003605,eye skin gland,skin gland of camera-type eye +http://purl.obolibrary.org/obo/UBERON_0003605,eye skin gland,skin gland of vertebrate eye +http://purl.obolibrary.org/obo/UBERON_0003605,eye skin gland,skin glands of camera-type eye +http://purl.obolibrary.org/obo/UBERON_0003605,eye skin gland,skin glands of vertebrate eye +http://purl.obolibrary.org/obo/UBERON_0003605,eye skin gland,skin glands set of camera-type eye +http://purl.obolibrary.org/obo/UBERON_0003605,eye skin gland,skin glands set of vertebrate eye +http://purl.obolibrary.org/obo/UBERON_0003605,eye skin gland,vertebrate eye skin gland +http://purl.obolibrary.org/obo/UBERON_0003605,eye skin gland,vertebrate eye skin glands +http://purl.obolibrary.org/obo/UBERON_0003605,eye skin gland,vertebrate eye skin glands set +http://purl.obolibrary.org/obo/UBERON_0003606,limb long bone,long bone of limb +http://purl.obolibrary.org/obo/UBERON_0003607,forelimb long bone,anteriormost limb long bone +http://purl.obolibrary.org/obo/UBERON_0003607,forelimb long bone,fore limb long bone +http://purl.obolibrary.org/obo/UBERON_0003607,forelimb long bone,long bone of anteriormost limb +http://purl.obolibrary.org/obo/UBERON_0003607,forelimb long bone,long bone of fore limb +http://purl.obolibrary.org/obo/UBERON_0003607,forelimb long bone,long bone of forelimb +http://purl.obolibrary.org/obo/UBERON_0003607,forelimb long bone,long bone of superior member +http://purl.obolibrary.org/obo/UBERON_0003607,forelimb long bone,long bone of upper extremity +http://purl.obolibrary.org/obo/UBERON_0003607,forelimb long bone,superior member long bone +http://purl.obolibrary.org/obo/UBERON_0003607,forelimb long bone,upper extremity long bone +http://purl.obolibrary.org/obo/UBERON_0003608,hindlimb long bone,hind limb long bone +http://purl.obolibrary.org/obo/UBERON_0003608,hindlimb long bone,inferior member long bone +http://purl.obolibrary.org/obo/UBERON_0003608,hindlimb long bone,long bone of hind limb +http://purl.obolibrary.org/obo/UBERON_0003608,hindlimb long bone,long bone of hindlimb +http://purl.obolibrary.org/obo/UBERON_0003608,hindlimb long bone,long bone of inferior member +http://purl.obolibrary.org/obo/UBERON_0003608,hindlimb long bone,long bone of lower extremity +http://purl.obolibrary.org/obo/UBERON_0003608,hindlimb long bone,lower extremity long bone +http://purl.obolibrary.org/obo/UBERON_0003609,aorta elastic tissue,adult aorta elastic connective tissue +http://purl.obolibrary.org/obo/UBERON_0003609,aorta elastic tissue,adult aorta elastic tissue +http://purl.obolibrary.org/obo/UBERON_0003609,aorta elastic tissue,adult aorta textus connectivus elasticus +http://purl.obolibrary.org/obo/UBERON_0003609,aorta elastic tissue,aorta elastic connective tissue +http://purl.obolibrary.org/obo/UBERON_0003609,aorta elastic tissue,aorta elastic lamina +http://purl.obolibrary.org/obo/UBERON_0003609,aorta elastic tissue,aorta elastic laminae +http://purl.obolibrary.org/obo/UBERON_0003609,aorta elastic tissue,aorta textus connectivus elasticus +http://purl.obolibrary.org/obo/UBERON_0003609,aorta elastic tissue,dorsal aorta elastic connective tissue +http://purl.obolibrary.org/obo/UBERON_0003609,aorta elastic tissue,dorsal aorta elastic tissue +http://purl.obolibrary.org/obo/UBERON_0003609,aorta elastic tissue,dorsal aorta textus connectivus elasticus +http://purl.obolibrary.org/obo/UBERON_0003609,aorta elastic tissue,elastic connective tissue of adult aorta +http://purl.obolibrary.org/obo/UBERON_0003609,aorta elastic tissue,elastic connective tissue of aorta +http://purl.obolibrary.org/obo/UBERON_0003609,aorta elastic tissue,elastic connective tissue of dorsal aorta +http://purl.obolibrary.org/obo/UBERON_0003609,aorta elastic tissue,elastic connective tissue of trunk of aortic tree +http://purl.obolibrary.org/obo/UBERON_0003609,aorta elastic tissue,elastic tissue of adult aorta +http://purl.obolibrary.org/obo/UBERON_0003609,aorta elastic tissue,elastic tissue of aorta +http://purl.obolibrary.org/obo/UBERON_0003609,aorta elastic tissue,elastic tissue of dorsal aorta +http://purl.obolibrary.org/obo/UBERON_0003609,aorta elastic tissue,elastic tissue of trunk of aortic tree +http://purl.obolibrary.org/obo/UBERON_0003609,aorta elastic tissue,textus connectivus elasticus of adult aorta +http://purl.obolibrary.org/obo/UBERON_0003609,aorta elastic tissue,textus connectivus elasticus of aorta +http://purl.obolibrary.org/obo/UBERON_0003609,aorta elastic tissue,textus connectivus elasticus of dorsal aorta +http://purl.obolibrary.org/obo/UBERON_0003609,aorta elastic tissue,textus connectivus elasticus of trunk of aortic tree +http://purl.obolibrary.org/obo/UBERON_0003609,aorta elastic tissue,trunk of aortic tree elastic connective tissue +http://purl.obolibrary.org/obo/UBERON_0003609,aorta elastic tissue,trunk of aortic tree elastic tissue +http://purl.obolibrary.org/obo/UBERON_0003609,aorta elastic tissue,trunk of aortic tree textus connectivus elasticus +http://purl.obolibrary.org/obo/UBERON_0003610,heart elastic tissue,cardiac elastic tissue +http://purl.obolibrary.org/obo/UBERON_0003610,heart elastic tissue,elastic connective tissue of heart +http://purl.obolibrary.org/obo/UBERON_0003610,heart elastic tissue,elastic tissue of heart +http://purl.obolibrary.org/obo/UBERON_0003610,heart elastic tissue,heart elastic connective tissue +http://purl.obolibrary.org/obo/UBERON_0003610,heart elastic tissue,heart textus connectivus elasticus +http://purl.obolibrary.org/obo/UBERON_0003610,heart elastic tissue,textus connectivus elasticus of heart +http://purl.obolibrary.org/obo/UBERON_0003611,respiratory system elastic tissue,apparatus respiratorius elastic connective tissue +http://purl.obolibrary.org/obo/UBERON_0003611,respiratory system elastic tissue,apparatus respiratorius elastic tissue +http://purl.obolibrary.org/obo/UBERON_0003611,respiratory system elastic tissue,apparatus respiratorius textus connectivus elasticus +http://purl.obolibrary.org/obo/UBERON_0003611,respiratory system elastic tissue,elastic connective tissue of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0003611,respiratory system elastic tissue,elastic connective tissue of respiratory system +http://purl.obolibrary.org/obo/UBERON_0003611,respiratory system elastic tissue,elastic tissue of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0003611,respiratory system elastic tissue,elastic tissue of respiratory system +http://purl.obolibrary.org/obo/UBERON_0003611,respiratory system elastic tissue,respiratory system elastic connective tissue +http://purl.obolibrary.org/obo/UBERON_0003611,respiratory system elastic tissue,respiratory system textus connectivus elasticus +http://purl.obolibrary.org/obo/UBERON_0003611,respiratory system elastic tissue,textus connectivus elasticus of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0003611,respiratory system elastic tissue,textus connectivus elasticus of respiratory system +http://purl.obolibrary.org/obo/UBERON_0003613,cardiovascular system elastic tissue,cardiovascular system elastic connective tissue +http://purl.obolibrary.org/obo/UBERON_0003613,cardiovascular system elastic tissue,cardiovascular system textus connectivus elasticus +http://purl.obolibrary.org/obo/UBERON_0003613,cardiovascular system elastic tissue,circulatory system elastic connective tissue +http://purl.obolibrary.org/obo/UBERON_0003613,cardiovascular system elastic tissue,circulatory system elastic tissue +http://purl.obolibrary.org/obo/UBERON_0003613,cardiovascular system elastic tissue,circulatory system textus connectivus elasticus +http://purl.obolibrary.org/obo/UBERON_0003613,cardiovascular system elastic tissue,elastic connective tissue of cardiovascular system +http://purl.obolibrary.org/obo/UBERON_0003613,cardiovascular system elastic tissue,elastic connective tissue of circulatory system +http://purl.obolibrary.org/obo/UBERON_0003613,cardiovascular system elastic tissue,elastic tissue of cardiovascular system +http://purl.obolibrary.org/obo/UBERON_0003613,cardiovascular system elastic tissue,elastic tissue of circulatory system +http://purl.obolibrary.org/obo/UBERON_0003613,cardiovascular system elastic tissue,textus connectivus elasticus of cardiovascular system +http://purl.obolibrary.org/obo/UBERON_0003613,cardiovascular system elastic tissue,textus connectivus elasticus of circulatory system +http://purl.obolibrary.org/obo/UBERON_0003614,blood vessel elastic tissue,blood vessel elastic connective tissue +http://purl.obolibrary.org/obo/UBERON_0003614,blood vessel elastic tissue,blood vessel textus connectivus elasticus +http://purl.obolibrary.org/obo/UBERON_0003614,blood vessel elastic tissue,elastic connective tissue of blood vessel +http://purl.obolibrary.org/obo/UBERON_0003614,blood vessel elastic tissue,elastic tissue of blood vessel +http://purl.obolibrary.org/obo/UBERON_0003614,blood vessel elastic tissue,textus connectivus elasticus of blood vessel +http://purl.obolibrary.org/obo/UBERON_0003614,blood vessel elastic tissue,vascular elastic lamina +http://purl.obolibrary.org/obo/UBERON_0003614,blood vessel elastic tissue,vascular elastic laminae +http://purl.obolibrary.org/obo/UBERON_0003614,blood vessel elastic tissue,vascular elastic tissue +http://purl.obolibrary.org/obo/UBERON_0003615,lung elastic tissue,elastic connective tissue of lung +http://purl.obolibrary.org/obo/UBERON_0003615,lung elastic tissue,elastic tissue of lung +http://purl.obolibrary.org/obo/UBERON_0003615,lung elastic tissue,lung elastic connective tissue +http://purl.obolibrary.org/obo/UBERON_0003615,lung elastic tissue,lung textus connectivus elasticus +http://purl.obolibrary.org/obo/UBERON_0003615,lung elastic tissue,textus connectivus elasticus of lung +http://purl.obolibrary.org/obo/UBERON_0003616,bronchus elastic tissue,bronchi elastic connective tissue +http://purl.obolibrary.org/obo/UBERON_0003616,bronchus elastic tissue,bronchi elastic tissue +http://purl.obolibrary.org/obo/UBERON_0003616,bronchus elastic tissue,bronchi textus connectivus elasticus +http://purl.obolibrary.org/obo/UBERON_0003616,bronchus elastic tissue,bronchial trunk elastic connective tissue +http://purl.obolibrary.org/obo/UBERON_0003616,bronchus elastic tissue,bronchial trunk elastic tissue +http://purl.obolibrary.org/obo/UBERON_0003616,bronchus elastic tissue,bronchial trunk textus connectivus elasticus +http://purl.obolibrary.org/obo/UBERON_0003616,bronchus elastic tissue,bronchus elastic connective tissue +http://purl.obolibrary.org/obo/UBERON_0003616,bronchus elastic tissue,bronchus textus connectivus elasticus +http://purl.obolibrary.org/obo/UBERON_0003616,bronchus elastic tissue,elastic connective tissue of bronchi +http://purl.obolibrary.org/obo/UBERON_0003616,bronchus elastic tissue,elastic connective tissue of bronchial trunk +http://purl.obolibrary.org/obo/UBERON_0003616,bronchus elastic tissue,elastic connective tissue of bronchus +http://purl.obolibrary.org/obo/UBERON_0003616,bronchus elastic tissue,elastic tissue of bronchi +http://purl.obolibrary.org/obo/UBERON_0003616,bronchus elastic tissue,elastic tissue of bronchial trunk +http://purl.obolibrary.org/obo/UBERON_0003616,bronchus elastic tissue,elastic tissue of bronchus +http://purl.obolibrary.org/obo/UBERON_0003616,bronchus elastic tissue,textus connectivus elasticus of bronchi +http://purl.obolibrary.org/obo/UBERON_0003616,bronchus elastic tissue,textus connectivus elasticus of bronchial trunk +http://purl.obolibrary.org/obo/UBERON_0003616,bronchus elastic tissue,textus connectivus elasticus of bronchus +http://purl.obolibrary.org/obo/UBERON_0003617,trachea elastic tissue,cartilaginous trachea elastic connective tissue +http://purl.obolibrary.org/obo/UBERON_0003617,trachea elastic tissue,cartilaginous trachea elastic tissue +http://purl.obolibrary.org/obo/UBERON_0003617,trachea elastic tissue,cartilaginous trachea textus connectivus elasticus +http://purl.obolibrary.org/obo/UBERON_0003617,trachea elastic tissue,elastic connective tissue of cartilaginous trachea +http://purl.obolibrary.org/obo/UBERON_0003617,trachea elastic tissue,elastic connective tissue of vertebrate trachea +http://purl.obolibrary.org/obo/UBERON_0003617,trachea elastic tissue,elastic connective tissue of windpipe +http://purl.obolibrary.org/obo/UBERON_0003617,trachea elastic tissue,elastic tissue of cartilaginous trachea +http://purl.obolibrary.org/obo/UBERON_0003617,trachea elastic tissue,elastic tissue of vertebrate trachea +http://purl.obolibrary.org/obo/UBERON_0003617,trachea elastic tissue,elastic tissue of windpipe +http://purl.obolibrary.org/obo/UBERON_0003617,trachea elastic tissue,textus connectivus elasticus of cartilaginous trachea +http://purl.obolibrary.org/obo/UBERON_0003617,trachea elastic tissue,textus connectivus elasticus of vertebrate trachea +http://purl.obolibrary.org/obo/UBERON_0003617,trachea elastic tissue,textus connectivus elasticus of windpipe +http://purl.obolibrary.org/obo/UBERON_0003617,trachea elastic tissue,vertebrate trachea elastic connective tissue +http://purl.obolibrary.org/obo/UBERON_0003617,trachea elastic tissue,vertebrate trachea elastic tissue +http://purl.obolibrary.org/obo/UBERON_0003617,trachea elastic tissue,vertebrate trachea textus connectivus elasticus +http://purl.obolibrary.org/obo/UBERON_0003617,trachea elastic tissue,windpipe elastic connective tissue +http://purl.obolibrary.org/obo/UBERON_0003617,trachea elastic tissue,windpipe elastic tissue +http://purl.obolibrary.org/obo/UBERON_0003617,trachea elastic tissue,windpipe textus connectivus elasticus +http://purl.obolibrary.org/obo/UBERON_0003618,aorta tunica media,adult aorta tunica media +http://purl.obolibrary.org/obo/UBERON_0003618,aorta tunica media,dorsal aorta tunica media +http://purl.obolibrary.org/obo/UBERON_0003618,aorta tunica media,trunk of aortic tree tunica media +http://purl.obolibrary.org/obo/UBERON_0003618,aorta tunica media,tunica media of adult aorta +http://purl.obolibrary.org/obo/UBERON_0003618,aorta tunica media,tunica media of aorta +http://purl.obolibrary.org/obo/UBERON_0003618,aorta tunica media,tunica media of dorsal aorta +http://purl.obolibrary.org/obo/UBERON_0003618,aorta tunica media,tunica media of trunk of aortic tree +http://purl.obolibrary.org/obo/UBERON_0003619,aorta tunica intima,adult aorta tunica intima +http://purl.obolibrary.org/obo/UBERON_0003619,aorta tunica intima,dorsal aorta tunica intima +http://purl.obolibrary.org/obo/UBERON_0003619,aorta tunica intima,trunk of aortic tree tunica intima +http://purl.obolibrary.org/obo/UBERON_0003619,aorta tunica intima,tunica intima of adult aorta +http://purl.obolibrary.org/obo/UBERON_0003619,aorta tunica intima,tunica intima of aorta +http://purl.obolibrary.org/obo/UBERON_0003619,aorta tunica intima,tunica intima of dorsal aorta +http://purl.obolibrary.org/obo/UBERON_0003619,aorta tunica intima,tunica intima of trunk of aortic tree +http://purl.obolibrary.org/obo/UBERON_0003620,manual digit 1 phalanx,fore limb digit 1 phalanx +http://purl.obolibrary.org/obo/UBERON_0003620,manual digit 1 phalanx,hand digit 1 phalanx +http://purl.obolibrary.org/obo/UBERON_0003620,manual digit 1 phalanx,manual digit I phalanx +http://purl.obolibrary.org/obo/UBERON_0003620,manual digit 1 phalanx,phalanx of hand digit 1 +http://purl.obolibrary.org/obo/UBERON_0003620,manual digit 1 phalanx,phalanx of thumb +http://purl.obolibrary.org/obo/UBERON_0003620,manual digit 1 phalanx,thumb phalanx +http://purl.obolibrary.org/obo/UBERON_0003622,manual digit 2,2nd digit of hand +http://purl.obolibrary.org/obo/UBERON_0003622,manual digit 2,2nd finger +http://purl.obolibrary.org/obo/UBERON_0003622,manual digit 2,digit 2 of fore-paw +http://purl.obolibrary.org/obo/UBERON_0003622,manual digit 2,finger 2 +http://purl.obolibrary.org/obo/UBERON_0003622,manual digit 2,fore digit II +http://purl.obolibrary.org/obo/UBERON_0003622,manual digit 2,fore limb digit 2 +http://purl.obolibrary.org/obo/UBERON_0003622,manual digit 2,hand digit 2 +http://purl.obolibrary.org/obo/UBERON_0003622,manual digit 2,manual digit II +http://purl.obolibrary.org/obo/UBERON_0003622,manual digit 2,second digit of hand +http://purl.obolibrary.org/obo/UBERON_0003622,manual digit 2,second finger +http://purl.obolibrary.org/obo/UBERON_0003623,manual digit 3,3rd digit of hand +http://purl.obolibrary.org/obo/UBERON_0003623,manual digit 3,3rd finger +http://purl.obolibrary.org/obo/UBERON_0003623,manual digit 3,digit 3 of fore-paw +http://purl.obolibrary.org/obo/UBERON_0003623,manual digit 3,finger 3 +http://purl.obolibrary.org/obo/UBERON_0003623,manual digit 3,fore digit III +http://purl.obolibrary.org/obo/UBERON_0003623,manual digit 3,fore limb digit 3 +http://purl.obolibrary.org/obo/UBERON_0003623,manual digit 3,hand digit 3 +http://purl.obolibrary.org/obo/UBERON_0003623,manual digit 3,manual digit III +http://purl.obolibrary.org/obo/UBERON_0003623,manual digit 3,third digit of hand +http://purl.obolibrary.org/obo/UBERON_0003623,manual digit 3,third finger +http://purl.obolibrary.org/obo/UBERON_0003624,manual digit 4,4th digit of hand +http://purl.obolibrary.org/obo/UBERON_0003624,manual digit 4,4th finger +http://purl.obolibrary.org/obo/UBERON_0003624,manual digit 4,digit 4 of fore-paw +http://purl.obolibrary.org/obo/UBERON_0003624,manual digit 4,finger 4 +http://purl.obolibrary.org/obo/UBERON_0003624,manual digit 4,fore digit IV +http://purl.obolibrary.org/obo/UBERON_0003624,manual digit 4,fore limb digit 4 +http://purl.obolibrary.org/obo/UBERON_0003624,manual digit 4,fourth digit of hand +http://purl.obolibrary.org/obo/UBERON_0003624,manual digit 4,fourth finger +http://purl.obolibrary.org/obo/UBERON_0003624,manual digit 4,hand digit 4 +http://purl.obolibrary.org/obo/UBERON_0003624,manual digit 4,manual digit IV +http://purl.obolibrary.org/obo/UBERON_0003625,manual digit 5,5th digit of hand +http://purl.obolibrary.org/obo/UBERON_0003625,manual digit 5,5th finger +http://purl.obolibrary.org/obo/UBERON_0003625,manual digit 5,digit 5 of fore-paw +http://purl.obolibrary.org/obo/UBERON_0003625,manual digit 5,fifth digit of hand +http://purl.obolibrary.org/obo/UBERON_0003625,manual digit 5,fifth finger +http://purl.obolibrary.org/obo/UBERON_0003625,manual digit 5,finger 5 +http://purl.obolibrary.org/obo/UBERON_0003625,manual digit 5,fore digit V +http://purl.obolibrary.org/obo/UBERON_0003625,manual digit 5,fore limb digit 5 +http://purl.obolibrary.org/obo/UBERON_0003625,manual digit 5,hand digit 5 +http://purl.obolibrary.org/obo/UBERON_0003625,manual digit 5,manual digit V +http://purl.obolibrary.org/obo/UBERON_0003631,pedal digit 1,digit 1 of hind-paw +http://purl.obolibrary.org/obo/UBERON_0003631,pedal digit 1,digit 1 of pes +http://purl.obolibrary.org/obo/UBERON_0003631,pedal digit 1,digitus primus pedis +http://purl.obolibrary.org/obo/UBERON_0003631,pedal digit 1,foot digit 1 +http://purl.obolibrary.org/obo/UBERON_0003631,pedal digit 1,great toe +http://purl.obolibrary.org/obo/UBERON_0003631,pedal digit 1,hallex +http://purl.obolibrary.org/obo/UBERON_0003631,pedal digit 1,hallux +http://purl.obolibrary.org/obo/UBERON_0003631,pedal digit 1,hallux; digitus primus [I] +http://purl.obolibrary.org/obo/UBERON_0003631,pedal digit 1,hind digit 1 +http://purl.obolibrary.org/obo/UBERON_0003631,pedal digit 1,hind digit I +http://purl.obolibrary.org/obo/UBERON_0003631,pedal digit 1,hind limb digit 1 +http://purl.obolibrary.org/obo/UBERON_0003631,pedal digit 1,pedal digit 1 +http://purl.obolibrary.org/obo/UBERON_0003631,pedal digit 1,pedal digit I +http://purl.obolibrary.org/obo/UBERON_0003631,pedal digit 1,pes digit I +http://purl.obolibrary.org/obo/UBERON_0003631,pedal digit 1,preaxial digit of hindlimb +http://purl.obolibrary.org/obo/UBERON_0003631,pedal digit 1,toe 1 +http://purl.obolibrary.org/obo/UBERON_0003632,pedal digit 2,2nd toe +http://purl.obolibrary.org/obo/UBERON_0003632,pedal digit 2,digit 2 of hind-paw +http://purl.obolibrary.org/obo/UBERON_0003632,pedal digit 2,digitus secundus [ii] +http://purl.obolibrary.org/obo/UBERON_0003632,pedal digit 2,digitus secundus pedis +http://purl.obolibrary.org/obo/UBERON_0003632,pedal digit 2,foot digit 2 +http://purl.obolibrary.org/obo/UBERON_0003632,pedal digit 2,hind digit 2 +http://purl.obolibrary.org/obo/UBERON_0003632,pedal digit 2,hind digit II +http://purl.obolibrary.org/obo/UBERON_0003632,pedal digit 2,hind limb digit 2 +http://purl.obolibrary.org/obo/UBERON_0003632,pedal digit 2,pedal digit II +http://purl.obolibrary.org/obo/UBERON_0003632,pedal digit 2,pes digit II +http://purl.obolibrary.org/obo/UBERON_0003632,pedal digit 2,second digit of foot +http://purl.obolibrary.org/obo/UBERON_0003632,pedal digit 2,second toe +http://purl.obolibrary.org/obo/UBERON_0003632,pedal digit 2,toe 2 +http://purl.obolibrary.org/obo/UBERON_0003633,pedal digit 3,3rd toe +http://purl.obolibrary.org/obo/UBERON_0003633,pedal digit 3,digit 3 of hind-paw +http://purl.obolibrary.org/obo/UBERON_0003633,pedal digit 3,digitus tertius (III) pedis +http://purl.obolibrary.org/obo/UBERON_0003633,pedal digit 3,digitus tertius [iii] +http://purl.obolibrary.org/obo/UBERON_0003633,pedal digit 3,digitus tertius pedis +http://purl.obolibrary.org/obo/UBERON_0003633,pedal digit 3,foot digit 3 +http://purl.obolibrary.org/obo/UBERON_0003633,pedal digit 3,hind digit 3 +http://purl.obolibrary.org/obo/UBERON_0003633,pedal digit 3,hind digit III +http://purl.obolibrary.org/obo/UBERON_0003633,pedal digit 3,hind limb digit 3 +http://purl.obolibrary.org/obo/UBERON_0003633,pedal digit 3,pedal digit III +http://purl.obolibrary.org/obo/UBERON_0003633,pedal digit 3,pes digit III +http://purl.obolibrary.org/obo/UBERON_0003633,pedal digit 3,third digit of foot +http://purl.obolibrary.org/obo/UBERON_0003633,pedal digit 3,third toe +http://purl.obolibrary.org/obo/UBERON_0003633,pedal digit 3,toe 3 +http://purl.obolibrary.org/obo/UBERON_0003634,pedal digit 4,4th toe +http://purl.obolibrary.org/obo/UBERON_0003634,pedal digit 4,digit 4 of hind-paw +http://purl.obolibrary.org/obo/UBERON_0003634,pedal digit 4,digitus quartis pedis +http://purl.obolibrary.org/obo/UBERON_0003634,pedal digit 4,digitus quartus [iv] +http://purl.obolibrary.org/obo/UBERON_0003634,pedal digit 4,foot digit 4 +http://purl.obolibrary.org/obo/UBERON_0003634,pedal digit 4,fourth digit of foot +http://purl.obolibrary.org/obo/UBERON_0003634,pedal digit 4,fourth toe +http://purl.obolibrary.org/obo/UBERON_0003634,pedal digit 4,hind digit 4 +http://purl.obolibrary.org/obo/UBERON_0003634,pedal digit 4,hind digit IV +http://purl.obolibrary.org/obo/UBERON_0003634,pedal digit 4,hind limb digit 4 +http://purl.obolibrary.org/obo/UBERON_0003634,pedal digit 4,pedal digit IV +http://purl.obolibrary.org/obo/UBERON_0003634,pedal digit 4,pes digit IV +http://purl.obolibrary.org/obo/UBERON_0003634,pedal digit 4,toe 4 +http://purl.obolibrary.org/obo/UBERON_0003635,pedal digit 5,5th toe +http://purl.obolibrary.org/obo/UBERON_0003635,pedal digit 5,digit 5 of hind-paw +http://purl.obolibrary.org/obo/UBERON_0003635,pedal digit 5,digitus V of pes +http://purl.obolibrary.org/obo/UBERON_0003635,pedal digit 5,digitus minimus pedis +http://purl.obolibrary.org/obo/UBERON_0003635,pedal digit 5,digitus minimus; digitus quintus [v] +http://purl.obolibrary.org/obo/UBERON_0003635,pedal digit 5,digitus quintus [V] +http://purl.obolibrary.org/obo/UBERON_0003635,pedal digit 5,digitus quintus [V] pedis +http://purl.obolibrary.org/obo/UBERON_0003635,pedal digit 5,digitus quintus of pes +http://purl.obolibrary.org/obo/UBERON_0003635,pedal digit 5,digitus quintus pedis +http://purl.obolibrary.org/obo/UBERON_0003635,pedal digit 5,fifth digit of foot +http://purl.obolibrary.org/obo/UBERON_0003635,pedal digit 5,fifth toe +http://purl.obolibrary.org/obo/UBERON_0003635,pedal digit 5,foot digit 5 +http://purl.obolibrary.org/obo/UBERON_0003635,pedal digit 5,hind digit 5 +http://purl.obolibrary.org/obo/UBERON_0003635,pedal digit 5,hind digit V +http://purl.obolibrary.org/obo/UBERON_0003635,pedal digit 5,hind limb digit 5 +http://purl.obolibrary.org/obo/UBERON_0003635,pedal digit 5,pedal digit V +http://purl.obolibrary.org/obo/UBERON_0003635,pedal digit 5,pedal digitus minimus +http://purl.obolibrary.org/obo/UBERON_0003635,pedal digit 5,pes digit V +http://purl.obolibrary.org/obo/UBERON_0003635,pedal digit 5,toe 5 +http://purl.obolibrary.org/obo/UBERON_0003636,manual digit 2 phalanx,2 nd digit of hand digit long bone +http://purl.obolibrary.org/obo/UBERON_0003636,manual digit 2 phalanx,2 nd digit of hand long bone of digit +http://purl.obolibrary.org/obo/UBERON_0003636,manual digit 2 phalanx,2 nd digit of hand phalanx +http://purl.obolibrary.org/obo/UBERON_0003636,manual digit 2 phalanx,2 nd finger digit long bone +http://purl.obolibrary.org/obo/UBERON_0003636,manual digit 2 phalanx,2 nd finger long bone of digit +http://purl.obolibrary.org/obo/UBERON_0003636,manual digit 2 phalanx,2 nd finger phalanx +http://purl.obolibrary.org/obo/UBERON_0003636,manual digit 2 phalanx,digit long bone of 2 nd digit of hand +http://purl.obolibrary.org/obo/UBERON_0003636,manual digit 2 phalanx,digit long bone of 2 nd finger +http://purl.obolibrary.org/obo/UBERON_0003636,manual digit 2 phalanx,digit long bone of hand digit 2 +http://purl.obolibrary.org/obo/UBERON_0003636,manual digit 2 phalanx,digit long bone of second finger +http://purl.obolibrary.org/obo/UBERON_0003636,manual digit 2 phalanx,fore limb digit 2 phalanx +http://purl.obolibrary.org/obo/UBERON_0003636,manual digit 2 phalanx,hand digit 2 digit long bone +http://purl.obolibrary.org/obo/UBERON_0003636,manual digit 2 phalanx,hand digit 2 long bone of digit +http://purl.obolibrary.org/obo/UBERON_0003636,manual digit 2 phalanx,hand digit 2 phalanx +http://purl.obolibrary.org/obo/UBERON_0003636,manual digit 2 phalanx,index finger phalanx +http://purl.obolibrary.org/obo/UBERON_0003636,manual digit 2 phalanx,long bone of digit of 2 nd digit of hand +http://purl.obolibrary.org/obo/UBERON_0003636,manual digit 2 phalanx,long bone of digit of 2 nd finger +http://purl.obolibrary.org/obo/UBERON_0003636,manual digit 2 phalanx,long bone of digit of hand digit 2 +http://purl.obolibrary.org/obo/UBERON_0003636,manual digit 2 phalanx,long bone of digit of second finger +http://purl.obolibrary.org/obo/UBERON_0003636,manual digit 2 phalanx,manual digit II phalanx +http://purl.obolibrary.org/obo/UBERON_0003636,manual digit 2 phalanx,phalanx of 2 nd digit of hand +http://purl.obolibrary.org/obo/UBERON_0003636,manual digit 2 phalanx,phalanx of 2 nd finger +http://purl.obolibrary.org/obo/UBERON_0003636,manual digit 2 phalanx,phalanx of hand digit 2 +http://purl.obolibrary.org/obo/UBERON_0003636,manual digit 2 phalanx,phalanx of index finger +http://purl.obolibrary.org/obo/UBERON_0003636,manual digit 2 phalanx,phalanx of manual digit 2 +http://purl.obolibrary.org/obo/UBERON_0003636,manual digit 2 phalanx,phalanx of second finger +http://purl.obolibrary.org/obo/UBERON_0003636,manual digit 2 phalanx,second finger digit long bone +http://purl.obolibrary.org/obo/UBERON_0003636,manual digit 2 phalanx,second finger long bone of digit +http://purl.obolibrary.org/obo/UBERON_0003636,manual digit 2 phalanx,second finger phalanx +http://purl.obolibrary.org/obo/UBERON_0003637,manual digit 3 phalanx,3 rd digit of hand digit long bone +http://purl.obolibrary.org/obo/UBERON_0003637,manual digit 3 phalanx,3 rd digit of hand long bone of digit +http://purl.obolibrary.org/obo/UBERON_0003637,manual digit 3 phalanx,3 rd digit of hand phalanx +http://purl.obolibrary.org/obo/UBERON_0003637,manual digit 3 phalanx,3 rd finger digit long bone +http://purl.obolibrary.org/obo/UBERON_0003637,manual digit 3 phalanx,3 rd finger long bone of digit +http://purl.obolibrary.org/obo/UBERON_0003637,manual digit 3 phalanx,3 rd finger phalanx +http://purl.obolibrary.org/obo/UBERON_0003637,manual digit 3 phalanx,digit long bone of 3 rd digit of hand +http://purl.obolibrary.org/obo/UBERON_0003637,manual digit 3 phalanx,digit long bone of 3 rd finger +http://purl.obolibrary.org/obo/UBERON_0003637,manual digit 3 phalanx,digit long bone of hand digit 3 +http://purl.obolibrary.org/obo/UBERON_0003637,manual digit 3 phalanx,digit long bone of third finger +http://purl.obolibrary.org/obo/UBERON_0003637,manual digit 3 phalanx,fore limb digit 3 phalanx +http://purl.obolibrary.org/obo/UBERON_0003637,manual digit 3 phalanx,hand digit 3 digit long bone +http://purl.obolibrary.org/obo/UBERON_0003637,manual digit 3 phalanx,hand digit 3 long bone of digit +http://purl.obolibrary.org/obo/UBERON_0003637,manual digit 3 phalanx,hand digit 3 phalanx +http://purl.obolibrary.org/obo/UBERON_0003637,manual digit 3 phalanx,long bone of digit of 3 rd digit of hand +http://purl.obolibrary.org/obo/UBERON_0003637,manual digit 3 phalanx,long bone of digit of 3 rd finger +http://purl.obolibrary.org/obo/UBERON_0003637,manual digit 3 phalanx,long bone of digit of hand digit 3 +http://purl.obolibrary.org/obo/UBERON_0003637,manual digit 3 phalanx,long bone of digit of third finger +http://purl.obolibrary.org/obo/UBERON_0003637,manual digit 3 phalanx,manual digit III phalanx +http://purl.obolibrary.org/obo/UBERON_0003637,manual digit 3 phalanx,middle finger phalanx +http://purl.obolibrary.org/obo/UBERON_0003637,manual digit 3 phalanx,phalanx of 3 rd digit of hand +http://purl.obolibrary.org/obo/UBERON_0003637,manual digit 3 phalanx,phalanx of 3 rd finger +http://purl.obolibrary.org/obo/UBERON_0003637,manual digit 3 phalanx,phalanx of hand digit 3 +http://purl.obolibrary.org/obo/UBERON_0003637,manual digit 3 phalanx,phalanx of middle finger +http://purl.obolibrary.org/obo/UBERON_0003637,manual digit 3 phalanx,phalanx of third finger +http://purl.obolibrary.org/obo/UBERON_0003637,manual digit 3 phalanx,third finger digit long bone +http://purl.obolibrary.org/obo/UBERON_0003637,manual digit 3 phalanx,third finger long bone of digit +http://purl.obolibrary.org/obo/UBERON_0003637,manual digit 3 phalanx,third finger phalanx +http://purl.obolibrary.org/obo/UBERON_0003638,manual digit 4 phalanx,4 th digit of hand digit long bone +http://purl.obolibrary.org/obo/UBERON_0003638,manual digit 4 phalanx,4 th digit of hand long bone of digit +http://purl.obolibrary.org/obo/UBERON_0003638,manual digit 4 phalanx,4 th digit of hand phalanx +http://purl.obolibrary.org/obo/UBERON_0003638,manual digit 4 phalanx,4 th finger digit long bone +http://purl.obolibrary.org/obo/UBERON_0003638,manual digit 4 phalanx,4 th finger long bone of digit +http://purl.obolibrary.org/obo/UBERON_0003638,manual digit 4 phalanx,4 th finger phalanx +http://purl.obolibrary.org/obo/UBERON_0003638,manual digit 4 phalanx,digit long bone of 4 th digit of hand +http://purl.obolibrary.org/obo/UBERON_0003638,manual digit 4 phalanx,digit long bone of 4 th finger +http://purl.obolibrary.org/obo/UBERON_0003638,manual digit 4 phalanx,digit long bone of fourth finger +http://purl.obolibrary.org/obo/UBERON_0003638,manual digit 4 phalanx,digit long bone of hand digit 4 +http://purl.obolibrary.org/obo/UBERON_0003638,manual digit 4 phalanx,fore limb digit 4 phalanx +http://purl.obolibrary.org/obo/UBERON_0003638,manual digit 4 phalanx,fourth finger digit long bone +http://purl.obolibrary.org/obo/UBERON_0003638,manual digit 4 phalanx,fourth finger long bone of digit +http://purl.obolibrary.org/obo/UBERON_0003638,manual digit 4 phalanx,fourth finger phalanx +http://purl.obolibrary.org/obo/UBERON_0003638,manual digit 4 phalanx,hand digit 4 digit long bone +http://purl.obolibrary.org/obo/UBERON_0003638,manual digit 4 phalanx,hand digit 4 long bone of digit +http://purl.obolibrary.org/obo/UBERON_0003638,manual digit 4 phalanx,hand digit 4 phalanx +http://purl.obolibrary.org/obo/UBERON_0003638,manual digit 4 phalanx,long bone of digit of 4 th digit of hand +http://purl.obolibrary.org/obo/UBERON_0003638,manual digit 4 phalanx,long bone of digit of 4 th finger +http://purl.obolibrary.org/obo/UBERON_0003638,manual digit 4 phalanx,long bone of digit of fourth finger +http://purl.obolibrary.org/obo/UBERON_0003638,manual digit 4 phalanx,long bone of digit of hand digit 4 +http://purl.obolibrary.org/obo/UBERON_0003638,manual digit 4 phalanx,manual digit IV phalanx +http://purl.obolibrary.org/obo/UBERON_0003638,manual digit 4 phalanx,phalanx of 4 th digit of hand +http://purl.obolibrary.org/obo/UBERON_0003638,manual digit 4 phalanx,phalanx of 4 th finger +http://purl.obolibrary.org/obo/UBERON_0003638,manual digit 4 phalanx,phalanx of fourth finger +http://purl.obolibrary.org/obo/UBERON_0003638,manual digit 4 phalanx,phalanx of hand digit 4 +http://purl.obolibrary.org/obo/UBERON_0003638,manual digit 4 phalanx,phalanx of ring finger +http://purl.obolibrary.org/obo/UBERON_0003638,manual digit 4 phalanx,ring finger phalanx +http://purl.obolibrary.org/obo/UBERON_0003639,manual digit 5 phalanx,5 th digit of hand digit long bone +http://purl.obolibrary.org/obo/UBERON_0003639,manual digit 5 phalanx,5 th digit of hand long bone of digit +http://purl.obolibrary.org/obo/UBERON_0003639,manual digit 5 phalanx,5 th digit of hand phalanx +http://purl.obolibrary.org/obo/UBERON_0003639,manual digit 5 phalanx,5 th finger digit long bone +http://purl.obolibrary.org/obo/UBERON_0003639,manual digit 5 phalanx,5 th finger long bone of digit +http://purl.obolibrary.org/obo/UBERON_0003639,manual digit 5 phalanx,5 th finger phalanx +http://purl.obolibrary.org/obo/UBERON_0003639,manual digit 5 phalanx,digit long bone of 5 th digit of hand +http://purl.obolibrary.org/obo/UBERON_0003639,manual digit 5 phalanx,digit long bone of 5 th finger +http://purl.obolibrary.org/obo/UBERON_0003639,manual digit 5 phalanx,digit long bone of fifth finger +http://purl.obolibrary.org/obo/UBERON_0003639,manual digit 5 phalanx,digit long bone of hand digit 5 +http://purl.obolibrary.org/obo/UBERON_0003639,manual digit 5 phalanx,fifth finger digit long bone +http://purl.obolibrary.org/obo/UBERON_0003639,manual digit 5 phalanx,fifth finger long bone of digit +http://purl.obolibrary.org/obo/UBERON_0003639,manual digit 5 phalanx,fifth finger phalanx +http://purl.obolibrary.org/obo/UBERON_0003639,manual digit 5 phalanx,fore limb digit 5 phalanx +http://purl.obolibrary.org/obo/UBERON_0003639,manual digit 5 phalanx,hand digit 5 digit long bone +http://purl.obolibrary.org/obo/UBERON_0003639,manual digit 5 phalanx,hand digit 5 long bone of digit +http://purl.obolibrary.org/obo/UBERON_0003639,manual digit 5 phalanx,hand digit 5 phalanx +http://purl.obolibrary.org/obo/UBERON_0003639,manual digit 5 phalanx,little finger phalanx +http://purl.obolibrary.org/obo/UBERON_0003639,manual digit 5 phalanx,long bone of digit of 5 th digit of hand +http://purl.obolibrary.org/obo/UBERON_0003639,manual digit 5 phalanx,long bone of digit of 5 th finger +http://purl.obolibrary.org/obo/UBERON_0003639,manual digit 5 phalanx,long bone of digit of fifth finger +http://purl.obolibrary.org/obo/UBERON_0003639,manual digit 5 phalanx,long bone of digit of hand digit 5 +http://purl.obolibrary.org/obo/UBERON_0003639,manual digit 5 phalanx,manual digit V phalanx +http://purl.obolibrary.org/obo/UBERON_0003639,manual digit 5 phalanx,phalanx of 5 th digit of hand +http://purl.obolibrary.org/obo/UBERON_0003639,manual digit 5 phalanx,phalanx of 5 th finger +http://purl.obolibrary.org/obo/UBERON_0003639,manual digit 5 phalanx,phalanx of 5th finger +http://purl.obolibrary.org/obo/UBERON_0003639,manual digit 5 phalanx,phalanx of fifth digit of hand +http://purl.obolibrary.org/obo/UBERON_0003639,manual digit 5 phalanx,phalanx of fifth finger +http://purl.obolibrary.org/obo/UBERON_0003639,manual digit 5 phalanx,phalanx of hand digit 5 +http://purl.obolibrary.org/obo/UBERON_0003639,manual digit 5 phalanx,phalanx of little finger +http://purl.obolibrary.org/obo/UBERON_0003639,manual digit 5 phalanx,phalanx of manual digitus minimus +http://purl.obolibrary.org/obo/UBERON_0003640,pedal digit 1 phalanx,big toe phalanx +http://purl.obolibrary.org/obo/UBERON_0003640,pedal digit 1 phalanx,digit long bone of foot digit 1 +http://purl.obolibrary.org/obo/UBERON_0003640,pedal digit 1 phalanx,digit long bone of hallux +http://purl.obolibrary.org/obo/UBERON_0003640,pedal digit 1 phalanx,foot digit 1 digit long bone +http://purl.obolibrary.org/obo/UBERON_0003640,pedal digit 1 phalanx,foot digit 1 long bone of digit +http://purl.obolibrary.org/obo/UBERON_0003640,pedal digit 1 phalanx,foot digit 1 phalanx +http://purl.obolibrary.org/obo/UBERON_0003640,pedal digit 1 phalanx,hallux digit long bone +http://purl.obolibrary.org/obo/UBERON_0003640,pedal digit 1 phalanx,hallux long bone of digit +http://purl.obolibrary.org/obo/UBERON_0003640,pedal digit 1 phalanx,hallux phalanx +http://purl.obolibrary.org/obo/UBERON_0003640,pedal digit 1 phalanx,hind limb digit 1 phalanx +http://purl.obolibrary.org/obo/UBERON_0003640,pedal digit 1 phalanx,long bone of digit of foot digit 1 +http://purl.obolibrary.org/obo/UBERON_0003640,pedal digit 1 phalanx,long bone of digit of hallux +http://purl.obolibrary.org/obo/UBERON_0003640,pedal digit 1 phalanx,pedal digit I phalanx +http://purl.obolibrary.org/obo/UBERON_0003640,pedal digit 1 phalanx,phalanx of big toe +http://purl.obolibrary.org/obo/UBERON_0003640,pedal digit 1 phalanx,phalanx of first digit of foot +http://purl.obolibrary.org/obo/UBERON_0003640,pedal digit 1 phalanx,phalanx of foot digit 1 +http://purl.obolibrary.org/obo/UBERON_0003640,pedal digit 1 phalanx,phalanx of great toe +http://purl.obolibrary.org/obo/UBERON_0003640,pedal digit 1 phalanx,phalanx of hallux +http://purl.obolibrary.org/obo/UBERON_0003641,pedal digit 2 phalanx,digit long bone of foot digit 2 +http://purl.obolibrary.org/obo/UBERON_0003641,pedal digit 2 phalanx,foot digit 2 digit long bone +http://purl.obolibrary.org/obo/UBERON_0003641,pedal digit 2 phalanx,foot digit 2 long bone of digit +http://purl.obolibrary.org/obo/UBERON_0003641,pedal digit 2 phalanx,foot digit 2 phalanx +http://purl.obolibrary.org/obo/UBERON_0003641,pedal digit 2 phalanx,hind limb digit 2 phalanx +http://purl.obolibrary.org/obo/UBERON_0003641,pedal digit 2 phalanx,long bone of digit of foot digit 2 +http://purl.obolibrary.org/obo/UBERON_0003641,pedal digit 2 phalanx,pedal digit II phalanx +http://purl.obolibrary.org/obo/UBERON_0003641,pedal digit 2 phalanx,phalanx of foot digit 2 +http://purl.obolibrary.org/obo/UBERON_0003641,pedal digit 2 phalanx,phalanx of second toe +http://purl.obolibrary.org/obo/UBERON_0003641,pedal digit 2 phalanx,second toe phalanx +http://purl.obolibrary.org/obo/UBERON_0003642,pedal digit 3 phalanx,digit long bone of foot digit 3 +http://purl.obolibrary.org/obo/UBERON_0003642,pedal digit 3 phalanx,foot digit 3 digit long bone +http://purl.obolibrary.org/obo/UBERON_0003642,pedal digit 3 phalanx,foot digit 3 long bone of digit +http://purl.obolibrary.org/obo/UBERON_0003642,pedal digit 3 phalanx,foot digit 3 phalanx +http://purl.obolibrary.org/obo/UBERON_0003642,pedal digit 3 phalanx,hind limb digit 3 phalanx +http://purl.obolibrary.org/obo/UBERON_0003642,pedal digit 3 phalanx,long bone of digit of foot digit 3 +http://purl.obolibrary.org/obo/UBERON_0003642,pedal digit 3 phalanx,pedal digit III phalanx +http://purl.obolibrary.org/obo/UBERON_0003642,pedal digit 3 phalanx,phalanx of foot digit 3 +http://purl.obolibrary.org/obo/UBERON_0003642,pedal digit 3 phalanx,phalanx of third toe +http://purl.obolibrary.org/obo/UBERON_0003642,pedal digit 3 phalanx,third toe phalanx +http://purl.obolibrary.org/obo/UBERON_0003643,respiratory system arterial blood vessel, +http://purl.obolibrary.org/obo/UBERON_0003644,kidney arterial blood vessel, +http://purl.obolibrary.org/obo/UBERON_0003645,metacarpal bone of digit 1,finger 1 metacarpus +http://purl.obolibrary.org/obo/UBERON_0003645,metacarpal bone of digit 1,first digit of hand metacarpal +http://purl.obolibrary.org/obo/UBERON_0003645,metacarpal bone of digit 1,first digit of hand metacarpal bone +http://purl.obolibrary.org/obo/UBERON_0003645,metacarpal bone of digit 1,first metacarpal bone +http://purl.obolibrary.org/obo/UBERON_0003645,metacarpal bone of digit 1,hand digit 1 metacarpal +http://purl.obolibrary.org/obo/UBERON_0003645,metacarpal bone of digit 1,hand digit 1 metacarpal bone +http://purl.obolibrary.org/obo/UBERON_0003645,metacarpal bone of digit 1,manual digit 1 metacarpus +http://purl.obolibrary.org/obo/UBERON_0003645,metacarpal bone of digit 1,metacarpal 1 +http://purl.obolibrary.org/obo/UBERON_0003645,metacarpal bone of digit 1,metacarpal I +http://purl.obolibrary.org/obo/UBERON_0003645,metacarpal bone of digit 1,metacarpal bone digit 1 +http://purl.obolibrary.org/obo/UBERON_0003645,metacarpal bone of digit 1,metacarpal bone of digit I +http://purl.obolibrary.org/obo/UBERON_0003645,metacarpal bone of digit 1,metacarpal bone of first digit of hand +http://purl.obolibrary.org/obo/UBERON_0003645,metacarpal bone of digit 1,metacarpal bone of hand digit 1 +http://purl.obolibrary.org/obo/UBERON_0003645,metacarpal bone of digit 1,metacarpal bone of thumb +http://purl.obolibrary.org/obo/UBERON_0003645,metacarpal bone of digit 1,metacarpal of first digit of hand +http://purl.obolibrary.org/obo/UBERON_0003645,metacarpal bone of digit 1,metacarpal of hand digit 1 +http://purl.obolibrary.org/obo/UBERON_0003645,metacarpal bone of digit 1,metacarpal of thumb +http://purl.obolibrary.org/obo/UBERON_0003645,metacarpal bone of digit 1,thumb metacarpal +http://purl.obolibrary.org/obo/UBERON_0003645,metacarpal bone of digit 1,thumb metacarpal bone +http://purl.obolibrary.org/obo/UBERON_0003646,metacarpal bone of digit 2,2 nd digit of hand metacarpal +http://purl.obolibrary.org/obo/UBERON_0003646,metacarpal bone of digit 2,2 nd digit of hand metacarpal bone +http://purl.obolibrary.org/obo/UBERON_0003646,metacarpal bone of digit 2,2 nd finger metacarpal +http://purl.obolibrary.org/obo/UBERON_0003646,metacarpal bone of digit 2,2 nd finger metacarpal bone +http://purl.obolibrary.org/obo/UBERON_0003646,metacarpal bone of digit 2,finger 2 metacarpus +http://purl.obolibrary.org/obo/UBERON_0003646,metacarpal bone of digit 2,hand digit 2 metacarpal +http://purl.obolibrary.org/obo/UBERON_0003646,metacarpal bone of digit 2,hand digit 2 metacarpal bone +http://purl.obolibrary.org/obo/UBERON_0003646,metacarpal bone of digit 2,manual digit 2 metacarpus +http://purl.obolibrary.org/obo/UBERON_0003646,metacarpal bone of digit 2,metacarpal 2 +http://purl.obolibrary.org/obo/UBERON_0003646,metacarpal bone of digit 2,metacarpal II +http://purl.obolibrary.org/obo/UBERON_0003646,metacarpal bone of digit 2,metacarpal bone digit 2 +http://purl.obolibrary.org/obo/UBERON_0003646,metacarpal bone of digit 2,metacarpal bone of 2 nd digit of hand +http://purl.obolibrary.org/obo/UBERON_0003646,metacarpal bone of digit 2,metacarpal bone of 2 nd finger +http://purl.obolibrary.org/obo/UBERON_0003646,metacarpal bone of digit 2,metacarpal bone of digit II +http://purl.obolibrary.org/obo/UBERON_0003646,metacarpal bone of digit 2,metacarpal bone of hand digit 2 +http://purl.obolibrary.org/obo/UBERON_0003646,metacarpal bone of digit 2,metacarpal bone of second finger +http://purl.obolibrary.org/obo/UBERON_0003646,metacarpal bone of digit 2,metacarpal of 2 nd digit of hand +http://purl.obolibrary.org/obo/UBERON_0003646,metacarpal bone of digit 2,metacarpal of 2 nd finger +http://purl.obolibrary.org/obo/UBERON_0003646,metacarpal bone of digit 2,metacarpal of hand digit 2 +http://purl.obolibrary.org/obo/UBERON_0003646,metacarpal bone of digit 2,metacarpal of second finger +http://purl.obolibrary.org/obo/UBERON_0003646,metacarpal bone of digit 2,second finger metacarpal +http://purl.obolibrary.org/obo/UBERON_0003646,metacarpal bone of digit 2,second finger metacarpal bone +http://purl.obolibrary.org/obo/UBERON_0003646,metacarpal bone of digit 2,second metacarpal bone +http://purl.obolibrary.org/obo/UBERON_0003647,metacarpal bone of digit 3,3 rd digit of hand metacarpal +http://purl.obolibrary.org/obo/UBERON_0003647,metacarpal bone of digit 3,3 rd digit of hand metacarpal bone +http://purl.obolibrary.org/obo/UBERON_0003647,metacarpal bone of digit 3,3 rd finger metacarpal +http://purl.obolibrary.org/obo/UBERON_0003647,metacarpal bone of digit 3,3 rd finger metacarpal bone +http://purl.obolibrary.org/obo/UBERON_0003647,metacarpal bone of digit 3,finger 3 metacarpus +http://purl.obolibrary.org/obo/UBERON_0003647,metacarpal bone of digit 3,hand digit 3 metacarpal +http://purl.obolibrary.org/obo/UBERON_0003647,metacarpal bone of digit 3,hand digit 3 metacarpal bone +http://purl.obolibrary.org/obo/UBERON_0003647,metacarpal bone of digit 3,manual digit 3 metacarpus +http://purl.obolibrary.org/obo/UBERON_0003647,metacarpal bone of digit 3,metacarpal 3 +http://purl.obolibrary.org/obo/UBERON_0003647,metacarpal bone of digit 3,metacarpal III +http://purl.obolibrary.org/obo/UBERON_0003647,metacarpal bone of digit 3,metacarpal bone digit 3 +http://purl.obolibrary.org/obo/UBERON_0003647,metacarpal bone of digit 3,metacarpal bone of 3 rd digit of hand +http://purl.obolibrary.org/obo/UBERON_0003647,metacarpal bone of digit 3,metacarpal bone of 3 rd finger +http://purl.obolibrary.org/obo/UBERON_0003647,metacarpal bone of digit 3,metacarpal bone of digit III +http://purl.obolibrary.org/obo/UBERON_0003647,metacarpal bone of digit 3,metacarpal bone of hand digit 3 +http://purl.obolibrary.org/obo/UBERON_0003647,metacarpal bone of digit 3,metacarpal bone of third finger +http://purl.obolibrary.org/obo/UBERON_0003647,metacarpal bone of digit 3,metacarpal of 3 rd digit of hand +http://purl.obolibrary.org/obo/UBERON_0003647,metacarpal bone of digit 3,metacarpal of 3 rd finger +http://purl.obolibrary.org/obo/UBERON_0003647,metacarpal bone of digit 3,metacarpal of hand digit 3 +http://purl.obolibrary.org/obo/UBERON_0003647,metacarpal bone of digit 3,metacarpal of third finger +http://purl.obolibrary.org/obo/UBERON_0003647,metacarpal bone of digit 3,third finger metacarpal +http://purl.obolibrary.org/obo/UBERON_0003647,metacarpal bone of digit 3,third finger metacarpal bone +http://purl.obolibrary.org/obo/UBERON_0003647,metacarpal bone of digit 3,third metacarpal bone +http://purl.obolibrary.org/obo/UBERON_0003648,metacarpal bone of digit 4,4 th digit of hand metacarpal +http://purl.obolibrary.org/obo/UBERON_0003648,metacarpal bone of digit 4,4 th digit of hand metacarpal bone +http://purl.obolibrary.org/obo/UBERON_0003648,metacarpal bone of digit 4,4 th finger metacarpal +http://purl.obolibrary.org/obo/UBERON_0003648,metacarpal bone of digit 4,4 th finger metacarpal bone +http://purl.obolibrary.org/obo/UBERON_0003648,metacarpal bone of digit 4,finger 4 metacarpus +http://purl.obolibrary.org/obo/UBERON_0003648,metacarpal bone of digit 4,fourth finger metacarpal +http://purl.obolibrary.org/obo/UBERON_0003648,metacarpal bone of digit 4,fourth finger metacarpal bone +http://purl.obolibrary.org/obo/UBERON_0003648,metacarpal bone of digit 4,fourth metacarpal bone +http://purl.obolibrary.org/obo/UBERON_0003648,metacarpal bone of digit 4,hand digit 4 metacarpal +http://purl.obolibrary.org/obo/UBERON_0003648,metacarpal bone of digit 4,hand digit 4 metacarpal bone +http://purl.obolibrary.org/obo/UBERON_0003648,metacarpal bone of digit 4,manual digit 4 metacarpus +http://purl.obolibrary.org/obo/UBERON_0003648,metacarpal bone of digit 4,metacarpal 4 +http://purl.obolibrary.org/obo/UBERON_0003648,metacarpal bone of digit 4,metacarpal IV +http://purl.obolibrary.org/obo/UBERON_0003648,metacarpal bone of digit 4,metacarpal bone digit 4 +http://purl.obolibrary.org/obo/UBERON_0003648,metacarpal bone of digit 4,metacarpal bone of 4 th digit of hand +http://purl.obolibrary.org/obo/UBERON_0003648,metacarpal bone of digit 4,metacarpal bone of 4 th finger +http://purl.obolibrary.org/obo/UBERON_0003648,metacarpal bone of digit 4,metacarpal bone of digit IV +http://purl.obolibrary.org/obo/UBERON_0003648,metacarpal bone of digit 4,metacarpal bone of fourth finger +http://purl.obolibrary.org/obo/UBERON_0003648,metacarpal bone of digit 4,metacarpal bone of hand digit 4 +http://purl.obolibrary.org/obo/UBERON_0003648,metacarpal bone of digit 4,metacarpal of 4 th digit of hand +http://purl.obolibrary.org/obo/UBERON_0003648,metacarpal bone of digit 4,metacarpal of 4 th finger +http://purl.obolibrary.org/obo/UBERON_0003648,metacarpal bone of digit 4,metacarpal of fourth finger +http://purl.obolibrary.org/obo/UBERON_0003648,metacarpal bone of digit 4,metacarpal of hand digit 4 +http://purl.obolibrary.org/obo/UBERON_0003649,metacarpal bone of digit 5,5 th digit of hand metacarpal +http://purl.obolibrary.org/obo/UBERON_0003649,metacarpal bone of digit 5,5 th digit of hand metacarpal bone +http://purl.obolibrary.org/obo/UBERON_0003649,metacarpal bone of digit 5,5 th finger metacarpal +http://purl.obolibrary.org/obo/UBERON_0003649,metacarpal bone of digit 5,5 th finger metacarpal bone +http://purl.obolibrary.org/obo/UBERON_0003649,metacarpal bone of digit 5,fifth finger metacarpal +http://purl.obolibrary.org/obo/UBERON_0003649,metacarpal bone of digit 5,fifth finger metacarpal bone +http://purl.obolibrary.org/obo/UBERON_0003649,metacarpal bone of digit 5,fifth metacarpal bone +http://purl.obolibrary.org/obo/UBERON_0003649,metacarpal bone of digit 5,finger 5 metacarpus +http://purl.obolibrary.org/obo/UBERON_0003649,metacarpal bone of digit 5,hand digit 5 metacarpal +http://purl.obolibrary.org/obo/UBERON_0003649,metacarpal bone of digit 5,hand digit 5 metacarpal bone +http://purl.obolibrary.org/obo/UBERON_0003649,metacarpal bone of digit 5,manual digit 5 metacarpus +http://purl.obolibrary.org/obo/UBERON_0003649,metacarpal bone of digit 5,metacarpal 5 +http://purl.obolibrary.org/obo/UBERON_0003649,metacarpal bone of digit 5,metacarpal V +http://purl.obolibrary.org/obo/UBERON_0003649,metacarpal bone of digit 5,metacarpal bone digit 5 +http://purl.obolibrary.org/obo/UBERON_0003649,metacarpal bone of digit 5,metacarpal bone of 5 th digit of hand +http://purl.obolibrary.org/obo/UBERON_0003649,metacarpal bone of digit 5,metacarpal bone of 5 th finger +http://purl.obolibrary.org/obo/UBERON_0003649,metacarpal bone of digit 5,metacarpal bone of digit V +http://purl.obolibrary.org/obo/UBERON_0003649,metacarpal bone of digit 5,metacarpal bone of fifth finger +http://purl.obolibrary.org/obo/UBERON_0003649,metacarpal bone of digit 5,metacarpal bone of hand digit 5 +http://purl.obolibrary.org/obo/UBERON_0003649,metacarpal bone of digit 5,metacarpal of 5 th digit of hand +http://purl.obolibrary.org/obo/UBERON_0003649,metacarpal bone of digit 5,metacarpal of 5 th finger +http://purl.obolibrary.org/obo/UBERON_0003649,metacarpal bone of digit 5,metacarpal of fifth finger +http://purl.obolibrary.org/obo/UBERON_0003649,metacarpal bone of digit 5,metacarpal of hand digit 5 +http://purl.obolibrary.org/obo/UBERON_0003650,metatarsal bone of digit 1,first metatarsal bone +http://purl.obolibrary.org/obo/UBERON_0003650,metatarsal bone of digit 1,foot digit 1 metatarsal bone +http://purl.obolibrary.org/obo/UBERON_0003650,metatarsal bone of digit 1,hallux metatarsal bone +http://purl.obolibrary.org/obo/UBERON_0003650,metatarsal bone of digit 1,metatarsal 1 +http://purl.obolibrary.org/obo/UBERON_0003650,metatarsal bone of digit 1,metatarsal I +http://purl.obolibrary.org/obo/UBERON_0003650,metatarsal bone of digit 1,metatarsal bone digit 1 +http://purl.obolibrary.org/obo/UBERON_0003650,metatarsal bone of digit 1,metatarsal bone of digit I +http://purl.obolibrary.org/obo/UBERON_0003650,metatarsal bone of digit 1,metatarsal bone of foot digit 1 +http://purl.obolibrary.org/obo/UBERON_0003650,metatarsal bone of digit 1,metatarsal bone of hallux +http://purl.obolibrary.org/obo/UBERON_0003650,metatarsal bone of digit 1,toe 1 metatarsal +http://purl.obolibrary.org/obo/UBERON_0003650,metatarsal bone of digit 1,toe 1 metatarsus +http://purl.obolibrary.org/obo/UBERON_0003651,metatarsal bone of digit 2,foot digit 2 metatarsal bone +http://purl.obolibrary.org/obo/UBERON_0003651,metatarsal bone of digit 2,metatarsal 2 +http://purl.obolibrary.org/obo/UBERON_0003651,metatarsal bone of digit 2,metatarsal II +http://purl.obolibrary.org/obo/UBERON_0003651,metatarsal bone of digit 2,metatarsal bone digit 2 +http://purl.obolibrary.org/obo/UBERON_0003651,metatarsal bone of digit 2,metatarsal bone of digit II +http://purl.obolibrary.org/obo/UBERON_0003651,metatarsal bone of digit 2,metatarsal bone of foot digit 2 +http://purl.obolibrary.org/obo/UBERON_0003651,metatarsal bone of digit 2,second metatarsal bone +http://purl.obolibrary.org/obo/UBERON_0003651,metatarsal bone of digit 2,toe 2 metatarsal +http://purl.obolibrary.org/obo/UBERON_0003651,metatarsal bone of digit 2,toe 2 metatarsus +http://purl.obolibrary.org/obo/UBERON_0003652,metatarsal bone of digit 3,foot digit 3 metatarsal bone +http://purl.obolibrary.org/obo/UBERON_0003652,metatarsal bone of digit 3,metatarsal 3 +http://purl.obolibrary.org/obo/UBERON_0003652,metatarsal bone of digit 3,metatarsal III +http://purl.obolibrary.org/obo/UBERON_0003652,metatarsal bone of digit 3,metatarsal bone digit 3 +http://purl.obolibrary.org/obo/UBERON_0003652,metatarsal bone of digit 3,metatarsal bone of digit III +http://purl.obolibrary.org/obo/UBERON_0003652,metatarsal bone of digit 3,metatarsal bone of foot digit 3 +http://purl.obolibrary.org/obo/UBERON_0003652,metatarsal bone of digit 3,third metatarsal bone +http://purl.obolibrary.org/obo/UBERON_0003652,metatarsal bone of digit 3,toe 3 metatarsal +http://purl.obolibrary.org/obo/UBERON_0003652,metatarsal bone of digit 3,toe 3 metatarsus +http://purl.obolibrary.org/obo/UBERON_0003653,metatarsal bone of digit 4,foot digit 4 metatarsal bone +http://purl.obolibrary.org/obo/UBERON_0003653,metatarsal bone of digit 4,fourth metatarsal bone +http://purl.obolibrary.org/obo/UBERON_0003653,metatarsal bone of digit 4,metatarsal 4 +http://purl.obolibrary.org/obo/UBERON_0003653,metatarsal bone of digit 4,metatarsal IV +http://purl.obolibrary.org/obo/UBERON_0003653,metatarsal bone of digit 4,metatarsal bone digit 4 +http://purl.obolibrary.org/obo/UBERON_0003653,metatarsal bone of digit 4,metatarsal bone of digit IV +http://purl.obolibrary.org/obo/UBERON_0003653,metatarsal bone of digit 4,metatarsal bone of foot digit 4 +http://purl.obolibrary.org/obo/UBERON_0003653,metatarsal bone of digit 4,toe 4 metatarsal +http://purl.obolibrary.org/obo/UBERON_0003653,metatarsal bone of digit 4,toe 4 metatarsus +http://purl.obolibrary.org/obo/UBERON_0003654,metatarsal bone of digit 5,fifth metatarsal bone +http://purl.obolibrary.org/obo/UBERON_0003654,metatarsal bone of digit 5,foot digit 5 metatarsal bone +http://purl.obolibrary.org/obo/UBERON_0003654,metatarsal bone of digit 5,metatarsal 5 +http://purl.obolibrary.org/obo/UBERON_0003654,metatarsal bone of digit 5,metatarsal V +http://purl.obolibrary.org/obo/UBERON_0003654,metatarsal bone of digit 5,metatarsal bone digit 5 +http://purl.obolibrary.org/obo/UBERON_0003654,metatarsal bone of digit 5,metatarsal bone of digit V +http://purl.obolibrary.org/obo/UBERON_0003654,metatarsal bone of digit 5,metatarsal bone of foot digit 5 +http://purl.obolibrary.org/obo/UBERON_0003654,metatarsal bone of digit 5,toe 5 metatarsal +http://purl.obolibrary.org/obo/UBERON_0003654,metatarsal bone of digit 5,toe 5 metatarsus +http://purl.obolibrary.org/obo/UBERON_0003655,molar tooth,dens molaris +http://purl.obolibrary.org/obo/UBERON_0003655,molar tooth,molaris +http://purl.obolibrary.org/obo/UBERON_0003656,mesopodium bone,basipodium bone +http://purl.obolibrary.org/obo/UBERON_0003656,mesopodium bone,carpal/tarsal bone +http://purl.obolibrary.org/obo/UBERON_0003656,mesopodium bone,mesopod bone +http://purl.obolibrary.org/obo/UBERON_0003656,mesopodium bone,mesopodial bone +http://purl.obolibrary.org/obo/UBERON_0003657,limb joint,joint of limb +http://purl.obolibrary.org/obo/UBERON_0003657,limb joint,joint of limb skeletal system +http://purl.obolibrary.org/obo/UBERON_0003657,limb joint,skeletal limb joint +http://purl.obolibrary.org/obo/UBERON_0003658,hip muscle,hip muscle organ +http://purl.obolibrary.org/obo/UBERON_0003658,hip muscle,hip region muscle organ +http://purl.obolibrary.org/obo/UBERON_0003658,hip muscle,muscle organ of hip +http://purl.obolibrary.org/obo/UBERON_0003658,hip muscle,muscle organ of hip region +http://purl.obolibrary.org/obo/UBERON_0003658,hip muscle,muscle organ of regio coxae +http://purl.obolibrary.org/obo/UBERON_0003658,hip muscle,regio coxae muscle organ +http://purl.obolibrary.org/obo/UBERON_0003659,pedal digit muscle,digit of foot muscle organ +http://purl.obolibrary.org/obo/UBERON_0003659,pedal digit muscle,digit of terminal segment of free lower limb muscle organ +http://purl.obolibrary.org/obo/UBERON_0003659,pedal digit muscle,digitus pedis muscle organ +http://purl.obolibrary.org/obo/UBERON_0003659,pedal digit muscle,foot digit muscle +http://purl.obolibrary.org/obo/UBERON_0003659,pedal digit muscle,foot digit muscle organ +http://purl.obolibrary.org/obo/UBERON_0003659,pedal digit muscle,hind limb digit muscle +http://purl.obolibrary.org/obo/UBERON_0003659,pedal digit muscle,muscle organ of digit of foot +http://purl.obolibrary.org/obo/UBERON_0003659,pedal digit muscle,muscle organ of digit of terminal segment of free lower limb +http://purl.obolibrary.org/obo/UBERON_0003659,pedal digit muscle,muscle organ of digitus pedis +http://purl.obolibrary.org/obo/UBERON_0003659,pedal digit muscle,muscle organ of foot digit +http://purl.obolibrary.org/obo/UBERON_0003659,pedal digit muscle,muscle organ of terminal segment of free lower limb digit +http://purl.obolibrary.org/obo/UBERON_0003659,pedal digit muscle,muscle organ of toe +http://purl.obolibrary.org/obo/UBERON_0003659,pedal digit muscle,terminal segment of free lower limb digit muscle organ +http://purl.obolibrary.org/obo/UBERON_0003659,pedal digit muscle,toe muscle organ +http://purl.obolibrary.org/obo/UBERON_0003660,eyelid muscle,blepharon muscle organ +http://purl.obolibrary.org/obo/UBERON_0003660,eyelid muscle,eyelid muscle organ +http://purl.obolibrary.org/obo/UBERON_0003660,eyelid muscle,muscle organ of blepharon +http://purl.obolibrary.org/obo/UBERON_0003660,eyelid muscle,muscle organ of eyelid +http://purl.obolibrary.org/obo/UBERON_0003661,limb muscle,limb muscle organ +http://purl.obolibrary.org/obo/UBERON_0003661,limb muscle,limb skeletal muscle +http://purl.obolibrary.org/obo/UBERON_0003661,limb muscle,muscle organ of limb +http://purl.obolibrary.org/obo/UBERON_0003662,forelimb muscle,fore limb muscle organ +http://purl.obolibrary.org/obo/UBERON_0003662,forelimb muscle,forelimb muscle organ +http://purl.obolibrary.org/obo/UBERON_0003662,forelimb muscle,free upper limb muscle +http://purl.obolibrary.org/obo/UBERON_0003662,forelimb muscle,muscle of free upper limb +http://purl.obolibrary.org/obo/UBERON_0003662,forelimb muscle,muscle of upper limb +http://purl.obolibrary.org/obo/UBERON_0003662,forelimb muscle,upper limb skeletal muscle +http://purl.obolibrary.org/obo/UBERON_0003663,hindlimb muscle,free lower limb muscle +http://purl.obolibrary.org/obo/UBERON_0003663,hindlimb muscle,hind limb muscle organ +http://purl.obolibrary.org/obo/UBERON_0003663,hindlimb muscle,hindlimb muscle organ +http://purl.obolibrary.org/obo/UBERON_0003663,hindlimb muscle,inferior member muscle organ +http://purl.obolibrary.org/obo/UBERON_0003663,hindlimb muscle,lower extremity muscle organ +http://purl.obolibrary.org/obo/UBERON_0003663,hindlimb muscle,lower limb skeletal muscle +http://purl.obolibrary.org/obo/UBERON_0003663,hindlimb muscle,muscle of free lower limb +http://purl.obolibrary.org/obo/UBERON_0003663,hindlimb muscle,muscle of posterior limb +http://purl.obolibrary.org/obo/UBERON_0003663,hindlimb muscle,muscle organ of hind limb +http://purl.obolibrary.org/obo/UBERON_0003663,hindlimb muscle,muscle organ of hindlimb +http://purl.obolibrary.org/obo/UBERON_0003663,hindlimb muscle,muscle organ of inferior member +http://purl.obolibrary.org/obo/UBERON_0003663,hindlimb muscle,muscle organ of lower extremity +http://purl.obolibrary.org/obo/UBERON_0003664,manual digit muscle,digit of hand muscle organ +http://purl.obolibrary.org/obo/UBERON_0003664,manual digit muscle,digit of terminal segment of free upper limb muscle organ +http://purl.obolibrary.org/obo/UBERON_0003664,manual digit muscle,digitus manus muscle organ +http://purl.obolibrary.org/obo/UBERON_0003664,manual digit muscle,finger muscle organ +http://purl.obolibrary.org/obo/UBERON_0003664,manual digit muscle,fore limb digit muscle +http://purl.obolibrary.org/obo/UBERON_0003664,manual digit muscle,hand digit muscle +http://purl.obolibrary.org/obo/UBERON_0003664,manual digit muscle,hand digit muscle organ +http://purl.obolibrary.org/obo/UBERON_0003664,manual digit muscle,muscle organ of digit of hand +http://purl.obolibrary.org/obo/UBERON_0003664,manual digit muscle,muscle organ of digit of terminal segment of free upper limb +http://purl.obolibrary.org/obo/UBERON_0003664,manual digit muscle,muscle organ of digitus manus +http://purl.obolibrary.org/obo/UBERON_0003664,manual digit muscle,muscle organ of finger +http://purl.obolibrary.org/obo/UBERON_0003664,manual digit muscle,muscle organ of hand digit +http://purl.obolibrary.org/obo/UBERON_0003664,manual digit muscle,muscle organ of terminal segment of free upper limb digit +http://purl.obolibrary.org/obo/UBERON_0003664,manual digit muscle,terminal segment of free upper limb digit muscle organ +http://purl.obolibrary.org/obo/UBERON_0003665,post-anal tail muscle,caudal muscle +http://purl.obolibrary.org/obo/UBERON_0003665,post-anal tail muscle,muscle organ of post-vent region +http://purl.obolibrary.org/obo/UBERON_0003665,post-anal tail muscle,muscle organ of tail +http://purl.obolibrary.org/obo/UBERON_0003665,post-anal tail muscle,post-vent region muscle organ +http://purl.obolibrary.org/obo/UBERON_0003665,post-anal tail muscle,tail muscle +http://purl.obolibrary.org/obo/UBERON_0003665,post-anal tail muscle,tail muscle organ +http://purl.obolibrary.org/obo/UBERON_0003666,upper jaw molar,molar tooth of upper jaw +http://purl.obolibrary.org/obo/UBERON_0003666,upper jaw molar,upper jaw molar tooth +http://purl.obolibrary.org/obo/UBERON_0003666,upper jaw molar,upper molar tooth +http://purl.obolibrary.org/obo/UBERON_0003667,lower jaw molar,lower jaw molar tooth +http://purl.obolibrary.org/obo/UBERON_0003667,lower jaw molar,lower molar tooth +http://purl.obolibrary.org/obo/UBERON_0003667,lower jaw molar,molar tooth of lower jaw +http://purl.obolibrary.org/obo/UBERON_0003668,synovial bursa, +http://purl.obolibrary.org/obo/UBERON_0003669,fascia lata, +http://purl.obolibrary.org/obo/UBERON_0003670,smegma, +http://purl.obolibrary.org/obo/UBERON_0003671,anterior cruciate ligament of knee joint,anterior cruciate ligament +http://purl.obolibrary.org/obo/UBERON_0003672,dentition,dentes +http://purl.obolibrary.org/obo/UBERON_0003672,dentition,set of teeth +http://purl.obolibrary.org/obo/UBERON_0003672,dentition,teeth +http://purl.obolibrary.org/obo/UBERON_0003672,dentition,teeth set +http://purl.obolibrary.org/obo/UBERON_0003673,ligamentum flavum, +http://purl.obolibrary.org/obo/UBERON_0003674,cuspid,canine tooth +http://purl.obolibrary.org/obo/UBERON_0003674,cuspid,cuspis dentis +http://purl.obolibrary.org/obo/UBERON_0003675,tooth crown,anatomical crown +http://purl.obolibrary.org/obo/UBERON_0003675,tooth crown,corona dentis +http://purl.obolibrary.org/obo/UBERON_0003675,tooth crown,crown of tooth +http://purl.obolibrary.org/obo/UBERON_0003675,tooth crown,tooth crown +http://purl.obolibrary.org/obo/UBERON_0003676,patellar ligament,central band of tendon of quadriceps femoris +http://purl.obolibrary.org/obo/UBERON_0003676,patellar ligament,ligamentum patella +http://purl.obolibrary.org/obo/UBERON_0003677,tooth root,radix corona +http://purl.obolibrary.org/obo/UBERON_0003677,tooth root,root of tooth +http://purl.obolibrary.org/obo/UBERON_0003677,tooth root,tooth root +http://purl.obolibrary.org/obo/UBERON_0003678,tooth apex,apex of tooth +http://purl.obolibrary.org/obo/UBERON_0003678,tooth apex,tooth apex +http://purl.obolibrary.org/obo/UBERON_0003679,mouth floor,floor of mouth +http://purl.obolibrary.org/obo/UBERON_0003679,mouth floor,floor of oval cavity +http://purl.obolibrary.org/obo/UBERON_0003679,mouth floor,floor of the oval cavity +http://purl.obolibrary.org/obo/UBERON_0003680,posterior cruciate ligament of knee joint,posterior cruciate ligament +http://purl.obolibrary.org/obo/UBERON_0003681,masticatory muscle,muscle of mastication +http://purl.obolibrary.org/obo/UBERON_0003682,palatal muscle,muscle of palate +http://purl.obolibrary.org/obo/UBERON_0003682,palatal muscle,musculi palati mollis et faucium +http://purl.obolibrary.org/obo/UBERON_0003682,palatal muscle,palatal muscle +http://purl.obolibrary.org/obo/UBERON_0003682,palatal muscle,palate muscle +http://purl.obolibrary.org/obo/UBERON_0003682,palatal muscle,palatine muscle +http://purl.obolibrary.org/obo/UBERON_0003683,rotator cuff,musculotendinous cuff +http://purl.obolibrary.org/obo/UBERON_0003683,rotator cuff,rotator cuff +http://purl.obolibrary.org/obo/UBERON_0003683,rotator cuff,tendinous cuff +http://purl.obolibrary.org/obo/UBERON_0003684,abdominal cavity,cavity of abdominal compartment +http://purl.obolibrary.org/obo/UBERON_0003684,abdominal cavity,cavity of compartment of abdomen +http://purl.obolibrary.org/obo/UBERON_0003684,abdominal cavity,space of abdominal compartment +http://purl.obolibrary.org/obo/UBERON_0003685,cranial suture,cranium suture +http://purl.obolibrary.org/obo/UBERON_0003685,cranial suture,suture joint of skull +http://purl.obolibrary.org/obo/UBERON_0003685,cranial suture,suture of cranium +http://purl.obolibrary.org/obo/UBERON_0003686,tooth socket,dental alveolus +http://purl.obolibrary.org/obo/UBERON_0003687,foramen magnum, +http://purl.obolibrary.org/obo/UBERON_0003688,omentum, +http://purl.obolibrary.org/obo/UBERON_0003689,sella turcica, +http://purl.obolibrary.org/obo/UBERON_0003690,fused sacrum,os sacrum [vertebrae sacrales I - V] +http://purl.obolibrary.org/obo/UBERON_0003690,fused sacrum,sacrum +http://purl.obolibrary.org/obo/UBERON_0003690,fused sacrum,sacrum [sacral vertebrae I - V] +http://purl.obolibrary.org/obo/UBERON_0003690,fused sacrum,sacrum [sacral vertebrae I-V] +http://purl.obolibrary.org/obo/UBERON_0003691,epidural space,cavum epidurale +http://purl.obolibrary.org/obo/UBERON_0003691,epidural space,cavum extradurale +http://purl.obolibrary.org/obo/UBERON_0003691,epidural space,extradural space +http://purl.obolibrary.org/obo/UBERON_0003691,epidural space,spatium epidurale +http://purl.obolibrary.org/obo/UBERON_0003691,epidural space,spatium extradurale +http://purl.obolibrary.org/obo/UBERON_0003692,acromioclavicular joint, +http://purl.obolibrary.org/obo/UBERON_0003693,retroperitoneal space,retroperitoneum +http://purl.obolibrary.org/obo/UBERON_0003693,retroperitoneal space,spatium retroperitoneale +http://purl.obolibrary.org/obo/UBERON_0003694,atlanto-axial joint,atlanto axial joint +http://purl.obolibrary.org/obo/UBERON_0003694,atlanto-axial joint,atlantoaxial joint +http://purl.obolibrary.org/obo/UBERON_0003695,metacarpophalangeal joint,MP joint +http://purl.obolibrary.org/obo/UBERON_0003695,metacarpophalangeal joint,knuckle +http://purl.obolibrary.org/obo/UBERON_0003695,metacarpophalangeal joint,knuckles +http://purl.obolibrary.org/obo/UBERON_0003695,metacarpophalangeal joint,metacarpo-phalangeal joint +http://purl.obolibrary.org/obo/UBERON_0003696,metatarsophalangeal joint,metatarsal-phalangeal joint +http://purl.obolibrary.org/obo/UBERON_0003697,abdominal wall,abdominal wall proper +http://purl.obolibrary.org/obo/UBERON_0003697,abdominal wall,layers of the abdominal wall +http://purl.obolibrary.org/obo/UBERON_0003697,abdominal wall,paries abdominalis +http://purl.obolibrary.org/obo/UBERON_0003697,abdominal wall,wall of abdomen +http://purl.obolibrary.org/obo/UBERON_0003697,abdominal wall,wall of abdomen proper +http://purl.obolibrary.org/obo/UBERON_0003698,subtalar joint,articulatio subtalaris +http://purl.obolibrary.org/obo/UBERON_0003698,subtalar joint,articulatio talocalcanea +http://purl.obolibrary.org/obo/UBERON_0003698,subtalar joint,subtalar joint +http://purl.obolibrary.org/obo/UBERON_0003699,pubic symphysis,symphysis pubis +http://purl.obolibrary.org/obo/UBERON_0003700,temporomandibular joint,TMJ +http://purl.obolibrary.org/obo/UBERON_0003700,temporomandibular joint,temperomandibular joint +http://purl.obolibrary.org/obo/UBERON_0003701,calcaneal tendon,Achille's tendon +http://purl.obolibrary.org/obo/UBERON_0003701,calcaneal tendon,Achilles tendon +http://purl.obolibrary.org/obo/UBERON_0003701,calcaneal tendon,Achilles' tendon +http://purl.obolibrary.org/obo/UBERON_0003701,calcaneal tendon,calcaneal tendon +http://purl.obolibrary.org/obo/UBERON_0003701,calcaneal tendon,tendo Achillis +http://purl.obolibrary.org/obo/UBERON_0003701,calcaneal tendon,tendo calcaneus +http://purl.obolibrary.org/obo/UBERON_0003702,inguinal canal, +http://purl.obolibrary.org/obo/UBERON_0003703,extrahepatic bile duct, +http://purl.obolibrary.org/obo/UBERON_0003704,intrahepatic bile duct,bile duct intrahepatic part +http://purl.obolibrary.org/obo/UBERON_0003705,Meckel's diverticulum,Meckel's diverticulum +http://purl.obolibrary.org/obo/UBERON_0003705,Meckel's diverticulum,diverticulum of Meckel +http://purl.obolibrary.org/obo/UBERON_0003705,Meckel's diverticulum,ileal diverticulum +http://purl.obolibrary.org/obo/UBERON_0003706,laryngeal vocal fold,true vocal cord +http://purl.obolibrary.org/obo/UBERON_0003706,laryngeal vocal fold,vocal cord +http://purl.obolibrary.org/obo/UBERON_0003707,sinus of Valsalva,Petit sinus +http://purl.obolibrary.org/obo/UBERON_0003707,sinus of Valsalva,Petit's sinus +http://purl.obolibrary.org/obo/UBERON_0003707,sinus of Valsalva,Valsalva sinus +http://purl.obolibrary.org/obo/UBERON_0003707,sinus of Valsalva,aortic sinus +http://purl.obolibrary.org/obo/UBERON_0003708,carotid sinus,carotid bulb +http://purl.obolibrary.org/obo/UBERON_0003708,carotid sinus,sinus caroticus +http://purl.obolibrary.org/obo/UBERON_0003709,circle of Willis,arterial circle of Willis +http://purl.obolibrary.org/obo/UBERON_0003709,circle of Willis,cerebral arterial circle +http://purl.obolibrary.org/obo/UBERON_0003710,vasa vasorum,vas vasorum +http://purl.obolibrary.org/obo/UBERON_0003711,brachiocephalic vein,brachiocephalic venous tree +http://purl.obolibrary.org/obo/UBERON_0003711,brachiocephalic vein,innomiate vein +http://purl.obolibrary.org/obo/UBERON_0003711,brachiocephalic vein,innominate trunk +http://purl.obolibrary.org/obo/UBERON_0003711,brachiocephalic vein,innominate vein +http://purl.obolibrary.org/obo/UBERON_0003711,brachiocephalic vein,innominate veins +http://purl.obolibrary.org/obo/UBERON_0003711,brachiocephalic vein,vena brachiocephalica +http://purl.obolibrary.org/obo/UBERON_0003711,brachiocephalic vein,venae anonyma +http://purl.obolibrary.org/obo/UBERON_0003712,cavernous sinus,cavernous +http://purl.obolibrary.org/obo/UBERON_0003712,cavernous sinus,cavernous sinus syndrome +http://purl.obolibrary.org/obo/UBERON_0003712,cavernous sinus,cavernous sinuses +http://purl.obolibrary.org/obo/UBERON_0003712,cavernous sinus,cavernus sinus vein +http://purl.obolibrary.org/obo/UBERON_0003712,cavernous sinus,parasellar syndrome +http://purl.obolibrary.org/obo/UBERON_0003712,cavernous sinus,sinus cavernosus +http://purl.obolibrary.org/obo/UBERON_0003713,splenic vein,vena splenica +http://purl.obolibrary.org/obo/UBERON_0003714,neural tissue,nerve tissue +http://purl.obolibrary.org/obo/UBERON_0003714,neural tissue,nervous tissue +http://purl.obolibrary.org/obo/UBERON_0003714,neural tissue,portion of neural tissue +http://purl.obolibrary.org/obo/UBERON_0003715,splanchnic nerve,splanchnic nerves +http://purl.obolibrary.org/obo/UBERON_0003715,splanchnic nerve,visceral nerve +http://purl.obolibrary.org/obo/UBERON_0003716,recurrent laryngeal nerve,inferior laryngeal nerve +http://purl.obolibrary.org/obo/UBERON_0003716,recurrent laryngeal nerve,nervus laryngeus recurrens +http://purl.obolibrary.org/obo/UBERON_0003716,recurrent laryngeal nerve,ramus recurrens +http://purl.obolibrary.org/obo/UBERON_0003716,recurrent laryngeal nerve,recurrent laryngeal nerve from vagus nerve +http://purl.obolibrary.org/obo/UBERON_0003716,recurrent laryngeal nerve,recurrent nerve +http://purl.obolibrary.org/obo/UBERON_0003716,recurrent laryngeal nerve,vagus X nerve recurrent laryngeal branch +http://purl.obolibrary.org/obo/UBERON_0003718,muscle spindle,neuromuscular spindle +http://purl.obolibrary.org/obo/UBERON_0003719,Pacinian corpuscle,Pacinian corpuscle +http://purl.obolibrary.org/obo/UBERON_0003719,Pacinian corpuscle,corpuscle of golgi-mazzoni +http://purl.obolibrary.org/obo/UBERON_0003719,Pacinian corpuscle,corpusculum lamellosum +http://purl.obolibrary.org/obo/UBERON_0003719,Pacinian corpuscle,golgi-mazzoni corpuscle +http://purl.obolibrary.org/obo/UBERON_0003719,Pacinian corpuscle,lamellar corpuscle +http://purl.obolibrary.org/obo/UBERON_0003720,anterior cranial fossa, +http://purl.obolibrary.org/obo/UBERON_0003721,lingual nerve,lingual branch of trigeminal nerve +http://purl.obolibrary.org/obo/UBERON_0003721,lingual nerve,trigeminal V nerve lingual branch +http://purl.obolibrary.org/obo/UBERON_0003721,lingual nerve,trigeminal nerve lingual branch +http://purl.obolibrary.org/obo/UBERON_0003722,middle cranial fossa, +http://purl.obolibrary.org/obo/UBERON_0003723,vestibular nerve,vestibular root of acoustic nerve +http://purl.obolibrary.org/obo/UBERON_0003723,vestibular nerve,vestibular root of eighth cranial nerve +http://purl.obolibrary.org/obo/UBERON_0003723,vestibular nerve,vestibulocochlear VIII nerve vestibular component +http://purl.obolibrary.org/obo/UBERON_0003724,musculocutaneous nerve,casserio's nerve +http://purl.obolibrary.org/obo/UBERON_0003725,cervical nerve plexus,cervical nerve plexus +http://purl.obolibrary.org/obo/UBERON_0003725,cervical nerve plexus,cervical plexus +http://purl.obolibrary.org/obo/UBERON_0003725,cervical nerve plexus,plexus cervicalis +http://purl.obolibrary.org/obo/UBERON_0003726,thoracic nerve,nervus thoracis +http://purl.obolibrary.org/obo/UBERON_0003726,thoracic nerve,thoracic spinal nerve +http://purl.obolibrary.org/obo/UBERON_0003727,intercostal nerve,anterior ramus of thoracic nerve +http://purl.obolibrary.org/obo/UBERON_0003727,intercostal nerve,anterior ramus of thoracic spinal nerve +http://purl.obolibrary.org/obo/UBERON_0003727,intercostal nerve,"ramus anterior, nervus thoracicus" +http://purl.obolibrary.org/obo/UBERON_0003727,intercostal nerve,thoracic anterior ramus +http://purl.obolibrary.org/obo/UBERON_0003727,intercostal nerve,ventral ramus of thoracic spinal nerve +http://purl.obolibrary.org/obo/UBERON_0003728,mediastinum,mediastinal part of chest +http://purl.obolibrary.org/obo/UBERON_0003729,mouth mucosa,buccal mucosa +http://purl.obolibrary.org/obo/UBERON_0003729,mouth mucosa,mouth mucosa +http://purl.obolibrary.org/obo/UBERON_0003729,mouth mucosa,mouth mucous membrane +http://purl.obolibrary.org/obo/UBERON_0003729,mouth mucosa,mouth organ mucosa +http://purl.obolibrary.org/obo/UBERON_0003729,mouth mucosa,mucosa of mouth +http://purl.obolibrary.org/obo/UBERON_0003729,mouth mucosa,mucosal lining of mouth +http://purl.obolibrary.org/obo/UBERON_0003729,mouth mucosa,mucous membrane of mouth +http://purl.obolibrary.org/obo/UBERON_0003729,mouth mucosa,oral mucosa +http://purl.obolibrary.org/obo/UBERON_0003729,mouth mucosa,oral mucous membrane +http://purl.obolibrary.org/obo/UBERON_0003729,mouth mucosa,oral part of viscerocranial mucosa +http://purl.obolibrary.org/obo/UBERON_0003729,mouth mucosa,tunica mucosa oris +http://purl.obolibrary.org/obo/UBERON_0003820,prostate bud,prostate ductal progenitor +http://purl.obolibrary.org/obo/UBERON_0003820,prostate bud,prostatic bud +http://purl.obolibrary.org/obo/UBERON_0003821,metapodium bone,metacarpal or metatarsal bone +http://purl.obolibrary.org/obo/UBERON_0003821,metapodium bone,metacarpal/metatarsal +http://purl.obolibrary.org/obo/UBERON_0003821,metapodium bone,metacarpal/metatarsal bone +http://purl.obolibrary.org/obo/UBERON_0003821,metapodium bone,metapodi bone +http://purl.obolibrary.org/obo/UBERON_0003821,metapodium bone,metapodial bone +http://purl.obolibrary.org/obo/UBERON_0003821,metapodium bone,metapodium bone +http://purl.obolibrary.org/obo/UBERON_0003822,forelimb stylopod,brachial region +http://purl.obolibrary.org/obo/UBERON_0003822,forelimb stylopod,brachium +http://purl.obolibrary.org/obo/UBERON_0003822,forelimb stylopod,fore propodium +http://purl.obolibrary.org/obo/UBERON_0003822,forelimb stylopod,forelimb propodium +http://purl.obolibrary.org/obo/UBERON_0003822,forelimb stylopod,forelimb stylopodial element +http://purl.obolibrary.org/obo/UBERON_0003822,forelimb stylopod,forelimb stylopodium +http://purl.obolibrary.org/obo/UBERON_0003822,forelimb stylopod,proximal segment of free upper limb +http://purl.obolibrary.org/obo/UBERON_0003822,forelimb stylopod,regio brachialis +http://purl.obolibrary.org/obo/UBERON_0003822,forelimb stylopod,stylopod of arm +http://purl.obolibrary.org/obo/UBERON_0003822,forelimb stylopod,stylopod of forelimb +http://purl.obolibrary.org/obo/UBERON_0003822,forelimb stylopod,upper arm +http://purl.obolibrary.org/obo/UBERON_0003823,hindlimb zeugopod,crus +http://purl.obolibrary.org/obo/UBERON_0003823,hindlimb zeugopod,crus of hindlimb +http://purl.obolibrary.org/obo/UBERON_0003823,hindlimb zeugopod,hind limb middle limb segment +http://purl.obolibrary.org/obo/UBERON_0003823,hindlimb zeugopod,hind limb zeudopodium +http://purl.obolibrary.org/obo/UBERON_0003823,hindlimb zeugopod,hind limb zeugopod +http://purl.obolibrary.org/obo/UBERON_0003823,hindlimb zeugopod,hindlimb epipodium +http://purl.obolibrary.org/obo/UBERON_0003823,hindlimb zeugopod,hindlimb middle limb segment +http://purl.obolibrary.org/obo/UBERON_0003823,hindlimb zeugopod,hindlimb zeudopodium +http://purl.obolibrary.org/obo/UBERON_0003823,hindlimb zeugopod,hindlimb zeugopod +http://purl.obolibrary.org/obo/UBERON_0003823,hindlimb zeugopod,hindlimb zeugopodium +http://purl.obolibrary.org/obo/UBERON_0003823,hindlimb zeugopod,intermediate segment of free lower limb +http://purl.obolibrary.org/obo/UBERON_0003823,hindlimb zeugopod,lower extremity middle limb segment +http://purl.obolibrary.org/obo/UBERON_0003823,hindlimb zeugopod,lower extremity zeugopod +http://purl.obolibrary.org/obo/UBERON_0003823,hindlimb zeugopod,lower leg +http://purl.obolibrary.org/obo/UBERON_0003823,hindlimb zeugopod,middle limb segment of hind limb +http://purl.obolibrary.org/obo/UBERON_0003823,hindlimb zeugopod,middle limb segment of hindlimb +http://purl.obolibrary.org/obo/UBERON_0003823,hindlimb zeugopod,shank +http://purl.obolibrary.org/obo/UBERON_0003823,hindlimb zeugopod,zeugopod of hind limb +http://purl.obolibrary.org/obo/UBERON_0003823,hindlimb zeugopod,zeugopod of hindlimb +http://purl.obolibrary.org/obo/UBERON_0003824,nerve of thoracic segment,nerve of thorax +http://purl.obolibrary.org/obo/UBERON_0003824,nerve of thoracic segment,thoracic segment nerve +http://purl.obolibrary.org/obo/UBERON_0003824,nerve of thoracic segment,thorax nerve +http://purl.obolibrary.org/obo/UBERON_0003824,nerve of thoracic segment,upper body nerve +http://purl.obolibrary.org/obo/UBERON_0003825,nerve of abdominal segment,abdominal segment nerve +http://purl.obolibrary.org/obo/UBERON_0003826,upper leg bone, +http://purl.obolibrary.org/obo/UBERON_0003827,thoracic segment bone,bone of thorax +http://purl.obolibrary.org/obo/UBERON_0003827,thoracic segment bone,bone organ of thorax +http://purl.obolibrary.org/obo/UBERON_0003827,thoracic segment bone,thorax bone +http://purl.obolibrary.org/obo/UBERON_0003827,thoracic segment bone,thorax bone organ +http://purl.obolibrary.org/obo/UBERON_0003828,abdominal segment bone,abdominal segment of trunk bone +http://purl.obolibrary.org/obo/UBERON_0003828,abdominal segment bone,abdominal segment of trunk bone organ +http://purl.obolibrary.org/obo/UBERON_0003828,abdominal segment bone,bone of abdominal segment of trunk +http://purl.obolibrary.org/obo/UBERON_0003828,abdominal segment bone,bone organ of abdominal segment of trunk +http://purl.obolibrary.org/obo/UBERON_0003829,urethra muscle tissue,urethral muscle layer +http://purl.obolibrary.org/obo/UBERON_0003830,thoracic segment muscle,muscle organ of thorax +http://purl.obolibrary.org/obo/UBERON_0003830,thoracic segment muscle,thorax muscle organ +http://purl.obolibrary.org/obo/UBERON_0003830,thoracic segment muscle,upper body muscle +http://purl.obolibrary.org/obo/UBERON_0003831,respiratory system muscle,apparatus respiratorius muscle organ +http://purl.obolibrary.org/obo/UBERON_0003831,respiratory system muscle,muscle organ of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0003831,respiratory system muscle,muscle organ of respiratory system +http://purl.obolibrary.org/obo/UBERON_0003831,respiratory system muscle,respiratory system muscle organ +http://purl.obolibrary.org/obo/UBERON_0003832,esophagus muscle,esophageal muscle +http://purl.obolibrary.org/obo/UBERON_0003832,esophagus muscle,esophagus muscle organ +http://purl.obolibrary.org/obo/UBERON_0003832,esophagus muscle,gullet muscle organ +http://purl.obolibrary.org/obo/UBERON_0003832,esophagus muscle,muscle organ of esophagus +http://purl.obolibrary.org/obo/UBERON_0003832,esophagus muscle,muscle organ of gullet +http://purl.obolibrary.org/obo/UBERON_0003832,esophagus muscle,muscle organ of oesophagus +http://purl.obolibrary.org/obo/UBERON_0003832,esophagus muscle,oesophagus muscle organ +http://purl.obolibrary.org/obo/UBERON_0003833,abdominal segment muscle,abdominal segment of trunk muscle organ +http://purl.obolibrary.org/obo/UBERON_0003833,abdominal segment muscle,muscle organ of abdominal segment of trunk +http://purl.obolibrary.org/obo/UBERON_0003834,thoracic segment blood vessel,blood vessel of thorax +http://purl.obolibrary.org/obo/UBERON_0003834,thoracic segment blood vessel,thorax blood vessel +http://purl.obolibrary.org/obo/UBERON_0003835,abdominal segment blood vessel,abdominal segment of trunk blood vessel +http://purl.obolibrary.org/obo/UBERON_0003835,abdominal segment blood vessel,blood vessel of abdominal segment of trunk +http://purl.obolibrary.org/obo/UBERON_0003836,abdominal segment skin,abdominal segment of trunk skin +http://purl.obolibrary.org/obo/UBERON_0003836,abdominal segment skin,skin of abdominal segment of trunk +http://purl.obolibrary.org/obo/UBERON_0003837,thoracic segment connective tissue,connective tissue of thorax +http://purl.obolibrary.org/obo/UBERON_0003837,thoracic segment connective tissue,portion of connective tissue of thorax +http://purl.obolibrary.org/obo/UBERON_0003837,thoracic segment connective tissue,textus connectivus of thorax +http://purl.obolibrary.org/obo/UBERON_0003837,thoracic segment connective tissue,thorax connective tissue +http://purl.obolibrary.org/obo/UBERON_0003837,thoracic segment connective tissue,thorax portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0003837,thoracic segment connective tissue,thorax textus connectivus +http://purl.obolibrary.org/obo/UBERON_0003838,abdominal segment connective tissue,abdominal segment of trunk connective tissue +http://purl.obolibrary.org/obo/UBERON_0003838,abdominal segment connective tissue,abdominal segment of trunk portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0003838,abdominal segment connective tissue,abdominal segment of trunk textus connectivus +http://purl.obolibrary.org/obo/UBERON_0003838,abdominal segment connective tissue,connective tissue of abdominal segment of trunk +http://purl.obolibrary.org/obo/UBERON_0003838,abdominal segment connective tissue,portion of connective tissue of abdominal segment of trunk +http://purl.obolibrary.org/obo/UBERON_0003838,abdominal segment connective tissue,textus connectivus of abdominal segment of trunk +http://purl.obolibrary.org/obo/UBERON_0003839,forelimb joint,anteriormost limb joint of limb +http://purl.obolibrary.org/obo/UBERON_0003839,forelimb joint,anteriormost limb limb joint +http://purl.obolibrary.org/obo/UBERON_0003839,forelimb joint,fore limb joint of limb +http://purl.obolibrary.org/obo/UBERON_0003839,forelimb joint,fore limb limb joint +http://purl.obolibrary.org/obo/UBERON_0003839,forelimb joint,forelimb joint of limb +http://purl.obolibrary.org/obo/UBERON_0003839,forelimb joint,forelimb limb joint +http://purl.obolibrary.org/obo/UBERON_0003839,forelimb joint,joint of free upper limb +http://purl.obolibrary.org/obo/UBERON_0003839,forelimb joint,joint of limb of anteriormost limb +http://purl.obolibrary.org/obo/UBERON_0003839,forelimb joint,joint of limb of fore limb +http://purl.obolibrary.org/obo/UBERON_0003839,forelimb joint,joint of limb of forelimb +http://purl.obolibrary.org/obo/UBERON_0003839,forelimb joint,joint of limb of superior member +http://purl.obolibrary.org/obo/UBERON_0003839,forelimb joint,joint of limb of upper extremity +http://purl.obolibrary.org/obo/UBERON_0003839,forelimb joint,limb joint of anteriormost limb +http://purl.obolibrary.org/obo/UBERON_0003839,forelimb joint,limb joint of fore limb +http://purl.obolibrary.org/obo/UBERON_0003839,forelimb joint,limb joint of forelimb +http://purl.obolibrary.org/obo/UBERON_0003839,forelimb joint,limb joint of superior member +http://purl.obolibrary.org/obo/UBERON_0003839,forelimb joint,limb joint of upper extremity +http://purl.obolibrary.org/obo/UBERON_0003839,forelimb joint,superior member joint of limb +http://purl.obolibrary.org/obo/UBERON_0003839,forelimb joint,superior member limb joint +http://purl.obolibrary.org/obo/UBERON_0003839,forelimb joint,upper extremity joint of limb +http://purl.obolibrary.org/obo/UBERON_0003839,forelimb joint,upper extremity limb joint +http://purl.obolibrary.org/obo/UBERON_0003840,hindlimb joint,hind limb joint of limb +http://purl.obolibrary.org/obo/UBERON_0003840,hindlimb joint,hind limb limb joint +http://purl.obolibrary.org/obo/UBERON_0003840,hindlimb joint,hindlimb joint of limb +http://purl.obolibrary.org/obo/UBERON_0003840,hindlimb joint,hindlimb limb joint +http://purl.obolibrary.org/obo/UBERON_0003840,hindlimb joint,inferior member joint of limb +http://purl.obolibrary.org/obo/UBERON_0003840,hindlimb joint,inferior member limb joint +http://purl.obolibrary.org/obo/UBERON_0003840,hindlimb joint,joint of free lower limb +http://purl.obolibrary.org/obo/UBERON_0003840,hindlimb joint,joint of limb of hind limb +http://purl.obolibrary.org/obo/UBERON_0003840,hindlimb joint,joint of limb of hindlimb +http://purl.obolibrary.org/obo/UBERON_0003840,hindlimb joint,joint of limb of inferior member +http://purl.obolibrary.org/obo/UBERON_0003840,hindlimb joint,joint of limb of lower extremity +http://purl.obolibrary.org/obo/UBERON_0003840,hindlimb joint,joint of lower limb +http://purl.obolibrary.org/obo/UBERON_0003840,hindlimb joint,limb joint of hind limb +http://purl.obolibrary.org/obo/UBERON_0003840,hindlimb joint,limb joint of hindlimb +http://purl.obolibrary.org/obo/UBERON_0003840,hindlimb joint,limb joint of inferior member +http://purl.obolibrary.org/obo/UBERON_0003840,hindlimb joint,limb joint of lower extremity +http://purl.obolibrary.org/obo/UBERON_0003840,hindlimb joint,lower extremity joint of limb +http://purl.obolibrary.org/obo/UBERON_0003840,hindlimb joint,lower extremity limb joint +http://purl.obolibrary.org/obo/UBERON_0003841,autopod joint,autopod joint of limb +http://purl.obolibrary.org/obo/UBERON_0003841,autopod joint,autopod limb joint +http://purl.obolibrary.org/obo/UBERON_0003841,autopod joint,distal free limb segment joint of limb +http://purl.obolibrary.org/obo/UBERON_0003841,autopod joint,distal free limb segment limb joint +http://purl.obolibrary.org/obo/UBERON_0003841,autopod joint,joint of limb of autopod +http://purl.obolibrary.org/obo/UBERON_0003841,autopod joint,joint of limb of distal free limb segment +http://purl.obolibrary.org/obo/UBERON_0003841,autopod joint,limb joint of autopod +http://purl.obolibrary.org/obo/UBERON_0003841,autopod joint,limb joint of distal free limb segment +http://purl.obolibrary.org/obo/UBERON_0003842,neural tube lumen,cavity of neural tube +http://purl.obolibrary.org/obo/UBERON_0003842,neural tube lumen,lumen of neural tube +http://purl.obolibrary.org/obo/UBERON_0003842,neural tube lumen,neural tube neural lumen +http://purl.obolibrary.org/obo/UBERON_0003843,dental epithelium,dental epithelia +http://purl.obolibrary.org/obo/UBERON_0003843,dental epithelium,dental epithelium +http://purl.obolibrary.org/obo/UBERON_0003843,dental epithelium,odontogenic epithelium +http://purl.obolibrary.org/obo/UBERON_0003843,dental epithelium,tooth epithelium +http://purl.obolibrary.org/obo/UBERON_0003844,upper eyelid epithelium,epithelial tissue of superior eyelid +http://purl.obolibrary.org/obo/UBERON_0003844,upper eyelid epithelium,epithelial tissue of upper eyelid +http://purl.obolibrary.org/obo/UBERON_0003844,upper eyelid epithelium,epithelium of superior eyelid +http://purl.obolibrary.org/obo/UBERON_0003844,upper eyelid epithelium,epithelium of upper eyelid +http://purl.obolibrary.org/obo/UBERON_0003844,upper eyelid epithelium,superior eyelid epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003844,upper eyelid epithelium,superior eyelid epithelium +http://purl.obolibrary.org/obo/UBERON_0003844,upper eyelid epithelium,upper eyelid epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003845,lower eyelid epithelium,epithelial tissue of inferior eyelid +http://purl.obolibrary.org/obo/UBERON_0003845,lower eyelid epithelium,epithelial tissue of lower eyelid +http://purl.obolibrary.org/obo/UBERON_0003845,lower eyelid epithelium,epithelium of inferior eyelid +http://purl.obolibrary.org/obo/UBERON_0003845,lower eyelid epithelium,epithelium of lower eyelid +http://purl.obolibrary.org/obo/UBERON_0003845,lower eyelid epithelium,inferior eyelid epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003845,lower eyelid epithelium,inferior eyelid epithelium +http://purl.obolibrary.org/obo/UBERON_0003845,lower eyelid epithelium,lower eyelid epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003846,thymus epithelium,epithelial tissue of thymus +http://purl.obolibrary.org/obo/UBERON_0003846,thymus epithelium,epithelial tissue of thymus gland +http://purl.obolibrary.org/obo/UBERON_0003846,thymus epithelium,epithelium of thymus +http://purl.obolibrary.org/obo/UBERON_0003846,thymus epithelium,epithelium of thymus gland +http://purl.obolibrary.org/obo/UBERON_0003846,thymus epithelium,thymic epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003846,thymus epithelium,thymic epithelium +http://purl.obolibrary.org/obo/UBERON_0003846,thymus epithelium,thymus epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003846,thymus epithelium,thymus gland epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003846,thymus epithelium,thymus gland epithelium +http://purl.obolibrary.org/obo/UBERON_0003847,thyroid artery, +http://purl.obolibrary.org/obo/UBERON_0003848,gonadal vein,gonad vein +http://purl.obolibrary.org/obo/UBERON_0003848,gonadal vein,gonada vein +http://purl.obolibrary.org/obo/UBERON_0003848,gonadal vein,vein of gonad +http://purl.obolibrary.org/obo/UBERON_0003848,gonadal vein,vein of gonada +http://purl.obolibrary.org/obo/UBERON_0003849,mesencephalic neural crest,mesencephalic neural crest +http://purl.obolibrary.org/obo/UBERON_0003849,mesencephalic neural crest,neural crest midbrain +http://purl.obolibrary.org/obo/UBERON_0003850,telencephalon neural crest,neural crest telencephalon +http://purl.obolibrary.org/obo/UBERON_0003851,diencephalon neural crest,diencephalic neural crest +http://purl.obolibrary.org/obo/UBERON_0003851,diencephalon neural crest,future diencephalon neural crest +http://purl.obolibrary.org/obo/UBERON_0003851,diencephalon neural crest,neural crest diencephalon +http://purl.obolibrary.org/obo/UBERON_0003851,diencephalon neural crest,neural crest of future diencephalon +http://purl.obolibrary.org/obo/UBERON_0003852,rhombencephalon neural crest,neural crest hindbrain +http://purl.obolibrary.org/obo/UBERON_0003852,rhombencephalon neural crest,rhombencephalic neural crest +http://purl.obolibrary.org/obo/UBERON_0003853,spinal cord neural crest,neural crest spinal cord +http://purl.obolibrary.org/obo/UBERON_0003854,spinal cord neural plate,neural plate of spinal cord +http://purl.obolibrary.org/obo/UBERON_0003855,gonad mesenchyme,gonada mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003855,gonad mesenchyme,mesenchyme of gonad +http://purl.obolibrary.org/obo/UBERON_0003855,gonad mesenchyme,mesenchyme of gonada +http://purl.obolibrary.org/obo/UBERON_0003856,uncondensed odontogenic mesenchyme,dental mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003856,uncondensed odontogenic mesenchyme,dental organ mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003856,uncondensed odontogenic mesenchyme,enamel organ mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003856,uncondensed odontogenic mesenchyme,tooth enamel organ mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003856,uncondensed odontogenic mesenchyme,tooth mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003857,upper eyelid mesenchyme,mesenchyme of superior eyelid +http://purl.obolibrary.org/obo/UBERON_0003857,upper eyelid mesenchyme,mesenchyme of upper eyelid +http://purl.obolibrary.org/obo/UBERON_0003857,upper eyelid mesenchyme,superior eyelid mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003858,lower eyelid mesenchyme,inferior eyelid mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003858,lower eyelid mesenchyme,mesenchyme of inferior eyelid +http://purl.obolibrary.org/obo/UBERON_0003858,lower eyelid mesenchyme,mesenchyme of lower eyelid +http://purl.obolibrary.org/obo/UBERON_0003859,forelimb mesenchyme,anteriormost limb mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003859,forelimb mesenchyme,fore limb mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003859,forelimb mesenchyme,mesenchyme of anteriormost limb +http://purl.obolibrary.org/obo/UBERON_0003859,forelimb mesenchyme,mesenchyme of fore limb +http://purl.obolibrary.org/obo/UBERON_0003859,forelimb mesenchyme,mesenchyme of forelimb +http://purl.obolibrary.org/obo/UBERON_0003859,forelimb mesenchyme,mesenchyme of superior member +http://purl.obolibrary.org/obo/UBERON_0003859,forelimb mesenchyme,mesenchyme of upper extremity +http://purl.obolibrary.org/obo/UBERON_0003859,forelimb mesenchyme,superior member mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003859,forelimb mesenchyme,upper extremity mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003860,hindlimb mesenchyme,hind limb mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003860,hindlimb mesenchyme,inferior member mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003860,hindlimb mesenchyme,lower extremity mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003860,hindlimb mesenchyme,mesenchyme of hind limb +http://purl.obolibrary.org/obo/UBERON_0003860,hindlimb mesenchyme,mesenchyme of hindlimb +http://purl.obolibrary.org/obo/UBERON_0003860,hindlimb mesenchyme,mesenchyme of inferior member +http://purl.obolibrary.org/obo/UBERON_0003860,hindlimb mesenchyme,mesenchyme of lower extremity +http://purl.obolibrary.org/obo/UBERON_0003861,neural arch,arcus vertebra +http://purl.obolibrary.org/obo/UBERON_0003861,neural arch,arcus vertebrae +http://purl.obolibrary.org/obo/UBERON_0003861,neural arch,arcus vertebrae (vertebralis) +http://purl.obolibrary.org/obo/UBERON_0003861,neural arch,dorsal arcocentrum +http://purl.obolibrary.org/obo/UBERON_0003862,pedal digit 4 phalanx,digit long bone of foot digit 4 +http://purl.obolibrary.org/obo/UBERON_0003862,pedal digit 4 phalanx,foot digit 4 digit long bone +http://purl.obolibrary.org/obo/UBERON_0003862,pedal digit 4 phalanx,foot digit 4 long bone of digit +http://purl.obolibrary.org/obo/UBERON_0003862,pedal digit 4 phalanx,foot digit 4 phalanx +http://purl.obolibrary.org/obo/UBERON_0003862,pedal digit 4 phalanx,fourth toe phalanx +http://purl.obolibrary.org/obo/UBERON_0003862,pedal digit 4 phalanx,hind limb digit 4 phalanx +http://purl.obolibrary.org/obo/UBERON_0003862,pedal digit 4 phalanx,long bone of digit of foot digit 4 +http://purl.obolibrary.org/obo/UBERON_0003862,pedal digit 4 phalanx,pedal digit IV phalanx +http://purl.obolibrary.org/obo/UBERON_0003862,pedal digit 4 phalanx,phalanx of foot digit 4 +http://purl.obolibrary.org/obo/UBERON_0003862,pedal digit 4 phalanx,phalanx of fourth toe +http://purl.obolibrary.org/obo/UBERON_0003863,pedal digit 5 phalanx,digit long bone of foot digit 5 +http://purl.obolibrary.org/obo/UBERON_0003863,pedal digit 5 phalanx,foot digit 5 digit long bone +http://purl.obolibrary.org/obo/UBERON_0003863,pedal digit 5 phalanx,foot digit 5 long bone of digit +http://purl.obolibrary.org/obo/UBERON_0003863,pedal digit 5 phalanx,foot digit 5 phalanx +http://purl.obolibrary.org/obo/UBERON_0003863,pedal digit 5 phalanx,hind limb digit 5 phalanx +http://purl.obolibrary.org/obo/UBERON_0003863,pedal digit 5 phalanx,little toe phalanx +http://purl.obolibrary.org/obo/UBERON_0003863,pedal digit 5 phalanx,long bone of digit of foot digit 5 +http://purl.obolibrary.org/obo/UBERON_0003863,pedal digit 5 phalanx,pedal digit V phalanx +http://purl.obolibrary.org/obo/UBERON_0003863,pedal digit 5 phalanx,phalanx of fifth digit of foot +http://purl.obolibrary.org/obo/UBERON_0003863,pedal digit 5 phalanx,phalanx of fifth toe +http://purl.obolibrary.org/obo/UBERON_0003863,pedal digit 5 phalanx,phalanx of foot digit 5 +http://purl.obolibrary.org/obo/UBERON_0003863,pedal digit 5 phalanx,phalanx of little toe +http://purl.obolibrary.org/obo/UBERON_0003864,middle phalanx of manus,hand middle phalanx +http://purl.obolibrary.org/obo/UBERON_0003864,middle phalanx of manus,middle manual phalanx +http://purl.obolibrary.org/obo/UBERON_0003864,middle phalanx of manus,middle phalanx of finger +http://purl.obolibrary.org/obo/UBERON_0003864,middle phalanx of manus,middle phalanx of hand +http://purl.obolibrary.org/obo/UBERON_0003864,middle phalanx of manus,middle phalanx of manual digit +http://purl.obolibrary.org/obo/UBERON_0003864,middle phalanx of manus,phalanx media manus +http://purl.obolibrary.org/obo/UBERON_0003865,distal phalanx of manus,distal manual phalanx +http://purl.obolibrary.org/obo/UBERON_0003865,distal phalanx of manus,distal phalanx of finger +http://purl.obolibrary.org/obo/UBERON_0003865,distal phalanx of manus,distal phalanx of hand +http://purl.obolibrary.org/obo/UBERON_0003865,distal phalanx of manus,distal phalanx of manual digit +http://purl.obolibrary.org/obo/UBERON_0003865,distal phalanx of manus,hand distal phalanx +http://purl.obolibrary.org/obo/UBERON_0003865,distal phalanx of manus,phalanx distalis manus +http://purl.obolibrary.org/obo/UBERON_0003865,distal phalanx of manus,terminal phalanx of hand +http://purl.obolibrary.org/obo/UBERON_0003865,distal phalanx of manus,ungual phalanx of hand +http://purl.obolibrary.org/obo/UBERON_0003866,middle phalanx of pes,foot middle phalanx +http://purl.obolibrary.org/obo/UBERON_0003866,middle phalanx of pes,middle pedal phalanx +http://purl.obolibrary.org/obo/UBERON_0003866,middle phalanx of pes,middle phalanx of foot +http://purl.obolibrary.org/obo/UBERON_0003866,middle phalanx of pes,middle phalanx of toe +http://purl.obolibrary.org/obo/UBERON_0003866,middle phalanx of pes,phalanx media pedis +http://purl.obolibrary.org/obo/UBERON_0003867,distal phalanx of pes,distal pedal phalanx +http://purl.obolibrary.org/obo/UBERON_0003867,distal phalanx of pes,distal phalanx of foot +http://purl.obolibrary.org/obo/UBERON_0003867,distal phalanx of pes,distal phalanx of toe +http://purl.obolibrary.org/obo/UBERON_0003867,distal phalanx of pes,foot distal phalanx +http://purl.obolibrary.org/obo/UBERON_0003867,distal phalanx of pes,phalanx distalis pedis +http://purl.obolibrary.org/obo/UBERON_0003867,distal phalanx of pes,terminal phalanx of foot +http://purl.obolibrary.org/obo/UBERON_0003867,distal phalanx of pes,terminal phalanx of hindlimb +http://purl.obolibrary.org/obo/UBERON_0003867,distal phalanx of pes,ungual phalanx of foot +http://purl.obolibrary.org/obo/UBERON_0003867,distal phalanx of pes,ungual phalanx of hindlimb +http://purl.obolibrary.org/obo/UBERON_0003868,proximal phalanx of pes,foot proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0003868,proximal phalanx of pes,phalanx proximalis pedis +http://purl.obolibrary.org/obo/UBERON_0003868,proximal phalanx of pes,proximal pedal phalanx +http://purl.obolibrary.org/obo/UBERON_0003868,proximal phalanx of pes,proximal phalanx of foot +http://purl.obolibrary.org/obo/UBERON_0003868,proximal phalanx of pes,proximal phalanx of foot digit +http://purl.obolibrary.org/obo/UBERON_0003868,proximal phalanx of pes,proximal phalanx of hind digit +http://purl.obolibrary.org/obo/UBERON_0003868,proximal phalanx of pes,proximal phalanx of pes +http://purl.obolibrary.org/obo/UBERON_0003868,proximal phalanx of pes,proximal phalanx of toe +http://purl.obolibrary.org/obo/UBERON_0003869,presumptive ganglion, +http://purl.obolibrary.org/obo/UBERON_0003876,hippocampal field,hippocampal region +http://purl.obolibrary.org/obo/UBERON_0003876,hippocampal field,hippocampus region +http://purl.obolibrary.org/obo/UBERON_0003876,hippocampal field,hippocampus subdivision +http://purl.obolibrary.org/obo/UBERON_0003876,hippocampal field,subdivision of hippocampus +http://purl.obolibrary.org/obo/UBERON_0003881,CA1 field of hippocampus,CA1 +http://purl.obolibrary.org/obo/UBERON_0003881,CA1 field of hippocampus,CA1 field +http://purl.obolibrary.org/obo/UBERON_0003881,CA1 field of hippocampus,CA1 field of Ammon's horn +http://purl.obolibrary.org/obo/UBERON_0003881,CA1 field of hippocampus,CA1 field of cornu ammonis +http://purl.obolibrary.org/obo/UBERON_0003881,CA1 field of hippocampus,CA1 field of hippocampus +http://purl.obolibrary.org/obo/UBERON_0003881,CA1 field of hippocampus,CA1 field of the Ammon horn +http://purl.obolibrary.org/obo/UBERON_0003881,CA1 field of hippocampus,CA1 field of the hippocampus +http://purl.obolibrary.org/obo/UBERON_0003881,CA1 field of hippocampus,cornu ammonis 1 +http://purl.obolibrary.org/obo/UBERON_0003881,CA1 field of hippocampus,field CA1 +http://purl.obolibrary.org/obo/UBERON_0003881,CA1 field of hippocampus,field CA1 of hippocampus +http://purl.obolibrary.org/obo/UBERON_0003881,CA1 field of hippocampus,"field CA1, Ammon's horn (Lorente de Ns)" +http://purl.obolibrary.org/obo/UBERON_0003881,CA1 field of hippocampus,hippocampus CA1 +http://purl.obolibrary.org/obo/UBERON_0003881,CA1 field of hippocampus,prosubiculum = distal ca1 +http://purl.obolibrary.org/obo/UBERON_0003881,CA1 field of hippocampus,regio I cornus ammonis +http://purl.obolibrary.org/obo/UBERON_0003881,CA1 field of hippocampus,regio I hippocampi proprii +http://purl.obolibrary.org/obo/UBERON_0003881,CA1 field of hippocampus,regio superior +http://purl.obolibrary.org/obo/UBERON_0003881,CA1 field of hippocampus,regio superior of the hippocampus +http://purl.obolibrary.org/obo/UBERON_0003881,CA1 field of hippocampus,region 1 of Ammon's horn +http://purl.obolibrary.org/obo/UBERON_0003881,CA1 field of hippocampus,region CA1 +http://purl.obolibrary.org/obo/UBERON_0003881,CA1 field of hippocampus,region i of ammon's horn +http://purl.obolibrary.org/obo/UBERON_0003881,CA1 field of hippocampus,region i of hippocampus proper +http://purl.obolibrary.org/obo/UBERON_0003882,CA2 field of hippocampus,CA2 +http://purl.obolibrary.org/obo/UBERON_0003882,CA2 field of hippocampus,CA2 field +http://purl.obolibrary.org/obo/UBERON_0003882,CA2 field of hippocampus,CA2 field of Ammon's horn +http://purl.obolibrary.org/obo/UBERON_0003882,CA2 field of hippocampus,CA2 field of cornu ammonis +http://purl.obolibrary.org/obo/UBERON_0003882,CA2 field of hippocampus,CA2 field of hippocampus +http://purl.obolibrary.org/obo/UBERON_0003882,CA2 field of hippocampus,CA2 field of the Ammon horn +http://purl.obolibrary.org/obo/UBERON_0003882,CA2 field of hippocampus,CA2 field of the hippocampus +http://purl.obolibrary.org/obo/UBERON_0003882,CA2 field of hippocampus,cornu Ammonis 2 +http://purl.obolibrary.org/obo/UBERON_0003882,CA2 field of hippocampus,field CA2 +http://purl.obolibrary.org/obo/UBERON_0003882,CA2 field of hippocampus,field CA2 of hippocampus +http://purl.obolibrary.org/obo/UBERON_0003882,CA2 field of hippocampus,"field CA2, Ammon's horn (Lorente de Ns)" +http://purl.obolibrary.org/obo/UBERON_0003882,CA2 field of hippocampus,hippocampus CA2 +http://purl.obolibrary.org/obo/UBERON_0003882,CA2 field of hippocampus,regio ii cornus ammonis +http://purl.obolibrary.org/obo/UBERON_0003882,CA2 field of hippocampus,regio ii hippocampi proprii +http://purl.obolibrary.org/obo/UBERON_0003882,CA2 field of hippocampus,region 2 of Ammon's horn +http://purl.obolibrary.org/obo/UBERON_0003882,CA2 field of hippocampus,region CA2 +http://purl.obolibrary.org/obo/UBERON_0003882,CA2 field of hippocampus,region II of ammon's horn +http://purl.obolibrary.org/obo/UBERON_0003882,CA2 field of hippocampus,region II of hippocampus proper +http://purl.obolibrary.org/obo/UBERON_0003883,CA3 field of hippocampus,CA3 +http://purl.obolibrary.org/obo/UBERON_0003883,CA3 field of hippocampus,CA3 field +http://purl.obolibrary.org/obo/UBERON_0003883,CA3 field of hippocampus,CA3 field of Ammon's horn +http://purl.obolibrary.org/obo/UBERON_0003883,CA3 field of hippocampus,CA3 field of cornu ammonis +http://purl.obolibrary.org/obo/UBERON_0003883,CA3 field of hippocampus,CA3 field of hippocampus +http://purl.obolibrary.org/obo/UBERON_0003883,CA3 field of hippocampus,CA3 field of the Ammon horn +http://purl.obolibrary.org/obo/UBERON_0003883,CA3 field of hippocampus,CA3 field of the hippocampus +http://purl.obolibrary.org/obo/UBERON_0003883,CA3 field of hippocampus,cornu Ammonis 3 +http://purl.obolibrary.org/obo/UBERON_0003883,CA3 field of hippocampus,field CA3 +http://purl.obolibrary.org/obo/UBERON_0003883,CA3 field of hippocampus,field CA3 of hippocampus +http://purl.obolibrary.org/obo/UBERON_0003883,CA3 field of hippocampus,"field CA3, Ammon's horn (Lorente de Ns)" +http://purl.obolibrary.org/obo/UBERON_0003883,CA3 field of hippocampus,hippocampus CA3 +http://purl.obolibrary.org/obo/UBERON_0003883,CA3 field of hippocampus,regio III cornus ammonis +http://purl.obolibrary.org/obo/UBERON_0003883,CA3 field of hippocampus,regio III hippocampi proprii +http://purl.obolibrary.org/obo/UBERON_0003883,CA3 field of hippocampus,regio hippocampi proprii III +http://purl.obolibrary.org/obo/UBERON_0003883,CA3 field of hippocampus,regio inferior +http://purl.obolibrary.org/obo/UBERON_0003883,CA3 field of hippocampus,region 3 of Ammon's horn +http://purl.obolibrary.org/obo/UBERON_0003883,CA3 field of hippocampus,region CA3 +http://purl.obolibrary.org/obo/UBERON_0003883,CA3 field of hippocampus,region III of ammon's horn +http://purl.obolibrary.org/obo/UBERON_0003883,CA3 field of hippocampus,region III of hippocampus proper +http://purl.obolibrary.org/obo/UBERON_0003884,CA4 field of hippocampus,CA4 +http://purl.obolibrary.org/obo/UBERON_0003884,CA4 field of hippocampus,CA4 field +http://purl.obolibrary.org/obo/UBERON_0003884,CA4 field of hippocampus,CA4 field of Ammon's horn +http://purl.obolibrary.org/obo/UBERON_0003884,CA4 field of hippocampus,CA4 field of cornu ammonis +http://purl.obolibrary.org/obo/UBERON_0003884,CA4 field of hippocampus,hippocampus CA4 +http://purl.obolibrary.org/obo/UBERON_0003884,CA4 field of hippocampus,regio IV cornus ammonis +http://purl.obolibrary.org/obo/UBERON_0003884,CA4 field of hippocampus,regio IV hippocampi proprii +http://purl.obolibrary.org/obo/UBERON_0003884,CA4 field of hippocampus,region 4 of Ammon's horn +http://purl.obolibrary.org/obo/UBERON_0003884,CA4 field of hippocampus,region IV of ammon's horn +http://purl.obolibrary.org/obo/UBERON_0003884,CA4 field of hippocampus,region IV of hippocampus proper +http://purl.obolibrary.org/obo/UBERON_0003885,mesometrium, +http://purl.obolibrary.org/obo/UBERON_0003886,future coelemic cavity lumen,future coelomic cavity lumen +http://purl.obolibrary.org/obo/UBERON_0003887,intraembryonic coelom,somatic coelom +http://purl.obolibrary.org/obo/UBERON_0003888,extraembryonic coelomic cavity,chorion cavity +http://purl.obolibrary.org/obo/UBERON_0003888,extraembryonic coelomic cavity,chorionic cavity +http://purl.obolibrary.org/obo/UBERON_0003888,extraembryonic coelomic cavity,exocoelomic cavity +http://purl.obolibrary.org/obo/UBERON_0003888,extraembryonic coelomic cavity,extraembryonic celom +http://purl.obolibrary.org/obo/UBERON_0003889,fallopian tube,mammalian oviduct +http://purl.obolibrary.org/obo/UBERON_0003889,fallopian tube,uterine tube (sensu Mammalia) +http://purl.obolibrary.org/obo/UBERON_0003890,Mullerian duct,Muellerian duct +http://purl.obolibrary.org/obo/UBERON_0003890,Mullerian duct,Müllerian duct +http://purl.obolibrary.org/obo/UBERON_0003890,Mullerian duct,ductus paramesonephricus +http://purl.obolibrary.org/obo/UBERON_0003890,Mullerian duct,paramesonephric duct +http://purl.obolibrary.org/obo/UBERON_0003891,stroma, +http://purl.obolibrary.org/obo/UBERON_0003893,capsule, +http://purl.obolibrary.org/obo/UBERON_0003894,liver primordium,embryological hepatic plate +http://purl.obolibrary.org/obo/UBERON_0003894,liver primordium,primordium of the liver +http://purl.obolibrary.org/obo/UBERON_0003895,hypaxial myotome region,hypaxial myotome region +http://purl.obolibrary.org/obo/UBERON_0003897,axial muscle, +http://purl.obolibrary.org/obo/UBERON_0003898,skeletal muscle tissue of trunk,skeletal muscle of torso +http://purl.obolibrary.org/obo/UBERON_0003898,skeletal muscle tissue of trunk,skeletal muscle tissue of torso +http://purl.obolibrary.org/obo/UBERON_0003898,skeletal muscle tissue of trunk,skeletal muscle tissue of trunk +http://purl.obolibrary.org/obo/UBERON_0003898,skeletal muscle tissue of trunk,torso skeletal muscle +http://purl.obolibrary.org/obo/UBERON_0003898,skeletal muscle tissue of trunk,torso skeletal muscle tissue +http://purl.obolibrary.org/obo/UBERON_0003898,skeletal muscle tissue of trunk,trunk skeletal muscle +http://purl.obolibrary.org/obo/UBERON_0003898,skeletal muscle tissue of trunk,trunk skeletal muscle tissue +http://purl.obolibrary.org/obo/UBERON_0003900,epaxial myotome region,epaxial myotome regions +http://purl.obolibrary.org/obo/UBERON_0003901,horizontal septum,horizontal myoseptum +http://purl.obolibrary.org/obo/UBERON_0003902,retinal neural layer,neural layer of retina +http://purl.obolibrary.org/obo/UBERON_0003902,retinal neural layer,neural retina +http://purl.obolibrary.org/obo/UBERON_0003902,retinal neural layer,neural retinal epithelium +http://purl.obolibrary.org/obo/UBERON_0003902,retinal neural layer,neuroretina +http://purl.obolibrary.org/obo/UBERON_0003902,retinal neural layer,stratum nervosum (retina) +http://purl.obolibrary.org/obo/UBERON_0003902,retinal neural layer,stratum nervosum retinae +http://purl.obolibrary.org/obo/UBERON_0003903,bursa of Fabricius, +http://purl.obolibrary.org/obo/UBERON_0003904,bursal plica,bursal fold +http://purl.obolibrary.org/obo/UBERON_0003904,bursal plica,bursal plicae +http://purl.obolibrary.org/obo/UBERON_0003905,bursal follicle, +http://purl.obolibrary.org/obo/UBERON_0003906,cardiac jelly,heart cardiac jelly +http://purl.obolibrary.org/obo/UBERON_0003907,left atrioventricular canal,left AVC +http://purl.obolibrary.org/obo/UBERON_0003907,left atrioventricular canal,left atrio-ventricular canal +http://purl.obolibrary.org/obo/UBERON_0003908,right atrioventricular canal,right AVC +http://purl.obolibrary.org/obo/UBERON_0003908,right atrioventricular canal,right atrio-ventricular canal +http://purl.obolibrary.org/obo/UBERON_0003909,sinusoid,sinusoidal blood vessel +http://purl.obolibrary.org/obo/UBERON_0003909,sinusoid,sinusoidal blood vessel endothelium +http://purl.obolibrary.org/obo/UBERON_0003910,splenic sinusoid,sinusoidal blood vessel of spleen +http://purl.obolibrary.org/obo/UBERON_0003911,choroid plexus epithelium,choroid plexus epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003911,choroid plexus epithelium,epithelial tissue of chorioid plexus of cerebral hemisphere +http://purl.obolibrary.org/obo/UBERON_0003911,choroid plexus epithelium,epithelial tissue of choroid plexus +http://purl.obolibrary.org/obo/UBERON_0003911,choroid plexus epithelium,epithelium of choroid plexus +http://purl.obolibrary.org/obo/UBERON_0003912,chitinous tooth, +http://purl.obolibrary.org/obo/UBERON_0003913,tooth-like structure,tooth-like organ +http://purl.obolibrary.org/obo/UBERON_0003914,epithelial tube,epithelial or endothelial tube +http://purl.obolibrary.org/obo/UBERON_0003915,endothelial tube, +http://purl.obolibrary.org/obo/UBERON_0003916,fat pad, +http://purl.obolibrary.org/obo/UBERON_0003917,arthropod fat body,fat body +http://purl.obolibrary.org/obo/UBERON_0003918,kidney mesenchyme,mesenchyme of kidney +http://purl.obolibrary.org/obo/UBERON_0003920,venous blood vessel,segment of venous tree organ +http://purl.obolibrary.org/obo/UBERON_0003920,venous blood vessel,venous tree organ segment +http://purl.obolibrary.org/obo/UBERON_0003921,pancreas primordium,pancreatic primordium +http://purl.obolibrary.org/obo/UBERON_0003922,pancreatic epithelial bud,pancreatic bud +http://purl.obolibrary.org/obo/UBERON_0003922,pancreatic epithelial bud,pancreatic buds +http://purl.obolibrary.org/obo/UBERON_0003923,dorsal pancreatic bud,pancreas dorsal primordium duct bud +http://purl.obolibrary.org/obo/UBERON_0003923,dorsal pancreatic bud,pancreas primordium dorsal bud +http://purl.obolibrary.org/obo/UBERON_0003923,dorsal pancreatic bud,primary pancreatic bud +http://purl.obolibrary.org/obo/UBERON_0003924,ventral pancreatic bud,pancreas primordium ventral bud +http://purl.obolibrary.org/obo/UBERON_0003924,ventral pancreatic bud,pancreas ventral primordium duct bud +http://purl.obolibrary.org/obo/UBERON_0003925,photoreceptor inner segment layer,retina photoreceptor layer inner segment +http://purl.obolibrary.org/obo/UBERON_0003926,photoreceptor outer segment layer,retina photoreceptor layer outer segment +http://purl.obolibrary.org/obo/UBERON_0003928,digestive system duct,duct of digestive system +http://purl.obolibrary.org/obo/UBERON_0003928,digestive system duct,duct of gastrointestinal system +http://purl.obolibrary.org/obo/UBERON_0003928,digestive system duct,gastrointestinal system duct +http://purl.obolibrary.org/obo/UBERON_0003929,digestive tract epithelium,alimentary tract epithelium +http://purl.obolibrary.org/obo/UBERON_0003929,digestive tract epithelium,digestive tract epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003929,digestive tract epithelium,epithelial tissue of digestive tract +http://purl.obolibrary.org/obo/UBERON_0003929,digestive tract epithelium,epithelial tissue of gut +http://purl.obolibrary.org/obo/UBERON_0003929,digestive tract epithelium,epithelium of digestive tract +http://purl.obolibrary.org/obo/UBERON_0003929,digestive tract epithelium,epithelium of gut +http://purl.obolibrary.org/obo/UBERON_0003929,digestive tract epithelium,gastrodermis +http://purl.obolibrary.org/obo/UBERON_0003929,digestive tract epithelium,gut epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0003929,digestive tract epithelium,gut epithelium +http://purl.obolibrary.org/obo/UBERON_0003930,atrioventricular canal endocardium,AV canal endocardium +http://purl.obolibrary.org/obo/UBERON_0003930,atrioventricular canal endocardium,AVC endocardium +http://purl.obolibrary.org/obo/UBERON_0003930,atrioventricular canal endocardium,endocardium of AV canal +http://purl.obolibrary.org/obo/UBERON_0003930,atrioventricular canal endocardium,endocardium of atrioventricular canal +http://purl.obolibrary.org/obo/UBERON_0003931,diencephalic white matter,diencephalic tract/commissure +http://purl.obolibrary.org/obo/UBERON_0003931,diencephalic white matter,diencephalic tracts and commissures +http://purl.obolibrary.org/obo/UBERON_0003931,diencephalic white matter,predominantly white regional part of diencephalon +http://purl.obolibrary.org/obo/UBERON_0003931,diencephalic white matter,white matter of diencephalon +http://purl.obolibrary.org/obo/UBERON_0003932,cartilage element of chondrocranium,cartilage of chondrocranium +http://purl.obolibrary.org/obo/UBERON_0003932,cartilage element of chondrocranium,cartilaginous element of chondrocranium +http://purl.obolibrary.org/obo/UBERON_0003932,cartilage element of chondrocranium,chondrocranium cartilage +http://purl.obolibrary.org/obo/UBERON_0003932,cartilage element of chondrocranium,neurocranium cartilage +http://purl.obolibrary.org/obo/UBERON_0003933,cranial cartilage,cartilage of cranium +http://purl.obolibrary.org/obo/UBERON_0003933,cranial cartilage,cranium cartilage +http://purl.obolibrary.org/obo/UBERON_0003934,mesenchyme pectoral fin,mesenchyme of pectoral fin +http://purl.obolibrary.org/obo/UBERON_0003934,mesenchyme pectoral fin,pectoral fin mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003935,mesenchyme pelvic fin,mesenchyme of pelvic fin +http://purl.obolibrary.org/obo/UBERON_0003935,mesenchyme pelvic fin,pelvic fin mesenchyme +http://purl.obolibrary.org/obo/UBERON_0003936,postoptic commissure,POC +http://purl.obolibrary.org/obo/UBERON_0003936,postoptic commissure,post optic commissure +http://purl.obolibrary.org/obo/UBERON_0003936,postoptic commissure,post-optic commissure +http://purl.obolibrary.org/obo/UBERON_0003937,reproductive gland,genitalia gland +http://purl.obolibrary.org/obo/UBERON_0003937,reproductive gland,gland of genitalia +http://purl.obolibrary.org/obo/UBERON_0003937,reproductive gland,gland of reproductive system +http://purl.obolibrary.org/obo/UBERON_0003937,reproductive gland,reproductive gland +http://purl.obolibrary.org/obo/UBERON_0003937,reproductive gland,reproductive system gland +http://purl.obolibrary.org/obo/UBERON_0003937,reproductive gland,sex gland +http://purl.obolibrary.org/obo/UBERON_0003938,sensory dissociation area, +http://purl.obolibrary.org/obo/UBERON_0003939,transverse gyrus of Heschl,Heshl's gyrus +http://purl.obolibrary.org/obo/UBERON_0003939,transverse gyrus of Heschl,transverse temporal gyrus +http://purl.obolibrary.org/obo/UBERON_0003941,cerebellum anterior vermis,anterior cerebellum vermis +http://purl.obolibrary.org/obo/UBERON_0003941,cerebellum anterior vermis,anterior vermis of cerebellum +http://purl.obolibrary.org/obo/UBERON_0003941,cerebellum anterior vermis,part of vermal region +http://purl.obolibrary.org/obo/UBERON_0003941,cerebellum anterior vermis,vermis lobus anterior +http://purl.obolibrary.org/obo/UBERON_0003941,cerebellum anterior vermis,vermis of anterior lobe +http://purl.obolibrary.org/obo/UBERON_0003941,cerebellum anterior vermis,vermis of anterior lobe of cerebellum +http://purl.obolibrary.org/obo/UBERON_0003941,cerebellum anterior vermis,vermis of the anterior lobe of the cerebellum +http://purl.obolibrary.org/obo/UBERON_0003942,somatosensory system,somatic sensory system +http://purl.obolibrary.org/obo/UBERON_0003942,somatosensory system,system for detection of somatic senses +http://purl.obolibrary.org/obo/UBERON_0003943,fourth lumbar dorsal root ganglion,L4 dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0003943,fourth lumbar dorsal root ganglion,L4 ganglion +http://purl.obolibrary.org/obo/UBERON_0003943,fourth lumbar dorsal root ganglion,forth lumbar dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0003943,fourth lumbar dorsal root ganglion,fourth lumbar dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0003943,fourth lumbar dorsal root ganglion,fourth lumbar spinal ganglion +http://purl.obolibrary.org/obo/UBERON_0003945,somatic motor system, +http://purl.obolibrary.org/obo/UBERON_0003946,placenta labyrinth,labyrinthine layer +http://purl.obolibrary.org/obo/UBERON_0003946,placenta labyrinth,labyrinthine layer of placenta +http://purl.obolibrary.org/obo/UBERON_0003946,placenta labyrinth,placental labyrinth +http://purl.obolibrary.org/obo/UBERON_0003947,brain ventricle/choroid plexus, +http://purl.obolibrary.org/obo/UBERON_0003948,blood-air barrier, +http://purl.obolibrary.org/obo/UBERON_0003949,tubal tonsil,Gerlach's tonsil +http://purl.obolibrary.org/obo/UBERON_0003949,tubal tonsil,Gerlach's tubal tonsil +http://purl.obolibrary.org/obo/UBERON_0003949,tubal tonsil,auditory tube lymph gland +http://purl.obolibrary.org/obo/UBERON_0003949,tubal tonsil,eustachian amygdala +http://purl.obolibrary.org/obo/UBERON_0003950,inner ear canal, +http://purl.obolibrary.org/obo/UBERON_0003951,ocular fundus,eye fundus +http://purl.obolibrary.org/obo/UBERON_0003951,ocular fundus,fundus +http://purl.obolibrary.org/obo/UBERON_0003951,ocular fundus,fundus oculi +http://purl.obolibrary.org/obo/UBERON_0003951,ocular fundus,fundus of eye +http://purl.obolibrary.org/obo/UBERON_0003952,anterior stroma of cornea,cornea anterior stroma +http://purl.obolibrary.org/obo/UBERON_0003953,posterior stroma of cornea,cornea posterior stroma +http://purl.obolibrary.org/obo/UBERON_0003954,squamoparietal suture,squamo-parietal suture +http://purl.obolibrary.org/obo/UBERON_0003954,squamoparietal suture,squamoparietal suture of skull +http://purl.obolibrary.org/obo/UBERON_0003954,squamoparietal suture,sutura squamosa cranii +http://purl.obolibrary.org/obo/UBERON_0003955,molar crown,crown of molar tooth +http://purl.obolibrary.org/obo/UBERON_0003955,molar crown,molar tooth crown +http://purl.obolibrary.org/obo/UBERON_0003955,molar crown,molar tooth tooth crown +http://purl.obolibrary.org/obo/UBERON_0003955,molar crown,tooth crown of molar tooth +http://purl.obolibrary.org/obo/UBERON_0003956,aqueous drainage system, +http://purl.obolibrary.org/obo/UBERON_0003957,Bruch's membrane,Bruch membrane +http://purl.obolibrary.org/obo/UBERON_0003957,Bruch's membrane,Bruch's basal membrane +http://purl.obolibrary.org/obo/UBERON_0003957,Bruch's membrane,lamina basalis (choroid) +http://purl.obolibrary.org/obo/UBERON_0003957,Bruch's membrane,lamina choroideae basalis +http://purl.obolibrary.org/obo/UBERON_0003957,Bruch's membrane,vitreous lamina +http://purl.obolibrary.org/obo/UBERON_0003958,long bone epiphyseal ossification zone, +http://purl.obolibrary.org/obo/UBERON_0003959,rete testis,Haller's rete +http://purl.obolibrary.org/obo/UBERON_0003960,styloid process of temporal bone,processus styloideus +http://purl.obolibrary.org/obo/UBERON_0003960,styloid process of temporal bone,processus styloideus ossis temporalis +http://purl.obolibrary.org/obo/UBERON_0003960,styloid process of temporal bone,styloid process +http://purl.obolibrary.org/obo/UBERON_0003960,styloid process of temporal bone,styloid process of petrous part of temporal bone +http://purl.obolibrary.org/obo/UBERON_0003960,styloid process of temporal bone,temporal styloid process +http://purl.obolibrary.org/obo/UBERON_0003961,cingulum of brain,cingulum bundle +http://purl.obolibrary.org/obo/UBERON_0003962,pterygopalatine ganglion,Meckel ganglion +http://purl.obolibrary.org/obo/UBERON_0003962,pterygopalatine ganglion,Meckel's ganglion +http://purl.obolibrary.org/obo/UBERON_0003962,pterygopalatine ganglion,g. pterygopalatinum +http://purl.obolibrary.org/obo/UBERON_0003962,pterygopalatine ganglion,nasal ganglion +http://purl.obolibrary.org/obo/UBERON_0003962,pterygopalatine ganglion,palatine ganglion +http://purl.obolibrary.org/obo/UBERON_0003962,pterygopalatine ganglion,pterygopalatine ganglia +http://purl.obolibrary.org/obo/UBERON_0003962,pterygopalatine ganglion,sphenopalatine ganglion +http://purl.obolibrary.org/obo/UBERON_0003962,pterygopalatine ganglion,sphenopalatine parasympathetic ganglion +http://purl.obolibrary.org/obo/UBERON_0003963,otic ganglion,Arnold's ganglion +http://purl.obolibrary.org/obo/UBERON_0003963,otic ganglion,ganglion oticum +http://purl.obolibrary.org/obo/UBERON_0003963,otic ganglion,otic parasympathetic ganglion +http://purl.obolibrary.org/obo/UBERON_0003964,prevertebral ganglion,collateral ganglia +http://purl.obolibrary.org/obo/UBERON_0003964,prevertebral ganglion,collateral ganglion +http://purl.obolibrary.org/obo/UBERON_0003964,prevertebral ganglion,pre-aortic ganglia +http://purl.obolibrary.org/obo/UBERON_0003964,prevertebral ganglion,preaortic ganglia +http://purl.obolibrary.org/obo/UBERON_0003964,prevertebral ganglion,prevertebral ganglion +http://purl.obolibrary.org/obo/UBERON_0003964,prevertebral ganglion,prevertebral plexuses +http://purl.obolibrary.org/obo/UBERON_0003964,prevertebral ganglion,previsceral ganglion +http://purl.obolibrary.org/obo/UBERON_0003964,prevertebral ganglion,three great gangliated plexuses +http://purl.obolibrary.org/obo/UBERON_0003965,sympathetic afferent fiber, +http://purl.obolibrary.org/obo/UBERON_0003966,gonial bone,gonium +http://purl.obolibrary.org/obo/UBERON_0003967,cutaneous elastic tissue, +http://purl.obolibrary.org/obo/UBERON_0003968,peripheral lymph node, +http://purl.obolibrary.org/obo/UBERON_0003970,placental labyrinth vasculature,placental labyrinth vascular network +http://purl.obolibrary.org/obo/UBERON_0003970,placental labyrinth vasculature,vasculature of placenta labyrinth +http://purl.obolibrary.org/obo/UBERON_0003971,interfrontal bone, +http://purl.obolibrary.org/obo/UBERON_0003972,placenta junctional zone, +http://purl.obolibrary.org/obo/UBERON_0003973,nasal concha of ethmoid bone,ethmo-turbinate +http://purl.obolibrary.org/obo/UBERON_0003973,nasal concha of ethmoid bone,ethmoturbinal +http://purl.obolibrary.org/obo/UBERON_0003973,nasal concha of ethmoid bone,ethmoturbinate +http://purl.obolibrary.org/obo/UBERON_0003973,nasal concha of ethmoid bone,nasal turbinate of ethmoid bone +http://purl.obolibrary.org/obo/UBERON_0003973,nasal concha of ethmoid bone,turbinate of ethmoid bone +http://purl.obolibrary.org/obo/UBERON_0003974,upper part of vagina,cranial vagina +http://purl.obolibrary.org/obo/UBERON_0003974,upper part of vagina,pelvic part of vagina +http://purl.obolibrary.org/obo/UBERON_0003974,upper part of vagina,vagina upper part +http://purl.obolibrary.org/obo/UBERON_0003975,internal female genitalia,female internal genitalia +http://purl.obolibrary.org/obo/UBERON_0003975,internal female genitalia,internal female genital organ +http://purl.obolibrary.org/obo/UBERON_0003975,internal female genitalia,internal genitalia of female reproductive system +http://purl.obolibrary.org/obo/UBERON_0003976,saccule duct,saccular duct +http://purl.obolibrary.org/obo/UBERON_0003976,saccule duct,saccular part of utriculosaccular duct +http://purl.obolibrary.org/obo/UBERON_0003977,utricle duct,utricular duct +http://purl.obolibrary.org/obo/UBERON_0003977,utricle duct,utricular part of utriculosaccular duct +http://purl.obolibrary.org/obo/UBERON_0003978,valve,anatomical valve +http://purl.obolibrary.org/obo/UBERON_0003979,utricle valve, +http://purl.obolibrary.org/obo/UBERON_0003980,cerebellum fissure,cerebellar fissure +http://purl.obolibrary.org/obo/UBERON_0003980,cerebellum fissure,fissurae cerebelli +http://purl.obolibrary.org/obo/UBERON_0003981,primordial ovarian follicle,ovary primordial follicle +http://purl.obolibrary.org/obo/UBERON_0003981,primordial ovarian follicle,primordial follicle +http://purl.obolibrary.org/obo/UBERON_0003982,mature ovarian follicle,ovarian follicle stage IV +http://purl.obolibrary.org/obo/UBERON_0003982,mature ovarian follicle,ovary mature follicle +http://purl.obolibrary.org/obo/UBERON_0003983,conus arteriosus, +http://purl.obolibrary.org/obo/UBERON_0003984,uterine tube infundibulum,infundibulum of oviduct +http://purl.obolibrary.org/obo/UBERON_0003984,uterine tube infundibulum,infundibulum of uterine tube +http://purl.obolibrary.org/obo/UBERON_0003985,major sublingual duct, +http://purl.obolibrary.org/obo/UBERON_0003986,minor sublingual duct,duct of Rivinus +http://purl.obolibrary.org/obo/UBERON_0003987,Hassall's corpuscle,capsule of Hassal's corpuscle +http://purl.obolibrary.org/obo/UBERON_0003987,Hassall's corpuscle,thymic corpuscle +http://purl.obolibrary.org/obo/UBERON_0003988,thymus corticomedullary boundary,thymic cortico-medullary boundary +http://purl.obolibrary.org/obo/UBERON_0003988,thymus corticomedullary boundary,thymic corticomedullary boundary +http://purl.obolibrary.org/obo/UBERON_0003988,thymus corticomedullary boundary,thymic corticomedullary junction +http://purl.obolibrary.org/obo/UBERON_0003988,thymus corticomedullary boundary,thymic corticomedullary zone +http://purl.obolibrary.org/obo/UBERON_0003988,thymus corticomedullary boundary,thymus CMZ +http://purl.obolibrary.org/obo/UBERON_0003988,thymus corticomedullary boundary,thymus cortico-medullary boundary +http://purl.obolibrary.org/obo/UBERON_0003988,thymus corticomedullary boundary,thymus corticomedullary junction +http://purl.obolibrary.org/obo/UBERON_0003988,thymus corticomedullary boundary,thymus corticomedullary zone +http://purl.obolibrary.org/obo/UBERON_0003989,medulla oblongata anterior median fissure,anterior median fissure +http://purl.obolibrary.org/obo/UBERON_0003989,medulla oblongata anterior median fissure,anterior median fissure of medulla +http://purl.obolibrary.org/obo/UBERON_0003989,medulla oblongata anterior median fissure,anterior median fissure of medulla oblongata +http://purl.obolibrary.org/obo/UBERON_0003989,medulla oblongata anterior median fissure,fissura mediana anterior medullae oblongatae +http://purl.obolibrary.org/obo/UBERON_0003989,medulla oblongata anterior median fissure,ventral median fissure of medulla +http://purl.obolibrary.org/obo/UBERON_0003989,medulla oblongata anterior median fissure,ventral median sulcus +http://purl.obolibrary.org/obo/UBERON_0003990,spinal cord motor column, +http://purl.obolibrary.org/obo/UBERON_0003991,fourth ventricle median aperture,apertura mediana +http://purl.obolibrary.org/obo/UBERON_0003991,fourth ventricle median aperture,foramen of Magendie +http://purl.obolibrary.org/obo/UBERON_0003991,fourth ventricle median aperture,foramen of Majendie +http://purl.obolibrary.org/obo/UBERON_0003991,fourth ventricle median aperture,fourth ventricle median aperture +http://purl.obolibrary.org/obo/UBERON_0003991,fourth ventricle median aperture,median aperture of fourth ventricle +http://purl.obolibrary.org/obo/UBERON_0003992,fourth ventricle lateral aperture,apertura lateralis +http://purl.obolibrary.org/obo/UBERON_0003992,fourth ventricle lateral aperture,foramen of Key-Retzius +http://purl.obolibrary.org/obo/UBERON_0003992,fourth ventricle lateral aperture,foramen of Luschka +http://purl.obolibrary.org/obo/UBERON_0003992,fourth ventricle lateral aperture,foramen of Retzius +http://purl.obolibrary.org/obo/UBERON_0003992,fourth ventricle lateral aperture,foramen of key and retzius +http://purl.obolibrary.org/obo/UBERON_0003992,fourth ventricle lateral aperture,lateral aperture of fourth ventricle +http://purl.obolibrary.org/obo/UBERON_0003993,interventricular foramen of CNS,foramen Monroi +http://purl.obolibrary.org/obo/UBERON_0003993,interventricular foramen of CNS,foramen interventriculare +http://purl.obolibrary.org/obo/UBERON_0003993,interventricular foramen of CNS,interventricular foramen +http://purl.obolibrary.org/obo/UBERON_0003993,interventricular foramen of CNS,interventricular foramina +http://purl.obolibrary.org/obo/UBERON_0003994,pelvic ligament,pelvis ligament +http://purl.obolibrary.org/obo/UBERON_0003995,subarcuate fossa,fossa subarcuata +http://purl.obolibrary.org/obo/UBERON_0003996,cervical vertebra 1 arcus anterior,anterior arch of atlas +http://purl.obolibrary.org/obo/UBERON_0003996,cervical vertebra 1 arcus anterior,arcus anterior +http://purl.obolibrary.org/obo/UBERON_0003996,cervical vertebra 1 arcus anterior,arcus anterior atlantis +http://purl.obolibrary.org/obo/UBERON_0003996,cervical vertebra 1 arcus anterior,cervical vertebra 1 arcus anterior +http://purl.obolibrary.org/obo/UBERON_0003997,hyoid bone greater horn,cornu majus +http://purl.obolibrary.org/obo/UBERON_0003997,hyoid bone greater horn,cornu majus ossis hyoidei +http://purl.obolibrary.org/obo/UBERON_0003997,hyoid bone greater horn,cornua majora +http://purl.obolibrary.org/obo/UBERON_0003997,hyoid bone greater horn,greater cornu +http://purl.obolibrary.org/obo/UBERON_0003997,hyoid bone greater horn,greater cornua +http://purl.obolibrary.org/obo/UBERON_0003997,hyoid bone greater horn,greater horn +http://purl.obolibrary.org/obo/UBERON_0003997,hyoid bone greater horn,greater horn of hyoid +http://purl.obolibrary.org/obo/UBERON_0003997,hyoid bone greater horn,greater horn of hyoid bone +http://purl.obolibrary.org/obo/UBERON_0003997,hyoid bone greater horn,tyrohal +http://purl.obolibrary.org/obo/UBERON_0003997,hyoid bone greater horn,tyrohals +http://purl.obolibrary.org/obo/UBERON_0003998,hyoid bone lesser horn,cornu minus +http://purl.obolibrary.org/obo/UBERON_0003998,hyoid bone lesser horn,cornu minus ossis hyoidei +http://purl.obolibrary.org/obo/UBERON_0003998,hyoid bone lesser horn,lesser cornu +http://purl.obolibrary.org/obo/UBERON_0003998,hyoid bone lesser horn,lesser cornu of hyoid +http://purl.obolibrary.org/obo/UBERON_0003998,hyoid bone lesser horn,lesser cornua +http://purl.obolibrary.org/obo/UBERON_0003998,hyoid bone lesser horn,lesser horn +http://purl.obolibrary.org/obo/UBERON_0003998,hyoid bone lesser horn,lesser horn of hyoid +http://purl.obolibrary.org/obo/UBERON_0003998,hyoid bone lesser horn,lesser horn of hyoid bone +http://purl.obolibrary.org/obo/UBERON_0003998,hyoid bone lesser horn,lesser horn of the hyoid +http://purl.obolibrary.org/obo/UBERON_0003999,hyoid bone body, +http://purl.obolibrary.org/obo/UBERON_0004000,tarsal gland acinus,Meibomian gland acinus +http://purl.obolibrary.org/obo/UBERON_0004000,tarsal gland acinus,acinus of tarsal gland +http://purl.obolibrary.org/obo/UBERON_0004001,olfactory bulb layer,cytoarchitectural part of olfactory bulb +http://purl.obolibrary.org/obo/UBERON_0004002,posterior lobe of cerebellum,cerebellar posterior lobe +http://purl.obolibrary.org/obo/UBERON_0004002,posterior lobe of cerebellum,cerebellum posterior lobe +http://purl.obolibrary.org/obo/UBERON_0004002,posterior lobe of cerebellum,middle lobe-1 of cerebellum +http://purl.obolibrary.org/obo/UBERON_0004002,posterior lobe of cerebellum,posterior cerebellar lobe +http://purl.obolibrary.org/obo/UBERON_0004002,posterior lobe of cerebellum,posterior lobe of cerebellum +http://purl.obolibrary.org/obo/UBERON_0004002,posterior lobe of cerebellum,posterior lobe of the cerebellum +http://purl.obolibrary.org/obo/UBERON_0004002,posterior lobe of cerebellum,posterior lobe-1 of cerebellum +http://purl.obolibrary.org/obo/UBERON_0004003,cerebellum hemisphere lobule,cerebellar hemisphere lobule +http://purl.obolibrary.org/obo/UBERON_0004003,cerebellum hemisphere lobule,lobule of cerebellar hemisphere +http://purl.obolibrary.org/obo/UBERON_0004003,cerebellum hemisphere lobule,lobule of hemisphere of cerebellum +http://purl.obolibrary.org/obo/UBERON_0004004,cerebellum lobule,lobular parts of the cerebellar cortex +http://purl.obolibrary.org/obo/UBERON_0004006,cerebellum intermediate zone,cerebellar paravermis +http://purl.obolibrary.org/obo/UBERON_0004006,cerebellum intermediate zone,cerebellum intermediate hemisphere +http://purl.obolibrary.org/obo/UBERON_0004006,cerebellum intermediate zone,intermediate part of spinocerebellum +http://purl.obolibrary.org/obo/UBERON_0004006,cerebellum intermediate zone,intermediate zone +http://purl.obolibrary.org/obo/UBERON_0004006,cerebellum intermediate zone,paravermis +http://purl.obolibrary.org/obo/UBERON_0004008,cerebellar plate,cerebellum plate +http://purl.obolibrary.org/obo/UBERON_0004009,cerebellum posterior vermis,posterior cerebellum vermis +http://purl.obolibrary.org/obo/UBERON_0004009,cerebellum posterior vermis,vermis lobus posterior +http://purl.obolibrary.org/obo/UBERON_0004009,cerebellum posterior vermis,vermis of posterior lobe +http://purl.obolibrary.org/obo/UBERON_0004009,cerebellum posterior vermis,vermis of posterior lobe of cerebellum +http://purl.obolibrary.org/obo/UBERON_0004009,cerebellum posterior vermis,vermis of the posterior lobe of the cerebellum +http://purl.obolibrary.org/obo/UBERON_0004010,primary muscle spindle, +http://purl.obolibrary.org/obo/UBERON_0004011,secondary muscle spindle, +http://purl.obolibrary.org/obo/UBERON_0004012,golgi tendon organ,neurotendinous ending +http://purl.obolibrary.org/obo/UBERON_0004012,golgi tendon organ,neurotendinous organ of golgi +http://purl.obolibrary.org/obo/UBERON_0004013,egg cylinder, +http://purl.obolibrary.org/obo/UBERON_0004014,labium minora,labia minorum +http://purl.obolibrary.org/obo/UBERON_0004014,labium minora,labium minora +http://purl.obolibrary.org/obo/UBERON_0004014,labium minora,labium minorum +http://purl.obolibrary.org/obo/UBERON_0004014,labium minora,labium minus +http://purl.obolibrary.org/obo/UBERON_0004014,labium minora,labium minus pudendi +http://purl.obolibrary.org/obo/UBERON_0004015,embryonic-extraembryonic boundary, +http://purl.obolibrary.org/obo/UBERON_0004016,dermatome,cutis plate +http://purl.obolibrary.org/obo/UBERON_0004016,dermatome,dermatomal mesenchyme +http://purl.obolibrary.org/obo/UBERON_0004017,periocular mesenchyme, +http://purl.obolibrary.org/obo/UBERON_0004019,baroreceptor, +http://purl.obolibrary.org/obo/UBERON_0004021,spongiotrophoblast layer,spongiotrophoblast layer of placenta +http://purl.obolibrary.org/obo/UBERON_0004022,germinal neuroepithelium,germinal neuroepithelial layer +http://purl.obolibrary.org/obo/UBERON_0004022,germinal neuroepithelium,germinal neuroepithelium +http://purl.obolibrary.org/obo/UBERON_0004022,germinal neuroepithelium,original neural tube +http://purl.obolibrary.org/obo/UBERON_0004023,ganglionic eminence,embryonic subventricular zone +http://purl.obolibrary.org/obo/UBERON_0004023,ganglionic eminence,embryonic/fetal subventricular zone +http://purl.obolibrary.org/obo/UBERON_0004023,ganglionic eminence,fetal subventricular zone +http://purl.obolibrary.org/obo/UBERON_0004023,ganglionic eminence,subependymal layer +http://purl.obolibrary.org/obo/UBERON_0004024,medial ganglionic eminence, +http://purl.obolibrary.org/obo/UBERON_0004025,lateral ganglionic eminence, +http://purl.obolibrary.org/obo/UBERON_0004026,caudal ganglionic eminence, +http://purl.obolibrary.org/obo/UBERON_0004027,chorionic plate, +http://purl.obolibrary.org/obo/UBERON_0004029,canal of Schlemm,Schlemm's canal +http://purl.obolibrary.org/obo/UBERON_0004029,canal of Schlemm,scleral sinus +http://purl.obolibrary.org/obo/UBERON_0004029,canal of Schlemm,scleral venous sinus +http://purl.obolibrary.org/obo/UBERON_0004029,canal of Schlemm,sinus venosus of sclera +http://purl.obolibrary.org/obo/UBERON_0004029,canal of Schlemm,sinus venosus sclerae +http://purl.obolibrary.org/obo/UBERON_0004030,aqueous vein, +http://purl.obolibrary.org/obo/UBERON_0004031,head ectomesenchyme,ectomesenchyme +http://purl.obolibrary.org/obo/UBERON_0004032,podocyte slit diaphragm, +http://purl.obolibrary.org/obo/UBERON_0004033,podocyte slit junction, +http://purl.obolibrary.org/obo/UBERON_0004034,cutaneous microfibril, +http://purl.obolibrary.org/obo/UBERON_0004035,cortical subplate,cerebral cortex subplate +http://purl.obolibrary.org/obo/UBERON_0004035,cortical subplate,subplate +http://purl.obolibrary.org/obo/UBERON_0004035,cortical subplate,subplate zone +http://purl.obolibrary.org/obo/UBERON_0004040,cortical intermediate zone, +http://purl.obolibrary.org/obo/UBERON_0004041,spleen primary B follicle,primary spleen B cell follicle +http://purl.obolibrary.org/obo/UBERON_0004042,spleen secondary B follicle,secondary spleen B cell follicle +http://purl.obolibrary.org/obo/UBERON_0004042,spleen secondary B follicle,splenic secondary B cell follicle +http://purl.obolibrary.org/obo/UBERON_0004043,semicircular canal ampulla, +http://purl.obolibrary.org/obo/UBERON_0004044,anterior visceral endoderm, +http://purl.obolibrary.org/obo/UBERON_0004045,tailgut, +http://purl.obolibrary.org/obo/UBERON_0004046,anterior definitive endoderm, +http://purl.obolibrary.org/obo/UBERON_0004047,basal cistern, +http://purl.obolibrary.org/obo/UBERON_0004048,pontine cistern,cisterna pontis +http://purl.obolibrary.org/obo/UBERON_0004049,cerebellomedullary cistern,great cistern +http://purl.obolibrary.org/obo/UBERON_0004050,subarachnoid cistern, +http://purl.obolibrary.org/obo/UBERON_0004051,lateral cerebellomedullary cistern,cisterna cerebellomedullaris lateralis +http://purl.obolibrary.org/obo/UBERON_0004052,quadrigeminal cistern,ambient cistern +http://purl.obolibrary.org/obo/UBERON_0004052,quadrigeminal cistern,cistern of great cerebral vein +http://purl.obolibrary.org/obo/UBERON_0004052,quadrigeminal cistern,cisterna ambiens +http://purl.obolibrary.org/obo/UBERON_0004052,quadrigeminal cistern,cisterna quadrigeminalis +http://purl.obolibrary.org/obo/UBERON_0004052,quadrigeminal cistern,cisterna venae magnae cerebri +http://purl.obolibrary.org/obo/UBERON_0004052,quadrigeminal cistern,superior cistern +http://purl.obolibrary.org/obo/UBERON_0004053,external male genitalia,external male genital organ +http://purl.obolibrary.org/obo/UBERON_0004053,external male genitalia,male external genitalia +http://purl.obolibrary.org/obo/UBERON_0004053,external male genitalia,organa genitalia masculina externa +http://purl.obolibrary.org/obo/UBERON_0004054,internal male genitalia,internal male genital organ +http://purl.obolibrary.org/obo/UBERON_0004054,internal male genitalia,male internal genitalia +http://purl.obolibrary.org/obo/UBERON_0004054,internal male genitalia,organa genitalia masculina interna +http://purl.obolibrary.org/obo/UBERON_0004055,primitive pit, +http://purl.obolibrary.org/obo/UBERON_0004056,primitive groove, +http://purl.obolibrary.org/obo/UBERON_0004057,skeletal muscle fiber triad, +http://purl.obolibrary.org/obo/UBERON_0004058,biliary ductule,bile ductule +http://purl.obolibrary.org/obo/UBERON_0004058,biliary ductule,biliary ductule +http://purl.obolibrary.org/obo/UBERON_0004058,biliary ductule,ductuli biliferi +http://purl.obolibrary.org/obo/UBERON_0004059,spinal cord medial motor column, +http://purl.obolibrary.org/obo/UBERON_0004060,neural tube ventricular layer,neural tube ependymal layer +http://purl.obolibrary.org/obo/UBERON_0004060,neural tube ventricular layer,neural tube ventricular germinal zone +http://purl.obolibrary.org/obo/UBERON_0004060,neural tube ventricular layer,neural tube ventricular zone +http://purl.obolibrary.org/obo/UBERON_0004061,neural tube mantle layer,neural tube intermediate zone +http://purl.obolibrary.org/obo/UBERON_0004062,neural tube marginal layer,neural tube marginal zone +http://purl.obolibrary.org/obo/UBERON_0004063,spinal cord alar plate,alar column spinal cord +http://purl.obolibrary.org/obo/UBERON_0004063,spinal cord alar plate,spinal cord alar column +http://purl.obolibrary.org/obo/UBERON_0004063,spinal cord alar plate,spinal cord alar lamina +http://purl.obolibrary.org/obo/UBERON_0004064,neural tube basal plate,basal plate +http://purl.obolibrary.org/obo/UBERON_0004064,neural tube basal plate,basal plate of neural tube +http://purl.obolibrary.org/obo/UBERON_0004066,frontonasal prominence,embryonic frontonasal prominence +http://purl.obolibrary.org/obo/UBERON_0004067,lateral nasal prominence,lateral nasal process +http://purl.obolibrary.org/obo/UBERON_0004067,lateral nasal prominence,latero-nasal process +http://purl.obolibrary.org/obo/UBERON_0004068,medial nasal prominence,medial nasal process +http://purl.obolibrary.org/obo/UBERON_0004068,medial nasal prominence,medial-nasal process +http://purl.obolibrary.org/obo/UBERON_0004068,medial nasal prominence,prominentia nasalis medialis +http://purl.obolibrary.org/obo/UBERON_0004069,Olfactory bulb accessory nucleus,accessory (vomeronasal) bulb +http://purl.obolibrary.org/obo/UBERON_0004069,Olfactory bulb accessory nucleus,accessory olfactory formation +http://purl.obolibrary.org/obo/UBERON_0004069,Olfactory bulb accessory nucleus,olfactory bulb accessory nucleus +http://purl.obolibrary.org/obo/UBERON_0004069,accessory olfactory bulb,accessory (vomeronasal) bulb +http://purl.obolibrary.org/obo/UBERON_0004069,accessory olfactory bulb,accessory olfactory formation +http://purl.obolibrary.org/obo/UBERON_0004069,accessory olfactory bulb,olfactory bulb accessory nucleus +http://purl.obolibrary.org/obo/UBERON_0004070,cerebellum vermis lobule,lobule of vermis +http://purl.obolibrary.org/obo/UBERON_0004073,cerebellum interpositus nucleus,interposed nucleus of cerebellum +http://purl.obolibrary.org/obo/UBERON_0004073,cerebellum interpositus nucleus,interposed nucleus of the cerebellum +http://purl.obolibrary.org/obo/UBERON_0004074,cerebellum vermis lobule I,lingula (I) +http://purl.obolibrary.org/obo/UBERON_0004074,cerebellum vermis lobule I,lingula of anterior cerebellum vermis +http://purl.obolibrary.org/obo/UBERON_0004074,cerebellum vermis lobule I,lingula of cerebellum +http://purl.obolibrary.org/obo/UBERON_0004074,cerebellum vermis lobule I,lobule I of cerebellum vermis +http://purl.obolibrary.org/obo/UBERON_0004074,cerebellum vermis lobule I,neuraxis lingula +http://purl.obolibrary.org/obo/UBERON_0004074,cerebellum vermis lobule I,vermic lobule I +http://purl.obolibrary.org/obo/UBERON_0004075,cerebellum vermis lobule II,lobule II +http://purl.obolibrary.org/obo/UBERON_0004075,cerebellum vermis lobule II,lobule II of cerebellum vermis +http://purl.obolibrary.org/obo/UBERON_0004075,cerebellum vermis lobule II,vermic lobule II +http://purl.obolibrary.org/obo/UBERON_0004076,cerebellum vermis lobule III,lobule III +http://purl.obolibrary.org/obo/UBERON_0004076,cerebellum vermis lobule III,lobule III of cerebellum vermis +http://purl.obolibrary.org/obo/UBERON_0004076,cerebellum vermis lobule III,vermic lobule III +http://purl.obolibrary.org/obo/UBERON_0004077,cerebellum vermis lobule IV,lobule IV of cerebellum vermis +http://purl.obolibrary.org/obo/UBERON_0004077,cerebellum vermis lobule IV,vermic lobule IV +http://purl.obolibrary.org/obo/UBERON_0004078,cerebellum vermis lobule IX,cerebellar posterior vermis lobule IX +http://purl.obolibrary.org/obo/UBERON_0004078,cerebellum vermis lobule IX,lobule IX of cerebellar posterior vermis +http://purl.obolibrary.org/obo/UBERON_0004078,cerebellum vermis lobule IX,lobule IX of cerebellum vermis +http://purl.obolibrary.org/obo/UBERON_0004078,cerebellum vermis lobule IX,neuraxis uvula +http://purl.obolibrary.org/obo/UBERON_0004078,cerebellum vermis lobule IX,uvula (IX) +http://purl.obolibrary.org/obo/UBERON_0004078,cerebellum vermis lobule IX,uvula [vermis] +http://purl.obolibrary.org/obo/UBERON_0004078,cerebellum vermis lobule IX,uvula of cerebellum +http://purl.obolibrary.org/obo/UBERON_0004078,cerebellum vermis lobule IX,uvula of vermis of cerebellum +http://purl.obolibrary.org/obo/UBERON_0004078,cerebellum vermis lobule IX,vermic lobule IX +http://purl.obolibrary.org/obo/UBERON_0004079,cerebellum vermis lobule V,lobule V +http://purl.obolibrary.org/obo/UBERON_0004079,cerebellum vermis lobule V,"lobule V (culmen and quadrangular lobule, posterior part)" +http://purl.obolibrary.org/obo/UBERON_0004079,cerebellum vermis lobule V,lobule V of cerebellum vermis +http://purl.obolibrary.org/obo/UBERON_0004079,cerebellum vermis lobule V,vermic lobule V +http://purl.obolibrary.org/obo/UBERON_0004080,cerebellum vermis lobule VI,declive (VI) +http://purl.obolibrary.org/obo/UBERON_0004080,cerebellum vermis lobule VI,declive of cerebellum +http://purl.obolibrary.org/obo/UBERON_0004080,cerebellum vermis lobule VI,declive of vermis of cerebellum +http://purl.obolibrary.org/obo/UBERON_0004080,cerebellum vermis lobule VI,lobule VI (declive and simplex lobule) +http://purl.obolibrary.org/obo/UBERON_0004080,cerebellum vermis lobule VI,lobule VI of cerebellum vermis +http://purl.obolibrary.org/obo/UBERON_0004080,cerebellum vermis lobule VI,neuraxis declive +http://purl.obolibrary.org/obo/UBERON_0004080,cerebellum vermis lobule VI,vermic lobule vi +http://purl.obolibrary.org/obo/UBERON_0004081,cerebellum vermis lobule VII,folium-tuber vermis (VII) +http://purl.obolibrary.org/obo/UBERON_0004081,cerebellum vermis lobule VII,lobule VII of cerebellum vermis +http://purl.obolibrary.org/obo/UBERON_0004081,cerebellum vermis lobule VII,vermic lobule VII +http://purl.obolibrary.org/obo/UBERON_0004082,cerebellum vermis lobule VIII,cerebellum lobule VIII +http://purl.obolibrary.org/obo/UBERON_0004082,cerebellum vermis lobule VIII,lobule VIII of cerebellum vermis +http://purl.obolibrary.org/obo/UBERON_0004082,cerebellum vermis lobule VIII,neuraxis pyramis +http://purl.obolibrary.org/obo/UBERON_0004082,cerebellum vermis lobule VIII,neuraxis pyramus +http://purl.obolibrary.org/obo/UBERON_0004082,cerebellum vermis lobule VIII,pyramis +http://purl.obolibrary.org/obo/UBERON_0004082,cerebellum vermis lobule VIII,pyramis of vermis of cerebellum +http://purl.obolibrary.org/obo/UBERON_0004082,cerebellum vermis lobule VIII,pyramus (VIII) +http://purl.obolibrary.org/obo/UBERON_0004082,cerebellum vermis lobule VIII,pyramus of cerebellum +http://purl.obolibrary.org/obo/UBERON_0004082,cerebellum vermis lobule VIII,pyramus of vermis of cerebellum +http://purl.obolibrary.org/obo/UBERON_0004082,cerebellum vermis lobule VIII,vermic lobule VIII +http://purl.obolibrary.org/obo/UBERON_0004083,cerebellum vermis lobule X,lobule X of cerebellum vermis +http://purl.obolibrary.org/obo/UBERON_0004083,cerebellum vermis lobule X,neuraxis nodule +http://purl.obolibrary.org/obo/UBERON_0004083,cerebellum vermis lobule X,neuraxis nodulus +http://purl.obolibrary.org/obo/UBERON_0004083,cerebellum vermis lobule X,nodulus (X) +http://purl.obolibrary.org/obo/UBERON_0004083,cerebellum vermis lobule X,nodulus of cerebellum +http://purl.obolibrary.org/obo/UBERON_0004083,cerebellum vermis lobule X,nodulus of vermis of cerebellum +http://purl.obolibrary.org/obo/UBERON_0004083,cerebellum vermis lobule X,vermic lobule X +http://purl.obolibrary.org/obo/UBERON_0004084,genital labium,genital labia +http://purl.obolibrary.org/obo/UBERON_0004084,genital labium,labia +http://purl.obolibrary.org/obo/UBERON_0004084,genital labium,labium +http://purl.obolibrary.org/obo/UBERON_0004085,labium majora,labia majorum +http://purl.obolibrary.org/obo/UBERON_0004085,labium majora,labium majora +http://purl.obolibrary.org/obo/UBERON_0004085,labium majora,labium majorum +http://purl.obolibrary.org/obo/UBERON_0004085,labium majora,labium majus +http://purl.obolibrary.org/obo/UBERON_0004085,labium majora,labium majus pudendi +http://purl.obolibrary.org/obo/UBERON_0004086,brain ventricle,brain ventricles +http://purl.obolibrary.org/obo/UBERON_0004086,brain ventricle,cerebral ventricle +http://purl.obolibrary.org/obo/UBERON_0004086,brain ventricle,region of ventricular system of brain +http://purl.obolibrary.org/obo/UBERON_0004087,vena cava, +http://purl.obolibrary.org/obo/UBERON_0004088,orbital region,content of orbital part of eye +http://purl.obolibrary.org/obo/UBERON_0004088,orbital region,eye region +http://purl.obolibrary.org/obo/UBERON_0004088,orbital region,ocular and peri-ocular region +http://purl.obolibrary.org/obo/UBERON_0004088,orbital region,ocular region +http://purl.obolibrary.org/obo/UBERON_0004088,orbital region,orbital content +http://purl.obolibrary.org/obo/UBERON_0004088,orbital region,orbital part of eye +http://purl.obolibrary.org/obo/UBERON_0004088,orbital region,orbital part of face +http://purl.obolibrary.org/obo/UBERON_0004089,midface,lower face +http://purl.obolibrary.org/obo/UBERON_0004089,midface,midface/lower face +http://purl.obolibrary.org/obo/UBERON_0004089,midface,snout +http://purl.obolibrary.org/obo/UBERON_0004090,periorbital region,periorbita +http://purl.obolibrary.org/obo/UBERON_0004090,periorbital region,periorbital area +http://purl.obolibrary.org/obo/UBERON_0004092,hypothalamus-pituitary axis, +http://purl.obolibrary.org/obo/UBERON_0004096,odontoid process of cervical vertebra 2,axis dens +http://purl.obolibrary.org/obo/UBERON_0004096,odontoid process of cervical vertebra 2,axis odontoid process +http://purl.obolibrary.org/obo/UBERON_0004096,odontoid process of cervical vertebra 2,cervical vertebra 2 odontoid process +http://purl.obolibrary.org/obo/UBERON_0004096,odontoid process of cervical vertebra 2,dens +http://purl.obolibrary.org/obo/UBERON_0004096,odontoid process of cervical vertebra 2,dens axis +http://purl.obolibrary.org/obo/UBERON_0004096,odontoid process of cervical vertebra 2,dens of axis +http://purl.obolibrary.org/obo/UBERON_0004096,odontoid process of cervical vertebra 2,odontoid process +http://purl.obolibrary.org/obo/UBERON_0004096,odontoid process of cervical vertebra 2,odontoid process of axis +http://purl.obolibrary.org/obo/UBERON_0004098,tibial plateaux, +http://purl.obolibrary.org/obo/UBERON_0004099,joint space of elbow,synovial cavity of elbow joint +http://purl.obolibrary.org/obo/UBERON_0004100,renal collecting system,collecting duct system +http://purl.obolibrary.org/obo/UBERON_0004100,renal collecting system,kidney collecting duct system +http://purl.obolibrary.org/obo/UBERON_0004101,nasolabial region, +http://purl.obolibrary.org/obo/UBERON_0004103,alveolar ridge,alveolar body +http://purl.obolibrary.org/obo/UBERON_0004103,alveolar ridge,alveolar bone +http://purl.obolibrary.org/obo/UBERON_0004103,alveolar ridge,alveolar margin +http://purl.obolibrary.org/obo/UBERON_0004103,alveolar ridge,alveolar process +http://purl.obolibrary.org/obo/UBERON_0004103,alveolar ridge,margo alveolaris +http://purl.obolibrary.org/obo/UBERON_0004104,hairline, +http://purl.obolibrary.org/obo/UBERON_0004105,subungual region, +http://purl.obolibrary.org/obo/UBERON_0004106,crus of ear,crus helicis +http://purl.obolibrary.org/obo/UBERON_0004106,crus of ear,crus of helical part of auricular cartilage +http://purl.obolibrary.org/obo/UBERON_0004106,crus of ear,crus of helix +http://purl.obolibrary.org/obo/UBERON_0004108,clivus of occipital bone,clivus +http://purl.obolibrary.org/obo/UBERON_0004108,clivus of occipital bone,occipital bone clivus +http://purl.obolibrary.org/obo/UBERON_0004109,cortex of humerus,compact bone of humerus +http://purl.obolibrary.org/obo/UBERON_0004109,cortex of humerus,cortex of the humerus +http://purl.obolibrary.org/obo/UBERON_0004109,cortex of humerus,humerus compact bone +http://purl.obolibrary.org/obo/UBERON_0004109,cortex of humerus,humerus cortical bone +http://purl.obolibrary.org/obo/UBERON_0004110,midnasal cavity, +http://purl.obolibrary.org/obo/UBERON_0004111,anatomical conduit,foramen +http://purl.obolibrary.org/obo/UBERON_0004111,anatomical conduit,foramina +http://purl.obolibrary.org/obo/UBERON_0004111,anatomical conduit,opening +http://purl.obolibrary.org/obo/UBERON_0004111,anatomical conduit,ostia +http://purl.obolibrary.org/obo/UBERON_0004111,anatomical conduit,ostium +http://purl.obolibrary.org/obo/UBERON_0004113,muscle of auditory ossicle,auditory ossicles muscle +http://purl.obolibrary.org/obo/UBERON_0004113,muscle of auditory ossicle,muscle of auditory ossicles +http://purl.obolibrary.org/obo/UBERON_0004113,muscle of auditory ossicle,muscle of tympanic cavity +http://purl.obolibrary.org/obo/UBERON_0004113,muscle of auditory ossicle,ossicular muscle +http://purl.obolibrary.org/obo/UBERON_0004113,muscle of auditory ossicle,tympanic cavity muscle +http://purl.obolibrary.org/obo/UBERON_0004114,tympanic cavity,anatomical cavity of middle ear +http://purl.obolibrary.org/obo/UBERON_0004114,tympanic cavity,cavitas tympani +http://purl.obolibrary.org/obo/UBERON_0004114,tympanic cavity,cavity of middle ear +http://purl.obolibrary.org/obo/UBERON_0004114,tympanic cavity,middle ear cavity +http://purl.obolibrary.org/obo/UBERON_0004114,tympanic cavity,middle-ear cavity +http://purl.obolibrary.org/obo/UBERON_0004115,blood vessel of tympanic cavity,anatomical cavity of middle ear blood vessel +http://purl.obolibrary.org/obo/UBERON_0004115,blood vessel of tympanic cavity,blood vessel of anatomical cavity of middle ear +http://purl.obolibrary.org/obo/UBERON_0004115,blood vessel of tympanic cavity,blood vessel of cavity of middle ear +http://purl.obolibrary.org/obo/UBERON_0004115,blood vessel of tympanic cavity,blood vessel of middle ear anatomical cavity +http://purl.obolibrary.org/obo/UBERON_0004115,blood vessel of tympanic cavity,blood vessel of middle ear cavity +http://purl.obolibrary.org/obo/UBERON_0004115,blood vessel of tympanic cavity,cavity of middle ear blood vessel +http://purl.obolibrary.org/obo/UBERON_0004115,blood vessel of tympanic cavity,middle ear anatomical cavity blood vessel +http://purl.obolibrary.org/obo/UBERON_0004115,blood vessel of tympanic cavity,middle ear blood vessel +http://purl.obolibrary.org/obo/UBERON_0004115,blood vessel of tympanic cavity,middle ear cavity blood vessel +http://purl.obolibrary.org/obo/UBERON_0004115,blood vessel of tympanic cavity,tympanic cavity blood vessel +http://purl.obolibrary.org/obo/UBERON_0004116,nerve of tympanic cavity,anatomical cavity of middle ear nerve +http://purl.obolibrary.org/obo/UBERON_0004116,nerve of tympanic cavity,cavity of middle ear nerve +http://purl.obolibrary.org/obo/UBERON_0004116,nerve of tympanic cavity,middle ear anatomical cavity nerve +http://purl.obolibrary.org/obo/UBERON_0004116,nerve of tympanic cavity,middle ear cavity nerve +http://purl.obolibrary.org/obo/UBERON_0004116,nerve of tympanic cavity,nerve of anatomical cavity of middle ear +http://purl.obolibrary.org/obo/UBERON_0004116,nerve of tympanic cavity,nerve of cavity of middle ear +http://purl.obolibrary.org/obo/UBERON_0004116,nerve of tympanic cavity,nerve of middle ear anatomical cavity +http://purl.obolibrary.org/obo/UBERON_0004116,nerve of tympanic cavity,nerve of middle ear cavity +http://purl.obolibrary.org/obo/UBERON_0004116,nerve of tympanic cavity,tympanic cavity nerve +http://purl.obolibrary.org/obo/UBERON_0004116,nerve of tympanic cavity,tympanic cavity nerves +http://purl.obolibrary.org/obo/UBERON_0004117,pharyngeal pouch,branchial pouch +http://purl.obolibrary.org/obo/UBERON_0004117,pharyngeal pouch,visceral pouch +http://purl.obolibrary.org/obo/UBERON_0004118,vasculature of iris,iris blood vessels +http://purl.obolibrary.org/obo/UBERON_0004118,vasculature of iris,iris vascular network +http://purl.obolibrary.org/obo/UBERON_0004118,vasculature of iris,iris vasculature +http://purl.obolibrary.org/obo/UBERON_0004118,vasculature of iris,vascular network of iris +http://purl.obolibrary.org/obo/UBERON_0004119,endoderm-derived structure, +http://purl.obolibrary.org/obo/UBERON_0004120,mesoderm-derived structure,mesodermal derivative +http://purl.obolibrary.org/obo/UBERON_0004121,ectoderm-derived structure,ectodermal deriviative +http://purl.obolibrary.org/obo/UBERON_0004122,genitourinary system,GU tract +http://purl.obolibrary.org/obo/UBERON_0004122,genitourinary system,UG tract +http://purl.obolibrary.org/obo/UBERON_0004122,genitourinary system,Urogenitalsystem +http://purl.obolibrary.org/obo/UBERON_0004122,genitourinary system,genito-urinary system +http://purl.obolibrary.org/obo/UBERON_0004122,genitourinary system,genitourinary tract +http://purl.obolibrary.org/obo/UBERON_0004122,genitourinary system,urogenital system +http://purl.obolibrary.org/obo/UBERON_0004122,genitourinary system,urogenital tract +http://purl.obolibrary.org/obo/UBERON_0004123,myocardial layer,layer of myocardium +http://purl.obolibrary.org/obo/UBERON_0004123,myocardial layer,myocardium layer +http://purl.obolibrary.org/obo/UBERON_0004124,myocardium trabecular layer,myocardial trabecular layer +http://purl.obolibrary.org/obo/UBERON_0004124,myocardium trabecular layer,trabecular layer +http://purl.obolibrary.org/obo/UBERON_0004125,myocardial compact layer,compact subepicardial layer +http://purl.obolibrary.org/obo/UBERON_0004125,myocardial compact layer,heart compact layer +http://purl.obolibrary.org/obo/UBERON_0004125,myocardial compact layer,myocardial compact layer +http://purl.obolibrary.org/obo/UBERON_0004125,myocardial compact layer,myocardium compact layer +http://purl.obolibrary.org/obo/UBERON_0004125,myocardial compact layer,subepicardial layer +http://purl.obolibrary.org/obo/UBERON_0004125,myocardial compact layer,subepicardium +http://purl.obolibrary.org/obo/UBERON_0004126,trabecular layer of ventricle,myocardium of region of ventricle +http://purl.obolibrary.org/obo/UBERON_0004126,trabecular layer of ventricle,trabecular cardiac ventricle muscle +http://purl.obolibrary.org/obo/UBERON_0004126,trabecular layer of ventricle,ventricular trabecular myocardium +http://purl.obolibrary.org/obo/UBERON_0004127,compact layer of ventricle,compact cardiac ventricle muscle +http://purl.obolibrary.org/obo/UBERON_0004127,compact layer of ventricle,ventricle myocardium compact zone +http://purl.obolibrary.org/obo/UBERON_0004127,compact layer of ventricle,ventricular compact myocardium +http://purl.obolibrary.org/obo/UBERON_0004127,compact layer of ventricle,ventricular myocardial compact layer +http://purl.obolibrary.org/obo/UBERON_0004127,compact layer of ventricle,ventricular myocardial compact zone +http://purl.obolibrary.org/obo/UBERON_0004128,optic vesicle, +http://purl.obolibrary.org/obo/UBERON_0004129,growth plate cartilage, +http://purl.obolibrary.org/obo/UBERON_0004130,cerebellar layer,cell layer of cerebellar cortex +http://purl.obolibrary.org/obo/UBERON_0004130,cerebellar layer,cytoarchitectural part of the cerebellar cortex +http://purl.obolibrary.org/obo/UBERON_0004130,cerebellar layer,gray matter layer of cerebellum +http://purl.obolibrary.org/obo/UBERON_0004130,cerebellar layer,layer of cerebellar cortex +http://purl.obolibrary.org/obo/UBERON_0004130,cerebellar layer,layer of cerebellum +http://purl.obolibrary.org/obo/UBERON_0004132,trigeminal sensory nucleus,sensory trigeminal V nucleus +http://purl.obolibrary.org/obo/UBERON_0004132,trigeminal sensory nucleus,sensory trigeminal nuclei +http://purl.obolibrary.org/obo/UBERON_0004132,trigeminal sensory nucleus,sensory trigeminal nucleus +http://purl.obolibrary.org/obo/UBERON_0004132,trigeminal sensory nucleus,trigeminal V sensory nucleus +http://purl.obolibrary.org/obo/UBERON_0004132,trigeminal sensory nucleus,trigeminal sensory nucleus +http://purl.obolibrary.org/obo/UBERON_0004133,salivatory nucleus,salivary nucleus +http://purl.obolibrary.org/obo/UBERON_0004134,proximal tubule,kidney proximal tubule +http://purl.obolibrary.org/obo/UBERON_0004134,proximal tubule,proximal kidney tubule +http://purl.obolibrary.org/obo/UBERON_0004134,proximal tubule,renal proximal tubule +http://purl.obolibrary.org/obo/UBERON_0004135,distal tubule,kidney distal tubule +http://purl.obolibrary.org/obo/UBERON_0004135,distal tubule,renal distal tubule +http://purl.obolibrary.org/obo/UBERON_0004136,intermediate tubule,renal intermediate tubule +http://purl.obolibrary.org/obo/UBERON_0004136,intermediate tubule,tubulus attenuatus +http://purl.obolibrary.org/obo/UBERON_0004138,somitomeric trunk muscle, +http://purl.obolibrary.org/obo/UBERON_0004139,cardiogenic plate,myocardial plate +http://purl.obolibrary.org/obo/UBERON_0004140,primary heart field,first heart field +http://purl.obolibrary.org/obo/UBERON_0004140,primary heart field,primary heart field +http://purl.obolibrary.org/obo/UBERON_0004141,heart tube,embryonic heart tube +http://purl.obolibrary.org/obo/UBERON_0004141,heart tube,endocardial heart tube +http://purl.obolibrary.org/obo/UBERON_0004141,heart tube,endocardial tube +http://purl.obolibrary.org/obo/UBERON_0004142,outflow tract septum, +http://purl.obolibrary.org/obo/UBERON_0004145,outflow tract,cardiac outflow tract +http://purl.obolibrary.org/obo/UBERON_0004145,outflow tract,heart outflow tract +http://purl.obolibrary.org/obo/UBERON_0004146,His-Purkinje system,HPS +http://purl.obolibrary.org/obo/UBERON_0004146,His-Purkinje system,His-Purkinji network +http://purl.obolibrary.org/obo/UBERON_0004146,His-Purkinje system,VCS +http://purl.obolibrary.org/obo/UBERON_0004146,His-Purkinje system,ventricular conduction system +http://purl.obolibrary.org/obo/UBERON_0004148,cardiac vein,cardiac vein +http://purl.obolibrary.org/obo/UBERON_0004148,cardiac vein,coronary vein +http://purl.obolibrary.org/obo/UBERON_0004148,cardiac vein,heart vein +http://purl.obolibrary.org/obo/UBERON_0004148,cardiac vein,vein of heart +http://purl.obolibrary.org/obo/UBERON_0004149,ventriculo bulbo valve,bulboventricular valve +http://purl.obolibrary.org/obo/UBERON_0004150,coronary sinus valve,thebesian valve +http://purl.obolibrary.org/obo/UBERON_0004150,coronary sinus valve,thebesius valve +http://purl.obolibrary.org/obo/UBERON_0004150,coronary sinus valve,valve of coronary sinus +http://purl.obolibrary.org/obo/UBERON_0004151,cardiac chamber,chamber of heart +http://purl.obolibrary.org/obo/UBERON_0004151,cardiac chamber,heart chamber +http://purl.obolibrary.org/obo/UBERON_0004152,bulbus arteriosus,truncus +http://purl.obolibrary.org/obo/UBERON_0004153,ventricular septum intermedium,septum intermedium +http://purl.obolibrary.org/obo/UBERON_0004154,atrial septum primum,atrial septum primum +http://purl.obolibrary.org/obo/UBERON_0004154,atrial septum primum,interatrial septum primum +http://purl.obolibrary.org/obo/UBERON_0004154,atrial septum primum,septum primum +http://purl.obolibrary.org/obo/UBERON_0004155,atrial septum secundum,interatrial septum secundum +http://purl.obolibrary.org/obo/UBERON_0004155,atrial septum secundum,septum secundum +http://purl.obolibrary.org/obo/UBERON_0004159,atrial septum intermedium, +http://purl.obolibrary.org/obo/UBERON_0004160,proepicardium,proepicardial cluster +http://purl.obolibrary.org/obo/UBERON_0004160,proepicardium,proepicardial organ +http://purl.obolibrary.org/obo/UBERON_0004161,septum transversum,transverse septum +http://purl.obolibrary.org/obo/UBERON_0004162,pulmonary myocardium, +http://purl.obolibrary.org/obo/UBERON_0004163,anterior ectodermal midgut, +http://purl.obolibrary.org/obo/UBERON_0004164,branchiomeric muscle,branchial head muscle +http://purl.obolibrary.org/obo/UBERON_0004164,branchiomeric muscle,branchiomeric skeletal muscle +http://purl.obolibrary.org/obo/UBERON_0004166,superior reticular formation, +http://purl.obolibrary.org/obo/UBERON_0004167,orbitofrontal cortex,fronto-orbital cortex +http://purl.obolibrary.org/obo/UBERON_0004167,orbitofrontal cortex,orbital frontal cortex +http://purl.obolibrary.org/obo/UBERON_0004167,orbitofrontal cortex,orbito-frontal cortex +http://purl.obolibrary.org/obo/UBERON_0004170,spinal cord ventral commissure,anterior white commissure +http://purl.obolibrary.org/obo/UBERON_0004170,spinal cord ventral commissure,anterior white commissure of spinal cord +http://purl.obolibrary.org/obo/UBERON_0004170,spinal cord ventral commissure,spinal cord anterior commissure +http://purl.obolibrary.org/obo/UBERON_0004170,spinal cord ventral commissure,ventral spinal commissure +http://purl.obolibrary.org/obo/UBERON_0004170,spinal cord ventral commissure,ventral white column +http://purl.obolibrary.org/obo/UBERON_0004170,spinal cord ventral commissure,ventral white commissure of spinal cord +http://purl.obolibrary.org/obo/UBERON_0004171,trigeminothalamic tract,tractus trigeminothalamicus +http://purl.obolibrary.org/obo/UBERON_0004172,pons reticulospinal tract, +http://purl.obolibrary.org/obo/UBERON_0004173,medulla reticulospinal tract,medullary reticulospinal tract +http://purl.obolibrary.org/obo/UBERON_0004175,internal genitalia,internal genitalia +http://purl.obolibrary.org/obo/UBERON_0004175,internal genitalia,internal genitals +http://purl.obolibrary.org/obo/UBERON_0004175,internal genitalia,internal reproductive organ +http://purl.obolibrary.org/obo/UBERON_0004175,internal genitalia,internal sex organ +http://purl.obolibrary.org/obo/UBERON_0004176,external genitalia,external genitalia +http://purl.obolibrary.org/obo/UBERON_0004176,external genitalia,external reproductive organ +http://purl.obolibrary.org/obo/UBERON_0004176,external genitalia,external sex organ +http://purl.obolibrary.org/obo/UBERON_0004177,hemopoietic organ,haematological system organ +http://purl.obolibrary.org/obo/UBERON_0004177,hemopoietic organ,haemopoietic system organ +http://purl.obolibrary.org/obo/UBERON_0004177,hemopoietic organ,hematopoeitic or lymphoid organ +http://purl.obolibrary.org/obo/UBERON_0004177,hemopoietic organ,hematopoeitic organ +http://purl.obolibrary.org/obo/UBERON_0004177,hemopoietic organ,hematopoietic system organ +http://purl.obolibrary.org/obo/UBERON_0004177,hemopoietic organ,lymph organ +http://purl.obolibrary.org/obo/UBERON_0004177,hemopoietic organ,lymphoid organ +http://purl.obolibrary.org/obo/UBERON_0004177,hemopoietic organ,organ of haematological system +http://purl.obolibrary.org/obo/UBERON_0004177,hemopoietic organ,organ of haemopoietic system +http://purl.obolibrary.org/obo/UBERON_0004177,hemopoietic organ,organ of hematopoietic system +http://purl.obolibrary.org/obo/UBERON_0004177,hemopoietic organ,organ of organa haemopoietica +http://purl.obolibrary.org/obo/UBERON_0004177,hemopoietic organ,organa haemopoietica organ +http://purl.obolibrary.org/obo/UBERON_0004178,aorta smooth muscle tissue,aorta non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004178,aorta smooth muscle tissue,aorta smooth muscle +http://purl.obolibrary.org/obo/UBERON_0004178,aorta smooth muscle tissue,aortic smooth muscle +http://purl.obolibrary.org/obo/UBERON_0004179,prostate glandular acinus,prostatic acinus +http://purl.obolibrary.org/obo/UBERON_0004179,prostate glandular acinus,prostatic follicle +http://purl.obolibrary.org/obo/UBERON_0004180,mammary gland fat,adipose tissue of lactiferous gland +http://purl.obolibrary.org/obo/UBERON_0004180,mammary gland fat,adipose tissue of mammary gland +http://purl.obolibrary.org/obo/UBERON_0004180,mammary gland fat,fat tissue of lactiferous gland +http://purl.obolibrary.org/obo/UBERON_0004180,mammary gland fat,fat tissue of lobe of breast +http://purl.obolibrary.org/obo/UBERON_0004180,mammary gland fat,fat tissue of lobe of mammary gland +http://purl.obolibrary.org/obo/UBERON_0004180,mammary gland fat,fat tissue of mammary gland +http://purl.obolibrary.org/obo/UBERON_0004180,mammary gland fat,fatty tissue of lactiferous gland +http://purl.obolibrary.org/obo/UBERON_0004180,mammary gland fat,fatty tissue of lobe of breast +http://purl.obolibrary.org/obo/UBERON_0004180,mammary gland fat,fatty tissue of lobe of mammary gland +http://purl.obolibrary.org/obo/UBERON_0004180,mammary gland fat,fatty tissue of mammary gland +http://purl.obolibrary.org/obo/UBERON_0004180,mammary gland fat,lactiferous gland adipose tissue +http://purl.obolibrary.org/obo/UBERON_0004180,mammary gland fat,lactiferous gland fat tissue +http://purl.obolibrary.org/obo/UBERON_0004180,mammary gland fat,lactiferous gland fatty tissue +http://purl.obolibrary.org/obo/UBERON_0004180,mammary gland fat,lobe of breast adipose tissue +http://purl.obolibrary.org/obo/UBERON_0004180,mammary gland fat,lobe of breast fat tissue +http://purl.obolibrary.org/obo/UBERON_0004180,mammary gland fat,lobe of breast fatty tissue +http://purl.obolibrary.org/obo/UBERON_0004180,mammary gland fat,lobe of mammary gland adipose tissue +http://purl.obolibrary.org/obo/UBERON_0004180,mammary gland fat,lobe of mammary gland fat tissue +http://purl.obolibrary.org/obo/UBERON_0004180,mammary gland fat,lobe of mammary gland fatty tissue +http://purl.obolibrary.org/obo/UBERON_0004180,mammary gland fat,mammary gland adipose tissue +http://purl.obolibrary.org/obo/UBERON_0004180,mammary gland fat,mammary gland fat tissue +http://purl.obolibrary.org/obo/UBERON_0004180,mammary gland fat,mammary gland fatty tissue +http://purl.obolibrary.org/obo/UBERON_0004182,mammary gland cord,lactiferous gland cord +http://purl.obolibrary.org/obo/UBERON_0004182,mammary gland cord,mammary cord +http://purl.obolibrary.org/obo/UBERON_0004183,placental labyrinth blood vessel,blood vessel of labyrinthine layer +http://purl.obolibrary.org/obo/UBERON_0004183,placental labyrinth blood vessel,blood vessel of labyrinthine layer of placenta +http://purl.obolibrary.org/obo/UBERON_0004183,placental labyrinth blood vessel,blood vessel of placenta labyrinth +http://purl.obolibrary.org/obo/UBERON_0004183,placental labyrinth blood vessel,labyrinthine layer blood vessel +http://purl.obolibrary.org/obo/UBERON_0004183,placental labyrinth blood vessel,labyrinthine layer of placenta blood vessel +http://purl.obolibrary.org/obo/UBERON_0004183,placental labyrinth blood vessel,placenta labyrinth blood vessel +http://purl.obolibrary.org/obo/UBERON_0004184,prostate gland stroma,prostate stroma +http://purl.obolibrary.org/obo/UBERON_0004184,prostate gland stroma,prostatic stroma +http://purl.obolibrary.org/obo/UBERON_0004184,prostate gland stroma,stroma of prostate +http://purl.obolibrary.org/obo/UBERON_0004184,prostate gland stroma,stroma of prostate gland +http://purl.obolibrary.org/obo/UBERON_0004185,endodermal part of digestive tract,endodermal gut +http://purl.obolibrary.org/obo/UBERON_0004185,endodermal part of digestive tract,gut endoderm +http://purl.obolibrary.org/obo/UBERON_0004186,olfactory bulb mitral cell layer,OB mitral cell layer +http://purl.obolibrary.org/obo/UBERON_0004186,olfactory bulb mitral cell layer,mitral cell body layer +http://purl.obolibrary.org/obo/UBERON_0004186,olfactory bulb mitral cell layer,mitral cell layer +http://purl.obolibrary.org/obo/UBERON_0004186,olfactory bulb mitral cell layer,mitral cell layer of the olfactory bulb +http://purl.obolibrary.org/obo/UBERON_0004186,olfactory bulb mitral cell layer,olfactory bulb main mitral cell body layer +http://purl.obolibrary.org/obo/UBERON_0004187,Harderian gland,Hardarian gland +http://purl.obolibrary.org/obo/UBERON_0004187,Harderian gland,Harder's gland +http://purl.obolibrary.org/obo/UBERON_0004187,Harderian gland,gland of Hardarian +http://purl.obolibrary.org/obo/UBERON_0004187,Harderian gland,glandula palpebra tertia profundus +http://purl.obolibrary.org/obo/UBERON_0004188,glomerular epithelium,epithelium of glomerulus +http://purl.obolibrary.org/obo/UBERON_0004188,glomerular epithelium,epithelium of kidney glomerulus +http://purl.obolibrary.org/obo/UBERON_0004188,glomerular epithelium,epithelium of renal glomerulus +http://purl.obolibrary.org/obo/UBERON_0004188,glomerular epithelium,kidney glomerular epithelium +http://purl.obolibrary.org/obo/UBERON_0004189,glomerular endothelium,endothelium of renal glomerulus +http://purl.obolibrary.org/obo/UBERON_0004189,glomerular endothelium,renal glomerulus endothelium +http://purl.obolibrary.org/obo/UBERON_0004190,renal glomerulus vasculature,glomerulus vasculature +http://purl.obolibrary.org/obo/UBERON_0004190,renal glomerulus vasculature,renal glomerulus vascular network +http://purl.obolibrary.org/obo/UBERON_0004190,renal glomerulus vasculature,renal glomerulus vasculature +http://purl.obolibrary.org/obo/UBERON_0004190,renal glomerulus vasculature,vascular network of renal glomerulus +http://purl.obolibrary.org/obo/UBERON_0004190,renal glomerulus vasculature,vasculature of renal glomerulus +http://purl.obolibrary.org/obo/UBERON_0004193,loop of Henle ascending limb thin segment,ascending limb thin segment of loop of Henle +http://purl.obolibrary.org/obo/UBERON_0004193,loop of Henle ascending limb thin segment,ascending thin limb +http://purl.obolibrary.org/obo/UBERON_0004193,loop of Henle ascending limb thin segment,pars ascendens (tubulus attenuatus) +http://purl.obolibrary.org/obo/UBERON_0004193,loop of Henle ascending limb thin segment,thin ascending limb +http://purl.obolibrary.org/obo/UBERON_0004193,loop of Henle ascending limb thin segment,thin ascending limb of loop of Henle +http://purl.obolibrary.org/obo/UBERON_0004194,long nephron, +http://purl.obolibrary.org/obo/UBERON_0004195,short nephron, +http://purl.obolibrary.org/obo/UBERON_0004196,proximal convoluted tubule segment 1,S1 portion of renal tubule +http://purl.obolibrary.org/obo/UBERON_0004196,proximal convoluted tubule segment 1,S1 portion of tubule +http://purl.obolibrary.org/obo/UBERON_0004196,proximal convoluted tubule segment 1,proximal tubule segment 1 +http://purl.obolibrary.org/obo/UBERON_0004196,proximal convoluted tubule segment 1,segment 1 of proximal tubule +http://purl.obolibrary.org/obo/UBERON_0004197,proximal convoluted tubule segment 2,S2 portion of renal tubule +http://purl.obolibrary.org/obo/UBERON_0004197,proximal convoluted tubule segment 2,S2 portion of tubule +http://purl.obolibrary.org/obo/UBERON_0004197,proximal convoluted tubule segment 2,proximal tubule segment 2 +http://purl.obolibrary.org/obo/UBERON_0004197,proximal convoluted tubule segment 2,segment 2 of proximal tubule +http://purl.obolibrary.org/obo/UBERON_0004198,comma-shaped body,CSB +http://purl.obolibrary.org/obo/UBERON_0004199,S-shaped body,SSB +http://purl.obolibrary.org/obo/UBERON_0004199,S-shaped body,stage II nephron +http://purl.obolibrary.org/obo/UBERON_0004200,kidney pyramid,Malpighian pyramid +http://purl.obolibrary.org/obo/UBERON_0004200,kidney pyramid,renal pyramid +http://purl.obolibrary.org/obo/UBERON_0004201,kidney outer medulla inner stripe,inner stripe +http://purl.obolibrary.org/obo/UBERON_0004201,kidney outer medulla inner stripe,inner stripe of medulla of kidney +http://purl.obolibrary.org/obo/UBERON_0004201,kidney outer medulla inner stripe,inner stripe of outer medulla +http://purl.obolibrary.org/obo/UBERON_0004201,kidney outer medulla inner stripe,inner stripe of renal medulla +http://purl.obolibrary.org/obo/UBERON_0004201,kidney outer medulla inner stripe,outer medulla inner stripe +http://purl.obolibrary.org/obo/UBERON_0004201,kidney outer medulla inner stripe,stria interna medullae renalis +http://purl.obolibrary.org/obo/UBERON_0004202,kidney outer medulla outer stripe,outer medulla outer stripe +http://purl.obolibrary.org/obo/UBERON_0004202,kidney outer medulla outer stripe,outer stripe +http://purl.obolibrary.org/obo/UBERON_0004202,kidney outer medulla outer stripe,outer stripe of medulla of kidney +http://purl.obolibrary.org/obo/UBERON_0004202,kidney outer medulla outer stripe,outer stripe of outer medulla +http://purl.obolibrary.org/obo/UBERON_0004202,kidney outer medulla outer stripe,outer stripe of renal medulla +http://purl.obolibrary.org/obo/UBERON_0004202,kidney outer medulla outer stripe,stria externa medullae renalis +http://purl.obolibrary.org/obo/UBERON_0004203,cortical collecting duct,kidney cortex collecting duct +http://purl.obolibrary.org/obo/UBERON_0004204,outer medullary collecting duct,kidney outer medulla collecting duct +http://purl.obolibrary.org/obo/UBERON_0004204,outer medullary collecting duct,outer renal medulla collecting duct +http://purl.obolibrary.org/obo/UBERON_0004205,inner medullary collecting duct,inner renal medulla collecting duct +http://purl.obolibrary.org/obo/UBERON_0004205,inner medullary collecting duct,kidney inner medulla collecting duct +http://purl.obolibrary.org/obo/UBERON_0004206,long descending thin limb bend, +http://purl.obolibrary.org/obo/UBERON_0004207,prebend segment of loop of Henle, +http://purl.obolibrary.org/obo/UBERON_0004208,nephrogenic mesenchyme,mesenchyme of nephron +http://purl.obolibrary.org/obo/UBERON_0004208,nephrogenic mesenchyme,nephron mesenchyme +http://purl.obolibrary.org/obo/UBERON_0004209,renal vesicle,stage I nephron +http://purl.obolibrary.org/obo/UBERON_0004211,nephron epithelium,epithelial tissue of nephron +http://purl.obolibrary.org/obo/UBERON_0004211,nephron epithelium,epithelium of nephron +http://purl.obolibrary.org/obo/UBERON_0004211,nephron epithelium,nephron epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0004212,glomerular capillary,blood capillary of renal glomerulus +http://purl.obolibrary.org/obo/UBERON_0004212,glomerular capillary,capillary of renal glomerulus +http://purl.obolibrary.org/obo/UBERON_0004212,glomerular capillary,capillary vessel of renal glomerulus +http://purl.obolibrary.org/obo/UBERON_0004212,glomerular capillary,renal glomerulus blood capillary +http://purl.obolibrary.org/obo/UBERON_0004212,glomerular capillary,renal glomerulus capillary +http://purl.obolibrary.org/obo/UBERON_0004212,glomerular capillary,renal glomerulus capillary vessel +http://purl.obolibrary.org/obo/UBERON_0004214,upper leg nerve,hind limb stylopod nerve +http://purl.obolibrary.org/obo/UBERON_0004214,upper leg nerve,hindlimb stylopod nerve +http://purl.obolibrary.org/obo/UBERON_0004214,upper leg nerve,lower extremity stylopod nerve +http://purl.obolibrary.org/obo/UBERON_0004214,upper leg nerve,thigh RELATED +http://purl.obolibrary.org/obo/UBERON_0004215,back nerve,nerve of back +http://purl.obolibrary.org/obo/UBERON_0004216,lower arm nerve, +http://purl.obolibrary.org/obo/UBERON_0004217,upper arm nerve, +http://purl.obolibrary.org/obo/UBERON_0004218,lower leg nerve, +http://purl.obolibrary.org/obo/UBERON_0004219,urethra smooth muscle layer,muscle layer of urethra +http://purl.obolibrary.org/obo/UBERON_0004219,urethra smooth muscle layer,muscular coat of urethra +http://purl.obolibrary.org/obo/UBERON_0004219,urethra smooth muscle layer,muscular layer of urethra +http://purl.obolibrary.org/obo/UBERON_0004219,urethra smooth muscle layer,smooth muscle of urethra +http://purl.obolibrary.org/obo/UBERON_0004219,urethra smooth muscle layer,smooth muscle tissue of urethra +http://purl.obolibrary.org/obo/UBERON_0004219,urethra smooth muscle layer,tunica muscularis urethrae +http://purl.obolibrary.org/obo/UBERON_0004219,urethra smooth muscle layer,urethra smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004220,large intestine smooth muscle,involuntary muscle of large intestine +http://purl.obolibrary.org/obo/UBERON_0004220,large intestine smooth muscle,large intestine involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004220,large intestine smooth muscle,large intestine non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004220,large intestine smooth muscle,large intestine smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004220,large intestine smooth muscle,non-striated muscle of large intestine +http://purl.obolibrary.org/obo/UBERON_0004220,large intestine smooth muscle,smooth muscle of large intestine +http://purl.obolibrary.org/obo/UBERON_0004220,large intestine smooth muscle,smooth muscle tissue of large intestine +http://purl.obolibrary.org/obo/UBERON_0004221,intestine smooth muscle,bowel involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004221,intestine smooth muscle,bowel non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004221,intestine smooth muscle,bowel smooth muscle +http://purl.obolibrary.org/obo/UBERON_0004221,intestine smooth muscle,bowel smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004221,intestine smooth muscle,intestinal muscularis +http://purl.obolibrary.org/obo/UBERON_0004221,intestine smooth muscle,intestinal smooth muscle +http://purl.obolibrary.org/obo/UBERON_0004221,intestine smooth muscle,intestine involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004221,intestine smooth muscle,intestine non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004221,intestine smooth muscle,intestine smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004221,intestine smooth muscle,involuntary muscle of bowel +http://purl.obolibrary.org/obo/UBERON_0004221,intestine smooth muscle,involuntary muscle of intestine +http://purl.obolibrary.org/obo/UBERON_0004221,intestine smooth muscle,non-striated muscle of bowel +http://purl.obolibrary.org/obo/UBERON_0004221,intestine smooth muscle,non-striated muscle of intestine +http://purl.obolibrary.org/obo/UBERON_0004221,intestine smooth muscle,smooth muscle of bowel +http://purl.obolibrary.org/obo/UBERON_0004221,intestine smooth muscle,smooth muscle of intestine +http://purl.obolibrary.org/obo/UBERON_0004221,intestine smooth muscle,smooth muscle tissue of bowel +http://purl.obolibrary.org/obo/UBERON_0004221,intestine smooth muscle,smooth muscle tissue of intestine +http://purl.obolibrary.org/obo/UBERON_0004222,stomach smooth muscle,gastric muscle +http://purl.obolibrary.org/obo/UBERON_0004222,stomach smooth muscle,gastric smooth muscle +http://purl.obolibrary.org/obo/UBERON_0004222,stomach smooth muscle,involuntary muscle of stomach +http://purl.obolibrary.org/obo/UBERON_0004222,stomach smooth muscle,involuntary muscle of ventriculus +http://purl.obolibrary.org/obo/UBERON_0004222,stomach smooth muscle,non-striated muscle of stomach +http://purl.obolibrary.org/obo/UBERON_0004222,stomach smooth muscle,non-striated muscle of ventriculus +http://purl.obolibrary.org/obo/UBERON_0004222,stomach smooth muscle,smooth muscle of stomach +http://purl.obolibrary.org/obo/UBERON_0004222,stomach smooth muscle,smooth muscle of ventriculus +http://purl.obolibrary.org/obo/UBERON_0004222,stomach smooth muscle,smooth muscle tissue of stomach +http://purl.obolibrary.org/obo/UBERON_0004222,stomach smooth muscle,smooth muscle tissue of ventriculus +http://purl.obolibrary.org/obo/UBERON_0004222,stomach smooth muscle,stomach involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004222,stomach smooth muscle,stomach muscle +http://purl.obolibrary.org/obo/UBERON_0004222,stomach smooth muscle,stomach non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004222,stomach smooth muscle,stomach smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004222,stomach smooth muscle,ventriculus involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004222,stomach smooth muscle,ventriculus non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004222,stomach smooth muscle,ventriculus smooth muscle +http://purl.obolibrary.org/obo/UBERON_0004222,stomach smooth muscle,ventriculus smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004223,vagina smooth muscle,involuntary muscle of vagina +http://purl.obolibrary.org/obo/UBERON_0004223,vagina smooth muscle,non-striated muscle of vagina +http://purl.obolibrary.org/obo/UBERON_0004223,vagina smooth muscle,smooth muscle of vagina +http://purl.obolibrary.org/obo/UBERON_0004223,vagina smooth muscle,smooth muscle tissue of vagina +http://purl.obolibrary.org/obo/UBERON_0004223,vagina smooth muscle,vagina involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004223,vagina smooth muscle,vagina non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004223,vagina smooth muscle,vagina smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004223,vagina smooth muscle,vaginal smooth muscle +http://purl.obolibrary.org/obo/UBERON_0004224,muscular coat of vas deferens,muscle layer of deferent duct +http://purl.obolibrary.org/obo/UBERON_0004224,muscular coat of vas deferens,muscle layer of ductus deferens +http://purl.obolibrary.org/obo/UBERON_0004224,muscular coat of vas deferens,muscle layer of vas deferens +http://purl.obolibrary.org/obo/UBERON_0004224,muscular coat of vas deferens,muscular coat of ductus deferens +http://purl.obolibrary.org/obo/UBERON_0004224,muscular coat of vas deferens,muscular layer of ductus deferens +http://purl.obolibrary.org/obo/UBERON_0004224,muscular coat of vas deferens,muscularis of vas deferens +http://purl.obolibrary.org/obo/UBERON_0004224,muscular coat of vas deferens,tunica muscularis (ductus deferens) +http://purl.obolibrary.org/obo/UBERON_0004224,muscular coat of vas deferens,tunica muscularis ductus deferentis +http://purl.obolibrary.org/obo/UBERON_0004225,respiratory system smooth muscle,respiratory smooth muscle +http://purl.obolibrary.org/obo/UBERON_0004225,respiratory system smooth muscle,smooth muscle of respiratory system +http://purl.obolibrary.org/obo/UBERON_0004226,gastrointestinal system smooth muscle,smooth muscle tissue of gastrointestinal system +http://purl.obolibrary.org/obo/UBERON_0004227,kidney pelvis smooth muscle,kidney pelvis smooth muscle +http://purl.obolibrary.org/obo/UBERON_0004227,kidney pelvis smooth muscle,renal pelvis smooth muscle +http://purl.obolibrary.org/obo/UBERON_0004227,kidney pelvis smooth muscle,smooth muscle tissue of renal pelvis +http://purl.obolibrary.org/obo/UBERON_0004228,urinary bladder smooth muscle,bladder involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004228,urinary bladder smooth muscle,bladder non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004228,urinary bladder smooth muscle,bladder smooth muscle +http://purl.obolibrary.org/obo/UBERON_0004228,urinary bladder smooth muscle,bladder smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004228,urinary bladder smooth muscle,involuntary muscle of bladder +http://purl.obolibrary.org/obo/UBERON_0004228,urinary bladder smooth muscle,involuntary muscle of urinary bladder +http://purl.obolibrary.org/obo/UBERON_0004228,urinary bladder smooth muscle,non-striated muscle of bladder +http://purl.obolibrary.org/obo/UBERON_0004228,urinary bladder smooth muscle,non-striated muscle of urinary bladder +http://purl.obolibrary.org/obo/UBERON_0004228,urinary bladder smooth muscle,smooth muscle of bladder +http://purl.obolibrary.org/obo/UBERON_0004228,urinary bladder smooth muscle,smooth muscle of urinary bladder +http://purl.obolibrary.org/obo/UBERON_0004228,urinary bladder smooth muscle,smooth muscle tissue of bladder +http://purl.obolibrary.org/obo/UBERON_0004228,urinary bladder smooth muscle,smooth muscle tissue of urinary bladder +http://purl.obolibrary.org/obo/UBERON_0004228,urinary bladder smooth muscle,urinary bladder involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004228,urinary bladder smooth muscle,urinary bladder muscle +http://purl.obolibrary.org/obo/UBERON_0004228,urinary bladder smooth muscle,urinary bladder non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004228,urinary bladder smooth muscle,urinary bladder smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,Lieutaud's trigone involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,Lieutaud's trigone non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,Lieutaud's trigone smooth muscle +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,Lieutaud's trigone smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,deep trigone involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,deep trigone non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,deep trigone smooth muscle +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,deep trigone smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,involuntary muscle of Lieutaud's trigone +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,involuntary muscle of deep trigone +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,involuntary muscle of trigone of bladder +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,involuntary muscle of trigone of urinary bladder +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,involuntary muscle of urinary bladder trigone +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,involuntary muscle of vesical trigone +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,non-striated muscle of Lieutaud's trigone +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,non-striated muscle of deep trigone +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,non-striated muscle of trigone of bladder +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,non-striated muscle of trigone of urinary bladder +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,non-striated muscle of urinary bladder trigone +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,non-striated muscle of vesical trigone +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,smooth muscle of Lieutaud's trigone +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,smooth muscle of deep trigone +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,smooth muscle of trigone of bladder +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,smooth muscle of trigone of urinary bladder +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,smooth muscle of urinary bladder trigone +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,smooth muscle of vesical trigone +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,smooth muscle tissue of Lieutaud's trigone +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,smooth muscle tissue of deep trigone +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,smooth muscle tissue of trigone of bladder +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,smooth muscle tissue of trigone of urinary bladder +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,smooth muscle tissue of urinary bladder trigone +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,smooth muscle tissue of vesical trigone +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,trigone of bladder involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,trigone of bladder non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,trigone of bladder smooth muscle +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,trigone of bladder smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,trigone of urinary bladder involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,trigone of urinary bladder non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,trigone of urinary bladder smooth muscle +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,trigone of urinary bladder smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,urinary bladder trigone involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,urinary bladder trigone muscle +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,urinary bladder trigone non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,urinary bladder trigone smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,vesical trigone involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,vesical trigone non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,vesical trigone smooth muscle +http://purl.obolibrary.org/obo/UBERON_0004229,urinary bladder trigone smooth muscle,vesical trigone smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,bladder neck involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,bladder neck non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,bladder neck smooth muscle +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,bladder neck smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,involuntary muscle of bladder neck +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,involuntary muscle of neck of bladder +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,involuntary muscle of neck of urinary bladder +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,involuntary muscle of urinary bladder neck +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,involuntary muscle of vesical neck +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,neck of bladder involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,neck of bladder non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,neck of bladder smooth muscle +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,neck of bladder smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,neck of urinary bladder involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,neck of urinary bladder non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,neck of urinary bladder smooth muscle +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,neck of urinary bladder smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,non-striated muscle of bladder neck +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,non-striated muscle of neck of bladder +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,non-striated muscle of neck of urinary bladder +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,non-striated muscle of urinary bladder neck +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,non-striated muscle of vesical neck +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,smooth muscle of bladder neck +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,smooth muscle of neck of bladder +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,smooth muscle of neck of urinary bladder +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,smooth muscle of urinary bladder neck +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,smooth muscle of vesical neck +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,smooth muscle tissue of bladder neck +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,smooth muscle tissue of neck of bladder +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,smooth muscle tissue of neck of urinary bladder +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,smooth muscle tissue of urinary bladder neck +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,smooth muscle tissue of vesical neck +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,trigonal muscle +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,trigonal muscle of urinary bladder +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,urinary bladder neck involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,urinary bladder neck muscle +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,urinary bladder neck non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,urinary bladder neck smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,vesical neck involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,vesical neck non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,vesical neck smooth muscle +http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle,vesical neck smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004231,anal region smooth muscle,anal part of perineum involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004231,anal region smooth muscle,anal part of perineum non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004231,anal region smooth muscle,anal part of perineum smooth muscle +http://purl.obolibrary.org/obo/UBERON_0004231,anal region smooth muscle,anal part of perineum smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004231,anal region smooth muscle,anal region involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004231,anal region smooth muscle,anal region non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004231,anal region smooth muscle,anal region smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004231,anal region smooth muscle,anal triangle involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004231,anal region smooth muscle,anal triangle non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004231,anal region smooth muscle,anal triangle smooth muscle +http://purl.obolibrary.org/obo/UBERON_0004231,anal region smooth muscle,anal triangle smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004231,anal region smooth muscle,involuntary muscle of anal part of perineum +http://purl.obolibrary.org/obo/UBERON_0004231,anal region smooth muscle,involuntary muscle of anal region +http://purl.obolibrary.org/obo/UBERON_0004231,anal region smooth muscle,involuntary muscle of anal triangle +http://purl.obolibrary.org/obo/UBERON_0004231,anal region smooth muscle,non-striated muscle of anal part of perineum +http://purl.obolibrary.org/obo/UBERON_0004231,anal region smooth muscle,non-striated muscle of anal region +http://purl.obolibrary.org/obo/UBERON_0004231,anal region smooth muscle,non-striated muscle of anal triangle +http://purl.obolibrary.org/obo/UBERON_0004231,anal region smooth muscle,smooth muscle of anal part of perineum +http://purl.obolibrary.org/obo/UBERON_0004231,anal region smooth muscle,smooth muscle of anal region +http://purl.obolibrary.org/obo/UBERON_0004231,anal region smooth muscle,smooth muscle of anal triangle +http://purl.obolibrary.org/obo/UBERON_0004231,anal region smooth muscle,smooth muscle tissue of anal part of perineum +http://purl.obolibrary.org/obo/UBERON_0004231,anal region smooth muscle,smooth muscle tissue of anal region +http://purl.obolibrary.org/obo/UBERON_0004231,anal region smooth muscle,smooth muscle tissue of anal triangle +http://purl.obolibrary.org/obo/UBERON_0004232,lymphatic vessel smooth muscle,involuntary muscle of lymph vessel +http://purl.obolibrary.org/obo/UBERON_0004232,lymphatic vessel smooth muscle,involuntary muscle of lymphatic vessel +http://purl.obolibrary.org/obo/UBERON_0004232,lymphatic vessel smooth muscle,lymph vessel involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004232,lymphatic vessel smooth muscle,lymph vessel non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004232,lymphatic vessel smooth muscle,lymph vessel smooth muscle +http://purl.obolibrary.org/obo/UBERON_0004232,lymphatic vessel smooth muscle,lymph vessel smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004232,lymphatic vessel smooth muscle,lymphatic vessel involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004232,lymphatic vessel smooth muscle,lymphatic vessel non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004232,lymphatic vessel smooth muscle,lymphatic vessel smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004232,lymphatic vessel smooth muscle,non-striated muscle of lymph vessel +http://purl.obolibrary.org/obo/UBERON_0004232,lymphatic vessel smooth muscle,non-striated muscle of lymphatic vessel +http://purl.obolibrary.org/obo/UBERON_0004232,lymphatic vessel smooth muscle,smooth muscle of lymph vessel +http://purl.obolibrary.org/obo/UBERON_0004232,lymphatic vessel smooth muscle,smooth muscle of lymphatic vessel +http://purl.obolibrary.org/obo/UBERON_0004232,lymphatic vessel smooth muscle,smooth muscle tissue of lymph vessel +http://purl.obolibrary.org/obo/UBERON_0004232,lymphatic vessel smooth muscle,smooth muscle tissue of lymphatic vessel +http://purl.obolibrary.org/obo/UBERON_0004233,lower respiratory tract smooth muscle,involuntary muscle of lower respiratory tract +http://purl.obolibrary.org/obo/UBERON_0004233,lower respiratory tract smooth muscle,lower respiratory tract involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004233,lower respiratory tract smooth muscle,lower respiratory tract non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004233,lower respiratory tract smooth muscle,lower respiratory tract smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004233,lower respiratory tract smooth muscle,non-striated muscle of lower respiratory tract +http://purl.obolibrary.org/obo/UBERON_0004233,lower respiratory tract smooth muscle,smooth muscle of lower respiratory tract +http://purl.obolibrary.org/obo/UBERON_0004233,lower respiratory tract smooth muscle,smooth muscle tissue of lower respiratory tract +http://purl.obolibrary.org/obo/UBERON_0004234,iris smooth muscle,involuntary muscle of iris +http://purl.obolibrary.org/obo/UBERON_0004234,iris smooth muscle,iridial smooth muscle +http://purl.obolibrary.org/obo/UBERON_0004234,iris smooth muscle,iris involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004234,iris smooth muscle,iris non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004234,iris smooth muscle,iris smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004234,iris smooth muscle,non-striated muscle of iris +http://purl.obolibrary.org/obo/UBERON_0004234,iris smooth muscle,smooth muscle of iris +http://purl.obolibrary.org/obo/UBERON_0004234,iris smooth muscle,smooth muscle tissue of iris +http://purl.obolibrary.org/obo/UBERON_0004235,mammary gland smooth muscle,smooth muscle tissue of mammary gland +http://purl.obolibrary.org/obo/UBERON_0004236,arteriole smooth muscle, +http://purl.obolibrary.org/obo/UBERON_0004237,blood vessel smooth muscle,blood vessel involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004237,blood vessel smooth muscle,blood vessel non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004237,blood vessel smooth muscle,blood vessel smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004237,blood vessel smooth muscle,involuntary muscle of blood vessel +http://purl.obolibrary.org/obo/UBERON_0004237,blood vessel smooth muscle,non-striated muscle of blood vessel +http://purl.obolibrary.org/obo/UBERON_0004237,blood vessel smooth muscle,smooth muscle of blood vessel +http://purl.obolibrary.org/obo/UBERON_0004237,blood vessel smooth muscle,smooth muscle tissue of blood vessel +http://purl.obolibrary.org/obo/UBERON_0004237,blood vessel smooth muscle,vascular smooth muscle +http://purl.obolibrary.org/obo/UBERON_0004237,blood vessel smooth muscle,vascular smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004238,spleen smooth muscle,involuntary muscle of spleen +http://purl.obolibrary.org/obo/UBERON_0004238,spleen smooth muscle,non-striated muscle of spleen +http://purl.obolibrary.org/obo/UBERON_0004238,spleen smooth muscle,smooth muscle of spleen +http://purl.obolibrary.org/obo/UBERON_0004238,spleen smooth muscle,smooth muscle tissue of spleen +http://purl.obolibrary.org/obo/UBERON_0004238,spleen smooth muscle,spleen involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004238,spleen smooth muscle,spleen non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004238,spleen smooth muscle,spleen smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004239,small intestine smooth muscle,involuntary muscle of small bowel +http://purl.obolibrary.org/obo/UBERON_0004239,small intestine smooth muscle,involuntary muscle of small intestine +http://purl.obolibrary.org/obo/UBERON_0004239,small intestine smooth muscle,non-striated muscle of small bowel +http://purl.obolibrary.org/obo/UBERON_0004239,small intestine smooth muscle,non-striated muscle of small intestine +http://purl.obolibrary.org/obo/UBERON_0004239,small intestine smooth muscle,small bowel involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004239,small intestine smooth muscle,small bowel non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004239,small intestine smooth muscle,small bowel smooth muscle +http://purl.obolibrary.org/obo/UBERON_0004239,small intestine smooth muscle,small bowel smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004239,small intestine smooth muscle,small intestine involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004239,small intestine smooth muscle,small intestine non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004239,small intestine smooth muscle,small intestine smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004239,small intestine smooth muscle,smooth muscle of small bowel +http://purl.obolibrary.org/obo/UBERON_0004239,small intestine smooth muscle,smooth muscle of small intestine +http://purl.obolibrary.org/obo/UBERON_0004239,small intestine smooth muscle,smooth muscle tissue of small bowel +http://purl.obolibrary.org/obo/UBERON_0004239,small intestine smooth muscle,smooth muscle tissue of small intestine +http://purl.obolibrary.org/obo/UBERON_0004240,gallbladder smooth muscle,gall bladder involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004240,gallbladder smooth muscle,gall bladder non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004240,gallbladder smooth muscle,gall bladder smooth muscle +http://purl.obolibrary.org/obo/UBERON_0004240,gallbladder smooth muscle,gall bladder smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004240,gallbladder smooth muscle,gallbladder involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004240,gallbladder smooth muscle,gallbladder non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004240,gallbladder smooth muscle,gallbladder smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004240,gallbladder smooth muscle,involuntary muscle of gall bladder +http://purl.obolibrary.org/obo/UBERON_0004240,gallbladder smooth muscle,involuntary muscle of gallbladder +http://purl.obolibrary.org/obo/UBERON_0004240,gallbladder smooth muscle,non-striated muscle of gall bladder +http://purl.obolibrary.org/obo/UBERON_0004240,gallbladder smooth muscle,non-striated muscle of gallbladder +http://purl.obolibrary.org/obo/UBERON_0004240,gallbladder smooth muscle,smooth muscle of gall bladder +http://purl.obolibrary.org/obo/UBERON_0004240,gallbladder smooth muscle,smooth muscle of gallbladder +http://purl.obolibrary.org/obo/UBERON_0004240,gallbladder smooth muscle,smooth muscle tissue of gall bladder +http://purl.obolibrary.org/obo/UBERON_0004240,gallbladder smooth muscle,smooth muscle tissue of gallbladder +http://purl.obolibrary.org/obo/UBERON_0004241,main bronchus smooth muscle,bronchus principalis involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004241,main bronchus smooth muscle,bronchus principalis non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004241,main bronchus smooth muscle,bronchus principalis smooth muscle +http://purl.obolibrary.org/obo/UBERON_0004241,main bronchus smooth muscle,bronchus principalis smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004241,main bronchus smooth muscle,involuntary muscle of bronchus principalis +http://purl.obolibrary.org/obo/UBERON_0004241,main bronchus smooth muscle,involuntary muscle of main bronchus +http://purl.obolibrary.org/obo/UBERON_0004241,main bronchus smooth muscle,involuntary muscle of primary bronchus +http://purl.obolibrary.org/obo/UBERON_0004241,main bronchus smooth muscle,involuntary muscle of principal bronchus +http://purl.obolibrary.org/obo/UBERON_0004241,main bronchus smooth muscle,main bronchus involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004241,main bronchus smooth muscle,main bronchus non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004241,main bronchus smooth muscle,main bronchus smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004241,main bronchus smooth muscle,non-striated muscle of bronchus principalis +http://purl.obolibrary.org/obo/UBERON_0004241,main bronchus smooth muscle,non-striated muscle of main bronchus +http://purl.obolibrary.org/obo/UBERON_0004241,main bronchus smooth muscle,non-striated muscle of primary bronchus +http://purl.obolibrary.org/obo/UBERON_0004241,main bronchus smooth muscle,non-striated muscle of principal bronchus +http://purl.obolibrary.org/obo/UBERON_0004241,main bronchus smooth muscle,primary bronchus involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004241,main bronchus smooth muscle,primary bronchus non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004241,main bronchus smooth muscle,primary bronchus smooth muscle +http://purl.obolibrary.org/obo/UBERON_0004241,main bronchus smooth muscle,primary bronchus smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004241,main bronchus smooth muscle,principal bronchus involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004241,main bronchus smooth muscle,principal bronchus non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004241,main bronchus smooth muscle,principal bronchus smooth muscle +http://purl.obolibrary.org/obo/UBERON_0004241,main bronchus smooth muscle,principal bronchus smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004241,main bronchus smooth muscle,smooth muscle of bronchus principalis +http://purl.obolibrary.org/obo/UBERON_0004241,main bronchus smooth muscle,smooth muscle of main bronchus +http://purl.obolibrary.org/obo/UBERON_0004241,main bronchus smooth muscle,smooth muscle of primary bronchus +http://purl.obolibrary.org/obo/UBERON_0004241,main bronchus smooth muscle,smooth muscle of principal bronchus +http://purl.obolibrary.org/obo/UBERON_0004241,main bronchus smooth muscle,smooth muscle tissue of bronchus principalis +http://purl.obolibrary.org/obo/UBERON_0004241,main bronchus smooth muscle,smooth muscle tissue of main bronchus +http://purl.obolibrary.org/obo/UBERON_0004241,main bronchus smooth muscle,smooth muscle tissue of primary bronchus +http://purl.obolibrary.org/obo/UBERON_0004241,main bronchus smooth muscle,smooth muscle tissue of principal bronchus +http://purl.obolibrary.org/obo/UBERON_0004242,bronchus smooth muscle,bronchi involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004242,bronchus smooth muscle,bronchi non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004242,bronchus smooth muscle,bronchi smooth muscle +http://purl.obolibrary.org/obo/UBERON_0004242,bronchus smooth muscle,bronchi smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004242,bronchus smooth muscle,bronchial trunk involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004242,bronchus smooth muscle,bronchial trunk non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004242,bronchus smooth muscle,bronchial trunk smooth muscle +http://purl.obolibrary.org/obo/UBERON_0004242,bronchus smooth muscle,bronchial trunk smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004242,bronchus smooth muscle,bronchus involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004242,bronchus smooth muscle,bronchus non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004242,bronchus smooth muscle,bronchus smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004242,bronchus smooth muscle,involuntary muscle of bronchi +http://purl.obolibrary.org/obo/UBERON_0004242,bronchus smooth muscle,involuntary muscle of bronchial trunk +http://purl.obolibrary.org/obo/UBERON_0004242,bronchus smooth muscle,involuntary muscle of bronchus +http://purl.obolibrary.org/obo/UBERON_0004242,bronchus smooth muscle,non-striated muscle of bronchi +http://purl.obolibrary.org/obo/UBERON_0004242,bronchus smooth muscle,non-striated muscle of bronchial trunk +http://purl.obolibrary.org/obo/UBERON_0004242,bronchus smooth muscle,non-striated muscle of bronchus +http://purl.obolibrary.org/obo/UBERON_0004242,bronchus smooth muscle,smooth muscle of bronchi +http://purl.obolibrary.org/obo/UBERON_0004242,bronchus smooth muscle,smooth muscle of bronchial trunk +http://purl.obolibrary.org/obo/UBERON_0004242,bronchus smooth muscle,smooth muscle of bronchus +http://purl.obolibrary.org/obo/UBERON_0004242,bronchus smooth muscle,smooth muscle tissue of bronchi +http://purl.obolibrary.org/obo/UBERON_0004242,bronchus smooth muscle,smooth muscle tissue of bronchial trunk +http://purl.obolibrary.org/obo/UBERON_0004242,bronchus smooth muscle,smooth muscle tissue of bronchus +http://purl.obolibrary.org/obo/UBERON_0004243,prostate gland smooth muscle,involuntary muscle of prostate +http://purl.obolibrary.org/obo/UBERON_0004243,prostate gland smooth muscle,involuntary muscle of prostate gland +http://purl.obolibrary.org/obo/UBERON_0004243,prostate gland smooth muscle,muscular tissue of prostate +http://purl.obolibrary.org/obo/UBERON_0004243,prostate gland smooth muscle,non-striated muscle of prostate +http://purl.obolibrary.org/obo/UBERON_0004243,prostate gland smooth muscle,non-striated muscle of prostate gland +http://purl.obolibrary.org/obo/UBERON_0004243,prostate gland smooth muscle,prostate gland involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004243,prostate gland smooth muscle,prostate gland non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004243,prostate gland smooth muscle,prostate gland smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004243,prostate gland smooth muscle,prostate involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004243,prostate gland smooth muscle,prostate non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004243,prostate gland smooth muscle,prostate smooth muscle +http://purl.obolibrary.org/obo/UBERON_0004243,prostate gland smooth muscle,prostate smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004243,prostate gland smooth muscle,smooth muscle of prostate +http://purl.obolibrary.org/obo/UBERON_0004243,prostate gland smooth muscle,smooth muscle of prostate gland +http://purl.obolibrary.org/obo/UBERON_0004243,prostate gland smooth muscle,smooth muscle tissue of prostate +http://purl.obolibrary.org/obo/UBERON_0004243,prostate gland smooth muscle,smooth muscle tissue of prostate gland +http://purl.obolibrary.org/obo/UBERON_0004243,prostate gland smooth muscle,substantia muscularis prostatae +http://purl.obolibrary.org/obo/UBERON_0004245,oviduct smooth muscle,fallopian tube involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004245,oviduct smooth muscle,fallopian tube non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004245,oviduct smooth muscle,fallopian tube smooth muscle +http://purl.obolibrary.org/obo/UBERON_0004245,oviduct smooth muscle,fallopian tube smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004245,oviduct smooth muscle,involuntary muscle of fallopian tube +http://purl.obolibrary.org/obo/UBERON_0004245,oviduct smooth muscle,non-striated muscle of fallopian tube +http://purl.obolibrary.org/obo/UBERON_0004245,oviduct smooth muscle,smooth muscle of fallopian tube +http://purl.obolibrary.org/obo/UBERON_0004245,oviduct smooth muscle,smooth muscle tissue of fallopian tube +http://purl.obolibrary.org/obo/UBERON_0004246,outflow tract smooth muscle,involuntary muscle of outflow tract +http://purl.obolibrary.org/obo/UBERON_0004246,outflow tract smooth muscle,non-striated muscle of outflow tract +http://purl.obolibrary.org/obo/UBERON_0004246,outflow tract smooth muscle,outflow tract involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004246,outflow tract smooth muscle,outflow tract non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004246,outflow tract smooth muscle,outflow tract smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004246,outflow tract smooth muscle,smooth muscle of outflow tract +http://purl.obolibrary.org/obo/UBERON_0004246,outflow tract smooth muscle,smooth muscle tissue of outflow tract +http://purl.obolibrary.org/obo/UBERON_0004247,bone of dorsum, +http://purl.obolibrary.org/obo/UBERON_0004248,pedal digit bone,bone of digit of foot +http://purl.obolibrary.org/obo/UBERON_0004248,pedal digit bone,digit of foot bone +http://purl.obolibrary.org/obo/UBERON_0004248,pedal digit bone,digital bone of foot +http://purl.obolibrary.org/obo/UBERON_0004248,pedal digit bone,digital bone of pes +http://purl.obolibrary.org/obo/UBERON_0004248,pedal digit bone,digitus pedis bone +http://purl.obolibrary.org/obo/UBERON_0004248,pedal digit bone,digitus pedis bone organ +http://purl.obolibrary.org/obo/UBERON_0004248,pedal digit bone,foot digit bone +http://purl.obolibrary.org/obo/UBERON_0004248,pedal digit bone,foot digit bone organ +http://purl.obolibrary.org/obo/UBERON_0004248,pedal digit bone,hind limb digit bone +http://purl.obolibrary.org/obo/UBERON_0004248,pedal digit bone,toe bone +http://purl.obolibrary.org/obo/UBERON_0004248,pedal digit bone,toe bone organ +http://purl.obolibrary.org/obo/UBERON_0004249,manual digit bone,digital bone of hand +http://purl.obolibrary.org/obo/UBERON_0004249,manual digit bone,digital bone of manus +http://purl.obolibrary.org/obo/UBERON_0004249,manual digit bone,finger bone +http://purl.obolibrary.org/obo/UBERON_0004249,manual digit bone,fore limb digit bone +http://purl.obolibrary.org/obo/UBERON_0004249,manual digit bone,hand digit bone +http://purl.obolibrary.org/obo/UBERON_0004250,upper arm bone, +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,bone of hind limb middle limb segment +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,bone of hind limb zeugopod +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,bone of hindlimb middle limb segment +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,bone of hindlimb zeugopod +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,bone of inferior member middle limb segment +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,bone of inferior member zeugopod +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,bone of intermediate segment of free lower limb +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,bone of lower extremity middle limb segment +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,bone of lower extremity zeugopod +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,bone of lower leg +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,bone of middle limb segment of hind limb +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,bone of middle limb segment of hindlimb +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,bone of middle limb segment of inferior member +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,bone of middle limb segment of lower extremity +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,bone of zeugopod of hind limb +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,bone of zeugopod of hindlimb +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,bone of zeugopod of inferior member +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,bone of zeugopod of leg +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,bone of zeugopod of lower extremity +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,bone organ of hind limb middle limb segment +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,bone organ of hind limb zeugopod +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,bone organ of hindlimb middle limb segment +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,bone organ of hindlimb zeugopod +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,bone organ of inferior member middle limb segment +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,bone organ of inferior member zeugopod +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,bone organ of intermediate segment of free lower limb +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,bone organ of lower extremity middle limb segment +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,bone organ of lower extremity zeugopod +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,bone organ of lower leg +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,bone organ of middle limb segment of hind limb +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,bone organ of middle limb segment of hindlimb +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,bone organ of middle limb segment of inferior member +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,bone organ of middle limb segment of lower extremity +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,bone organ of zeugopod of hind limb +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,bone organ of zeugopod of hindlimb +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,bone organ of zeugopod of inferior member +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,bone organ of zeugopod of leg +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,bone organ of zeugopod of lower extremity +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,hind limb middle limb segment bone +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,hind limb middle limb segment bone organ +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,hind limb zeugopod bone +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,hind limb zeugopod bone organ +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,hindlimb middle limb segment bone +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,hindlimb middle limb segment bone organ +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,hindlimb zeugopod bone +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,hindlimb zeugopod bone organ +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,inferior member middle limb segment bone +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,inferior member middle limb segment bone organ +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,inferior member zeugopod bone +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,inferior member zeugopod bone organ +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,intermediate segment of free lower limb bone +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,intermediate segment of free lower limb bone organ +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,lower extremity middle limb segment bone +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,lower extremity middle limb segment bone organ +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,lower extremity zeugopod bone +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,lower extremity zeugopod bone organ +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,lower leg bone +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,middle limb segment of hind limb bone +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,middle limb segment of hind limb bone organ +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,middle limb segment of hindlimb bone +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,middle limb segment of hindlimb bone organ +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,middle limb segment of inferior member bone +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,middle limb segment of inferior member bone organ +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,middle limb segment of lower extremity bone +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,middle limb segment of lower extremity bone organ +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,zeugopod of hind limb bone +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,zeugopod of hind limb bone organ +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,zeugopod of hindlimb bone +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,zeugopod of hindlimb bone organ +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,zeugopod of inferior member bone +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,zeugopod of inferior member bone organ +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,zeugopod of leg bone +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,zeugopod of leg bone organ +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,zeugopod of lower extremity bone +http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone,zeugopod of lower extremity bone organ +http://purl.obolibrary.org/obo/UBERON_0004252,hindlimb stylopod muscle,muscle of thigh +http://purl.obolibrary.org/obo/UBERON_0004252,hindlimb stylopod muscle,thigh muscle +http://purl.obolibrary.org/obo/UBERON_0004252,hindlimb stylopod muscle,upper leg muscle +http://purl.obolibrary.org/obo/UBERON_0004253,skin muscle,integumental system muscle +http://purl.obolibrary.org/obo/UBERON_0004253,skin muscle,muscle of integumental system +http://purl.obolibrary.org/obo/UBERON_0004253,skin muscle,muscle organ of skin +http://purl.obolibrary.org/obo/UBERON_0004253,skin muscle,skin muscle organ +http://purl.obolibrary.org/obo/UBERON_0004254,forelimb zeugopod muscle,forearm muscle +http://purl.obolibrary.org/obo/UBERON_0004254,forelimb zeugopod muscle,lower arm muscle +http://purl.obolibrary.org/obo/UBERON_0004254,forelimb zeugopod muscle,muscle of forearm +http://purl.obolibrary.org/obo/UBERON_0004255,forelimb stylopod muscle,muscle of upper arm +http://purl.obolibrary.org/obo/UBERON_0004255,forelimb stylopod muscle,upper arm muscle +http://purl.obolibrary.org/obo/UBERON_0004256,hindlimb zeugopod muscle,lower leg muscle +http://purl.obolibrary.org/obo/UBERON_0004257,upper leg blood vessel,blood vessel of stylopod of hind limb +http://purl.obolibrary.org/obo/UBERON_0004257,upper leg blood vessel,blood vessel of stylopod of hindlimb +http://purl.obolibrary.org/obo/UBERON_0004257,upper leg blood vessel,blood vessel of thigh +http://purl.obolibrary.org/obo/UBERON_0004257,upper leg blood vessel,blood vessel of upper leg +http://purl.obolibrary.org/obo/UBERON_0004257,upper leg blood vessel,hind limb stylopod blood vessel +http://purl.obolibrary.org/obo/UBERON_0004257,upper leg blood vessel,hindlimb stylopod blood vessel +http://purl.obolibrary.org/obo/UBERON_0004257,upper leg blood vessel,thigh blood vessel +http://purl.obolibrary.org/obo/UBERON_0004258,back blood vessel,blood vessel of back +http://purl.obolibrary.org/obo/UBERON_0004259,lower arm blood vessel,forelimb zeugopod blood vessel +http://purl.obolibrary.org/obo/UBERON_0004260,upper arm blood vessel,forelimb stylopod blood vessel +http://purl.obolibrary.org/obo/UBERON_0004261,lower leg blood vessel,hindlimb zeugopod blood vessel +http://purl.obolibrary.org/obo/UBERON_0004262,upper leg skin,hind limb stylopod skin +http://purl.obolibrary.org/obo/UBERON_0004262,upper leg skin,hindlimb stylopod skin +http://purl.obolibrary.org/obo/UBERON_0004262,upper leg skin,skin of upper leg +http://purl.obolibrary.org/obo/UBERON_0004263,upper arm skin,arm stylopod skin +http://purl.obolibrary.org/obo/UBERON_0004263,upper arm skin,skin of arm stylopod +http://purl.obolibrary.org/obo/UBERON_0004263,upper arm skin,skin of upper arm +http://purl.obolibrary.org/obo/UBERON_0004264,lower leg skin,hind limb middle limb segment skin +http://purl.obolibrary.org/obo/UBERON_0004264,lower leg skin,hind limb zeugopod skin +http://purl.obolibrary.org/obo/UBERON_0004265,outflow tract myocardium,cardiac muscle of outflow tract +http://purl.obolibrary.org/obo/UBERON_0004265,outflow tract myocardium,heart muscle of outflow tract +http://purl.obolibrary.org/obo/UBERON_0004265,outflow tract myocardium,heart myocardium of outflow tract +http://purl.obolibrary.org/obo/UBERON_0004265,outflow tract myocardium,muscle of heart of outflow tract +http://purl.obolibrary.org/obo/UBERON_0004265,outflow tract myocardium,myocardium of outflow tract +http://purl.obolibrary.org/obo/UBERON_0004265,outflow tract myocardium,outflow tract cardiac muscle +http://purl.obolibrary.org/obo/UBERON_0004265,outflow tract myocardium,outflow tract heart muscle +http://purl.obolibrary.org/obo/UBERON_0004265,outflow tract myocardium,outflow tract heart myocardium +http://purl.obolibrary.org/obo/UBERON_0004265,outflow tract myocardium,outflow tract muscle of heart +http://purl.obolibrary.org/obo/UBERON_0004266,upper leg connective tissue, +http://purl.obolibrary.org/obo/UBERON_0004267,back connective tissue, +http://purl.obolibrary.org/obo/UBERON_0004268,lower arm connective tissue, +http://purl.obolibrary.org/obo/UBERON_0004269,upper arm connective tissue, +http://purl.obolibrary.org/obo/UBERON_0004270,lower leg connective tissue, +http://purl.obolibrary.org/obo/UBERON_0004271,outflow tract pericardium,pericardium of outflow tract +http://purl.obolibrary.org/obo/UBERON_0004273,cartilaginous joint suture,articulatio cartilaginea cranial suture +http://purl.obolibrary.org/obo/UBERON_0004273,cartilaginous joint suture,articulatio cartilaginea cranial sutures +http://purl.obolibrary.org/obo/UBERON_0004273,cartilaginous joint suture,articulatio cartilaginea cranial sutures set +http://purl.obolibrary.org/obo/UBERON_0004273,cartilaginous joint suture,articulatio cartilaginea cranium suture +http://purl.obolibrary.org/obo/UBERON_0004273,cartilaginous joint suture,articulatio cartilaginea suture of cranium +http://purl.obolibrary.org/obo/UBERON_0004273,cartilaginous joint suture,cartilaginous joint cranial suture +http://purl.obolibrary.org/obo/UBERON_0004273,cartilaginous joint suture,cartilaginous joint cranial sutures +http://purl.obolibrary.org/obo/UBERON_0004273,cartilaginous joint suture,cartilaginous joint cranial sutures set +http://purl.obolibrary.org/obo/UBERON_0004273,cartilaginous joint suture,cartilaginous joint cranium suture +http://purl.obolibrary.org/obo/UBERON_0004273,cartilaginous joint suture,cartilaginous joint suture of cranium +http://purl.obolibrary.org/obo/UBERON_0004273,cartilaginous joint suture,cranial suture of articulatio cartilaginea +http://purl.obolibrary.org/obo/UBERON_0004273,cartilaginous joint suture,cranial suture of cartilaginous joint +http://purl.obolibrary.org/obo/UBERON_0004273,cartilaginous joint suture,cranial sutures of articulatio cartilaginea +http://purl.obolibrary.org/obo/UBERON_0004273,cartilaginous joint suture,cranial sutures of cartilaginous joint +http://purl.obolibrary.org/obo/UBERON_0004273,cartilaginous joint suture,cranial sutures set of articulatio cartilaginea +http://purl.obolibrary.org/obo/UBERON_0004273,cartilaginous joint suture,cranial sutures set of cartilaginous joint +http://purl.obolibrary.org/obo/UBERON_0004273,cartilaginous joint suture,cranium suture of articulatio cartilaginea +http://purl.obolibrary.org/obo/UBERON_0004273,cartilaginous joint suture,cranium suture of cartilaginous joint +http://purl.obolibrary.org/obo/UBERON_0004273,cartilaginous joint suture,suture of cranium of articulatio cartilaginea +http://purl.obolibrary.org/obo/UBERON_0004273,cartilaginous joint suture,suture of cranium of cartilaginous joint +http://purl.obolibrary.org/obo/UBERON_0004274,lateral ventricle choroid plexus epithelium,chorioid plexus of cerebral hemisphere epithelial tissue of lateral ventricle +http://purl.obolibrary.org/obo/UBERON_0004274,lateral ventricle choroid plexus epithelium,chorioid plexus of cerebral hemisphere epithelium of lateral ventricle +http://purl.obolibrary.org/obo/UBERON_0004274,lateral ventricle choroid plexus epithelium,choroid plexus epithelial tissue of lateral ventricle +http://purl.obolibrary.org/obo/UBERON_0004274,lateral ventricle choroid plexus epithelium,choroid plexus epithelium of lateral ventricle +http://purl.obolibrary.org/obo/UBERON_0004274,lateral ventricle choroid plexus epithelium,epithelial tissue of chorioid plexus of cerebral hemisphere of lateral ventricle +http://purl.obolibrary.org/obo/UBERON_0004274,lateral ventricle choroid plexus epithelium,epithelial tissue of choroid plexus of lateral ventricle +http://purl.obolibrary.org/obo/UBERON_0004274,lateral ventricle choroid plexus epithelium,epithelium of chorioid plexus of cerebral hemisphere of lateral ventricle +http://purl.obolibrary.org/obo/UBERON_0004274,lateral ventricle choroid plexus epithelium,epithelium of choroid plexus of lateral ventricle +http://purl.obolibrary.org/obo/UBERON_0004274,lateral ventricle choroid plexus epithelium,lateral ventricle chorioid plexus of cerebral hemisphere epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0004274,lateral ventricle choroid plexus epithelium,lateral ventricle chorioid plexus of cerebral hemisphere epithelium +http://purl.obolibrary.org/obo/UBERON_0004274,lateral ventricle choroid plexus epithelium,lateral ventricle choroid plexus epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0004274,lateral ventricle choroid plexus epithelium,lateral ventricle epithelial tissue of chorioid plexus of cerebral hemisphere +http://purl.obolibrary.org/obo/UBERON_0004274,lateral ventricle choroid plexus epithelium,lateral ventricle epithelial tissue of choroid plexus +http://purl.obolibrary.org/obo/UBERON_0004274,lateral ventricle choroid plexus epithelium,lateral ventricle epithelium of chorioid plexus of cerebral hemisphere +http://purl.obolibrary.org/obo/UBERON_0004274,lateral ventricle choroid plexus epithelium,lateral ventricle epithelium of choroid plexus +http://purl.obolibrary.org/obo/UBERON_0004275,third ventricle choroid plexus epithelium,chorioid plexus of cerebral hemisphere epithelial tissue of third ventricle +http://purl.obolibrary.org/obo/UBERON_0004275,third ventricle choroid plexus epithelium,chorioid plexus of cerebral hemisphere epithelium of third ventricle +http://purl.obolibrary.org/obo/UBERON_0004275,third ventricle choroid plexus epithelium,choroid plexus epithelial tissue of third ventricle +http://purl.obolibrary.org/obo/UBERON_0004275,third ventricle choroid plexus epithelium,choroid plexus epithelium of third ventricle +http://purl.obolibrary.org/obo/UBERON_0004275,third ventricle choroid plexus epithelium,epithelial tissue of chorioid plexus of cerebral hemisphere of third ventricle +http://purl.obolibrary.org/obo/UBERON_0004275,third ventricle choroid plexus epithelium,epithelial tissue of choroid plexus of third ventricle +http://purl.obolibrary.org/obo/UBERON_0004275,third ventricle choroid plexus epithelium,epithelium of chorioid plexus of cerebral hemisphere of third ventricle +http://purl.obolibrary.org/obo/UBERON_0004275,third ventricle choroid plexus epithelium,epithelium of choroid plexus of third ventricle +http://purl.obolibrary.org/obo/UBERON_0004275,third ventricle choroid plexus epithelium,third ventricle chorioid plexus of cerebral hemisphere epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0004275,third ventricle choroid plexus epithelium,third ventricle chorioid plexus of cerebral hemisphere epithelium +http://purl.obolibrary.org/obo/UBERON_0004275,third ventricle choroid plexus epithelium,third ventricle choroid plexus epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0004275,third ventricle choroid plexus epithelium,third ventricle epithelial tissue of chorioid plexus of cerebral hemisphere +http://purl.obolibrary.org/obo/UBERON_0004275,third ventricle choroid plexus epithelium,third ventricle epithelial tissue of choroid plexus +http://purl.obolibrary.org/obo/UBERON_0004275,third ventricle choroid plexus epithelium,third ventricle epithelium of chorioid plexus of cerebral hemisphere +http://purl.obolibrary.org/obo/UBERON_0004275,third ventricle choroid plexus epithelium,third ventricle epithelium of choroid plexus +http://purl.obolibrary.org/obo/UBERON_0004276,fourth ventricle choroid plexus epithelium,chorioid plexus of cerebral hemisphere epithelial tissue of fourth ventricle +http://purl.obolibrary.org/obo/UBERON_0004276,fourth ventricle choroid plexus epithelium,chorioid plexus of cerebral hemisphere epithelium of fourth ventricle +http://purl.obolibrary.org/obo/UBERON_0004276,fourth ventricle choroid plexus epithelium,choroid plexus epithelial tissue of fourth ventricle +http://purl.obolibrary.org/obo/UBERON_0004276,fourth ventricle choroid plexus epithelium,choroid plexus epithelium of fourth ventricle +http://purl.obolibrary.org/obo/UBERON_0004276,fourth ventricle choroid plexus epithelium,epithelial tissue of chorioid plexus of cerebral hemisphere of fourth ventricle +http://purl.obolibrary.org/obo/UBERON_0004276,fourth ventricle choroid plexus epithelium,epithelial tissue of choroid plexus of fourth ventricle +http://purl.obolibrary.org/obo/UBERON_0004276,fourth ventricle choroid plexus epithelium,epithelium of chorioid plexus of cerebral hemisphere of fourth ventricle +http://purl.obolibrary.org/obo/UBERON_0004276,fourth ventricle choroid plexus epithelium,epithelium of choroid plexus of fourth ventricle +http://purl.obolibrary.org/obo/UBERON_0004276,fourth ventricle choroid plexus epithelium,fourth ventricle chorioid plexus of cerebral hemisphere epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0004276,fourth ventricle choroid plexus epithelium,fourth ventricle chorioid plexus of cerebral hemisphere epithelium +http://purl.obolibrary.org/obo/UBERON_0004276,fourth ventricle choroid plexus epithelium,fourth ventricle choroid plexus epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0004276,fourth ventricle choroid plexus epithelium,fourth ventricle epithelial tissue of chorioid plexus of cerebral hemisphere +http://purl.obolibrary.org/obo/UBERON_0004276,fourth ventricle choroid plexus epithelium,fourth ventricle epithelial tissue of choroid plexus +http://purl.obolibrary.org/obo/UBERON_0004276,fourth ventricle choroid plexus epithelium,fourth ventricle epithelium of chorioid plexus of cerebral hemisphere +http://purl.obolibrary.org/obo/UBERON_0004276,fourth ventricle choroid plexus epithelium,fourth ventricle epithelium of choroid plexus +http://purl.obolibrary.org/obo/UBERON_0004277,eye muscle, +http://purl.obolibrary.org/obo/UBERON_0004288,skeleton,set of all bones +http://purl.obolibrary.org/obo/UBERON_0004288,skeleton,set of bones of body +http://purl.obolibrary.org/obo/UBERON_0004289,radula, +http://purl.obolibrary.org/obo/UBERON_0004290,dermomyotome, +http://purl.obolibrary.org/obo/UBERON_0004291,heart rudiment,heart cone +http://purl.obolibrary.org/obo/UBERON_0004291,heart rudiment,rudimentary heart +http://purl.obolibrary.org/obo/UBERON_0004292,cardiac skeleton,cardiac fibrous skeleton +http://purl.obolibrary.org/obo/UBERON_0004292,cardiac skeleton,fibrous skeleton of heart +http://purl.obolibrary.org/obo/UBERON_0004292,cardiac skeleton,heart fibrous skeleton +http://purl.obolibrary.org/obo/UBERON_0004292,cardiac skeleton,skeleton of heart +http://purl.obolibrary.org/obo/UBERON_0004293,parasympathetic nerve,nerve of parasympathetic nervous system +http://purl.obolibrary.org/obo/UBERON_0004294,glomerular capillary endothelium,renal glomerulus capillary endothelium +http://purl.obolibrary.org/obo/UBERON_0004295,sympathetic nerve trunk,nerve trunk of sympathetic nervous system +http://purl.obolibrary.org/obo/UBERON_0004295,sympathetic nerve trunk,nerve trunk of sympathetic part of autonomic division of nervous system +http://purl.obolibrary.org/obo/UBERON_0004295,sympathetic nerve trunk,sympathetic nervous system nerve trunk +http://purl.obolibrary.org/obo/UBERON_0004296,respiratory system lymphatic vessel smooth muscle,smooth muscle of lymph vessel of respiratory system +http://purl.obolibrary.org/obo/UBERON_0004297,respiratory system blood vessel smooth muscle,smooth muscle tissue of blood vessel of respiratory system +http://purl.obolibrary.org/obo/UBERON_0004300,distal phalanx,phalanx distalis +http://purl.obolibrary.org/obo/UBERON_0004300,distal phalanx,terminal phalanx +http://purl.obolibrary.org/obo/UBERON_0004300,distal phalanx,ungual phalanx +http://purl.obolibrary.org/obo/UBERON_0004301,middle phalanx,intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0004302,proximal phalanx,phalanx 1 +http://purl.obolibrary.org/obo/UBERON_0004302,proximal phalanx,phalanx I +http://purl.obolibrary.org/obo/UBERON_0004302,proximal phalanx,proximal-most phalanx +http://purl.obolibrary.org/obo/UBERON_0004311,distal phalanx of manual digit 2,2nd digit of hand distal phalanx +http://purl.obolibrary.org/obo/UBERON_0004311,distal phalanx of manual digit 2,2nd finger distal phalanx +http://purl.obolibrary.org/obo/UBERON_0004311,distal phalanx of manual digit 2,distal phalanx of 2nd digit of hand +http://purl.obolibrary.org/obo/UBERON_0004311,distal phalanx of manual digit 2,distal phalanx of 2nd finger +http://purl.obolibrary.org/obo/UBERON_0004311,distal phalanx of manual digit 2,distal phalanx of index finger +http://purl.obolibrary.org/obo/UBERON_0004311,distal phalanx of manual digit 2,distal phalanx of manual digit II +http://purl.obolibrary.org/obo/UBERON_0004311,distal phalanx of manual digit 2,distal phalanx of second digit of hand +http://purl.obolibrary.org/obo/UBERON_0004311,distal phalanx of manual digit 2,distal phalanx of second finger +http://purl.obolibrary.org/obo/UBERON_0004311,distal phalanx of manual digit 2,hand digit 2 distal phalanx +http://purl.obolibrary.org/obo/UBERON_0004311,distal phalanx of manual digit 2,second distal phalanx of hand +http://purl.obolibrary.org/obo/UBERON_0004311,distal phalanx of manual digit 2,second finger distal phalanx +http://purl.obolibrary.org/obo/UBERON_0004312,distal phalanx of manual digit 3,3rd digit of hand distal phalanx +http://purl.obolibrary.org/obo/UBERON_0004312,distal phalanx of manual digit 3,3rd finger distal phalanx +http://purl.obolibrary.org/obo/UBERON_0004312,distal phalanx of manual digit 3,distal phalanx of 3rd digit of hand +http://purl.obolibrary.org/obo/UBERON_0004312,distal phalanx of manual digit 3,distal phalanx of 3rd finger +http://purl.obolibrary.org/obo/UBERON_0004312,distal phalanx of manual digit 3,distal phalanx of manual digit III +http://purl.obolibrary.org/obo/UBERON_0004312,distal phalanx of manual digit 3,distal phalanx of middle finger +http://purl.obolibrary.org/obo/UBERON_0004312,distal phalanx of manual digit 3,distal phalanx of third digit of hand +http://purl.obolibrary.org/obo/UBERON_0004312,distal phalanx of manual digit 3,distal phalanx of third finger +http://purl.obolibrary.org/obo/UBERON_0004312,distal phalanx of manual digit 3,equine 3rd phalanx of forelimb digit 3 +http://purl.obolibrary.org/obo/UBERON_0004312,distal phalanx of manual digit 3,equine forelimb distal phalanx +http://purl.obolibrary.org/obo/UBERON_0004312,distal phalanx of manual digit 3,hand digit 3 distal phalanx +http://purl.obolibrary.org/obo/UBERON_0004312,distal phalanx of manual digit 3,third distal phalanx of hand +http://purl.obolibrary.org/obo/UBERON_0004312,distal phalanx of manual digit 3,third finger distal phalanx +http://purl.obolibrary.org/obo/UBERON_0004313,distal phalanx of manual digit 4,4th digit of hand distal phalanx +http://purl.obolibrary.org/obo/UBERON_0004313,distal phalanx of manual digit 4,4th finger distal phalanx +http://purl.obolibrary.org/obo/UBERON_0004313,distal phalanx of manual digit 4,distal phalanx of 4th digit of hand +http://purl.obolibrary.org/obo/UBERON_0004313,distal phalanx of manual digit 4,distal phalanx of 4th finger +http://purl.obolibrary.org/obo/UBERON_0004313,distal phalanx of manual digit 4,distal phalanx of fourth digit of hand +http://purl.obolibrary.org/obo/UBERON_0004313,distal phalanx of manual digit 4,distal phalanx of fourth finger +http://purl.obolibrary.org/obo/UBERON_0004313,distal phalanx of manual digit 4,distal phalanx of manual digit IV +http://purl.obolibrary.org/obo/UBERON_0004313,distal phalanx of manual digit 4,distal phalanx of ring finger +http://purl.obolibrary.org/obo/UBERON_0004313,distal phalanx of manual digit 4,fourth distal phalanx of hand +http://purl.obolibrary.org/obo/UBERON_0004313,distal phalanx of manual digit 4,fourth finger distal phalanx +http://purl.obolibrary.org/obo/UBERON_0004313,distal phalanx of manual digit 4,hand digit 4 distal phalanx +http://purl.obolibrary.org/obo/UBERON_0004314,distal phalanx of manual digit 5,5th digit of hand distal phalanx +http://purl.obolibrary.org/obo/UBERON_0004314,distal phalanx of manual digit 5,5th finger distal phalanx +http://purl.obolibrary.org/obo/UBERON_0004314,distal phalanx of manual digit 5,distal phalanx of 5th digit of hand +http://purl.obolibrary.org/obo/UBERON_0004314,distal phalanx of manual digit 5,distal phalanx of 5th finger +http://purl.obolibrary.org/obo/UBERON_0004314,distal phalanx of manual digit 5,distal phalanx of fifth digit of hand +http://purl.obolibrary.org/obo/UBERON_0004314,distal phalanx of manual digit 5,distal phalanx of fifth finger +http://purl.obolibrary.org/obo/UBERON_0004314,distal phalanx of manual digit 5,distal phalanx of little finger +http://purl.obolibrary.org/obo/UBERON_0004314,distal phalanx of manual digit 5,distal phalanx of manual digit V +http://purl.obolibrary.org/obo/UBERON_0004314,distal phalanx of manual digit 5,fifth distal phalanx of hand +http://purl.obolibrary.org/obo/UBERON_0004314,distal phalanx of manual digit 5,fifth finger distal phalanx +http://purl.obolibrary.org/obo/UBERON_0004314,distal phalanx of manual digit 5,hand digit 5 distal phalanx +http://purl.obolibrary.org/obo/UBERON_0004315,distal phalanx of pedal digit 1,distal phalanx of big toe +http://purl.obolibrary.org/obo/UBERON_0004315,distal phalanx of pedal digit 1,distal phalanx of first digit of foot +http://purl.obolibrary.org/obo/UBERON_0004315,distal phalanx of pedal digit 1,distal phalanx of foot digit 1 +http://purl.obolibrary.org/obo/UBERON_0004315,distal phalanx of pedal digit 1,distal phalanx of great toe +http://purl.obolibrary.org/obo/UBERON_0004315,distal phalanx of pedal digit 1,distal phalanx of hallux +http://purl.obolibrary.org/obo/UBERON_0004315,distal phalanx of pedal digit 1,distal phalanx of pedal digit I +http://purl.obolibrary.org/obo/UBERON_0004315,distal phalanx of pedal digit 1,first distal phalanx of foot +http://purl.obolibrary.org/obo/UBERON_0004315,distal phalanx of pedal digit 1,foot digit 1 distal phalanx +http://purl.obolibrary.org/obo/UBERON_0004315,distal phalanx of pedal digit 1,hallux distal phalanx +http://purl.obolibrary.org/obo/UBERON_0004316,distal phalanx of pedal digit 2,2nd toe distal phalanx +http://purl.obolibrary.org/obo/UBERON_0004316,distal phalanx of pedal digit 2,distal phalanx of 2nd toe +http://purl.obolibrary.org/obo/UBERON_0004316,distal phalanx of pedal digit 2,distal phalanx of foot digit 2 +http://purl.obolibrary.org/obo/UBERON_0004316,distal phalanx of pedal digit 2,distal phalanx of pedal digit II +http://purl.obolibrary.org/obo/UBERON_0004316,distal phalanx of pedal digit 2,distal phalanx of second digit of foot +http://purl.obolibrary.org/obo/UBERON_0004316,distal phalanx of pedal digit 2,distal phalanx of second toe +http://purl.obolibrary.org/obo/UBERON_0004316,distal phalanx of pedal digit 2,distal phalanx of the 2nd toe +http://purl.obolibrary.org/obo/UBERON_0004316,distal phalanx of pedal digit 2,foot digit 2 distal phalanx +http://purl.obolibrary.org/obo/UBERON_0004316,distal phalanx of pedal digit 2,second distal phalanx of foot +http://purl.obolibrary.org/obo/UBERON_0004317,distal phalanx of pedal digit 3,3rd toe distal phalanx +http://purl.obolibrary.org/obo/UBERON_0004317,distal phalanx of pedal digit 3,distal phalanx of 3rd toe +http://purl.obolibrary.org/obo/UBERON_0004317,distal phalanx of pedal digit 3,distal phalanx of foot digit 3 +http://purl.obolibrary.org/obo/UBERON_0004317,distal phalanx of pedal digit 3,distal phalanx of pedal digit III +http://purl.obolibrary.org/obo/UBERON_0004317,distal phalanx of pedal digit 3,distal phalanx of the 3rd toe +http://purl.obolibrary.org/obo/UBERON_0004317,distal phalanx of pedal digit 3,distal phalanx of third digit of foot +http://purl.obolibrary.org/obo/UBERON_0004317,distal phalanx of pedal digit 3,distal phalanx of third toe +http://purl.obolibrary.org/obo/UBERON_0004317,distal phalanx of pedal digit 3,equine 3rd phalanx of hindlimb digit 3 +http://purl.obolibrary.org/obo/UBERON_0004317,distal phalanx of pedal digit 3,equine hindlimb distal phalanx +http://purl.obolibrary.org/obo/UBERON_0004317,distal phalanx of pedal digit 3,foot digit 3 distal phalanx +http://purl.obolibrary.org/obo/UBERON_0004317,distal phalanx of pedal digit 3,third distal phalanx of foot +http://purl.obolibrary.org/obo/UBERON_0004318,distal phalanx of pedal digit 4,4th toe distal phalanx +http://purl.obolibrary.org/obo/UBERON_0004318,distal phalanx of pedal digit 4,distal phalanx of 4th toe +http://purl.obolibrary.org/obo/UBERON_0004318,distal phalanx of pedal digit 4,distal phalanx of foot digit 4 +http://purl.obolibrary.org/obo/UBERON_0004318,distal phalanx of pedal digit 4,distal phalanx of fourth digit of foot +http://purl.obolibrary.org/obo/UBERON_0004318,distal phalanx of pedal digit 4,distal phalanx of fourth toe +http://purl.obolibrary.org/obo/UBERON_0004318,distal phalanx of pedal digit 4,distal phalanx of pedal digit IV +http://purl.obolibrary.org/obo/UBERON_0004318,distal phalanx of pedal digit 4,distal phalanx of the 4th toe +http://purl.obolibrary.org/obo/UBERON_0004318,distal phalanx of pedal digit 4,foot digit 4 distal phalanx +http://purl.obolibrary.org/obo/UBERON_0004318,distal phalanx of pedal digit 4,fourth distal phalanx of foot +http://purl.obolibrary.org/obo/UBERON_0004319,distal phalanx of pedal digit 5,5th toe distal phalanx +http://purl.obolibrary.org/obo/UBERON_0004319,distal phalanx of pedal digit 5,distal phalanx of 5th toe +http://purl.obolibrary.org/obo/UBERON_0004319,distal phalanx of pedal digit 5,distal phalanx of fifth digit of foot +http://purl.obolibrary.org/obo/UBERON_0004319,distal phalanx of pedal digit 5,distal phalanx of fifth toe +http://purl.obolibrary.org/obo/UBERON_0004319,distal phalanx of pedal digit 5,distal phalanx of foot digit 5 +http://purl.obolibrary.org/obo/UBERON_0004319,distal phalanx of pedal digit 5,distal phalanx of little toe +http://purl.obolibrary.org/obo/UBERON_0004319,distal phalanx of pedal digit 5,distal phalanx of pedal digit V +http://purl.obolibrary.org/obo/UBERON_0004319,distal phalanx of pedal digit 5,distal phalanx of the 5th toe +http://purl.obolibrary.org/obo/UBERON_0004319,distal phalanx of pedal digit 5,fifth distal phalanx of foot +http://purl.obolibrary.org/obo/UBERON_0004319,distal phalanx of pedal digit 5,foot digit 5 distal phalanx +http://purl.obolibrary.org/obo/UBERON_0004320,middle phalanx of manual digit 2,2nd digit of hand intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0004320,middle phalanx of manual digit 2,2nd digit of hand middle phalanx +http://purl.obolibrary.org/obo/UBERON_0004320,middle phalanx of manual digit 2,2nd finger intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0004320,middle phalanx of manual digit 2,2nd finger middle phalanx +http://purl.obolibrary.org/obo/UBERON_0004320,middle phalanx of manual digit 2,hand digit 2 intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0004320,middle phalanx of manual digit 2,hand digit 2 middle phalanx +http://purl.obolibrary.org/obo/UBERON_0004320,middle phalanx of manual digit 2,intermediate phalanx of 2nd digit of hand +http://purl.obolibrary.org/obo/UBERON_0004320,middle phalanx of manual digit 2,intermediate phalanx of 2nd finger +http://purl.obolibrary.org/obo/UBERON_0004320,middle phalanx of manual digit 2,intermediate phalanx of hand digit 2 +http://purl.obolibrary.org/obo/UBERON_0004320,middle phalanx of manual digit 2,intermediate phalanx of second finger +http://purl.obolibrary.org/obo/UBERON_0004320,middle phalanx of manual digit 2,middle phalanx of 2nd digit of hand +http://purl.obolibrary.org/obo/UBERON_0004320,middle phalanx of manual digit 2,middle phalanx of 2nd finger +http://purl.obolibrary.org/obo/UBERON_0004320,middle phalanx of manual digit 2,middle phalanx of index finger +http://purl.obolibrary.org/obo/UBERON_0004320,middle phalanx of manual digit 2,middle phalanx of manual digit II +http://purl.obolibrary.org/obo/UBERON_0004320,middle phalanx of manual digit 2,middle phalanx of second digit of hand +http://purl.obolibrary.org/obo/UBERON_0004320,middle phalanx of manual digit 2,middle phalanx of second finger +http://purl.obolibrary.org/obo/UBERON_0004320,middle phalanx of manual digit 2,second finger intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0004320,middle phalanx of manual digit 2,second finger middle phalanx +http://purl.obolibrary.org/obo/UBERON_0004320,middle phalanx of manual digit 2,second middle phalanx of hand +http://purl.obolibrary.org/obo/UBERON_0004321,middle phalanx of manual digit 3,3rd digit of hand intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0004321,middle phalanx of manual digit 3,3rd digit of hand middle phalanx +http://purl.obolibrary.org/obo/UBERON_0004321,middle phalanx of manual digit 3,3rd finger intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0004321,middle phalanx of manual digit 3,3rd finger middle phalanx +http://purl.obolibrary.org/obo/UBERON_0004321,middle phalanx of manual digit 3,forelimb digit III P2 +http://purl.obolibrary.org/obo/UBERON_0004321,middle phalanx of manual digit 3,hand digit 3 intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0004321,middle phalanx of manual digit 3,hand digit 3 middle phalanx +http://purl.obolibrary.org/obo/UBERON_0004321,middle phalanx of manual digit 3,intermediate phalanx of 3rd digit of hand +http://purl.obolibrary.org/obo/UBERON_0004321,middle phalanx of manual digit 3,intermediate phalanx of 3rd finger +http://purl.obolibrary.org/obo/UBERON_0004321,middle phalanx of manual digit 3,intermediate phalanx of hand digit 3 +http://purl.obolibrary.org/obo/UBERON_0004321,middle phalanx of manual digit 3,intermediate phalanx of third finger +http://purl.obolibrary.org/obo/UBERON_0004321,middle phalanx of manual digit 3,middle phalanx of 3rd digit of hand +http://purl.obolibrary.org/obo/UBERON_0004321,middle phalanx of manual digit 3,middle phalanx of 3rd finger +http://purl.obolibrary.org/obo/UBERON_0004321,middle phalanx of manual digit 3,middle phalanx of manual digit III +http://purl.obolibrary.org/obo/UBERON_0004321,middle phalanx of manual digit 3,middle phalanx of middle finger +http://purl.obolibrary.org/obo/UBERON_0004321,middle phalanx of manual digit 3,middle phalanx of third digit of hand +http://purl.obolibrary.org/obo/UBERON_0004321,middle phalanx of manual digit 3,middle phalanx of third finger +http://purl.obolibrary.org/obo/UBERON_0004321,middle phalanx of manual digit 3,third finger intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0004321,middle phalanx of manual digit 3,third finger middle phalanx +http://purl.obolibrary.org/obo/UBERON_0004321,middle phalanx of manual digit 3,third middle phalanx of hand +http://purl.obolibrary.org/obo/UBERON_0004322,middle phalanx of manual digit 4,4th digit of hand intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0004322,middle phalanx of manual digit 4,4th digit of hand middle phalanx +http://purl.obolibrary.org/obo/UBERON_0004322,middle phalanx of manual digit 4,4th finger intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0004322,middle phalanx of manual digit 4,4th finger middle phalanx +http://purl.obolibrary.org/obo/UBERON_0004322,middle phalanx of manual digit 4,fourth finger intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0004322,middle phalanx of manual digit 4,fourth finger middle phalanx +http://purl.obolibrary.org/obo/UBERON_0004322,middle phalanx of manual digit 4,fourth middle phalanx of hand +http://purl.obolibrary.org/obo/UBERON_0004322,middle phalanx of manual digit 4,hand digit 4 intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0004322,middle phalanx of manual digit 4,hand digit 4 middle phalanx +http://purl.obolibrary.org/obo/UBERON_0004322,middle phalanx of manual digit 4,intermediate phalanx of 4th digit of hand +http://purl.obolibrary.org/obo/UBERON_0004322,middle phalanx of manual digit 4,intermediate phalanx of 4th finger +http://purl.obolibrary.org/obo/UBERON_0004322,middle phalanx of manual digit 4,intermediate phalanx of fourth finger +http://purl.obolibrary.org/obo/UBERON_0004322,middle phalanx of manual digit 4,intermediate phalanx of hand digit 4 +http://purl.obolibrary.org/obo/UBERON_0004322,middle phalanx of manual digit 4,middle phalanx of 4th digit of hand +http://purl.obolibrary.org/obo/UBERON_0004322,middle phalanx of manual digit 4,middle phalanx of 4th finger +http://purl.obolibrary.org/obo/UBERON_0004322,middle phalanx of manual digit 4,middle phalanx of fourth digit of hand +http://purl.obolibrary.org/obo/UBERON_0004322,middle phalanx of manual digit 4,middle phalanx of fourth finger +http://purl.obolibrary.org/obo/UBERON_0004322,middle phalanx of manual digit 4,middle phalanx of manual digit IV +http://purl.obolibrary.org/obo/UBERON_0004322,middle phalanx of manual digit 4,middle phalanx of ring finger +http://purl.obolibrary.org/obo/UBERON_0004323,middle phalanx of manual digit 5,5th digit of hand intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0004323,middle phalanx of manual digit 5,5th digit of hand middle phalanx +http://purl.obolibrary.org/obo/UBERON_0004323,middle phalanx of manual digit 5,5th finger intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0004323,middle phalanx of manual digit 5,5th finger middle phalanx +http://purl.obolibrary.org/obo/UBERON_0004323,middle phalanx of manual digit 5,fifth finger intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0004323,middle phalanx of manual digit 5,fifth finger middle phalanx +http://purl.obolibrary.org/obo/UBERON_0004323,middle phalanx of manual digit 5,fifth middle phalanx of hand +http://purl.obolibrary.org/obo/UBERON_0004323,middle phalanx of manual digit 5,hand digit 5 intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0004323,middle phalanx of manual digit 5,hand digit 5 middle phalanx +http://purl.obolibrary.org/obo/UBERON_0004323,middle phalanx of manual digit 5,intermediate phalanx of 5th digit of hand +http://purl.obolibrary.org/obo/UBERON_0004323,middle phalanx of manual digit 5,intermediate phalanx of 5th finger +http://purl.obolibrary.org/obo/UBERON_0004323,middle phalanx of manual digit 5,intermediate phalanx of fifth finger +http://purl.obolibrary.org/obo/UBERON_0004323,middle phalanx of manual digit 5,intermediate phalanx of hand digit 5 +http://purl.obolibrary.org/obo/UBERON_0004323,middle phalanx of manual digit 5,middle phalanx of 5th digit of hand +http://purl.obolibrary.org/obo/UBERON_0004323,middle phalanx of manual digit 5,middle phalanx of 5th finger +http://purl.obolibrary.org/obo/UBERON_0004323,middle phalanx of manual digit 5,middle phalanx of fifth digit of hand +http://purl.obolibrary.org/obo/UBERON_0004323,middle phalanx of manual digit 5,middle phalanx of fifth finger +http://purl.obolibrary.org/obo/UBERON_0004323,middle phalanx of manual digit 5,middle phalanx of little finger +http://purl.obolibrary.org/obo/UBERON_0004323,middle phalanx of manual digit 5,middle phalanx of manual digit V +http://purl.obolibrary.org/obo/UBERON_0004324,middle phalanx of pedal digit 2,2nd toe intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0004324,middle phalanx of pedal digit 2,2nd toe middle phalanx +http://purl.obolibrary.org/obo/UBERON_0004324,middle phalanx of pedal digit 2,foot digit 2 intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0004324,middle phalanx of pedal digit 2,foot digit 2 middle phalanx +http://purl.obolibrary.org/obo/UBERON_0004324,middle phalanx of pedal digit 2,intermediate phalanx of 2nd toe +http://purl.obolibrary.org/obo/UBERON_0004324,middle phalanx of pedal digit 2,intermediate phalanx of foot digit 2 +http://purl.obolibrary.org/obo/UBERON_0004324,middle phalanx of pedal digit 2,middle phalanx of 2nd toe +http://purl.obolibrary.org/obo/UBERON_0004324,middle phalanx of pedal digit 2,middle phalanx of foot digit 2 +http://purl.obolibrary.org/obo/UBERON_0004324,middle phalanx of pedal digit 2,middle phalanx of pedal digit II +http://purl.obolibrary.org/obo/UBERON_0004324,middle phalanx of pedal digit 2,middle phalanx of second digit of foot +http://purl.obolibrary.org/obo/UBERON_0004324,middle phalanx of pedal digit 2,middle phalanx of second toe +http://purl.obolibrary.org/obo/UBERON_0004324,middle phalanx of pedal digit 2,middle phalanx of the 2nd toe +http://purl.obolibrary.org/obo/UBERON_0004324,middle phalanx of pedal digit 2,second middle phalanx of foot +http://purl.obolibrary.org/obo/UBERON_0004325,middle phalanx of pedal digit 3,3rd toe intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0004325,middle phalanx of pedal digit 3,3rd toe middle phalanx +http://purl.obolibrary.org/obo/UBERON_0004325,middle phalanx of pedal digit 3,foot digit 3 intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0004325,middle phalanx of pedal digit 3,foot digit 3 middle phalanx +http://purl.obolibrary.org/obo/UBERON_0004325,middle phalanx of pedal digit 3,hindlimb digit III P2 +http://purl.obolibrary.org/obo/UBERON_0004325,middle phalanx of pedal digit 3,intermediate phalanx of 3rd toe +http://purl.obolibrary.org/obo/UBERON_0004325,middle phalanx of pedal digit 3,intermediate phalanx of foot digit 3 +http://purl.obolibrary.org/obo/UBERON_0004325,middle phalanx of pedal digit 3,middle phalanx of 3rd toe +http://purl.obolibrary.org/obo/UBERON_0004325,middle phalanx of pedal digit 3,middle phalanx of foot digit 3 +http://purl.obolibrary.org/obo/UBERON_0004325,middle phalanx of pedal digit 3,middle phalanx of pedal digit III +http://purl.obolibrary.org/obo/UBERON_0004325,middle phalanx of pedal digit 3,middle phalanx of the 3rd toe +http://purl.obolibrary.org/obo/UBERON_0004325,middle phalanx of pedal digit 3,middle phalanx of third digit of foot +http://purl.obolibrary.org/obo/UBERON_0004325,middle phalanx of pedal digit 3,middle phalanx of third toe +http://purl.obolibrary.org/obo/UBERON_0004325,middle phalanx of pedal digit 3,third middle phalanx of foot +http://purl.obolibrary.org/obo/UBERON_0004326,middle phalanx of pedal digit 4,4th toe intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0004326,middle phalanx of pedal digit 4,4th toe middle phalanx +http://purl.obolibrary.org/obo/UBERON_0004326,middle phalanx of pedal digit 4,foot digit 4 intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0004326,middle phalanx of pedal digit 4,foot digit 4 middle phalanx +http://purl.obolibrary.org/obo/UBERON_0004326,middle phalanx of pedal digit 4,fourth middle phalanx of foot +http://purl.obolibrary.org/obo/UBERON_0004326,middle phalanx of pedal digit 4,intermediate phalanx of 4th toe +http://purl.obolibrary.org/obo/UBERON_0004326,middle phalanx of pedal digit 4,intermediate phalanx of foot digit 4 +http://purl.obolibrary.org/obo/UBERON_0004326,middle phalanx of pedal digit 4,middle phalanx of 4th toe +http://purl.obolibrary.org/obo/UBERON_0004326,middle phalanx of pedal digit 4,middle phalanx of foot digit 4 +http://purl.obolibrary.org/obo/UBERON_0004326,middle phalanx of pedal digit 4,middle phalanx of fourth digit of foot +http://purl.obolibrary.org/obo/UBERON_0004326,middle phalanx of pedal digit 4,middle phalanx of fourth toe +http://purl.obolibrary.org/obo/UBERON_0004326,middle phalanx of pedal digit 4,middle phalanx of pedal digit IV +http://purl.obolibrary.org/obo/UBERON_0004326,middle phalanx of pedal digit 4,middle phalanx of the 4th toe +http://purl.obolibrary.org/obo/UBERON_0004327,middle phalanx of pedal digit 5,5th toe intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0004327,middle phalanx of pedal digit 5,5th toe middle phalanx +http://purl.obolibrary.org/obo/UBERON_0004327,middle phalanx of pedal digit 5,foot digit 5 intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0004327,middle phalanx of pedal digit 5,foot digit 5 middle phalanx +http://purl.obolibrary.org/obo/UBERON_0004327,middle phalanx of pedal digit 5,intermediate phalanx of 5th toe +http://purl.obolibrary.org/obo/UBERON_0004327,middle phalanx of pedal digit 5,intermediate phalanx of foot digit 5 +http://purl.obolibrary.org/obo/UBERON_0004327,middle phalanx of pedal digit 5,middle phalanx of 5th toe +http://purl.obolibrary.org/obo/UBERON_0004327,middle phalanx of pedal digit 5,middle phalanx of foot digit 5 +http://purl.obolibrary.org/obo/UBERON_0004327,middle phalanx of pedal digit 5,middle phalanx of little toe +http://purl.obolibrary.org/obo/UBERON_0004327,middle phalanx of pedal digit 5,middle phalanx of pedal digit V +http://purl.obolibrary.org/obo/UBERON_0004327,middle phalanx of pedal digit 5,middle phalanx of the 5th toe +http://purl.obolibrary.org/obo/UBERON_0004328,proximal phalanx of manual digit 2,2nd digit of hand proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0004328,proximal phalanx of manual digit 2,2nd finger proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0004328,proximal phalanx of manual digit 2,hand digit 2 proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0004328,proximal phalanx of manual digit 2,manual digit 2 proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0004328,proximal phalanx of manual digit 2,manual phalanx II-1 +http://purl.obolibrary.org/obo/UBERON_0004328,proximal phalanx of manual digit 2,proximal phalanx of 2nd digit of hand +http://purl.obolibrary.org/obo/UBERON_0004328,proximal phalanx of manual digit 2,proximal phalanx of 2nd finger +http://purl.obolibrary.org/obo/UBERON_0004328,proximal phalanx of manual digit 2,proximal phalanx of index finger +http://purl.obolibrary.org/obo/UBERON_0004328,proximal phalanx of manual digit 2,proximal phalanx of manual digit II +http://purl.obolibrary.org/obo/UBERON_0004328,proximal phalanx of manual digit 2,proximal phalanx of second digit of hand +http://purl.obolibrary.org/obo/UBERON_0004328,proximal phalanx of manual digit 2,proximal phalanx of second finger +http://purl.obolibrary.org/obo/UBERON_0004328,proximal phalanx of manual digit 2,second finger proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0004328,proximal phalanx of manual digit 2,second proximal phalanx of hand +http://purl.obolibrary.org/obo/UBERON_0004329,proximal phalanx of manual digit 3,3rd digit of hand proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0004329,proximal phalanx of manual digit 3,3rd finger proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0004329,proximal phalanx of manual digit 3,hand digit 3 proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0004329,proximal phalanx of manual digit 3,manual digit 3 proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0004329,proximal phalanx of manual digit 3,manual phalanx III-1 +http://purl.obolibrary.org/obo/UBERON_0004329,proximal phalanx of manual digit 3,proximal phalanx of 3rd digit of hand +http://purl.obolibrary.org/obo/UBERON_0004329,proximal phalanx of manual digit 3,proximal phalanx of 3rd finger +http://purl.obolibrary.org/obo/UBERON_0004329,proximal phalanx of manual digit 3,proximal phalanx of manual digit III +http://purl.obolibrary.org/obo/UBERON_0004329,proximal phalanx of manual digit 3,proximal phalanx of middle finger +http://purl.obolibrary.org/obo/UBERON_0004329,proximal phalanx of manual digit 3,proximal phalanx of third digit of hand +http://purl.obolibrary.org/obo/UBERON_0004329,proximal phalanx of manual digit 3,proximal phalanx of third finger +http://purl.obolibrary.org/obo/UBERON_0004329,proximal phalanx of manual digit 3,third finger proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0004329,proximal phalanx of manual digit 3,third proximal phalanx of hand +http://purl.obolibrary.org/obo/UBERON_0004330,proximal phalanx of manual digit 4,4th digit of hand proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0004330,proximal phalanx of manual digit 4,4th finger proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0004330,proximal phalanx of manual digit 4,fourth finger proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0004330,proximal phalanx of manual digit 4,fourth proximal phalanx of hand +http://purl.obolibrary.org/obo/UBERON_0004330,proximal phalanx of manual digit 4,hand digit 4 proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0004330,proximal phalanx of manual digit 4,manual digit 4 proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0004330,proximal phalanx of manual digit 4,manual phalanx IV-1 +http://purl.obolibrary.org/obo/UBERON_0004330,proximal phalanx of manual digit 4,proximal phalanx of 4th digit of hand +http://purl.obolibrary.org/obo/UBERON_0004330,proximal phalanx of manual digit 4,proximal phalanx of 4th finger +http://purl.obolibrary.org/obo/UBERON_0004330,proximal phalanx of manual digit 4,proximal phalanx of fourth digit of hand +http://purl.obolibrary.org/obo/UBERON_0004330,proximal phalanx of manual digit 4,proximal phalanx of fourth finger +http://purl.obolibrary.org/obo/UBERON_0004330,proximal phalanx of manual digit 4,proximal phalanx of manual digit IV +http://purl.obolibrary.org/obo/UBERON_0004330,proximal phalanx of manual digit 4,proximal phalanx of ring finger +http://purl.obolibrary.org/obo/UBERON_0004331,proximal phalanx of manual digit 5,5th digit of hand proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0004331,proximal phalanx of manual digit 5,5th finger proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0004331,proximal phalanx of manual digit 5,fifth finger proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0004331,proximal phalanx of manual digit 5,fifth proximal phalanx of hand +http://purl.obolibrary.org/obo/UBERON_0004331,proximal phalanx of manual digit 5,hand digit 5 proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0004331,proximal phalanx of manual digit 5,manual digit 5 proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0004331,proximal phalanx of manual digit 5,manual phalanx V-1 +http://purl.obolibrary.org/obo/UBERON_0004331,proximal phalanx of manual digit 5,proximal phalanx of 5th digit of hand +http://purl.obolibrary.org/obo/UBERON_0004331,proximal phalanx of manual digit 5,proximal phalanx of 5th finger +http://purl.obolibrary.org/obo/UBERON_0004331,proximal phalanx of manual digit 5,proximal phalanx of fifth digit of hand +http://purl.obolibrary.org/obo/UBERON_0004331,proximal phalanx of manual digit 5,proximal phalanx of fifth finger +http://purl.obolibrary.org/obo/UBERON_0004331,proximal phalanx of manual digit 5,proximal phalanx of little finger +http://purl.obolibrary.org/obo/UBERON_0004331,proximal phalanx of manual digit 5,proximal phalanx of manual digit V +http://purl.obolibrary.org/obo/UBERON_0004332,proximal phalanx of pedal digit 1,foot digit 1 proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0004332,proximal phalanx of pedal digit 1,hallux proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0004332,proximal phalanx of pedal digit 1,pedal phalanx I-1 +http://purl.obolibrary.org/obo/UBERON_0004332,proximal phalanx of pedal digit 1,predal digit 1 proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0004332,proximal phalanx of pedal digit 1,proximal phalanx of big toe +http://purl.obolibrary.org/obo/UBERON_0004332,proximal phalanx of pedal digit 1,proximal phalanx of foot digit 1 +http://purl.obolibrary.org/obo/UBERON_0004332,proximal phalanx of pedal digit 1,proximal phalanx of great toe +http://purl.obolibrary.org/obo/UBERON_0004332,proximal phalanx of pedal digit 1,proximal phalanx of hallux +http://purl.obolibrary.org/obo/UBERON_0004332,proximal phalanx of pedal digit 1,proximal phalanx of pedal digit I +http://purl.obolibrary.org/obo/UBERON_0004332,proximal phalanx of pedal digit 1,proximal phalanx of the 1st toe +http://purl.obolibrary.org/obo/UBERON_0004333,proximal phalanx of pedal digit 2,2nd toe proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0004333,proximal phalanx of pedal digit 2,foot digit 2 proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0004333,proximal phalanx of pedal digit 2,pedal phalanx II-1 +http://purl.obolibrary.org/obo/UBERON_0004333,proximal phalanx of pedal digit 2,predal digit 2 proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0004333,proximal phalanx of pedal digit 2,proximal phalanx of 2nd toe +http://purl.obolibrary.org/obo/UBERON_0004333,proximal phalanx of pedal digit 2,proximal phalanx of foot digit 2 +http://purl.obolibrary.org/obo/UBERON_0004333,proximal phalanx of pedal digit 2,proximal phalanx of pedal digit II +http://purl.obolibrary.org/obo/UBERON_0004333,proximal phalanx of pedal digit 2,proximal phalanx of second digit of foot +http://purl.obolibrary.org/obo/UBERON_0004333,proximal phalanx of pedal digit 2,proximal phalanx of second toe +http://purl.obolibrary.org/obo/UBERON_0004333,proximal phalanx of pedal digit 2,proximal phalanx of the 2nd toe +http://purl.obolibrary.org/obo/UBERON_0004333,proximal phalanx of pedal digit 2,second proximal phalanx of foot +http://purl.obolibrary.org/obo/UBERON_0004334,proximal phalanx of pedal digit 3,3rd toe proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0004334,proximal phalanx of pedal digit 3,foot digit 3 proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0004334,proximal phalanx of pedal digit 3,pedal phalanx III-1 +http://purl.obolibrary.org/obo/UBERON_0004334,proximal phalanx of pedal digit 3,predal digit 3 proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0004334,proximal phalanx of pedal digit 3,proximal phalanx of 3rd toe +http://purl.obolibrary.org/obo/UBERON_0004334,proximal phalanx of pedal digit 3,proximal phalanx of foot digit 3 +http://purl.obolibrary.org/obo/UBERON_0004334,proximal phalanx of pedal digit 3,proximal phalanx of pedal digit III +http://purl.obolibrary.org/obo/UBERON_0004334,proximal phalanx of pedal digit 3,proximal phalanx of the 3rd toe +http://purl.obolibrary.org/obo/UBERON_0004334,proximal phalanx of pedal digit 3,proximal phalanx of third digit of foot +http://purl.obolibrary.org/obo/UBERON_0004334,proximal phalanx of pedal digit 3,proximal phalanx of third toe +http://purl.obolibrary.org/obo/UBERON_0004334,proximal phalanx of pedal digit 3,third proximal phalanx of foot +http://purl.obolibrary.org/obo/UBERON_0004335,proximal phalanx of pedal digit 4,4th toe proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0004335,proximal phalanx of pedal digit 4,foot digit 4 proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0004335,proximal phalanx of pedal digit 4,fourth proximal phalanx of foot +http://purl.obolibrary.org/obo/UBERON_0004335,proximal phalanx of pedal digit 4,pedal phalanx IV-1 +http://purl.obolibrary.org/obo/UBERON_0004335,proximal phalanx of pedal digit 4,predal digit 4 proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0004335,proximal phalanx of pedal digit 4,proximal phalanx of 4th toe +http://purl.obolibrary.org/obo/UBERON_0004335,proximal phalanx of pedal digit 4,proximal phalanx of foot digit 4 +http://purl.obolibrary.org/obo/UBERON_0004335,proximal phalanx of pedal digit 4,proximal phalanx of fourth digit of foot +http://purl.obolibrary.org/obo/UBERON_0004335,proximal phalanx of pedal digit 4,proximal phalanx of fourth toe +http://purl.obolibrary.org/obo/UBERON_0004335,proximal phalanx of pedal digit 4,proximal phalanx of pedal digit IV +http://purl.obolibrary.org/obo/UBERON_0004335,proximal phalanx of pedal digit 4,proximal phalanx of the 4th toe +http://purl.obolibrary.org/obo/UBERON_0004336,proximal phalanx of pedal digit 5,5th toe proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0004336,proximal phalanx of pedal digit 5,fifth proximal phalanx of foot +http://purl.obolibrary.org/obo/UBERON_0004336,proximal phalanx of pedal digit 5,foot digit 5 proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0004336,proximal phalanx of pedal digit 5,pedal phalanx V-1 +http://purl.obolibrary.org/obo/UBERON_0004336,proximal phalanx of pedal digit 5,predal digit 5 proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0004336,proximal phalanx of pedal digit 5,proximal phalanx of 5th toe +http://purl.obolibrary.org/obo/UBERON_0004336,proximal phalanx of pedal digit 5,proximal phalanx of fifth digit of foot +http://purl.obolibrary.org/obo/UBERON_0004336,proximal phalanx of pedal digit 5,proximal phalanx of fifth toe +http://purl.obolibrary.org/obo/UBERON_0004336,proximal phalanx of pedal digit 5,proximal phalanx of foot digit 5 +http://purl.obolibrary.org/obo/UBERON_0004336,proximal phalanx of pedal digit 5,proximal phalanx of little toe +http://purl.obolibrary.org/obo/UBERON_0004336,proximal phalanx of pedal digit 5,proximal phalanx of pedal digit V +http://purl.obolibrary.org/obo/UBERON_0004336,proximal phalanx of pedal digit 5,proximal phalanx of the 5th toe +http://purl.obolibrary.org/obo/UBERON_0004337,distal phalanx of manual digit 1,PDP +http://purl.obolibrary.org/obo/UBERON_0004337,distal phalanx of manual digit 1,distal phalanx of first digit of hand +http://purl.obolibrary.org/obo/UBERON_0004337,distal phalanx of manual digit 1,distal phalanx of manual digit I +http://purl.obolibrary.org/obo/UBERON_0004337,distal phalanx of manual digit 1,distal phalanx of thumb +http://purl.obolibrary.org/obo/UBERON_0004337,distal phalanx of manual digit 1,first distal phalanx of hand +http://purl.obolibrary.org/obo/UBERON_0004337,distal phalanx of manual digit 1,manual digit 1 distal phalanx +http://purl.obolibrary.org/obo/UBERON_0004337,distal phalanx of manual digit 1,pollical distal phalanx +http://purl.obolibrary.org/obo/UBERON_0004337,distal phalanx of manual digit 1,thumb distal phalanx +http://purl.obolibrary.org/obo/UBERON_0004338,proximal phalanx of manual digit 1,first proximal phalanx of hand +http://purl.obolibrary.org/obo/UBERON_0004338,proximal phalanx of manual digit 1,manual digit 1 proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0004338,proximal phalanx of manual digit 1,manual phalanx I-1 +http://purl.obolibrary.org/obo/UBERON_0004338,proximal phalanx of manual digit 1,proximal phalanx of first digit of hand +http://purl.obolibrary.org/obo/UBERON_0004338,proximal phalanx of manual digit 1,proximal phalanx of manual digit I +http://purl.obolibrary.org/obo/UBERON_0004338,proximal phalanx of manual digit 1,proximal phalanx of thumb +http://purl.obolibrary.org/obo/UBERON_0004338,proximal phalanx of manual digit 1,thumb proximal +http://purl.obolibrary.org/obo/UBERON_0004339,vault of skull,calva +http://purl.obolibrary.org/obo/UBERON_0004339,vault of skull,cranial vault +http://purl.obolibrary.org/obo/UBERON_0004339,vault of skull,skull vault +http://purl.obolibrary.org/obo/UBERON_0004340,allantois, +http://purl.obolibrary.org/obo/UBERON_0004341,primitive streak,primitive streak - blastopore - germ ring +http://purl.obolibrary.org/obo/UBERON_0004344,cardinal vein, +http://purl.obolibrary.org/obo/UBERON_0004345,trophectoderm, +http://purl.obolibrary.org/obo/UBERON_0004346,gubernaculum (male or female),gubernaculum +http://purl.obolibrary.org/obo/UBERON_0004347,limb bud,limb buds +http://purl.obolibrary.org/obo/UBERON_0004347,limb bud,limbbud +http://purl.obolibrary.org/obo/UBERON_0004348,optic eminence, +http://purl.obolibrary.org/obo/UBERON_0004353,female inguinal canal,inguinal canal of female +http://purl.obolibrary.org/obo/UBERON_0004354,male inguinal canal,inguinal canal of male +http://purl.obolibrary.org/obo/UBERON_0004356,apical ectodermal ridge,apical epidermal ridge +http://purl.obolibrary.org/obo/UBERON_0004357,paired limb/fin bud,limb - fin bud +http://purl.obolibrary.org/obo/UBERON_0004357,paired limb/fin bud,paired appendage bud +http://purl.obolibrary.org/obo/UBERON_0004357,paired limb/fin bud,paired limb/fin bud +http://purl.obolibrary.org/obo/UBERON_0004358,caput epididymis,epididymal head +http://purl.obolibrary.org/obo/UBERON_0004358,caput epididymis,epididymis head +http://purl.obolibrary.org/obo/UBERON_0004358,caput epididymis,epidymis head +http://purl.obolibrary.org/obo/UBERON_0004358,caput epididymis,head of epididymis +http://purl.obolibrary.org/obo/UBERON_0004358,caput epididymis,head of epidymis +http://purl.obolibrary.org/obo/UBERON_0004359,corpus epididymis,body of epididymis +http://purl.obolibrary.org/obo/UBERON_0004359,corpus epididymis,body of epidymis +http://purl.obolibrary.org/obo/UBERON_0004359,corpus epididymis,epididymal body +http://purl.obolibrary.org/obo/UBERON_0004359,corpus epididymis,epididymis body +http://purl.obolibrary.org/obo/UBERON_0004359,corpus epididymis,epidymis body +http://purl.obolibrary.org/obo/UBERON_0004360,cauda epididymis,cauda epididymidis +http://purl.obolibrary.org/obo/UBERON_0004360,cauda epididymis,epididymal cauda +http://purl.obolibrary.org/obo/UBERON_0004360,cauda epididymis,epididymal tail +http://purl.obolibrary.org/obo/UBERON_0004360,cauda epididymis,epididymis tail +http://purl.obolibrary.org/obo/UBERON_0004360,cauda epididymis,epidymis tail +http://purl.obolibrary.org/obo/UBERON_0004360,cauda epididymis,tail of epididymis +http://purl.obolibrary.org/obo/UBERON_0004360,cauda epididymis,tail of epidymis +http://purl.obolibrary.org/obo/UBERON_0004361,stylohyoid ligament,ligamentum stylohyoideum +http://purl.obolibrary.org/obo/UBERON_0004361,stylohyoid ligament,ligamentum stylohyoideus +http://purl.obolibrary.org/obo/UBERON_0004361,stylohyoid ligament,stylo-hyoid ligament +http://purl.obolibrary.org/obo/UBERON_0004362,pharyngeal arch 1,1st pharyngeal arch +http://purl.obolibrary.org/obo/UBERON_0004362,pharyngeal arch 1,branchial arch 1 +http://purl.obolibrary.org/obo/UBERON_0004362,pharyngeal arch 1,first branchial arch +http://purl.obolibrary.org/obo/UBERON_0004362,pharyngeal arch 1,first pharyngeal arch +http://purl.obolibrary.org/obo/UBERON_0004362,pharyngeal arch 1,first visceral arch +http://purl.obolibrary.org/obo/UBERON_0004362,pharyngeal arch 1,mandibular arch +http://purl.obolibrary.org/obo/UBERON_0004362,pharyngeal arch 1,visceral arch 1 +http://purl.obolibrary.org/obo/UBERON_0004363,pharyngeal arch artery,PAA +http://purl.obolibrary.org/obo/UBERON_0004363,pharyngeal arch artery,aortic arch +http://purl.obolibrary.org/obo/UBERON_0004363,pharyngeal arch artery,aortic arches +http://purl.obolibrary.org/obo/UBERON_0004363,pharyngeal arch artery,branchial aortic arches +http://purl.obolibrary.org/obo/UBERON_0004363,pharyngeal arch artery,branchial arch artery +http://purl.obolibrary.org/obo/UBERON_0004363,pharyngeal arch artery,embryonic aortic arch artery +http://purl.obolibrary.org/obo/UBERON_0004363,pharyngeal arch artery,pharyngeal arch artery +http://purl.obolibrary.org/obo/UBERON_0004364,ectoplacental cone,epamniotic cone +http://purl.obolibrary.org/obo/UBERON_0004364,ectoplacental cone,placenta - ectoplacental cone +http://purl.obolibrary.org/obo/UBERON_0004365,vitelline blood vessel, +http://purl.obolibrary.org/obo/UBERON_0004366,extraembryonic ectoderm, +http://purl.obolibrary.org/obo/UBERON_0004367,Descemet's membrane,Descemet membrane +http://purl.obolibrary.org/obo/UBERON_0004367,Descemet's membrane,Descemet's posterior elastic lamina +http://purl.obolibrary.org/obo/UBERON_0004367,Descemet's membrane,lamina limitans posterior +http://purl.obolibrary.org/obo/UBERON_0004367,Descemet's membrane,lamina limitans posterior corneae +http://purl.obolibrary.org/obo/UBERON_0004367,Descemet's membrane,posterior limiting lamina +http://purl.obolibrary.org/obo/UBERON_0004367,Descemet's membrane,posterior limiting lamina of cornea +http://purl.obolibrary.org/obo/UBERON_0004367,Descemet's membrane,posterior limiting membrane +http://purl.obolibrary.org/obo/UBERON_0004368,Reichert's cartilage,Reichert cartilage +http://purl.obolibrary.org/obo/UBERON_0004368,Reichert's cartilage,hyaloid cartilage +http://purl.obolibrary.org/obo/UBERON_0004368,Reichert's cartilage,hyoid cartilage +http://purl.obolibrary.org/obo/UBERON_0004368,Reichert's cartilage,second branchial arch cartilage +http://purl.obolibrary.org/obo/UBERON_0004368,Reichert's cartilage,second pharyngeal arch cartilage +http://purl.obolibrary.org/obo/UBERON_0004369,Reichert's membrane, +http://purl.obolibrary.org/obo/UBERON_0004370,anterior limiting lamina of cornea,Bowman's anterior elastic lamina +http://purl.obolibrary.org/obo/UBERON_0004370,anterior limiting lamina of cornea,Bowman's layer +http://purl.obolibrary.org/obo/UBERON_0004370,anterior limiting lamina of cornea,Bowman's membrane +http://purl.obolibrary.org/obo/UBERON_0004370,anterior limiting lamina of cornea,anterior elastic lamina +http://purl.obolibrary.org/obo/UBERON_0004370,anterior limiting lamina of cornea,anterior limiting lamina +http://purl.obolibrary.org/obo/UBERON_0004370,anterior limiting lamina of cornea,anterior limiting lamina of cornea +http://purl.obolibrary.org/obo/UBERON_0004370,anterior limiting lamina of cornea,lamina limitans anterior (cornea) +http://purl.obolibrary.org/obo/UBERON_0004370,anterior limiting lamina of cornea,lamina limitans anterior corneae +http://purl.obolibrary.org/obo/UBERON_0004374,vitelline vasculature, +http://purl.obolibrary.org/obo/UBERON_0004375,bone of free limb or fin,appendage bone +http://purl.obolibrary.org/obo/UBERON_0004375,bone of free limb or fin,bone of appendage +http://purl.obolibrary.org/obo/UBERON_0004375,bone of free limb or fin,bone of free segment of appendicular skeleton +http://purl.obolibrary.org/obo/UBERON_0004376,fin bone,bone of fin +http://purl.obolibrary.org/obo/UBERON_0004377,distal metaphysis,distal diaphyseal end of long bone +http://purl.obolibrary.org/obo/UBERON_0004378,proximal metaphysis,proximal diaphyseal end of long bone +http://purl.obolibrary.org/obo/UBERON_0004379,distal epiphysis,distal end of long bone +http://purl.obolibrary.org/obo/UBERON_0004380,proximal epiphysis,proximal end of long bone +http://purl.obolibrary.org/obo/UBERON_0004381,skeleton of limb,free limb skeleton +http://purl.obolibrary.org/obo/UBERON_0004381,skeleton of limb,limb skeleton +http://purl.obolibrary.org/obo/UBERON_0004381,skeleton of limb,set of bones of limb +http://purl.obolibrary.org/obo/UBERON_0004382,epiphysis of humerus,humeral epiphysis +http://purl.obolibrary.org/obo/UBERON_0004383,epiphysis of tibia,tibial epiphysis +http://purl.obolibrary.org/obo/UBERON_0004384,epiphysis of femur,femoral epiphysis +http://purl.obolibrary.org/obo/UBERON_0004385,epiphysis of radius,radial epiphysis +http://purl.obolibrary.org/obo/UBERON_0004386,epiphysis of ulna,ulnar epiphysis +http://purl.obolibrary.org/obo/UBERON_0004387,epiphysis of phalanx of manus,epiphysis of phalanx of finger +http://purl.obolibrary.org/obo/UBERON_0004388,epiphysis of fibula,fibula epiphysis +http://purl.obolibrary.org/obo/UBERON_0004389,epiphysis of metatarsal bone,epiphysis of metatarsal +http://purl.obolibrary.org/obo/UBERON_0004389,epiphysis of metatarsal bone,metatarsal bone epiphysis +http://purl.obolibrary.org/obo/UBERON_0004389,epiphysis of metatarsal bone,metatarsal epiphysis +http://purl.obolibrary.org/obo/UBERON_0004390,epiphysis of metacarpal bone,epiphysis of metacarpal +http://purl.obolibrary.org/obo/UBERON_0004390,epiphysis of metacarpal bone,metacarpal bone epiphysis +http://purl.obolibrary.org/obo/UBERON_0004390,epiphysis of metacarpal bone,metacarpal epiphysis +http://purl.obolibrary.org/obo/UBERON_0004391,epiphysis of first metacarpal bone,first metacarpal bone epiphysis +http://purl.obolibrary.org/obo/UBERON_0004391,epiphysis of first metacarpal bone,metacarpal 1 epiphysis +http://purl.obolibrary.org/obo/UBERON_0004392,epiphysis of second metacarpal bone,metacarpal 2 epiphysis +http://purl.obolibrary.org/obo/UBERON_0004392,epiphysis of second metacarpal bone,second metacarpal bone epiphysis +http://purl.obolibrary.org/obo/UBERON_0004393,epiphysis of third metacarpal bone,metacarpal 3 epiphysis +http://purl.obolibrary.org/obo/UBERON_0004393,epiphysis of third metacarpal bone,third metacarpal bone epiphysis +http://purl.obolibrary.org/obo/UBERON_0004394,epiphysis of fourth metacarpal bone,fourth metacarpal bone epiphysis +http://purl.obolibrary.org/obo/UBERON_0004394,epiphysis of fourth metacarpal bone,metacarpal 4 epiphysis +http://purl.obolibrary.org/obo/UBERON_0004395,epiphysis of first metatarsal bone,first metatarsal bone epiphysis +http://purl.obolibrary.org/obo/UBERON_0004395,epiphysis of first metatarsal bone,metatarsal 1 epiphysis +http://purl.obolibrary.org/obo/UBERON_0004396,epiphysis of second metatarsal bone,metatarsal 2 epiphysis +http://purl.obolibrary.org/obo/UBERON_0004396,epiphysis of second metatarsal bone,second metatarsal bone epiphysis +http://purl.obolibrary.org/obo/UBERON_0004397,epiphysis of third metatarsal bone,metatarsal 3 epiphysis +http://purl.obolibrary.org/obo/UBERON_0004397,epiphysis of third metatarsal bone,third metatarsal bone epiphysis +http://purl.obolibrary.org/obo/UBERON_0004398,epiphysis of fourth metatarsal bone,fourth metatarsal bone epiphysis +http://purl.obolibrary.org/obo/UBERON_0004398,epiphysis of fourth metatarsal bone,metatarsal 4 epiphysis +http://purl.obolibrary.org/obo/UBERON_0004399,epiphysis of fifth metatarsal bone,fifth metatarsal bone epiphysis +http://purl.obolibrary.org/obo/UBERON_0004399,epiphysis of fifth metatarsal bone,metatarsal 5 epiphysis +http://purl.obolibrary.org/obo/UBERON_0004400,bone tissue of epiphysis, +http://purl.obolibrary.org/obo/UBERON_0004401,bone tissue of distal epiphysis, +http://purl.obolibrary.org/obo/UBERON_0004402,bone tissue of proximal epiphysis, +http://purl.obolibrary.org/obo/UBERON_0004403,periosteum of epiphysis,epiphysis periosteum +http://purl.obolibrary.org/obo/UBERON_0004404,distal epiphysis of humerus,distal end of humerus +http://purl.obolibrary.org/obo/UBERON_0004404,distal epiphysis of humerus,lower end of humerus +http://purl.obolibrary.org/obo/UBERON_0004405,distal epiphysis of tibia,distal end of tibia +http://purl.obolibrary.org/obo/UBERON_0004405,distal epiphysis of tibia,lower end of tibia +http://purl.obolibrary.org/obo/UBERON_0004406,distal epiphysis of femur,distal femoral epiphysis +http://purl.obolibrary.org/obo/UBERON_0004407,distal epiphysis of radius,distal end of radius +http://purl.obolibrary.org/obo/UBERON_0004407,distal epiphysis of radius,lower end of radius +http://purl.obolibrary.org/obo/UBERON_0004408,distal epiphysis of ulna,distal end of ulna +http://purl.obolibrary.org/obo/UBERON_0004408,distal epiphysis of ulna,lower end of ulna +http://purl.obolibrary.org/obo/UBERON_0004409,distal epiphysis of phalanx of manus,distal epiphysis of phalanx of finger +http://purl.obolibrary.org/obo/UBERON_0004410,distal epiphysis of fibula,distal end of fibula +http://purl.obolibrary.org/obo/UBERON_0004410,distal epiphysis of fibula,lower end of fibula +http://purl.obolibrary.org/obo/UBERON_0004411,proximal epiphysis of humerus,proximal end of humerus +http://purl.obolibrary.org/obo/UBERON_0004411,proximal epiphysis of humerus,proximal humeral epiphysis +http://purl.obolibrary.org/obo/UBERON_0004411,proximal epiphysis of humerus,upper end of humerus +http://purl.obolibrary.org/obo/UBERON_0004412,proximal epiphysis of femur,proximal femoral epiphysis +http://purl.obolibrary.org/obo/UBERON_0004413,proximal epiphysis of radius,proximal end of radius +http://purl.obolibrary.org/obo/UBERON_0004413,proximal epiphysis of radius,proximal radial epiphysis +http://purl.obolibrary.org/obo/UBERON_0004413,proximal epiphysis of radius,upper end of radius +http://purl.obolibrary.org/obo/UBERON_0004414,proximal epiphysis of phalanx of manus,basal epiphysis of phalanx of finger +http://purl.obolibrary.org/obo/UBERON_0004414,proximal epiphysis of phalanx of manus,base of phalanx of finger +http://purl.obolibrary.org/obo/UBERON_0004414,proximal epiphysis of phalanx of manus,basis phalangis manus +http://purl.obolibrary.org/obo/UBERON_0004414,proximal epiphysis of phalanx of manus,proximal epiphysis of phalanx of finger +http://purl.obolibrary.org/obo/UBERON_0004415,proximal epiphysis of metatarsal bone,base of metatarsal bone +http://purl.obolibrary.org/obo/UBERON_0004415,proximal epiphysis of metatarsal bone,basis ossis metatarsi +http://purl.obolibrary.org/obo/UBERON_0004415,proximal epiphysis of metatarsal bone,proximal end of metatarsal bone +http://purl.obolibrary.org/obo/UBERON_0004415,proximal epiphysis of metatarsal bone,upper end of metatarsal bone +http://purl.obolibrary.org/obo/UBERON_0004416,proximal epiphysis of metacarpal bone,base of metacarpal bone +http://purl.obolibrary.org/obo/UBERON_0004416,proximal epiphysis of metacarpal bone,basis ossis metacarpi +http://purl.obolibrary.org/obo/UBERON_0004416,proximal epiphysis of metacarpal bone,metacarpal bone base +http://purl.obolibrary.org/obo/UBERON_0004416,proximal epiphysis of metacarpal bone,proximal end of metacarpal bone +http://purl.obolibrary.org/obo/UBERON_0004416,proximal epiphysis of metacarpal bone,upper end of metacarpal bone +http://purl.obolibrary.org/obo/UBERON_0004417,proximal epiphysis of phalanx of manual digit 1,basal epiphysis of phalanx of thumb +http://purl.obolibrary.org/obo/UBERON_0004417,proximal epiphysis of phalanx of manual digit 1,base of phalanx of first digit of hand +http://purl.obolibrary.org/obo/UBERON_0004417,proximal epiphysis of phalanx of manual digit 1,base of phalanx of thumb +http://purl.obolibrary.org/obo/UBERON_0004417,proximal epiphysis of phalanx of manual digit 1,proximal epiphysis of phalanx of manual digit 1 +http://purl.obolibrary.org/obo/UBERON_0004417,proximal epiphysis of phalanx of manual digit 1,proximal epiphysis of phalanx of manual digit I +http://purl.obolibrary.org/obo/UBERON_0004418,proximal epiphysis of phalanx of manual digit 2,basal epiphysis of phalanx of index finger +http://purl.obolibrary.org/obo/UBERON_0004418,proximal epiphysis of phalanx of manual digit 2,base of phalanx of index finger +http://purl.obolibrary.org/obo/UBERON_0004418,proximal epiphysis of phalanx of manual digit 2,base of phalanx of second digit of hand +http://purl.obolibrary.org/obo/UBERON_0004418,proximal epiphysis of phalanx of manual digit 2,base of phalanx of second finger +http://purl.obolibrary.org/obo/UBERON_0004418,proximal epiphysis of phalanx of manual digit 2,proximal epiphysis of phalanx of manual digit 2 +http://purl.obolibrary.org/obo/UBERON_0004418,proximal epiphysis of phalanx of manual digit 2,proximal epiphysis of phalanx of manual digit II +http://purl.obolibrary.org/obo/UBERON_0004419,proximal epiphysis of phalanx of manual digit 3,basal epiphysis of phalanx of middle finger +http://purl.obolibrary.org/obo/UBERON_0004419,proximal epiphysis of phalanx of manual digit 3,base of phalanx of middle finger +http://purl.obolibrary.org/obo/UBERON_0004419,proximal epiphysis of phalanx of manual digit 3,base of phalanx of third digit of hand +http://purl.obolibrary.org/obo/UBERON_0004419,proximal epiphysis of phalanx of manual digit 3,base of phalanx of third finger +http://purl.obolibrary.org/obo/UBERON_0004419,proximal epiphysis of phalanx of manual digit 3,proximal epiphysis of phalanx of manual digit 3 +http://purl.obolibrary.org/obo/UBERON_0004419,proximal epiphysis of phalanx of manual digit 3,proximal epiphysis of phalanx of manual digit III +http://purl.obolibrary.org/obo/UBERON_0004420,proximal epiphysis of phalanx of manual digit 4,basal epiphysis of phalanx of ring finger +http://purl.obolibrary.org/obo/UBERON_0004420,proximal epiphysis of phalanx of manual digit 4,base of phalanx of fourth digit of hand +http://purl.obolibrary.org/obo/UBERON_0004420,proximal epiphysis of phalanx of manual digit 4,base of phalanx of fourth finger +http://purl.obolibrary.org/obo/UBERON_0004420,proximal epiphysis of phalanx of manual digit 4,base of phalanx of ring finger +http://purl.obolibrary.org/obo/UBERON_0004420,proximal epiphysis of phalanx of manual digit 4,proximal epiphysis of phalanx of manual digit 4 +http://purl.obolibrary.org/obo/UBERON_0004420,proximal epiphysis of phalanx of manual digit 4,proximal epiphysis of phalanx of manual digit IV +http://purl.obolibrary.org/obo/UBERON_0004421,proximal epiphysis of phalanx of manual digit 5,basal epiphysis of phalanx of fifth finger +http://purl.obolibrary.org/obo/UBERON_0004421,proximal epiphysis of phalanx of manual digit 5,basal epiphysis of phalanx of little finger +http://purl.obolibrary.org/obo/UBERON_0004421,proximal epiphysis of phalanx of manual digit 5,base of phalanx of fifth digit of hand +http://purl.obolibrary.org/obo/UBERON_0004421,proximal epiphysis of phalanx of manual digit 5,base of phalanx of fifth finger +http://purl.obolibrary.org/obo/UBERON_0004421,proximal epiphysis of phalanx of manual digit 5,base of phalanx of little finger +http://purl.obolibrary.org/obo/UBERON_0004421,proximal epiphysis of phalanx of manual digit 5,proximal epiphysis of phalanx of manual digit 5 +http://purl.obolibrary.org/obo/UBERON_0004421,proximal epiphysis of phalanx of manual digit 5,proximal epiphysis of phalanx of manual digit V +http://purl.obolibrary.org/obo/UBERON_0004422,proximal epiphysis of first metacarpal bone,base of first metacarpal bone +http://purl.obolibrary.org/obo/UBERON_0004422,proximal epiphysis of first metacarpal bone,first metacarpal bone base +http://purl.obolibrary.org/obo/UBERON_0004422,proximal epiphysis of first metacarpal bone,proximal epiphysis of metacarpal 1 +http://purl.obolibrary.org/obo/UBERON_0004423,proximal epiphysis of second metacarpal bone,base of second metacarpal bone +http://purl.obolibrary.org/obo/UBERON_0004423,proximal epiphysis of second metacarpal bone,proximal end of second metacarpal bone +http://purl.obolibrary.org/obo/UBERON_0004423,proximal epiphysis of second metacarpal bone,proximal epiphysis of metacarpal 2 +http://purl.obolibrary.org/obo/UBERON_0004423,proximal epiphysis of second metacarpal bone,second metacarpal bone base +http://purl.obolibrary.org/obo/UBERON_0004424,proximal epiphysis of third metacarpal bone,base of third metacarpal bone +http://purl.obolibrary.org/obo/UBERON_0004424,proximal epiphysis of third metacarpal bone,proximal end of third metacarpal bone +http://purl.obolibrary.org/obo/UBERON_0004424,proximal epiphysis of third metacarpal bone,proximal epiphysis of metacarpal 3 +http://purl.obolibrary.org/obo/UBERON_0004424,proximal epiphysis of third metacarpal bone,third metacarpal bone base +http://purl.obolibrary.org/obo/UBERON_0004425,proximal epiphysis of fourth metacarpal bone,base of fourth metacarpal bone +http://purl.obolibrary.org/obo/UBERON_0004425,proximal epiphysis of fourth metacarpal bone,fourth metacarpal bone base +http://purl.obolibrary.org/obo/UBERON_0004425,proximal epiphysis of fourth metacarpal bone,proximal end of fourth metacarpal bone +http://purl.obolibrary.org/obo/UBERON_0004425,proximal epiphysis of fourth metacarpal bone,proximal epiphysis of metacarpal 4 +http://purl.obolibrary.org/obo/UBERON_0004426,proximal epiphysis of fifth metacarpal bone,base of fifth metacarpal bone +http://purl.obolibrary.org/obo/UBERON_0004426,proximal epiphysis of fifth metacarpal bone,fifth metacarpal bone base +http://purl.obolibrary.org/obo/UBERON_0004426,proximal epiphysis of fifth metacarpal bone,proximal end of fifth metacarpal bone +http://purl.obolibrary.org/obo/UBERON_0004426,proximal epiphysis of fifth metacarpal bone,proximal epiphysis of metacarpal 5 +http://purl.obolibrary.org/obo/UBERON_0004427,proximal epiphysis of first metatarsal bone,base of first metatarsal bone +http://purl.obolibrary.org/obo/UBERON_0004427,proximal epiphysis of first metatarsal bone,proximal end of first metatarsal bone +http://purl.obolibrary.org/obo/UBERON_0004427,proximal epiphysis of first metatarsal bone,proximal epiphysis of metatarsal 1 +http://purl.obolibrary.org/obo/UBERON_0004428,proximal epiphysis of second metatarsal bone,base of second metatarsal bone +http://purl.obolibrary.org/obo/UBERON_0004428,proximal epiphysis of second metatarsal bone,proximal end of second metatarsal bone +http://purl.obolibrary.org/obo/UBERON_0004428,proximal epiphysis of second metatarsal bone,proximal epiphysis of metatarsal 2 +http://purl.obolibrary.org/obo/UBERON_0004429,proximal epiphysis of third metatarsal bone,base of third metatarsal bone +http://purl.obolibrary.org/obo/UBERON_0004429,proximal epiphysis of third metatarsal bone,proximal end of third metatarsal bone +http://purl.obolibrary.org/obo/UBERON_0004429,proximal epiphysis of third metatarsal bone,proximal epiphysis of metatarsal 3 +http://purl.obolibrary.org/obo/UBERON_0004430,proximal epiphysis of fourth metatarsal bone,base of fourth metatarsal bone +http://purl.obolibrary.org/obo/UBERON_0004430,proximal epiphysis of fourth metatarsal bone,proximal end of fourth metatarsal bone +http://purl.obolibrary.org/obo/UBERON_0004430,proximal epiphysis of fourth metatarsal bone,proximal epiphysis of metatarsal 4 +http://purl.obolibrary.org/obo/UBERON_0004431,proximal epiphysis of fifth metatarsal bone,base of fifth metatarsal bone +http://purl.obolibrary.org/obo/UBERON_0004431,proximal epiphysis of fifth metatarsal bone,proximal end of fifth metatarsal bone +http://purl.obolibrary.org/obo/UBERON_0004431,proximal epiphysis of fifth metatarsal bone,proximal epiphysis of metatarsal 5 +http://purl.obolibrary.org/obo/UBERON_0004432,proximal epiphysis of distal phalanx of manual digit 2,basal epiphysis of distal phalanx of index finger +http://purl.obolibrary.org/obo/UBERON_0004432,proximal epiphysis of distal phalanx of manual digit 2,base of distal phalanx of index finger +http://purl.obolibrary.org/obo/UBERON_0004432,proximal epiphysis of distal phalanx of manual digit 2,base of distal phalanx of second digit of hand +http://purl.obolibrary.org/obo/UBERON_0004432,proximal epiphysis of distal phalanx of manual digit 2,base of distal phalanx of second finger +http://purl.obolibrary.org/obo/UBERON_0004432,proximal epiphysis of distal phalanx of manual digit 2,proximal epiphysis of distal phalanx of manual digit II +http://purl.obolibrary.org/obo/UBERON_0004433,proximal epiphysis of distal phalanx of manual digit 3,base of distal phalanx of middle finger +http://purl.obolibrary.org/obo/UBERON_0004433,proximal epiphysis of distal phalanx of manual digit 3,base of distal phalanx of third digit of hand +http://purl.obolibrary.org/obo/UBERON_0004433,proximal epiphysis of distal phalanx of manual digit 3,base of distal phalanx of third finger +http://purl.obolibrary.org/obo/UBERON_0004433,proximal epiphysis of distal phalanx of manual digit 3,proximal epiphysis of distal phalanx of manual digit III +http://purl.obolibrary.org/obo/UBERON_0004434,proximal epiphysis of distal phalanx of manual digit 4,basal epiphysis of distal phalanx of fourth finger +http://purl.obolibrary.org/obo/UBERON_0004434,proximal epiphysis of distal phalanx of manual digit 4,basal epiphysis of distal phalanx of ring finger +http://purl.obolibrary.org/obo/UBERON_0004434,proximal epiphysis of distal phalanx of manual digit 4,base of distal phalanx of fourth digit of hand +http://purl.obolibrary.org/obo/UBERON_0004434,proximal epiphysis of distal phalanx of manual digit 4,base of distal phalanx of fourth finger +http://purl.obolibrary.org/obo/UBERON_0004434,proximal epiphysis of distal phalanx of manual digit 4,base of distal phalanx of ring finger +http://purl.obolibrary.org/obo/UBERON_0004434,proximal epiphysis of distal phalanx of manual digit 4,proximal epiphysis of distal phalanx of manual digit IV +http://purl.obolibrary.org/obo/UBERON_0004435,proximal epiphysis of distal phalanx of manual digit 5,basal epiphysis of distal phalanx of fifth finger +http://purl.obolibrary.org/obo/UBERON_0004435,proximal epiphysis of distal phalanx of manual digit 5,basal epiphysis of distal phalanx of little finger +http://purl.obolibrary.org/obo/UBERON_0004435,proximal epiphysis of distal phalanx of manual digit 5,base of distal phalanx of fifth digit of hand +http://purl.obolibrary.org/obo/UBERON_0004435,proximal epiphysis of distal phalanx of manual digit 5,base of distal phalanx of fifth finger +http://purl.obolibrary.org/obo/UBERON_0004435,proximal epiphysis of distal phalanx of manual digit 5,base of distal phalanx of little finger +http://purl.obolibrary.org/obo/UBERON_0004435,proximal epiphysis of distal phalanx of manual digit 5,proximal epiphysis of distal phalanx of manual digit V +http://purl.obolibrary.org/obo/UBERON_0004436,proximal epiphysis of middle phalanx of manual digit 2,basal epiphysis of middle phalanx of index finger +http://purl.obolibrary.org/obo/UBERON_0004436,proximal epiphysis of middle phalanx of manual digit 2,base of middle phalanx of index finger +http://purl.obolibrary.org/obo/UBERON_0004436,proximal epiphysis of middle phalanx of manual digit 2,base of middle phalanx of second digit of hand +http://purl.obolibrary.org/obo/UBERON_0004436,proximal epiphysis of middle phalanx of manual digit 2,base of middle phalanx of second finger +http://purl.obolibrary.org/obo/UBERON_0004436,proximal epiphysis of middle phalanx of manual digit 2,proximal epiphysis of middle phalanx of manual digit II +http://purl.obolibrary.org/obo/UBERON_0004437,proximal epiphysis of middle phalanx of manual digit 3,basal epiphysis of middle phalanx of middle finger +http://purl.obolibrary.org/obo/UBERON_0004437,proximal epiphysis of middle phalanx of manual digit 3,base of middle phalanx of middle finger +http://purl.obolibrary.org/obo/UBERON_0004437,proximal epiphysis of middle phalanx of manual digit 3,base of middle phalanx of third digit of hand +http://purl.obolibrary.org/obo/UBERON_0004437,proximal epiphysis of middle phalanx of manual digit 3,base of middle phalanx of third finger +http://purl.obolibrary.org/obo/UBERON_0004437,proximal epiphysis of middle phalanx of manual digit 3,proximal epiphysis of middle phalanx of manual digit III +http://purl.obolibrary.org/obo/UBERON_0004438,proximal epiphysis of middle phalanx of manual digit 4,basal epiphysis of middle phalanx of fourth finger +http://purl.obolibrary.org/obo/UBERON_0004438,proximal epiphysis of middle phalanx of manual digit 4,basal epiphysis of middle phalanx of ring finger +http://purl.obolibrary.org/obo/UBERON_0004438,proximal epiphysis of middle phalanx of manual digit 4,base of middle phalanx of fourth digit of hand +http://purl.obolibrary.org/obo/UBERON_0004438,proximal epiphysis of middle phalanx of manual digit 4,base of middle phalanx of fourth finger +http://purl.obolibrary.org/obo/UBERON_0004438,proximal epiphysis of middle phalanx of manual digit 4,base of middle phalanx of ring finger +http://purl.obolibrary.org/obo/UBERON_0004438,proximal epiphysis of middle phalanx of manual digit 4,proximal epiphysis of middle phalanx of manual digit IV +http://purl.obolibrary.org/obo/UBERON_0004439,proximal epiphysis of middle phalanx of manual digit 5,basal epiphysis of middle phalanx of fifth finger +http://purl.obolibrary.org/obo/UBERON_0004439,proximal epiphysis of middle phalanx of manual digit 5,basal epiphysis of middle phalanx of little finger +http://purl.obolibrary.org/obo/UBERON_0004439,proximal epiphysis of middle phalanx of manual digit 5,base of middle phalanx of fifth digit of hand +http://purl.obolibrary.org/obo/UBERON_0004439,proximal epiphysis of middle phalanx of manual digit 5,base of middle phalanx of fifth finger +http://purl.obolibrary.org/obo/UBERON_0004439,proximal epiphysis of middle phalanx of manual digit 5,base of middle phalanx of little finger +http://purl.obolibrary.org/obo/UBERON_0004439,proximal epiphysis of middle phalanx of manual digit 5,proximal epiphysis of middle phalanx of manual digit V +http://purl.obolibrary.org/obo/UBERON_0004440,proximal epiphysis of proximal phalanx of manual digit 2,base of proximal phalanx of index finger +http://purl.obolibrary.org/obo/UBERON_0004440,proximal epiphysis of proximal phalanx of manual digit 2,base of proximal phalanx of second digit of hand +http://purl.obolibrary.org/obo/UBERON_0004440,proximal epiphysis of proximal phalanx of manual digit 2,base of proximal phalanx of second finger +http://purl.obolibrary.org/obo/UBERON_0004440,proximal epiphysis of proximal phalanx of manual digit 2,proximal epiphysis of proximal phalanx of manual digit II +http://purl.obolibrary.org/obo/UBERON_0004441,proximal epiphysis of proximal phalanx of manual digit 3,basal epiphysis of proximal phalanx of middle finger +http://purl.obolibrary.org/obo/UBERON_0004441,proximal epiphysis of proximal phalanx of manual digit 3,base of proximal phalanx of middle finger +http://purl.obolibrary.org/obo/UBERON_0004441,proximal epiphysis of proximal phalanx of manual digit 3,base of proximal phalanx of third digit of hand +http://purl.obolibrary.org/obo/UBERON_0004441,proximal epiphysis of proximal phalanx of manual digit 3,base of proximal phalanx of third finger +http://purl.obolibrary.org/obo/UBERON_0004441,proximal epiphysis of proximal phalanx of manual digit 3,proximal epiphysis of proximal phalanx of manual digit III +http://purl.obolibrary.org/obo/UBERON_0004442,proximal epiphysis of proximal phalanx of manual digit 4,basal epiphysis of proximal phalanx of fourth finger +http://purl.obolibrary.org/obo/UBERON_0004442,proximal epiphysis of proximal phalanx of manual digit 4,basal epiphysis of proximal phalanx of ring finger +http://purl.obolibrary.org/obo/UBERON_0004442,proximal epiphysis of proximal phalanx of manual digit 4,base of proximal phalanx of fourth digit of hand +http://purl.obolibrary.org/obo/UBERON_0004442,proximal epiphysis of proximal phalanx of manual digit 4,base of proximal phalanx of fourth finger +http://purl.obolibrary.org/obo/UBERON_0004442,proximal epiphysis of proximal phalanx of manual digit 4,base of proximal phalanx of ring finger +http://purl.obolibrary.org/obo/UBERON_0004442,proximal epiphysis of proximal phalanx of manual digit 4,proximal epiphysis of proximal phalanx of manual digit IV +http://purl.obolibrary.org/obo/UBERON_0004443,proximal epiphysis of proximal phalanx of manual digit 5,basal epiphysis of proximal phalanx of little finger +http://purl.obolibrary.org/obo/UBERON_0004443,proximal epiphysis of proximal phalanx of manual digit 5,base of proximal phalanx of fifth digit of hand +http://purl.obolibrary.org/obo/UBERON_0004443,proximal epiphysis of proximal phalanx of manual digit 5,base of proximal phalanx of fifth finger +http://purl.obolibrary.org/obo/UBERON_0004443,proximal epiphysis of proximal phalanx of manual digit 5,base of proximal phalanx of little finger +http://purl.obolibrary.org/obo/UBERON_0004443,proximal epiphysis of proximal phalanx of manual digit 5,proximal epiphysis of proximal phalanx of manual digit V +http://purl.obolibrary.org/obo/UBERON_0004444,proximal epiphysis of distal phalanx of manual digit 1,base of distal phalanx of thumb +http://purl.obolibrary.org/obo/UBERON_0004444,proximal epiphysis of distal phalanx of manual digit 1,proximal epiphysis of distal phalanx of manual digit I +http://purl.obolibrary.org/obo/UBERON_0004445,proximal epiphysis of proximal phalanx of manual digit 1,basal epiphysis of proximal phalanx of thumb +http://purl.obolibrary.org/obo/UBERON_0004445,proximal epiphysis of proximal phalanx of manual digit 1,base of proximal phalanx of thumb +http://purl.obolibrary.org/obo/UBERON_0004445,proximal epiphysis of proximal phalanx of manual digit 1,proximal epiphysis of proximal phalanx of manual digit I +http://purl.obolibrary.org/obo/UBERON_0004446,epiphysis of phalanx, +http://purl.obolibrary.org/obo/UBERON_0004447,proximal epiphysis of phalanx, +http://purl.obolibrary.org/obo/UBERON_0004448,distal epiphysis of phalanx,head of phalanx +http://purl.obolibrary.org/obo/UBERON_0004449,cerebral artery, +http://purl.obolibrary.org/obo/UBERON_0004450,gastric vein,vena gastrica +http://purl.obolibrary.org/obo/UBERON_0004451,trunk or cervical vertebra, +http://purl.obolibrary.org/obo/UBERON_0004452,carpal region,carpal limb segment +http://purl.obolibrary.org/obo/UBERON_0004452,carpal region,carpal segment +http://purl.obolibrary.org/obo/UBERON_0004452,carpal region,fore basipodium +http://purl.obolibrary.org/obo/UBERON_0004452,carpal region,fore mesopodium +http://purl.obolibrary.org/obo/UBERON_0004452,carpal region,hand mesopodium +http://purl.obolibrary.org/obo/UBERON_0004452,carpal region,manus mesopodium +http://purl.obolibrary.org/obo/UBERON_0004452,carpal region,regio carpalis +http://purl.obolibrary.org/obo/UBERON_0004452,carpal region,wrist +http://purl.obolibrary.org/obo/UBERON_0004452,carpal region,wrist region +http://purl.obolibrary.org/obo/UBERON_0004453,metacarpus region,distal segment of hand proper +http://purl.obolibrary.org/obo/UBERON_0004453,metacarpus region,metacarpal part of hand +http://purl.obolibrary.org/obo/UBERON_0004453,metacarpus region,metacarpal part of manus +http://purl.obolibrary.org/obo/UBERON_0004453,metacarpus region,metacarpal region +http://purl.obolibrary.org/obo/UBERON_0004453,metacarpus region,metacarpus +http://purl.obolibrary.org/obo/UBERON_0004454,tarsal region,ankle +http://purl.obolibrary.org/obo/UBERON_0004454,tarsal region,ankle region +http://purl.obolibrary.org/obo/UBERON_0004454,tarsal region,tarsal limb segment +http://purl.obolibrary.org/obo/UBERON_0004455,neurula embryo,neurula +http://purl.obolibrary.org/obo/UBERON_0004456,entire sense organ system,sense organ system +http://purl.obolibrary.org/obo/UBERON_0004461,skeletal musculature of head,head musculature +http://purl.obolibrary.org/obo/UBERON_0004461,skeletal musculature of head,muscle group of head +http://purl.obolibrary.org/obo/UBERON_0004461,skeletal musculature of head,muscles of head +http://purl.obolibrary.org/obo/UBERON_0004461,skeletal musculature of head,musculi capitis +http://purl.obolibrary.org/obo/UBERON_0004461,skeletal musculature of head,set of muscles of head +http://purl.obolibrary.org/obo/UBERON_0004462,musculature of body wall,body wall musculature +http://purl.obolibrary.org/obo/UBERON_0004463,musculature of hindlimb stylopod,muscle group of thigh +http://purl.obolibrary.org/obo/UBERON_0004463,musculature of hindlimb stylopod,musculature of thigh +http://purl.obolibrary.org/obo/UBERON_0004463,musculature of hindlimb stylopod,set of muscles of thigh +http://purl.obolibrary.org/obo/UBERON_0004463,musculature of hindlimb stylopod,thigh musculature +http://purl.obolibrary.org/obo/UBERON_0004464,musculature of thorax,muscle group of thorax +http://purl.obolibrary.org/obo/UBERON_0004464,musculature of thorax,muscles of thorax +http://purl.obolibrary.org/obo/UBERON_0004464,musculature of thorax,musculi thoracis +http://purl.obolibrary.org/obo/UBERON_0004464,musculature of thorax,set of muscles of thorax +http://purl.obolibrary.org/obo/UBERON_0004464,musculature of thorax,thoracic musculature +http://purl.obolibrary.org/obo/UBERON_0004465,musculature of neck,cervical muscles +http://purl.obolibrary.org/obo/UBERON_0004465,musculature of neck,muscle group of neck +http://purl.obolibrary.org/obo/UBERON_0004465,musculature of neck,muscles of neck +http://purl.obolibrary.org/obo/UBERON_0004465,musculature of neck,musculi cervicis +http://purl.obolibrary.org/obo/UBERON_0004465,musculature of neck,musculi colli +http://purl.obolibrary.org/obo/UBERON_0004465,musculature of neck,neck musculature +http://purl.obolibrary.org/obo/UBERON_0004465,musculature of neck,set of muscles of neck +http://purl.obolibrary.org/obo/UBERON_0004466,musculature of leg,leg muscle system +http://purl.obolibrary.org/obo/UBERON_0004467,musculature of pharynx,pharyngeal musculature +http://purl.obolibrary.org/obo/UBERON_0004468,set of muscles of vertebral column,muscle group of vertebral column +http://purl.obolibrary.org/obo/UBERON_0004469,musculature of back,muscle group of back +http://purl.obolibrary.org/obo/UBERON_0004469,musculature of back,muscles of back +http://purl.obolibrary.org/obo/UBERON_0004469,musculature of back,musculi dorsi +http://purl.obolibrary.org/obo/UBERON_0004469,musculature of back,set of muscles of back +http://purl.obolibrary.org/obo/UBERON_0004470,musculature of pelvic girdle,muscle group of pelvic girdle +http://purl.obolibrary.org/obo/UBERON_0004470,musculature of pelvic girdle,muscle group of pelvis +http://purl.obolibrary.org/obo/UBERON_0004470,musculature of pelvic girdle,pelvic girdle muscle system +http://purl.obolibrary.org/obo/UBERON_0004470,musculature of pelvic girdle,pelvic girdle muscles +http://purl.obolibrary.org/obo/UBERON_0004470,musculature of pelvic girdle,pelvic girdle musculature +http://purl.obolibrary.org/obo/UBERON_0004470,musculature of pelvic girdle,set of muscles of pelvic girdle +http://purl.obolibrary.org/obo/UBERON_0004471,musculature of pectoral girdle,muscle group of pectoral girdle +http://purl.obolibrary.org/obo/UBERON_0004471,musculature of pectoral girdle,pectoral girdle muscles +http://purl.obolibrary.org/obo/UBERON_0004471,musculature of pectoral girdle,pectoral girdle musculature +http://purl.obolibrary.org/obo/UBERON_0004471,musculature of pectoral girdle,set of muscles of pectoral girdle +http://purl.obolibrary.org/obo/UBERON_0004473,musculature of face,entire facial musculature +http://purl.obolibrary.org/obo/UBERON_0004473,musculature of face,facial muscles +http://purl.obolibrary.org/obo/UBERON_0004473,musculature of face,muscle group of face +http://purl.obolibrary.org/obo/UBERON_0004473,musculature of face,musculi faciei +http://purl.obolibrary.org/obo/UBERON_0004474,musculature of arm,arm muscle system +http://purl.obolibrary.org/obo/UBERON_0004474,musculature of arm,arm musculature +http://purl.obolibrary.org/obo/UBERON_0004474,musculature of arm,muscle group of arm +http://purl.obolibrary.org/obo/UBERON_0004474,musculature of arm,set of muscles of arm +http://purl.obolibrary.org/obo/UBERON_0004475,musculature of hip,hip musculature +http://purl.obolibrary.org/obo/UBERON_0004475,musculature of hip,muscle group of hip +http://purl.obolibrary.org/obo/UBERON_0004475,musculature of hip,set of muscles of hip +http://purl.obolibrary.org/obo/UBERON_0004476,musculature of shoulder,muscle group of shoulder +http://purl.obolibrary.org/obo/UBERON_0004476,musculature of shoulder,set of muscles of shoulder +http://purl.obolibrary.org/obo/UBERON_0004478,musculature of larynx,laryngeal muscles +http://purl.obolibrary.org/obo/UBERON_0004478,musculature of larynx,laryngeal muscles set +http://purl.obolibrary.org/obo/UBERON_0004478,musculature of larynx,muscle group of larynx +http://purl.obolibrary.org/obo/UBERON_0004478,musculature of larynx,set of laryngeal muscles +http://purl.obolibrary.org/obo/UBERON_0004478,musculature of larynx,set of muscles of larynx +http://purl.obolibrary.org/obo/UBERON_0004479,musculature of trunk,muscle group of trunk +http://purl.obolibrary.org/obo/UBERON_0004479,musculature of trunk,muscular system of trunk +http://purl.obolibrary.org/obo/UBERON_0004479,musculature of trunk,set of muscles of trunk +http://purl.obolibrary.org/obo/UBERON_0004480,musculature of limb,limb muscle system +http://purl.obolibrary.org/obo/UBERON_0004480,musculature of limb,limb musculature +http://purl.obolibrary.org/obo/UBERON_0004480,musculature of limb,muscle group of limb +http://purl.obolibrary.org/obo/UBERON_0004480,musculature of limb,set of muscles of limb +http://purl.obolibrary.org/obo/UBERON_0004481,musculature of upper limb,free upper limb musculature +http://purl.obolibrary.org/obo/UBERON_0004481,musculature of upper limb,muscle group of free upper limb +http://purl.obolibrary.org/obo/UBERON_0004481,musculature of upper limb,musculature of free upper limb +http://purl.obolibrary.org/obo/UBERON_0004481,musculature of upper limb,set of muscles of free upper limb +http://purl.obolibrary.org/obo/UBERON_0004482,musculature of lower limb,free lower limb musculature +http://purl.obolibrary.org/obo/UBERON_0004482,musculature of lower limb,muscle group of free lower limb +http://purl.obolibrary.org/obo/UBERON_0004482,musculature of lower limb,musculature of free lower limb +http://purl.obolibrary.org/obo/UBERON_0004482,musculature of lower limb,set of muscles of free lower limb +http://purl.obolibrary.org/obo/UBERON_0004486,musculature of perineum,musculi perinei +http://purl.obolibrary.org/obo/UBERON_0004486,musculature of perineum,perineal muscles +http://purl.obolibrary.org/obo/UBERON_0004486,musculature of perineum,perineal muscles set +http://purl.obolibrary.org/obo/UBERON_0004486,musculature of perineum,set of perineal muscles +http://purl.obolibrary.org/obo/UBERON_0004487,musculature of forelimb zeugopod,muscle group of forearm +http://purl.obolibrary.org/obo/UBERON_0004487,musculature of forelimb zeugopod,musculature of forearm +http://purl.obolibrary.org/obo/UBERON_0004487,musculature of forelimb zeugopod,set of muscles of forearm +http://purl.obolibrary.org/obo/UBERON_0004488,musculature of pes,foot musculature +http://purl.obolibrary.org/obo/UBERON_0004488,musculature of pes,muscle group of foot +http://purl.obolibrary.org/obo/UBERON_0004488,musculature of pes,musculature of foot +http://purl.obolibrary.org/obo/UBERON_0004488,musculature of pes,set of muscles of foot +http://purl.obolibrary.org/obo/UBERON_0004489,musculature of manus,hand musculature +http://purl.obolibrary.org/obo/UBERON_0004489,musculature of manus,muscle group of hand +http://purl.obolibrary.org/obo/UBERON_0004489,musculature of manus,musculature of hand +http://purl.obolibrary.org/obo/UBERON_0004489,musculature of manus,set of muscles of hand +http://purl.obolibrary.org/obo/UBERON_0004490,cardiac muscle tissue of atrium,atrial cardiac muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004490,cardiac muscle tissue of atrium,atrial heart muscle +http://purl.obolibrary.org/obo/UBERON_0004490,cardiac muscle tissue of atrium,cardiac atrium muscle +http://purl.obolibrary.org/obo/UBERON_0004491,cardiac muscle tissue of interatrial septum,interatrial septum cardiac muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004491,cardiac muscle tissue of interatrial septum,interatrial septum heart muscle +http://purl.obolibrary.org/obo/UBERON_0004491,cardiac muscle tissue of interatrial septum,interatrial septum muscle +http://purl.obolibrary.org/obo/UBERON_0004491,cardiac muscle tissue of interatrial septum,interatrial septum myocardium +http://purl.obolibrary.org/obo/UBERON_0004492,cardiac muscle tissue of cardiac septum,cardiac septum cardiac muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004492,cardiac muscle tissue of cardiac septum,cardiac septum heart muscle +http://purl.obolibrary.org/obo/UBERON_0004492,cardiac muscle tissue of cardiac septum,cardiac septum muscle +http://purl.obolibrary.org/obo/UBERON_0004492,cardiac muscle tissue of cardiac septum,cardiac septum myocardium +http://purl.obolibrary.org/obo/UBERON_0004493,cardiac muscle tissue of myocardium, +http://purl.obolibrary.org/obo/UBERON_0004494,cardiac muscle tissue of papillary muscle, +http://purl.obolibrary.org/obo/UBERON_0004495,skeletal muscle tissue of diaphragm, +http://purl.obolibrary.org/obo/UBERON_0004496,skeletal muscle tissue of iliacus, +http://purl.obolibrary.org/obo/UBERON_0004497,skeletal muscle tissue of gluteus maximus, +http://purl.obolibrary.org/obo/UBERON_0004498,skeletal muscle tissue of quadriceps femoris, +http://purl.obolibrary.org/obo/UBERON_0004499,skeletal muscle tissue of tibialis anterior, +http://purl.obolibrary.org/obo/UBERON_0004500,skeletal muscle tissue of deltoid, +http://purl.obolibrary.org/obo/UBERON_0004501,skeletal muscle tissue of teres major, +http://purl.obolibrary.org/obo/UBERON_0004502,skeletal muscle tissue of biceps brachii, +http://purl.obolibrary.org/obo/UBERON_0004503,skeletal muscle tissue of digastric, +http://purl.obolibrary.org/obo/UBERON_0004504,skeletal muscle tissue of mylohyoid, +http://purl.obolibrary.org/obo/UBERON_0004505,skeletal muscle tissue of orbicularis oculi, +http://purl.obolibrary.org/obo/UBERON_0004506,skeletal muscle tissue of masseter, +http://purl.obolibrary.org/obo/UBERON_0004507,skeletal muscle tissue of temporalis, +http://purl.obolibrary.org/obo/UBERON_0004508,skeletal muscle tissue of levator palpebrae superioris, +http://purl.obolibrary.org/obo/UBERON_0004509,skeletal muscle tissue of trapezius, +http://purl.obolibrary.org/obo/UBERON_0004510,skeletal muscle tissue of pectoralis major, +http://purl.obolibrary.org/obo/UBERON_0004511,skeletal muscle tissue of rectus abdominis, +http://purl.obolibrary.org/obo/UBERON_0004512,skeletal muscle tissue of supraspinatus, +http://purl.obolibrary.org/obo/UBERON_0004513,skeletal muscle tissue of internal intercostal muscle, +http://purl.obolibrary.org/obo/UBERON_0004514,skeletal muscle tissue of transversus thoracis, +http://purl.obolibrary.org/obo/UBERON_0004515,smooth muscle tissue of bronchiole, +http://purl.obolibrary.org/obo/UBERON_0004516,smooth muscle tissue of terminal bronchiole, +http://purl.obolibrary.org/obo/UBERON_0004517,smooth muscle tissue of respiratory bronchiole, +http://purl.obolibrary.org/obo/UBERON_0004518,muscle of vertebral column,vertebral column muscle +http://purl.obolibrary.org/obo/UBERON_0004519,muscle of anal triangle,anal triangle muscle +http://purl.obolibrary.org/obo/UBERON_0004520,striated muscle tissue of prostate, +http://purl.obolibrary.org/obo/UBERON_0004521,vasculature of muscle organ,muscular organ vasculature +http://purl.obolibrary.org/obo/UBERON_0004522,vasculature of musculoskeletal system, +http://purl.obolibrary.org/obo/UBERON_0004523,papillary muscle of right ventricle, +http://purl.obolibrary.org/obo/UBERON_0004524,papillary muscle of left ventricle, +http://purl.obolibrary.org/obo/UBERON_0004525,cardiac muscle tissue of trabecula carnea of right ventricle, +http://purl.obolibrary.org/obo/UBERON_0004526,cardiac muscle tissue of trabecula carnea of left ventricle, +http://purl.obolibrary.org/obo/UBERON_0004527,alveolar process of maxilla,alveolar margin of maxilla +http://purl.obolibrary.org/obo/UBERON_0004527,alveolar process of maxilla,alveolar part of maxilla +http://purl.obolibrary.org/obo/UBERON_0004527,alveolar process of maxilla,alveolar process of maxilla +http://purl.obolibrary.org/obo/UBERON_0004527,alveolar process of maxilla,alveolar ridge of maxilla +http://purl.obolibrary.org/obo/UBERON_0004527,alveolar process of maxilla,lower alveolar ridge +http://purl.obolibrary.org/obo/UBERON_0004527,alveolar process of maxilla,maxilla alveolar process +http://purl.obolibrary.org/obo/UBERON_0004527,alveolar process of maxilla,pars dentalis of maxilla +http://purl.obolibrary.org/obo/UBERON_0004527,alveolar process of maxilla,posterior alveolar ridge +http://purl.obolibrary.org/obo/UBERON_0004527,alveolar process of maxilla,processus alveolaris (maxilla) +http://purl.obolibrary.org/obo/UBERON_0004527,alveolar process of maxilla,processus alveolaris maxillae +http://purl.obolibrary.org/obo/UBERON_0004528,alveolar ridge of mandible,alveolar margin of mandible +http://purl.obolibrary.org/obo/UBERON_0004528,alveolar ridge of mandible,alveolar part of mandible +http://purl.obolibrary.org/obo/UBERON_0004528,alveolar ridge of mandible,alveolar process of mandible +http://purl.obolibrary.org/obo/UBERON_0004528,alveolar ridge of mandible,anterior alveolar ridge +http://purl.obolibrary.org/obo/UBERON_0004528,alveolar ridge of mandible,pars alveolaris (mandibula) +http://purl.obolibrary.org/obo/UBERON_0004528,alveolar ridge of mandible,upper alveolar ridge +http://purl.obolibrary.org/obo/UBERON_0004529,anatomical projection,processus +http://purl.obolibrary.org/obo/UBERON_0004529,anatomical projection,projection +http://purl.obolibrary.org/obo/UBERON_0004530,bony projection,bone process +http://purl.obolibrary.org/obo/UBERON_0004530,bony projection,projection of bone +http://purl.obolibrary.org/obo/UBERON_0004533,left testis,left testicle +http://purl.obolibrary.org/obo/UBERON_0004534,right testis,right testicle +http://purl.obolibrary.org/obo/UBERON_0004535,cardiovascular system,CV system +http://purl.obolibrary.org/obo/UBERON_0004535,cardiovascular system,Herz und Gefaesssystem +http://purl.obolibrary.org/obo/UBERON_0004536,lymph vasculature,lymphatic trunks and ducts +http://purl.obolibrary.org/obo/UBERON_0004536,lymph vasculature,lymphatic vasculature +http://purl.obolibrary.org/obo/UBERON_0004536,lymph vasculature,lymphatic vessel network +http://purl.obolibrary.org/obo/UBERON_0004536,lymph vasculature,lymphatic vessels set +http://purl.obolibrary.org/obo/UBERON_0004536,lymph vasculature,set of lymphatic vessels +http://purl.obolibrary.org/obo/UBERON_0004536,lymph vasculature,trunci et ductus lymphatici +http://purl.obolibrary.org/obo/UBERON_0004537,blood vasculature,blood system +http://purl.obolibrary.org/obo/UBERON_0004537,blood vasculature,blood vascular network +http://purl.obolibrary.org/obo/UBERON_0004537,blood vasculature,blood vessel system +http://purl.obolibrary.org/obo/UBERON_0004537,blood vasculature,blood vessels +http://purl.obolibrary.org/obo/UBERON_0004537,blood vasculature,set of blood vessels +http://purl.obolibrary.org/obo/UBERON_0004538,left kidney, +http://purl.obolibrary.org/obo/UBERON_0004539,right kidney, +http://purl.obolibrary.org/obo/UBERON_0004540,proper plantar digital artery,arteriae digitales plantares propriae +http://purl.obolibrary.org/obo/UBERON_0004540,proper plantar digital artery,plantar digital artery proper +http://purl.obolibrary.org/obo/UBERON_0004540,proper plantar digital artery,proper plantar digital arteries +http://purl.obolibrary.org/obo/UBERON_0004544,epididymis epithelium,epididymis epithelium +http://purl.obolibrary.org/obo/UBERON_0004544,epididymis epithelium,epithelium of epididymis +http://purl.obolibrary.org/obo/UBERON_0004545,external capsule of telencephalon, +http://purl.obolibrary.org/obo/UBERON_0004546,cribriform plate,cribiform plate of ethmoid bone +http://purl.obolibrary.org/obo/UBERON_0004546,cribriform plate,horizontal lamina of ethmoid bone +http://purl.obolibrary.org/obo/UBERON_0004547,decidua capsularis, +http://purl.obolibrary.org/obo/UBERON_0004548,left eye,left eyeball +http://purl.obolibrary.org/obo/UBERON_0004549,right eye,right eyeball +http://purl.obolibrary.org/obo/UBERON_0004550,gastroesophageal sphincter,cardiac sphincter +http://purl.obolibrary.org/obo/UBERON_0004550,gastroesophageal sphincter,gastroesophageal sphincter +http://purl.obolibrary.org/obo/UBERON_0004550,gastroesophageal sphincter,gastroesophageal sphincter muscle +http://purl.obolibrary.org/obo/UBERON_0004550,gastroesophageal sphincter,inferior esophageal sphincter +http://purl.obolibrary.org/obo/UBERON_0004552,digital artery, +http://purl.obolibrary.org/obo/UBERON_0004553,forelimb digital artery,digital artery of manus +http://purl.obolibrary.org/obo/UBERON_0004553,forelimb digital artery,forelimb digital arteries +http://purl.obolibrary.org/obo/UBERON_0004554,hindlimb digital artery,digital artery of foot +http://purl.obolibrary.org/obo/UBERON_0004554,hindlimb digital artery,hindlimb digital arteries +http://purl.obolibrary.org/obo/UBERON_0004561,proper palmar digital vein,common palmar digital venous tributary +http://purl.obolibrary.org/obo/UBERON_0004561,proper palmar digital vein,distal palmar digital vein +http://purl.obolibrary.org/obo/UBERON_0004561,proper palmar digital vein,proper palmal vein +http://purl.obolibrary.org/obo/UBERON_0004561,proper palmar digital vein,proper palmar vein +http://purl.obolibrary.org/obo/UBERON_0004561,proper palmar digital vein,tributary of common palmar digital vein +http://purl.obolibrary.org/obo/UBERON_0004562,digital vein, +http://purl.obolibrary.org/obo/UBERON_0004563,forelimb digital vein,forelimb digital veins +http://purl.obolibrary.org/obo/UBERON_0004563,forelimb digital vein,vein of finger +http://purl.obolibrary.org/obo/UBERON_0004563,forelimb digital vein,vein of manual digit +http://purl.obolibrary.org/obo/UBERON_0004564,hindlimb digital vein,hindlimb digital veins +http://purl.obolibrary.org/obo/UBERON_0004564,hindlimb digital vein,vein of pedal digit +http://purl.obolibrary.org/obo/UBERON_0004564,hindlimb digital vein,vein of toe +http://purl.obolibrary.org/obo/UBERON_0004571,systemic arterial system,systemic arterial circulatory system +http://purl.obolibrary.org/obo/UBERON_0004572,arterial system, +http://purl.obolibrary.org/obo/UBERON_0004573,systemic artery,systemic arterial subtree +http://purl.obolibrary.org/obo/UBERON_0004581,systemic venous system,systemic venous circulatory system +http://purl.obolibrary.org/obo/UBERON_0004582,venous system,vein system +http://purl.obolibrary.org/obo/UBERON_0004590,sphincter muscle,circular muscle +http://purl.obolibrary.org/obo/UBERON_0004590,sphincter muscle,sphincter +http://purl.obolibrary.org/obo/UBERON_0004601,rib 1,costa I +http://purl.obolibrary.org/obo/UBERON_0004601,rib 1,costa prima (I) +http://purl.obolibrary.org/obo/UBERON_0004601,rib 1,costa prima [I] +http://purl.obolibrary.org/obo/UBERON_0004601,rib 1,first rib +http://purl.obolibrary.org/obo/UBERON_0004602,rib 2,costa II +http://purl.obolibrary.org/obo/UBERON_0004602,rib 2,costa secunda (II) +http://purl.obolibrary.org/obo/UBERON_0004602,rib 2,costa secunda [II] +http://purl.obolibrary.org/obo/UBERON_0004602,rib 2,second rib +http://purl.obolibrary.org/obo/UBERON_0004603,rib 3,costa III +http://purl.obolibrary.org/obo/UBERON_0004603,rib 3,third rib +http://purl.obolibrary.org/obo/UBERON_0004604,rib 4,costa IV +http://purl.obolibrary.org/obo/UBERON_0004604,rib 4,fourth rib +http://purl.obolibrary.org/obo/UBERON_0004605,rib 5,costa V +http://purl.obolibrary.org/obo/UBERON_0004605,rib 5,fifth rib +http://purl.obolibrary.org/obo/UBERON_0004606,rib 6,costa VI +http://purl.obolibrary.org/obo/UBERON_0004606,rib 6,sixth rib +http://purl.obolibrary.org/obo/UBERON_0004607,rib 7,costa VII +http://purl.obolibrary.org/obo/UBERON_0004607,rib 7,seventh rib +http://purl.obolibrary.org/obo/UBERON_0004608,rib 9,costa IX +http://purl.obolibrary.org/obo/UBERON_0004608,rib 9,ninth rib +http://purl.obolibrary.org/obo/UBERON_0004609,rib 10,costa X +http://purl.obolibrary.org/obo/UBERON_0004609,rib 10,tenth rib +http://purl.obolibrary.org/obo/UBERON_0004610,rib 11,costa XI +http://purl.obolibrary.org/obo/UBERON_0004610,rib 11,eleventh rib +http://purl.obolibrary.org/obo/UBERON_0004611,rib 12,costa XII +http://purl.obolibrary.org/obo/UBERON_0004611,rib 12,twelfth rib +http://purl.obolibrary.org/obo/UBERON_0004612,mammalian cervical vertebra 3,C3 vertebra +http://purl.obolibrary.org/obo/UBERON_0004612,mammalian cervical vertebra 3,cervical vertebra 3 +http://purl.obolibrary.org/obo/UBERON_0004612,mammalian cervical vertebra 3,cervical vertebrae 3 +http://purl.obolibrary.org/obo/UBERON_0004612,mammalian cervical vertebra 3,third cervical vertebra +http://purl.obolibrary.org/obo/UBERON_0004612,mammalian cervical vertebra 3,third cervical vertebra of axial skeleton +http://purl.obolibrary.org/obo/UBERON_0004613,mammalian cervical vertebra 4,C4 vertebra +http://purl.obolibrary.org/obo/UBERON_0004613,mammalian cervical vertebra 4,cervical vertebra 4 +http://purl.obolibrary.org/obo/UBERON_0004613,mammalian cervical vertebra 4,fourth cervical vertebra +http://purl.obolibrary.org/obo/UBERON_0004614,mammalian cervical vertebra 5,C5 vertebra +http://purl.obolibrary.org/obo/UBERON_0004614,mammalian cervical vertebra 5,cervical vertebra 5 +http://purl.obolibrary.org/obo/UBERON_0004614,mammalian cervical vertebra 5,fifth cervical vertebra +http://purl.obolibrary.org/obo/UBERON_0004615,mammalian cervical vertebra 6,C6 vertebra +http://purl.obolibrary.org/obo/UBERON_0004615,mammalian cervical vertebra 6,cervical vertebra 6 +http://purl.obolibrary.org/obo/UBERON_0004615,mammalian cervical vertebra 6,sixth cervical vertebra +http://purl.obolibrary.org/obo/UBERON_0004616,mammalian cervical vertebra 7,C7 vertebra +http://purl.obolibrary.org/obo/UBERON_0004616,mammalian cervical vertebra 7,cervical vertebra 7 +http://purl.obolibrary.org/obo/UBERON_0004616,mammalian cervical vertebra 7,prominent vertebra +http://purl.obolibrary.org/obo/UBERON_0004616,mammalian cervical vertebra 7,seventh cervical vertebra +http://purl.obolibrary.org/obo/UBERON_0004616,mammalian cervical vertebra 7,vertebra prominens (CVII) +http://purl.obolibrary.org/obo/UBERON_0004616,mammalian cervical vertebra 7,vertebra prominens [C VII] +http://purl.obolibrary.org/obo/UBERON_0004617,lumbar vertebra 1,L1 vertebra +http://purl.obolibrary.org/obo/UBERON_0004617,lumbar vertebra 1,first lumbar vertebra +http://purl.obolibrary.org/obo/UBERON_0004618,lumbar vertebra 2,L2 vertebra +http://purl.obolibrary.org/obo/UBERON_0004618,lumbar vertebra 2,second lumbar vertebra +http://purl.obolibrary.org/obo/UBERON_0004619,lumbar vertebra 3,L3 vertebra +http://purl.obolibrary.org/obo/UBERON_0004619,lumbar vertebra 3,third lumbar vertebra +http://purl.obolibrary.org/obo/UBERON_0004620,lumbar vertebra 4,L4 vertebra +http://purl.obolibrary.org/obo/UBERON_0004620,lumbar vertebra 4,fourth lumbar vertebra +http://purl.obolibrary.org/obo/UBERON_0004621,lumbar vertebra 5,L5 vertebra +http://purl.obolibrary.org/obo/UBERON_0004621,lumbar vertebra 5,fifth lumbar vertebra +http://purl.obolibrary.org/obo/UBERON_0004622,sacral vertebra 1,S1 vertebra +http://purl.obolibrary.org/obo/UBERON_0004622,sacral vertebra 1,first sacral segment +http://purl.obolibrary.org/obo/UBERON_0004622,sacral vertebra 1,first sacral vertebra +http://purl.obolibrary.org/obo/UBERON_0004622,sacral vertebra 1,first segment of sacrum +http://purl.obolibrary.org/obo/UBERON_0004623,sacral vertebra 2,S2 vertebra +http://purl.obolibrary.org/obo/UBERON_0004623,sacral vertebra 2,second sacral segment +http://purl.obolibrary.org/obo/UBERON_0004623,sacral vertebra 2,second sacral vertebra +http://purl.obolibrary.org/obo/UBERON_0004623,sacral vertebra 2,second segment of sacrum +http://purl.obolibrary.org/obo/UBERON_0004624,sacral vertebra 3,S3 vertebra +http://purl.obolibrary.org/obo/UBERON_0004624,sacral vertebra 3,third sacral segment +http://purl.obolibrary.org/obo/UBERON_0004624,sacral vertebra 3,third sacral vertebra +http://purl.obolibrary.org/obo/UBERON_0004624,sacral vertebra 3,third segment of sacrum +http://purl.obolibrary.org/obo/UBERON_0004625,sacral vertebra 4,S4 vertebra +http://purl.obolibrary.org/obo/UBERON_0004625,sacral vertebra 4,fourth sacral segment +http://purl.obolibrary.org/obo/UBERON_0004625,sacral vertebra 4,fourth sacral vertebra +http://purl.obolibrary.org/obo/UBERON_0004625,sacral vertebra 4,fourth segment of sacrum +http://purl.obolibrary.org/obo/UBERON_0004626,thoracic vertebra 1,T1 vertebra +http://purl.obolibrary.org/obo/UBERON_0004626,thoracic vertebra 1,first dorsal vertebra +http://purl.obolibrary.org/obo/UBERON_0004626,thoracic vertebra 1,first thoracic vertebra +http://purl.obolibrary.org/obo/UBERON_0004627,thoracic vertebra 2,T2 vertebra +http://purl.obolibrary.org/obo/UBERON_0004627,thoracic vertebra 2,second dorsal vertebra +http://purl.obolibrary.org/obo/UBERON_0004627,thoracic vertebra 2,second thoracic vertebra +http://purl.obolibrary.org/obo/UBERON_0004628,thoracic vertebra 3,T3 vertebra +http://purl.obolibrary.org/obo/UBERON_0004628,thoracic vertebra 3,third dorsal vertebra +http://purl.obolibrary.org/obo/UBERON_0004628,thoracic vertebra 3,third thoracic vertebra +http://purl.obolibrary.org/obo/UBERON_0004629,thoracic vertebra 4,T4 vertebra +http://purl.obolibrary.org/obo/UBERON_0004629,thoracic vertebra 4,fourth dorsal vertebra +http://purl.obolibrary.org/obo/UBERON_0004629,thoracic vertebra 4,fourth thoracic vertebra +http://purl.obolibrary.org/obo/UBERON_0004630,thoracic vertebra 5,T5 vertebra +http://purl.obolibrary.org/obo/UBERON_0004630,thoracic vertebra 5,fifth dorsal vertebra +http://purl.obolibrary.org/obo/UBERON_0004630,thoracic vertebra 5,fifth thoracic vertebra +http://purl.obolibrary.org/obo/UBERON_0004631,thoracic vertebra 6,T6 vertebra +http://purl.obolibrary.org/obo/UBERON_0004631,thoracic vertebra 6,sixth dorsal vertebra +http://purl.obolibrary.org/obo/UBERON_0004631,thoracic vertebra 6,sixth thoracic vertebra +http://purl.obolibrary.org/obo/UBERON_0004632,thoracic vertebra 7,T7 vertebra +http://purl.obolibrary.org/obo/UBERON_0004632,thoracic vertebra 7,seventh dorsal vertebra +http://purl.obolibrary.org/obo/UBERON_0004632,thoracic vertebra 7,seventh thoracic vertebra +http://purl.obolibrary.org/obo/UBERON_0004633,thoracic vertebra 9,Ninth dorsal vertebra +http://purl.obolibrary.org/obo/UBERON_0004633,thoracic vertebra 9,T9 vertebra +http://purl.obolibrary.org/obo/UBERON_0004633,thoracic vertebra 9,ninth thoracic vertebra +http://purl.obolibrary.org/obo/UBERON_0004634,thoracic vertebra 10,T10 vertebra +http://purl.obolibrary.org/obo/UBERON_0004634,thoracic vertebra 10,tenth dorsal vertebra +http://purl.obolibrary.org/obo/UBERON_0004634,thoracic vertebra 10,tenth thoracic vertebra +http://purl.obolibrary.org/obo/UBERON_0004635,thoracic vertebra 11,T11 vertebra +http://purl.obolibrary.org/obo/UBERON_0004635,thoracic vertebra 11,eleventh dorsal vertebra +http://purl.obolibrary.org/obo/UBERON_0004635,thoracic vertebra 11,eleventh thoracic vertebra +http://purl.obolibrary.org/obo/UBERON_0004636,thoracic vertebra 12,T12 vertebra +http://purl.obolibrary.org/obo/UBERON_0004636,thoracic vertebra 12,twelfth dorsal vertebra +http://purl.obolibrary.org/obo/UBERON_0004636,thoracic vertebra 12,twelfth thoracic vertebra +http://purl.obolibrary.org/obo/UBERON_0004637,otic capsule,otic capsule +http://purl.obolibrary.org/obo/UBERON_0004637,otic capsule,otic capsule element +http://purl.obolibrary.org/obo/UBERON_0004637,otic capsule,otic capsule endochondral element +http://purl.obolibrary.org/obo/UBERON_0004638,blood vessel endothelium, +http://purl.obolibrary.org/obo/UBERON_0004639,renal afferent arteriole,afferent arteriole +http://purl.obolibrary.org/obo/UBERON_0004639,renal afferent arteriole,afferent glomerular arteriole +http://purl.obolibrary.org/obo/UBERON_0004639,renal afferent arteriole,afferent glomerular arteriole of kidney +http://purl.obolibrary.org/obo/UBERON_0004639,renal afferent arteriole,arteriola glomerularis afferens renis +http://purl.obolibrary.org/obo/UBERON_0004639,renal afferent arteriole,kidney afferent arteriole +http://purl.obolibrary.org/obo/UBERON_0004640,renal efferent arteriole,arteriola glomerularis efferens renis +http://purl.obolibrary.org/obo/UBERON_0004640,renal efferent arteriole,efferent arteriole +http://purl.obolibrary.org/obo/UBERON_0004640,renal efferent arteriole,efferent glomerular arteriole +http://purl.obolibrary.org/obo/UBERON_0004640,renal efferent arteriole,efferent glomerular arteriole of kidney +http://purl.obolibrary.org/obo/UBERON_0004640,renal efferent arteriole,kidney efferent arteriole +http://purl.obolibrary.org/obo/UBERON_0004641,spleen capsule,Malpighian capsule +http://purl.obolibrary.org/obo/UBERON_0004641,spleen capsule,capsula splenica +http://purl.obolibrary.org/obo/UBERON_0004641,spleen capsule,capsule of spleen +http://purl.obolibrary.org/obo/UBERON_0004641,spleen capsule,fibroelastic coat of spleen +http://purl.obolibrary.org/obo/UBERON_0004641,spleen capsule,fibrous capsule of spleen +http://purl.obolibrary.org/obo/UBERON_0004641,spleen capsule,splenic capsule +http://purl.obolibrary.org/obo/UBERON_0004641,spleen capsule,tunica fibrosa (splen)(lien) +http://purl.obolibrary.org/obo/UBERON_0004641,spleen capsule,tunica fibrosa splenica +http://purl.obolibrary.org/obo/UBERON_0004642,third ventricle ependyma,3rd ventricle ependyma +http://purl.obolibrary.org/obo/UBERON_0004642,third ventricle ependyma,ependyma of third ventricle +http://purl.obolibrary.org/obo/UBERON_0004643,lateral ventricle ependyma,ependyma of lateral ventricle +http://purl.obolibrary.org/obo/UBERON_0004644,fourth ventricle ependyma,ependyma of fourth ventricle +http://purl.obolibrary.org/obo/UBERON_0004645,urinary bladder urothelium,bladder transitional cell epithelium +http://purl.obolibrary.org/obo/UBERON_0004645,urinary bladder urothelium,transitional epithelium of urinary bladder +http://purl.obolibrary.org/obo/UBERON_0004645,urinary bladder urothelium,urinary bladder transitional epithelium +http://purl.obolibrary.org/obo/UBERON_0004645,urinary bladder urothelium,urothelium of urinary bladder +http://purl.obolibrary.org/obo/UBERON_0004646,infraorbital artery,infra-orbital artery +http://purl.obolibrary.org/obo/UBERON_0004647,liver lobule,hepatic lobule +http://purl.obolibrary.org/obo/UBERON_0004647,liver lobule,lobuli hepatici +http://purl.obolibrary.org/obo/UBERON_0004647,liver lobule,lobulus hepaticus +http://purl.obolibrary.org/obo/UBERON_0004648,esophagus muscularis mucosa,esophagus muscularis mucosae +http://purl.obolibrary.org/obo/UBERON_0004648,esophagus muscularis mucosa,lamina muscularis mucosae (oesphagus) +http://purl.obolibrary.org/obo/UBERON_0004648,esophagus muscularis mucosa,lamina muscularis of esophageal mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004648,esophagus muscularis mucosa,muscularis mucosae of esophagus +http://purl.obolibrary.org/obo/UBERON_0004649,sphenoid bone pterygoid process,processus pterygoideus +http://purl.obolibrary.org/obo/UBERON_0004649,sphenoid bone pterygoid process,processus pterygoideus ossis sphenoidalis +http://purl.obolibrary.org/obo/UBERON_0004649,sphenoid bone pterygoid process,pterygoid process +http://purl.obolibrary.org/obo/UBERON_0004649,sphenoid bone pterygoid process,pterygoid process of sphenoid +http://purl.obolibrary.org/obo/UBERON_0004649,sphenoid bone pterygoid process,pterygoid process of sphenoid bone +http://purl.obolibrary.org/obo/UBERON_0004650,tongue keratinized epithelium,keratinized epithelium of tongue +http://purl.obolibrary.org/obo/UBERON_0004651,scapula spine,spine of scapula +http://purl.obolibrary.org/obo/UBERON_0004652,humerus diaphysis,body of humerus +http://purl.obolibrary.org/obo/UBERON_0004652,humerus diaphysis,corpus humeri +http://purl.obolibrary.org/obo/UBERON_0004652,humerus diaphysis,diaphysis of humerus +http://purl.obolibrary.org/obo/UBERON_0004652,humerus diaphysis,humeral diaphysis +http://purl.obolibrary.org/obo/UBERON_0004652,humerus diaphysis,shaft of humerus +http://purl.obolibrary.org/obo/UBERON_0004654,temporal process of zygomatic bone,facies temporalis ossis zygomatici +http://purl.obolibrary.org/obo/UBERON_0004654,temporal process of zygomatic bone,processus temporalis (os zygomaticum) +http://purl.obolibrary.org/obo/UBERON_0004654,temporal process of zygomatic bone,processus temporalis ossis zygomatici +http://purl.obolibrary.org/obo/UBERON_0004654,temporal process of zygomatic bone,zygomatic bone temporal process +http://purl.obolibrary.org/obo/UBERON_0004655,zygomatic process of temporal bone,processus zygomaticus +http://purl.obolibrary.org/obo/UBERON_0004655,zygomatic process of temporal bone,processus zygomaticus ossis temporalis +http://purl.obolibrary.org/obo/UBERON_0004655,zygomatic process of temporal bone,temporal bone zygomatic process +http://purl.obolibrary.org/obo/UBERON_0004655,zygomatic process of temporal bone,temporal zygomatic process +http://purl.obolibrary.org/obo/UBERON_0004657,mandible condylar process,condylar process of mandible +http://purl.obolibrary.org/obo/UBERON_0004657,mandible condylar process,condyle of the mandible +http://purl.obolibrary.org/obo/UBERON_0004657,mandible condylar process,mandibular condyle +http://purl.obolibrary.org/obo/UBERON_0004657,mandible condylar process,processus condylaris +http://purl.obolibrary.org/obo/UBERON_0004657,mandible condylar process,processus condylaris mandibulae +http://purl.obolibrary.org/obo/UBERON_0004658,mandible head,head of mandible +http://purl.obolibrary.org/obo/UBERON_0004658,mandible head,mandibular head +http://purl.obolibrary.org/obo/UBERON_0004659,mandible neck,mandibular neck +http://purl.obolibrary.org/obo/UBERON_0004659,mandible neck,neck of mandible +http://purl.obolibrary.org/obo/UBERON_0004660,mandible coronoid process,coronoid process of mandible +http://purl.obolibrary.org/obo/UBERON_0004660,mandible coronoid process,processus coronoideus (mandibula) +http://purl.obolibrary.org/obo/UBERON_0004661,mandible temporal crest,crista temporalis (mandibulae) +http://purl.obolibrary.org/obo/UBERON_0004661,mandible temporal crest,crista temporalis mandibulae +http://purl.obolibrary.org/obo/UBERON_0004661,mandible temporal crest,temporal crest of mandible +http://purl.obolibrary.org/obo/UBERON_0004662,vertebra lamina,lamina arcus vertebrae +http://purl.obolibrary.org/obo/UBERON_0004662,vertebra lamina,lamina of vertebra +http://purl.obolibrary.org/obo/UBERON_0004662,vertebra lamina,lamina of vertebral arch +http://purl.obolibrary.org/obo/UBERON_0004662,vertebra lamina,neural arch lamina +http://purl.obolibrary.org/obo/UBERON_0004662,vertebra lamina,vertebral lamina +http://purl.obolibrary.org/obo/UBERON_0004663,aorta wall,aortic wall +http://purl.obolibrary.org/obo/UBERON_0004663,aorta wall,wall of aorta +http://purl.obolibrary.org/obo/UBERON_0004664,aorta tunica adventitia,tunica adventitia of aorta +http://purl.obolibrary.org/obo/UBERON_0004665,muscular coat of seminal vesicle,muscle layer of seminal vesicle +http://purl.obolibrary.org/obo/UBERON_0004665,muscular coat of seminal vesicle,muscular coat of seminal gland +http://purl.obolibrary.org/obo/UBERON_0004665,muscular coat of seminal vesicle,muscular layer of seminal gland +http://purl.obolibrary.org/obo/UBERON_0004665,muscular coat of seminal vesicle,tunica muscularis (vesicula seminalis) +http://purl.obolibrary.org/obo/UBERON_0004665,muscular coat of seminal vesicle,tunica muscularis glandulae vesiculosae +http://purl.obolibrary.org/obo/UBERON_0004666,interventricular septum membranous part,cardiac ventricular membranous septum +http://purl.obolibrary.org/obo/UBERON_0004666,interventricular septum membranous part,membranous interventricular septum +http://purl.obolibrary.org/obo/UBERON_0004666,interventricular septum membranous part,membranous part interventricular septum +http://purl.obolibrary.org/obo/UBERON_0004666,interventricular septum membranous part,membranous part of interventricular septum +http://purl.obolibrary.org/obo/UBERON_0004666,interventricular septum membranous part,membranous portion of interventricular septum +http://purl.obolibrary.org/obo/UBERON_0004666,interventricular septum membranous part,pars membranacea (septi interventricularis) +http://purl.obolibrary.org/obo/UBERON_0004666,interventricular septum membranous part,pars membranacea septi interventricularis +http://purl.obolibrary.org/obo/UBERON_0004667,interventricular septum muscular part,cardiac ventricular muscular septum +http://purl.obolibrary.org/obo/UBERON_0004667,interventricular septum muscular part,muscular interventricular septum +http://purl.obolibrary.org/obo/UBERON_0004667,interventricular septum muscular part,muscular part interventricular septum +http://purl.obolibrary.org/obo/UBERON_0004667,interventricular septum muscular part,muscular part of interventricular septum +http://purl.obolibrary.org/obo/UBERON_0004667,interventricular septum muscular part,pars muscularis (septi interventricularis) +http://purl.obolibrary.org/obo/UBERON_0004667,interventricular septum muscular part,pars muscularis septi interventricularis +http://purl.obolibrary.org/obo/UBERON_0004667,interventricular septum muscular part,septum membranaceum +http://purl.obolibrary.org/obo/UBERON_0004667,interventricular septum muscular part,ventricular muscular septum +http://purl.obolibrary.org/obo/UBERON_0004668,fourth ventricle aperture,aperture of 4th ventricle +http://purl.obolibrary.org/obo/UBERON_0004668,fourth ventricle aperture,aperture of fourth ventricle +http://purl.obolibrary.org/obo/UBERON_0004670,ependyma,ependyma of neuraxis +http://purl.obolibrary.org/obo/UBERON_0004670,ependyma,ependymal epithelium +http://purl.obolibrary.org/obo/UBERON_0004671,gyrus rectus,gyrus rectus +http://purl.obolibrary.org/obo/UBERON_0004671,gyrus rectus,medial part of gyri orbitales +http://purl.obolibrary.org/obo/UBERON_0004671,gyrus rectus,rectal gyrus +http://purl.obolibrary.org/obo/UBERON_0004671,gyrus rectus,rectus gyrus +http://purl.obolibrary.org/obo/UBERON_0004671,gyrus rectus,straight gyrus +http://purl.obolibrary.org/obo/UBERON_0004672,posterior horn lateral ventricle,cornu occipitale (ventriculi lateralis) +http://purl.obolibrary.org/obo/UBERON_0004672,posterior horn lateral ventricle,cornu occipitale ventriculi lateralis +http://purl.obolibrary.org/obo/UBERON_0004672,posterior horn lateral ventricle,cornu posterius (ventriculi lateralis) +http://purl.obolibrary.org/obo/UBERON_0004672,posterior horn lateral ventricle,cornu posterius ventriculi lateralis +http://purl.obolibrary.org/obo/UBERON_0004672,posterior horn lateral ventricle,occipital horn +http://purl.obolibrary.org/obo/UBERON_0004672,posterior horn lateral ventricle,occipital horn of lateral ventricle +http://purl.obolibrary.org/obo/UBERON_0004672,posterior horn lateral ventricle,posterior horn lateral ventricle +http://purl.obolibrary.org/obo/UBERON_0004672,posterior horn lateral ventricle,posterior horn of lateral ventricle +http://purl.obolibrary.org/obo/UBERON_0004672,posterior horn lateral ventricle,posterior horn of the lateral ventricle +http://purl.obolibrary.org/obo/UBERON_0004672,posterior horn lateral ventricle,"ventriculus lateralis, cornu occipitale" +http://purl.obolibrary.org/obo/UBERON_0004672,posterior horn lateral ventricle,"ventriculus lateralis, cornu posterius" +http://purl.obolibrary.org/obo/UBERON_0004673,trigeminal nerve root,radix descendens nervi trigemini +http://purl.obolibrary.org/obo/UBERON_0004673,trigeminal nerve root,root of trigeminal V nerve +http://purl.obolibrary.org/obo/UBERON_0004673,trigeminal nerve root,root of trigeminal nerve +http://purl.obolibrary.org/obo/UBERON_0004673,trigeminal nerve root,trigeminal nerve root +http://purl.obolibrary.org/obo/UBERON_0004673,trigeminal nerve root,trigeminal neural root +http://purl.obolibrary.org/obo/UBERON_0004674,facial nerve root,central part of facial nerve +http://purl.obolibrary.org/obo/UBERON_0004674,facial nerve root,facial nerve fibers +http://purl.obolibrary.org/obo/UBERON_0004674,facial nerve root,facial nerve root +http://purl.obolibrary.org/obo/UBERON_0004674,facial nerve root,facial neural root +http://purl.obolibrary.org/obo/UBERON_0004674,facial nerve root,fibrae nervi facialis +http://purl.obolibrary.org/obo/UBERON_0004674,facial nerve root,root of facial nerve +http://purl.obolibrary.org/obo/UBERON_0004675,hypoglossal nerve root,central part of hypoglossal nerve +http://purl.obolibrary.org/obo/UBERON_0004675,hypoglossal nerve root,fibrae nervi hypoglossi +http://purl.obolibrary.org/obo/UBERON_0004675,hypoglossal nerve root,hypoglossal nerve fiber bundle +http://purl.obolibrary.org/obo/UBERON_0004675,hypoglossal nerve root,hypoglossal nerve fibers +http://purl.obolibrary.org/obo/UBERON_0004675,hypoglossal nerve root,hypoglossal nerve root +http://purl.obolibrary.org/obo/UBERON_0004675,hypoglossal nerve root,hypoglossal nerve tract +http://purl.obolibrary.org/obo/UBERON_0004675,hypoglossal nerve root,root of hypoglossal nerve +http://purl.obolibrary.org/obo/UBERON_0004676,spinal cord lateral horn,columna grisea intermedia medullare spinalis +http://purl.obolibrary.org/obo/UBERON_0004676,spinal cord lateral horn,cornu laterale medullae spinalis +http://purl.obolibrary.org/obo/UBERON_0004676,spinal cord lateral horn,intermediate gray column of spinal cord +http://purl.obolibrary.org/obo/UBERON_0004676,spinal cord lateral horn,intermediate grey column of spinal cord +http://purl.obolibrary.org/obo/UBERON_0004676,spinal cord lateral horn,lateral gray column of spinal cord +http://purl.obolibrary.org/obo/UBERON_0004676,spinal cord lateral horn,lateral gray horn +http://purl.obolibrary.org/obo/UBERON_0004676,spinal cord lateral horn,lateral gray matter of spinal cord +http://purl.obolibrary.org/obo/UBERON_0004676,spinal cord lateral horn,lateral horn of spinal cord +http://purl.obolibrary.org/obo/UBERON_0004676,spinal cord lateral horn,spinal cord intermediate horn +http://purl.obolibrary.org/obo/UBERON_0004676,spinal cord lateral horn,spinal cord lateral horn +http://purl.obolibrary.org/obo/UBERON_0004677,spinal cord gray commissure,Rexed's lamina X +http://purl.obolibrary.org/obo/UBERON_0004677,spinal cord gray commissure,area spinalis X +http://purl.obolibrary.org/obo/UBERON_0004677,spinal cord gray commissure,central gelatinous substance +http://purl.obolibrary.org/obo/UBERON_0004677,spinal cord gray commissure,central glial substance +http://purl.obolibrary.org/obo/UBERON_0004677,spinal cord gray commissure,commissura grisea anaterior medullae spinalis +http://purl.obolibrary.org/obo/UBERON_0004677,spinal cord gray commissure,commissura grisea posterior medulla spinalis +http://purl.obolibrary.org/obo/UBERON_0004677,spinal cord gray commissure,gray commissure of spinal cord +http://purl.obolibrary.org/obo/UBERON_0004677,spinal cord gray commissure,grey commissure +http://purl.obolibrary.org/obo/UBERON_0004677,spinal cord gray commissure,grey commissure of spinal cord +http://purl.obolibrary.org/obo/UBERON_0004677,spinal cord gray commissure,lamina 10 +http://purl.obolibrary.org/obo/UBERON_0004677,spinal cord gray commissure,lamina X +http://purl.obolibrary.org/obo/UBERON_0004677,spinal cord gray commissure,lamina X of gray matter of spinal cord +http://purl.obolibrary.org/obo/UBERON_0004677,spinal cord gray commissure,lamina spinalis X +http://purl.obolibrary.org/obo/UBERON_0004677,spinal cord gray commissure,rexed lamina X +http://purl.obolibrary.org/obo/UBERON_0004677,spinal cord gray commissure,spinal area X +http://purl.obolibrary.org/obo/UBERON_0004677,spinal cord gray commissure,spinal cord gray commissure +http://purl.obolibrary.org/obo/UBERON_0004677,spinal cord gray commissure,spinal cord grey commissure +http://purl.obolibrary.org/obo/UBERON_0004677,spinal cord gray commissure,spinal lamina X +http://purl.obolibrary.org/obo/UBERON_0004677,spinal cord gray commissure,substantia gelatinosa centralis +http://purl.obolibrary.org/obo/UBERON_0004677,spinal cord gray commissure,substantia gelatinosa spinalis +http://purl.obolibrary.org/obo/UBERON_0004677,spinal cord gray commissure,substantia gelationsa centralis +http://purl.obolibrary.org/obo/UBERON_0004677,spinal cord gray commissure,substantia gliosa (spinalis) +http://purl.obolibrary.org/obo/UBERON_0004678,apex of spinal cord dorsal horn,apex columnae posterioris +http://purl.obolibrary.org/obo/UBERON_0004678,apex of spinal cord dorsal horn,apex cornu posterioris medullae spinalis +http://purl.obolibrary.org/obo/UBERON_0004678,apex of spinal cord dorsal horn,apex of dorsal gray column +http://purl.obolibrary.org/obo/UBERON_0004678,apex of spinal cord dorsal horn,apex of dorsal gray column of spinal cord +http://purl.obolibrary.org/obo/UBERON_0004678,apex of spinal cord dorsal horn,apex of dorsal horn of spinal cord +http://purl.obolibrary.org/obo/UBERON_0004678,apex of spinal cord dorsal horn,apex of posterior horn of spinal cord +http://purl.obolibrary.org/obo/UBERON_0004678,apex of spinal cord dorsal horn,apex of spinal cord dorsal horn +http://purl.obolibrary.org/obo/UBERON_0004678,apex of spinal cord dorsal horn,apex of spinal cord posterior horn +http://purl.obolibrary.org/obo/UBERON_0004679,dentate gyrus molecular layer,dentate gyrus molecular layer +http://purl.obolibrary.org/obo/UBERON_0004679,dentate gyrus molecular layer,molecular layer of dentate gyrus +http://purl.obolibrary.org/obo/UBERON_0004679,dentate gyrus molecular layer,molecular layer of the dentate gyrus +http://purl.obolibrary.org/obo/UBERON_0004679,dentate gyrus molecular layer,stratum moleculare gyri dentati +http://purl.obolibrary.org/obo/UBERON_0004680,body of fornix,body of fornix +http://purl.obolibrary.org/obo/UBERON_0004680,body of fornix,body of fornix of forebrain +http://purl.obolibrary.org/obo/UBERON_0004680,body of fornix,column of fornix +http://purl.obolibrary.org/obo/UBERON_0004680,body of fornix,columna fornicis +http://purl.obolibrary.org/obo/UBERON_0004680,body of fornix,columns of fornix +http://purl.obolibrary.org/obo/UBERON_0004680,body of fornix,fornix body +http://purl.obolibrary.org/obo/UBERON_0004681,vestibular system,equilibrioception system +http://purl.obolibrary.org/obo/UBERON_0004681,vestibular system,vestibular organ system +http://purl.obolibrary.org/obo/UBERON_0004681,vestibular system,vestibular system +http://purl.obolibrary.org/obo/UBERON_0004681,vestibular system,vestibulomotor system +http://purl.obolibrary.org/obo/UBERON_0004682,corona radiata of neuraxis,corona radiata +http://purl.obolibrary.org/obo/UBERON_0004683,parasubiculum,parasubicular area +http://purl.obolibrary.org/obo/UBERON_0004683,parasubiculum,parasubicular cortex (parasubiculum) +http://purl.obolibrary.org/obo/UBERON_0004683,parasubiculum,parasubiculum +http://purl.obolibrary.org/obo/UBERON_0004684,raphe nuclei,nuclei raphes +http://purl.obolibrary.org/obo/UBERON_0004684,raphe nuclei,raphe cluster +http://purl.obolibrary.org/obo/UBERON_0004684,raphe nuclei,raphe nuclei +http://purl.obolibrary.org/obo/UBERON_0004684,raphe nuclei,raphe nuclei set +http://purl.obolibrary.org/obo/UBERON_0004684,raphe nuclei,raphe nucleus +http://purl.obolibrary.org/obo/UBERON_0004684,raphe nuclei,raphe of mesenchephalon +http://purl.obolibrary.org/obo/UBERON_0004684,raphe nuclei,set of raphe nuclei +http://purl.obolibrary.org/obo/UBERON_0004686,gastro-splenic ligament,gastrolienal ligament +http://purl.obolibrary.org/obo/UBERON_0004686,gastro-splenic ligament,gastrosplenc ligament +http://purl.obolibrary.org/obo/UBERON_0004686,gastro-splenic ligament,gastrosplenic ligament +http://purl.obolibrary.org/obo/UBERON_0004686,gastro-splenic ligament,ligamentum gastrosplenicum +http://purl.obolibrary.org/obo/UBERON_0004687,lieno-renal ligament,lienorenal ligament +http://purl.obolibrary.org/obo/UBERON_0004687,lieno-renal ligament,ligamentum lienorenale +http://purl.obolibrary.org/obo/UBERON_0004687,lieno-renal ligament,ligamentum splenorenale +http://purl.obolibrary.org/obo/UBERON_0004687,lieno-renal ligament,"ligamentum splenorenale (lienorenale, phrenicosplenicum)" +http://purl.obolibrary.org/obo/UBERON_0004687,lieno-renal ligament,phrenicolienal ligament +http://purl.obolibrary.org/obo/UBERON_0004687,lieno-renal ligament,splenicorenal ligament +http://purl.obolibrary.org/obo/UBERON_0004687,lieno-renal ligament,splenorenal ligament +http://purl.obolibrary.org/obo/UBERON_0004688,costo-cervical trunk,costocervical trunk +http://purl.obolibrary.org/obo/UBERON_0004688,costo-cervical trunk,trunk of costocervical artery +http://purl.obolibrary.org/obo/UBERON_0004689,naso-frontal vein,nasofrontal vein +http://purl.obolibrary.org/obo/UBERON_0004690,pancreaticoduodenal vein,Superior posterior pancreaticoduodenal vein +http://purl.obolibrary.org/obo/UBERON_0004690,pancreaticoduodenal vein,pancreatico-duodenal vein +http://purl.obolibrary.org/obo/UBERON_0004690,pancreaticoduodenal vein,pancreaticoduodenal vein +http://purl.obolibrary.org/obo/UBERON_0004690,pancreaticoduodenal vein,vena pancreaticoduodenalis +http://purl.obolibrary.org/obo/UBERON_0004690,pancreaticoduodenal vein,vena pancreaticoduodenalis superior posterior +http://purl.obolibrary.org/obo/UBERON_0004691,bulbourethral gland secretion,bulbo-urethral gland secretion +http://purl.obolibrary.org/obo/UBERON_0004691,bulbourethral gland secretion,pre-ejaculate +http://purl.obolibrary.org/obo/UBERON_0004691,bulbourethral gland secretion,secretion of bulbo-urethral gland +http://purl.obolibrary.org/obo/UBERON_0004692,external naris epithelium, +http://purl.obolibrary.org/obo/UBERON_0004693,Peyer's patch epithelium,Peyer's patch epithelium +http://purl.obolibrary.org/obo/UBERON_0004694,Harderian gland epithelium,epithelium of harderian gland +http://purl.obolibrary.org/obo/UBERON_0004694,Harderian gland epithelium,harderian gland epithelium +http://purl.obolibrary.org/obo/UBERON_0004695,arterial system smooth muscle, +http://purl.obolibrary.org/obo/UBERON_0004696,venous system smooth muscle, +http://purl.obolibrary.org/obo/UBERON_0004697,Peyer's patch germinal center, +http://purl.obolibrary.org/obo/UBERON_0004698,vena cava endothelium, +http://purl.obolibrary.org/obo/UBERON_0004699,outflow tract endothelium, +http://purl.obolibrary.org/obo/UBERON_0004700,arterial system endothelium, +http://purl.obolibrary.org/obo/UBERON_0004701,venous system endothelium, +http://purl.obolibrary.org/obo/UBERON_0004702,respiratory system blood vessel endothelium, +http://purl.obolibrary.org/obo/UBERON_0004703,dorsal thalamus,dorsal thalamus +http://purl.obolibrary.org/obo/UBERON_0004703,dorsal thalamus,dorsal thalamus (Anthoney) +http://purl.obolibrary.org/obo/UBERON_0004703,dorsal thalamus,dorsal tier of thalamus +http://purl.obolibrary.org/obo/UBERON_0004703,dorsal thalamus,thalamus dorsalis +http://purl.obolibrary.org/obo/UBERON_0004703,dorsal thalamus,thalamus proper +http://purl.obolibrary.org/obo/UBERON_0004703,dorsal thalamus,"thalamus, pars dorsalis" +http://purl.obolibrary.org/obo/UBERON_0004704,bone fossa, +http://purl.obolibrary.org/obo/UBERON_0004705,fenestra, +http://purl.obolibrary.org/obo/UBERON_0004706,bulbus cordis,primitive right ventricle endocardium +http://purl.obolibrary.org/obo/UBERON_0004708,paired limb/fin,girdle-associated appendage +http://purl.obolibrary.org/obo/UBERON_0004708,paired limb/fin,jointed paired lateral appendage +http://purl.obolibrary.org/obo/UBERON_0004708,paired limb/fin,limb or fin +http://purl.obolibrary.org/obo/UBERON_0004708,paired limb/fin,limb/fin +http://purl.obolibrary.org/obo/UBERON_0004708,paired limb/fin,paired appendage +http://purl.obolibrary.org/obo/UBERON_0004708,paired limb/fin,pectoral or pelvic appendage +http://purl.obolibrary.org/obo/UBERON_0004708,paired limb/fin,pelvic/pectoral appendage +http://purl.obolibrary.org/obo/UBERON_0004709,pelvic appendage,hindlimb/pelvic fin +http://purl.obolibrary.org/obo/UBERON_0004709,pelvic appendage,pelvic appendage +http://purl.obolibrary.org/obo/UBERON_0004709,pelvic appendage,pelvic limb/fin +http://purl.obolibrary.org/obo/UBERON_0004709,pelvic appendage,posterior limb/fin +http://purl.obolibrary.org/obo/UBERON_0004709,pelvic appendage,posterior paired appendage +http://purl.obolibrary.org/obo/UBERON_0004710,pectoral appendage,anterior limb/fin +http://purl.obolibrary.org/obo/UBERON_0004710,pectoral appendage,anterior paired appendage +http://purl.obolibrary.org/obo/UBERON_0004710,pectoral appendage,forelimb - pectoral fin +http://purl.obolibrary.org/obo/UBERON_0004710,pectoral appendage,forelimb or pectoral fin +http://purl.obolibrary.org/obo/UBERON_0004710,pectoral appendage,forelimb/pectoral fin +http://purl.obolibrary.org/obo/UBERON_0004710,pectoral appendage,pectoral limb/fin +http://purl.obolibrary.org/obo/UBERON_0004711,jugular vein, +http://purl.obolibrary.org/obo/UBERON_0004713,corpus cavernosum penis,cavernous body of penis +http://purl.obolibrary.org/obo/UBERON_0004713,corpus cavernosum penis,corpus cavernosum +http://purl.obolibrary.org/obo/UBERON_0004713,corpus cavernosum penis,corpus cavernosum of penis +http://purl.obolibrary.org/obo/UBERON_0004713,corpus cavernosum penis,corpus cavernosum penis +http://purl.obolibrary.org/obo/UBERON_0004713,corpus cavernosum penis,corpus spongiosum penis +http://purl.obolibrary.org/obo/UBERON_0004713,corpus cavernosum penis,penile corpus cavernosum +http://purl.obolibrary.org/obo/UBERON_0004713,corpus cavernosum penis,penis erectile tissue +http://purl.obolibrary.org/obo/UBERON_0004713,corpus cavernosum penis,spongy body of male urethra +http://purl.obolibrary.org/obo/UBERON_0004713,corpus cavernosum penis,spongy body of penis +http://purl.obolibrary.org/obo/UBERON_0004714,septum pellucidum,lateral septum +http://purl.obolibrary.org/obo/UBERON_0004714,septum pellucidum,pellucidum +http://purl.obolibrary.org/obo/UBERON_0004714,septum pellucidum,septal pellucidum +http://purl.obolibrary.org/obo/UBERON_0004714,septum pellucidum,septum gliosum +http://purl.obolibrary.org/obo/UBERON_0004714,septum pellucidum,septum lucidum +http://purl.obolibrary.org/obo/UBERON_0004714,septum pellucidum,septum pellucidum of telencephalic ventricle +http://purl.obolibrary.org/obo/UBERON_0004714,septum pellucidum,supracommissural septum +http://purl.obolibrary.org/obo/UBERON_0004715,annulus fibrosus disci intervertebralis,anulus fibrosus (diskus intervertebralis) +http://purl.obolibrary.org/obo/UBERON_0004715,annulus fibrosus disci intervertebralis,anulus fibrosus of intervertebral disk +http://purl.obolibrary.org/obo/UBERON_0004716,conceptus,embryo plus adnexa +http://purl.obolibrary.org/obo/UBERON_0004717,Brodmann (1909) area 29,B09-29 +http://purl.obolibrary.org/obo/UBERON_0004717,Brodmann (1909) area 29,Brodmann (1909) area 29 +http://purl.obolibrary.org/obo/UBERON_0004717,Brodmann (1909) area 29,Brodmann area 29 +http://purl.obolibrary.org/obo/UBERON_0004717,Brodmann (1909) area 29,"Brodmann area 29, granular retrolimbic" +http://purl.obolibrary.org/obo/UBERON_0004717,Brodmann (1909) area 29,Brodmann's area 29 +http://purl.obolibrary.org/obo/UBERON_0004717,Brodmann (1909) area 29,area 29 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0004717,Brodmann (1909) area 29,area 29 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0004717,Brodmann (1909) area 29,area retrolimbica granularis +http://purl.obolibrary.org/obo/UBERON_0004718,Brodmann (1909) area 26,B09-26 +http://purl.obolibrary.org/obo/UBERON_0004718,Brodmann (1909) area 26,Brodmann (1909) area 26 +http://purl.obolibrary.org/obo/UBERON_0004718,Brodmann (1909) area 26,Brodmann area 26 +http://purl.obolibrary.org/obo/UBERON_0004718,Brodmann (1909) area 26,"Brodmann area 26, ectosplenial" +http://purl.obolibrary.org/obo/UBERON_0004718,Brodmann (1909) area 26,area 26 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0004718,Brodmann (1909) area 26,area 26 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0004718,Brodmann (1909) area 26,area ectosplenialis +http://purl.obolibrary.org/obo/UBERON_0004718,Brodmann (1909) area 26,ectosplenial area +http://purl.obolibrary.org/obo/UBERON_0004719,kidney arcuate vein,arciform vein of kidney +http://purl.obolibrary.org/obo/UBERON_0004719,kidney arcuate vein,arcuate vein of kidney +http://purl.obolibrary.org/obo/UBERON_0004719,kidney arcuate vein,renal arcuate vein +http://purl.obolibrary.org/obo/UBERON_0004719,kidney arcuate vein,venae arcuatae renis +http://purl.obolibrary.org/obo/UBERON_0004720,cerebellar vermis,cerebellum vermis +http://purl.obolibrary.org/obo/UBERON_0004720,cerebellar vermis,vermal parts of the cerebellum +http://purl.obolibrary.org/obo/UBERON_0004720,cerebellar vermis,vermal regions +http://purl.obolibrary.org/obo/UBERON_0004720,cerebellar vermis,vermis cerebelli [I-X] +http://purl.obolibrary.org/obo/UBERON_0004720,cerebellar vermis,vermis of cerebellum +http://purl.obolibrary.org/obo/UBERON_0004720,cerebellar vermis,vermis of cerebellum [I-X] +http://purl.obolibrary.org/obo/UBERON_0004721,crista ampullaris,ampullary crest of semicircular duct +http://purl.obolibrary.org/obo/UBERON_0004722,deep cervical lymph node, +http://purl.obolibrary.org/obo/UBERON_0004723,interlobular artery,interlobular renal artery +http://purl.obolibrary.org/obo/UBERON_0004723,interlobular artery,kidney interlobular artery +http://purl.obolibrary.org/obo/UBERON_0004724,medial palpebral ligament, +http://purl.obolibrary.org/obo/UBERON_0004725,piriform cortex,area prepiriformis +http://purl.obolibrary.org/obo/UBERON_0004725,piriform cortex,cortex piriformis +http://purl.obolibrary.org/obo/UBERON_0004725,piriform cortex,eupalaeocortex +http://purl.obolibrary.org/obo/UBERON_0004725,piriform cortex,olfactory pallium +http://purl.obolibrary.org/obo/UBERON_0004725,piriform cortex,palaeocortex II +http://purl.obolibrary.org/obo/UBERON_0004725,piriform cortex,paleopallium +http://purl.obolibrary.org/obo/UBERON_0004725,piriform cortex,piriform area +http://purl.obolibrary.org/obo/UBERON_0004725,piriform cortex,piriform lobe +http://purl.obolibrary.org/obo/UBERON_0004725,piriform cortex,primary olfactory areas +http://purl.obolibrary.org/obo/UBERON_0004725,piriform cortex,primary olfactory cortex +http://purl.obolibrary.org/obo/UBERON_0004725,piriform cortex,pyriform cortex +http://purl.obolibrary.org/obo/UBERON_0004725,piriform cortex,pyriform lobe +http://purl.obolibrary.org/obo/UBERON_0004725,piriform cortex,regio praepiriformis +http://purl.obolibrary.org/obo/UBERON_0004726,vasa recta,arteriolae rectae renis +http://purl.obolibrary.org/obo/UBERON_0004726,vasa recta,kidney vasa recta +http://purl.obolibrary.org/obo/UBERON_0004726,vasa recta,renal medullary capillary +http://purl.obolibrary.org/obo/UBERON_0004726,vasa recta,set of straight arterioles of kidney +http://purl.obolibrary.org/obo/UBERON_0004726,vasa recta,straight arterioles of kidney +http://purl.obolibrary.org/obo/UBERON_0004726,vasa recta,vasa recta of kidney +http://purl.obolibrary.org/obo/UBERON_0004726,vasa recta,vasa recta renis +http://purl.obolibrary.org/obo/UBERON_0004727,cochlear nerve,auditory nerve +http://purl.obolibrary.org/obo/UBERON_0004727,cochlear nerve,cochlear root of acoustic nerve +http://purl.obolibrary.org/obo/UBERON_0004727,cochlear nerve,cochlear root of eighth cranial nerve +http://purl.obolibrary.org/obo/UBERON_0004727,cochlear nerve,vestibulocochlear VIII nerve cochlear component +http://purl.obolibrary.org/obo/UBERON_0004731,neuromere,neural tube metameric segment +http://purl.obolibrary.org/obo/UBERON_0004731,neuromere,neural tube segment +http://purl.obolibrary.org/obo/UBERON_0004731,neuromere,neuromere +http://purl.obolibrary.org/obo/UBERON_0004731,neuromere,neuromeres +http://purl.obolibrary.org/obo/UBERON_0004732,segmental subdivision of nervous system,neuromere +http://purl.obolibrary.org/obo/UBERON_0004733,segmental subdivision of hindbrain,hindbrain segment +http://purl.obolibrary.org/obo/UBERON_0004733,segmental subdivision of hindbrain,segment of hindbrain +http://purl.obolibrary.org/obo/UBERON_0004734,gastrula,gastrula embryo +http://purl.obolibrary.org/obo/UBERON_0004735,archenteron, +http://purl.obolibrary.org/obo/UBERON_0004736,metanephric glomerulus,glomerulus of metanephros +http://purl.obolibrary.org/obo/UBERON_0004737,metanephric collecting duct,collecting duct of metanephros +http://purl.obolibrary.org/obo/UBERON_0004738,metanephric juxtaglomerular apparatus,juxtaglomerular apparatus of metanephros +http://purl.obolibrary.org/obo/UBERON_0004739,pronephric glomerulus,glomerulus of pronephros +http://purl.obolibrary.org/obo/UBERON_0004740,basibranchial bone,basibranchial bone +http://purl.obolibrary.org/obo/UBERON_0004740,basibranchial bone,basibranchial bones +http://purl.obolibrary.org/obo/UBERON_0004741,cleithrum,cleithra +http://purl.obolibrary.org/obo/UBERON_0004741,cleithrum,cleithrum bone +http://purl.obolibrary.org/obo/UBERON_0004742,dentary,dentaries +http://purl.obolibrary.org/obo/UBERON_0004742,dentary,dentary bone +http://purl.obolibrary.org/obo/UBERON_0004743,coracoid bone,coracoid +http://purl.obolibrary.org/obo/UBERON_0004743,coracoid bone,coracoids +http://purl.obolibrary.org/obo/UBERON_0004744,articular/anguloarticular,angulo-articular +http://purl.obolibrary.org/obo/UBERON_0004744,articular/anguloarticular,anguloarticular +http://purl.obolibrary.org/obo/UBERON_0004744,articular/anguloarticular,anguloarticular - malleus +http://purl.obolibrary.org/obo/UBERON_0004745,parasphenoid, +http://purl.obolibrary.org/obo/UBERON_0004746,prootic bone,prootic +http://purl.obolibrary.org/obo/UBERON_0004747,supraoccipital bone,supraoccipital +http://purl.obolibrary.org/obo/UBERON_0004749,blastodisc,germinal disc +http://purl.obolibrary.org/obo/UBERON_0004750,blastoderm, +http://purl.obolibrary.org/obo/UBERON_0004751,hypohyal bone,hypohyals +http://purl.obolibrary.org/obo/UBERON_0004752,palatoquadrate cartilage,dorsal mandibular cartilage +http://purl.obolibrary.org/obo/UBERON_0004752,palatoquadrate cartilage,palatoquadrate +http://purl.obolibrary.org/obo/UBERON_0004752,palatoquadrate cartilage,quadrate cartilage +http://purl.obolibrary.org/obo/UBERON_0004753,scapulocoracoid,scapulocoracoideum +http://purl.obolibrary.org/obo/UBERON_0004754,foramen ovale of heart,Bottalo's foramen +http://purl.obolibrary.org/obo/UBERON_0004754,foramen ovale of heart,falx septi +http://purl.obolibrary.org/obo/UBERON_0004754,foramen ovale of heart,foramen ovale cordis +http://purl.obolibrary.org/obo/UBERON_0004754,foramen ovale of heart,ostium secundum of Born +http://purl.obolibrary.org/obo/UBERON_0004755,skeletal tissue, +http://purl.obolibrary.org/obo/UBERON_0004756,dermal skeletal element,dermal element +http://purl.obolibrary.org/obo/UBERON_0004757,rectal salt gland, +http://purl.obolibrary.org/obo/UBERON_0004758,salt gland, +http://purl.obolibrary.org/obo/UBERON_0004759,cranial salt gland, +http://purl.obolibrary.org/obo/UBERON_0004760,gland of anal canal,gland of anal canal +http://purl.obolibrary.org/obo/UBERON_0004761,cartilaginous neurocranium,cartilaginous chondocranium +http://purl.obolibrary.org/obo/UBERON_0004761,cartilaginous neurocranium,cartiligionous skeletal structure of skull +http://purl.obolibrary.org/obo/UBERON_0004763,endochondral bone tissue, +http://purl.obolibrary.org/obo/UBERON_0004764,intramembranous bone tissue, +http://purl.obolibrary.org/obo/UBERON_0004765,skeletal element, +http://purl.obolibrary.org/obo/UBERON_0004766,cranial bone,cranium bone +http://purl.obolibrary.org/obo/UBERON_0004767,vomerine tooth, +http://purl.obolibrary.org/obo/UBERON_0004768,bone of lower jaw,lower jaw bone +http://purl.obolibrary.org/obo/UBERON_0004769,diaphysis,body of long bone +http://purl.obolibrary.org/obo/UBERON_0004769,diaphysis,long bone diaphysis +http://purl.obolibrary.org/obo/UBERON_0004769,diaphysis,shaft of long bone +http://purl.obolibrary.org/obo/UBERON_0004770,articular system,joint system +http://purl.obolibrary.org/obo/UBERON_0004770,articular system,set of all joints +http://purl.obolibrary.org/obo/UBERON_0004770,articular system,set of all joints of body +http://purl.obolibrary.org/obo/UBERON_0004770,articular system,set of joints of body +http://purl.obolibrary.org/obo/UBERON_0004771,posterior nasal aperture,posterior nasal apperture +http://purl.obolibrary.org/obo/UBERON_0004772,eyelid tarsus,tarsal plate +http://purl.obolibrary.org/obo/UBERON_0004772,eyelid tarsus,tarsal plate of eyelid +http://purl.obolibrary.org/obo/UBERON_0004772,eyelid tarsus,tarsus palpebralis +http://purl.obolibrary.org/obo/UBERON_0004773,superior eyelid tarsus,superior tarsal plate +http://purl.obolibrary.org/obo/UBERON_0004773,superior eyelid tarsus,superior tarsus +http://purl.obolibrary.org/obo/UBERON_0004773,superior eyelid tarsus,superior tarsus of eyelid +http://purl.obolibrary.org/obo/UBERON_0004773,superior eyelid tarsus,tarsal plate of upper eyelid +http://purl.obolibrary.org/obo/UBERON_0004773,superior eyelid tarsus,tarsus of upper eyelid +http://purl.obolibrary.org/obo/UBERON_0004773,superior eyelid tarsus,tarsus superior +http://purl.obolibrary.org/obo/UBERON_0004774,inferior eyelid tarsus,inferior tarsal plate +http://purl.obolibrary.org/obo/UBERON_0004774,inferior eyelid tarsus,inferior tarsus +http://purl.obolibrary.org/obo/UBERON_0004774,inferior eyelid tarsus,inferior tarsus of eyelid +http://purl.obolibrary.org/obo/UBERON_0004774,inferior eyelid tarsus,tarsal plate of lower eyelid +http://purl.obolibrary.org/obo/UBERON_0004774,inferior eyelid tarsus,tarsus inferior +http://purl.obolibrary.org/obo/UBERON_0004774,inferior eyelid tarsus,tarsus of lower eyelid +http://purl.obolibrary.org/obo/UBERON_0004775,outer renal medulla vasa recta,kidney outer medulla vasa recta +http://purl.obolibrary.org/obo/UBERON_0004775,outer renal medulla vasa recta,kidney outer renal medulla vasa recta +http://purl.obolibrary.org/obo/UBERON_0004775,outer renal medulla vasa recta,outer medulla of kidney vasa recta +http://purl.obolibrary.org/obo/UBERON_0004775,outer renal medulla vasa recta,outer zone of medulla of kidney vasa recta +http://purl.obolibrary.org/obo/UBERON_0004775,outer renal medulla vasa recta,outer zone of renal medulla vasa recta +http://purl.obolibrary.org/obo/UBERON_0004775,outer renal medulla vasa recta,vasa recta of outer medulla of kidney +http://purl.obolibrary.org/obo/UBERON_0004775,outer renal medulla vasa recta,vasa recta of outer renal medulla +http://purl.obolibrary.org/obo/UBERON_0004775,outer renal medulla vasa recta,vasa recta of outer zone of medulla of kidney +http://purl.obolibrary.org/obo/UBERON_0004775,outer renal medulla vasa recta,vasa recta of outer zone of renal medulla +http://purl.obolibrary.org/obo/UBERON_0004776,inner renal medulla vasa recta,inner medulla of kidney vasa recta +http://purl.obolibrary.org/obo/UBERON_0004776,inner renal medulla vasa recta,inner zone of medulla of kidney vasa recta +http://purl.obolibrary.org/obo/UBERON_0004776,inner renal medulla vasa recta,inner zone of renal medulla vasa recta +http://purl.obolibrary.org/obo/UBERON_0004776,inner renal medulla vasa recta,set of inner region of renal pyramids vasa recta +http://purl.obolibrary.org/obo/UBERON_0004776,inner renal medulla vasa recta,vasa recta of inner medulla of kidney +http://purl.obolibrary.org/obo/UBERON_0004776,inner renal medulla vasa recta,vasa recta of inner renal medulla +http://purl.obolibrary.org/obo/UBERON_0004776,inner renal medulla vasa recta,vasa recta of inner zone of medulla of kidney +http://purl.obolibrary.org/obo/UBERON_0004776,inner renal medulla vasa recta,vasa recta of inner zone of renal medulla +http://purl.obolibrary.org/obo/UBERON_0004776,inner renal medulla vasa recta,vasa recta of set of inner region of renal pyramids +http://purl.obolibrary.org/obo/UBERON_0004777,respiratory system submucosa,apparatus respiratorius submucosa +http://purl.obolibrary.org/obo/UBERON_0004777,respiratory system submucosa,submucosa of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0004777,respiratory system submucosa,submucosa of respiratory system +http://purl.obolibrary.org/obo/UBERON_0004778,larynx submucosa,submucosa of larynx +http://purl.obolibrary.org/obo/UBERON_0004779,respiratory system lamina propria,apparatus respiratorius lamina propria +http://purl.obolibrary.org/obo/UBERON_0004779,respiratory system lamina propria,apparatus respiratorius lamina propria mucosa +http://purl.obolibrary.org/obo/UBERON_0004779,respiratory system lamina propria,lamina propria mucosa of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0004779,respiratory system lamina propria,lamina propria mucosa of respiratory system +http://purl.obolibrary.org/obo/UBERON_0004779,respiratory system lamina propria,lamina propria of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0004779,respiratory system lamina propria,lamina propria of respiratory system +http://purl.obolibrary.org/obo/UBERON_0004779,respiratory system lamina propria,respiratory system lamina propria mucosa +http://purl.obolibrary.org/obo/UBERON_0004780,gastrointestinal system lamina propria, +http://purl.obolibrary.org/obo/UBERON_0004781,gallbladder lamina propria,gall bladder lamina propria +http://purl.obolibrary.org/obo/UBERON_0004781,gallbladder lamina propria,gall bladder lamina propria mucosa +http://purl.obolibrary.org/obo/UBERON_0004781,gallbladder lamina propria,gallbladder lamina propria mucosa +http://purl.obolibrary.org/obo/UBERON_0004781,gallbladder lamina propria,lamina propria mucosa of gall bladder +http://purl.obolibrary.org/obo/UBERON_0004781,gallbladder lamina propria,lamina propria mucosa of gallbladder +http://purl.obolibrary.org/obo/UBERON_0004781,gallbladder lamina propria,lamina propria of gall bladder +http://purl.obolibrary.org/obo/UBERON_0004781,gallbladder lamina propria,lamina propria of gallbladder +http://purl.obolibrary.org/obo/UBERON_0004782,gastrointestinal system serosa,digestive system serosa +http://purl.obolibrary.org/obo/UBERON_0004782,gastrointestinal system serosa,digestive system serous membrane +http://purl.obolibrary.org/obo/UBERON_0004782,gastrointestinal system serosa,gastrointestinal system serous membrane +http://purl.obolibrary.org/obo/UBERON_0004782,gastrointestinal system serosa,serosa of digestive system +http://purl.obolibrary.org/obo/UBERON_0004782,gastrointestinal system serosa,serosa of gastrointestinal system +http://purl.obolibrary.org/obo/UBERON_0004782,gastrointestinal system serosa,serous membrane of digestive system +http://purl.obolibrary.org/obo/UBERON_0004782,gastrointestinal system serosa,serous membrane of gastrointestinal system +http://purl.obolibrary.org/obo/UBERON_0004783,gallbladder serosa,gall bladder serosa +http://purl.obolibrary.org/obo/UBERON_0004783,gallbladder serosa,gall bladder serous membrane +http://purl.obolibrary.org/obo/UBERON_0004783,gallbladder serosa,gallbladder serous membrane +http://purl.obolibrary.org/obo/UBERON_0004783,gallbladder serosa,serosa of gall bladder +http://purl.obolibrary.org/obo/UBERON_0004783,gallbladder serosa,serosa of gallbladder +http://purl.obolibrary.org/obo/UBERON_0004783,gallbladder serosa,serous coat of gallbladder +http://purl.obolibrary.org/obo/UBERON_0004783,gallbladder serosa,serous membrane of gall bladder +http://purl.obolibrary.org/obo/UBERON_0004783,gallbladder serosa,serous membrane of gallbladder +http://purl.obolibrary.org/obo/UBERON_0004783,gallbladder serosa,tunica serosa (vesica biliaris) +http://purl.obolibrary.org/obo/UBERON_0004783,gallbladder serosa,tunica serosa vesicae biliaris +http://purl.obolibrary.org/obo/UBERON_0004784,heart ventricle wall,anatomical wall of cardiac ventricle +http://purl.obolibrary.org/obo/UBERON_0004784,heart ventricle wall,anatomical wall of heart ventricle +http://purl.obolibrary.org/obo/UBERON_0004784,heart ventricle wall,anatomical wall of lower chamber of heart +http://purl.obolibrary.org/obo/UBERON_0004784,heart ventricle wall,anatomical wall of ventricle of heart +http://purl.obolibrary.org/obo/UBERON_0004784,heart ventricle wall,cardiac ventricle anatomical wall +http://purl.obolibrary.org/obo/UBERON_0004784,heart ventricle wall,cardiac ventricle wall +http://purl.obolibrary.org/obo/UBERON_0004784,heart ventricle wall,heart ventricle anatomical wall +http://purl.obolibrary.org/obo/UBERON_0004784,heart ventricle wall,lower chamber of heart anatomical wall +http://purl.obolibrary.org/obo/UBERON_0004784,heart ventricle wall,lower chamber of heart wall +http://purl.obolibrary.org/obo/UBERON_0004784,heart ventricle wall,ventricle of heart anatomical wall +http://purl.obolibrary.org/obo/UBERON_0004784,heart ventricle wall,ventricle of heart wall +http://purl.obolibrary.org/obo/UBERON_0004784,heart ventricle wall,ventricular wall +http://purl.obolibrary.org/obo/UBERON_0004784,heart ventricle wall,wall of cardiac ventricle +http://purl.obolibrary.org/obo/UBERON_0004784,heart ventricle wall,wall of heart ventricle +http://purl.obolibrary.org/obo/UBERON_0004784,heart ventricle wall,wall of lower chamber of heart +http://purl.obolibrary.org/obo/UBERON_0004784,heart ventricle wall,wall of ventricle of heart +http://purl.obolibrary.org/obo/UBERON_0004785,respiratory system mucosa,apparatus respiratorius mucosa +http://purl.obolibrary.org/obo/UBERON_0004785,respiratory system mucosa,apparatus respiratorius mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004785,respiratory system mucosa,apparatus respiratorius mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004785,respiratory system mucosa,laryngeal mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004785,respiratory system mucosa,mucosa of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0004785,respiratory system mucosa,mucosa of organ of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0004785,respiratory system mucosa,mucosa of organ of respiratory system +http://purl.obolibrary.org/obo/UBERON_0004785,respiratory system mucosa,mucosa of respiratory system +http://purl.obolibrary.org/obo/UBERON_0004785,respiratory system mucosa,mucous membrane of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0004785,respiratory system mucosa,mucous membrane of respiratory system +http://purl.obolibrary.org/obo/UBERON_0004785,respiratory system mucosa,respiratory mucosa +http://purl.obolibrary.org/obo/UBERON_0004785,respiratory system mucosa,respiratory system mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004785,respiratory system mucosa,respiratory system mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004785,respiratory system mucosa,respiratory tract mucosa +http://purl.obolibrary.org/obo/UBERON_0004786,gastrointestinal system mucosa,digestive tract mucosa +http://purl.obolibrary.org/obo/UBERON_0004786,gastrointestinal system mucosa,gut mucosa +http://purl.obolibrary.org/obo/UBERON_0004786,gastrointestinal system mucosa,gut mucuous membrane +http://purl.obolibrary.org/obo/UBERON_0004786,gastrointestinal system mucosa,mucosa of gut +http://purl.obolibrary.org/obo/UBERON_0004787,urethra urothelium,urethra uroepithelium +http://purl.obolibrary.org/obo/UBERON_0004787,urethra urothelium,uroepithelium of urethra +http://purl.obolibrary.org/obo/UBERON_0004787,urethra urothelium,urothelium of urethra +http://purl.obolibrary.org/obo/UBERON_0004788,kidney pelvis urothelium,kidney pelvis transitional epithelium +http://purl.obolibrary.org/obo/UBERON_0004788,kidney pelvis urothelium,kidney pelvis uroepithelium +http://purl.obolibrary.org/obo/UBERON_0004788,kidney pelvis urothelium,pelvis of ureter uroepithelium +http://purl.obolibrary.org/obo/UBERON_0004788,kidney pelvis urothelium,pelvis of ureter urothelium +http://purl.obolibrary.org/obo/UBERON_0004788,kidney pelvis urothelium,renal pelvis transitional epithelium +http://purl.obolibrary.org/obo/UBERON_0004788,kidney pelvis urothelium,renal pelvis uroepithelium +http://purl.obolibrary.org/obo/UBERON_0004788,kidney pelvis urothelium,renal pelvis urothelium +http://purl.obolibrary.org/obo/UBERON_0004788,kidney pelvis urothelium,transitional epithelium of kidney pelvis +http://purl.obolibrary.org/obo/UBERON_0004788,kidney pelvis urothelium,transitional epithelium of renal pelvis +http://purl.obolibrary.org/obo/UBERON_0004788,kidney pelvis urothelium,uroepithelium of kidney pelvis +http://purl.obolibrary.org/obo/UBERON_0004788,kidney pelvis urothelium,uroepithelium of pelvis of ureter +http://purl.obolibrary.org/obo/UBERON_0004788,kidney pelvis urothelium,uroepithelium of renal pelvis +http://purl.obolibrary.org/obo/UBERON_0004788,kidney pelvis urothelium,urothelium of kidney pelvis +http://purl.obolibrary.org/obo/UBERON_0004788,kidney pelvis urothelium,urothelium of pelvis of ureter +http://purl.obolibrary.org/obo/UBERON_0004788,kidney pelvis urothelium,urothelium of renal pelvis +http://purl.obolibrary.org/obo/UBERON_0004789,larynx mucous gland,mucous gland of larynx +http://purl.obolibrary.org/obo/UBERON_0004790,skin mucous gland,mucous gland of entire skin +http://purl.obolibrary.org/obo/UBERON_0004790,skin mucous gland,mucous gland of skin of body +http://purl.obolibrary.org/obo/UBERON_0004790,skin mucous gland,skin mucus gland +http://purl.obolibrary.org/obo/UBERON_0004790,skin mucous gland,skin of body mucous gland +http://purl.obolibrary.org/obo/UBERON_0004791,thymus trabecula,thymic trabecula +http://purl.obolibrary.org/obo/UBERON_0004791,thymus trabecula,thymus gland trabecula +http://purl.obolibrary.org/obo/UBERON_0004791,thymus trabecula,thymus trabeculae +http://purl.obolibrary.org/obo/UBERON_0004791,thymus trabecula,trabecula of thymus +http://purl.obolibrary.org/obo/UBERON_0004791,thymus trabecula,trabecula of thymus gland +http://purl.obolibrary.org/obo/UBERON_0004792,secretion of endocrine pancreas,endocrine pancreas secretion +http://purl.obolibrary.org/obo/UBERON_0004792,secretion of endocrine pancreas,pancreatic endocrine secretion +http://purl.obolibrary.org/obo/UBERON_0004792,secretion of endocrine pancreas,pars endocrina pancreatis secretion +http://purl.obolibrary.org/obo/UBERON_0004792,secretion of endocrine pancreas,secretion of pars endocrina pancreatis +http://purl.obolibrary.org/obo/UBERON_0004793,secretion of exocrine pancreas,exocrine pancreas secretion +http://purl.obolibrary.org/obo/UBERON_0004793,secretion of exocrine pancreas,pancreatic exocrine secretion +http://purl.obolibrary.org/obo/UBERON_0004793,secretion of exocrine pancreas,pars exocrina pancreatis secretion +http://purl.obolibrary.org/obo/UBERON_0004793,secretion of exocrine pancreas,secretion of pars exocrina pancreatis +http://purl.obolibrary.org/obo/UBERON_0004794,esophagus secretion,esophageal secretion +http://purl.obolibrary.org/obo/UBERON_0004794,esophagus secretion,gullet secretion +http://purl.obolibrary.org/obo/UBERON_0004794,esophagus secretion,oesophagus secretion +http://purl.obolibrary.org/obo/UBERON_0004794,esophagus secretion,secretion of esophagus +http://purl.obolibrary.org/obo/UBERON_0004794,esophagus secretion,secretion of gullet +http://purl.obolibrary.org/obo/UBERON_0004794,esophagus secretion,secretion of oesophagus +http://purl.obolibrary.org/obo/UBERON_0004795,pancreas secretion,pancreatic secretion +http://purl.obolibrary.org/obo/UBERON_0004795,pancreas secretion,secretion of pancreas +http://purl.obolibrary.org/obo/UBERON_0004796,prostate gland secretion,prostate secretion +http://purl.obolibrary.org/obo/UBERON_0004796,prostate gland secretion,prostatic fluid +http://purl.obolibrary.org/obo/UBERON_0004796,prostate gland secretion,secretion of prostate +http://purl.obolibrary.org/obo/UBERON_0004796,prostate gland secretion,secretion of prostate gland +http://purl.obolibrary.org/obo/UBERON_0004797,blood vessel layer, +http://purl.obolibrary.org/obo/UBERON_0004798,respiratory system basal lamina,apparatus respiratorius basal lamina +http://purl.obolibrary.org/obo/UBERON_0004798,respiratory system basal lamina,apparatus respiratorius basal lamina of connective tissue +http://purl.obolibrary.org/obo/UBERON_0004798,respiratory system basal lamina,basal lamina of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0004798,respiratory system basal lamina,basal lamina of connective tissue of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0004798,respiratory system basal lamina,basal lamina of connective tissue of respiratory system +http://purl.obolibrary.org/obo/UBERON_0004798,respiratory system basal lamina,basal lamina of respiratory system +http://purl.obolibrary.org/obo/UBERON_0004798,respiratory system basal lamina,respiratory system basal lamina of connective tissue +http://purl.obolibrary.org/obo/UBERON_0004799,trachea basal lamina,basal lamina of connective tissue of respiratory airway +http://purl.obolibrary.org/obo/UBERON_0004800,bronchus basal lamina,basal lamina of bronchi +http://purl.obolibrary.org/obo/UBERON_0004800,bronchus basal lamina,basal lamina of bronchial trunk +http://purl.obolibrary.org/obo/UBERON_0004800,bronchus basal lamina,basal lamina of bronchus +http://purl.obolibrary.org/obo/UBERON_0004800,bronchus basal lamina,basal lamina of connective tissue of bronchi +http://purl.obolibrary.org/obo/UBERON_0004800,bronchus basal lamina,basal lamina of connective tissue of bronchial trunk +http://purl.obolibrary.org/obo/UBERON_0004800,bronchus basal lamina,basal lamina of connective tissue of bronchus +http://purl.obolibrary.org/obo/UBERON_0004800,bronchus basal lamina,bronchi basal lamina +http://purl.obolibrary.org/obo/UBERON_0004800,bronchus basal lamina,bronchi basal lamina of connective tissue +http://purl.obolibrary.org/obo/UBERON_0004800,bronchus basal lamina,bronchial trunk basal lamina +http://purl.obolibrary.org/obo/UBERON_0004800,bronchus basal lamina,bronchial trunk basal lamina of connective tissue +http://purl.obolibrary.org/obo/UBERON_0004800,bronchus basal lamina,bronchus basal lamina of connective tissue +http://purl.obolibrary.org/obo/UBERON_0004801,cervix epithelium,cervical canal epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0004801,cervix epithelium,cervical canal epithelium +http://purl.obolibrary.org/obo/UBERON_0004801,cervix epithelium,cervical epithelium +http://purl.obolibrary.org/obo/UBERON_0004801,cervix epithelium,cervix epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0004801,cervix epithelium,epithelium of cervix +http://purl.obolibrary.org/obo/UBERON_0004802,respiratory tract epithelium,airway epithelium +http://purl.obolibrary.org/obo/UBERON_0004802,respiratory tract epithelium,epithelial tissue of respiratory tract +http://purl.obolibrary.org/obo/UBERON_0004802,respiratory tract epithelium,epithelium of respiratory tract +http://purl.obolibrary.org/obo/UBERON_0004802,respiratory tract epithelium,respiratory epithelium +http://purl.obolibrary.org/obo/UBERON_0004802,respiratory tract epithelium,respiratory tract epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0004803,penis epithelium,epithelial tissue of penis +http://purl.obolibrary.org/obo/UBERON_0004803,penis epithelium,epithelium of penis +http://purl.obolibrary.org/obo/UBERON_0004803,penis epithelium,penis epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0004804,oviduct epithelium,epithelial tissue of oviduct +http://purl.obolibrary.org/obo/UBERON_0004804,oviduct epithelium,epithelium of fallopian tube +http://purl.obolibrary.org/obo/UBERON_0004804,oviduct epithelium,epithelium of oviduct +http://purl.obolibrary.org/obo/UBERON_0004804,oviduct epithelium,epithelium of uterine tube +http://purl.obolibrary.org/obo/UBERON_0004804,oviduct epithelium,oviduct epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0004805,seminal vesicle epithelium,epithelial tissue of seminal gland +http://purl.obolibrary.org/obo/UBERON_0004805,seminal vesicle epithelium,epithelial tissue of seminal vesicle +http://purl.obolibrary.org/obo/UBERON_0004805,seminal vesicle epithelium,epithelium of seminal gland +http://purl.obolibrary.org/obo/UBERON_0004805,seminal vesicle epithelium,epithelium of seminal vesicle +http://purl.obolibrary.org/obo/UBERON_0004805,seminal vesicle epithelium,seminal gland epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0004805,seminal vesicle epithelium,seminal gland epithelium +http://purl.obolibrary.org/obo/UBERON_0004805,seminal vesicle epithelium,seminal vesicle epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0004806,vas deferens epithelium,deferent duct epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0004806,vas deferens epithelium,deferent duct epithelium +http://purl.obolibrary.org/obo/UBERON_0004806,vas deferens epithelium,ductus deferens epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0004806,vas deferens epithelium,ductus deferens epithelium +http://purl.obolibrary.org/obo/UBERON_0004806,vas deferens epithelium,epithelial tissue of deferent duct +http://purl.obolibrary.org/obo/UBERON_0004806,vas deferens epithelium,epithelial tissue of ductus deferens +http://purl.obolibrary.org/obo/UBERON_0004806,vas deferens epithelium,epithelial tissue of sperm duct +http://purl.obolibrary.org/obo/UBERON_0004806,vas deferens epithelium,epithelial tissue of vas deferen +http://purl.obolibrary.org/obo/UBERON_0004806,vas deferens epithelium,epithelial tissue of vas deferens +http://purl.obolibrary.org/obo/UBERON_0004806,vas deferens epithelium,epithelium of deferent duct +http://purl.obolibrary.org/obo/UBERON_0004806,vas deferens epithelium,epithelium of ductus deferens +http://purl.obolibrary.org/obo/UBERON_0004806,vas deferens epithelium,epithelium of sperm duct +http://purl.obolibrary.org/obo/UBERON_0004806,vas deferens epithelium,epithelium of vas deferen +http://purl.obolibrary.org/obo/UBERON_0004806,vas deferens epithelium,epithelium of vas deferens +http://purl.obolibrary.org/obo/UBERON_0004806,vas deferens epithelium,sperm duct epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0004806,vas deferens epithelium,sperm duct epithelium +http://purl.obolibrary.org/obo/UBERON_0004806,vas deferens epithelium,vas deferen epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0004806,vas deferens epithelium,vas deferen epithelium +http://purl.obolibrary.org/obo/UBERON_0004806,vas deferens epithelium,vas deferens epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0004807,respiratory system epithelium,apparatus respiratorius epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0004807,respiratory system epithelium,apparatus respiratorius epithelium +http://purl.obolibrary.org/obo/UBERON_0004807,respiratory system epithelium,epithelial tissue of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0004807,respiratory system epithelium,epithelial tissue of respiratory system +http://purl.obolibrary.org/obo/UBERON_0004807,respiratory system epithelium,epithelium of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0004807,respiratory system epithelium,epithelium of respiratory system +http://purl.obolibrary.org/obo/UBERON_0004807,respiratory system epithelium,respiratory system epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0004808,gastrointestinal system epithelium,digestive system epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0004808,gastrointestinal system epithelium,digestive system epithelium +http://purl.obolibrary.org/obo/UBERON_0004808,gastrointestinal system epithelium,epithelial tissue of digestive system +http://purl.obolibrary.org/obo/UBERON_0004808,gastrointestinal system epithelium,epithelial tissue of gastrointestinal system +http://purl.obolibrary.org/obo/UBERON_0004808,gastrointestinal system epithelium,epithelium of digestive system +http://purl.obolibrary.org/obo/UBERON_0004808,gastrointestinal system epithelium,epithelium of gastrointestinal system +http://purl.obolibrary.org/obo/UBERON_0004808,gastrointestinal system epithelium,gastrointestinal system epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0004809,salivary gland epithelium,epithelial tissue of salivary gland +http://purl.obolibrary.org/obo/UBERON_0004809,salivary gland epithelium,epithelium of salivary gland +http://purl.obolibrary.org/obo/UBERON_0004809,salivary gland epithelium,salivary gland epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0004810,nephron tubule epithelium,kidney tubule epithelium +http://purl.obolibrary.org/obo/UBERON_0004811,endometrium epithelium,endometrium epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0004811,endometrium epithelium,epithelial tissue of endometrium +http://purl.obolibrary.org/obo/UBERON_0004811,endometrium epithelium,epithelium of endometrium +http://purl.obolibrary.org/obo/UBERON_0004811,endometrium epithelium,epithelium of tunica mucosa of endometrium +http://purl.obolibrary.org/obo/UBERON_0004812,male prepuce epithelium,epithelial tissue of foreskin +http://purl.obolibrary.org/obo/UBERON_0004812,male prepuce epithelium,epithelial tissue of penile prepuce +http://purl.obolibrary.org/obo/UBERON_0004812,male prepuce epithelium,epithelial tissue of prepuce of penis +http://purl.obolibrary.org/obo/UBERON_0004812,male prepuce epithelium,epithelium of foreskin +http://purl.obolibrary.org/obo/UBERON_0004812,male prepuce epithelium,epithelium of penile prepuce +http://purl.obolibrary.org/obo/UBERON_0004812,male prepuce epithelium,epithelium of prepuce of penis +http://purl.obolibrary.org/obo/UBERON_0004812,male prepuce epithelium,foreskin epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0004812,male prepuce epithelium,foreskin epithelium +http://purl.obolibrary.org/obo/UBERON_0004812,male prepuce epithelium,penile prepuce epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0004812,male prepuce epithelium,penile prepuce epithelium +http://purl.obolibrary.org/obo/UBERON_0004812,male prepuce epithelium,prepuce epithelium +http://purl.obolibrary.org/obo/UBERON_0004812,male prepuce epithelium,prepuce of penis epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0004813,seminiferous tubule epithelium,epithelial tissue of seminiferous tubule +http://purl.obolibrary.org/obo/UBERON_0004813,seminiferous tubule epithelium,epithelial tissue of seminiferous tubule of testis +http://purl.obolibrary.org/obo/UBERON_0004813,seminiferous tubule epithelium,epithelium of seminiferous tubule +http://purl.obolibrary.org/obo/UBERON_0004813,seminiferous tubule epithelium,epithelium of seminiferous tubule of testis +http://purl.obolibrary.org/obo/UBERON_0004813,seminiferous tubule epithelium,germinal epithelium (male) +http://purl.obolibrary.org/obo/UBERON_0004813,seminiferous tubule epithelium,male germinal epithelium +http://purl.obolibrary.org/obo/UBERON_0004813,seminiferous tubule epithelium,seminiferous epithelium +http://purl.obolibrary.org/obo/UBERON_0004813,seminiferous tubule epithelium,seminiferous tubule epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0004813,seminiferous tubule epithelium,testis germinal epithelium +http://purl.obolibrary.org/obo/UBERON_0004813,seminiferous tubule epithelium,wall of seminiferous tubule +http://purl.obolibrary.org/obo/UBERON_0004814,upper respiratory tract epithelium,epithelial tissue of upper respiratory tract +http://purl.obolibrary.org/obo/UBERON_0004814,upper respiratory tract epithelium,epithelium of upper respiratory tract +http://purl.obolibrary.org/obo/UBERON_0004814,upper respiratory tract epithelium,upper respiratory tract epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0004815,lower respiratory tract epithelium,epithelial tissue of lower respiratory tract +http://purl.obolibrary.org/obo/UBERON_0004815,lower respiratory tract epithelium,epithelium of lower respiratory tract +http://purl.obolibrary.org/obo/UBERON_0004815,lower respiratory tract epithelium,lower respiratory tract epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0004816,larynx epithelium,epithelial tissue of larynx +http://purl.obolibrary.org/obo/UBERON_0004816,larynx epithelium,epithelium of larynx +http://purl.obolibrary.org/obo/UBERON_0004816,larynx epithelium,laryngeal epithelium +http://purl.obolibrary.org/obo/UBERON_0004816,larynx epithelium,larynx epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0004817,lacrimal gland epithelium,epithelial tissue of lacrimal gland +http://purl.obolibrary.org/obo/UBERON_0004817,lacrimal gland epithelium,epithelium of lacrimal gland +http://purl.obolibrary.org/obo/UBERON_0004817,lacrimal gland epithelium,lacrimal gland epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0004818,terminal bronchus epithelium,epithelial tissue of terminal bronchus +http://purl.obolibrary.org/obo/UBERON_0004818,terminal bronchus epithelium,epithelium of terminal bronchus +http://purl.obolibrary.org/obo/UBERON_0004818,terminal bronchus epithelium,terminal bronchus epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0004819,kidney epithelium,epithelial tissue of kidney +http://purl.obolibrary.org/obo/UBERON_0004819,kidney epithelium,epithelium of kidney +http://purl.obolibrary.org/obo/UBERON_0004819,kidney epithelium,kidney epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0004820,bile duct epithelium,biliary duct epithelium +http://purl.obolibrary.org/obo/UBERON_0004820,bile duct epithelium,epithelium of bile duct +http://purl.obolibrary.org/obo/UBERON_0004820,bile duct epithelium,epithelium of biliary duct +http://purl.obolibrary.org/obo/UBERON_0004821,pulmonary alveolus epithelium,alveolus epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0004821,pulmonary alveolus epithelium,alveolus epithelium +http://purl.obolibrary.org/obo/UBERON_0004821,pulmonary alveolus epithelium,epithelial tissue of alveolus +http://purl.obolibrary.org/obo/UBERON_0004821,pulmonary alveolus epithelium,epithelium of alveolus +http://purl.obolibrary.org/obo/UBERON_0004821,pulmonary alveolus epithelium,epithelium of pulmonary alveolus +http://purl.obolibrary.org/obo/UBERON_0004821,pulmonary alveolus epithelium,pulmonary alveolar epithelium +http://purl.obolibrary.org/obo/UBERON_0004821,pulmonary alveolus epithelium,pulmonary alveolus epithelium +http://purl.obolibrary.org/obo/UBERON_0004822,extrahepatic bile duct epithelium,epithelial tissue of extrahepatic bile duct +http://purl.obolibrary.org/obo/UBERON_0004822,extrahepatic bile duct epithelium,epithelium of extrahepatic bile duct +http://purl.obolibrary.org/obo/UBERON_0004822,extrahepatic bile duct epithelium,extrahepatic bile duct epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0004823,intrahepatic bile duct epithelium,epithelial tissue of intrahepatic bile duct +http://purl.obolibrary.org/obo/UBERON_0004823,intrahepatic bile duct epithelium,epithelium of intrahepatic bile duct +http://purl.obolibrary.org/obo/UBERON_0004823,intrahepatic bile duct epithelium,intrahepatic bile duct epithelial tissue +http://purl.obolibrary.org/obo/UBERON_0004825,dental lamina,embryonic dental lamina +http://purl.obolibrary.org/obo/UBERON_0004827,thyroid gland medulla,medulla of thyroid +http://purl.obolibrary.org/obo/UBERON_0004827,thyroid gland medulla,medulla of thyroid follicle +http://purl.obolibrary.org/obo/UBERON_0004827,thyroid gland medulla,medulla of thyroid gland +http://purl.obolibrary.org/obo/UBERON_0004827,thyroid gland medulla,medulla of thyroid gland follicle +http://purl.obolibrary.org/obo/UBERON_0004827,thyroid gland medulla,thyroid follicle medulla +http://purl.obolibrary.org/obo/UBERON_0004827,thyroid gland medulla,thyroid gland follicle medulla +http://purl.obolibrary.org/obo/UBERON_0004827,thyroid gland medulla,thyroid medulla +http://purl.obolibrary.org/obo/UBERON_0004829,urethra skeletal muscle tissue,skeletal muscle of urethra +http://purl.obolibrary.org/obo/UBERON_0004829,urethra skeletal muscle tissue,skeletal muscle tissue of urethra +http://purl.obolibrary.org/obo/UBERON_0004829,urethra skeletal muscle tissue,urethra skeletal muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004830,respiratory system skeletal muscle,respiratory system skeletal muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004830,respiratory system skeletal muscle,skeletal muscle of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0004830,respiratory system skeletal muscle,skeletal muscle of respiratory system +http://purl.obolibrary.org/obo/UBERON_0004830,respiratory system skeletal muscle,skeletal muscle tissue of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0004830,respiratory system skeletal muscle,skeletal muscle tissue of respiratory system +http://purl.obolibrary.org/obo/UBERON_0004831,esophagus skeletal muscle,esophagus skeletal muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004831,esophagus skeletal muscle,skeletal muscle of esophagus +http://purl.obolibrary.org/obo/UBERON_0004832,anal region skeletal muscle,anal part of perineum skeletal muscle +http://purl.obolibrary.org/obo/UBERON_0004832,anal region skeletal muscle,anal part of perineum skeletal muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004832,anal region skeletal muscle,anal region skeletal muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004832,anal region skeletal muscle,anal triangle skeletal muscle +http://purl.obolibrary.org/obo/UBERON_0004832,anal region skeletal muscle,anal triangle skeletal muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004832,anal region skeletal muscle,skeletal muscle of anal part of perineum +http://purl.obolibrary.org/obo/UBERON_0004832,anal region skeletal muscle,skeletal muscle of anal region +http://purl.obolibrary.org/obo/UBERON_0004832,anal region skeletal muscle,skeletal muscle of anal triangle +http://purl.obolibrary.org/obo/UBERON_0004832,anal region skeletal muscle,skeletal muscle tissue of anal part of perineum +http://purl.obolibrary.org/obo/UBERON_0004832,anal region skeletal muscle,skeletal muscle tissue of anal region +http://purl.obolibrary.org/obo/UBERON_0004832,anal region skeletal muscle,skeletal muscle tissue of anal triangle +http://purl.obolibrary.org/obo/UBERON_0004833,lip skeletal muscle,lip skeletal muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004833,lip skeletal muscle,skeletal muscle of lip +http://purl.obolibrary.org/obo/UBERON_0004833,lip skeletal muscle,skeletal muscle tissue of lip +http://purl.obolibrary.org/obo/UBERON_0004834,hepatic duct smooth muscle, +http://purl.obolibrary.org/obo/UBERON_0004835,epididymis smooth muscle,epididymis involuntary muscle +http://purl.obolibrary.org/obo/UBERON_0004835,epididymis smooth muscle,epididymis non-striated muscle +http://purl.obolibrary.org/obo/UBERON_0004835,epididymis smooth muscle,epididymis smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004835,epididymis smooth muscle,involuntary muscle of epididymis +http://purl.obolibrary.org/obo/UBERON_0004835,epididymis smooth muscle,non-striated muscle of epididymis +http://purl.obolibrary.org/obo/UBERON_0004835,epididymis smooth muscle,smooth muscle of epididymis +http://purl.obolibrary.org/obo/UBERON_0004835,epididymis smooth muscle,smooth muscle tissue of epididymis +http://purl.obolibrary.org/obo/UBERON_0004848,respiratory system arterial endothelium,apparatus respiratorius arterial endothelium +http://purl.obolibrary.org/obo/UBERON_0004848,respiratory system arterial endothelium,apparatus respiratorius artery endothelium +http://purl.obolibrary.org/obo/UBERON_0004848,respiratory system arterial endothelium,apparatus respiratorius endothelium of artery +http://purl.obolibrary.org/obo/UBERON_0004848,respiratory system arterial endothelium,arterial endothelium of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0004848,respiratory system arterial endothelium,arterial endothelium of respiratory system +http://purl.obolibrary.org/obo/UBERON_0004848,respiratory system arterial endothelium,artery endothelium of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0004848,respiratory system arterial endothelium,artery endothelium of respiratory system +http://purl.obolibrary.org/obo/UBERON_0004848,respiratory system arterial endothelium,endothelium of artery of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0004848,respiratory system arterial endothelium,endothelium of artery of respiratory system +http://purl.obolibrary.org/obo/UBERON_0004848,respiratory system arterial endothelium,respiratory system artery endothelium +http://purl.obolibrary.org/obo/UBERON_0004848,respiratory system arterial endothelium,respiratory system endothelium of artery +http://purl.obolibrary.org/obo/UBERON_0004849,respiratory system venous endothelium,apparatus respiratorius endothelium of vein +http://purl.obolibrary.org/obo/UBERON_0004849,respiratory system venous endothelium,apparatus respiratorius vein endothelium +http://purl.obolibrary.org/obo/UBERON_0004849,respiratory system venous endothelium,apparatus respiratorius venous endothelium +http://purl.obolibrary.org/obo/UBERON_0004849,respiratory system venous endothelium,endothelium of vein of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0004849,respiratory system venous endothelium,endothelium of vein of respiratory system +http://purl.obolibrary.org/obo/UBERON_0004849,respiratory system venous endothelium,respiratory system endothelium of vein +http://purl.obolibrary.org/obo/UBERON_0004849,respiratory system venous endothelium,respiratory system vein endothelium +http://purl.obolibrary.org/obo/UBERON_0004849,respiratory system venous endothelium,vein endothelium of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0004849,respiratory system venous endothelium,vein endothelium of respiratory system +http://purl.obolibrary.org/obo/UBERON_0004849,respiratory system venous endothelium,venous endothelium of apparatus respiratorius +http://purl.obolibrary.org/obo/UBERON_0004849,respiratory system venous endothelium,venous endothelium of respiratory system +http://purl.obolibrary.org/obo/UBERON_0004850,lymph node endothelium,endothelium of lymph node +http://purl.obolibrary.org/obo/UBERON_0004851,aorta endothelium,adult aorta endothelium +http://purl.obolibrary.org/obo/UBERON_0004851,aorta endothelium,endothelium of adult aorta +http://purl.obolibrary.org/obo/UBERON_0004851,aorta endothelium,endothelium of aorta +http://purl.obolibrary.org/obo/UBERON_0004851,aorta endothelium,endothelium of trunk of aortic tree +http://purl.obolibrary.org/obo/UBERON_0004851,aorta endothelium,endothelium of trunk of systemic arterial tree +http://purl.obolibrary.org/obo/UBERON_0004851,aorta endothelium,trunk of aortic tree endothelium +http://purl.obolibrary.org/obo/UBERON_0004851,aorta endothelium,trunk of systemic arterial tree endothelium +http://purl.obolibrary.org/obo/UBERON_0004852,cardiovascular system endothelium, +http://purl.obolibrary.org/obo/UBERON_0004854,gastrointestinal system mesentery,digestive system mesentery +http://purl.obolibrary.org/obo/UBERON_0004854,gastrointestinal system mesentery,mesentery of digestive system +http://purl.obolibrary.org/obo/UBERON_0004854,gastrointestinal system mesentery,mesentery of gastrointestinal system +http://purl.obolibrary.org/obo/UBERON_0004857,skeletal muscle connective tissue,connective tissue of skeletal muscle +http://purl.obolibrary.org/obo/UBERON_0004857,skeletal muscle connective tissue,connective tissue of skeletal muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004857,skeletal muscle connective tissue,portion of connective tissue of skeletal muscle +http://purl.obolibrary.org/obo/UBERON_0004857,skeletal muscle connective tissue,portion of connective tissue of skeletal muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004857,skeletal muscle connective tissue,skeletal muscle portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0004857,skeletal muscle connective tissue,skeletal muscle textus connectivus +http://purl.obolibrary.org/obo/UBERON_0004857,skeletal muscle connective tissue,skeletal muscle tissue connective tissue +http://purl.obolibrary.org/obo/UBERON_0004857,skeletal muscle connective tissue,skeletal muscle tissue portion of connective tissue +http://purl.obolibrary.org/obo/UBERON_0004857,skeletal muscle connective tissue,skeletal muscle tissue textus connectivus +http://purl.obolibrary.org/obo/UBERON_0004857,skeletal muscle connective tissue,textus connectivus of skeletal muscle +http://purl.obolibrary.org/obo/UBERON_0004857,skeletal muscle connective tissue,textus connectivus of skeletal muscle tissue +http://purl.obolibrary.org/obo/UBERON_0004858,cellular cartilage, +http://purl.obolibrary.org/obo/UBERON_0004859,eye gland,eye-associated gland +http://purl.obolibrary.org/obo/UBERON_0004859,eye gland,gland of eye +http://purl.obolibrary.org/obo/UBERON_0004861,right lung alveolus,alveolus of right lung +http://purl.obolibrary.org/obo/UBERON_0004862,left lung alveolus,alveolus of left lung +http://purl.obolibrary.org/obo/UBERON_0004862,left lung alveolus,alveolus of lobe of left lung +http://purl.obolibrary.org/obo/UBERON_0004863,thoracic sympathetic nerve trunk,nerve trunk of sympathetic nervous system of thorax +http://purl.obolibrary.org/obo/UBERON_0004863,thoracic sympathetic nerve trunk,nerve trunk of sympathetic part of autonomic division of nervous system of thorax +http://purl.obolibrary.org/obo/UBERON_0004863,thoracic sympathetic nerve trunk,sympathetic nerve trunk of thorax +http://purl.obolibrary.org/obo/UBERON_0004863,thoracic sympathetic nerve trunk,sympathetic nervous system nerve trunk of thorax +http://purl.obolibrary.org/obo/UBERON_0004863,thoracic sympathetic nerve trunk,thoracic part of sympathetic trunk +http://purl.obolibrary.org/obo/UBERON_0004863,thoracic sympathetic nerve trunk,thoracic sympathetic chain +http://purl.obolibrary.org/obo/UBERON_0004863,thoracic sympathetic nerve trunk,thoracic sympathetic trunk +http://purl.obolibrary.org/obo/UBERON_0004863,thoracic sympathetic nerve trunk,thorax nerve trunk of sympathetic nervous system +http://purl.obolibrary.org/obo/UBERON_0004863,thoracic sympathetic nerve trunk,thorax nerve trunk of sympathetic part of autonomic division of nervous system +http://purl.obolibrary.org/obo/UBERON_0004863,thoracic sympathetic nerve trunk,thorax sympathetic nerve trunk +http://purl.obolibrary.org/obo/UBERON_0004863,thoracic sympathetic nerve trunk,thorax sympathetic nervous system nerve trunk +http://purl.obolibrary.org/obo/UBERON_0004864,vasculature of retina,retina vasculature +http://purl.obolibrary.org/obo/UBERON_0004864,vasculature of retina,retina vasculature of camera-type eye +http://purl.obolibrary.org/obo/UBERON_0004864,vasculature of retina,retinal blood vessels +http://purl.obolibrary.org/obo/UBERON_0004864,vasculature of retina,retinal blood vessels set +http://purl.obolibrary.org/obo/UBERON_0004864,vasculature of retina,retinal vasculature +http://purl.obolibrary.org/obo/UBERON_0004864,vasculature of retina,set of blood vessels of retina +http://purl.obolibrary.org/obo/UBERON_0004864,vasculature of retina,set of retinal blood vessels +http://purl.obolibrary.org/obo/UBERON_0004864,vasculature of retina,vasa sanguinea retinae +http://purl.obolibrary.org/obo/UBERON_0004865,actinopterygian parietal bone,actinopterygian parietal +http://purl.obolibrary.org/obo/UBERON_0004866,actinopterygian frontal bone,actinopterygian frontal +http://purl.obolibrary.org/obo/UBERON_0004866,actinopterygian frontal bone,actinopterygian frontal bone +http://purl.obolibrary.org/obo/UBERON_0004867,orbital cavity, +http://purl.obolibrary.org/obo/UBERON_0004868,tapetum lucidum of camera-type eye,tapeta lucida +http://purl.obolibrary.org/obo/UBERON_0004868,tapetum lucidum of camera-type eye,tapetum lucidum +http://purl.obolibrary.org/obo/UBERON_0004869,parietal organ,parietal eye +http://purl.obolibrary.org/obo/UBERON_0004870,superficial cervical lymph node, +http://purl.obolibrary.org/obo/UBERON_0004871,somatic layer of lateral plate mesoderm,outer layer of lateral plate mesoderm +http://purl.obolibrary.org/obo/UBERON_0004872,splanchnic layer of lateral plate mesoderm,inner layer of lateral plate mesoderm +http://purl.obolibrary.org/obo/UBERON_0004873,splanchnopleure, +http://purl.obolibrary.org/obo/UBERON_0004874,somatopleure, +http://purl.obolibrary.org/obo/UBERON_0004875,nephrogenic cord, +http://purl.obolibrary.org/obo/UBERON_0004876,urogenital fold,urethral fold +http://purl.obolibrary.org/obo/UBERON_0004876,urogenital fold,urogenital fold +http://purl.obolibrary.org/obo/UBERON_0004877,visceral endoderm, +http://purl.obolibrary.org/obo/UBERON_0004878,distal visceral endoderm, +http://purl.obolibrary.org/obo/UBERON_0004879,marginal zone of embryo, +http://purl.obolibrary.org/obo/UBERON_0004880,chordamesoderm,axial chorda mesoderm +http://purl.obolibrary.org/obo/UBERON_0004880,chordamesoderm,chorda mesoderm +http://purl.obolibrary.org/obo/UBERON_0004880,chordamesoderm,dorsal mesoderm +http://purl.obolibrary.org/obo/UBERON_0004880,chordamesoderm,presumptive notochord +http://purl.obolibrary.org/obo/UBERON_0004882,eponychium, +http://purl.obolibrary.org/obo/UBERON_0004883,lung mesenchyme,lung-associated mesenchyme +http://purl.obolibrary.org/obo/UBERON_0004883,lung mesenchyme,mesenchyme of lung +http://purl.obolibrary.org/obo/UBERON_0004883,lung mesenchyme,pulmonary mesenchyme +http://purl.obolibrary.org/obo/UBERON_0004884,lobar bronchus mesenchyme,mesenchyme of lobar bronchus +http://purl.obolibrary.org/obo/UBERON_0004885,hilum,hilus +http://purl.obolibrary.org/obo/UBERON_0004886,lung hilus,hilum of lung +http://purl.obolibrary.org/obo/UBERON_0004886,lung hilus,hilum pulmonis +http://purl.obolibrary.org/obo/UBERON_0004886,lung hilus,hilus of lung +http://purl.obolibrary.org/obo/UBERON_0004886,lung hilus,lung hilum +http://purl.obolibrary.org/obo/UBERON_0004886,lung hilus,pulmonary hilum +http://purl.obolibrary.org/obo/UBERON_0004886,lung hilus,pulmonary hilus +http://purl.obolibrary.org/obo/UBERON_0004887,left lung hilus,hilum of left lung +http://purl.obolibrary.org/obo/UBERON_0004887,left lung hilus,hilus of left lung +http://purl.obolibrary.org/obo/UBERON_0004887,left lung hilus,left lung hilum +http://purl.obolibrary.org/obo/UBERON_0004887,left lung hilus,left pulmonary hilum +http://purl.obolibrary.org/obo/UBERON_0004887,left lung hilus,left pulmonary hilus +http://purl.obolibrary.org/obo/UBERON_0004888,right lung hilus,hilum of right lung +http://purl.obolibrary.org/obo/UBERON_0004888,right lung hilus,hilus of right lung +http://purl.obolibrary.org/obo/UBERON_0004888,right lung hilus,right lung hilum +http://purl.obolibrary.org/obo/UBERON_0004888,right lung hilus,right pulmonary hilum +http://purl.obolibrary.org/obo/UBERON_0004888,right lung hilus,right pulmonary hilus +http://purl.obolibrary.org/obo/UBERON_0004889,lobar bronchus vasculature, +http://purl.obolibrary.org/obo/UBERON_0004890,right lung accessory lobe,right lung postcaval lobe +http://purl.obolibrary.org/obo/UBERON_0004892,lobar bronchus alveolar system, +http://purl.obolibrary.org/obo/UBERON_0004893,interalveolar septum,alveolar septum +http://purl.obolibrary.org/obo/UBERON_0004894,alveolar wall,pulmonary alveolar wall +http://purl.obolibrary.org/obo/UBERON_0004894,alveolar wall,pulmonary interalveolar septum +http://purl.obolibrary.org/obo/UBERON_0004894,alveolar wall,wall of pulmonary alveolus +http://purl.obolibrary.org/obo/UBERON_0004895,alveolar smooth muscle, +http://purl.obolibrary.org/obo/UBERON_0004896,right lung accessory lobe lobar bronchus,lobar bronchus of right lung accessory lobe +http://purl.obolibrary.org/obo/UBERON_0004897,right lung accessory lobe lobar bronchus mesenchyme, +http://purl.obolibrary.org/obo/UBERON_0004899,right lung cranial lobe lobar bronchus mesenchyme, +http://purl.obolibrary.org/obo/UBERON_0004900,right lung middle lobe lobar bronchus mesenchyme, +http://purl.obolibrary.org/obo/UBERON_0004901,right lung lobar bronchus mesenchyme, +http://purl.obolibrary.org/obo/UBERON_0004902,urogenital sinus epithelium,UGE +http://purl.obolibrary.org/obo/UBERON_0004902,urogenital sinus epithelium,epithelium of urogenital sinus +http://purl.obolibrary.org/obo/UBERON_0004903,bronchoalveolar duct junction, +http://purl.obolibrary.org/obo/UBERON_0004904,neuron projection bundle connecting eye with brain,optic nerve (generic) +http://purl.obolibrary.org/obo/UBERON_0004905,articulation,joint +http://purl.obolibrary.org/obo/UBERON_0004906,ectodermal part of digestive tract,ectodermal gut +http://purl.obolibrary.org/obo/UBERON_0004906,ectodermal part of digestive tract,gut ectoderm +http://purl.obolibrary.org/obo/UBERON_0004907,lower digestive tract,gut +http://purl.obolibrary.org/obo/UBERON_0004907,lower digestive tract,lower GI tract +http://purl.obolibrary.org/obo/UBERON_0004907,lower digestive tract,lower gastrointestinal tract +http://purl.obolibrary.org/obo/UBERON_0004908,upper digestive tract,upper GI tract +http://purl.obolibrary.org/obo/UBERON_0004908,upper digestive tract,upper gastrointestinal tract +http://purl.obolibrary.org/obo/UBERON_0004909,epithelium of gonad,gonad epithelium +http://purl.obolibrary.org/obo/UBERON_0004909,epithelium of gonad,gonadal epithelium +http://purl.obolibrary.org/obo/UBERON_0004909,epithelium of gonad,gonadal sheath +http://purl.obolibrary.org/obo/UBERON_0004910,epithelium of male gonad,testis epithelium +http://purl.obolibrary.org/obo/UBERON_0004911,epithelium of female gonad,ovarian epithelium +http://purl.obolibrary.org/obo/UBERON_0004911,epithelium of female gonad,ovary epithelium +http://purl.obolibrary.org/obo/UBERON_0004912,biliary bud, +http://purl.obolibrary.org/obo/UBERON_0004913,hepatopancreatic ampulla,Vater's ampulla +http://purl.obolibrary.org/obo/UBERON_0004913,hepatopancreatic ampulla,ampulla biliaropancreatica +http://purl.obolibrary.org/obo/UBERON_0004913,hepatopancreatic ampulla,ampulla of Vater +http://purl.obolibrary.org/obo/UBERON_0004913,hepatopancreatic ampulla,ampulla of bile duct +http://purl.obolibrary.org/obo/UBERON_0004913,hepatopancreatic ampulla,biliaropancreatic ampulla +http://purl.obolibrary.org/obo/UBERON_0004913,hepatopancreatic ampulla,papilla Vateri +http://purl.obolibrary.org/obo/UBERON_0004914,duodenal papilla,papilla duodenalis +http://purl.obolibrary.org/obo/UBERON_0004914,duodenal papilla,papilla of duodenum +http://purl.obolibrary.org/obo/UBERON_0004915,sphincter of hepatopancreatic ampulla,Oddi's sphincter +http://purl.obolibrary.org/obo/UBERON_0004915,sphincter of hepatopancreatic ampulla,hepatopancreatic ampullary sphincter +http://purl.obolibrary.org/obo/UBERON_0004915,sphincter of hepatopancreatic ampulla,musculus sphincter ampullae +http://purl.obolibrary.org/obo/UBERON_0004915,sphincter of hepatopancreatic ampulla,musculus sphincter ampullae hepatopancreatica +http://purl.obolibrary.org/obo/UBERON_0004915,sphincter of hepatopancreatic ampulla,sphincter of Oddi +http://purl.obolibrary.org/obo/UBERON_0004915,sphincter of hepatopancreatic ampulla,sphincter of ampulla of vater +http://purl.obolibrary.org/obo/UBERON_0004916,anal sphincter,anal region sphincter +http://purl.obolibrary.org/obo/UBERON_0004916,anal sphincter,sphincter analia +http://purl.obolibrary.org/obo/UBERON_0004917,urethral sphincter,sphincter muscle of urethra +http://purl.obolibrary.org/obo/UBERON_0004917,urethral sphincter,sphincter of urethra +http://purl.obolibrary.org/obo/UBERON_0004917,urethral sphincter,sphincter urethrae +http://purl.obolibrary.org/obo/UBERON_0004917,urethral sphincter,urethral sphincter muscle +http://purl.obolibrary.org/obo/UBERON_0004918,internal urethral sphincter,internal sphincter muscle of urethra +http://purl.obolibrary.org/obo/UBERON_0004918,internal urethral sphincter,internal sphincter of urethra +http://purl.obolibrary.org/obo/UBERON_0004918,internal urethral sphincter,internal urethral sphincter muscle +http://purl.obolibrary.org/obo/UBERON_0004918,internal urethral sphincter,musculus sphincter supracollicularis +http://purl.obolibrary.org/obo/UBERON_0004918,internal urethral sphincter,musculus sphincter urethrae internus +http://purl.obolibrary.org/obo/UBERON_0004918,internal urethral sphincter,preprostatic sphincter +http://purl.obolibrary.org/obo/UBERON_0004918,internal urethral sphincter,sphincter urethrae internus +http://purl.obolibrary.org/obo/UBERON_0004918,internal urethral sphincter,supracollicular sphincter +http://purl.obolibrary.org/obo/UBERON_0004919,external urethral sphincter,annulus urethralis +http://purl.obolibrary.org/obo/UBERON_0004919,external urethral sphincter,external sphincter muscle of urethra +http://purl.obolibrary.org/obo/UBERON_0004919,external urethral sphincter,external sphincter of urethra +http://purl.obolibrary.org/obo/UBERON_0004919,external urethral sphincter,external urethral sphincter muscle +http://purl.obolibrary.org/obo/UBERON_0004919,external urethral sphincter,m. urethralis +http://purl.obolibrary.org/obo/UBERON_0004919,external urethral sphincter,urethralis +http://purl.obolibrary.org/obo/UBERON_0004919,external urethral sphincter,urethralis muscle +http://purl.obolibrary.org/obo/UBERON_0004921,subdivision of digestive tract,alimentary system subdivision +http://purl.obolibrary.org/obo/UBERON_0004921,subdivision of digestive tract,gut section +http://purl.obolibrary.org/obo/UBERON_0004921,subdivision of digestive tract,intestinal tract +http://purl.obolibrary.org/obo/UBERON_0004921,subdivision of digestive tract,segment of intestinal tract +http://purl.obolibrary.org/obo/UBERON_0004921,subdivision of digestive tract,subdivision of alimentary system +http://purl.obolibrary.org/obo/UBERON_0004922,postnatal subventricular zone,SEZ +http://purl.obolibrary.org/obo/UBERON_0004922,postnatal subventricular zone,SVZ +http://purl.obolibrary.org/obo/UBERON_0004922,postnatal subventricular zone,adult subventricular zone +http://purl.obolibrary.org/obo/UBERON_0004922,postnatal subventricular zone,brain subventricular zone +http://purl.obolibrary.org/obo/UBERON_0004922,postnatal subventricular zone,postnatal subventricular zone +http://purl.obolibrary.org/obo/UBERON_0004922,postnatal subventricular zone,subventricular zone +http://purl.obolibrary.org/obo/UBERON_0004922,postnatal subventricular zone,subventricular zone of brain +http://purl.obolibrary.org/obo/UBERON_0004923,organ component layer, +http://purl.obolibrary.org/obo/UBERON_0004924,submucosa of pharynx,pharyngeal submucosa +http://purl.obolibrary.org/obo/UBERON_0004924,submucosa of pharynx,pharynx submucosa +http://purl.obolibrary.org/obo/UBERON_0004924,submucosa of pharynx,tela submucosa pharyngea +http://purl.obolibrary.org/obo/UBERON_0004924,submucosa of pharynx,tela submucosa pharyngis +http://purl.obolibrary.org/obo/UBERON_0004925,submucosa of laryngopharynx,hypopharynx submucosa +http://purl.obolibrary.org/obo/UBERON_0004925,submucosa of laryngopharynx,laryngeal pharynx submucosa +http://purl.obolibrary.org/obo/UBERON_0004925,submucosa of laryngopharynx,laryngopharynx submucosa +http://purl.obolibrary.org/obo/UBERON_0004925,submucosa of laryngopharynx,submucosa of hypopharynx +http://purl.obolibrary.org/obo/UBERON_0004925,submucosa of laryngopharynx,submucosa of laryngeal pharynx +http://purl.obolibrary.org/obo/UBERON_0004925,submucosa of laryngopharynx,tela submucosa (pars laryngea pharyngis) +http://purl.obolibrary.org/obo/UBERON_0004926,submucosa of cystic duct,cystic duct submucosa +http://purl.obolibrary.org/obo/UBERON_0004926,submucosa of cystic duct,cystic ductal submucosa +http://purl.obolibrary.org/obo/UBERON_0004927,submucosa of cecum,caecum submucosa +http://purl.obolibrary.org/obo/UBERON_0004927,submucosa of cecum,cecum submucosa +http://purl.obolibrary.org/obo/UBERON_0004927,submucosa of cecum,intestinum crassum caecum submucosa +http://purl.obolibrary.org/obo/UBERON_0004927,submucosa of cecum,submucosa of caecum +http://purl.obolibrary.org/obo/UBERON_0004927,submucosa of cecum,submucosa of intestinum crassum caecum +http://purl.obolibrary.org/obo/UBERON_0004928,submucosa of appendix,appendiceal submucosa +http://purl.obolibrary.org/obo/UBERON_0004928,submucosa of appendix,appendix submucosa +http://purl.obolibrary.org/obo/UBERON_0004928,submucosa of appendix,caecal appendix submucosa +http://purl.obolibrary.org/obo/UBERON_0004928,submucosa of appendix,submucosa of caecal appendix +http://purl.obolibrary.org/obo/UBERON_0004928,submucosa of appendix,submucosa of vermiform appendix +http://purl.obolibrary.org/obo/UBERON_0004928,submucosa of appendix,submucosa of vermix +http://purl.obolibrary.org/obo/UBERON_0004928,submucosa of appendix,vermiform appendix submucosa +http://purl.obolibrary.org/obo/UBERON_0004928,submucosa of appendix,vermix submucosa +http://purl.obolibrary.org/obo/UBERON_0004929,submucosa of ascending colon,ascending colon submucosa +http://purl.obolibrary.org/obo/UBERON_0004930,submucosa of transverse colon,transverse colon submucosa +http://purl.obolibrary.org/obo/UBERON_0004931,submucosa of descending colon,descending colon submucosa +http://purl.obolibrary.org/obo/UBERON_0004932,submucosa of sigmoid colon,sigmoid colon submucosa +http://purl.obolibrary.org/obo/UBERON_0004933,submucosa of fundus of stomach,fundus gastricus (ventricularis) submucosa +http://purl.obolibrary.org/obo/UBERON_0004933,submucosa of fundus of stomach,fundus of stomach submucosa +http://purl.obolibrary.org/obo/UBERON_0004933,submucosa of fundus of stomach,stomach fundus submucosa +http://purl.obolibrary.org/obo/UBERON_0004933,submucosa of fundus of stomach,submucosa of fundus gastricus (ventricularis) +http://purl.obolibrary.org/obo/UBERON_0004933,submucosa of fundus of stomach,submucosa of stomach fundus +http://purl.obolibrary.org/obo/UBERON_0004934,submucosa of body of stomach,body of stomach submucosa +http://purl.obolibrary.org/obo/UBERON_0004934,submucosa of body of stomach,corpus gastricum (ventriculare) submucosa +http://purl.obolibrary.org/obo/UBERON_0004934,submucosa of body of stomach,gastric body submucosa +http://purl.obolibrary.org/obo/UBERON_0004934,submucosa of body of stomach,stomach body submucosa +http://purl.obolibrary.org/obo/UBERON_0004934,submucosa of body of stomach,submucosa of corpus gastricum (ventriculare) +http://purl.obolibrary.org/obo/UBERON_0004934,submucosa of body of stomach,submucosa of gastric body +http://purl.obolibrary.org/obo/UBERON_0004934,submucosa of body of stomach,submucosa of stomach body +http://purl.obolibrary.org/obo/UBERON_0004935,submucosa of cardia of stomach,cardia of stomach submucosa +http://purl.obolibrary.org/obo/UBERON_0004935,submucosa of cardia of stomach,cardial part of stomach submucosa +http://purl.obolibrary.org/obo/UBERON_0004935,submucosa of cardia of stomach,gastric cardia submucosa +http://purl.obolibrary.org/obo/UBERON_0004935,submucosa of cardia of stomach,pars cardiaca (gaster) submucosa +http://purl.obolibrary.org/obo/UBERON_0004935,submucosa of cardia of stomach,stomach cardiac region submucosa +http://purl.obolibrary.org/obo/UBERON_0004935,submucosa of cardia of stomach,submucosa of cardial part of stomach +http://purl.obolibrary.org/obo/UBERON_0004935,submucosa of cardia of stomach,submucosa of gastric cardia +http://purl.obolibrary.org/obo/UBERON_0004935,submucosa of cardia of stomach,submucosa of pars cardiaca (gaster) +http://purl.obolibrary.org/obo/UBERON_0004935,submucosa of cardia of stomach,submucosa of stomach cardiac region +http://purl.obolibrary.org/obo/UBERON_0004936,submucosa of pyloric antrum,antrum of stomach submucosa +http://purl.obolibrary.org/obo/UBERON_0004936,submucosa of pyloric antrum,pyloric antrum submucosa +http://purl.obolibrary.org/obo/UBERON_0004936,submucosa of pyloric antrum,stomach pyloric antrum submucosa +http://purl.obolibrary.org/obo/UBERON_0004936,submucosa of pyloric antrum,submucosa of antrum of stomach +http://purl.obolibrary.org/obo/UBERON_0004936,submucosa of pyloric antrum,submucosa of stomach pyloric antrum +http://purl.obolibrary.org/obo/UBERON_0004937,submucosa of pylorus,pyloric part of stomach submucosa +http://purl.obolibrary.org/obo/UBERON_0004937,submucosa of pylorus,pyloric submucosa +http://purl.obolibrary.org/obo/UBERON_0004937,submucosa of pylorus,pylorus submucosa +http://purl.obolibrary.org/obo/UBERON_0004937,submucosa of pylorus,stomach pyloric region submucosa +http://purl.obolibrary.org/obo/UBERON_0004937,submucosa of pylorus,submucosa of pyloric part of stomach +http://purl.obolibrary.org/obo/UBERON_0004937,submucosa of pylorus,submucosa of stomach pyloric region +http://purl.obolibrary.org/obo/UBERON_0004938,submucosa of biliary tree,biliary tract submucosa +http://purl.obolibrary.org/obo/UBERON_0004938,submucosa of biliary tree,biliary tree submucosa +http://purl.obolibrary.org/obo/UBERON_0004938,submucosa of biliary tree,submucosa of biliary tract +http://purl.obolibrary.org/obo/UBERON_0004939,submucosa of common bile duct,common bile duct submucosa +http://purl.obolibrary.org/obo/UBERON_0004939,submucosa of common bile duct,common bile ductal submucosa +http://purl.obolibrary.org/obo/UBERON_0004939,submucosa of common bile duct,ductus choledochus (biliaris) submucosa +http://purl.obolibrary.org/obo/UBERON_0004939,submucosa of common bile duct,submucosa of ductus choledochus (biliaris) +http://purl.obolibrary.org/obo/UBERON_0004940,submucosa of common hepatic duct,common hepatic duct submucosa +http://purl.obolibrary.org/obo/UBERON_0004940,submucosa of common hepatic duct,common hepatic ductal submucosa +http://purl.obolibrary.org/obo/UBERON_0004940,submucosa of common hepatic duct,hepatic duct submucosa +http://purl.obolibrary.org/obo/UBERON_0004940,submucosa of common hepatic duct,submucosa of hepatic duct +http://purl.obolibrary.org/obo/UBERON_0004941,submucosa of right hepatic duct,right hepatic duct submucosa +http://purl.obolibrary.org/obo/UBERON_0004941,submucosa of right hepatic duct,right hepatic ductal submucosa +http://purl.obolibrary.org/obo/UBERON_0004942,submucosa of left hepatic duct,left hepatic duct submucosa +http://purl.obolibrary.org/obo/UBERON_0004942,submucosa of left hepatic duct,left hepatic ductal submucosa +http://purl.obolibrary.org/obo/UBERON_0004943,submucosa of urinary bladder,bladder submucosa +http://purl.obolibrary.org/obo/UBERON_0004943,submucosa of urinary bladder,submucosa of bladder +http://purl.obolibrary.org/obo/UBERON_0004943,submucosa of urinary bladder,tela submucosa (vesica urinaria) +http://purl.obolibrary.org/obo/UBERON_0004943,submucosa of urinary bladder,tela submucosa vesicae +http://purl.obolibrary.org/obo/UBERON_0004943,submucosa of urinary bladder,tela submucosa vesicae urinariae +http://purl.obolibrary.org/obo/UBERON_0004943,submucosa of urinary bladder,urinary bladder submucosa +http://purl.obolibrary.org/obo/UBERON_0004944,submucosa of trigone of urinary bladder,Lieutaud ' s trigone submucosa +http://purl.obolibrary.org/obo/UBERON_0004944,submucosa of trigone of urinary bladder,deep trigone submucosa +http://purl.obolibrary.org/obo/UBERON_0004944,submucosa of trigone of urinary bladder,submucosa of Lieutaud ' s trigone +http://purl.obolibrary.org/obo/UBERON_0004944,submucosa of trigone of urinary bladder,submucosa of deep trigone +http://purl.obolibrary.org/obo/UBERON_0004944,submucosa of trigone of urinary bladder,submucosa of trigone of bladder +http://purl.obolibrary.org/obo/UBERON_0004944,submucosa of trigone of urinary bladder,submucosa of urinary bladder trigone +http://purl.obolibrary.org/obo/UBERON_0004944,submucosa of trigone of urinary bladder,submucosa of vesical trigone +http://purl.obolibrary.org/obo/UBERON_0004944,submucosa of trigone of urinary bladder,trigone of bladder submucosa +http://purl.obolibrary.org/obo/UBERON_0004944,submucosa of trigone of urinary bladder,trigone of urinary bladder submucosa +http://purl.obolibrary.org/obo/UBERON_0004944,submucosa of trigone of urinary bladder,urinary bladder trigone submucosa +http://purl.obolibrary.org/obo/UBERON_0004944,submucosa of trigone of urinary bladder,vesical trigone submucosa +http://purl.obolibrary.org/obo/UBERON_0004945,submucosa of neck of urinary bladder,bladder neck submucosa +http://purl.obolibrary.org/obo/UBERON_0004945,submucosa of neck of urinary bladder,neck of bladder submucosa +http://purl.obolibrary.org/obo/UBERON_0004945,submucosa of neck of urinary bladder,neck of urinary bladder submucosa +http://purl.obolibrary.org/obo/UBERON_0004945,submucosa of neck of urinary bladder,submucosa of bladder neck +http://purl.obolibrary.org/obo/UBERON_0004945,submucosa of neck of urinary bladder,submucosa of neck of bladder +http://purl.obolibrary.org/obo/UBERON_0004945,submucosa of neck of urinary bladder,submucosa of urinary bladder neck +http://purl.obolibrary.org/obo/UBERON_0004945,submucosa of neck of urinary bladder,submucosa of vesical neck +http://purl.obolibrary.org/obo/UBERON_0004945,submucosa of neck of urinary bladder,urinary bladder neck submucosa +http://purl.obolibrary.org/obo/UBERON_0004945,submucosa of neck of urinary bladder,vesical neck submucosa +http://purl.obolibrary.org/obo/UBERON_0004946,submucosa of ileum,ileal submucosa +http://purl.obolibrary.org/obo/UBERON_0004946,submucosa of ileum,ileum submucosa +http://purl.obolibrary.org/obo/UBERON_0004947,submucosa of right main bronchus,right bronchus submucosa +http://purl.obolibrary.org/obo/UBERON_0004947,submucosa of right main bronchus,right main bronchial submucosa +http://purl.obolibrary.org/obo/UBERON_0004947,submucosa of right main bronchus,right main bronchus submucosa +http://purl.obolibrary.org/obo/UBERON_0004947,submucosa of right main bronchus,right principal bronchus submucosa +http://purl.obolibrary.org/obo/UBERON_0004947,submucosa of right main bronchus,submucosa of right bronchus +http://purl.obolibrary.org/obo/UBERON_0004947,submucosa of right main bronchus,submucosa of right principal bronchus +http://purl.obolibrary.org/obo/UBERON_0004948,submucosa of left main bronchus,left bronchus submucosa +http://purl.obolibrary.org/obo/UBERON_0004948,submucosa of left main bronchus,left main bronchial submucosa +http://purl.obolibrary.org/obo/UBERON_0004948,submucosa of left main bronchus,left main bronchus submucosa +http://purl.obolibrary.org/obo/UBERON_0004948,submucosa of left main bronchus,left principal bronchus submucosa +http://purl.obolibrary.org/obo/UBERON_0004948,submucosa of left main bronchus,submucosa of left bronchus +http://purl.obolibrary.org/obo/UBERON_0004948,submucosa of left main bronchus,submucosa of left principal bronchus +http://purl.obolibrary.org/obo/UBERON_0004949,submucosa of main bronchus,bronchus principalis submucosa +http://purl.obolibrary.org/obo/UBERON_0004949,submucosa of main bronchus,main bronchial submucosa +http://purl.obolibrary.org/obo/UBERON_0004949,submucosa of main bronchus,main bronchus submucosa +http://purl.obolibrary.org/obo/UBERON_0004949,submucosa of main bronchus,primary bronchus submucosa +http://purl.obolibrary.org/obo/UBERON_0004949,submucosa of main bronchus,principal bronchus submucosa +http://purl.obolibrary.org/obo/UBERON_0004949,submucosa of main bronchus,submucosa of bronchus principalis +http://purl.obolibrary.org/obo/UBERON_0004949,submucosa of main bronchus,submucosa of primary bronchus +http://purl.obolibrary.org/obo/UBERON_0004949,submucosa of main bronchus,submucosa of principal bronchus +http://purl.obolibrary.org/obo/UBERON_0004950,submucosa of lobar bronchus,lobar bronchial submucosa +http://purl.obolibrary.org/obo/UBERON_0004950,submucosa of lobar bronchus,lobar bronchus submucosa +http://purl.obolibrary.org/obo/UBERON_0004950,submucosa of lobar bronchus,secondary bronchus submucosa +http://purl.obolibrary.org/obo/UBERON_0004950,submucosa of lobar bronchus,submucosa of secondary bronchus +http://purl.obolibrary.org/obo/UBERON_0004951,submucosa of segmental bronchus,segmental bronchial submucosa +http://purl.obolibrary.org/obo/UBERON_0004951,submucosa of segmental bronchus,segmental bronchus submucosa +http://purl.obolibrary.org/obo/UBERON_0004951,submucosa of segmental bronchus,submucosa of tertiary bronchus +http://purl.obolibrary.org/obo/UBERON_0004951,submucosa of segmental bronchus,tertiary bronchus submucosa +http://purl.obolibrary.org/obo/UBERON_0004952,submucosa of bronchiole,bronchiole submucosa +http://purl.obolibrary.org/obo/UBERON_0004980,mucosa of ureter,mucosa of organ of ureter +http://purl.obolibrary.org/obo/UBERON_0004980,mucosa of ureter,mucosal layer of ureter +http://purl.obolibrary.org/obo/UBERON_0004980,mucosa of ureter,mucous membrane of ureter +http://purl.obolibrary.org/obo/UBERON_0004980,mucosa of ureter,organ mucosa of ureter +http://purl.obolibrary.org/obo/UBERON_0004980,mucosa of ureter,tunica mucosa (ureter) +http://purl.obolibrary.org/obo/UBERON_0004980,mucosa of ureter,tunica mucosa ureteris +http://purl.obolibrary.org/obo/UBERON_0004980,mucosa of ureter,ureter mucosa +http://purl.obolibrary.org/obo/UBERON_0004980,mucosa of ureter,ureter mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004980,mucosa of ureter,ureter mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004980,mucosa of ureter,ureter organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004980,mucosa of ureter,ureteral mucosa +http://purl.obolibrary.org/obo/UBERON_0004980,mucosa of ureter,ureteric mucosa +http://purl.obolibrary.org/obo/UBERON_0004982,mucosa of epiglottis,epiglottis mucosa +http://purl.obolibrary.org/obo/UBERON_0004982,mucosa of epiglottis,epiglottis mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004982,mucosa of epiglottis,epiglottis mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004982,mucosa of epiglottis,epiglottis organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004982,mucosa of epiglottis,mucosa of organ of epiglottis +http://purl.obolibrary.org/obo/UBERON_0004982,mucosa of epiglottis,mucous membrane of epiglottis +http://purl.obolibrary.org/obo/UBERON_0004982,mucosa of epiglottis,organ mucosa of epiglottis +http://purl.obolibrary.org/obo/UBERON_0004983,mucosa of vagina,mucosa of organ of vagina +http://purl.obolibrary.org/obo/UBERON_0004983,mucosa of vagina,mucous membrane of vagina +http://purl.obolibrary.org/obo/UBERON_0004983,mucosa of vagina,organ mucosa of vagina +http://purl.obolibrary.org/obo/UBERON_0004983,mucosa of vagina,tunica mucosa vaginae +http://purl.obolibrary.org/obo/UBERON_0004983,mucosa of vagina,vagina mucosa +http://purl.obolibrary.org/obo/UBERON_0004983,mucosa of vagina,vagina mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004983,mucosa of vagina,vagina mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004983,mucosa of vagina,vagina organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004983,mucosa of vagina,vaginal mucosa +http://purl.obolibrary.org/obo/UBERON_0004984,mucosa of seminal vesicle,mucosa of organ of seminal gland +http://purl.obolibrary.org/obo/UBERON_0004984,mucosa of seminal vesicle,mucosa of organ of seminal vesicle +http://purl.obolibrary.org/obo/UBERON_0004984,mucosa of seminal vesicle,mucosa of seminal gland +http://purl.obolibrary.org/obo/UBERON_0004984,mucosa of seminal vesicle,mucous membrane of seminal gland +http://purl.obolibrary.org/obo/UBERON_0004984,mucosa of seminal vesicle,mucous membrane of seminal vesicle +http://purl.obolibrary.org/obo/UBERON_0004984,mucosa of seminal vesicle,organ mucosa of seminal gland +http://purl.obolibrary.org/obo/UBERON_0004984,mucosa of seminal vesicle,organ mucosa of seminal vesicle +http://purl.obolibrary.org/obo/UBERON_0004984,mucosa of seminal vesicle,seminal gland mucosa +http://purl.obolibrary.org/obo/UBERON_0004984,mucosa of seminal vesicle,seminal gland mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004984,mucosa of seminal vesicle,seminal gland mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004984,mucosa of seminal vesicle,seminal gland organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004984,mucosa of seminal vesicle,seminal vesicle mucosa +http://purl.obolibrary.org/obo/UBERON_0004984,mucosa of seminal vesicle,seminal vesicle mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004984,mucosa of seminal vesicle,seminal vesicle mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004984,mucosa of seminal vesicle,seminal vesicle organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004984,mucosa of seminal vesicle,tunica mucosa glandulae vesiculosae +http://purl.obolibrary.org/obo/UBERON_0004985,mucosa of ejaculatory duct,ejaculatory duct mucosa +http://purl.obolibrary.org/obo/UBERON_0004985,mucosa of ejaculatory duct,ejaculatory duct mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004985,mucosa of ejaculatory duct,ejaculatory duct mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004985,mucosa of ejaculatory duct,ejaculatory duct organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004985,mucosa of ejaculatory duct,ejaculatory ductal mucosa +http://purl.obolibrary.org/obo/UBERON_0004985,mucosa of ejaculatory duct,mucosa of organ of ejaculatory duct +http://purl.obolibrary.org/obo/UBERON_0004985,mucosa of ejaculatory duct,mucous membrane of ejaculatory duct +http://purl.obolibrary.org/obo/UBERON_0004985,mucosa of ejaculatory duct,organ mucosa of ejaculatory duct +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,deferent duct mucosa +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,deferent duct mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,deferent duct mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,deferent duct organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,deferent ductal mucosa +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,ductus deferens mucosa +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,ductus deferens mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,ductus deferens mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,ductus deferens organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,mucosa of ductus deferens +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,mucosa of organ of deferent duct +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,mucosa of organ of ductus deferens +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,mucosa of organ of sperm duct +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,mucosa of organ of vas deferen +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,mucosa of organ of vas deferens +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,mucosa of sperm duct +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,mucosa of vas deferen +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,mucosa of vas deferens +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,mucous membrane of deferent duct +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,mucous membrane of ductus deferens +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,mucous membrane of sperm duct +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,mucous membrane of vas deferen +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,mucous membrane of vas deferens +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,organ mucosa of deferent duct +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,organ mucosa of ductus deferens +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,organ mucosa of sperm duct +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,organ mucosa of vas deferen +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,organ mucosa of vas deferens +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,sperm duct mucosa +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,sperm duct mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,sperm duct mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,sperm duct organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,tunica mucosa (ductus deferens) +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,tunica mucosa ductus deferentis +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,vas deferen mucosa +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,vas deferen mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,vas deferen mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,vas deferen organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,vas deferens mucosa +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,vas deferens mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,vas deferens mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004986,mucosa of deferent duct,vas deferens organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004987,mucosa of laryngopharynx,hypopharynx mucosa +http://purl.obolibrary.org/obo/UBERON_0004987,mucosa of laryngopharynx,hypopharynx mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004987,mucosa of laryngopharynx,hypopharynx mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004987,mucosa of laryngopharynx,hypopharynx organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004987,mucosa of laryngopharynx,laryngeal pharynx mucosa +http://purl.obolibrary.org/obo/UBERON_0004987,mucosa of laryngopharynx,laryngeal pharynx mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004987,mucosa of laryngopharynx,laryngeal pharynx mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004987,mucosa of laryngopharynx,laryngeal pharynx organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004987,mucosa of laryngopharynx,laryngopharynx mucosa +http://purl.obolibrary.org/obo/UBERON_0004987,mucosa of laryngopharynx,laryngopharynx mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004987,mucosa of laryngopharynx,laryngopharynx mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004987,mucosa of laryngopharynx,laryngopharynx organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004987,mucosa of laryngopharynx,mucosa of hypopharynx +http://purl.obolibrary.org/obo/UBERON_0004987,mucosa of laryngopharynx,mucosa of laryngeal pharynx +http://purl.obolibrary.org/obo/UBERON_0004987,mucosa of laryngopharynx,mucosa of organ of hypopharynx +http://purl.obolibrary.org/obo/UBERON_0004987,mucosa of laryngopharynx,mucosa of organ of laryngeal pharynx +http://purl.obolibrary.org/obo/UBERON_0004987,mucosa of laryngopharynx,mucosa of organ of laryngopharynx +http://purl.obolibrary.org/obo/UBERON_0004987,mucosa of laryngopharynx,mucous membrane of hypopharynx +http://purl.obolibrary.org/obo/UBERON_0004987,mucosa of laryngopharynx,mucous membrane of laryngeal pharynx +http://purl.obolibrary.org/obo/UBERON_0004987,mucosa of laryngopharynx,mucous membrane of laryngopharynx +http://purl.obolibrary.org/obo/UBERON_0004987,mucosa of laryngopharynx,organ mucosa of hypopharynx +http://purl.obolibrary.org/obo/UBERON_0004987,mucosa of laryngopharynx,organ mucosa of laryngeal pharynx +http://purl.obolibrary.org/obo/UBERON_0004987,mucosa of laryngopharynx,organ mucosa of laryngopharynx +http://purl.obolibrary.org/obo/UBERON_0004988,mucosa of cystic duct,cystic duct mucosa +http://purl.obolibrary.org/obo/UBERON_0004988,mucosa of cystic duct,cystic duct mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004988,mucosa of cystic duct,cystic duct mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004988,mucosa of cystic duct,cystic duct organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004988,mucosa of cystic duct,cystic ductal mucosa +http://purl.obolibrary.org/obo/UBERON_0004988,mucosa of cystic duct,mucosa of organ of cystic duct +http://purl.obolibrary.org/obo/UBERON_0004988,mucosa of cystic duct,mucous membrane of cystic duct +http://purl.obolibrary.org/obo/UBERON_0004988,mucosa of cystic duct,organ mucosa of cystic duct +http://purl.obolibrary.org/obo/UBERON_0004989,mucosa of appendix,appendiceal mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004989,mucosa of appendix,appendix mucosa +http://purl.obolibrary.org/obo/UBERON_0004989,mucosa of appendix,appendix mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004989,mucosa of appendix,appendix mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004989,mucosa of appendix,appendix organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004989,mucosa of appendix,caecal appendix mucosa +http://purl.obolibrary.org/obo/UBERON_0004989,mucosa of appendix,caecal appendix mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004989,mucosa of appendix,caecal appendix mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004989,mucosa of appendix,caecal appendix organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004989,mucosa of appendix,mucosa of caecal appendix +http://purl.obolibrary.org/obo/UBERON_0004989,mucosa of appendix,mucosa of organ of appendix +http://purl.obolibrary.org/obo/UBERON_0004989,mucosa of appendix,mucosa of organ of caecal appendix +http://purl.obolibrary.org/obo/UBERON_0004989,mucosa of appendix,mucosa of organ of vermiform appendix +http://purl.obolibrary.org/obo/UBERON_0004989,mucosa of appendix,mucosa of organ of vermix +http://purl.obolibrary.org/obo/UBERON_0004989,mucosa of appendix,mucosa of vermiform appendix +http://purl.obolibrary.org/obo/UBERON_0004989,mucosa of appendix,mucosa of vermix +http://purl.obolibrary.org/obo/UBERON_0004989,mucosa of appendix,mucous membrane of appendix +http://purl.obolibrary.org/obo/UBERON_0004989,mucosa of appendix,mucous membrane of caecal appendix +http://purl.obolibrary.org/obo/UBERON_0004989,mucosa of appendix,mucous membrane of vermiform appendix +http://purl.obolibrary.org/obo/UBERON_0004989,mucosa of appendix,mucous membrane of vermix +http://purl.obolibrary.org/obo/UBERON_0004989,mucosa of appendix,organ mucosa of appendix +http://purl.obolibrary.org/obo/UBERON_0004989,mucosa of appendix,organ mucosa of caecal appendix +http://purl.obolibrary.org/obo/UBERON_0004989,mucosa of appendix,organ mucosa of vermiform appendix +http://purl.obolibrary.org/obo/UBERON_0004989,mucosa of appendix,organ mucosa of vermix +http://purl.obolibrary.org/obo/UBERON_0004989,mucosa of appendix,vermiform appendix mucosa +http://purl.obolibrary.org/obo/UBERON_0004989,mucosa of appendix,vermiform appendix mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004989,mucosa of appendix,vermiform appendix mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004989,mucosa of appendix,vermiform appendix organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004989,mucosa of appendix,vermix mucosa +http://purl.obolibrary.org/obo/UBERON_0004989,mucosa of appendix,vermix mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004989,mucosa of appendix,vermix mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004989,mucosa of appendix,vermix organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004990,mucosa of ascending colon,ascending colon mucosa +http://purl.obolibrary.org/obo/UBERON_0004990,mucosa of ascending colon,ascending colon mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004990,mucosa of ascending colon,ascending colon mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004990,mucosa of ascending colon,ascending colon organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004990,mucosa of ascending colon,mucosa of organ of ascending colon +http://purl.obolibrary.org/obo/UBERON_0004990,mucosa of ascending colon,mucous membrane of ascending colon +http://purl.obolibrary.org/obo/UBERON_0004990,mucosa of ascending colon,organ mucosa of ascending colon +http://purl.obolibrary.org/obo/UBERON_0004991,mucosa of transverse colon,mucosa of organ of transverse colon +http://purl.obolibrary.org/obo/UBERON_0004991,mucosa of transverse colon,mucous membrane of transverse colon +http://purl.obolibrary.org/obo/UBERON_0004991,mucosa of transverse colon,organ mucosa of transverse colon +http://purl.obolibrary.org/obo/UBERON_0004991,mucosa of transverse colon,transverse colon mucosa +http://purl.obolibrary.org/obo/UBERON_0004991,mucosa of transverse colon,transverse colon mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004991,mucosa of transverse colon,transverse colon mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004991,mucosa of transverse colon,transverse colon organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004992,mucosa of descending colon,descending colon mucosa +http://purl.obolibrary.org/obo/UBERON_0004992,mucosa of descending colon,descending colon mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004992,mucosa of descending colon,descending colon mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004992,mucosa of descending colon,descending colon organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004992,mucosa of descending colon,mucosa of organ of descending colon +http://purl.obolibrary.org/obo/UBERON_0004992,mucosa of descending colon,mucous membrane of descending colon +http://purl.obolibrary.org/obo/UBERON_0004992,mucosa of descending colon,organ mucosa of descending colon +http://purl.obolibrary.org/obo/UBERON_0004993,mucosa of sigmoid colon,mucosa of organ of sigmoid colon +http://purl.obolibrary.org/obo/UBERON_0004993,mucosa of sigmoid colon,mucous membrane of sigmoid colon +http://purl.obolibrary.org/obo/UBERON_0004993,mucosa of sigmoid colon,organ mucosa of sigmoid colon +http://purl.obolibrary.org/obo/UBERON_0004993,mucosa of sigmoid colon,sigmoid colon mucosa +http://purl.obolibrary.org/obo/UBERON_0004993,mucosa of sigmoid colon,sigmoid colon mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004993,mucosa of sigmoid colon,sigmoid colon mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004993,mucosa of sigmoid colon,sigmoid colon organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004994,mucosa of fundus of stomach,fundus gastricus (ventricularis) mucosa +http://purl.obolibrary.org/obo/UBERON_0004994,mucosa of fundus of stomach,fundus gastricus (ventricularis) mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004994,mucosa of fundus of stomach,fundus gastricus (ventricularis) mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004994,mucosa of fundus of stomach,fundus gastricus (ventricularis) organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004994,mucosa of fundus of stomach,fundus of stomach mucosa +http://purl.obolibrary.org/obo/UBERON_0004994,mucosa of fundus of stomach,fundus of stomach mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004994,mucosa of fundus of stomach,fundus of stomach mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004994,mucosa of fundus of stomach,fundus of stomach organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004994,mucosa of fundus of stomach,mucosa of fundus gastricus (ventricularis) +http://purl.obolibrary.org/obo/UBERON_0004994,mucosa of fundus of stomach,mucosa of organ of fundus gastricus (ventricularis) +http://purl.obolibrary.org/obo/UBERON_0004994,mucosa of fundus of stomach,mucosa of organ of fundus of stomach +http://purl.obolibrary.org/obo/UBERON_0004994,mucosa of fundus of stomach,mucosa of organ of stomach fundus +http://purl.obolibrary.org/obo/UBERON_0004994,mucosa of fundus of stomach,mucosa of stomach fundus +http://purl.obolibrary.org/obo/UBERON_0004994,mucosa of fundus of stomach,mucous membrane of fundus gastricus (ventricularis) +http://purl.obolibrary.org/obo/UBERON_0004994,mucosa of fundus of stomach,mucous membrane of fundus of stomach +http://purl.obolibrary.org/obo/UBERON_0004994,mucosa of fundus of stomach,mucous membrane of stomach fundus +http://purl.obolibrary.org/obo/UBERON_0004994,mucosa of fundus of stomach,organ mucosa of fundus gastricus (ventricularis) +http://purl.obolibrary.org/obo/UBERON_0004994,mucosa of fundus of stomach,organ mucosa of fundus of stomach +http://purl.obolibrary.org/obo/UBERON_0004994,mucosa of fundus of stomach,organ mucosa of stomach fundus +http://purl.obolibrary.org/obo/UBERON_0004994,mucosa of fundus of stomach,stomach fundus mucosa +http://purl.obolibrary.org/obo/UBERON_0004994,mucosa of fundus of stomach,stomach fundus mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004994,mucosa of fundus of stomach,stomach fundus mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004994,mucosa of fundus of stomach,stomach fundus organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004995,mucosa of body of stomach,body of stomach mucosa +http://purl.obolibrary.org/obo/UBERON_0004995,mucosa of body of stomach,body of stomach mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004995,mucosa of body of stomach,body of stomach mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004995,mucosa of body of stomach,body of stomach organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004995,mucosa of body of stomach,corpus gastricum (ventriculare) mucosa +http://purl.obolibrary.org/obo/UBERON_0004995,mucosa of body of stomach,corpus gastricum (ventriculare) mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004995,mucosa of body of stomach,corpus gastricum (ventriculare) mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004995,mucosa of body of stomach,corpus gastricum (ventriculare) organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004995,mucosa of body of stomach,gastric body mucosa +http://purl.obolibrary.org/obo/UBERON_0004995,mucosa of body of stomach,gastric body mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004995,mucosa of body of stomach,gastric body mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004995,mucosa of body of stomach,gastric body organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004995,mucosa of body of stomach,mucosa of corpus gastricum (ventriculare) +http://purl.obolibrary.org/obo/UBERON_0004995,mucosa of body of stomach,mucosa of gastric body +http://purl.obolibrary.org/obo/UBERON_0004995,mucosa of body of stomach,mucosa of organ of body of stomach +http://purl.obolibrary.org/obo/UBERON_0004995,mucosa of body of stomach,mucosa of organ of corpus gastricum (ventriculare) +http://purl.obolibrary.org/obo/UBERON_0004995,mucosa of body of stomach,mucosa of organ of gastric body +http://purl.obolibrary.org/obo/UBERON_0004995,mucosa of body of stomach,mucosa of organ of stomach body +http://purl.obolibrary.org/obo/UBERON_0004995,mucosa of body of stomach,mucosa of stomach body +http://purl.obolibrary.org/obo/UBERON_0004995,mucosa of body of stomach,mucous membrane of body of stomach +http://purl.obolibrary.org/obo/UBERON_0004995,mucosa of body of stomach,mucous membrane of corpus gastricum (ventriculare) +http://purl.obolibrary.org/obo/UBERON_0004995,mucosa of body of stomach,mucous membrane of gastric body +http://purl.obolibrary.org/obo/UBERON_0004995,mucosa of body of stomach,mucous membrane of stomach body +http://purl.obolibrary.org/obo/UBERON_0004995,mucosa of body of stomach,organ mucosa of body of stomach +http://purl.obolibrary.org/obo/UBERON_0004995,mucosa of body of stomach,organ mucosa of corpus gastricum (ventriculare) +http://purl.obolibrary.org/obo/UBERON_0004995,mucosa of body of stomach,organ mucosa of gastric body +http://purl.obolibrary.org/obo/UBERON_0004995,mucosa of body of stomach,organ mucosa of stomach body +http://purl.obolibrary.org/obo/UBERON_0004995,mucosa of body of stomach,stomach body mucosa +http://purl.obolibrary.org/obo/UBERON_0004995,mucosa of body of stomach,stomach body mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004995,mucosa of body of stomach,stomach body mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004995,mucosa of body of stomach,stomach body organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004996,mucosa of cardia of stomach,cardia of stomach mucosa +http://purl.obolibrary.org/obo/UBERON_0004996,mucosa of cardia of stomach,cardia of stomach mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004996,mucosa of cardia of stomach,cardia of stomach mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004996,mucosa of cardia of stomach,cardia of stomach organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004996,mucosa of cardia of stomach,cardial part of stomach mucosa +http://purl.obolibrary.org/obo/UBERON_0004996,mucosa of cardia of stomach,cardial part of stomach mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004996,mucosa of cardia of stomach,cardial part of stomach mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004996,mucosa of cardia of stomach,cardial part of stomach organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004996,mucosa of cardia of stomach,gastric cardia mucosa +http://purl.obolibrary.org/obo/UBERON_0004996,mucosa of cardia of stomach,gastric cardia mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004996,mucosa of cardia of stomach,gastric cardia mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004996,mucosa of cardia of stomach,gastric cardia organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004996,mucosa of cardia of stomach,mucosa of cardial part of stomach +http://purl.obolibrary.org/obo/UBERON_0004996,mucosa of cardia of stomach,mucosa of gastric cardia +http://purl.obolibrary.org/obo/UBERON_0004996,mucosa of cardia of stomach,mucosa of organ of cardia of stomach +http://purl.obolibrary.org/obo/UBERON_0004996,mucosa of cardia of stomach,mucosa of organ of cardial part of stomach +http://purl.obolibrary.org/obo/UBERON_0004996,mucosa of cardia of stomach,mucosa of organ of gastric cardia +http://purl.obolibrary.org/obo/UBERON_0004996,mucosa of cardia of stomach,mucosa of organ of pars cardiaca (gaster) +http://purl.obolibrary.org/obo/UBERON_0004996,mucosa of cardia of stomach,mucosa of organ of stomach cardiac region +http://purl.obolibrary.org/obo/UBERON_0004996,mucosa of cardia of stomach,mucosa of pars cardiaca (gaster) +http://purl.obolibrary.org/obo/UBERON_0004996,mucosa of cardia of stomach,mucosa of stomach cardiac region +http://purl.obolibrary.org/obo/UBERON_0004996,mucosa of cardia of stomach,mucous membrane of cardia of stomach +http://purl.obolibrary.org/obo/UBERON_0004996,mucosa of cardia of stomach,mucous membrane of cardial part of stomach +http://purl.obolibrary.org/obo/UBERON_0004996,mucosa of cardia of stomach,mucous membrane of gastric cardia +http://purl.obolibrary.org/obo/UBERON_0004996,mucosa of cardia of stomach,mucous membrane of pars cardiaca (gaster) +http://purl.obolibrary.org/obo/UBERON_0004996,mucosa of cardia of stomach,mucous membrane of stomach cardiac region +http://purl.obolibrary.org/obo/UBERON_0004996,mucosa of cardia of stomach,organ mucosa of cardia of stomach +http://purl.obolibrary.org/obo/UBERON_0004996,mucosa of cardia of stomach,organ mucosa of cardial part of stomach +http://purl.obolibrary.org/obo/UBERON_0004996,mucosa of cardia of stomach,organ mucosa of gastric cardia +http://purl.obolibrary.org/obo/UBERON_0004996,mucosa of cardia of stomach,organ mucosa of pars cardiaca (gaster) +http://purl.obolibrary.org/obo/UBERON_0004996,mucosa of cardia of stomach,organ mucosa of stomach cardiac region +http://purl.obolibrary.org/obo/UBERON_0004996,mucosa of cardia of stomach,pars cardiaca (gaster) mucosa +http://purl.obolibrary.org/obo/UBERON_0004996,mucosa of cardia of stomach,pars cardiaca (gaster) mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004996,mucosa of cardia of stomach,pars cardiaca (gaster) mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004996,mucosa of cardia of stomach,pars cardiaca (gaster) organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004996,mucosa of cardia of stomach,stomach cardiac region mucosa +http://purl.obolibrary.org/obo/UBERON_0004996,mucosa of cardia of stomach,stomach cardiac region mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004996,mucosa of cardia of stomach,stomach cardiac region mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004996,mucosa of cardia of stomach,stomach cardiac region organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004997,mucosa of pyloric antrum,antral mucosa +http://purl.obolibrary.org/obo/UBERON_0004997,mucosa of pyloric antrum,antrum of stomach mucosa +http://purl.obolibrary.org/obo/UBERON_0004997,mucosa of pyloric antrum,antrum of stomach mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004997,mucosa of pyloric antrum,antrum of stomach mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004997,mucosa of pyloric antrum,antrum of stomach organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004997,mucosa of pyloric antrum,mucosa of antrum of stomach +http://purl.obolibrary.org/obo/UBERON_0004997,mucosa of pyloric antrum,mucosa of organ of antrum of stomach +http://purl.obolibrary.org/obo/UBERON_0004997,mucosa of pyloric antrum,mucosa of organ of pyloric antrum +http://purl.obolibrary.org/obo/UBERON_0004997,mucosa of pyloric antrum,mucosa of organ of stomach pyloric antrum +http://purl.obolibrary.org/obo/UBERON_0004997,mucosa of pyloric antrum,mucosa of stomach pyloric antrum +http://purl.obolibrary.org/obo/UBERON_0004997,mucosa of pyloric antrum,mucous membrane of antrum of stomach +http://purl.obolibrary.org/obo/UBERON_0004997,mucosa of pyloric antrum,mucous membrane of pyloric antrum +http://purl.obolibrary.org/obo/UBERON_0004997,mucosa of pyloric antrum,mucous membrane of stomach pyloric antrum +http://purl.obolibrary.org/obo/UBERON_0004997,mucosa of pyloric antrum,organ mucosa of antrum of stomach +http://purl.obolibrary.org/obo/UBERON_0004997,mucosa of pyloric antrum,organ mucosa of pyloric antrum +http://purl.obolibrary.org/obo/UBERON_0004997,mucosa of pyloric antrum,organ mucosa of stomach pyloric antrum +http://purl.obolibrary.org/obo/UBERON_0004997,mucosa of pyloric antrum,pyloric antrum mucosa +http://purl.obolibrary.org/obo/UBERON_0004997,mucosa of pyloric antrum,pyloric antrum mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004997,mucosa of pyloric antrum,pyloric antrum mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004997,mucosa of pyloric antrum,pyloric antrum organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004997,mucosa of pyloric antrum,stomach pyloric antrum mucosa +http://purl.obolibrary.org/obo/UBERON_0004997,mucosa of pyloric antrum,stomach pyloric antrum mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004997,mucosa of pyloric antrum,stomach pyloric antrum mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004997,mucosa of pyloric antrum,stomach pyloric antrum organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004998,mucosa of pylorus,mucosa of organ of pyloric part of stomach +http://purl.obolibrary.org/obo/UBERON_0004998,mucosa of pylorus,mucosa of organ of pylorus +http://purl.obolibrary.org/obo/UBERON_0004998,mucosa of pylorus,mucosa of organ of stomach pyloric region +http://purl.obolibrary.org/obo/UBERON_0004998,mucosa of pylorus,mucosa of pyloric part of stomach +http://purl.obolibrary.org/obo/UBERON_0004998,mucosa of pylorus,mucosa of stomach pyloric region +http://purl.obolibrary.org/obo/UBERON_0004998,mucosa of pylorus,mucous membrane of pyloric part of stomach +http://purl.obolibrary.org/obo/UBERON_0004998,mucosa of pylorus,mucous membrane of pylorus +http://purl.obolibrary.org/obo/UBERON_0004998,mucosa of pylorus,mucous membrane of stomach pyloric region +http://purl.obolibrary.org/obo/UBERON_0004998,mucosa of pylorus,organ mucosa of pyloric part of stomach +http://purl.obolibrary.org/obo/UBERON_0004998,mucosa of pylorus,organ mucosa of pylorus +http://purl.obolibrary.org/obo/UBERON_0004998,mucosa of pylorus,organ mucosa of stomach pyloric region +http://purl.obolibrary.org/obo/UBERON_0004998,mucosa of pylorus,pyloric part of stomach mucosa +http://purl.obolibrary.org/obo/UBERON_0004998,mucosa of pylorus,pyloric part of stomach mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004998,mucosa of pylorus,pyloric part of stomach mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004998,mucosa of pylorus,pyloric part of stomach organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004998,mucosa of pylorus,pylorus mucosa +http://purl.obolibrary.org/obo/UBERON_0004998,mucosa of pylorus,pylorus mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004998,mucosa of pylorus,pylorus mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004998,mucosa of pylorus,pylorus organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004998,mucosa of pylorus,stomach pyloric region mucosa +http://purl.obolibrary.org/obo/UBERON_0004998,mucosa of pylorus,stomach pyloric region mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004998,mucosa of pylorus,stomach pyloric region mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004998,mucosa of pylorus,stomach pyloric region organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004999,mucosa of biliary tree,biliary tract mucosa +http://purl.obolibrary.org/obo/UBERON_0004999,mucosa of biliary tree,biliary tract mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004999,mucosa of biliary tree,biliary tract mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004999,mucosa of biliary tree,biliary tract organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004999,mucosa of biliary tree,biliary tree mucosa +http://purl.obolibrary.org/obo/UBERON_0004999,mucosa of biliary tree,biliary tree mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0004999,mucosa of biliary tree,biliary tree mucous membrane +http://purl.obolibrary.org/obo/UBERON_0004999,mucosa of biliary tree,biliary tree organ mucosa +http://purl.obolibrary.org/obo/UBERON_0004999,mucosa of biliary tree,mucosa of biliary tract +http://purl.obolibrary.org/obo/UBERON_0004999,mucosa of biliary tree,mucosa of organ of biliary tract +http://purl.obolibrary.org/obo/UBERON_0004999,mucosa of biliary tree,mucosa of organ of biliary tree +http://purl.obolibrary.org/obo/UBERON_0004999,mucosa of biliary tree,mucous membrane of biliary tract +http://purl.obolibrary.org/obo/UBERON_0004999,mucosa of biliary tree,mucous membrane of biliary tree +http://purl.obolibrary.org/obo/UBERON_0004999,mucosa of biliary tree,organ mucosa of biliary tract +http://purl.obolibrary.org/obo/UBERON_0004999,mucosa of biliary tree,organ mucosa of biliary tree +http://purl.obolibrary.org/obo/UBERON_0005000,mucosa of common bile duct,common bile duct mucosa +http://purl.obolibrary.org/obo/UBERON_0005000,mucosa of common bile duct,common bile duct mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005000,mucosa of common bile duct,common bile duct mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005000,mucosa of common bile duct,common bile duct organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005000,mucosa of common bile duct,common bile ductal mucosa +http://purl.obolibrary.org/obo/UBERON_0005000,mucosa of common bile duct,ductus choledochus (biliaris) mucosa +http://purl.obolibrary.org/obo/UBERON_0005000,mucosa of common bile duct,ductus choledochus (biliaris) mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005000,mucosa of common bile duct,ductus choledochus (biliaris) mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005000,mucosa of common bile duct,ductus choledochus (biliaris) organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005000,mucosa of common bile duct,mucosa of ductus choledochus (biliaris) +http://purl.obolibrary.org/obo/UBERON_0005000,mucosa of common bile duct,mucosa of organ of common bile duct +http://purl.obolibrary.org/obo/UBERON_0005000,mucosa of common bile duct,mucosa of organ of ductus choledochus (biliaris) +http://purl.obolibrary.org/obo/UBERON_0005000,mucosa of common bile duct,mucous membrane of common bile duct +http://purl.obolibrary.org/obo/UBERON_0005000,mucosa of common bile duct,mucous membrane of ductus choledochus (biliaris) +http://purl.obolibrary.org/obo/UBERON_0005000,mucosa of common bile duct,organ mucosa of common bile duct +http://purl.obolibrary.org/obo/UBERON_0005000,mucosa of common bile duct,organ mucosa of ductus choledochus (biliaris) +http://purl.obolibrary.org/obo/UBERON_0005001,mucosa of common hepatic duct,common hepatic duct mucosa +http://purl.obolibrary.org/obo/UBERON_0005001,mucosa of common hepatic duct,common hepatic duct mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005001,mucosa of common hepatic duct,common hepatic duct mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005001,mucosa of common hepatic duct,common hepatic duct organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005001,mucosa of common hepatic duct,common hepatic ductal mucosa +http://purl.obolibrary.org/obo/UBERON_0005001,mucosa of common hepatic duct,hepatic duct mucosa +http://purl.obolibrary.org/obo/UBERON_0005001,mucosa of common hepatic duct,hepatic duct mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005001,mucosa of common hepatic duct,hepatic duct mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005001,mucosa of common hepatic duct,hepatic duct organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005001,mucosa of common hepatic duct,mucosa of hepatic duct +http://purl.obolibrary.org/obo/UBERON_0005001,mucosa of common hepatic duct,mucosa of organ of common hepatic duct +http://purl.obolibrary.org/obo/UBERON_0005001,mucosa of common hepatic duct,mucosa of organ of hepatic duct +http://purl.obolibrary.org/obo/UBERON_0005001,mucosa of common hepatic duct,mucous membrane of common hepatic duct +http://purl.obolibrary.org/obo/UBERON_0005001,mucosa of common hepatic duct,mucous membrane of hepatic duct +http://purl.obolibrary.org/obo/UBERON_0005001,mucosa of common hepatic duct,organ mucosa of common hepatic duct +http://purl.obolibrary.org/obo/UBERON_0005001,mucosa of common hepatic duct,organ mucosa of hepatic duct +http://purl.obolibrary.org/obo/UBERON_0005002,mucosa of right hepatic duct,mucosa of organ of right hepatic duct +http://purl.obolibrary.org/obo/UBERON_0005002,mucosa of right hepatic duct,mucous membrane of right hepatic duct +http://purl.obolibrary.org/obo/UBERON_0005002,mucosa of right hepatic duct,organ mucosa of right hepatic duct +http://purl.obolibrary.org/obo/UBERON_0005002,mucosa of right hepatic duct,right hepatic duct mucosa +http://purl.obolibrary.org/obo/UBERON_0005002,mucosa of right hepatic duct,right hepatic duct mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005002,mucosa of right hepatic duct,right hepatic duct mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005002,mucosa of right hepatic duct,right hepatic duct organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005002,mucosa of right hepatic duct,right hepatic ductal mucosa +http://purl.obolibrary.org/obo/UBERON_0005003,mucosa of left hepatic duct,left hepatic duct mucosa +http://purl.obolibrary.org/obo/UBERON_0005003,mucosa of left hepatic duct,left hepatic duct mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005003,mucosa of left hepatic duct,left hepatic duct mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005003,mucosa of left hepatic duct,left hepatic duct organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005003,mucosa of left hepatic duct,left hepatic ductal mucosa +http://purl.obolibrary.org/obo/UBERON_0005003,mucosa of left hepatic duct,mucosa of organ of left hepatic duct +http://purl.obolibrary.org/obo/UBERON_0005003,mucosa of left hepatic duct,mucous membrane of left hepatic duct +http://purl.obolibrary.org/obo/UBERON_0005003,mucosa of left hepatic duct,organ mucosa of left hepatic duct +http://purl.obolibrary.org/obo/UBERON_0005004,mucosa of right ureter,mucosa of organ of right ureter +http://purl.obolibrary.org/obo/UBERON_0005004,mucosa of right ureter,mucous membrane of right ureter +http://purl.obolibrary.org/obo/UBERON_0005004,mucosa of right ureter,organ mucosa of right ureter +http://purl.obolibrary.org/obo/UBERON_0005004,mucosa of right ureter,right ureter mucosa +http://purl.obolibrary.org/obo/UBERON_0005004,mucosa of right ureter,right ureter mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005004,mucosa of right ureter,right ureter mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005004,mucosa of right ureter,right ureter organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005004,mucosa of right ureter,right ureteral mucosa +http://purl.obolibrary.org/obo/UBERON_0005005,mucosa of left ureter,left ureter mucosa +http://purl.obolibrary.org/obo/UBERON_0005005,mucosa of left ureter,left ureter mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005005,mucosa of left ureter,left ureter mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005005,mucosa of left ureter,left ureter organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005005,mucosa of left ureter,left ureteral mucosa +http://purl.obolibrary.org/obo/UBERON_0005005,mucosa of left ureter,mucosa of organ of left ureter +http://purl.obolibrary.org/obo/UBERON_0005005,mucosa of left ureter,mucous membrane of left ureter +http://purl.obolibrary.org/obo/UBERON_0005005,mucosa of left ureter,organ mucosa of left ureter +http://purl.obolibrary.org/obo/UBERON_0005006,mucosa of renal pelvis,kidney pelvis mucosa +http://purl.obolibrary.org/obo/UBERON_0005006,mucosa of renal pelvis,kidney pelvis mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005006,mucosa of renal pelvis,kidney pelvis mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005006,mucosa of renal pelvis,kidney pelvis organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005006,mucosa of renal pelvis,mucosa of kidney pelvis +http://purl.obolibrary.org/obo/UBERON_0005006,mucosa of renal pelvis,mucosa of organ of kidney pelvis +http://purl.obolibrary.org/obo/UBERON_0005006,mucosa of renal pelvis,mucosa of organ of pelvis of ureter +http://purl.obolibrary.org/obo/UBERON_0005006,mucosa of renal pelvis,mucosa of organ of renal pelvis +http://purl.obolibrary.org/obo/UBERON_0005006,mucosa of renal pelvis,mucosa of pelvis of ureter +http://purl.obolibrary.org/obo/UBERON_0005006,mucosa of renal pelvis,mucous membrane of kidney pelvis +http://purl.obolibrary.org/obo/UBERON_0005006,mucosa of renal pelvis,mucous membrane of pelvis of ureter +http://purl.obolibrary.org/obo/UBERON_0005006,mucosa of renal pelvis,mucous membrane of renal pelvis +http://purl.obolibrary.org/obo/UBERON_0005006,mucosa of renal pelvis,organ mucosa of kidney pelvis +http://purl.obolibrary.org/obo/UBERON_0005006,mucosa of renal pelvis,organ mucosa of pelvis of ureter +http://purl.obolibrary.org/obo/UBERON_0005006,mucosa of renal pelvis,organ mucosa of renal pelvis +http://purl.obolibrary.org/obo/UBERON_0005006,mucosa of renal pelvis,pelvis of ureter mucosa +http://purl.obolibrary.org/obo/UBERON_0005006,mucosa of renal pelvis,pelvis of ureter mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005006,mucosa of renal pelvis,pelvis of ureter mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005006,mucosa of renal pelvis,pelvis of ureter organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005006,mucosa of renal pelvis,renal pelvic mucosa +http://purl.obolibrary.org/obo/UBERON_0005006,mucosa of renal pelvis,renal pelvis mucosa +http://purl.obolibrary.org/obo/UBERON_0005006,mucosa of renal pelvis,renal pelvis mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005006,mucosa of renal pelvis,renal pelvis mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005006,mucosa of renal pelvis,renal pelvis organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005006,mucosa of renal pelvis,tunica mucosa pelvis renalis +http://purl.obolibrary.org/obo/UBERON_0005007,mucosa of major calyx,major calix mucosa +http://purl.obolibrary.org/obo/UBERON_0005007,mucosa of major calyx,major calix mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005007,mucosa of major calyx,major calix mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005007,mucosa of major calyx,major calix organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005007,mucosa of major calyx,major calyx mucosa +http://purl.obolibrary.org/obo/UBERON_0005007,mucosa of major calyx,major calyx mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005007,mucosa of major calyx,major calyx mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005007,mucosa of major calyx,major calyx organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005007,mucosa of major calyx,mucosa of major calix +http://purl.obolibrary.org/obo/UBERON_0005007,mucosa of major calyx,mucosa of organ of major calix +http://purl.obolibrary.org/obo/UBERON_0005007,mucosa of major calyx,mucosa of organ of major calyx +http://purl.obolibrary.org/obo/UBERON_0005007,mucosa of major calyx,mucous membrane of major calix +http://purl.obolibrary.org/obo/UBERON_0005007,mucosa of major calyx,mucous membrane of major calyx +http://purl.obolibrary.org/obo/UBERON_0005007,mucosa of major calyx,organ mucosa of major calix +http://purl.obolibrary.org/obo/UBERON_0005007,mucosa of major calyx,organ mucosa of major calyx +http://purl.obolibrary.org/obo/UBERON_0005008,mucosa of minor calyx,minor calix mucosa +http://purl.obolibrary.org/obo/UBERON_0005008,mucosa of minor calyx,minor calix mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005008,mucosa of minor calyx,minor calix mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005008,mucosa of minor calyx,minor calix organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005008,mucosa of minor calyx,minor calyx mucosa +http://purl.obolibrary.org/obo/UBERON_0005008,mucosa of minor calyx,minor calyx mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005008,mucosa of minor calyx,minor calyx mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005008,mucosa of minor calyx,minor calyx organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005008,mucosa of minor calyx,mucosa of minor calix +http://purl.obolibrary.org/obo/UBERON_0005008,mucosa of minor calyx,mucosa of organ of minor calix +http://purl.obolibrary.org/obo/UBERON_0005008,mucosa of minor calyx,mucosa of organ of minor calyx +http://purl.obolibrary.org/obo/UBERON_0005008,mucosa of minor calyx,mucous membrane of minor calix +http://purl.obolibrary.org/obo/UBERON_0005008,mucosa of minor calyx,mucous membrane of minor calyx +http://purl.obolibrary.org/obo/UBERON_0005008,mucosa of minor calyx,organ mucosa of minor calix +http://purl.obolibrary.org/obo/UBERON_0005008,mucosa of minor calyx,organ mucosa of minor calyx +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,Lieutaud ' s trigone mucosa +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,Lieutaud ' s trigone mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,Lieutaud ' s trigone mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,Lieutaud ' s trigone organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,deep trigone mucosa +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,deep trigone mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,deep trigone mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,deep trigone organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,mucosa of Lieutaud ' s trigone +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,mucosa of deep trigone +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,mucosa of organ of Lieutaud ' s trigone +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,mucosa of organ of deep trigone +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,mucosa of organ of trigone of bladder +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,mucosa of organ of trigone of urinary bladder +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,mucosa of organ of urinary bladder trigone +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,mucosa of organ of vesical trigone +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,mucosa of trigone of bladder +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,mucosa of urinary bladder trigone +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,mucosa of vesical trigone +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,mucous membrane of Lieutaud ' s trigone +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,mucous membrane of deep trigone +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,mucous membrane of trigone of bladder +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,mucous membrane of trigone of urinary bladder +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,mucous membrane of urinary bladder trigone +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,mucous membrane of vesical trigone +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,organ mucosa of Lieutaud ' s trigone +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,organ mucosa of deep trigone +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,organ mucosa of trigone of bladder +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,organ mucosa of trigone of urinary bladder +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,organ mucosa of urinary bladder trigone +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,organ mucosa of vesical trigone +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,trigone of bladder mucosa +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,trigone of bladder mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,trigone of bladder mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,trigone of bladder organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,trigone of urinary bladder mucosa +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,trigone of urinary bladder mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,trigone of urinary bladder mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,trigone of urinary bladder organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,urinary bladder trigone mucosa +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,urinary bladder trigone mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,urinary bladder trigone mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,urinary bladder trigone organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,vesical trigone mucosa +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,vesical trigone mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,vesical trigone mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder,vesical trigone organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005010,mucosa of neck of urinary bladder,bladder neck mucosa +http://purl.obolibrary.org/obo/UBERON_0005010,mucosa of neck of urinary bladder,bladder neck mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005010,mucosa of neck of urinary bladder,bladder neck mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005010,mucosa of neck of urinary bladder,bladder neck organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005010,mucosa of neck of urinary bladder,mucosa of bladder neck +http://purl.obolibrary.org/obo/UBERON_0005010,mucosa of neck of urinary bladder,mucosa of neck of bladder +http://purl.obolibrary.org/obo/UBERON_0005010,mucosa of neck of urinary bladder,mucosa of organ of bladder neck +http://purl.obolibrary.org/obo/UBERON_0005010,mucosa of neck of urinary bladder,mucosa of organ of neck of bladder +http://purl.obolibrary.org/obo/UBERON_0005010,mucosa of neck of urinary bladder,mucosa of organ of neck of urinary bladder +http://purl.obolibrary.org/obo/UBERON_0005010,mucosa of neck of urinary bladder,mucosa of organ of urinary bladder neck +http://purl.obolibrary.org/obo/UBERON_0005010,mucosa of neck of urinary bladder,mucosa of organ of vesical neck +http://purl.obolibrary.org/obo/UBERON_0005010,mucosa of neck of urinary bladder,mucosa of urinary bladder neck +http://purl.obolibrary.org/obo/UBERON_0005010,mucosa of neck of urinary bladder,mucosa of vesical neck +http://purl.obolibrary.org/obo/UBERON_0005010,mucosa of neck of urinary bladder,mucous membrane of bladder neck +http://purl.obolibrary.org/obo/UBERON_0005010,mucosa of neck of urinary bladder,mucous membrane of neck of bladder +http://purl.obolibrary.org/obo/UBERON_0005010,mucosa of neck of urinary bladder,mucous membrane of neck of urinary bladder +http://purl.obolibrary.org/obo/UBERON_0005010,mucosa of neck of urinary bladder,mucous membrane of urinary bladder neck +http://purl.obolibrary.org/obo/UBERON_0005010,mucosa of neck of urinary bladder,mucous membrane of vesical neck +http://purl.obolibrary.org/obo/UBERON_0005010,mucosa of neck of urinary bladder,neck of bladder mucosa +http://purl.obolibrary.org/obo/UBERON_0005010,mucosa of neck of urinary bladder,neck of bladder mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005010,mucosa of neck of urinary bladder,neck of bladder mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005010,mucosa of neck of urinary bladder,neck of bladder organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005010,mucosa of neck of urinary bladder,neck of urinary bladder mucosa +http://purl.obolibrary.org/obo/UBERON_0005010,mucosa of neck of urinary bladder,neck of urinary bladder mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005010,mucosa of neck of urinary bladder,neck of urinary bladder mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005010,mucosa of neck of urinary bladder,neck of urinary bladder organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005010,mucosa of neck of urinary bladder,organ mucosa of bladder neck +http://purl.obolibrary.org/obo/UBERON_0005010,mucosa of neck of urinary bladder,organ mucosa of neck of bladder +http://purl.obolibrary.org/obo/UBERON_0005010,mucosa of neck of urinary bladder,organ mucosa of neck of urinary bladder +http://purl.obolibrary.org/obo/UBERON_0005010,mucosa of neck of urinary bladder,organ mucosa of urinary bladder neck +http://purl.obolibrary.org/obo/UBERON_0005010,mucosa of neck of urinary bladder,organ mucosa of vesical neck +http://purl.obolibrary.org/obo/UBERON_0005010,mucosa of neck of urinary bladder,urinary bladder neck mucosa +http://purl.obolibrary.org/obo/UBERON_0005010,mucosa of neck of urinary bladder,urinary bladder neck mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005010,mucosa of neck of urinary bladder,urinary bladder neck mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005010,mucosa of neck of urinary bladder,vesical neck mucosa +http://purl.obolibrary.org/obo/UBERON_0005010,mucosa of neck of urinary bladder,vesical neck mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005010,mucosa of neck of urinary bladder,vesical neck mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005010,mucosa of neck of urinary bladder,vesical neck organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005011,mucosa of right uterine tube,mucosa of organ of right fallopian tube +http://purl.obolibrary.org/obo/UBERON_0005011,mucosa of right uterine tube,mucosa of organ of right oviduct +http://purl.obolibrary.org/obo/UBERON_0005011,mucosa of right uterine tube,mucosa of organ of right uterine tube +http://purl.obolibrary.org/obo/UBERON_0005011,mucosa of right uterine tube,mucosa of right fallopian tube +http://purl.obolibrary.org/obo/UBERON_0005011,mucosa of right uterine tube,mucosa of right oviduct +http://purl.obolibrary.org/obo/UBERON_0005011,mucosa of right uterine tube,mucous membrane of right fallopian tube +http://purl.obolibrary.org/obo/UBERON_0005011,mucosa of right uterine tube,mucous membrane of right oviduct +http://purl.obolibrary.org/obo/UBERON_0005011,mucosa of right uterine tube,mucous membrane of right uterine tube +http://purl.obolibrary.org/obo/UBERON_0005011,mucosa of right uterine tube,organ mucosa of right fallopian tube +http://purl.obolibrary.org/obo/UBERON_0005011,mucosa of right uterine tube,organ mucosa of right oviduct +http://purl.obolibrary.org/obo/UBERON_0005011,mucosa of right uterine tube,organ mucosa of right uterine tube +http://purl.obolibrary.org/obo/UBERON_0005011,mucosa of right uterine tube,right fallopian tube mucosa +http://purl.obolibrary.org/obo/UBERON_0005011,mucosa of right uterine tube,right fallopian tube mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005011,mucosa of right uterine tube,right fallopian tube mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005011,mucosa of right uterine tube,right fallopian tube organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005011,mucosa of right uterine tube,right oviduct mucosa +http://purl.obolibrary.org/obo/UBERON_0005011,mucosa of right uterine tube,right oviduct mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005011,mucosa of right uterine tube,right oviduct mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005011,mucosa of right uterine tube,right oviduct organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005011,mucosa of right uterine tube,right uterine tube mucosa +http://purl.obolibrary.org/obo/UBERON_0005011,mucosa of right uterine tube,right uterine tube mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005011,mucosa of right uterine tube,right uterine tube mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005011,mucosa of right uterine tube,right uterine tube organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005012,mucosa of left uterine tube,left fallopian tube mucosa +http://purl.obolibrary.org/obo/UBERON_0005012,mucosa of left uterine tube,left fallopian tube mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005012,mucosa of left uterine tube,left fallopian tube mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005012,mucosa of left uterine tube,left fallopian tube organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005012,mucosa of left uterine tube,left oviduct mucosa +http://purl.obolibrary.org/obo/UBERON_0005012,mucosa of left uterine tube,left oviduct mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005012,mucosa of left uterine tube,left oviduct mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005012,mucosa of left uterine tube,left oviduct organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005012,mucosa of left uterine tube,left uterine tube mucosa +http://purl.obolibrary.org/obo/UBERON_0005012,mucosa of left uterine tube,left uterine tube mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005012,mucosa of left uterine tube,left uterine tube mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005012,mucosa of left uterine tube,left uterine tube organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005012,mucosa of left uterine tube,mucosa of left fallopian tube +http://purl.obolibrary.org/obo/UBERON_0005012,mucosa of left uterine tube,mucosa of left oviduct +http://purl.obolibrary.org/obo/UBERON_0005012,mucosa of left uterine tube,mucosa of organ of left fallopian tube +http://purl.obolibrary.org/obo/UBERON_0005012,mucosa of left uterine tube,mucosa of organ of left oviduct +http://purl.obolibrary.org/obo/UBERON_0005012,mucosa of left uterine tube,mucosa of organ of left uterine tube +http://purl.obolibrary.org/obo/UBERON_0005012,mucosa of left uterine tube,mucous membrane of left fallopian tube +http://purl.obolibrary.org/obo/UBERON_0005012,mucosa of left uterine tube,mucous membrane of left oviduct +http://purl.obolibrary.org/obo/UBERON_0005012,mucosa of left uterine tube,mucous membrane of left uterine tube +http://purl.obolibrary.org/obo/UBERON_0005012,mucosa of left uterine tube,organ mucosa of left fallopian tube +http://purl.obolibrary.org/obo/UBERON_0005012,mucosa of left uterine tube,organ mucosa of left oviduct +http://purl.obolibrary.org/obo/UBERON_0005012,mucosa of left uterine tube,organ mucosa of left uterine tube +http://purl.obolibrary.org/obo/UBERON_0005013,mucosa of male urethra,male urethra mucosa +http://purl.obolibrary.org/obo/UBERON_0005013,mucosa of male urethra,male urethra mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005013,mucosa of male urethra,male urethra mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005013,mucosa of male urethra,male urethra organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005013,mucosa of male urethra,mucosa of organ of male urethra +http://purl.obolibrary.org/obo/UBERON_0005013,mucosa of male urethra,mucous membrane of male urethra +http://purl.obolibrary.org/obo/UBERON_0005013,mucosa of male urethra,organ mucosa of male urethra +http://purl.obolibrary.org/obo/UBERON_0005014,mucosa of female urethra,female urethra mucosa +http://purl.obolibrary.org/obo/UBERON_0005014,mucosa of female urethra,female urethra mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005014,mucosa of female urethra,female urethra mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005014,mucosa of female urethra,female urethra organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005014,mucosa of female urethra,mucosa of organ of female urethra +http://purl.obolibrary.org/obo/UBERON_0005014,mucosa of female urethra,mucous membrane of female urethra +http://purl.obolibrary.org/obo/UBERON_0005014,mucosa of female urethra,organ mucosa of female urethra +http://purl.obolibrary.org/obo/UBERON_0005015,mucosa of prostatic urethra,mucosa of organ of prostatic part of urethra +http://purl.obolibrary.org/obo/UBERON_0005015,mucosa of prostatic urethra,mucosa of organ of prostatic urethra +http://purl.obolibrary.org/obo/UBERON_0005015,mucosa of prostatic urethra,mucosa of prostatic part of urethra +http://purl.obolibrary.org/obo/UBERON_0005015,mucosa of prostatic urethra,mucous membrane of prostatic part of urethra +http://purl.obolibrary.org/obo/UBERON_0005015,mucosa of prostatic urethra,mucous membrane of prostatic urethra +http://purl.obolibrary.org/obo/UBERON_0005015,mucosa of prostatic urethra,organ mucosa of prostatic part of urethra +http://purl.obolibrary.org/obo/UBERON_0005015,mucosa of prostatic urethra,organ mucosa of prostatic urethra +http://purl.obolibrary.org/obo/UBERON_0005015,mucosa of prostatic urethra,prostatic part of urethra mucosa +http://purl.obolibrary.org/obo/UBERON_0005015,mucosa of prostatic urethra,prostatic part of urethra mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005015,mucosa of prostatic urethra,prostatic part of urethra mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005015,mucosa of prostatic urethra,prostatic part of urethra organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005015,mucosa of prostatic urethra,prostatic urethra mucosa +http://purl.obolibrary.org/obo/UBERON_0005015,mucosa of prostatic urethra,prostatic urethra mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005015,mucosa of prostatic urethra,prostatic urethra mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005015,mucosa of prostatic urethra,prostatic urethra organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005015,mucosa of prostatic urethra,prostatic urethral mucosa +http://purl.obolibrary.org/obo/UBERON_0005015,mucosa of prostatic urethra,tunica mucosa urethrae prosticae +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,intermediate part of urethra mucosa +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,intermediate part of urethra mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,intermediate part of urethra mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,intermediate part of urethra organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,intermediate urethra mucosa +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,intermediate urethra mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,intermediate urethra mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,intermediate urethra organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,intermediate urethral mucosa +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,membranous part of urethra mucosa +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,membranous part of urethra mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,membranous part of urethra mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,membranous part of urethra organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,membranous urethra mucosa +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,membranous urethra mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,membranous urethra mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,membranous urethra organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,mucosa of intermediate part of urethra +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,mucosa of membranous part of urethra +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,mucosa of membranous urethra +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,mucosa of organ of intermediate part of urethra +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,mucosa of organ of intermediate urethra +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,mucosa of organ of membranous part of urethra +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,mucosa of organ of membranous urethra +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,mucosa of organ of pars membranacea (urethrae) +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,mucosa of pars membranacea (urethrae) +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,mucous membrane of intermediate part of urethra +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,mucous membrane of intermediate urethra +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,mucous membrane of membranous part of urethra +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,mucous membrane of membranous urethra +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,mucous membrane of pars membranacea (urethrae) +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,organ mucosa of intermediate part of urethra +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,organ mucosa of intermediate urethra +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,organ mucosa of membranous part of urethra +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,organ mucosa of membranous urethra +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,organ mucosa of pars membranacea (urethrae) +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,pars membranacea (urethrae) mucosa +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,pars membranacea (urethrae) mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,pars membranacea (urethrae) mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,pars membranacea (urethrae) organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005016,mucosa of intermediate urethra,tunica mucosa urethrae intermediae +http://purl.obolibrary.org/obo/UBERON_0005017,mucosa of lacrimal sac,lacrimal sac mucosa +http://purl.obolibrary.org/obo/UBERON_0005017,mucosa of lacrimal sac,lacrimal sac mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005017,mucosa of lacrimal sac,lacrimal sac mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005017,mucosa of lacrimal sac,lacrimal sac organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005017,mucosa of lacrimal sac,mucosa of organ of lacrimal sac +http://purl.obolibrary.org/obo/UBERON_0005017,mucosa of lacrimal sac,mucous membrane of lacrimal sac +http://purl.obolibrary.org/obo/UBERON_0005017,mucosa of lacrimal sac,organ mucosa of lacrimal sac +http://purl.obolibrary.org/obo/UBERON_0005018,mucosa of nasal septum,mucosa of organ of nasal septum +http://purl.obolibrary.org/obo/UBERON_0005018,mucosa of nasal septum,mucous membrane of nasal septum +http://purl.obolibrary.org/obo/UBERON_0005018,mucosa of nasal septum,nasal septum mucosa +http://purl.obolibrary.org/obo/UBERON_0005018,mucosa of nasal septum,nasal septum mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005018,mucosa of nasal septum,nasal septum mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005018,mucosa of nasal septum,nasal septum organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005018,mucosa of nasal septum,organ mucosa of nasal septum +http://purl.obolibrary.org/obo/UBERON_0005019,mucosa of palate,mucosa of oral roof +http://purl.obolibrary.org/obo/UBERON_0005019,mucosa of palate,mucosa of organ of oral roof +http://purl.obolibrary.org/obo/UBERON_0005019,mucosa of palate,mucosa of organ of palate +http://purl.obolibrary.org/obo/UBERON_0005019,mucosa of palate,mucosa of organ of roof of mouth +http://purl.obolibrary.org/obo/UBERON_0005019,mucosa of palate,mucosa of roof of mouth +http://purl.obolibrary.org/obo/UBERON_0005019,mucosa of palate,mucous membrane of oral roof +http://purl.obolibrary.org/obo/UBERON_0005019,mucosa of palate,mucous membrane of palate +http://purl.obolibrary.org/obo/UBERON_0005019,mucosa of palate,mucous membrane of roof of mouth +http://purl.obolibrary.org/obo/UBERON_0005019,mucosa of palate,oral roof mucosa +http://purl.obolibrary.org/obo/UBERON_0005019,mucosa of palate,oral roof mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005019,mucosa of palate,oral roof mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005019,mucosa of palate,oral roof organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005019,mucosa of palate,organ mucosa of oral roof +http://purl.obolibrary.org/obo/UBERON_0005019,mucosa of palate,organ mucosa of palate +http://purl.obolibrary.org/obo/UBERON_0005019,mucosa of palate,organ mucosa of roof of mouth +http://purl.obolibrary.org/obo/UBERON_0005019,mucosa of palate,palate mucosa +http://purl.obolibrary.org/obo/UBERON_0005019,mucosa of palate,palate mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005019,mucosa of palate,palate mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005019,mucosa of palate,palate organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005019,mucosa of palate,roof of mouth mucosa +http://purl.obolibrary.org/obo/UBERON_0005019,mucosa of palate,roof of mouth mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005019,mucosa of palate,roof of mouth mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005019,mucosa of palate,roof of mouth organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005020,mucosa of tongue,lingual mucosa +http://purl.obolibrary.org/obo/UBERON_0005020,mucosa of tongue,mucosa of organ of tongue +http://purl.obolibrary.org/obo/UBERON_0005020,mucosa of tongue,mucous membrane of tongue +http://purl.obolibrary.org/obo/UBERON_0005020,mucosa of tongue,organ mucosa of tongue +http://purl.obolibrary.org/obo/UBERON_0005020,mucosa of tongue,tongue mucosa +http://purl.obolibrary.org/obo/UBERON_0005020,mucosa of tongue,tongue mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005020,mucosa of tongue,tongue mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005020,mucosa of tongue,tongue organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005020,mucosa of tongue,tunica mucosa linguae +http://purl.obolibrary.org/obo/UBERON_0005021,mucosa of sphenoidal sinus,mucosa of organ of sphenoid sinus +http://purl.obolibrary.org/obo/UBERON_0005021,mucosa of sphenoidal sinus,mucosa of organ of sphenoidal sinus +http://purl.obolibrary.org/obo/UBERON_0005021,mucosa of sphenoidal sinus,mucosa of sphenoid sinus +http://purl.obolibrary.org/obo/UBERON_0005021,mucosa of sphenoidal sinus,mucous membrane of sphenoid sinus +http://purl.obolibrary.org/obo/UBERON_0005021,mucosa of sphenoidal sinus,mucous membrane of sphenoidal sinus +http://purl.obolibrary.org/obo/UBERON_0005021,mucosa of sphenoidal sinus,organ mucosa of sphenoid sinus +http://purl.obolibrary.org/obo/UBERON_0005021,mucosa of sphenoidal sinus,organ mucosa of sphenoidal sinus +http://purl.obolibrary.org/obo/UBERON_0005021,mucosa of sphenoidal sinus,sphenoid sinus mucosa +http://purl.obolibrary.org/obo/UBERON_0005021,mucosa of sphenoidal sinus,sphenoid sinus mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005021,mucosa of sphenoidal sinus,sphenoid sinus mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005021,mucosa of sphenoidal sinus,sphenoid sinus organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005021,mucosa of sphenoidal sinus,sphenoidal sinus mucosa +http://purl.obolibrary.org/obo/UBERON_0005021,mucosa of sphenoidal sinus,sphenoidal sinus mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005021,mucosa of sphenoidal sinus,sphenoidal sinus mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005021,mucosa of sphenoidal sinus,sphenoidal sinus organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005022,mucosa of nasopharynx,mucosa of nasal part of pharynx +http://purl.obolibrary.org/obo/UBERON_0005022,mucosa of nasopharynx,mucosa of organ of nasal part of pharynx +http://purl.obolibrary.org/obo/UBERON_0005022,mucosa of nasopharynx,mucosa of organ of nasopharynx +http://purl.obolibrary.org/obo/UBERON_0005022,mucosa of nasopharynx,mucosa of organ of rhinopharynx +http://purl.obolibrary.org/obo/UBERON_0005022,mucosa of nasopharynx,mucosa of rhinopharynx +http://purl.obolibrary.org/obo/UBERON_0005022,mucosa of nasopharynx,mucous membrane of nasal part of pharynx +http://purl.obolibrary.org/obo/UBERON_0005022,mucosa of nasopharynx,mucous membrane of nasopharynx +http://purl.obolibrary.org/obo/UBERON_0005022,mucosa of nasopharynx,mucous membrane of rhinopharynx +http://purl.obolibrary.org/obo/UBERON_0005022,mucosa of nasopharynx,nasal part of pharynx mucosa +http://purl.obolibrary.org/obo/UBERON_0005022,mucosa of nasopharynx,nasal part of pharynx mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005022,mucosa of nasopharynx,nasal part of pharynx mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005022,mucosa of nasopharynx,nasal part of pharynx organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005022,mucosa of nasopharynx,nasopharynx mucosa +http://purl.obolibrary.org/obo/UBERON_0005022,mucosa of nasopharynx,nasopharynx mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005022,mucosa of nasopharynx,nasopharynx mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005022,mucosa of nasopharynx,nasopharynx organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005022,mucosa of nasopharynx,organ mucosa of nasal part of pharynx +http://purl.obolibrary.org/obo/UBERON_0005022,mucosa of nasopharynx,organ mucosa of nasopharynx +http://purl.obolibrary.org/obo/UBERON_0005022,mucosa of nasopharynx,organ mucosa of rhinopharynx +http://purl.obolibrary.org/obo/UBERON_0005022,mucosa of nasopharynx,rhinopharynx mucosa +http://purl.obolibrary.org/obo/UBERON_0005022,mucosa of nasopharynx,rhinopharynx mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005022,mucosa of nasopharynx,rhinopharynx mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005022,mucosa of nasopharynx,rhinopharynx organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005023,mucosa of oropharynx,mucosa of oral part of pharynx +http://purl.obolibrary.org/obo/UBERON_0005023,mucosa of oropharynx,mucosa of organ of oral part of pharynx +http://purl.obolibrary.org/obo/UBERON_0005023,mucosa of oropharynx,mucosa of organ of oropharynx +http://purl.obolibrary.org/obo/UBERON_0005023,mucosa of oropharynx,mucous membrane of oral part of pharynx +http://purl.obolibrary.org/obo/UBERON_0005023,mucosa of oropharynx,mucous membrane of oropharynx +http://purl.obolibrary.org/obo/UBERON_0005023,mucosa of oropharynx,oral part of pharynx mucosa +http://purl.obolibrary.org/obo/UBERON_0005023,mucosa of oropharynx,oral part of pharynx mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005023,mucosa of oropharynx,oral part of pharynx mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005023,mucosa of oropharynx,oral part of pharynx organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005023,mucosa of oropharynx,organ mucosa of oral part of pharynx +http://purl.obolibrary.org/obo/UBERON_0005023,mucosa of oropharynx,organ mucosa of oropharynx +http://purl.obolibrary.org/obo/UBERON_0005023,mucosa of oropharynx,oropharynx mucosa +http://purl.obolibrary.org/obo/UBERON_0005023,mucosa of oropharynx,oropharynx mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005023,mucosa of oropharynx,oropharynx mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005023,mucosa of oropharynx,oropharynx organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005024,mucosa of soft palate,mucosa of organ of soft palate +http://purl.obolibrary.org/obo/UBERON_0005024,mucosa of soft palate,mucous membrane of soft palate +http://purl.obolibrary.org/obo/UBERON_0005024,mucosa of soft palate,organ mucosa of soft palate +http://purl.obolibrary.org/obo/UBERON_0005024,mucosa of soft palate,soft palate mucosa +http://purl.obolibrary.org/obo/UBERON_0005024,mucosa of soft palate,soft palate mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005024,mucosa of soft palate,soft palate mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005024,mucosa of soft palate,soft palate organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005025,mucosa of uvula,uvula mucosa +http://purl.obolibrary.org/obo/UBERON_0005026,mucosa of middle ear,middle ear mucosa +http://purl.obolibrary.org/obo/UBERON_0005026,mucosa of middle ear,middle ear mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005026,mucosa of middle ear,middle ear mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005026,mucosa of middle ear,middle ear organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005026,mucosa of middle ear,mucosa of organ of middle ear +http://purl.obolibrary.org/obo/UBERON_0005026,mucosa of middle ear,mucosa of tympanic cavity +http://purl.obolibrary.org/obo/UBERON_0005026,mucosa of middle ear,mucous membrane of middle ear +http://purl.obolibrary.org/obo/UBERON_0005026,mucosa of middle ear,organ mucosa of middle ear +http://purl.obolibrary.org/obo/UBERON_0005026,mucosa of middle ear,tunica mucosa cavitatis tympanicae +http://purl.obolibrary.org/obo/UBERON_0005027,mucosa of frontal sinus,frontal sinus mucosa +http://purl.obolibrary.org/obo/UBERON_0005027,mucosa of frontal sinus,frontal sinus mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005027,mucosa of frontal sinus,frontal sinus mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005027,mucosa of frontal sinus,frontal sinus organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005027,mucosa of frontal sinus,mucosa of organ of frontal sinus +http://purl.obolibrary.org/obo/UBERON_0005027,mucosa of frontal sinus,mucous membrane of frontal sinus +http://purl.obolibrary.org/obo/UBERON_0005027,mucosa of frontal sinus,organ mucosa of frontal sinus +http://purl.obolibrary.org/obo/UBERON_0005028,mucosa of maxillary sinus,antrum of highmore mucosa +http://purl.obolibrary.org/obo/UBERON_0005028,mucosa of maxillary sinus,antrum of highmore mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005028,mucosa of maxillary sinus,antrum of highmore mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005028,mucosa of maxillary sinus,antrum of highmore organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005028,mucosa of maxillary sinus,maxillary sinus mucosa +http://purl.obolibrary.org/obo/UBERON_0005028,mucosa of maxillary sinus,maxillary sinus mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005028,mucosa of maxillary sinus,maxillary sinus mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005028,mucosa of maxillary sinus,maxillary sinus organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005028,mucosa of maxillary sinus,mucosa of antrum of highmore +http://purl.obolibrary.org/obo/UBERON_0005028,mucosa of maxillary sinus,mucosa of organ of antrum of highmore +http://purl.obolibrary.org/obo/UBERON_0005028,mucosa of maxillary sinus,mucosa of organ of maxillary sinus +http://purl.obolibrary.org/obo/UBERON_0005028,mucosa of maxillary sinus,mucous membrane of antrum of highmore +http://purl.obolibrary.org/obo/UBERON_0005028,mucosa of maxillary sinus,mucous membrane of maxillary sinus +http://purl.obolibrary.org/obo/UBERON_0005028,mucosa of maxillary sinus,organ mucosa of antrum of highmore +http://purl.obolibrary.org/obo/UBERON_0005028,mucosa of maxillary sinus,organ mucosa of maxillary sinus +http://purl.obolibrary.org/obo/UBERON_0005029,mucosa of lacrimal canaliculus,lacrimal canalicular mucosa +http://purl.obolibrary.org/obo/UBERON_0005029,mucosa of lacrimal canaliculus,lacrimal canaliculus mucosa +http://purl.obolibrary.org/obo/UBERON_0005029,mucosa of lacrimal canaliculus,lacrimal canaliculus mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005029,mucosa of lacrimal canaliculus,lacrimal canaliculus mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005029,mucosa of lacrimal canaliculus,lacrimal canaliculus organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005029,mucosa of lacrimal canaliculus,mucosa of organ of lacrimal canaliculus +http://purl.obolibrary.org/obo/UBERON_0005029,mucosa of lacrimal canaliculus,mucous membrane of lacrimal canaliculus +http://purl.obolibrary.org/obo/UBERON_0005029,mucosa of lacrimal canaliculus,organ mucosa of lacrimal canaliculus +http://purl.obolibrary.org/obo/UBERON_0005030,mucosa of paranasal sinus,paranasal sinus mucosa +http://purl.obolibrary.org/obo/UBERON_0005031,mucosa of upper lip,mucosa of organ of upper lip +http://purl.obolibrary.org/obo/UBERON_0005031,mucosa of upper lip,mucous membrane of upper lip +http://purl.obolibrary.org/obo/UBERON_0005031,mucosa of upper lip,organ mucosa of upper lip +http://purl.obolibrary.org/obo/UBERON_0005031,mucosa of upper lip,upper labial mucosa +http://purl.obolibrary.org/obo/UBERON_0005031,mucosa of upper lip,upper lip mucosa +http://purl.obolibrary.org/obo/UBERON_0005031,mucosa of upper lip,upper lip mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005031,mucosa of upper lip,upper lip mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005031,mucosa of upper lip,upper lip organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005032,mucosa of lower lip,lower labial mucosa +http://purl.obolibrary.org/obo/UBERON_0005032,mucosa of lower lip,lower lip mucosa +http://purl.obolibrary.org/obo/UBERON_0005032,mucosa of lower lip,lower lip mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005032,mucosa of lower lip,lower lip mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005032,mucosa of lower lip,lower lip organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005032,mucosa of lower lip,mucosa of organ of lower lip +http://purl.obolibrary.org/obo/UBERON_0005032,mucosa of lower lip,mucous membrane of lower lip +http://purl.obolibrary.org/obo/UBERON_0005032,mucosa of lower lip,organ mucosa of lower lip +http://purl.obolibrary.org/obo/UBERON_0005033,mucosa of gallbladder,gall bladder mucosa +http://purl.obolibrary.org/obo/UBERON_0005033,mucosa of gallbladder,gall bladder mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005033,mucosa of gallbladder,gall bladder mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005033,mucosa of gallbladder,gall bladder organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005033,mucosa of gallbladder,gallbladder mucosa +http://purl.obolibrary.org/obo/UBERON_0005033,mucosa of gallbladder,gallbladder mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005033,mucosa of gallbladder,gallbladder mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005033,mucosa of gallbladder,gallbladder organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005033,mucosa of gallbladder,mucosa of gall bladder +http://purl.obolibrary.org/obo/UBERON_0005033,mucosa of gallbladder,mucosa of organ of gall bladder +http://purl.obolibrary.org/obo/UBERON_0005033,mucosa of gallbladder,mucosa of organ of gallbladder +http://purl.obolibrary.org/obo/UBERON_0005033,mucosa of gallbladder,mucous membrane of gall bladder +http://purl.obolibrary.org/obo/UBERON_0005033,mucosa of gallbladder,mucous membrane of gallbladder +http://purl.obolibrary.org/obo/UBERON_0005033,mucosa of gallbladder,organ mucosa of gall bladder +http://purl.obolibrary.org/obo/UBERON_0005033,mucosa of gallbladder,organ mucosa of gallbladder +http://purl.obolibrary.org/obo/UBERON_0005033,mucosa of gallbladder,tunica mucosa (vesica biliaris) +http://purl.obolibrary.org/obo/UBERON_0005033,mucosa of gallbladder,tunica mucosa vesicae biliaris +http://purl.obolibrary.org/obo/UBERON_0005034,mucosa of right main bronchus,mucosa of organ of right bronchus +http://purl.obolibrary.org/obo/UBERON_0005034,mucosa of right main bronchus,mucosa of organ of right main bronchus +http://purl.obolibrary.org/obo/UBERON_0005034,mucosa of right main bronchus,mucosa of organ of right principal bronchus +http://purl.obolibrary.org/obo/UBERON_0005034,mucosa of right main bronchus,mucosa of right bronchus +http://purl.obolibrary.org/obo/UBERON_0005034,mucosa of right main bronchus,mucosa of right principal bronchus +http://purl.obolibrary.org/obo/UBERON_0005034,mucosa of right main bronchus,mucous membrane of right bronchus +http://purl.obolibrary.org/obo/UBERON_0005034,mucosa of right main bronchus,mucous membrane of right main bronchus +http://purl.obolibrary.org/obo/UBERON_0005034,mucosa of right main bronchus,mucous membrane of right principal bronchus +http://purl.obolibrary.org/obo/UBERON_0005034,mucosa of right main bronchus,organ mucosa of right bronchus +http://purl.obolibrary.org/obo/UBERON_0005034,mucosa of right main bronchus,organ mucosa of right main bronchus +http://purl.obolibrary.org/obo/UBERON_0005034,mucosa of right main bronchus,organ mucosa of right principal bronchus +http://purl.obolibrary.org/obo/UBERON_0005034,mucosa of right main bronchus,right bronchus mucosa +http://purl.obolibrary.org/obo/UBERON_0005034,mucosa of right main bronchus,right bronchus mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005034,mucosa of right main bronchus,right bronchus mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005034,mucosa of right main bronchus,right bronchus organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005034,mucosa of right main bronchus,right main bronchial mucosa +http://purl.obolibrary.org/obo/UBERON_0005034,mucosa of right main bronchus,right main bronchus mucosa +http://purl.obolibrary.org/obo/UBERON_0005034,mucosa of right main bronchus,right main bronchus mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005034,mucosa of right main bronchus,right main bronchus mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005034,mucosa of right main bronchus,right main bronchus organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005034,mucosa of right main bronchus,right principal bronchus mucosa +http://purl.obolibrary.org/obo/UBERON_0005034,mucosa of right main bronchus,right principal bronchus mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005034,mucosa of right main bronchus,right principal bronchus mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005034,mucosa of right main bronchus,right principal bronchus organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005035,mucosa of left main bronchus,left bronchus mucosa +http://purl.obolibrary.org/obo/UBERON_0005035,mucosa of left main bronchus,left bronchus mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005035,mucosa of left main bronchus,left bronchus mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005035,mucosa of left main bronchus,left bronchus organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005035,mucosa of left main bronchus,left main bronchial mucosa +http://purl.obolibrary.org/obo/UBERON_0005035,mucosa of left main bronchus,left main bronchus mucosa +http://purl.obolibrary.org/obo/UBERON_0005035,mucosa of left main bronchus,left main bronchus mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005035,mucosa of left main bronchus,left main bronchus mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005035,mucosa of left main bronchus,left main bronchus organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005035,mucosa of left main bronchus,left principal bronchus mucosa +http://purl.obolibrary.org/obo/UBERON_0005035,mucosa of left main bronchus,left principal bronchus mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005035,mucosa of left main bronchus,left principal bronchus mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005035,mucosa of left main bronchus,left principal bronchus organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005035,mucosa of left main bronchus,mucosa of left bronchus +http://purl.obolibrary.org/obo/UBERON_0005035,mucosa of left main bronchus,mucosa of left principal bronchus +http://purl.obolibrary.org/obo/UBERON_0005035,mucosa of left main bronchus,mucosa of organ of left bronchus +http://purl.obolibrary.org/obo/UBERON_0005035,mucosa of left main bronchus,mucosa of organ of left main bronchus +http://purl.obolibrary.org/obo/UBERON_0005035,mucosa of left main bronchus,mucosa of organ of left principal bronchus +http://purl.obolibrary.org/obo/UBERON_0005035,mucosa of left main bronchus,mucous membrane of left bronchus +http://purl.obolibrary.org/obo/UBERON_0005035,mucosa of left main bronchus,mucous membrane of left main bronchus +http://purl.obolibrary.org/obo/UBERON_0005035,mucosa of left main bronchus,mucous membrane of left principal bronchus +http://purl.obolibrary.org/obo/UBERON_0005035,mucosa of left main bronchus,organ mucosa of left bronchus +http://purl.obolibrary.org/obo/UBERON_0005035,mucosa of left main bronchus,organ mucosa of left main bronchus +http://purl.obolibrary.org/obo/UBERON_0005035,mucosa of left main bronchus,organ mucosa of left principal bronchus +http://purl.obolibrary.org/obo/UBERON_0005036,mucosa of main bronchus,bronchus principalis mucosa +http://purl.obolibrary.org/obo/UBERON_0005036,mucosa of main bronchus,bronchus principalis mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005036,mucosa of main bronchus,bronchus principalis mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005036,mucosa of main bronchus,bronchus principalis organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005036,mucosa of main bronchus,main bronchial mucosa +http://purl.obolibrary.org/obo/UBERON_0005036,mucosa of main bronchus,main bronchus mucosa +http://purl.obolibrary.org/obo/UBERON_0005036,mucosa of main bronchus,main bronchus mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005036,mucosa of main bronchus,main bronchus mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005036,mucosa of main bronchus,main bronchus organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005036,mucosa of main bronchus,mucosa of bronchus principalis +http://purl.obolibrary.org/obo/UBERON_0005036,mucosa of main bronchus,mucosa of organ of bronchus principalis +http://purl.obolibrary.org/obo/UBERON_0005036,mucosa of main bronchus,mucosa of organ of main bronchus +http://purl.obolibrary.org/obo/UBERON_0005036,mucosa of main bronchus,mucosa of organ of primary bronchus +http://purl.obolibrary.org/obo/UBERON_0005036,mucosa of main bronchus,mucosa of organ of principal bronchus +http://purl.obolibrary.org/obo/UBERON_0005036,mucosa of main bronchus,mucosa of primary bronchus +http://purl.obolibrary.org/obo/UBERON_0005036,mucosa of main bronchus,mucosa of principal bronchus +http://purl.obolibrary.org/obo/UBERON_0005036,mucosa of main bronchus,mucous membrane of bronchus principalis +http://purl.obolibrary.org/obo/UBERON_0005036,mucosa of main bronchus,mucous membrane of main bronchus +http://purl.obolibrary.org/obo/UBERON_0005036,mucosa of main bronchus,mucous membrane of primary bronchus +http://purl.obolibrary.org/obo/UBERON_0005036,mucosa of main bronchus,mucous membrane of principal bronchus +http://purl.obolibrary.org/obo/UBERON_0005036,mucosa of main bronchus,organ mucosa of bronchus principalis +http://purl.obolibrary.org/obo/UBERON_0005036,mucosa of main bronchus,organ mucosa of main bronchus +http://purl.obolibrary.org/obo/UBERON_0005036,mucosa of main bronchus,organ mucosa of primary bronchus +http://purl.obolibrary.org/obo/UBERON_0005036,mucosa of main bronchus,organ mucosa of principal bronchus +http://purl.obolibrary.org/obo/UBERON_0005036,mucosa of main bronchus,primary bronchus mucosa +http://purl.obolibrary.org/obo/UBERON_0005036,mucosa of main bronchus,primary bronchus mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005036,mucosa of main bronchus,primary bronchus mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005036,mucosa of main bronchus,primary bronchus organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005036,mucosa of main bronchus,principal bronchus mucosa +http://purl.obolibrary.org/obo/UBERON_0005036,mucosa of main bronchus,principal bronchus mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005036,mucosa of main bronchus,principal bronchus mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005036,mucosa of main bronchus,principal bronchus organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005037,mucosa of lobar bronchus,lobar bronchial mucosa +http://purl.obolibrary.org/obo/UBERON_0005037,mucosa of lobar bronchus,lobar bronchus mucosa +http://purl.obolibrary.org/obo/UBERON_0005037,mucosa of lobar bronchus,lobar bronchus mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005037,mucosa of lobar bronchus,lobar bronchus mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005037,mucosa of lobar bronchus,lobar bronchus organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005037,mucosa of lobar bronchus,mucosa of organ of lobar bronchus +http://purl.obolibrary.org/obo/UBERON_0005037,mucosa of lobar bronchus,mucosa of organ of secondary bronchus +http://purl.obolibrary.org/obo/UBERON_0005037,mucosa of lobar bronchus,mucosa of secondary bronchus +http://purl.obolibrary.org/obo/UBERON_0005037,mucosa of lobar bronchus,mucous membrane of lobar bronchus +http://purl.obolibrary.org/obo/UBERON_0005037,mucosa of lobar bronchus,mucous membrane of secondary bronchus +http://purl.obolibrary.org/obo/UBERON_0005037,mucosa of lobar bronchus,organ mucosa of lobar bronchus +http://purl.obolibrary.org/obo/UBERON_0005037,mucosa of lobar bronchus,organ mucosa of secondary bronchus +http://purl.obolibrary.org/obo/UBERON_0005037,mucosa of lobar bronchus,secondary bronchus mucosa +http://purl.obolibrary.org/obo/UBERON_0005037,mucosa of lobar bronchus,secondary bronchus mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005037,mucosa of lobar bronchus,secondary bronchus mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005037,mucosa of lobar bronchus,secondary bronchus organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005038,mucosa of segmental bronchus,mucosa of organ of segmental bronchus +http://purl.obolibrary.org/obo/UBERON_0005038,mucosa of segmental bronchus,mucosa of organ of tertiary bronchus +http://purl.obolibrary.org/obo/UBERON_0005038,mucosa of segmental bronchus,mucosa of tertiary bronchus +http://purl.obolibrary.org/obo/UBERON_0005038,mucosa of segmental bronchus,mucous membrane of segmental bronchus +http://purl.obolibrary.org/obo/UBERON_0005038,mucosa of segmental bronchus,mucous membrane of tertiary bronchus +http://purl.obolibrary.org/obo/UBERON_0005038,mucosa of segmental bronchus,organ mucosa of segmental bronchus +http://purl.obolibrary.org/obo/UBERON_0005038,mucosa of segmental bronchus,organ mucosa of tertiary bronchus +http://purl.obolibrary.org/obo/UBERON_0005038,mucosa of segmental bronchus,segmental bronchial mucosa +http://purl.obolibrary.org/obo/UBERON_0005038,mucosa of segmental bronchus,segmental bronchus mucosa +http://purl.obolibrary.org/obo/UBERON_0005038,mucosa of segmental bronchus,segmental bronchus mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005038,mucosa of segmental bronchus,segmental bronchus mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005038,mucosa of segmental bronchus,segmental bronchus organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005038,mucosa of segmental bronchus,tertiary bronchus mucosa +http://purl.obolibrary.org/obo/UBERON_0005038,mucosa of segmental bronchus,tertiary bronchus mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005038,mucosa of segmental bronchus,tertiary bronchus mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005038,mucosa of segmental bronchus,tertiary bronchus organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005039,mucosa of bronchiole,bronchiole mucosa +http://purl.obolibrary.org/obo/UBERON_0005039,mucosa of bronchiole,bronchiole mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005039,mucosa of bronchiole,bronchiole mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005039,mucosa of bronchiole,bronchiole organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005039,mucosa of bronchiole,mucosa of organ of bronchiole +http://purl.obolibrary.org/obo/UBERON_0005039,mucosa of bronchiole,mucous membrane of bronchiole +http://purl.obolibrary.org/obo/UBERON_0005039,mucosa of bronchiole,organ mucosa of bronchiole +http://purl.obolibrary.org/obo/UBERON_0005040,mucosa of terminal bronchiole,bronchiolus terminalis mucosa +http://purl.obolibrary.org/obo/UBERON_0005040,mucosa of terminal bronchiole,bronchiolus terminalis mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005040,mucosa of terminal bronchiole,bronchiolus terminalis mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005040,mucosa of terminal bronchiole,bronchiolus terminalis organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005040,mucosa of terminal bronchiole,mucosa of bronchiolus terminalis +http://purl.obolibrary.org/obo/UBERON_0005040,mucosa of terminal bronchiole,mucosa of organ of bronchiolus terminalis +http://purl.obolibrary.org/obo/UBERON_0005040,mucosa of terminal bronchiole,mucosa of organ of terminal bronchiole +http://purl.obolibrary.org/obo/UBERON_0005040,mucosa of terminal bronchiole,mucous membrane of bronchiolus terminalis +http://purl.obolibrary.org/obo/UBERON_0005040,mucosa of terminal bronchiole,mucous membrane of terminal bronchiole +http://purl.obolibrary.org/obo/UBERON_0005040,mucosa of terminal bronchiole,organ mucosa of bronchiolus terminalis +http://purl.obolibrary.org/obo/UBERON_0005040,mucosa of terminal bronchiole,organ mucosa of terminal bronchiole +http://purl.obolibrary.org/obo/UBERON_0005040,mucosa of terminal bronchiole,terminal bronchiole mucosa +http://purl.obolibrary.org/obo/UBERON_0005040,mucosa of terminal bronchiole,terminal bronchiole mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005040,mucosa of terminal bronchiole,terminal bronchiole mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005040,mucosa of terminal bronchiole,terminal bronchiole organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005041,mucosa of respiratory bronchiole,bronchiolus respiratorius mucosa +http://purl.obolibrary.org/obo/UBERON_0005041,mucosa of respiratory bronchiole,bronchiolus respiratorius mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005041,mucosa of respiratory bronchiole,bronchiolus respiratorius mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005041,mucosa of respiratory bronchiole,bronchiolus respiratorius organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005041,mucosa of respiratory bronchiole,mucosa of bronchiolus respiratorius +http://purl.obolibrary.org/obo/UBERON_0005041,mucosa of respiratory bronchiole,mucosa of organ of bronchiolus respiratorius +http://purl.obolibrary.org/obo/UBERON_0005041,mucosa of respiratory bronchiole,mucosa of organ of respiratory bronchiole +http://purl.obolibrary.org/obo/UBERON_0005041,mucosa of respiratory bronchiole,mucous membrane of bronchiolus respiratorius +http://purl.obolibrary.org/obo/UBERON_0005041,mucosa of respiratory bronchiole,mucous membrane of respiratory bronchiole +http://purl.obolibrary.org/obo/UBERON_0005041,mucosa of respiratory bronchiole,organ mucosa of bronchiolus respiratorius +http://purl.obolibrary.org/obo/UBERON_0005041,mucosa of respiratory bronchiole,organ mucosa of respiratory bronchiole +http://purl.obolibrary.org/obo/UBERON_0005041,mucosa of respiratory bronchiole,respiratory bronchiole mucosa +http://purl.obolibrary.org/obo/UBERON_0005041,mucosa of respiratory bronchiole,respiratory bronchiole mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005041,mucosa of respiratory bronchiole,respiratory bronchiole mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005041,mucosa of respiratory bronchiole,respiratory bronchiole organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005042,inner epithelial layer of tympanic membrane,mucosa of tympanic membrane +http://purl.obolibrary.org/obo/UBERON_0005042,inner epithelial layer of tympanic membrane,mucous layer of tympanic membrane +http://purl.obolibrary.org/obo/UBERON_0005042,inner epithelial layer of tympanic membrane,mucous stratum of tympanic membrane +http://purl.obolibrary.org/obo/UBERON_0005042,inner epithelial layer of tympanic membrane,tympanic membrane external middle ear cavity epithelial component +http://purl.obolibrary.org/obo/UBERON_0005042,inner epithelial layer of tympanic membrane,tympanic membrane mucosa +http://purl.obolibrary.org/obo/UBERON_0005043,mucosa of nasolacrimal duct,mucosa of organ of nasolacrimal duct +http://purl.obolibrary.org/obo/UBERON_0005043,mucosa of nasolacrimal duct,mucous membrane of nasolacrimal duct +http://purl.obolibrary.org/obo/UBERON_0005043,mucosa of nasolacrimal duct,nasolacrimal duct mucosa +http://purl.obolibrary.org/obo/UBERON_0005043,mucosa of nasolacrimal duct,nasolacrimal duct mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005043,mucosa of nasolacrimal duct,nasolacrimal duct mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005043,mucosa of nasolacrimal duct,nasolacrimal duct organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005043,mucosa of nasolacrimal duct,nasolacrimal ductal mucosa +http://purl.obolibrary.org/obo/UBERON_0005043,mucosa of nasolacrimal duct,organ mucosa of nasolacrimal duct +http://purl.obolibrary.org/obo/UBERON_0005044,mucosa of pharyngotympanic tube,auditory tube mucosa +http://purl.obolibrary.org/obo/UBERON_0005044,mucosa of pharyngotympanic tube,auditory tube mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005044,mucosa of pharyngotympanic tube,auditory tube mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005044,mucosa of pharyngotympanic tube,auditory tube organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005044,mucosa of pharyngotympanic tube,internal auditory tube mucosa +http://purl.obolibrary.org/obo/UBERON_0005044,mucosa of pharyngotympanic tube,internal auditory tube mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005044,mucosa of pharyngotympanic tube,internal auditory tube mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005044,mucosa of pharyngotympanic tube,internal auditory tube organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005044,mucosa of pharyngotympanic tube,mucosa of auditory tube +http://purl.obolibrary.org/obo/UBERON_0005044,mucosa of pharyngotympanic tube,mucosa of internal auditory tube +http://purl.obolibrary.org/obo/UBERON_0005044,mucosa of pharyngotympanic tube,mucosa of organ of auditory tube +http://purl.obolibrary.org/obo/UBERON_0005044,mucosa of pharyngotympanic tube,mucosa of organ of internal auditory tube +http://purl.obolibrary.org/obo/UBERON_0005044,mucosa of pharyngotympanic tube,mucosa of organ of pharyngotympanic tube +http://purl.obolibrary.org/obo/UBERON_0005044,mucosa of pharyngotympanic tube,mucous membrane of auditory tube +http://purl.obolibrary.org/obo/UBERON_0005044,mucosa of pharyngotympanic tube,mucous membrane of internal auditory tube +http://purl.obolibrary.org/obo/UBERON_0005044,mucosa of pharyngotympanic tube,mucous membrane of pharyngotympanic tube +http://purl.obolibrary.org/obo/UBERON_0005044,mucosa of pharyngotympanic tube,mucuous membrane of eustachian tube +http://purl.obolibrary.org/obo/UBERON_0005044,mucosa of pharyngotympanic tube,mucuous membrane of pharyngotympanic tube +http://purl.obolibrary.org/obo/UBERON_0005044,mucosa of pharyngotympanic tube,organ mucosa of auditory tube +http://purl.obolibrary.org/obo/UBERON_0005044,mucosa of pharyngotympanic tube,organ mucosa of internal auditory tube +http://purl.obolibrary.org/obo/UBERON_0005044,mucosa of pharyngotympanic tube,organ mucosa of pharyngotympanic tube +http://purl.obolibrary.org/obo/UBERON_0005044,mucosa of pharyngotympanic tube,pharyngotympanic tube mucosa +http://purl.obolibrary.org/obo/UBERON_0005044,mucosa of pharyngotympanic tube,pharyngotympanic tube mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005044,mucosa of pharyngotympanic tube,pharyngotympanic tube mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005044,mucosa of pharyngotympanic tube,pharyngotympanic tube organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005044,mucosa of pharyngotympanic tube,tunica mucosa (tuba auditiva) +http://purl.obolibrary.org/obo/UBERON_0005044,mucosa of pharyngotympanic tube,tunica mucosa (tuba auditoria) +http://purl.obolibrary.org/obo/UBERON_0005045,mucosa of ethmoidal sinus,ethmoid sinus mucosa +http://purl.obolibrary.org/obo/UBERON_0005045,mucosa of ethmoidal sinus,ethmoid sinus mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005045,mucosa of ethmoidal sinus,ethmoid sinus mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005045,mucosa of ethmoidal sinus,ethmoid sinus organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005045,mucosa of ethmoidal sinus,ethmoidal sinus mucosa +http://purl.obolibrary.org/obo/UBERON_0005045,mucosa of ethmoidal sinus,mucosa of ethmoid sinus +http://purl.obolibrary.org/obo/UBERON_0005045,mucosa of ethmoidal sinus,mucosa of organ of ethmoid sinus +http://purl.obolibrary.org/obo/UBERON_0005045,mucosa of ethmoidal sinus,mucous membrane of ethmoid sinus +http://purl.obolibrary.org/obo/UBERON_0005045,mucosa of ethmoidal sinus,organ mucosa of ethmoid sinus +http://purl.obolibrary.org/obo/UBERON_0005046,mucosa of hard palate,hard palate mucosa +http://purl.obolibrary.org/obo/UBERON_0005046,mucosa of hard palate,hard palate mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005046,mucosa of hard palate,mucous membrane of hard palate +http://purl.obolibrary.org/obo/UBERON_0005046,mucosa of hard palate,organ mucosa of hard palate +http://purl.obolibrary.org/obo/UBERON_0005047,mucosa of vocal fold,mucosa of glottis +http://purl.obolibrary.org/obo/UBERON_0005047,mucosa of vocal fold,mucosa of organ of true vocal cord +http://purl.obolibrary.org/obo/UBERON_0005047,mucosa of vocal fold,mucosa of organ of vocal cord +http://purl.obolibrary.org/obo/UBERON_0005047,mucosa of vocal fold,mucosa of true vocal cord +http://purl.obolibrary.org/obo/UBERON_0005047,mucosa of vocal fold,mucosa of vocal cord +http://purl.obolibrary.org/obo/UBERON_0005047,mucosa of vocal fold,mucous membrane of true vocal cord +http://purl.obolibrary.org/obo/UBERON_0005047,mucosa of vocal fold,mucous membrane of vocal cord +http://purl.obolibrary.org/obo/UBERON_0005047,mucosa of vocal fold,organ mucosa of true vocal cord +http://purl.obolibrary.org/obo/UBERON_0005047,mucosa of vocal fold,organ mucosa of vocal cord +http://purl.obolibrary.org/obo/UBERON_0005047,mucosa of vocal fold,true vocal cord mucosa +http://purl.obolibrary.org/obo/UBERON_0005047,mucosa of vocal fold,true vocal cord mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005047,mucosa of vocal fold,true vocal cord mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005047,mucosa of vocal fold,true vocal cord organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005047,mucosa of vocal fold,vocal cord mucosa +http://purl.obolibrary.org/obo/UBERON_0005047,mucosa of vocal fold,vocal cord mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005047,mucosa of vocal fold,vocal cord mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005047,mucosa of vocal fold,vocal cord organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005047,mucosa of vocal fold,vocal fold mucosa +http://purl.obolibrary.org/obo/UBERON_0005048,mucosa of uterine tube,fallopian tube mucosa +http://purl.obolibrary.org/obo/UBERON_0005048,mucosa of uterine tube,fallopian tube mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005048,mucosa of uterine tube,fallopian tube mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005048,mucosa of uterine tube,fallopian tube organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005048,mucosa of uterine tube,mucosa of fallopian tube +http://purl.obolibrary.org/obo/UBERON_0005048,mucosa of uterine tube,mucosa of organ of fallopian tube +http://purl.obolibrary.org/obo/UBERON_0005048,mucosa of uterine tube,mucosa of organ of uterine tube +http://purl.obolibrary.org/obo/UBERON_0005048,mucosa of uterine tube,mucosa of oviduct +http://purl.obolibrary.org/obo/UBERON_0005048,mucosa of uterine tube,mucous membrane of fallopian tube +http://purl.obolibrary.org/obo/UBERON_0005048,mucosa of uterine tube,mucous membrane of uterine tube +http://purl.obolibrary.org/obo/UBERON_0005048,mucosa of uterine tube,organ mucosa of fallopian tube +http://purl.obolibrary.org/obo/UBERON_0005048,mucosa of uterine tube,organ mucosa of uterine tube +http://purl.obolibrary.org/obo/UBERON_0005048,mucosa of uterine tube,tunica mucosa tubae uterinae +http://purl.obolibrary.org/obo/UBERON_0005048,mucosa of uterine tube,uterine tubal mucosa +http://purl.obolibrary.org/obo/UBERON_0005048,mucosa of uterine tube,uterine tube mucosa +http://purl.obolibrary.org/obo/UBERON_0005048,mucosa of uterine tube,uterine tube mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005048,mucosa of uterine tube,uterine tube mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005048,mucosa of uterine tube,uterine tube organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005049,mucosa of infundibulum of uterine tube,mucosa of infundibulum of fallopian tube +http://purl.obolibrary.org/obo/UBERON_0005049,mucosa of infundibulum of uterine tube,mucosa of infundibulum of oviduct +http://purl.obolibrary.org/obo/UBERON_0005049,mucosa of infundibulum of uterine tube,mucosa of organ of uterine tube infundibulum +http://purl.obolibrary.org/obo/UBERON_0005049,mucosa of infundibulum of uterine tube,mucosa of uterine tube infundibulum +http://purl.obolibrary.org/obo/UBERON_0005049,mucosa of infundibulum of uterine tube,mucous membrane of uterine tube infundibulum +http://purl.obolibrary.org/obo/UBERON_0005049,mucosa of infundibulum of uterine tube,organ mucosa of uterine tube infundibulum +http://purl.obolibrary.org/obo/UBERON_0005049,mucosa of infundibulum of uterine tube,uterine tube infundibulum mucosa +http://purl.obolibrary.org/obo/UBERON_0005049,mucosa of infundibulum of uterine tube,uterine tube infundibulum mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0005049,mucosa of infundibulum of uterine tube,uterine tube infundibulum mucous membrane +http://purl.obolibrary.org/obo/UBERON_0005049,mucosa of infundibulum of uterine tube,uterine tube infundibulum organ mucosa +http://purl.obolibrary.org/obo/UBERON_0005050,liver papillary process,processus papillaris +http://purl.obolibrary.org/obo/UBERON_0005050,liver papillary process,processus papillaris lobi caudati hepatis +http://purl.obolibrary.org/obo/UBERON_0005051,mediastinum testis,body of highmore +http://purl.obolibrary.org/obo/UBERON_0005051,mediastinum testis,hilum of testicle +http://purl.obolibrary.org/obo/UBERON_0005051,mediastinum testis,mediastinum of testis +http://purl.obolibrary.org/obo/UBERON_0005051,mediastinum testis,testis mediastinum +http://purl.obolibrary.org/obo/UBERON_0005052,gizzard,gastric mill +http://purl.obolibrary.org/obo/UBERON_0005052,gizzard,gigerium +http://purl.obolibrary.org/obo/UBERON_0005053,primary nerve cord,nerve cord +http://purl.obolibrary.org/obo/UBERON_0005053,primary nerve cord,true nerve cord +http://purl.obolibrary.org/obo/UBERON_0005054,primary dorsal nerve cord,dorsal nerve cord +http://purl.obolibrary.org/obo/UBERON_0005054,primary dorsal nerve cord,true dorsal nerve cord +http://purl.obolibrary.org/obo/UBERON_0005055,zone of long bone,long bone zone +http://purl.obolibrary.org/obo/UBERON_0005056,external female genitalia,external female genital organ +http://purl.obolibrary.org/obo/UBERON_0005056,external female genitalia,external genitalia of female reproductive system +http://purl.obolibrary.org/obo/UBERON_0005056,external female genitalia,female external genitalia +http://purl.obolibrary.org/obo/UBERON_0005056,external female genitalia,organa genitalia feminina externa +http://purl.obolibrary.org/obo/UBERON_0005057,immune organ,immune system organ +http://purl.obolibrary.org/obo/UBERON_0005058,hemolymphoid system gland,haemolymphoid system gland +http://purl.obolibrary.org/obo/UBERON_0005058,hemolymphoid system gland,hemopoietic or lymphoid gland +http://purl.obolibrary.org/obo/UBERON_0005058,hemolymphoid system gland,hemopoietic or lymphoid organ +http://purl.obolibrary.org/obo/UBERON_0005061,neural groove, +http://purl.obolibrary.org/obo/UBERON_0005062,neural fold,medullary fold +http://purl.obolibrary.org/obo/UBERON_0005063,left ventricular compact myocardium, +http://purl.obolibrary.org/obo/UBERON_0005064,left ventricular trabecular myocardium, +http://purl.obolibrary.org/obo/UBERON_0005065,right ventricular compact myocardium, +http://purl.obolibrary.org/obo/UBERON_0005066,right ventricular trabecular myocardium, +http://purl.obolibrary.org/obo/UBERON_0005067,amphid sensory organ,amphid sensillum +http://purl.obolibrary.org/obo/UBERON_0005068,neural rod, +http://purl.obolibrary.org/obo/UBERON_0005069,neural fold hinge point, +http://purl.obolibrary.org/obo/UBERON_0005070,anterior neuropore,cephalic neuropore +http://purl.obolibrary.org/obo/UBERON_0005070,anterior neuropore,cranial neuropore +http://purl.obolibrary.org/obo/UBERON_0005070,anterior neuropore,rostral neuropore +http://purl.obolibrary.org/obo/UBERON_0005071,posterior neuropore,caudal neuropore +http://purl.obolibrary.org/obo/UBERON_0005075,forebrain-midbrain boundary,diencephalic-mesencephalic boundary +http://purl.obolibrary.org/obo/UBERON_0005075,forebrain-midbrain boundary,forebrain midbrain boundary +http://purl.obolibrary.org/obo/UBERON_0005075,forebrain-midbrain boundary,forebrain-midbrain boundary region +http://purl.obolibrary.org/obo/UBERON_0005076,hindbrain-spinal cord boundary,hindbrain-spinal cord boundary region +http://purl.obolibrary.org/obo/UBERON_0005077,neuropore, +http://purl.obolibrary.org/obo/UBERON_0005078,lamina terminalis of neural tube, +http://purl.obolibrary.org/obo/UBERON_0005079,eggshell,egg shell +http://purl.obolibrary.org/obo/UBERON_0005080,metanephric ureteric bud, +http://purl.obolibrary.org/obo/UBERON_0005081,ureter ureteric bud, +http://purl.obolibrary.org/obo/UBERON_0005082,tube lumen, +http://purl.obolibrary.org/obo/UBERON_0005083,nipple sheath, +http://purl.obolibrary.org/obo/UBERON_0005085,ectodermal placode, +http://purl.obolibrary.org/obo/UBERON_0005086,hair follicle placode,hair placode +http://purl.obolibrary.org/obo/UBERON_0005087,tooth placode,dental anlage +http://purl.obolibrary.org/obo/UBERON_0005087,tooth placode,dental placode +http://purl.obolibrary.org/obo/UBERON_0005087,tooth placode,dental primordium +http://purl.obolibrary.org/obo/UBERON_0005087,tooth placode,odontogenic placode +http://purl.obolibrary.org/obo/UBERON_0005087,tooth placode,tooth anlage +http://purl.obolibrary.org/obo/UBERON_0005087,tooth placode,tooth primordium +http://purl.obolibrary.org/obo/UBERON_0005088,sebaceous gland placode, +http://purl.obolibrary.org/obo/UBERON_0005089,sweat gland placode, +http://purl.obolibrary.org/obo/UBERON_0005090,muscle structure,muscle +http://purl.obolibrary.org/obo/UBERON_0005090,muscle structure,muscle element +http://purl.obolibrary.org/obo/UBERON_0005090,muscle structure,musculus +http://purl.obolibrary.org/obo/UBERON_0005091,left horn of sinus venosus,sinus venosus left horn +http://purl.obolibrary.org/obo/UBERON_0005092,right horn of sinus venosus,sinus venosus right horn +http://purl.obolibrary.org/obo/UBERON_0005093,embryonic cement gland, +http://purl.obolibrary.org/obo/UBERON_0005094,beak,avian beak +http://purl.obolibrary.org/obo/UBERON_0005095,kidney rudiment, +http://purl.obolibrary.org/obo/UBERON_0005096,descending thin limb,descending thin limb of loop of Henle +http://purl.obolibrary.org/obo/UBERON_0005096,descending thin limb,loop of Henle descending thin limb +http://purl.obolibrary.org/obo/UBERON_0005096,descending thin limb,loop of Henle thin descending limb +http://purl.obolibrary.org/obo/UBERON_0005096,descending thin limb,pars descendens (tubulus attenuatus) +http://purl.obolibrary.org/obo/UBERON_0005096,descending thin limb,thin descending limb +http://purl.obolibrary.org/obo/UBERON_0005097,renal connecting tubule,connecting tubule +http://purl.obolibrary.org/obo/UBERON_0005097,renal connecting tubule,kidney connecting tubule +http://purl.obolibrary.org/obo/UBERON_0005099,short descending thin limb, +http://purl.obolibrary.org/obo/UBERON_0005100,long descending thin limb, +http://purl.obolibrary.org/obo/UBERON_0005101,early distal convoluted tubule, +http://purl.obolibrary.org/obo/UBERON_0005102,late distal convoluted tubule, +http://purl.obolibrary.org/obo/UBERON_0005103,mesonephric epithelium, +http://purl.obolibrary.org/obo/UBERON_0005104,anterior mesonephric tubule,cranial mesonephric tubule +http://purl.obolibrary.org/obo/UBERON_0005105,posterior mesonephric tubule,caudal mesonephric tubule +http://purl.obolibrary.org/obo/UBERON_0005106,metanephric tubule, +http://purl.obolibrary.org/obo/UBERON_0005107,metanephric cap,cap mesenchyme +http://purl.obolibrary.org/obo/UBERON_0005108,metanephric epithelium, +http://purl.obolibrary.org/obo/UBERON_0005109,metanephric smooth muscle tissue, +http://purl.obolibrary.org/obo/UBERON_0005110,metanephric nephron, +http://purl.obolibrary.org/obo/UBERON_0005111,metanephric pyramid, +http://purl.obolibrary.org/obo/UBERON_0005113,metanephric cortex mesenchyme, +http://purl.obolibrary.org/obo/UBERON_0005114,metanephric ascending thin limb, +http://purl.obolibrary.org/obo/UBERON_0005115,metanephric cortical collecting duct, +http://purl.obolibrary.org/obo/UBERON_0005116,metanephric descending thin limb, +http://purl.obolibrary.org/obo/UBERON_0005117,metanephric distal convoluted tubule, +http://purl.obolibrary.org/obo/UBERON_0005118,metanephric early distal convoluted tubule, +http://purl.obolibrary.org/obo/UBERON_0005119,metanephric glomerular mesangium, +http://purl.obolibrary.org/obo/UBERON_0005120,metanephric late distal convoluted tubule, +http://purl.obolibrary.org/obo/UBERON_0005121,metanephric long descending thin limb bend, +http://purl.obolibrary.org/obo/UBERON_0005122,metanephric macula densa, +http://purl.obolibrary.org/obo/UBERON_0005123,metanephric prebend segment, +http://purl.obolibrary.org/obo/UBERON_0005124,metanephric proximal convoluted tubule, +http://purl.obolibrary.org/obo/UBERON_0005125,metanephric proximal straight tubule, +http://purl.obolibrary.org/obo/UBERON_0005126,metanephric S1, +http://purl.obolibrary.org/obo/UBERON_0005127,metanephric thick ascending limb, +http://purl.obolibrary.org/obo/UBERON_0005129,metanephric distal tubule, +http://purl.obolibrary.org/obo/UBERON_0005130,metanephric loop of Henle, +http://purl.obolibrary.org/obo/UBERON_0005132,metanephric long nephron, +http://purl.obolibrary.org/obo/UBERON_0005133,metanephric glomerulus vasculature, +http://purl.obolibrary.org/obo/UBERON_0005134,metanephric nephron epithelium, +http://purl.obolibrary.org/obo/UBERON_0005135,metanephric glomerular epithelium, +http://purl.obolibrary.org/obo/UBERON_0005136,metanephric glomerular endothelium, +http://purl.obolibrary.org/obo/UBERON_0005137,metanephric capsule, +http://purl.obolibrary.org/obo/UBERON_0005139,metanephric long descending thin limb, +http://purl.obolibrary.org/obo/UBERON_0005140,metanephric short nephron, +http://purl.obolibrary.org/obo/UBERON_0005141,metanephric short descending thin limb, +http://purl.obolibrary.org/obo/UBERON_0005144,metanephric glomerular capillary, +http://purl.obolibrary.org/obo/UBERON_0005145,metanephric comma-shaped body, +http://purl.obolibrary.org/obo/UBERON_0005146,metanephric nephron tubule, +http://purl.obolibrary.org/obo/UBERON_0005147,metanephric renal vesicle,metanephric vesicle +http://purl.obolibrary.org/obo/UBERON_0005148,metanephric S-shaped body, +http://purl.obolibrary.org/obo/UBERON_0005149,metanephric connecting tubule, +http://purl.obolibrary.org/obo/UBERON_0005151,metanephric proximal tubule, +http://purl.obolibrary.org/obo/UBERON_0005153,epithelial bud, +http://purl.obolibrary.org/obo/UBERON_0005154,epithelial cord, +http://purl.obolibrary.org/obo/UBERON_0005155,open tracheal system,invertebrate tracheal system +http://purl.obolibrary.org/obo/UBERON_0005155,open tracheal system,open tracheal system +http://purl.obolibrary.org/obo/UBERON_0005155,open tracheal system,tracheal system +http://purl.obolibrary.org/obo/UBERON_0005156,reproductive structure,reproductive system element +http://purl.obolibrary.org/obo/UBERON_0005156,reproductive structure,reproductive system structure +http://purl.obolibrary.org/obo/UBERON_0005157,epithelial fold, +http://purl.obolibrary.org/obo/UBERON_0005158,parenchyma of central nervous system,CNS parenchyma +http://purl.obolibrary.org/obo/UBERON_0005158,parenchyma of central nervous system,central nervous system parenchyma +http://purl.obolibrary.org/obo/UBERON_0005158,parenchyma of central nervous system,parenchyma of CNS +http://purl.obolibrary.org/obo/UBERON_0005158,parenchyma of central nervous system,parenchyma of central nervous system +http://purl.obolibrary.org/obo/UBERON_0005159,pyramid of medulla oblongata,lobule VIII of Larsell +http://purl.obolibrary.org/obo/UBERON_0005159,pyramid of medulla oblongata,pyramid of medulla oblongata +http://purl.obolibrary.org/obo/UBERON_0005159,pyramid of medulla oblongata,pyramis (medullae oblongatae) +http://purl.obolibrary.org/obo/UBERON_0005159,pyramid of medulla oblongata,pyramis bulbi +http://purl.obolibrary.org/obo/UBERON_0005159,pyramid of medulla oblongata,pyramis medullae oblongatae +http://purl.obolibrary.org/obo/UBERON_0005160,vestigial structure, +http://purl.obolibrary.org/obo/UBERON_0005161,pelvic spur, +http://purl.obolibrary.org/obo/UBERON_0005162,multi cell part structure,cell part cluster +http://purl.obolibrary.org/obo/UBERON_0005162,multi cell part structure,multi-cell-component structure +http://purl.obolibrary.org/obo/UBERON_0005162,multi cell part structure,multi-cell-part structure +http://purl.obolibrary.org/obo/UBERON_0005164,ascending limb of loop of Henle,ascending limb of Henle's loop +http://purl.obolibrary.org/obo/UBERON_0005164,ascending limb of loop of Henle,loop of Henle ascending limb +http://purl.obolibrary.org/obo/UBERON_0005167,papillary duct,papillary duct +http://purl.obolibrary.org/obo/UBERON_0005167,papillary duct,papillary duct of kidney +http://purl.obolibrary.org/obo/UBERON_0005167,papillary duct,renal papillary duct +http://purl.obolibrary.org/obo/UBERON_0005168,renal interlobular vein,interlobular vein +http://purl.obolibrary.org/obo/UBERON_0005168,renal interlobular vein,venae interlobulares renis +http://purl.obolibrary.org/obo/UBERON_0005169,interstitial tissue,interstitium +http://purl.obolibrary.org/obo/UBERON_0005170,granulosa cell layer,granulosa cell layer of ovarian follicle +http://purl.obolibrary.org/obo/UBERON_0005170,granulosa cell layer,membrana granulosa of ovarian follicle +http://purl.obolibrary.org/obo/UBERON_0005170,granulosa cell layer,ovary stratum granulosum +http://purl.obolibrary.org/obo/UBERON_0005170,granulosa cell layer,stratum granulosum of ovarian follicle +http://purl.obolibrary.org/obo/UBERON_0005171,hepatic duct, +http://purl.obolibrary.org/obo/UBERON_0005172,abdomen element,abdomen organ +http://purl.obolibrary.org/obo/UBERON_0005173,abdominal segment element,abdominal segment organ +http://purl.obolibrary.org/obo/UBERON_0005174,dorsal region element,back organ +http://purl.obolibrary.org/obo/UBERON_0005174,dorsal region element,dorsal region organ +http://purl.obolibrary.org/obo/UBERON_0005175,chest organ, +http://purl.obolibrary.org/obo/UBERON_0005176,tooth enamel organ,dental organ +http://purl.obolibrary.org/obo/UBERON_0005176,tooth enamel organ,enamel organ +http://purl.obolibrary.org/obo/UBERON_0005177,trunk region element,trunk organ +http://purl.obolibrary.org/obo/UBERON_0005178,thoracic cavity element,thoracic cavity organ +http://purl.obolibrary.org/obo/UBERON_0005179,pelvic region element,pelvic element +http://purl.obolibrary.org/obo/UBERON_0005179,pelvic region element,pelvis organ +http://purl.obolibrary.org/obo/UBERON_0005179,pelvic region element,pelvis region organ +http://purl.obolibrary.org/obo/UBERON_0005181,thoracic segment organ,upper body organ +http://purl.obolibrary.org/obo/UBERON_0005184,hair medulla, +http://purl.obolibrary.org/obo/UBERON_0005185,renal medulla collecting duct,kidney medulla collecting duct +http://purl.obolibrary.org/obo/UBERON_0005185,renal medulla collecting duct,medullary collecting duct +http://purl.obolibrary.org/obo/UBERON_0005192,deferent duct artery,arteria ductus deferentis +http://purl.obolibrary.org/obo/UBERON_0005192,deferent duct artery,artery of ductus deferens +http://purl.obolibrary.org/obo/UBERON_0005192,deferent duct artery,ductus deferens artery +http://purl.obolibrary.org/obo/UBERON_0005192,deferent duct artery,vas deferens artery +http://purl.obolibrary.org/obo/UBERON_0005193,ethmoidal artery,ethmoid artery +http://purl.obolibrary.org/obo/UBERON_0005194,thoracic vein, +http://purl.obolibrary.org/obo/UBERON_0005195,deferent duct vein, +http://purl.obolibrary.org/obo/UBERON_0005196,spleen germinal center,germinal center of spleen +http://purl.obolibrary.org/obo/UBERON_0005196,spleen germinal center,spleen GC +http://purl.obolibrary.org/obo/UBERON_0005196,spleen germinal center,spleen follicle center +http://purl.obolibrary.org/obo/UBERON_0005196,spleen germinal center,splenic germinal center +http://purl.obolibrary.org/obo/UBERON_0005197,segmental spinal nerve,cervical segmental spinal nerves C1-7 +http://purl.obolibrary.org/obo/UBERON_0005199,cervical mammary gland, +http://purl.obolibrary.org/obo/UBERON_0005200,thoracic mammary gland,breast mammary gland +http://purl.obolibrary.org/obo/UBERON_0005202,distal straight tubule macula densa, +http://purl.obolibrary.org/obo/UBERON_0005203,trachea gland,glandula trachealis +http://purl.obolibrary.org/obo/UBERON_0005203,trachea gland,tracheal gland +http://purl.obolibrary.org/obo/UBERON_0005204,larynx submucosa gland, +http://purl.obolibrary.org/obo/UBERON_0005205,lamina propria of vagina, +http://purl.obolibrary.org/obo/UBERON_0005206,choroid plexus stroma,choroid plexus stromal matrix +http://purl.obolibrary.org/obo/UBERON_0005207,tonsil capsule, +http://purl.obolibrary.org/obo/UBERON_0005208,right atrium valve,valve of right atrium +http://purl.obolibrary.org/obo/UBERON_0005211,renal medulla interstitium,kidney medulla interstitium +http://purl.obolibrary.org/obo/UBERON_0005211,renal medulla interstitium,renal medullary interstitial tissue +http://purl.obolibrary.org/obo/UBERON_0005211,renal medulla interstitium,renal medullary interstitium +http://purl.obolibrary.org/obo/UBERON_0005212,Leydig cell region of testis,interstitium of testis +http://purl.obolibrary.org/obo/UBERON_0005212,Leydig cell region of testis,interstitium of the testis +http://purl.obolibrary.org/obo/UBERON_0005212,Leydig cell region of testis,testis - interstitial +http://purl.obolibrary.org/obo/UBERON_0005212,Leydig cell region of testis,testis interstitial tissue +http://purl.obolibrary.org/obo/UBERON_0005212,Leydig cell region of testis,testis interstitium +http://purl.obolibrary.org/obo/UBERON_0005213,outer renal medulla interstitium,kidney outer medulla interstitium +http://purl.obolibrary.org/obo/UBERON_0005213,outer renal medulla interstitium,outer medullary interstitium +http://purl.obolibrary.org/obo/UBERON_0005214,inner renal medulla interstitium,inner medullary interstitium +http://purl.obolibrary.org/obo/UBERON_0005214,inner renal medulla interstitium,kidney inner medulla interstitium +http://purl.obolibrary.org/obo/UBERON_0005215,kidney interstitium,interstitial tissue of kidney +http://purl.obolibrary.org/obo/UBERON_0005215,kidney interstitium,renal interstitial tissue +http://purl.obolibrary.org/obo/UBERON_0005215,kidney interstitium,renal interstitium +http://purl.obolibrary.org/obo/UBERON_0005215,kidney interstitium,renal stroma +http://purl.obolibrary.org/obo/UBERON_0005215,kidney interstitium,stroma of kidney +http://purl.obolibrary.org/obo/UBERON_0005216,optic eminence surface ectoderm, +http://purl.obolibrary.org/obo/UBERON_0005217,midbrain subarachnoid space,subarachnoid space midbrain +http://purl.obolibrary.org/obo/UBERON_0005218,diencephalon subarachnoid space,subarachnoid space diencephalon +http://purl.obolibrary.org/obo/UBERON_0005219,hindbrain subarachnoid space,subarachnoid space hindbrain +http://purl.obolibrary.org/obo/UBERON_0005220,pancreas head parenchyma, +http://purl.obolibrary.org/obo/UBERON_0005221,liver right lobe parenchyma,parenchyma of right lobe of liver +http://purl.obolibrary.org/obo/UBERON_0005222,liver left lobe parenchyma,parenchyma of left lobe of liver +http://purl.obolibrary.org/obo/UBERON_0005223,pancreas body parenchyma, +http://purl.obolibrary.org/obo/UBERON_0005224,pancreas tail parenchyma, +http://purl.obolibrary.org/obo/UBERON_0005225,upper leg epithelium, +http://purl.obolibrary.org/obo/UBERON_0005226,pedal digit epithelium,hind limb digit epithelium +http://purl.obolibrary.org/obo/UBERON_0005226,pedal digit epithelium,toe epithelium +http://purl.obolibrary.org/obo/UBERON_0005227,manual digit epithelium,finger epithelium +http://purl.obolibrary.org/obo/UBERON_0005227,manual digit epithelium,fore limb digit epithelium +http://purl.obolibrary.org/obo/UBERON_0005228,upper arm epithelium, +http://purl.obolibrary.org/obo/UBERON_0005229,lower leg epithelium, +http://purl.obolibrary.org/obo/UBERON_0005233,medial-nasal process ectoderm, +http://purl.obolibrary.org/obo/UBERON_0005234,optic eminence ectoderm, +http://purl.obolibrary.org/obo/UBERON_0005236,osseus labyrinth vestibule,bony labyrinth vestibule +http://purl.obolibrary.org/obo/UBERON_0005236,osseus labyrinth vestibule,inner ear vestibulum +http://purl.obolibrary.org/obo/UBERON_0005236,osseus labyrinth vestibule,osseous labyrinth vestibule +http://purl.obolibrary.org/obo/UBERON_0005236,osseus labyrinth vestibule,vestibule of bony labyrinth +http://purl.obolibrary.org/obo/UBERON_0005239,basal plate metencephalon,metencephalon basal plate +http://purl.obolibrary.org/obo/UBERON_0005240,basal plate medulla oblongata,medulla oblongata basal plate +http://purl.obolibrary.org/obo/UBERON_0005243,interventricular septum endocardium,endocardium of interventricular septum +http://purl.obolibrary.org/obo/UBERON_0005244,lobar bronchus of right lung cranial lobe,right lung cranial lobe lobar bronchus +http://purl.obolibrary.org/obo/UBERON_0005244,lobar bronchus of right lung cranial lobe,right superior lobar bronchus +http://purl.obolibrary.org/obo/UBERON_0005244,lobar bronchus of right lung cranial lobe,right upper lobar bronchus +http://purl.obolibrary.org/obo/UBERON_0005244,lobar bronchus of right lung cranial lobe,right upper lobe bronchus +http://purl.obolibrary.org/obo/UBERON_0005245,lobar bronchus of right lung caudal lobe,lobar bronchus of caudal lobe +http://purl.obolibrary.org/obo/UBERON_0005248,bulbus cordis myocardium, +http://purl.obolibrary.org/obo/UBERON_0005249,metanephric renal pelvis,metanephros pelvis +http://purl.obolibrary.org/obo/UBERON_0005250,stomatodeum gland,stomatodaeum gland +http://purl.obolibrary.org/obo/UBERON_0005251,yolk sac cavity,cavity of yolk sac +http://purl.obolibrary.org/obo/UBERON_0005251,yolk sac cavity,yolk sac lumen +http://purl.obolibrary.org/obo/UBERON_0005252,lesser sac cavity,cavity of lesser sac +http://purl.obolibrary.org/obo/UBERON_0005252,lesser sac cavity,cavity of omental bursa +http://purl.obolibrary.org/obo/UBERON_0005252,lesser sac cavity,cavity of omental bursa viewed anatomically +http://purl.obolibrary.org/obo/UBERON_0005252,lesser sac cavity,lesser peritoneal sac +http://purl.obolibrary.org/obo/UBERON_0005252,lesser sac cavity,lesser sac cavity +http://purl.obolibrary.org/obo/UBERON_0005252,lesser sac cavity,omental bursa cavity +http://purl.obolibrary.org/obo/UBERON_0005253,head mesenchyme,cephalic mesenchyme +http://purl.obolibrary.org/obo/UBERON_0005254,upper leg mesenchyme, +http://purl.obolibrary.org/obo/UBERON_0005255,pedal digit mesenchyme,hind limb digit mesenchyme +http://purl.obolibrary.org/obo/UBERON_0005255,pedal digit mesenchyme,toe mesenchyme +http://purl.obolibrary.org/obo/UBERON_0005256,trunk mesenchyme, +http://purl.obolibrary.org/obo/UBERON_0005257,manual digit mesenchyme,finger mesenchyme +http://purl.obolibrary.org/obo/UBERON_0005257,manual digit mesenchyme,fore limb digit mesenchyme +http://purl.obolibrary.org/obo/UBERON_0005258,upper arm mesenchyme, +http://purl.obolibrary.org/obo/UBERON_0005259,lower leg mesenchyme, +http://purl.obolibrary.org/obo/UBERON_0005261,atrium cardiac jelly, +http://purl.obolibrary.org/obo/UBERON_0005262,ventricle cardiac jelly, +http://purl.obolibrary.org/obo/UBERON_0005263,outflow tract cardiac jelly, +http://purl.obolibrary.org/obo/UBERON_0005268,renal cortex artery,kidney cortex artery +http://purl.obolibrary.org/obo/UBERON_0005268,renal cortex artery,renal cortex artery +http://purl.obolibrary.org/obo/UBERON_0005269,renal cortex vein, +http://purl.obolibrary.org/obo/UBERON_0005270,renal cortex interstitium,kidney cortex interstitium +http://purl.obolibrary.org/obo/UBERON_0005270,renal cortex interstitium,renal cortical interstitial tissue +http://purl.obolibrary.org/obo/UBERON_0005271,juxtamedullary cortex,inner cortex of kidney +http://purl.obolibrary.org/obo/UBERON_0005271,juxtamedullary cortex,inner renal cortex +http://purl.obolibrary.org/obo/UBERON_0005271,juxtamedullary cortex,juxtamedullary cortex of kidney +http://purl.obolibrary.org/obo/UBERON_0005272,peritubular capillary, +http://purl.obolibrary.org/obo/UBERON_0005273,nail bed,nailbed +http://purl.obolibrary.org/obo/UBERON_0005274,proximal nail bed, +http://purl.obolibrary.org/obo/UBERON_0005275,dorsal skin of digit,dorsal digit skin +http://purl.obolibrary.org/obo/UBERON_0005275,dorsal skin of digit,skin of dorsal part of digit +http://purl.obolibrary.org/obo/UBERON_0005276,dorsal skin of finger,dorsal finger skin +http://purl.obolibrary.org/obo/UBERON_0005276,dorsal skin of finger,skin of dorsal part of finger +http://purl.obolibrary.org/obo/UBERON_0005276,dorsal skin of finger,subdivision of skin of dorsal part of finger +http://purl.obolibrary.org/obo/UBERON_0005277,dorsal skin of toe,dorsal toe skin +http://purl.obolibrary.org/obo/UBERON_0005277,dorsal skin of toe,skin of dorsal part of toe +http://purl.obolibrary.org/obo/UBERON_0005277,dorsal skin of toe,subdivision of skin of dorsal part of toe +http://purl.obolibrary.org/obo/UBERON_0005278,nail bed of finger,nail bed of finger +http://purl.obolibrary.org/obo/UBERON_0005279,nail bed of toe,nail bed of toe +http://purl.obolibrary.org/obo/UBERON_0005281,ventricular system of central nervous system,CNS ventricular system +http://purl.obolibrary.org/obo/UBERON_0005281,ventricular system of central nervous system,ventricle system +http://purl.obolibrary.org/obo/UBERON_0005281,ventricular system of central nervous system,ventricular system +http://purl.obolibrary.org/obo/UBERON_0005281,ventricular system of central nervous system,ventricular system of neuraxis +http://purl.obolibrary.org/obo/UBERON_0005281,ventricular system of central nervous system,ventriculi cerebri +http://purl.obolibrary.org/obo/UBERON_0005282,ventricular system of brain,brain ventricular system +http://purl.obolibrary.org/obo/UBERON_0005283,tela choroidea, +http://purl.obolibrary.org/obo/UBERON_0005286,tela choroidea of midbrain cerebral aqueduct,tela chorioidea tectal ventricle +http://purl.obolibrary.org/obo/UBERON_0005286,tela choroidea of midbrain cerebral aqueduct,tela choroidea of cerebral aqueduct +http://purl.obolibrary.org/obo/UBERON_0005286,tela choroidea of midbrain cerebral aqueduct,tela choroidea tectal ventricle +http://purl.obolibrary.org/obo/UBERON_0005287,tela choroidea of fourth ventricle,choroid membrane +http://purl.obolibrary.org/obo/UBERON_0005287,tela choroidea of fourth ventricle,choroid membrane of fourth ventricle +http://purl.obolibrary.org/obo/UBERON_0005287,tela choroidea of fourth ventricle,tela chorioidea fourth ventricle +http://purl.obolibrary.org/obo/UBERON_0005287,tela choroidea of fourth ventricle,tela choroidea fourth ventricle +http://purl.obolibrary.org/obo/UBERON_0005287,tela choroidea of fourth ventricle,tela choroidea of fourth ventricle +http://purl.obolibrary.org/obo/UBERON_0005287,tela choroidea of fourth ventricle,tela choroidea ventriculi quarti +http://purl.obolibrary.org/obo/UBERON_0005288,tela choroidea of third ventricle,choroid membrane of third ventricle +http://purl.obolibrary.org/obo/UBERON_0005288,tela choroidea of third ventricle,tela chorioidea of third ventricle +http://purl.obolibrary.org/obo/UBERON_0005288,tela choroidea of third ventricle,tela chorioidea third ventricle +http://purl.obolibrary.org/obo/UBERON_0005288,tela choroidea of third ventricle,tela choroidea third ventricle +http://purl.obolibrary.org/obo/UBERON_0005288,tela choroidea of third ventricle,tela choroidea ventriculi tertii +http://purl.obolibrary.org/obo/UBERON_0005289,tela choroidea of telencephalic ventricle,tela chorioidea of lateral ventricle +http://purl.obolibrary.org/obo/UBERON_0005289,tela choroidea of telencephalic ventricle,tela chorioidea of telencephalic ventricle +http://purl.obolibrary.org/obo/UBERON_0005289,tela choroidea of telencephalic ventricle,tela chorioidea telencephalic ventricle +http://purl.obolibrary.org/obo/UBERON_0005289,tela choroidea of telencephalic ventricle,tela choroidea (ventriculi lateralis) +http://purl.obolibrary.org/obo/UBERON_0005289,tela choroidea of telencephalic ventricle,tela choroidea of lateral ventricle +http://purl.obolibrary.org/obo/UBERON_0005289,tela choroidea of telencephalic ventricle,tela choroidea telencephalic ventricle +http://purl.obolibrary.org/obo/UBERON_0005290,myelencephalon,myelencephalon (medulla oblongata) +http://purl.obolibrary.org/obo/UBERON_0005291,embryonic tissue,portion of embryonic tissue +http://purl.obolibrary.org/obo/UBERON_0005292,extraembryonic tissue,extra-embryonic tissue +http://purl.obolibrary.org/obo/UBERON_0005293,cerebellum lobe,cerebellar lobe +http://purl.obolibrary.org/obo/UBERON_0005293,cerebellum lobe,lobe of cerebellum +http://purl.obolibrary.org/obo/UBERON_0005293,cerebellum lobe,lobe parts of the cerebellar cortex +http://purl.obolibrary.org/obo/UBERON_0005294,gonadal ridge,genital ridge +http://purl.obolibrary.org/obo/UBERON_0005294,gonadal ridge,gonadal ridge +http://purl.obolibrary.org/obo/UBERON_0005294,gonadal ridge,indifferent gonadal ridge +http://purl.obolibrary.org/obo/UBERON_0005295,sex cord, +http://purl.obolibrary.org/obo/UBERON_0005296,ovary sex cord,ovigerous cord +http://purl.obolibrary.org/obo/UBERON_0005296,ovary sex cord,ovigerous cords +http://purl.obolibrary.org/obo/UBERON_0005297,testis sex cord,testis cord +http://purl.obolibrary.org/obo/UBERON_0005297,testis sex cord,testis primary sex cords +http://purl.obolibrary.org/obo/UBERON_0005298,skin of clitoris,clitoris skin +http://purl.obolibrary.org/obo/UBERON_0005299,prepuce of clitoris,clitoral hood +http://purl.obolibrary.org/obo/UBERON_0005299,prepuce of clitoris,clitoral prepuce +http://purl.obolibrary.org/obo/UBERON_0005299,prepuce of clitoris,clitoris prepuce +http://purl.obolibrary.org/obo/UBERON_0005299,prepuce of clitoris,prepuce of female +http://purl.obolibrary.org/obo/UBERON_0005299,prepuce of clitoris,prepuce of the clitoris +http://purl.obolibrary.org/obo/UBERON_0005299,prepuce of clitoris,preputium clitoridis +http://purl.obolibrary.org/obo/UBERON_0005301,male preputial gland,preputial gland of male +http://purl.obolibrary.org/obo/UBERON_0005301,male preputial gland,preputial gland of penis +http://purl.obolibrary.org/obo/UBERON_0005302,female preputial gland,clitoral gland +http://purl.obolibrary.org/obo/UBERON_0005302,female preputial gland,preputial gland of female +http://purl.obolibrary.org/obo/UBERON_0005303,hypogastric nerve,hypogastric nerve plexus +http://purl.obolibrary.org/obo/UBERON_0005303,hypogastric nerve,hypogastric plexus +http://purl.obolibrary.org/obo/UBERON_0005303,hypogastric nerve,nervus hypogastricus +http://purl.obolibrary.org/obo/UBERON_0005304,submucous nerve plexus,Henle's plexus +http://purl.obolibrary.org/obo/UBERON_0005304,submucous nerve plexus,Meissner's plexus +http://purl.obolibrary.org/obo/UBERON_0005304,submucous nerve plexus,meissner's plexus +http://purl.obolibrary.org/obo/UBERON_0005304,submucous nerve plexus,submucosal nerve plexus +http://purl.obolibrary.org/obo/UBERON_0005305,thyroid follicle,thyroid gland follicle +http://purl.obolibrary.org/obo/UBERON_0005306,blastema,blastemata +http://purl.obolibrary.org/obo/UBERON_0005306,blastema,regeneration blastema +http://purl.obolibrary.org/obo/UBERON_0005307,chorion-containing eggshell, +http://purl.obolibrary.org/obo/UBERON_0005308,nephrostome, +http://purl.obolibrary.org/obo/UBERON_0005309,pronephric nephron, +http://purl.obolibrary.org/obo/UBERON_0005310,pronephric nephron tubule,pronephric tubule +http://purl.obolibrary.org/obo/UBERON_0005311,mammary placode, +http://purl.obolibrary.org/obo/UBERON_0005312,primary ureteric bud, +http://purl.obolibrary.org/obo/UBERON_0005313,mammary duct terminal end bud, +http://purl.obolibrary.org/obo/UBERON_0005314,alveolar primary septum, +http://purl.obolibrary.org/obo/UBERON_0005315,alveolar secondary septum, +http://purl.obolibrary.org/obo/UBERON_0005316,endocardial endothelium,endocardium endothelium +http://purl.obolibrary.org/obo/UBERON_0005316,endocardial endothelium,endothelium of endocardium +http://purl.obolibrary.org/obo/UBERON_0005317,pulmonary artery endothelium,pulmonary artery endothelial tube +http://purl.obolibrary.org/obo/UBERON_0005319,mesonephric collecting duct, +http://purl.obolibrary.org/obo/UBERON_0005320,mesonephric juxtaglomerular apparatus, +http://purl.obolibrary.org/obo/UBERON_0005321,mesonephric smooth muscle tissue, +http://purl.obolibrary.org/obo/UBERON_0005322,mesonephric nephron,nephron of mesonephros +http://purl.obolibrary.org/obo/UBERON_0005323,mesonephric mesenchyme, +http://purl.obolibrary.org/obo/UBERON_0005324,mesonephric macula densa, +http://purl.obolibrary.org/obo/UBERON_0005325,mesonephric glomerulus, +http://purl.obolibrary.org/obo/UBERON_0005326,mesonephric glomerulus vasculature, +http://purl.obolibrary.org/obo/UBERON_0005327,mesonephric glomerular epithelium, +http://purl.obolibrary.org/obo/UBERON_0005328,mesonephric comma-shaped body, +http://purl.obolibrary.org/obo/UBERON_0005329,mesonephric nephron tubule,mesonephric renal tubule +http://purl.obolibrary.org/obo/UBERON_0005330,mesonephric nephron epithelium, +http://purl.obolibrary.org/obo/UBERON_0005331,mesonephric renal vesicle,mesonephric vesicle +http://purl.obolibrary.org/obo/UBERON_0005332,mesonephric S-shaped body, +http://purl.obolibrary.org/obo/UBERON_0005333,mammary bud,lactiferous gland bud +http://purl.obolibrary.org/obo/UBERON_0005333,mammary bud,mammary gland bud +http://purl.obolibrary.org/obo/UBERON_0005334,oral lamina propria,lamina propria of oral mucosa +http://purl.obolibrary.org/obo/UBERON_0005335,chorioallantoic membrane,chorioallantois +http://purl.obolibrary.org/obo/UBERON_0005336,capillary layer of choroid,capillary lamina of choroid +http://purl.obolibrary.org/obo/UBERON_0005336,capillary layer of choroid,capillary layer of choroid +http://purl.obolibrary.org/obo/UBERON_0005336,capillary layer of choroid,inner layer of choroid proper +http://purl.obolibrary.org/obo/UBERON_0005337,outflow tract of ventricle,heart ventricle outflow tract +http://purl.obolibrary.org/obo/UBERON_0005337,outflow tract of ventricle,outflow part of ventricle +http://purl.obolibrary.org/obo/UBERON_0005337,outflow tract of ventricle,ventricular outflow tract +http://purl.obolibrary.org/obo/UBERON_0005338,outflow tract aortic component, +http://purl.obolibrary.org/obo/UBERON_0005339,outflow tract pulmonary component, +http://purl.obolibrary.org/obo/UBERON_0005340,dorsal telencephalic commissure,dorsal commissure +http://purl.obolibrary.org/obo/UBERON_0005341,ventral commissure, +http://purl.obolibrary.org/obo/UBERON_0005342,malleus head,head of malleus +http://purl.obolibrary.org/obo/UBERON_0005343,cortical plate,cerebral cortex cortical plate +http://purl.obolibrary.org/obo/UBERON_0005343,cortical plate,future cortical layers II-VI +http://purl.obolibrary.org/obo/UBERON_0005343,cortical plate,neocortex cortical plate +http://purl.obolibrary.org/obo/UBERON_0005344,peritoneal vaginal process,processus vaginalis peritoneus +http://purl.obolibrary.org/obo/UBERON_0005344,peritoneal vaginal process,saccus vaginalis +http://purl.obolibrary.org/obo/UBERON_0005344,peritoneal vaginal process,vaginal process of peritoneum +http://purl.obolibrary.org/obo/UBERON_0005345,cerebellum vermis lobule VIIA,folium of vermis of cerebellum +http://purl.obolibrary.org/obo/UBERON_0005345,cerebellum vermis lobule VIIA,vermic lobule VIIA +http://purl.obolibrary.org/obo/UBERON_0005346,cerebellum vermis lobule VIIB,lobule VII B of vermis +http://purl.obolibrary.org/obo/UBERON_0005346,cerebellum vermis lobule VIIB,neuraxis tuber +http://purl.obolibrary.org/obo/UBERON_0005346,cerebellum vermis lobule VIIB,tuber of vermis of cerebellum +http://purl.obolibrary.org/obo/UBERON_0005346,cerebellum vermis lobule VIIB,vermic lobule VIIb +http://purl.obolibrary.org/obo/UBERON_0005347,copula pyramidis, +http://purl.obolibrary.org/obo/UBERON_0005348,ansiform lobule,ansiform lobule of cerebellum +http://purl.obolibrary.org/obo/UBERON_0005348,ansiform lobule,ansiform lobule of cerebellum [hVIIa] +http://purl.obolibrary.org/obo/UBERON_0005348,ansiform lobule,lobuli semilunares cerebelli +http://purl.obolibrary.org/obo/UBERON_0005348,ansiform lobule,lobulus ansiformis cerebelli +http://purl.obolibrary.org/obo/UBERON_0005348,ansiform lobule,lobulus ansiformis cerebelli [h vii a] +http://purl.obolibrary.org/obo/UBERON_0005348,ansiform lobule,semilunar lobules of cerebellum +http://purl.obolibrary.org/obo/UBERON_0005349,paramedian lobule,gracile lobule +http://purl.obolibrary.org/obo/UBERON_0005349,paramedian lobule,hemispheric lobule VIIBii +http://purl.obolibrary.org/obo/UBERON_0005349,paramedian lobule,"lobule VIIIB (pyramis and biventral lobule, posterior part)" +http://purl.obolibrary.org/obo/UBERON_0005349,paramedian lobule,lobulus gracilis +http://purl.obolibrary.org/obo/UBERON_0005349,paramedian lobule,lobulus paramedianus +http://purl.obolibrary.org/obo/UBERON_0005349,paramedian lobule,lobulus paramedianus [hVIIb] +http://purl.obolibrary.org/obo/UBERON_0005349,paramedian lobule,paramedian 1 (hVII) +http://purl.obolibrary.org/obo/UBERON_0005349,paramedian lobule,paramedian lobule [HVIIB] +http://purl.obolibrary.org/obo/UBERON_0005349,paramedian lobule,paramedian lobule [h vii b] +http://purl.obolibrary.org/obo/UBERON_0005349,paramedian lobule,paramedian lobule [hVIIIb] +http://purl.obolibrary.org/obo/UBERON_0005350,lobule simplex,hemispheric lobule VI +http://purl.obolibrary.org/obo/UBERON_0005350,lobule simplex,lobule h VI of larsell +http://purl.obolibrary.org/obo/UBERON_0005350,lobule simplex,lobulus quadrangularis pars caudalis/posterior +http://purl.obolibrary.org/obo/UBERON_0005350,lobule simplex,lobulus quadrangularis pars inferoposterior +http://purl.obolibrary.org/obo/UBERON_0005350,lobule simplex,lobulus quadrangularis posterior +http://purl.obolibrary.org/obo/UBERON_0005350,lobule simplex,lobulus quadrangularis posterior cerebelli [H VI] +http://purl.obolibrary.org/obo/UBERON_0005350,lobule simplex,lobulus simplex +http://purl.obolibrary.org/obo/UBERON_0005350,lobule simplex,lobulus simplex cerebelli [h vi et vi] +http://purl.obolibrary.org/obo/UBERON_0005350,lobule simplex,posterior crescentic lobule of cerebellum +http://purl.obolibrary.org/obo/UBERON_0005350,lobule simplex,semilunar lobule-1 (posterior) +http://purl.obolibrary.org/obo/UBERON_0005350,lobule simplex,simple lobule +http://purl.obolibrary.org/obo/UBERON_0005350,lobule simplex,simple lobule of cerebellum +http://purl.obolibrary.org/obo/UBERON_0005350,lobule simplex,simple lobule of cerebellum [h VI and VI] +http://purl.obolibrary.org/obo/UBERON_0005350,lobule simplex,simplex +http://purl.obolibrary.org/obo/UBERON_0005350,lobule simplex,simplex (hVI) +http://purl.obolibrary.org/obo/UBERON_0005350,lobule simplex,simplex lobule +http://purl.obolibrary.org/obo/UBERON_0005351,paraflocculus,cerebellar tonsil +http://purl.obolibrary.org/obo/UBERON_0005351,paraflocculus,neuraxis paraflocculus +http://purl.obolibrary.org/obo/UBERON_0005351,paraflocculus,parafloccular lobule of cerebellum +http://purl.obolibrary.org/obo/UBERON_0005351,paraflocculus,paraflocculus of cerebellum +http://purl.obolibrary.org/obo/UBERON_0005351,paraflocculus,tonsil (HXI) +http://purl.obolibrary.org/obo/UBERON_0005351,paraflocculus,tonsilla +http://purl.obolibrary.org/obo/UBERON_0005352,spermatic cord, +http://purl.obolibrary.org/obo/UBERON_0005353,spleen perifollicular zone, +http://purl.obolibrary.org/obo/UBERON_0005354,malleus processus brevis, +http://purl.obolibrary.org/obo/UBERON_0005355,malleus neck,neck of malleus +http://purl.obolibrary.org/obo/UBERON_0005356,Rathke's pouch,Rathke pouch +http://purl.obolibrary.org/obo/UBERON_0005356,Rathke's pouch,pouch of Rathke +http://purl.obolibrary.org/obo/UBERON_0005357,brain ependyma,ependyma of ventricular system of brain +http://purl.obolibrary.org/obo/UBERON_0005358,ventricle of nervous system,region of wall of ventricular system of neuraxis +http://purl.obolibrary.org/obo/UBERON_0005358,ventricle of nervous system,ventricular layer +http://purl.obolibrary.org/obo/UBERON_0005359,spinal cord ependyma,ependyma of central canal of spinal cord +http://purl.obolibrary.org/obo/UBERON_0005359,spinal cord ependyma,spinal cord ependymal layer +http://purl.obolibrary.org/obo/UBERON_0005360,inferior glossopharyngeal IX ganglion,extracraniale ganglion +http://purl.obolibrary.org/obo/UBERON_0005360,inferior glossopharyngeal IX ganglion,ganglion inferius (nervus glossopharygeus) +http://purl.obolibrary.org/obo/UBERON_0005360,inferior glossopharyngeal IX ganglion,ganglion inferius nervi glossopharyngei +http://purl.obolibrary.org/obo/UBERON_0005360,inferior glossopharyngeal IX ganglion,ganglion inferius nervus glossopharyngei +http://purl.obolibrary.org/obo/UBERON_0005360,inferior glossopharyngeal IX ganglion,ganglion of andersch +http://purl.obolibrary.org/obo/UBERON_0005360,inferior glossopharyngeal IX ganglion,ganglion petrosum +http://purl.obolibrary.org/obo/UBERON_0005360,inferior glossopharyngeal IX ganglion,glossopharyngeal IX inferior ganglion +http://purl.obolibrary.org/obo/UBERON_0005360,inferior glossopharyngeal IX ganglion,glossopharyngeal inferior ganglion +http://purl.obolibrary.org/obo/UBERON_0005360,inferior glossopharyngeal IX ganglion,glossopharyngeal nerve inferior ganglion +http://purl.obolibrary.org/obo/UBERON_0005360,inferior glossopharyngeal IX ganglion,glossopharyngeal nerve petrous ganglion +http://purl.obolibrary.org/obo/UBERON_0005360,inferior glossopharyngeal IX ganglion,inferior ganglion of glossopharyngeal nerve +http://purl.obolibrary.org/obo/UBERON_0005360,inferior glossopharyngeal IX ganglion,inferior glossopharyngeal ganglion +http://purl.obolibrary.org/obo/UBERON_0005360,inferior glossopharyngeal IX ganglion,inferior glossopharyngeal ganglion of the glossopharyngeal (IX) nerve +http://purl.obolibrary.org/obo/UBERON_0005360,inferior glossopharyngeal IX ganglion,ninth cranial nerve inferior ganglion +http://purl.obolibrary.org/obo/UBERON_0005360,inferior glossopharyngeal IX ganglion,petrosal ganglion +http://purl.obolibrary.org/obo/UBERON_0005360,inferior glossopharyngeal IX ganglion,petrous ganglion +http://purl.obolibrary.org/obo/UBERON_0005361,superior glossopharyngeal IX ganglion,Ehrenritter's ganglion +http://purl.obolibrary.org/obo/UBERON_0005361,superior glossopharyngeal IX ganglion,ganglion superius (nervus glossopharyngeus) +http://purl.obolibrary.org/obo/UBERON_0005361,superior glossopharyngeal IX ganglion,ganglion superius nervus glossopharyngei +http://purl.obolibrary.org/obo/UBERON_0005361,superior glossopharyngeal IX ganglion,glossopharyngeal nerve jugular ganglion +http://purl.obolibrary.org/obo/UBERON_0005361,superior glossopharyngeal IX ganglion,glossopharyngeal nerve superior ganglion +http://purl.obolibrary.org/obo/UBERON_0005361,superior glossopharyngeal IX ganglion,intracranial ganglion +http://purl.obolibrary.org/obo/UBERON_0005361,superior glossopharyngeal IX ganglion,ninth cranial nerve superior ganglion +http://purl.obolibrary.org/obo/UBERON_0005361,superior glossopharyngeal IX ganglion,superior ganglion of glossopharyngeal nerve +http://purl.obolibrary.org/obo/UBERON_0005361,superior glossopharyngeal IX ganglion,superior glossopharyngeal ganglia +http://purl.obolibrary.org/obo/UBERON_0005361,superior glossopharyngeal IX ganglion,superior glossopharyngeal ganglion +http://purl.obolibrary.org/obo/UBERON_0005361,superior glossopharyngeal IX ganglion,superior glossopharyngeal ganglion of the glossopharyngeal (IX) nerve +http://purl.obolibrary.org/obo/UBERON_0005362,vagus X ganglion,gX +http://purl.obolibrary.org/obo/UBERON_0005362,vagus X ganglion,ganglion of vagus nerve +http://purl.obolibrary.org/obo/UBERON_0005362,vagus X ganglion,right glossopharyngeal ganglion +http://purl.obolibrary.org/obo/UBERON_0005362,vagus X ganglion,vagal ganglion +http://purl.obolibrary.org/obo/UBERON_0005362,vagus X ganglion,vagus X +http://purl.obolibrary.org/obo/UBERON_0005362,vagus X ganglion,vagus ganglion +http://purl.obolibrary.org/obo/UBERON_0005362,vagus X ganglion,vagus neural ganglion +http://purl.obolibrary.org/obo/UBERON_0005363,inferior vagus X ganglion,ganglion inferius (nervus vagus) +http://purl.obolibrary.org/obo/UBERON_0005363,inferior vagus X ganglion,ganglion inferius nervi vagi +http://purl.obolibrary.org/obo/UBERON_0005363,inferior vagus X ganglion,ganglion inferius nervus vagi +http://purl.obolibrary.org/obo/UBERON_0005363,inferior vagus X ganglion,ganglion nodosum +http://purl.obolibrary.org/obo/UBERON_0005363,inferior vagus X ganglion,inferior ganglion of vagus +http://purl.obolibrary.org/obo/UBERON_0005363,inferior vagus X ganglion,inferior ganglion of vagus nerve +http://purl.obolibrary.org/obo/UBERON_0005363,inferior vagus X ganglion,inferior vagus X +http://purl.obolibrary.org/obo/UBERON_0005363,inferior vagus X ganglion,inferior vagus ganglion +http://purl.obolibrary.org/obo/UBERON_0005363,inferior vagus X ganglion,nodose ganglia +http://purl.obolibrary.org/obo/UBERON_0005363,inferior vagus X ganglion,nodose ganglion +http://purl.obolibrary.org/obo/UBERON_0005363,inferior vagus X ganglion,tenth cranial nerve nodose ganglion +http://purl.obolibrary.org/obo/UBERON_0005363,inferior vagus X ganglion,vagus X inferior ganglion +http://purl.obolibrary.org/obo/UBERON_0005363,inferior vagus X ganglion,vagus nerve inferior ganglion +http://purl.obolibrary.org/obo/UBERON_0005363,inferior vagus X ganglion,vagus nerve nodose ganglion +http://purl.obolibrary.org/obo/UBERON_0005364,superior vagus X ganglion,ganglion superius (nervus vagus) +http://purl.obolibrary.org/obo/UBERON_0005364,superior vagus X ganglion,ganglion superius nervus vagi +http://purl.obolibrary.org/obo/UBERON_0005364,superior vagus X ganglion,superior ganglion of vagus +http://purl.obolibrary.org/obo/UBERON_0005364,superior vagus X ganglion,superior ganglion of vagus nerve +http://purl.obolibrary.org/obo/UBERON_0005364,superior vagus X ganglion,superior vagus ganglion +http://purl.obolibrary.org/obo/UBERON_0005364,superior vagus X ganglion,tenth cranial nerve jugular ganglion +http://purl.obolibrary.org/obo/UBERON_0005364,superior vagus X ganglion,vagus nerve jugular ganglion +http://purl.obolibrary.org/obo/UBERON_0005364,superior vagus X ganglion,vagus nerve superior ganglion +http://purl.obolibrary.org/obo/UBERON_0005366,olfactory lobe, +http://purl.obolibrary.org/obo/UBERON_0005367,hippocampus granule cell layer, +http://purl.obolibrary.org/obo/UBERON_0005368,hippocampus molecular layer,hippocampal molecular layer +http://purl.obolibrary.org/obo/UBERON_0005368,hippocampus molecular layer,hippocampus stratum moleculare +http://purl.obolibrary.org/obo/UBERON_0005368,hippocampus molecular layer,molecular layer of hippocampus +http://purl.obolibrary.org/obo/UBERON_0005370,hippocampus stratum lacunosum,lacunar layer of hippocampus +http://purl.obolibrary.org/obo/UBERON_0005371,hippocampus stratum oriens,gyrus cuneus +http://purl.obolibrary.org/obo/UBERON_0005371,hippocampus stratum oriens,oriens layer of hippocampus +http://purl.obolibrary.org/obo/UBERON_0005371,hippocampus stratum oriens,oriens layer of the hippocampus +http://purl.obolibrary.org/obo/UBERON_0005371,hippocampus stratum oriens,polymorphic layer of hippocampus +http://purl.obolibrary.org/obo/UBERON_0005371,hippocampus stratum oriens,polymorphic layer of the hippocampus +http://purl.obolibrary.org/obo/UBERON_0005371,hippocampus stratum oriens,stratum oriens +http://purl.obolibrary.org/obo/UBERON_0005371,hippocampus stratum oriens,stratum oriens hippocampi +http://purl.obolibrary.org/obo/UBERON_0005372,hippocampus stratum radiatum,radiate layer of hippocampus +http://purl.obolibrary.org/obo/UBERON_0005372,hippocampus stratum radiatum,stratum radiatum +http://purl.obolibrary.org/obo/UBERON_0005372,hippocampus stratum radiatum,stratum radiatum hippocampi +http://purl.obolibrary.org/obo/UBERON_0005372,hippocampus stratum radiatum,stratum radiatum of the hippocampus +http://purl.obolibrary.org/obo/UBERON_0005373,spinal cord dorsal column,dorsal column +http://purl.obolibrary.org/obo/UBERON_0005373,spinal cord dorsal column,dorsal column of spinal cord +http://purl.obolibrary.org/obo/UBERON_0005373,spinal cord dorsal column,posterior column +http://purl.obolibrary.org/obo/UBERON_0005373,spinal cord dorsal column,spinal cord posterior column +http://purl.obolibrary.org/obo/UBERON_0005374,spinal cord lateral column, +http://purl.obolibrary.org/obo/UBERON_0005375,spinal cord ventral column,anterior column +http://purl.obolibrary.org/obo/UBERON_0005375,spinal cord ventral column,spinal cord anterior column +http://purl.obolibrary.org/obo/UBERON_0005375,spinal cord ventral column,ventral column +http://purl.obolibrary.org/obo/UBERON_0005376,olfactory bulb external plexiform layer,EPL +http://purl.obolibrary.org/obo/UBERON_0005376,olfactory bulb external plexiform layer,OB outer plexiform layer +http://purl.obolibrary.org/obo/UBERON_0005376,olfactory bulb external plexiform layer,external plexiform layer +http://purl.obolibrary.org/obo/UBERON_0005376,olfactory bulb external plexiform layer,external plexiform layer of the olfactory bulb +http://purl.obolibrary.org/obo/UBERON_0005376,olfactory bulb external plexiform layer,olfactory bulb main external plexiform layer +http://purl.obolibrary.org/obo/UBERON_0005377,olfactory bulb glomerular layer,glomerular layer +http://purl.obolibrary.org/obo/UBERON_0005377,olfactory bulb glomerular layer,glomerular layer of the olfactory bulb +http://purl.obolibrary.org/obo/UBERON_0005377,olfactory bulb glomerular layer,olfactory bulb main glomerulus +http://purl.obolibrary.org/obo/UBERON_0005377,olfactory bulb glomerular layer,stratum glomerulosum bulbi olfactorii +http://purl.obolibrary.org/obo/UBERON_0005378,olfactory bulb granule cell layer,accessory olfactory bulb granule cell layer +http://purl.obolibrary.org/obo/UBERON_0005378,olfactory bulb granule cell layer,granule cell layer +http://purl.obolibrary.org/obo/UBERON_0005378,olfactory bulb granule cell layer,granule layer of main olfactory bulb +http://purl.obolibrary.org/obo/UBERON_0005378,olfactory bulb granule cell layer,main olfactory bulb granule cell layer +http://purl.obolibrary.org/obo/UBERON_0005378,olfactory bulb granule cell layer,"main olfactory bulb, granule layer" +http://purl.obolibrary.org/obo/UBERON_0005378,olfactory bulb granule cell layer,olfactory bulb main granule cell layer +http://purl.obolibrary.org/obo/UBERON_0005379,olfactory bulb internal plexiform layer,internal plexiform layer +http://purl.obolibrary.org/obo/UBERON_0005380,olfactory bulb subependymal zone, +http://purl.obolibrary.org/obo/UBERON_0005381,dentate gyrus granule cell layer,DG granule cell layer +http://purl.obolibrary.org/obo/UBERON_0005381,dentate gyrus granule cell layer,"dentate gyrus, granule cell layer" +http://purl.obolibrary.org/obo/UBERON_0005381,dentate gyrus granule cell layer,granular layer of dentate gyrus +http://purl.obolibrary.org/obo/UBERON_0005381,dentate gyrus granule cell layer,granular layer of the dentate gyrus +http://purl.obolibrary.org/obo/UBERON_0005381,dentate gyrus granule cell layer,stratum granulare gyri dentati +http://purl.obolibrary.org/obo/UBERON_0005382,dorsal striatum,striatum dorsal region +http://purl.obolibrary.org/obo/UBERON_0005383,caudate-putamen,caudate putamen +http://purl.obolibrary.org/obo/UBERON_0005383,caudate-putamen,caudateputamen +http://purl.obolibrary.org/obo/UBERON_0005383,caudate-putamen,caudoputamen +http://purl.obolibrary.org/obo/UBERON_0005384,nasal cavity epithelium,nasal epithelium +http://purl.obolibrary.org/obo/UBERON_0005384,nasal cavity epithelium,nasal mucosa +http://purl.obolibrary.org/obo/UBERON_0005385,nasal cavity respiratory epithelium, +http://purl.obolibrary.org/obo/UBERON_0005386,olfactory segment of nasal mucosa,olfactory area of nasal mucosa +http://purl.obolibrary.org/obo/UBERON_0005386,olfactory segment of nasal mucosa,olfactory mucosa +http://purl.obolibrary.org/obo/UBERON_0005386,olfactory segment of nasal mucosa,olfactory part of nasal mucosa +http://purl.obolibrary.org/obo/UBERON_0005386,olfactory segment of nasal mucosa,olfactory zone of nasal mucosa +http://purl.obolibrary.org/obo/UBERON_0005386,olfactory segment of nasal mucosa,pars olfactoria tunicae mucosae nasi +http://purl.obolibrary.org/obo/UBERON_0005387,olfactory glomerulus,glomerulus of olfactory bulb +http://purl.obolibrary.org/obo/UBERON_0005387,olfactory glomerulus,olfactory bulb glomerulus +http://purl.obolibrary.org/obo/UBERON_0005387,olfactory glomerulus,olfactory glomeruli +http://purl.obolibrary.org/obo/UBERON_0005388,photoreceptor array,light-sensitive tissue +http://purl.obolibrary.org/obo/UBERON_0005389,transparent eye structure, +http://purl.obolibrary.org/obo/UBERON_0005390,cortical layer I,"cerebral cortex, layer 1" +http://purl.obolibrary.org/obo/UBERON_0005390,cortical layer I,lamina molecularis isocorticis [lamina I] +http://purl.obolibrary.org/obo/UBERON_0005390,cortical layer I,layer 1 of neocortex +http://purl.obolibrary.org/obo/UBERON_0005390,cortical layer I,layer I of neocortex +http://purl.obolibrary.org/obo/UBERON_0005390,cortical layer I,molecular layer +http://purl.obolibrary.org/obo/UBERON_0005390,cortical layer I,molecular layer of cerebral cortex +http://purl.obolibrary.org/obo/UBERON_0005390,cortical layer I,molecular layer of isocortex [layer i] +http://purl.obolibrary.org/obo/UBERON_0005390,cortical layer I,molecular layer of neocortex +http://purl.obolibrary.org/obo/UBERON_0005390,cortical layer I,neocortex layer 1 +http://purl.obolibrary.org/obo/UBERON_0005390,cortical layer I,neocortex layer I +http://purl.obolibrary.org/obo/UBERON_0005390,cortical layer I,neocortex molecular layer +http://purl.obolibrary.org/obo/UBERON_0005390,cortical layer I,neocortex plexiform layer +http://purl.obolibrary.org/obo/UBERON_0005390,cortical layer I,plexiform layer +http://purl.obolibrary.org/obo/UBERON_0005390,cortical layer I,plexiform layer of neocortex +http://purl.obolibrary.org/obo/UBERON_0005391,cortical layer II,EGL +http://purl.obolibrary.org/obo/UBERON_0005391,cortical layer II,"cerebral cortex, layer 2" +http://purl.obolibrary.org/obo/UBERON_0005391,cortical layer II,external granular cell layer +http://purl.obolibrary.org/obo/UBERON_0005391,cortical layer II,external granular layer +http://purl.obolibrary.org/obo/UBERON_0005391,cortical layer II,external granular layer of cerebral cortex +http://purl.obolibrary.org/obo/UBERON_0005391,cortical layer II,external granular layer of isocortex [layer II] +http://purl.obolibrary.org/obo/UBERON_0005391,cortical layer II,external granular layer of neocortex +http://purl.obolibrary.org/obo/UBERON_0005391,cortical layer II,external granule cell layer +http://purl.obolibrary.org/obo/UBERON_0005391,cortical layer II,external granule cell layer of neocortex +http://purl.obolibrary.org/obo/UBERON_0005391,cortical layer II,granule cell layer of cerebral cortex +http://purl.obolibrary.org/obo/UBERON_0005391,cortical layer II,lamina granularis externa isocorticis [lamina ii] +http://purl.obolibrary.org/obo/UBERON_0005391,cortical layer II,layer II of neocortex +http://purl.obolibrary.org/obo/UBERON_0005391,cortical layer II,neocortex layer 2 +http://purl.obolibrary.org/obo/UBERON_0005391,cortical layer II,neocortex layer II +http://purl.obolibrary.org/obo/UBERON_0005392,cortical layer III,"cerebral cortex, layer 3" +http://purl.obolibrary.org/obo/UBERON_0005392,cortical layer III,external pyramidal cell layer +http://purl.obolibrary.org/obo/UBERON_0005392,cortical layer III,external pyramidal cell layer of neocortex +http://purl.obolibrary.org/obo/UBERON_0005392,cortical layer III,external pyramidal layer of cerebral cortex +http://purl.obolibrary.org/obo/UBERON_0005392,cortical layer III,external pyramidal layer of isocortex [layer iii] +http://purl.obolibrary.org/obo/UBERON_0005392,cortical layer III,external pyramidal layer of neocortex +http://purl.obolibrary.org/obo/UBERON_0005392,cortical layer III,"isocortex, deep supragranular pyramidal layer" +http://purl.obolibrary.org/obo/UBERON_0005392,cortical layer III,lamina pyramidalis externa +http://purl.obolibrary.org/obo/UBERON_0005392,cortical layer III,lamina pyramidalis externa isocorticis [lamina iii] +http://purl.obolibrary.org/obo/UBERON_0005392,cortical layer III,layer 3 of neocortex +http://purl.obolibrary.org/obo/UBERON_0005392,cortical layer III,layer III of neocortex +http://purl.obolibrary.org/obo/UBERON_0005392,cortical layer III,layer of medium-sized and large pyramidal cells +http://purl.obolibrary.org/obo/UBERON_0005392,cortical layer III,neocortex external pyramidal cell layer +http://purl.obolibrary.org/obo/UBERON_0005392,cortical layer III,neocortex layer 3 +http://purl.obolibrary.org/obo/UBERON_0005392,cortical layer III,neocortex layer III +http://purl.obolibrary.org/obo/UBERON_0005392,cortical layer III,pyramidal layer +http://purl.obolibrary.org/obo/UBERON_0005393,cortical layer IV,"cerebral cortex, layer 4" +http://purl.obolibrary.org/obo/UBERON_0005393,cortical layer IV,internal granular layer +http://purl.obolibrary.org/obo/UBERON_0005393,cortical layer IV,internal granular layer of isocortex [layer iv] +http://purl.obolibrary.org/obo/UBERON_0005393,cortical layer IV,internal granular layer of neocortex +http://purl.obolibrary.org/obo/UBERON_0005393,cortical layer IV,internal granule cell layer of neocortex +http://purl.obolibrary.org/obo/UBERON_0005393,cortical layer IV,lamina granularis interna isocorticis [lamina iv] +http://purl.obolibrary.org/obo/UBERON_0005393,cortical layer IV,layer 4 of neocortex +http://purl.obolibrary.org/obo/UBERON_0005393,cortical layer IV,layer IV of neocortex +http://purl.obolibrary.org/obo/UBERON_0005393,cortical layer IV,neocortex internal granule cell layer +http://purl.obolibrary.org/obo/UBERON_0005393,cortical layer IV,neocortex layer 4 +http://purl.obolibrary.org/obo/UBERON_0005393,cortical layer IV,neocortex layer IV +http://purl.obolibrary.org/obo/UBERON_0005393,cortical layer IV,neocortical internal granule cell layer +http://purl.obolibrary.org/obo/UBERON_0005393,cortical layer IV,neocortical layer IV +http://purl.obolibrary.org/obo/UBERON_0005394,cortical layer V,betz' cells +http://purl.obolibrary.org/obo/UBERON_0005394,cortical layer V,"cerebral cortex, layer 5" +http://purl.obolibrary.org/obo/UBERON_0005394,cortical layer V,deep layer of large pyramidal cells +http://purl.obolibrary.org/obo/UBERON_0005394,cortical layer V,ganglionic layer +http://purl.obolibrary.org/obo/UBERON_0005394,cortical layer V,ganglionic layer of cerebral cortex +http://purl.obolibrary.org/obo/UBERON_0005394,cortical layer V,inner layer of large pyramidal cells +http://purl.obolibrary.org/obo/UBERON_0005394,cortical layer V,internal pyramidal cell layer of neocortex +http://purl.obolibrary.org/obo/UBERON_0005394,cortical layer V,internal pyramidal layer +http://purl.obolibrary.org/obo/UBERON_0005394,cortical layer V,internal pyramidal layer of isocortex [layer v] +http://purl.obolibrary.org/obo/UBERON_0005394,cortical layer V,internal pyramidal layer of neocortex +http://purl.obolibrary.org/obo/UBERON_0005394,cortical layer V,"isocortex, infragranular pyramidal layer" +http://purl.obolibrary.org/obo/UBERON_0005394,cortical layer V,lamina ganglionaris +http://purl.obolibrary.org/obo/UBERON_0005394,cortical layer V,lamina pyramidalis interna +http://purl.obolibrary.org/obo/UBERON_0005394,cortical layer V,lamina pyramidalis interna isocorticis [lamina v] +http://purl.obolibrary.org/obo/UBERON_0005394,cortical layer V,layer 5 of neocortex +http://purl.obolibrary.org/obo/UBERON_0005394,cortical layer V,layer V of neocortex +http://purl.obolibrary.org/obo/UBERON_0005394,cortical layer V,neocortex internal pyramidal cell layer +http://purl.obolibrary.org/obo/UBERON_0005394,cortical layer V,neocortex layer 5 +http://purl.obolibrary.org/obo/UBERON_0005394,cortical layer V,neocortex layer V +http://purl.obolibrary.org/obo/UBERON_0005394,cortical layer V,neocortical layer 5 +http://purl.obolibrary.org/obo/UBERON_0005394,cortical layer V,neocortical layer V +http://purl.obolibrary.org/obo/UBERON_0005395,cortical layer VI,"cerebral cortex, layer 6" +http://purl.obolibrary.org/obo/UBERON_0005395,cortical layer VI,fusiform layer +http://purl.obolibrary.org/obo/UBERON_0005395,cortical layer VI,"isocortex, polymorph layer" +http://purl.obolibrary.org/obo/UBERON_0005395,cortical layer VI,lamina multiformis +http://purl.obolibrary.org/obo/UBERON_0005395,cortical layer VI,lamina multiformis isocorticis [lamina vi] +http://purl.obolibrary.org/obo/UBERON_0005395,cortical layer VI,layer VI of neocortex +http://purl.obolibrary.org/obo/UBERON_0005395,cortical layer VI,multiform layer +http://purl.obolibrary.org/obo/UBERON_0005395,cortical layer VI,multiform layer of isocortex [layer vi] +http://purl.obolibrary.org/obo/UBERON_0005395,cortical layer VI,multiform layer of neocortex +http://purl.obolibrary.org/obo/UBERON_0005395,cortical layer VI,neocortex layer 6 +http://purl.obolibrary.org/obo/UBERON_0005395,cortical layer VI,neocortex layer VI +http://purl.obolibrary.org/obo/UBERON_0005395,cortical layer VI,neocortex multiform layer +http://purl.obolibrary.org/obo/UBERON_0005395,cortical layer VI,neocortical layer 6 +http://purl.obolibrary.org/obo/UBERON_0005395,cortical layer VI,neocortical layer VI +http://purl.obolibrary.org/obo/UBERON_0005395,cortical layer VI,pleiomorphic layer of neocortex +http://purl.obolibrary.org/obo/UBERON_0005395,cortical layer VI,spindle cell layer +http://purl.obolibrary.org/obo/UBERON_0005396,carotid artery segment,carotid +http://purl.obolibrary.org/obo/UBERON_0005396,carotid artery segment,carotid artery +http://purl.obolibrary.org/obo/UBERON_0005396,carotid artery segment,subdivision of common carotid artery +http://purl.obolibrary.org/obo/UBERON_0005397,brain arachnoid mater,arachnoidea mater cranialis +http://purl.obolibrary.org/obo/UBERON_0005397,brain arachnoid mater,arachnoidea mater encephali +http://purl.obolibrary.org/obo/UBERON_0005397,brain arachnoid mater,brain arachnoid matter +http://purl.obolibrary.org/obo/UBERON_0005397,brain arachnoid mater,cranial arachnoid mater +http://purl.obolibrary.org/obo/UBERON_0005398,female reproductive gland, +http://purl.obolibrary.org/obo/UBERON_0005399,male reproductive gland,accessory sex gland +http://purl.obolibrary.org/obo/UBERON_0005400,telencephalon arachnoid mater,telencephalon arachnoid matter +http://purl.obolibrary.org/obo/UBERON_0005401,cerebral hemisphere gray matter,cerebral gray matter +http://purl.obolibrary.org/obo/UBERON_0005401,cerebral hemisphere gray matter,cerebral grey matter +http://purl.obolibrary.org/obo/UBERON_0005401,cerebral hemisphere gray matter,cerebral hemisphere grey matter +http://purl.obolibrary.org/obo/UBERON_0005402,philtrum,lip philtrum +http://purl.obolibrary.org/obo/UBERON_0005403,ventral striatum,striatum ventral region +http://purl.obolibrary.org/obo/UBERON_0005403,ventral striatum,striatum ventrale +http://purl.obolibrary.org/obo/UBERON_0005404,frontonasal suture,frontonasal suture of skull +http://purl.obolibrary.org/obo/UBERON_0005405,pararenal fat,pararenal fascia +http://purl.obolibrary.org/obo/UBERON_0005406,perirenal fat,perirenal fascia +http://purl.obolibrary.org/obo/UBERON_0005407,sublingual ganglion, +http://purl.obolibrary.org/obo/UBERON_0005408,circumventricular organ,CVO +http://purl.obolibrary.org/obo/UBERON_0005408,circumventricular organ,circumventricular organ +http://purl.obolibrary.org/obo/UBERON_0005408,circumventricular organ,circumventricular organ of neuraxis +http://purl.obolibrary.org/obo/UBERON_0005409,alimentary part of gastrointestinal system,GI tract +http://purl.obolibrary.org/obo/UBERON_0005409,alimentary part of gastrointestinal system,alimentary system +http://purl.obolibrary.org/obo/UBERON_0005409,alimentary part of gastrointestinal system,alimentary tract +http://purl.obolibrary.org/obo/UBERON_0005409,alimentary part of gastrointestinal system,gastro-intestinal system +http://purl.obolibrary.org/obo/UBERON_0005409,alimentary part of gastrointestinal system,gastroenterological system +http://purl.obolibrary.org/obo/UBERON_0005409,alimentary part of gastrointestinal system,gastrointestinal (GI) tract +http://purl.obolibrary.org/obo/UBERON_0005409,alimentary part of gastrointestinal system,gastrointestinal system +http://purl.obolibrary.org/obo/UBERON_0005409,alimentary part of gastrointestinal system,gastrointestinal tract +http://purl.obolibrary.org/obo/UBERON_0005410,cartilaginous otic capsule,auditory capsule +http://purl.obolibrary.org/obo/UBERON_0005410,cartilaginous otic capsule,otic capsule cartilage element +http://purl.obolibrary.org/obo/UBERON_0005411,bony otic capsule,otic capsule bone +http://purl.obolibrary.org/obo/UBERON_0005412,optic fissure,choroid fissure - optic fissure +http://purl.obolibrary.org/obo/UBERON_0005412,optic fissure,optic fissures +http://purl.obolibrary.org/obo/UBERON_0005412,optic fissure,optic stalk fissure +http://purl.obolibrary.org/obo/UBERON_0005413,spinocerebellar tract, +http://purl.obolibrary.org/obo/UBERON_0005414,zone of polarizing activity,ZPA +http://purl.obolibrary.org/obo/UBERON_0005415,zone of polarizing activity of pectoral appendage,anterior ZPA +http://purl.obolibrary.org/obo/UBERON_0005415,zone of polarizing activity of pectoral appendage,fore ZPA +http://purl.obolibrary.org/obo/UBERON_0005415,zone of polarizing activity of pectoral appendage,pectoral ZPA +http://purl.obolibrary.org/obo/UBERON_0005416,zone of polarizing activity of pelvic appendage,hind ZPA +http://purl.obolibrary.org/obo/UBERON_0005416,zone of polarizing activity of pelvic appendage,pelvic ZPA +http://purl.obolibrary.org/obo/UBERON_0005416,zone of polarizing activity of pelvic appendage,posterior ZPA +http://purl.obolibrary.org/obo/UBERON_0005417,forelimb bud,anterior limb bud +http://purl.obolibrary.org/obo/UBERON_0005417,forelimb bud,limb bud - forelimb +http://purl.obolibrary.org/obo/UBERON_0005417,forelimb bud,upper limb bud +http://purl.obolibrary.org/obo/UBERON_0005418,hindlimb bud,hind limb bud +http://purl.obolibrary.org/obo/UBERON_0005418,hindlimb bud,posterior limb bud +http://purl.obolibrary.org/obo/UBERON_0005419,pectoral appendage bud,forelimb - pectoral fin bud +http://purl.obolibrary.org/obo/UBERON_0005420,pelvic appendage bud,hindlimb/pelvic fin bud +http://purl.obolibrary.org/obo/UBERON_0005421,pectoral appendage apical ectodermal ridge, +http://purl.obolibrary.org/obo/UBERON_0005422,pelvic appendage apical ectodermal ridge, +http://purl.obolibrary.org/obo/UBERON_0005423,developing anatomical structure,developing structure +http://purl.obolibrary.org/obo/UBERON_0005423,developing anatomical structure,developmental structure +http://purl.obolibrary.org/obo/UBERON_0005423,developing anatomical structure,developmental tissue +http://purl.obolibrary.org/obo/UBERON_0005424,presumptive retinal pigmented epithelium,future RPE +http://purl.obolibrary.org/obo/UBERON_0005424,presumptive retinal pigmented epithelium,future retinal pigmented epithelium +http://purl.obolibrary.org/obo/UBERON_0005424,presumptive retinal pigmented epithelium,optic cup outer layer +http://purl.obolibrary.org/obo/UBERON_0005424,presumptive retinal pigmented epithelium,outer layer optic cup +http://purl.obolibrary.org/obo/UBERON_0005424,presumptive retinal pigmented epithelium,presumptive pigmented epithelia +http://purl.obolibrary.org/obo/UBERON_0005425,presumptive neural retina,future neural retina +http://purl.obolibrary.org/obo/UBERON_0005425,presumptive neural retina,future retinal neural layer +http://purl.obolibrary.org/obo/UBERON_0005425,presumptive neural retina,inner layer optic cup +http://purl.obolibrary.org/obo/UBERON_0005425,presumptive neural retina,optic cup inner layer +http://purl.obolibrary.org/obo/UBERON_0005425,presumptive neural retina,presumptive retinas +http://purl.obolibrary.org/obo/UBERON_0005426,lens vesicle, +http://purl.obolibrary.org/obo/UBERON_0005427,corneal primordium, +http://purl.obolibrary.org/obo/UBERON_0005428,vagal neural crest,VNC +http://purl.obolibrary.org/obo/UBERON_0005429,dorsal pancreatic duct,Santorini's duct +http://purl.obolibrary.org/obo/UBERON_0005429,dorsal pancreatic duct,accessory pancreatic duct +http://purl.obolibrary.org/obo/UBERON_0005429,dorsal pancreatic duct,duct of Santorini +http://purl.obolibrary.org/obo/UBERON_0005430,ansa cervicalis,ansa cervicalis +http://purl.obolibrary.org/obo/UBERON_0005431,anterior spinal artery,anterior medial spinal artery +http://purl.obolibrary.org/obo/UBERON_0005431,anterior spinal artery,ventral spinal artery +http://purl.obolibrary.org/obo/UBERON_0005432,aortic sac,saccus aorticus +http://purl.obolibrary.org/obo/UBERON_0005434,cervical region,cervical region +http://purl.obolibrary.org/obo/UBERON_0005434,cervical region,neck subdivision +http://purl.obolibrary.org/obo/UBERON_0005434,cervical region,region of neck +http://purl.obolibrary.org/obo/UBERON_0005434,cervical region,subdivision of neck +http://purl.obolibrary.org/obo/UBERON_0005435,upper part of cisterna chyli,atypical confluence of lymph trunks +http://purl.obolibrary.org/obo/UBERON_0005435,upper part of cisterna chyli,chyle cistern +http://purl.obolibrary.org/obo/UBERON_0005435,upper part of cisterna chyli,cistern of Pecquet +http://purl.obolibrary.org/obo/UBERON_0005435,upper part of cisterna chyli,cisterna chyli +http://purl.obolibrary.org/obo/UBERON_0005436,common hepatic artery, +http://purl.obolibrary.org/obo/UBERON_0005437,conus medullaris,medullary cone +http://purl.obolibrary.org/obo/UBERON_0005438,coronary sinus,sinus coronarius +http://purl.obolibrary.org/obo/UBERON_0005439,definitive endoderm,embryonic endoderm +http://purl.obolibrary.org/obo/UBERON_0005440,ductus arteriosus,ductus Botallo +http://purl.obolibrary.org/obo/UBERON_0005441,external intercostal muscle,intercostales externus +http://purl.obolibrary.org/obo/UBERON_0005442,abdominal external oblique muscle,abdominal external oblique muscle +http://purl.obolibrary.org/obo/UBERON_0005442,abdominal external oblique muscle,external abdominal oblique muscle +http://purl.obolibrary.org/obo/UBERON_0005442,abdominal external oblique muscle,external oblique +http://purl.obolibrary.org/obo/UBERON_0005442,abdominal external oblique muscle,external oblique muscle +http://purl.obolibrary.org/obo/UBERON_0005442,abdominal external oblique muscle,obliquus externus abdominis +http://purl.obolibrary.org/obo/UBERON_0005443,filum terminale,filum terminale segment of pia mater +http://purl.obolibrary.org/obo/UBERON_0005443,filum terminale,pars pialis fili terminalis +http://purl.obolibrary.org/obo/UBERON_0005443,filum terminale,terminal filum +http://purl.obolibrary.org/obo/UBERON_0005445,segment of pes,foot subdivision +http://purl.obolibrary.org/obo/UBERON_0005445,segment of pes,regio pedis +http://purl.obolibrary.org/obo/UBERON_0005445,segment of pes,segment of foot +http://purl.obolibrary.org/obo/UBERON_0005445,segment of pes,subdivision of foot +http://purl.obolibrary.org/obo/UBERON_0005446,foramen rotundum, +http://purl.obolibrary.org/obo/UBERON_0005448,greater omentum, +http://purl.obolibrary.org/obo/UBERON_0005449,greater sac,peritoneal cavity greater sac +http://purl.obolibrary.org/obo/UBERON_0005450,greater sac cavity,cavity of greater sac +http://purl.obolibrary.org/obo/UBERON_0005450,greater sac cavity,cavum peritonei +http://purl.obolibrary.org/obo/UBERON_0005450,greater sac cavity,greater peritoneal cavity +http://purl.obolibrary.org/obo/UBERON_0005450,greater sac cavity,greater sac lumen +http://purl.obolibrary.org/obo/UBERON_0005451,segment of manus,hand subdivision +http://purl.obolibrary.org/obo/UBERON_0005451,segment of manus,regio manus +http://purl.obolibrary.org/obo/UBERON_0005451,segment of manus,segment of hand +http://purl.obolibrary.org/obo/UBERON_0005451,segment of manus,subdivision of hand +http://purl.obolibrary.org/obo/UBERON_0005452,hepatic cord,hepatic lamina +http://purl.obolibrary.org/obo/UBERON_0005452,hepatic cord,hepatic laminae +http://purl.obolibrary.org/obo/UBERON_0005452,hepatic cord,lamina hepatica +http://purl.obolibrary.org/obo/UBERON_0005452,hepatic cord,liver cell plate +http://purl.obolibrary.org/obo/UBERON_0005453,inferior mesenteric ganglion,ganglion mesentericum inferius +http://purl.obolibrary.org/obo/UBERON_0005454,abdominal internal oblique muscle,abdominal internal oblique muscle +http://purl.obolibrary.org/obo/UBERON_0005454,abdominal internal oblique muscle,internal oblique +http://purl.obolibrary.org/obo/UBERON_0005454,abdominal internal oblique muscle,obliquus internus abdominis +http://purl.obolibrary.org/obo/UBERON_0005454,abdominal internal oblique muscle,obliquus internus abdominis muscle +http://purl.obolibrary.org/obo/UBERON_0005455,interventricular groove,interventricular sulcus +http://purl.obolibrary.org/obo/UBERON_0005456,jugular foramen,Posterior lacerate foramen +http://purl.obolibrary.org/obo/UBERON_0005457,left thymus lobe,left lobe of thymus +http://purl.obolibrary.org/obo/UBERON_0005457,left thymus lobe,left thymic lobe +http://purl.obolibrary.org/obo/UBERON_0005458,left umbilical artery,embryonic left umbilical artery +http://purl.obolibrary.org/obo/UBERON_0005459,left umbilical vein, +http://purl.obolibrary.org/obo/UBERON_0005460,left vitelline vein, +http://purl.obolibrary.org/obo/UBERON_0005461,levator scapulae muscle,levator scapulae +http://purl.obolibrary.org/obo/UBERON_0005462,lower back,abdominal back +http://purl.obolibrary.org/obo/UBERON_0005462,lower back,back of abdomen +http://purl.obolibrary.org/obo/UBERON_0005462,lower back,dorsum of abdomen +http://purl.obolibrary.org/obo/UBERON_0005462,lower back,loin +http://purl.obolibrary.org/obo/UBERON_0005462,lower back,lombus +http://purl.obolibrary.org/obo/UBERON_0005462,lower back,lower back +http://purl.obolibrary.org/obo/UBERON_0005462,lower back,lumbar part of back +http://purl.obolibrary.org/obo/UBERON_0005462,lower back,lumbar region +http://purl.obolibrary.org/obo/UBERON_0005462,lower back,lumbar region of back +http://purl.obolibrary.org/obo/UBERON_0005462,lower back,lumbos +http://purl.obolibrary.org/obo/UBERON_0005462,lower back,posterior part of abdomen +http://purl.obolibrary.org/obo/UBERON_0005462,lower back,regio lumbalis +http://purl.obolibrary.org/obo/UBERON_0005463,subcapsular sinus of lymph node,lymph node subcortical sinus +http://purl.obolibrary.org/obo/UBERON_0005464,median sacral artery,Middle sacral artery +http://purl.obolibrary.org/obo/UBERON_0005465,obturator nerve, +http://purl.obolibrary.org/obo/UBERON_0005467,platysma,platysma muscle +http://purl.obolibrary.org/obo/UBERON_0005469,right thymus lobe,right lobe of thymus +http://purl.obolibrary.org/obo/UBERON_0005469,right thymus lobe,right thymic lobe +http://purl.obolibrary.org/obo/UBERON_0005470,right umbilical artery,embryonic right umbilical artery +http://purl.obolibrary.org/obo/UBERON_0005471,right umbilical vein, +http://purl.obolibrary.org/obo/UBERON_0005472,right vitelline vein, +http://purl.obolibrary.org/obo/UBERON_0005473,sacral region,back of pelvis +http://purl.obolibrary.org/obo/UBERON_0005473,sacral region,pelvic back +http://purl.obolibrary.org/obo/UBERON_0005473,sacral region,posterior part of pelvis +http://purl.obolibrary.org/obo/UBERON_0005473,sacral region,regio sacralis +http://purl.obolibrary.org/obo/UBERON_0005473,sacral region,sacral part of pelvis +http://purl.obolibrary.org/obo/UBERON_0005475,sigmoid sinus, +http://purl.obolibrary.org/obo/UBERON_0005476,spinal nerve trunk,spinal nerve (trunk) +http://purl.obolibrary.org/obo/UBERON_0005476,spinal nerve trunk,spinal neural trunk +http://purl.obolibrary.org/obo/UBERON_0005476,spinal nerve trunk,trunk of spinal nerve +http://purl.obolibrary.org/obo/UBERON_0005477,stomach fundus epithelium,epithelium of fundus of stomach +http://purl.obolibrary.org/obo/UBERON_0005477,stomach fundus epithelium,gastric epithelium of fundus +http://purl.obolibrary.org/obo/UBERON_0005477,stomach fundus epithelium,gastric fundus epithelium +http://purl.obolibrary.org/obo/UBERON_0005478,sulcus limitans of neural tube,neural tube lateral wall sulcus limitans +http://purl.obolibrary.org/obo/UBERON_0005479,superior mesenteric ganglion,ganglion mesentericum superius +http://purl.obolibrary.org/obo/UBERON_0005479,superior mesenteric ganglion,superior mesenteric ganglia +http://purl.obolibrary.org/obo/UBERON_0005480,superior orbital fissure, +http://purl.obolibrary.org/obo/UBERON_0005481,tentorial sinus, +http://purl.obolibrary.org/obo/UBERON_0005483,thymus lobe,lateral lobe of thymus +http://purl.obolibrary.org/obo/UBERON_0005483,thymus lobe,lobe of thymus +http://purl.obolibrary.org/obo/UBERON_0005484,tricuspid valve leaflet,leaflet of tricuspid valve +http://purl.obolibrary.org/obo/UBERON_0005484,tricuspid valve leaflet,tricuspid valve leaflet +http://purl.obolibrary.org/obo/UBERON_0005484,tricuspid valve leaflet,tricuspid valve leaflets +http://purl.obolibrary.org/obo/UBERON_0005484,tricuspid valve leaflet,tricuspid valvular leaflet +http://purl.obolibrary.org/obo/UBERON_0005485,valve of inferior vena cava,eustachean valve +http://purl.obolibrary.org/obo/UBERON_0005485,valve of inferior vena cava,eustachian valve +http://purl.obolibrary.org/obo/UBERON_0005485,valve of inferior vena cava,inferior vena cava valve +http://purl.obolibrary.org/obo/UBERON_0005486,venous dural sinus,cranial dural venous sinus +http://purl.obolibrary.org/obo/UBERON_0005486,venous dural sinus,dural sinus +http://purl.obolibrary.org/obo/UBERON_0005486,venous dural sinus,dural vein +http://purl.obolibrary.org/obo/UBERON_0005486,venous dural sinus,dural venous sinus +http://purl.obolibrary.org/obo/UBERON_0005486,venous dural sinus,s. durae matris +http://purl.obolibrary.org/obo/UBERON_0005486,venous dural sinus,venous dural +http://purl.obolibrary.org/obo/UBERON_0005486,venous dural sinus,venous dural sinus +http://purl.obolibrary.org/obo/UBERON_0005487,vitelline vein,embryonic vitelline vein +http://purl.obolibrary.org/obo/UBERON_0005487,vitelline vein,vascular vitelline network +http://purl.obolibrary.org/obo/UBERON_0005487,vitelline vein,vena vitellina +http://purl.obolibrary.org/obo/UBERON_0005488,superior mesenteric plexus,plexus mesentericus superior +http://purl.obolibrary.org/obo/UBERON_0005488,superior mesenteric plexus,superior mesenteric nerve plexus +http://purl.obolibrary.org/obo/UBERON_0005489,anterior interventricular sulcus,anterior interventricular groove +http://purl.obolibrary.org/obo/UBERON_0005490,posterior interventricular sulcus,diaphragmatic interventricular groove +http://purl.obolibrary.org/obo/UBERON_0005490,posterior interventricular sulcus,inferior interventricular groove +http://purl.obolibrary.org/obo/UBERON_0005490,posterior interventricular sulcus,posterior interventricular groove +http://purl.obolibrary.org/obo/UBERON_0005491,glossopharyngeal neural crest, +http://purl.obolibrary.org/obo/UBERON_0005492,hyaloid vessel,hyaloid blood vessels +http://purl.obolibrary.org/obo/UBERON_0005492,hyaloid vessel,hyaloid vessels +http://purl.obolibrary.org/obo/UBERON_0005493,hyoid muscle,hyoid muscles +http://purl.obolibrary.org/obo/UBERON_0005494,intermediate mesenchyme, +http://purl.obolibrary.org/obo/UBERON_0005495,midbrain lateral wall,lateral wall midbrain +http://purl.obolibrary.org/obo/UBERON_0005495,midbrain lateral wall,lateral wall midbrain region +http://purl.obolibrary.org/obo/UBERON_0005496,neural tube lateral wall,lateral wall neural tube +http://purl.obolibrary.org/obo/UBERON_0005497,non-neural ectoderm,non neural ectoderm +http://purl.obolibrary.org/obo/UBERON_0005498,primitive heart tube,primitive heart tube +http://purl.obolibrary.org/obo/UBERON_0005499,rhombomere 1,r1 +http://purl.obolibrary.org/obo/UBERON_0005500,rhombomere floor plate,floor plate hindbrain +http://purl.obolibrary.org/obo/UBERON_0005500,rhombomere floor plate,floor plate rhombomere region +http://purl.obolibrary.org/obo/UBERON_0005500,rhombomere floor plate,rhombencephalon floor plate +http://purl.obolibrary.org/obo/UBERON_0005501,rhombomere lateral wall, +http://purl.obolibrary.org/obo/UBERON_0005502,rhombomere roof plate,roof plate rhombomere +http://purl.obolibrary.org/obo/UBERON_0005502,rhombomere roof plate,roof plate rhombomere region +http://purl.obolibrary.org/obo/UBERON_0005502,rhombomere roof plate,roof plate rhombomeres +http://purl.obolibrary.org/obo/UBERON_0005507,rhombomere 3,r3 +http://purl.obolibrary.org/obo/UBERON_0005511,rhombomere 4,r4 +http://purl.obolibrary.org/obo/UBERON_0005515,rhombomere 5,r5 +http://purl.obolibrary.org/obo/UBERON_0005519,rhombomere 6,r6 +http://purl.obolibrary.org/obo/UBERON_0005523,rhombomere 7,r7 +http://purl.obolibrary.org/obo/UBERON_0005527,rhombomere 8,r8 +http://purl.obolibrary.org/obo/UBERON_0005561,telencephalon lateral wall,lateral wall telencephalic region +http://purl.obolibrary.org/obo/UBERON_0005561,telencephalon lateral wall,lateral wall telencephalon +http://purl.obolibrary.org/obo/UBERON_0005562,thymus primordium,thymic primordium +http://purl.obolibrary.org/obo/UBERON_0005562,thymus primordium,thymic rudiment +http://purl.obolibrary.org/obo/UBERON_0005563,trigeminal neural crest, +http://purl.obolibrary.org/obo/UBERON_0005564,gonad primordium,future gonad +http://purl.obolibrary.org/obo/UBERON_0005564,gonad primordium,gonadal primordium +http://purl.obolibrary.org/obo/UBERON_0005564,gonad primordium,primitive gonad +http://purl.obolibrary.org/obo/UBERON_0005564,gonad primordium,undifferentiated gonad +http://purl.obolibrary.org/obo/UBERON_0005565,facio-acoustic neural crest,facio acoustic neural crest +http://purl.obolibrary.org/obo/UBERON_0005566,rhombomere 1 floor plate,floor plate r1 +http://purl.obolibrary.org/obo/UBERON_0005566,rhombomere 1 floor plate,floor plate rhombomere 1 +http://purl.obolibrary.org/obo/UBERON_0005567,rhombomere 1 lateral wall,lateral wall rhombomere 1 +http://purl.obolibrary.org/obo/UBERON_0005568,rhombomere 1 roof plate,roof plate rhombomere 1 +http://purl.obolibrary.org/obo/UBERON_0005569,rhombomere 2,r2 +http://purl.obolibrary.org/obo/UBERON_0005570,rhombomere 2 floor plate,floor plate r2 +http://purl.obolibrary.org/obo/UBERON_0005570,rhombomere 2 floor plate,floor plate rhombomere 2 +http://purl.obolibrary.org/obo/UBERON_0005570,rhombomere 2 floor plate,floorplate r2 +http://purl.obolibrary.org/obo/UBERON_0005571,rhombomere 2 lateral wall,lateral wall rhombomere 2 +http://purl.obolibrary.org/obo/UBERON_0005572,rhombomere 2 roof plate,roof plate rhombomere 2 +http://purl.obolibrary.org/obo/UBERON_0005573,rhombomere 3 floor plate,floor plate r3 +http://purl.obolibrary.org/obo/UBERON_0005573,rhombomere 3 floor plate,floor plate rhombomere 3 +http://purl.obolibrary.org/obo/UBERON_0005573,rhombomere 3 floor plate,floorplate r3 +http://purl.obolibrary.org/obo/UBERON_0005574,rhombomere 3 lateral wall,lateral wall rhombomere 3 +http://purl.obolibrary.org/obo/UBERON_0005575,rhombomere 3 roof plate,roof plate rhombomere 3 +http://purl.obolibrary.org/obo/UBERON_0005576,rhombomere 4 floor plate,floor plate r4 +http://purl.obolibrary.org/obo/UBERON_0005576,rhombomere 4 floor plate,floor plate rhombomere 4 +http://purl.obolibrary.org/obo/UBERON_0005576,rhombomere 4 floor plate,floorplate r4 +http://purl.obolibrary.org/obo/UBERON_0005577,rhombomere 4 lateral wall,lateral wall rhombomere 4 +http://purl.obolibrary.org/obo/UBERON_0005578,rhombomere 4 roof plate,roof plate rhombomere 4 +http://purl.obolibrary.org/obo/UBERON_0005579,rhombomere 5 floor plate,floor plate r5 +http://purl.obolibrary.org/obo/UBERON_0005579,rhombomere 5 floor plate,floor plate rhombomere 5 +http://purl.obolibrary.org/obo/UBERON_0005579,rhombomere 5 floor plate,floorplate r5 +http://purl.obolibrary.org/obo/UBERON_0005580,rhombomere 5 lateral wall,lateral wall rhombomere 5 +http://purl.obolibrary.org/obo/UBERON_0005581,rhombomere 5 roof plate,roof plate rhombomere 5 +http://purl.obolibrary.org/obo/UBERON_0005582,rhombomere 6 floor plate,floor plate r6 +http://purl.obolibrary.org/obo/UBERON_0005582,rhombomere 6 floor plate,floor plate rhombomere 6 +http://purl.obolibrary.org/obo/UBERON_0005582,rhombomere 6 floor plate,floorplate r6 +http://purl.obolibrary.org/obo/UBERON_0005583,rhombomere 6 lateral wall,lateral wall rhombomere 6 +http://purl.obolibrary.org/obo/UBERON_0005584,rhombomere 6 roof plate,roof plate rhombomere 6 +http://purl.obolibrary.org/obo/UBERON_0005585,rhombomere 7 floor plate,floor plate r7 +http://purl.obolibrary.org/obo/UBERON_0005585,rhombomere 7 floor plate,floor plate rhombomere 7 +http://purl.obolibrary.org/obo/UBERON_0005585,rhombomere 7 floor plate,floorplate r7 +http://purl.obolibrary.org/obo/UBERON_0005586,rhombomere 7 lateral wall,lateral wall rhombomere 7 +http://purl.obolibrary.org/obo/UBERON_0005587,rhombomere 7 roof plate,roof plate rhombomere 7 +http://purl.obolibrary.org/obo/UBERON_0005588,rhombomere 8 floor plate,floor plate r8 +http://purl.obolibrary.org/obo/UBERON_0005588,rhombomere 8 floor plate,floor plate rhombomere 8 +http://purl.obolibrary.org/obo/UBERON_0005588,rhombomere 8 floor plate,floorplate r8 +http://purl.obolibrary.org/obo/UBERON_0005589,rhombomere 8 lateral wall,lateral wall rhombomere 8 +http://purl.obolibrary.org/obo/UBERON_0005590,rhombomere 8 roof plate,roof plate rhombomere 8 +http://purl.obolibrary.org/obo/UBERON_0005591,diencephalon lateral wall,lateral wall diencephalic region +http://purl.obolibrary.org/obo/UBERON_0005591,diencephalon lateral wall,lateral wall diencephalon +http://purl.obolibrary.org/obo/UBERON_0005594,head somite,occipital somite +http://purl.obolibrary.org/obo/UBERON_0005597,lung primordium, +http://purl.obolibrary.org/obo/UBERON_0005598,trunk somite, +http://purl.obolibrary.org/obo/UBERON_0005599,common dorsal aorta, +http://purl.obolibrary.org/obo/UBERON_0005600,crus commune,crus commune canalis semicircularis +http://purl.obolibrary.org/obo/UBERON_0005601,dorsal mesocardium, +http://purl.obolibrary.org/obo/UBERON_0005602,dorsal mesogastrium, +http://purl.obolibrary.org/obo/UBERON_0005604,extrahepatic part of hepatic duct,extrahepatic part of the hepatic duct +http://purl.obolibrary.org/obo/UBERON_0005604,extrahepatic part of hepatic duct,hepatic duct extrahepatic part +http://purl.obolibrary.org/obo/UBERON_0005605,intrahepatic part of hepatic duct,hepatic duct intrahepatic part +http://purl.obolibrary.org/obo/UBERON_0005605,intrahepatic part of hepatic duct,intrahepatic part of the hepatic duct +http://purl.obolibrary.org/obo/UBERON_0005606,hyaloid cavity, +http://purl.obolibrary.org/obo/UBERON_0005607,hyaloid vascular plexus, +http://purl.obolibrary.org/obo/UBERON_0005608,hyoid artery, +http://purl.obolibrary.org/obo/UBERON_0005609,iliac artery, +http://purl.obolibrary.org/obo/UBERON_0005610,iliac vein, +http://purl.obolibrary.org/obo/UBERON_0005611,inner canthus,medial palpebral commissure +http://purl.obolibrary.org/obo/UBERON_0005612,intercostal artery, +http://purl.obolibrary.org/obo/UBERON_0005613,left dorsal aorta, +http://purl.obolibrary.org/obo/UBERON_0005614,lens anterior epithelium,lens subcapsular epithelium +http://purl.obolibrary.org/obo/UBERON_0005614,lens anterior epithelium,subcapsular lens epithelium +http://purl.obolibrary.org/obo/UBERON_0005615,lens equatorial epithelium, +http://purl.obolibrary.org/obo/UBERON_0005616,mesenteric artery, +http://purl.obolibrary.org/obo/UBERON_0005617,mesenteric vein, +http://purl.obolibrary.org/obo/UBERON_0005619,secondary palatal shelf,lateral palatine process +http://purl.obolibrary.org/obo/UBERON_0005619,secondary palatal shelf,palatal shelf +http://purl.obolibrary.org/obo/UBERON_0005619,secondary palatal shelf,secondary palatal shelf +http://purl.obolibrary.org/obo/UBERON_0005620,primary palate,primary palate process +http://purl.obolibrary.org/obo/UBERON_0005621,rhomboid,rhomboid muscle +http://purl.obolibrary.org/obo/UBERON_0005622,right dorsal aorta, +http://purl.obolibrary.org/obo/UBERON_0005623,semi-lunar valve,semilunar valve +http://purl.obolibrary.org/obo/UBERON_0005623,semi-lunar valve,semilunar valves +http://purl.obolibrary.org/obo/UBERON_0005624,suprarenal artery, +http://purl.obolibrary.org/obo/UBERON_0005625,tubotympanic recess lumen,cavity of tubotympanic recess +http://purl.obolibrary.org/obo/UBERON_0005625,tubotympanic recess lumen,tubotympanic recess cavity +http://purl.obolibrary.org/obo/UBERON_0005625,tubotympanic recess lumen,tubotympanic recess space +http://purl.obolibrary.org/obo/UBERON_0005626,ventral mesogastrium, +http://purl.obolibrary.org/obo/UBERON_0005628,ileal artery,ileal branch of superior mesenteric artery +http://purl.obolibrary.org/obo/UBERON_0005629,vascular plexus,plexus vasculosus +http://purl.obolibrary.org/obo/UBERON_0005630,fetal membrane, +http://purl.obolibrary.org/obo/UBERON_0005631,extraembryonic membrane, +http://purl.obolibrary.org/obo/UBERON_0005636,caecum epithelium, +http://purl.obolibrary.org/obo/UBERON_0005637,pyloric region epithelium, +http://purl.obolibrary.org/obo/UBERON_0005638,anterior chamber epithelium, +http://purl.obolibrary.org/obo/UBERON_0005639,right lung cranial lobe epithelium, +http://purl.obolibrary.org/obo/UBERON_0005640,right lung caudal lobe epithelium, +http://purl.obolibrary.org/obo/UBERON_0005642,ultimobranchial body epithelium, +http://purl.obolibrary.org/obo/UBERON_0005643,foregut duodenum epithelium, +http://purl.obolibrary.org/obo/UBERON_0005644,midgut duodenum epithelium, +http://purl.obolibrary.org/obo/UBERON_0005645,manual digit 2 epithelium,fore limb digit 2 epithelium +http://purl.obolibrary.org/obo/UBERON_0005645,manual digit 2 epithelium,manual digit II epithelium +http://purl.obolibrary.org/obo/UBERON_0005646,manual digit 3 epithelium,fore limb digit 3 epithelium +http://purl.obolibrary.org/obo/UBERON_0005646,manual digit 3 epithelium,manual digit III epithelium +http://purl.obolibrary.org/obo/UBERON_0005647,manual digit 4 epithelium,fore limb digit 4 epithelium +http://purl.obolibrary.org/obo/UBERON_0005647,manual digit 4 epithelium,manual digit IV epithelium +http://purl.obolibrary.org/obo/UBERON_0005648,manual digit 5 epithelium,fore limb digit 5 epithelium +http://purl.obolibrary.org/obo/UBERON_0005648,manual digit 5 epithelium,manual digit V epithelium +http://purl.obolibrary.org/obo/UBERON_0005649,pedal digit 2 epithelium,hind limb digit 2 epithelium +http://purl.obolibrary.org/obo/UBERON_0005649,pedal digit 2 epithelium,pedal digit II epithelium +http://purl.obolibrary.org/obo/UBERON_0005650,pedal digit 3 epithelium,hind limb digit 3 epithelium +http://purl.obolibrary.org/obo/UBERON_0005650,pedal digit 3 epithelium,pedal digit III epithelium +http://purl.obolibrary.org/obo/UBERON_0005651,pedal digit 4 epithelium,hind limb digit 4 epithelium +http://purl.obolibrary.org/obo/UBERON_0005651,pedal digit 4 epithelium,pedal digit IV epithelium +http://purl.obolibrary.org/obo/UBERON_0005652,pedal digit 5 epithelium,hind limb digit 5 epithelium +http://purl.obolibrary.org/obo/UBERON_0005652,pedal digit 5 epithelium,pedal digit V epithelium +http://purl.obolibrary.org/obo/UBERON_0005653,upper jaw molar epithelium, +http://purl.obolibrary.org/obo/UBERON_0005654,lower jaw molar epithelium, +http://purl.obolibrary.org/obo/UBERON_0005655,right lung accessory lobe epithelium, +http://purl.obolibrary.org/obo/UBERON_0005656,lens vesicle epithelium, +http://purl.obolibrary.org/obo/UBERON_0005657,crus commune epithelium, +http://purl.obolibrary.org/obo/UBERON_0005658,secondary palatal shelf epithelium, +http://purl.obolibrary.org/obo/UBERON_0005659,primary palate epithelium, +http://purl.obolibrary.org/obo/UBERON_0005660,2nd arch ectoderm,2nd pharyngeal arch ectoderm +http://purl.obolibrary.org/obo/UBERON_0005661,3rd arch ectoderm,3rd pharyngeal arch ectoderm +http://purl.obolibrary.org/obo/UBERON_0005662,4th arch ectoderm,4th pharyngeal arch ectoderm +http://purl.obolibrary.org/obo/UBERON_0005664,2nd arch endoderm,2nd pharyngeal arch endoderm +http://purl.obolibrary.org/obo/UBERON_0005665,3rd arch endoderm,3rd pharyngeal arch endoderm +http://purl.obolibrary.org/obo/UBERON_0005666,4th arch endoderm,4th pharyngeal arch endoderm +http://purl.obolibrary.org/obo/UBERON_0005667,connecting stalk mesoderm, +http://purl.obolibrary.org/obo/UBERON_0005669,peritoneal cavity mesothelium,mesothelium of peritoneal component +http://purl.obolibrary.org/obo/UBERON_0005669,peritoneal cavity mesothelium,mesothelium of peritoneum +http://purl.obolibrary.org/obo/UBERON_0005669,peritoneal cavity mesothelium,peritoneal mesothelium +http://purl.obolibrary.org/obo/UBERON_0005669,peritoneal cavity mesothelium,peritoneum mesothelium +http://purl.obolibrary.org/obo/UBERON_0005670,greater omentum mesothelium, +http://purl.obolibrary.org/obo/UBERON_0005671,greater sac mesothelium, +http://purl.obolibrary.org/obo/UBERON_0005672,right lung endothelium, +http://purl.obolibrary.org/obo/UBERON_0005673,left lung endothelium, +http://purl.obolibrary.org/obo/UBERON_0005674,right lung cranial lobe endothelium, +http://purl.obolibrary.org/obo/UBERON_0005675,right lung caudal lobe endothelium, +http://purl.obolibrary.org/obo/UBERON_0005676,right lung accessory lobe endothelium, +http://purl.obolibrary.org/obo/UBERON_0005677,caecum mesentery, +http://purl.obolibrary.org/obo/UBERON_0005678,right lung cranial lobe segmental bronchus, +http://purl.obolibrary.org/obo/UBERON_0005679,right lung caudal lobe segmental bronchus, +http://purl.obolibrary.org/obo/UBERON_0005680,right lung accessory lobe segmental bronchus, +http://purl.obolibrary.org/obo/UBERON_0005681,right lung upper lobe bronchiole,bronchiole of right upper lobe +http://purl.obolibrary.org/obo/UBERON_0005681,right lung upper lobe bronchiole,bronchiole of right upper lobe of lung +http://purl.obolibrary.org/obo/UBERON_0005681,right lung upper lobe bronchiole,right lung cranial lobe bronchiole +http://purl.obolibrary.org/obo/UBERON_0005682,right lung accessory lobe bronchiole, +http://purl.obolibrary.org/obo/UBERON_0005685,midgut dorsal mesentery, +http://purl.obolibrary.org/obo/UBERON_0005686,caecum dorsal mesentery, +http://purl.obolibrary.org/obo/UBERON_0005687,orbitosphenoid cartilage element, +http://purl.obolibrary.org/obo/UBERON_0005688,lens vesicle cavity,cavity of lens vesicle +http://purl.obolibrary.org/obo/UBERON_0005689,2nd arch mesenchyme,2nd pharyngeal arch mesenchyme +http://purl.obolibrary.org/obo/UBERON_0005690,3rd arch mesenchyme,3rd pharyngeal arch mesenchyme +http://purl.obolibrary.org/obo/UBERON_0005691,4th arch mesenchyme,4th pharyngeal arch mesenchyme +http://purl.obolibrary.org/obo/UBERON_0005692,manual digit 2 mesenchyme,fore limb digit 2 mesenchyme +http://purl.obolibrary.org/obo/UBERON_0005692,manual digit 2 mesenchyme,manual digit II mesenchyme +http://purl.obolibrary.org/obo/UBERON_0005693,manual digit 3 mesenchyme,fore limb digit 3 mesenchyme +http://purl.obolibrary.org/obo/UBERON_0005693,manual digit 3 mesenchyme,manual digit III mesenchyme +http://purl.obolibrary.org/obo/UBERON_0005694,manual digit 4 mesenchyme,fore limb digit 4 mesenchyme +http://purl.obolibrary.org/obo/UBERON_0005694,manual digit 4 mesenchyme,manual digit IV mesenchyme +http://purl.obolibrary.org/obo/UBERON_0005695,manual digit 5 mesenchyme,fore limb digit 5 mesenchyme +http://purl.obolibrary.org/obo/UBERON_0005695,manual digit 5 mesenchyme,manual digit V mesenchyme +http://purl.obolibrary.org/obo/UBERON_0005696,pedal digit 2 mesenchyme,hind limb digit 2 mesenchyme +http://purl.obolibrary.org/obo/UBERON_0005696,pedal digit 2 mesenchyme,pedal digit II mesenchyme +http://purl.obolibrary.org/obo/UBERON_0005697,pedal digit 3 mesenchyme,hind limb digit 3 mesenchyme +http://purl.obolibrary.org/obo/UBERON_0005697,pedal digit 3 mesenchyme,pedal digit III mesenchyme +http://purl.obolibrary.org/obo/UBERON_0005698,pedal digit 4 mesenchyme,hind limb digit 4 mesenchyme +http://purl.obolibrary.org/obo/UBERON_0005698,pedal digit 4 mesenchyme,pedal digit IV mesenchyme +http://purl.obolibrary.org/obo/UBERON_0005699,pedal digit 5 mesenchyme,hind limb digit 5 mesenchyme +http://purl.obolibrary.org/obo/UBERON_0005699,pedal digit 5 mesenchyme,pedal digit V mesenchyme +http://purl.obolibrary.org/obo/UBERON_0005700,upper jaw molar odontogenic papilla,upper jaw molar dental papilla +http://purl.obolibrary.org/obo/UBERON_0005700,upper jaw molar odontogenic papilla,upper molar mesenchyme +http://purl.obolibrary.org/obo/UBERON_0005701,lower jaw molar odontogenic papilla,lower jaw molar dental papilla +http://purl.obolibrary.org/obo/UBERON_0005701,lower jaw molar odontogenic papilla,lower molar mesenchyme +http://purl.obolibrary.org/obo/UBERON_0005702,optic eminence mesenchyme, +http://purl.obolibrary.org/obo/UBERON_0005704,secondary palatal shelf mesenchyme, +http://purl.obolibrary.org/obo/UBERON_0005705,primary palate mesenchyme, +http://purl.obolibrary.org/obo/UBERON_0005707,upper jaw incisor odontogenic papilla,upper incisor mesenchyme +http://purl.obolibrary.org/obo/UBERON_0005707,upper jaw incisor odontogenic papilla,upper jaw incisor dental papilla +http://purl.obolibrary.org/obo/UBERON_0005708,lower jaw incisor odontogenic papilla,lower incisor mesenchyme +http://purl.obolibrary.org/obo/UBERON_0005708,lower jaw incisor odontogenic papilla,lower jaw incisor dental papilla +http://purl.obolibrary.org/obo/UBERON_0005709,upper jaw incisor epithelium, +http://purl.obolibrary.org/obo/UBERON_0005710,lower jaw incisor epithelium, +http://purl.obolibrary.org/obo/UBERON_0005711,foregut duodenum mesentery, +http://purl.obolibrary.org/obo/UBERON_0005712,midgut duodenum mesentery, +http://purl.obolibrary.org/obo/UBERON_0005719,footplate apical ectodermal ridge, +http://purl.obolibrary.org/obo/UBERON_0005720,hindbrain venous system, +http://purl.obolibrary.org/obo/UBERON_0005721,pronephric mesoderm, +http://purl.obolibrary.org/obo/UBERON_0005723,floor plate spinal cord region,floor plate spinal cord +http://purl.obolibrary.org/obo/UBERON_0005723,floor plate spinal cord region,floorplate spinal cord +http://purl.obolibrary.org/obo/UBERON_0005724,roof plate spinal cord region,roof plate spinal cord +http://purl.obolibrary.org/obo/UBERON_0005725,olfactory system, +http://purl.obolibrary.org/obo/UBERON_0005726,chemosensory system, +http://purl.obolibrary.org/obo/UBERON_0005728,extraembryonic mesoderm,extra-embryonic mesoderm +http://purl.obolibrary.org/obo/UBERON_0005728,extraembryonic mesoderm,extraembryonic mesenchyme +http://purl.obolibrary.org/obo/UBERON_0005729,pectoral appendage field,pectoral appendage field of lateral plate mesoderm +http://purl.obolibrary.org/obo/UBERON_0005730,pelvic appendage field,pelvic appendage field of lateral plate mesoderm +http://purl.obolibrary.org/obo/UBERON_0005731,fin field,fin field of lateral plate mesoderm +http://purl.obolibrary.org/obo/UBERON_0005732,paired limb/fin field,limb/fin field of lateral plate mesoderm +http://purl.obolibrary.org/obo/UBERON_0005732,paired limb/fin field,paired limb/fin field +http://purl.obolibrary.org/obo/UBERON_0005733,limb field,limb field of lateral plate mesoderm +http://purl.obolibrary.org/obo/UBERON_0005734,tunica adventitia of blood vessel,adventitia externa +http://purl.obolibrary.org/obo/UBERON_0005734,tunica adventitia of blood vessel,external coat +http://purl.obolibrary.org/obo/UBERON_0005734,tunica adventitia of blood vessel,tunica adventitia +http://purl.obolibrary.org/obo/UBERON_0005734,tunica adventitia of blood vessel,tunica adventitia of vessel +http://purl.obolibrary.org/obo/UBERON_0005734,tunica adventitia of blood vessel,tunica adventitia vasorum +http://purl.obolibrary.org/obo/UBERON_0005734,tunica adventitia of blood vessel,tunica externa vasorum +http://purl.obolibrary.org/obo/UBERON_0005737,swim bladder tunica externa, +http://purl.obolibrary.org/obo/UBERON_0005738,swim bladder tunica interna,tunica interna +http://purl.obolibrary.org/obo/UBERON_0005740,tunica intima of artery,arterial intima +http://purl.obolibrary.org/obo/UBERON_0005740,tunica intima of artery,tunica interna (intima)(arteriae) +http://purl.obolibrary.org/obo/UBERON_0005742,adventitia,tunica advetitia +http://purl.obolibrary.org/obo/UBERON_0005742,adventitia,tunica externa +http://purl.obolibrary.org/obo/UBERON_0005744,bone foramen, +http://purl.obolibrary.org/obo/UBERON_0005745,optic foramen,optic canal +http://purl.obolibrary.org/obo/UBERON_0005745,optic foramen,optic foramen +http://purl.obolibrary.org/obo/UBERON_0005745,optic foramen,optic nerve (II) foramen +http://purl.obolibrary.org/obo/UBERON_0005745,optic foramen,optic nerve foramen +http://purl.obolibrary.org/obo/UBERON_0005746,primary vitreous,primary vitreous +http://purl.obolibrary.org/obo/UBERON_0005749,glomerular tuft, +http://purl.obolibrary.org/obo/UBERON_0005750,glomerular parietal epithelium,Bowman's parietal epithelium +http://purl.obolibrary.org/obo/UBERON_0005750,glomerular parietal epithelium,capsular epithelium +http://purl.obolibrary.org/obo/UBERON_0005750,glomerular parietal epithelium,glomerular capsule parietal layer +http://purl.obolibrary.org/obo/UBERON_0005750,glomerular parietal epithelium,outer layer of glomerular capsule +http://purl.obolibrary.org/obo/UBERON_0005750,glomerular parietal epithelium,parietal capsular epithelium +http://purl.obolibrary.org/obo/UBERON_0005750,glomerular parietal epithelium,parietal epithelial layer +http://purl.obolibrary.org/obo/UBERON_0005750,glomerular parietal epithelium,parietal epithelium of Bowman's capsule +http://purl.obolibrary.org/obo/UBERON_0005750,glomerular parietal epithelium,parietal layer of Bowman capsule +http://purl.obolibrary.org/obo/UBERON_0005750,glomerular parietal epithelium,parietal layer of Bowman's capsule +http://purl.obolibrary.org/obo/UBERON_0005750,glomerular parietal epithelium,parietal layer of glomerular capsule +http://purl.obolibrary.org/obo/UBERON_0005750,glomerular parietal epithelium,renal glomerular capsule epithelium +http://purl.obolibrary.org/obo/UBERON_0005751,glomerular visceral epithelium,Bowman's visceral epithelium +http://purl.obolibrary.org/obo/UBERON_0005751,glomerular visceral epithelium,glomerular capsule visceral layer +http://purl.obolibrary.org/obo/UBERON_0005751,glomerular visceral epithelium,inner epithelial layer of Bowman's capsule +http://purl.obolibrary.org/obo/UBERON_0005751,glomerular visceral epithelium,podocyte layer of Bowman's capsule +http://purl.obolibrary.org/obo/UBERON_0005751,glomerular visceral epithelium,visceral epithelium of Bowman's capsule +http://purl.obolibrary.org/obo/UBERON_0005751,glomerular visceral epithelium,visceral layer of Bowman's capsule +http://purl.obolibrary.org/obo/UBERON_0005751,glomerular visceral epithelium,visceral layer of glomerular capsule +http://purl.obolibrary.org/obo/UBERON_0005753,caudal part of nephrogenic cord,caudal portion of nephrogenic cord +http://purl.obolibrary.org/obo/UBERON_0005753,caudal part of nephrogenic cord,caudal region of nephrogenic cord +http://purl.obolibrary.org/obo/UBERON_0005753,caudal part of nephrogenic cord,rear part of nephrogenic cord +http://purl.obolibrary.org/obo/UBERON_0005753,caudal part of nephrogenic cord,rear portion of nephrogenic cord +http://purl.obolibrary.org/obo/UBERON_0005754,rostral part of nephrogenic cord, +http://purl.obolibrary.org/obo/UBERON_0005760,urorectal septum,septum urorectale +http://purl.obolibrary.org/obo/UBERON_0005760,urorectal septum,urorectal fold +http://purl.obolibrary.org/obo/UBERON_0005760,urorectal septum,urorectal membrane +http://purl.obolibrary.org/obo/UBERON_0005764,acellular membrane, +http://purl.obolibrary.org/obo/UBERON_0005769,basement membrane of epithelium,basement membrane +http://purl.obolibrary.org/obo/UBERON_0005769,basement membrane of epithelium,basement membrane of connective tissue +http://purl.obolibrary.org/obo/UBERON_0005769,basement membrane of epithelium,membrana basalis +http://purl.obolibrary.org/obo/UBERON_0005777,glomerular basement membrane,glomerular capillary basement membrane +http://purl.obolibrary.org/obo/UBERON_0005777,glomerular basement membrane,glomerular filtration membrane +http://purl.obolibrary.org/obo/UBERON_0005787,lamina densa of glomerular basement membrane,lamina densa of glomerular basement membrane +http://purl.obolibrary.org/obo/UBERON_0005787,lamina densa of glomerular basement membrane,middle layer of glomerular basement membrane +http://purl.obolibrary.org/obo/UBERON_0005788,lamina rara interna,internal layer of glomerular basement membrane +http://purl.obolibrary.org/obo/UBERON_0005788,lamina rara interna,lamina interna of glomerular basement membrane +http://purl.obolibrary.org/obo/UBERON_0005789,lamina rara externa,external layer of glomerular basement membrane +http://purl.obolibrary.org/obo/UBERON_0005789,lamina rara externa,lamina externa of glomerular basement membrane +http://purl.obolibrary.org/obo/UBERON_0005792,nephric ridge, +http://purl.obolibrary.org/obo/UBERON_0005795,embryonic uterus,fetal uterus +http://purl.obolibrary.org/obo/UBERON_0005796,duplex uterus, +http://purl.obolibrary.org/obo/UBERON_0005797,bipartite uterus, +http://purl.obolibrary.org/obo/UBERON_0005798,bicornuate uterus,bicornate uterus +http://purl.obolibrary.org/obo/UBERON_0005798,bicornuate uterus,uterus with two horns +http://purl.obolibrary.org/obo/UBERON_0005799,simplex uterus, +http://purl.obolibrary.org/obo/UBERON_0005800,section of aorta,aortic section +http://purl.obolibrary.org/obo/UBERON_0005800,section of aorta,aortic segment +http://purl.obolibrary.org/obo/UBERON_0005800,section of aorta,portion of aorta +http://purl.obolibrary.org/obo/UBERON_0005800,section of aorta,segment of aorta +http://purl.obolibrary.org/obo/UBERON_0005805,dorsal aorta,DA +http://purl.obolibrary.org/obo/UBERON_0005805,dorsal aorta,aorta dorsalis +http://purl.obolibrary.org/obo/UBERON_0005806,portal system,portal venous system +http://purl.obolibrary.org/obo/UBERON_0005807,rostral ventrolateral medulla,RVLM +http://purl.obolibrary.org/obo/UBERON_0005807,rostral ventrolateral medulla,medulla pressor +http://purl.obolibrary.org/obo/UBERON_0005808,bone tissue of long bone, +http://purl.obolibrary.org/obo/UBERON_0005809,cortex of manus bone, +http://purl.obolibrary.org/obo/UBERON_0005810,cervical vertebra 1 anterior tubercle,anterior tubercle of atlas +http://purl.obolibrary.org/obo/UBERON_0005810,cervical vertebra 1 anterior tubercle,atlas ventral tubercle +http://purl.obolibrary.org/obo/UBERON_0005810,cervical vertebra 1 anterior tubercle,cervical vertebra 1 ventral tubercle +http://purl.obolibrary.org/obo/UBERON_0005810,cervical vertebra 1 anterior tubercle,tubercle of anterior arch of atlas +http://purl.obolibrary.org/obo/UBERON_0005810,cervical vertebra 1 anterior tubercle,tuberculum anterius (atlas) +http://purl.obolibrary.org/obo/UBERON_0005810,cervical vertebra 1 anterior tubercle,tuberculum anterius atlantis +http://purl.obolibrary.org/obo/UBERON_0005810,cervical vertebra 1 anterior tubercle,ventral tubercle of atlas +http://purl.obolibrary.org/obo/UBERON_0005813,tubercle, +http://purl.obolibrary.org/obo/UBERON_0005814,arch of atlas,atlas arch +http://purl.obolibrary.org/obo/UBERON_0005815,anterior tubercle of transverse process of cervical vertebra,anterior costal tubercle of transverse process of cervical vertebra +http://purl.obolibrary.org/obo/UBERON_0005815,anterior tubercle of transverse process of cervical vertebra,anterior tubercle of cervical vertebra +http://purl.obolibrary.org/obo/UBERON_0005815,anterior tubercle of transverse process of cervical vertebra,tuberculum cervicales anterius vertebrae +http://purl.obolibrary.org/obo/UBERON_0005816,posterior tubercle of transverse process of cervical vertebra,posterior costal tubercle of transverse process of cervical vertebra +http://purl.obolibrary.org/obo/UBERON_0005816,posterior tubercle of transverse process of cervical vertebra,posterior tubercle of cervical vertebra +http://purl.obolibrary.org/obo/UBERON_0005816,posterior tubercle of transverse process of cervical vertebra,tuberculum cervicales posterius vertebrae +http://purl.obolibrary.org/obo/UBERON_0005817,neuraxis flexure, +http://purl.obolibrary.org/obo/UBERON_0005818,cephalic midbrain flexure,cephalic flexure +http://purl.obolibrary.org/obo/UBERON_0005818,cephalic midbrain flexure,cerebral flexure +http://purl.obolibrary.org/obo/UBERON_0005818,cephalic midbrain flexure,cranial flexure +http://purl.obolibrary.org/obo/UBERON_0005818,cephalic midbrain flexure,mesencephalic flexure +http://purl.obolibrary.org/obo/UBERON_0005818,cephalic midbrain flexure,midbrain flexure +http://purl.obolibrary.org/obo/UBERON_0005818,cephalic midbrain flexure,ventral flexure +http://purl.obolibrary.org/obo/UBERON_0005819,cervical flexure, +http://purl.obolibrary.org/obo/UBERON_0005820,pontine flexure,(embryonic) hindbrain flexure +http://purl.obolibrary.org/obo/UBERON_0005820,pontine flexure,basicranial flexure +http://purl.obolibrary.org/obo/UBERON_0005820,pontine flexure,pontal flexure +http://purl.obolibrary.org/obo/UBERON_0005820,pontine flexure,transverse rhombencephalic flexure +http://purl.obolibrary.org/obo/UBERON_0005821,gracile fasciculus,fasciculus gracilis +http://purl.obolibrary.org/obo/UBERON_0005821,gracile fasciculus,gracile fascicle +http://purl.obolibrary.org/obo/UBERON_0005821,gracile fasciculus,gracilis tract +http://purl.obolibrary.org/obo/UBERON_0005826,gracile fasciculus of spinal cord,fasciculus gracilis (medulla spinalis) +http://purl.obolibrary.org/obo/UBERON_0005826,gracile fasciculus of spinal cord,gracile fascicle of spinal cord +http://purl.obolibrary.org/obo/UBERON_0005826,gracile fasciculus of spinal cord,spinal cord segment of fasciculus gracilis +http://purl.obolibrary.org/obo/UBERON_0005826,gracile fasciculus of spinal cord,spinal cord segment of gracile fasciculus +http://purl.obolibrary.org/obo/UBERON_0005832,cuneate fasciculus,cuneatus tract +http://purl.obolibrary.org/obo/UBERON_0005835,cuneate fasciculus of spinal cord,burdach's tract +http://purl.obolibrary.org/obo/UBERON_0005835,cuneate fasciculus of spinal cord,cuneate fascicle of spinal cord +http://purl.obolibrary.org/obo/UBERON_0005835,cuneate fasciculus of spinal cord,fasciculus cuneatus +http://purl.obolibrary.org/obo/UBERON_0005835,cuneate fasciculus of spinal cord,tract of Burdach +http://purl.obolibrary.org/obo/UBERON_0005837,fasciculus of spinal cord,spinal cord fasciculus +http://purl.obolibrary.org/obo/UBERON_0005838,fasciculus of brain,brain fasciculus +http://purl.obolibrary.org/obo/UBERON_0005839,thoracic spinal cord dorsal column,dorsal funiculus of thoracic segment of spinal cord +http://purl.obolibrary.org/obo/UBERON_0005839,thoracic spinal cord dorsal column,dorsal white column of thoracic segment of spinal cord +http://purl.obolibrary.org/obo/UBERON_0005839,thoracic spinal cord dorsal column,thoracic segment of dorsal funiculus of spinal cord +http://purl.obolibrary.org/obo/UBERON_0005839,thoracic spinal cord dorsal column,thoracic spinal cord posterior column +http://purl.obolibrary.org/obo/UBERON_0005840,sacral spinal cord dorsal column,sacral spinal cord posterior column +http://purl.obolibrary.org/obo/UBERON_0005840,sacral spinal cord dorsal column,sacral subsegment of dorsal funiculus of spinal cord +http://purl.obolibrary.org/obo/UBERON_0005841,cervical spinal cord dorsal column,cervical segment of dorsal funiculus of spinal cord +http://purl.obolibrary.org/obo/UBERON_0005841,cervical spinal cord dorsal column,cervical spinal cord posterior column +http://purl.obolibrary.org/obo/UBERON_0005841,cervical spinal cord dorsal column,dorsal funiculus of cervical segment of spinal cord +http://purl.obolibrary.org/obo/UBERON_0005841,cervical spinal cord dorsal column,dorsal white column of cervical segment of spinal cord +http://purl.obolibrary.org/obo/UBERON_0005842,lumbar spinal cord dorsal column,dorsal funiculus of lumbar segment of spinal cord +http://purl.obolibrary.org/obo/UBERON_0005842,lumbar spinal cord dorsal column,dorsal white column of lumbar segment of spinal cord +http://purl.obolibrary.org/obo/UBERON_0005842,lumbar spinal cord dorsal column,lumbar segment of dorsal funiculus of spinal cord +http://purl.obolibrary.org/obo/UBERON_0005842,lumbar spinal cord dorsal column,lumbar segment of gracile fasciculus of spinal cord +http://purl.obolibrary.org/obo/UBERON_0005842,lumbar spinal cord dorsal column,lumbar spinal cord posterior column +http://purl.obolibrary.org/obo/UBERON_0005843,sacral spinal cord,pars sacralis medullae spinalis +http://purl.obolibrary.org/obo/UBERON_0005843,sacral spinal cord,sacral segment of spinal cord +http://purl.obolibrary.org/obo/UBERON_0005843,sacral spinal cord,sacral segments of spinal cord [1-5] +http://purl.obolibrary.org/obo/UBERON_0005843,sacral spinal cord,segmenta sacralia medullae spinalis [1-5] +http://purl.obolibrary.org/obo/UBERON_0005844,spinal cord segment,axial part of spinal cord +http://purl.obolibrary.org/obo/UBERON_0005844,spinal cord segment,axial regional part of spinal cord +http://purl.obolibrary.org/obo/UBERON_0005844,spinal cord segment,segment of spinal cord +http://purl.obolibrary.org/obo/UBERON_0005844,spinal cord segment,spinal neuromeres +http://purl.obolibrary.org/obo/UBERON_0005845,caudal segment of spinal cord,coccygeal segment of spinal cord +http://purl.obolibrary.org/obo/UBERON_0005845,caudal segment of spinal cord,coccygeal segments of spinal cord [1-3] +http://purl.obolibrary.org/obo/UBERON_0005845,caudal segment of spinal cord,pars coccygea medullae spinalis +http://purl.obolibrary.org/obo/UBERON_0005845,caudal segment of spinal cord,segmenta coccygea medullae spinalis [1-3] +http://purl.obolibrary.org/obo/UBERON_0005847,thoracic spinal cord lateral column, +http://purl.obolibrary.org/obo/UBERON_0005848,sacral spinal cord lateral column, +http://purl.obolibrary.org/obo/UBERON_0005849,cervical spinal cord lateral column, +http://purl.obolibrary.org/obo/UBERON_0005850,lumbar spinal cord lateral column, +http://purl.obolibrary.org/obo/UBERON_0005852,thoracic spinal cord ventral column, +http://purl.obolibrary.org/obo/UBERON_0005853,sacral spinal cord ventral column, +http://purl.obolibrary.org/obo/UBERON_0005854,cervical spinal cord ventral column,cervical spinal cord anterior column +http://purl.obolibrary.org/obo/UBERON_0005855,lumbar spinal cord ventral column, +http://purl.obolibrary.org/obo/UBERON_0005856,developing mesenchymal condensation,mesenchyme condensation +http://purl.obolibrary.org/obo/UBERON_0005863,cartilaginous condensation,cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0005863,cartilaginous condensation,cartilagenous condensation +http://purl.obolibrary.org/obo/UBERON_0005863,cartilaginous condensation,chondrogenic condensation +http://purl.obolibrary.org/obo/UBERON_0005865,pre-muscle condensation,pre muscle mass +http://purl.obolibrary.org/obo/UBERON_0005865,pre-muscle condensation,premuscle mass +http://purl.obolibrary.org/obo/UBERON_0005866,pre-cartilage condensation,pre-chondrogenic condensation +http://purl.obolibrary.org/obo/UBERON_0005866,pre-cartilage condensation,precartilage condensation +http://purl.obolibrary.org/obo/UBERON_0005866,pre-cartilage condensation,precartilagenous condensation +http://purl.obolibrary.org/obo/UBERON_0005866,pre-cartilage condensation,prechondrogenic condensation +http://purl.obolibrary.org/obo/UBERON_0005867,mandibular prominence, +http://purl.obolibrary.org/obo/UBERON_0005868,maxillary prominence,embryonic maxillary process +http://purl.obolibrary.org/obo/UBERON_0005868,maxillary prominence,maxillary process +http://purl.obolibrary.org/obo/UBERON_0005868,maxillary prominence,maxillary process of embryo +http://purl.obolibrary.org/obo/UBERON_0005869,maxillary process of inferior nasal concha,maxillary process of inferior concha +http://purl.obolibrary.org/obo/UBERON_0005869,maxillary process of inferior nasal concha,maxillary process of inferior nasal turbinate +http://purl.obolibrary.org/obo/UBERON_0005869,maxillary process of inferior nasal concha,maxillary process of inferior turbinate +http://purl.obolibrary.org/obo/UBERON_0005869,maxillary process of inferior nasal concha,processus maxillaris (concha nasalis inferior) +http://purl.obolibrary.org/obo/UBERON_0005869,maxillary process of inferior nasal concha,processus maxillaris conchae nasalis inferioris +http://purl.obolibrary.org/obo/UBERON_0005870,olfactory pit,nasal pit +http://purl.obolibrary.org/obo/UBERON_0005871,palatine process of maxilla,pars palatina of maxilla +http://purl.obolibrary.org/obo/UBERON_0005871,palatine process of maxilla,processus palatinus (maxilla) +http://purl.obolibrary.org/obo/UBERON_0005872,1st arch pharyngeal cleft,1st arch branchial groove +http://purl.obolibrary.org/obo/UBERON_0005872,1st arch pharyngeal cleft,1st arch groove ectoderm +http://purl.obolibrary.org/obo/UBERON_0005872,1st arch pharyngeal cleft,1st pharyngeal groove +http://purl.obolibrary.org/obo/UBERON_0005872,1st arch pharyngeal cleft,1st pharyngeal groove ectoderm +http://purl.obolibrary.org/obo/UBERON_0005872,1st arch pharyngeal cleft,branchial groove of 1st arch +http://purl.obolibrary.org/obo/UBERON_0005873,2nd arch pharyngeal cleft,2nd arch branchial groove +http://purl.obolibrary.org/obo/UBERON_0005873,2nd arch pharyngeal cleft,2nd arch groove ectoderm +http://purl.obolibrary.org/obo/UBERON_0005873,2nd arch pharyngeal cleft,2nd pharyngeal groove +http://purl.obolibrary.org/obo/UBERON_0005873,2nd arch pharyngeal cleft,2nd pharyngeal groove ectoderm +http://purl.obolibrary.org/obo/UBERON_0005873,2nd arch pharyngeal cleft,branchial groove of 2nd arch +http://purl.obolibrary.org/obo/UBERON_0005874,3rd arch pharyngeal cleft,3rd arch branchial groove +http://purl.obolibrary.org/obo/UBERON_0005874,3rd arch pharyngeal cleft,3rd arch groove ectoderm +http://purl.obolibrary.org/obo/UBERON_0005874,3rd arch pharyngeal cleft,3rd pharyngeal groove +http://purl.obolibrary.org/obo/UBERON_0005874,3rd arch pharyngeal cleft,3rd pharyngeal groove ectoderm +http://purl.obolibrary.org/obo/UBERON_0005874,3rd arch pharyngeal cleft,branchial groove of 3rd arch +http://purl.obolibrary.org/obo/UBERON_0005875,4th arch pharyngeal cleft,4th arch branchial groove +http://purl.obolibrary.org/obo/UBERON_0005875,4th arch pharyngeal cleft,4th arch pharyngeal groove ectoderm +http://purl.obolibrary.org/obo/UBERON_0005875,4th arch pharyngeal cleft,4th pharyngeal groove +http://purl.obolibrary.org/obo/UBERON_0005875,4th arch pharyngeal cleft,4th pharyngeal groove ectoderm +http://purl.obolibrary.org/obo/UBERON_0005875,4th arch pharyngeal cleft,branchial groove of 4th arch +http://purl.obolibrary.org/obo/UBERON_0005876,undifferentiated genital tubercle,undifferentiated genital tubercle +http://purl.obolibrary.org/obo/UBERON_0005879,pharyngeal cleft,pharyngeal groove ectoderm +http://purl.obolibrary.org/obo/UBERON_0005880,prepollex, +http://purl.obolibrary.org/obo/UBERON_0005881,autopodial extension, +http://purl.obolibrary.org/obo/UBERON_0005882,neural tube alar plate,alar plate +http://purl.obolibrary.org/obo/UBERON_0005882,neural tube alar plate,alar plate of neural tube +http://purl.obolibrary.org/obo/UBERON_0005883,neural tube lateral wall mantle layer, +http://purl.obolibrary.org/obo/UBERON_0005884,hyoid arch skeleton,hyoid arch skeleton +http://purl.obolibrary.org/obo/UBERON_0005884,hyoid arch skeleton,pharyngeal arch 2 skeleton +http://purl.obolibrary.org/obo/UBERON_0005886,post-hyoid pharyngeal arch skeleton,gill arch 1-5 skeleton +http://purl.obolibrary.org/obo/UBERON_0005886,post-hyoid pharyngeal arch skeleton,pharyngeal arch 3-7 skeleton +http://purl.obolibrary.org/obo/UBERON_0005890,gonad germinal epithelium,germinal epithelium +http://purl.obolibrary.org/obo/UBERON_0005891,coelomic epithelium,celomic epithelium +http://purl.obolibrary.org/obo/UBERON_0005891,coelomic epithelium,germinal epithelium of Waldeyer +http://purl.obolibrary.org/obo/UBERON_0005892,mesonephric early distal tubule, +http://purl.obolibrary.org/obo/UBERON_0005893,leg bone, +http://purl.obolibrary.org/obo/UBERON_0005895,insect leg,imaginal disc-derived leg +http://purl.obolibrary.org/obo/UBERON_0005897,manus bone,bone of hand +http://purl.obolibrary.org/obo/UBERON_0005897,manus bone,bone of hand skeleton +http://purl.obolibrary.org/obo/UBERON_0005897,manus bone,bone of manus +http://purl.obolibrary.org/obo/UBERON_0005897,manus bone,bone of pectoral limb autopod +http://purl.obolibrary.org/obo/UBERON_0005897,manus bone,bone of pectoral limb autopodium +http://purl.obolibrary.org/obo/UBERON_0005897,manus bone,forelimb autopod bone +http://purl.obolibrary.org/obo/UBERON_0005897,manus bone,forelimb autopodium bone +http://purl.obolibrary.org/obo/UBERON_0005897,manus bone,hand bone +http://purl.obolibrary.org/obo/UBERON_0005899,pes bone,bone of foor proper or tarsal skeleton +http://purl.obolibrary.org/obo/UBERON_0005899,pes bone,bone of foot +http://purl.obolibrary.org/obo/UBERON_0005899,pes bone,bone of pedal skeleton +http://purl.obolibrary.org/obo/UBERON_0005899,pes bone,bone of pes +http://purl.obolibrary.org/obo/UBERON_0005899,pes bone,foot bone +http://purl.obolibrary.org/obo/UBERON_0005902,occipital region,basicranial region +http://purl.obolibrary.org/obo/UBERON_0005902,occipital region,occipital part of head +http://purl.obolibrary.org/obo/UBERON_0005902,occipital region,occipital region of head +http://purl.obolibrary.org/obo/UBERON_0005903,duct of seminal vesicle,ductus excretorius (vesicula seminalis) +http://purl.obolibrary.org/obo/UBERON_0005903,duct of seminal vesicle,ductus excretorius glandulae vesiculosae +http://purl.obolibrary.org/obo/UBERON_0005903,duct of seminal vesicle,excretory duct of seminal gland +http://purl.obolibrary.org/obo/UBERON_0005903,duct of seminal vesicle,seminal vesicle duct +http://purl.obolibrary.org/obo/UBERON_0005904,duct of male reproductive system, +http://purl.obolibrary.org/obo/UBERON_0005905,insect labrum,insect labium +http://purl.obolibrary.org/obo/UBERON_0005906,serous sac, +http://purl.obolibrary.org/obo/UBERON_0005908,conjunctival sac,conjunctiva serous sac +http://purl.obolibrary.org/obo/UBERON_0005911,endo-epithelium,endoderm-derived epithelium +http://purl.obolibrary.org/obo/UBERON_0005911,endo-epithelium,endoepithelium +http://purl.obolibrary.org/obo/UBERON_0005912,transitional epithelium of major calyx,urothelium of major calyx +http://purl.obolibrary.org/obo/UBERON_0005913,zone of bone organ,bone organ zone +http://purl.obolibrary.org/obo/UBERON_0005919,supreme nasal concha,concha nasi suprema +http://purl.obolibrary.org/obo/UBERON_0005919,supreme nasal concha,highest nasal concha +http://purl.obolibrary.org/obo/UBERON_0005919,supreme nasal concha,supreme nasal turbinate +http://purl.obolibrary.org/obo/UBERON_0005919,supreme nasal concha,supreme turbinate +http://purl.obolibrary.org/obo/UBERON_0005920,superior nasal concha,superior nasal turbinate +http://purl.obolibrary.org/obo/UBERON_0005920,superior nasal concha,superior turbinate +http://purl.obolibrary.org/obo/UBERON_0005921,middle nasal concha,middle nasal turbinate +http://purl.obolibrary.org/obo/UBERON_0005921,middle nasal concha,middle turbinate +http://purl.obolibrary.org/obo/UBERON_0005922,inferior nasal concha,inferior nasal turbinate +http://purl.obolibrary.org/obo/UBERON_0005922,inferior nasal concha,inferior nasal turbinate bone +http://purl.obolibrary.org/obo/UBERON_0005922,inferior nasal concha,inferior turbinate +http://purl.obolibrary.org/obo/UBERON_0005925,ethmoidal process of inferior nasal concha,ethmoidal process of inferior concha +http://purl.obolibrary.org/obo/UBERON_0005925,ethmoidal process of inferior nasal concha,ethmoidal process of inferior nasal turbinate +http://purl.obolibrary.org/obo/UBERON_0005925,ethmoidal process of inferior nasal concha,ethmoidal process of inferior turbinate +http://purl.obolibrary.org/obo/UBERON_0005925,ethmoidal process of inferior nasal concha,processus ethmoidalis (concha nasalis inferior) +http://purl.obolibrary.org/obo/UBERON_0005925,ethmoidal process of inferior nasal concha,processus ethmoidalis conchae nasalis inferioris +http://purl.obolibrary.org/obo/UBERON_0005928,external naris,external nares +http://purl.obolibrary.org/obo/UBERON_0005928,external naris,nostril +http://purl.obolibrary.org/obo/UBERON_0005931,primary choana, +http://purl.obolibrary.org/obo/UBERON_0005932,bulb of hair follicle,hair bulb +http://purl.obolibrary.org/obo/UBERON_0005932,bulb of hair follicle,hair follicle bulb +http://purl.obolibrary.org/obo/UBERON_0005933,hair root sheath, +http://purl.obolibrary.org/obo/UBERON_0005941,hair inner root sheath,hair follicle inner root sheath +http://purl.obolibrary.org/obo/UBERON_0005941,hair inner root sheath,inner root sheath of hair follicle +http://purl.obolibrary.org/obo/UBERON_0005941,hair inner root sheath,inner sheath of hair follicle +http://purl.obolibrary.org/obo/UBERON_0005941,hair inner root sheath,internal root sheath of hair follicle +http://purl.obolibrary.org/obo/UBERON_0005942,hair outer root sheath,external root sheath of hair follicle +http://purl.obolibrary.org/obo/UBERON_0005942,hair outer root sheath,hair follicle outer root sheath +http://purl.obolibrary.org/obo/UBERON_0005942,hair outer root sheath,outer root sheath of hair follicle +http://purl.obolibrary.org/obo/UBERON_0005943,hair root sheath matrix, +http://purl.obolibrary.org/obo/UBERON_0005944,axial skeleton plus cranial skeleton, +http://purl.obolibrary.org/obo/UBERON_0005945,neurocranial trabecula,neurocranial trabeculae +http://purl.obolibrary.org/obo/UBERON_0005946,outflow tract of atrium,outflow part of atrium +http://purl.obolibrary.org/obo/UBERON_0005953,outflow part of right ventricle,RVOT +http://purl.obolibrary.org/obo/UBERON_0005953,outflow part of right ventricle,conus arteriosus (infundibulum) +http://purl.obolibrary.org/obo/UBERON_0005953,outflow part of right ventricle,infundibulum of right ventricle +http://purl.obolibrary.org/obo/UBERON_0005953,outflow part of right ventricle,outflow tract of right ventricle +http://purl.obolibrary.org/obo/UBERON_0005953,outflow part of right ventricle,pulmonary conus +http://purl.obolibrary.org/obo/UBERON_0005953,outflow part of right ventricle,right ventricle pulmonary outflow tract +http://purl.obolibrary.org/obo/UBERON_0005953,outflow part of right ventricle,right ventricular outflow tract +http://purl.obolibrary.org/obo/UBERON_0005956,outflow part of left ventricle,LVOT +http://purl.obolibrary.org/obo/UBERON_0005956,outflow part of left ventricle,Sibson vestibule +http://purl.obolibrary.org/obo/UBERON_0005956,outflow part of left ventricle,aortic vestibule +http://purl.obolibrary.org/obo/UBERON_0005956,outflow part of left ventricle,heart left ventricle outflow tract +http://purl.obolibrary.org/obo/UBERON_0005956,outflow part of left ventricle,left ventricular outflow +http://purl.obolibrary.org/obo/UBERON_0005956,outflow part of left ventricle,left ventricular outflow tract +http://purl.obolibrary.org/obo/UBERON_0005956,outflow part of left ventricle,outflow tract of left ventricle +http://purl.obolibrary.org/obo/UBERON_0005956,outflow part of left ventricle,vestibulum aortae +http://purl.obolibrary.org/obo/UBERON_0005965,outflow part of right atrium,main part of right atrium +http://purl.obolibrary.org/obo/UBERON_0005965,outflow part of right atrium,outflow tract of right atrium +http://purl.obolibrary.org/obo/UBERON_0005966,outflow part of left atrium,main part of left atrium +http://purl.obolibrary.org/obo/UBERON_0005966,outflow part of left atrium,outflow tract of left atrium +http://purl.obolibrary.org/obo/UBERON_0005967,conotruncal ridge,aortico-pulmonary spiral ridges +http://purl.obolibrary.org/obo/UBERON_0005967,conotruncal ridge,bulbar ridge +http://purl.obolibrary.org/obo/UBERON_0005967,conotruncal ridge,conotruncal cushion +http://purl.obolibrary.org/obo/UBERON_0005967,conotruncal ridge,endocardial ridge +http://purl.obolibrary.org/obo/UBERON_0005967,conotruncal ridge,outflow tract cushion +http://purl.obolibrary.org/obo/UBERON_0005967,conotruncal ridge,outflow tract endocardial cushion +http://purl.obolibrary.org/obo/UBERON_0005968,infundibulum of hair follicle,dermal piliary canal +http://purl.obolibrary.org/obo/UBERON_0005968,infundibulum of hair follicle,hair follicle infundibulum +http://purl.obolibrary.org/obo/UBERON_0005969,eye trabecular meshwork,eye trabecular meshwork +http://purl.obolibrary.org/obo/UBERON_0005969,eye trabecular meshwork,reticulum trabeculare +http://purl.obolibrary.org/obo/UBERON_0005969,eye trabecular meshwork,trabecular meshwork of the eye +http://purl.obolibrary.org/obo/UBERON_0005970,brain commissure, +http://purl.obolibrary.org/obo/UBERON_0005971,amniotic fold,amnionic fold +http://purl.obolibrary.org/obo/UBERON_0005972,tunnel of Corti, +http://purl.obolibrary.org/obo/UBERON_0005973,blood-inner ear barrier, +http://purl.obolibrary.org/obo/UBERON_0005974,posterior cerebellomedullary cistern,cisterna cerebellomedullaris posterior +http://purl.obolibrary.org/obo/UBERON_0005974,posterior cerebellomedullary cistern,cisterna magna +http://purl.obolibrary.org/obo/UBERON_0005975,hair follicle bulge,bulge of hair follicle +http://purl.obolibrary.org/obo/UBERON_0005976,ansiform lobule crus I,crus I of the ansiform lobule (HVII) +http://purl.obolibrary.org/obo/UBERON_0005976,ansiform lobule crus I,crus primum lobuli ansiformis cerebelli [h vii a] +http://purl.obolibrary.org/obo/UBERON_0005976,ansiform lobule crus I,first crus of ansiform lobule of cerebellum [hVIIa] +http://purl.obolibrary.org/obo/UBERON_0005976,ansiform lobule crus I,hemispheric lobule VIIA +http://purl.obolibrary.org/obo/UBERON_0005976,ansiform lobule crus I,lobulus ansiform crus I +http://purl.obolibrary.org/obo/UBERON_0005976,ansiform lobule crus I,lobulus semilunaris superior +http://purl.obolibrary.org/obo/UBERON_0005976,ansiform lobule crus I,lobulus semilunaris superior cerebelli +http://purl.obolibrary.org/obo/UBERON_0005976,ansiform lobule crus I,posterior superior lobule +http://purl.obolibrary.org/obo/UBERON_0005976,ansiform lobule crus I,semilunar lobule-2 (superior) +http://purl.obolibrary.org/obo/UBERON_0005976,ansiform lobule crus I,superior semilunar lobule +http://purl.obolibrary.org/obo/UBERON_0005976,ansiform lobule crus I,superior semilunar lobule of cerebellum +http://purl.obolibrary.org/obo/UBERON_0005977,ansiform lobule crus II,crus II of the ansiform lobule (HVII) +http://purl.obolibrary.org/obo/UBERON_0005977,ansiform lobule crus II,crus secundum lobuli ansiformis cerebelli [hVII A] +http://purl.obolibrary.org/obo/UBERON_0005977,ansiform lobule crus II,hemispheric lobule VIIBi +http://purl.obolibrary.org/obo/UBERON_0005977,ansiform lobule crus II,inferior semilunar lobule +http://purl.obolibrary.org/obo/UBERON_0005977,ansiform lobule crus II,inferior semilunar lobule of cerebellum +http://purl.obolibrary.org/obo/UBERON_0005977,ansiform lobule crus II,lobulus ansiform crus II +http://purl.obolibrary.org/obo/UBERON_0005977,ansiform lobule crus II,lobulus semilunaris inferior +http://purl.obolibrary.org/obo/UBERON_0005977,ansiform lobule crus II,lobulus semilunaris inferior cerebelli +http://purl.obolibrary.org/obo/UBERON_0005977,ansiform lobule crus II,posterior inferior lobule +http://purl.obolibrary.org/obo/UBERON_0005977,ansiform lobule crus II,second crus of ansiform lobule of cerebellum [hVIIa] +http://purl.obolibrary.org/obo/UBERON_0005977,ansiform lobule crus II,semilunar lobule-2 (inferior) +http://purl.obolibrary.org/obo/UBERON_0005978,olfactory bulb outer nerve layer,olfactory bulb main olfactory nerve layer +http://purl.obolibrary.org/obo/UBERON_0005978,olfactory bulb outer nerve layer,olfactory bulb olfactory nerve layer +http://purl.obolibrary.org/obo/UBERON_0005979,crista terminalis,crista terminalis atrii dextri +http://purl.obolibrary.org/obo/UBERON_0005979,crista terminalis,crista terminalis cordis +http://purl.obolibrary.org/obo/UBERON_0005979,crista terminalis,crista terminalis of right atrium +http://purl.obolibrary.org/obo/UBERON_0005980,pectinate muscle,musculi pectinati +http://purl.obolibrary.org/obo/UBERON_0005980,pectinate muscle,musculus pectinatus +http://purl.obolibrary.org/obo/UBERON_0005981,vena cava sinus,cavity of inflow part of right atrium +http://purl.obolibrary.org/obo/UBERON_0005981,vena cava sinus,posterior right atrial cavity +http://purl.obolibrary.org/obo/UBERON_0005981,vena cava sinus,sinus venarum cavarum +http://purl.obolibrary.org/obo/UBERON_0005982,Bachmann's bundle,anterior interatrial band +http://purl.obolibrary.org/obo/UBERON_0005983,heart layer, +http://purl.obolibrary.org/obo/UBERON_0005984,subendocardium layer, +http://purl.obolibrary.org/obo/UBERON_0005985,coronary vessel, +http://purl.obolibrary.org/obo/UBERON_0005986,left bundle branch,LBB +http://purl.obolibrary.org/obo/UBERON_0005986,left bundle branch,crus sinistrum (fasciculi atrioventricularis) +http://purl.obolibrary.org/obo/UBERON_0005986,left bundle branch,crus sinistrum fasciculi atrioventricularis +http://purl.obolibrary.org/obo/UBERON_0005986,left bundle branch,left branch of atrioventricular bundle +http://purl.obolibrary.org/obo/UBERON_0005986,left bundle branch,left bundle branch +http://purl.obolibrary.org/obo/UBERON_0005986,left bundle branch,left bundle branch of bundle of His +http://purl.obolibrary.org/obo/UBERON_0005986,left bundle branch,left bundle of atrioventricular bundle +http://purl.obolibrary.org/obo/UBERON_0005986,left bundle branch,left crus of atrioventricular bundle +http://purl.obolibrary.org/obo/UBERON_0005986,left bundle branch,left posterior branch +http://purl.obolibrary.org/obo/UBERON_0005986,left bundle branch,left posterior bundle +http://purl.obolibrary.org/obo/UBERON_0005987,right bundle branch,RBB +http://purl.obolibrary.org/obo/UBERON_0005987,right bundle branch,crus dextrum (fasciculi atrioventricularis) +http://purl.obolibrary.org/obo/UBERON_0005987,right bundle branch,crus dextrum fasciculi atrioventricularis +http://purl.obolibrary.org/obo/UBERON_0005987,right bundle branch,right branch of atrioventricular bundle +http://purl.obolibrary.org/obo/UBERON_0005987,right bundle branch,right bundle +http://purl.obolibrary.org/obo/UBERON_0005987,right bundle branch,right bundle branch +http://purl.obolibrary.org/obo/UBERON_0005987,right bundle branch,right bundle branch of bundle of His +http://purl.obolibrary.org/obo/UBERON_0005987,right bundle branch,right right crus of atrioventricular bundle +http://purl.obolibrary.org/obo/UBERON_0005987,right bundle branch,right ventricular bundle +http://purl.obolibrary.org/obo/UBERON_0005988,atrium myocardial trabecula,atrial trabecula +http://purl.obolibrary.org/obo/UBERON_0005988,atrium myocardial trabecula,atrium myocardial trabeculae +http://purl.obolibrary.org/obo/UBERON_0005988,atrium myocardial trabecula,trabecula of atrium +http://purl.obolibrary.org/obo/UBERON_0005988,atrium myocardial trabecula,trabecular layer of atrium +http://purl.obolibrary.org/obo/UBERON_0005988,atrium myocardial trabecula,trabecular layer of the atrium +http://purl.obolibrary.org/obo/UBERON_0005989,atrioventricular septum,membranous atrioventricular septum +http://purl.obolibrary.org/obo/UBERON_0005990,aortic valve cusp,aortic semilunar valvule +http://purl.obolibrary.org/obo/UBERON_0005990,aortic valve cusp,aortic valvular cusp +http://purl.obolibrary.org/obo/UBERON_0005990,aortic valve cusp,cusp of aortic valve +http://purl.obolibrary.org/obo/UBERON_0005990,aortic valve cusp,semilunar valvule of aortic valve +http://purl.obolibrary.org/obo/UBERON_0005991,aortic valve anulus,anulus of aortic valve +http://purl.obolibrary.org/obo/UBERON_0005991,aortic valve anulus,aortic anulus +http://purl.obolibrary.org/obo/UBERON_0005991,aortic valve anulus,aortic valvar anulus +http://purl.obolibrary.org/obo/UBERON_0005991,aortic valve anulus,fibrous ring of aortic valve +http://purl.obolibrary.org/obo/UBERON_0005992,pulmonary valve cusp,cusp of pulmonary valve +http://purl.obolibrary.org/obo/UBERON_0005992,pulmonary valve cusp,pulmonary semilunar valvule +http://purl.obolibrary.org/obo/UBERON_0005992,pulmonary valve cusp,pulmonary valvular cusp +http://purl.obolibrary.org/obo/UBERON_0005992,pulmonary valve cusp,semilunar cusp of pulmonary valve +http://purl.obolibrary.org/obo/UBERON_0005992,pulmonary valve cusp,semilunar valvule of pulmonary valve +http://purl.obolibrary.org/obo/UBERON_0005993,pulmonary valve anulus,anulus of pulmonary valve +http://purl.obolibrary.org/obo/UBERON_0005993,pulmonary valve anulus,fibrous ring of pulmonary valve +http://purl.obolibrary.org/obo/UBERON_0005993,pulmonary valve anulus,pulmonary anulus +http://purl.obolibrary.org/obo/UBERON_0005993,pulmonary valve anulus,pulmonary valvar anulus +http://purl.obolibrary.org/obo/UBERON_0005994,chorda tendineae, +http://purl.obolibrary.org/obo/UBERON_0005995,mitral valve anulus,anulus of mitral valve +http://purl.obolibrary.org/obo/UBERON_0005995,mitral valve anulus,fibrous ring of mitral valve +http://purl.obolibrary.org/obo/UBERON_0005995,mitral valve anulus,mitral annulus +http://purl.obolibrary.org/obo/UBERON_0005995,mitral valve anulus,mitral anulus +http://purl.obolibrary.org/obo/UBERON_0005995,mitral valve anulus,mitral valvar anulus +http://purl.obolibrary.org/obo/UBERON_0005996,mitral valve cusp, +http://purl.obolibrary.org/obo/UBERON_0005997,tricuspid valve anulus,anulus of tricuspid valve +http://purl.obolibrary.org/obo/UBERON_0005997,tricuspid valve anulus,fibrous ring of tricuspid valve +http://purl.obolibrary.org/obo/UBERON_0005997,tricuspid valve anulus,tricuspid anulus +http://purl.obolibrary.org/obo/UBERON_0005997,tricuspid valve anulus,tricuspid valvar anulus +http://purl.obolibrary.org/obo/UBERON_0005998,tricuspid valve cusp,cuspis septalis (valva tricuspidalis) +http://purl.obolibrary.org/obo/UBERON_0005998,tricuspid valve cusp,cuspis septalis valvae atrioventricularis dextrae +http://purl.obolibrary.org/obo/UBERON_0005998,tricuspid valve cusp,septal cusp of right atrioventricular valve +http://purl.obolibrary.org/obo/UBERON_0005998,tricuspid valve cusp,septal cusp of tricuspid valve +http://purl.obolibrary.org/obo/UBERON_0005998,tricuspid valve cusp,septal leaflet of right-sided tricuspid valve +http://purl.obolibrary.org/obo/UBERON_0005998,tricuspid valve cusp,septal leaflet of tricuspid valve +http://purl.obolibrary.org/obo/UBERON_0005998,tricuspid valve cusp,septal tricuspid leaflet +http://purl.obolibrary.org/obo/UBERON_0006002,vitelline artery, +http://purl.obolibrary.org/obo/UBERON_0006003,integumentary adnexa,adnexae cutis +http://purl.obolibrary.org/obo/UBERON_0006003,integumentary adnexa,body hair or bristle +http://purl.obolibrary.org/obo/UBERON_0006003,integumentary adnexa,skin adnexa +http://purl.obolibrary.org/obo/UBERON_0006003,integumentary adnexa,skin adnexal structure +http://purl.obolibrary.org/obo/UBERON_0006003,integumentary adnexa,skin appendage +http://purl.obolibrary.org/obo/UBERON_0006004,hair follicle matrix region,germinal matrix of hair bulb +http://purl.obolibrary.org/obo/UBERON_0006004,hair follicle matrix region,lower part of bulb of hair follicle +http://purl.obolibrary.org/obo/UBERON_0006004,hair follicle matrix region,lower zone of bulb of hair follicle +http://purl.obolibrary.org/obo/UBERON_0006005,hair follicle isthmus,isthmus of hair follicle +http://purl.obolibrary.org/obo/UBERON_0006006,metoptic pillar,postoptic pillar +http://purl.obolibrary.org/obo/UBERON_0006007,pre-Botzinger complex,Pre-Bötzinger complex +http://purl.obolibrary.org/obo/UBERON_0006007,pre-Botzinger complex,preBötC +http://purl.obolibrary.org/obo/UBERON_0006008,fibrous ring of heart,anulus fibrosus of heart +http://purl.obolibrary.org/obo/UBERON_0006009,cusp of cardiac valve,cardiac valve cusp +http://purl.obolibrary.org/obo/UBERON_0006009,cusp of cardiac valve,cardiac valvular cusp +http://purl.obolibrary.org/obo/UBERON_0006009,cusp of cardiac valve,cardiac valvule +http://purl.obolibrary.org/obo/UBERON_0006009,cusp of cardiac valve,cardial valve cusp +http://purl.obolibrary.org/obo/UBERON_0006009,cusp of cardiac valve,semilunar valvule +http://purl.obolibrary.org/obo/UBERON_0006010,hyaloid canal,Cloquet's canal +http://purl.obolibrary.org/obo/UBERON_0006010,hyaloid canal,Stilling's canal +http://purl.obolibrary.org/obo/UBERON_0006010,hyaloid canal,canal of Cloquet +http://purl.obolibrary.org/obo/UBERON_0006010,hyaloid canal,canalis hyaloideus +http://purl.obolibrary.org/obo/UBERON_0006011,hyaloid vein,hyaloid veins +http://purl.obolibrary.org/obo/UBERON_0006012,interdigital region,interdigit region +http://purl.obolibrary.org/obo/UBERON_0006013,interdigital region between manual digits,hand interdigit region +http://purl.obolibrary.org/obo/UBERON_0006013,interdigital region between manual digits,hand interdigital region +http://purl.obolibrary.org/obo/UBERON_0006013,interdigital region between manual digits,interdigital region of manus +http://purl.obolibrary.org/obo/UBERON_0006013,interdigital region between manual digits,manual interdigital region +http://purl.obolibrary.org/obo/UBERON_0006014,interdigital region between pedal digits,foot interdigit region +http://purl.obolibrary.org/obo/UBERON_0006014,interdigital region between pedal digits,foot interdigital region +http://purl.obolibrary.org/obo/UBERON_0006014,interdigital region between pedal digits,interdigit region of pes +http://purl.obolibrary.org/obo/UBERON_0006014,interdigital region between pedal digits,pedal interdigit region +http://purl.obolibrary.org/obo/UBERON_0006015,webbed interdigital region,interdigital webbing +http://purl.obolibrary.org/obo/UBERON_0006015,webbed interdigital region,syndactylous interdigital region +http://purl.obolibrary.org/obo/UBERON_0006016,interdigital region between digits 1 and 2,interdigital region between digits I and II +http://purl.obolibrary.org/obo/UBERON_0006019,interdigital region between digits 2 and 3,interdigital region between digits II and III +http://purl.obolibrary.org/obo/UBERON_0006022,interdigital region between digits 3 and 4,interdigital region between digits III and IV +http://purl.obolibrary.org/obo/UBERON_0006025,interdigital region between digits 4 and 5,interdigital region between digits IV and V +http://purl.obolibrary.org/obo/UBERON_0006026,interdigital region between manual digits 1 and 2,interdigital region between manual digits I and II +http://purl.obolibrary.org/obo/UBERON_0006029,interdigital region between manual digits 2 and 3,interdigital region between manual digits II and III +http://purl.obolibrary.org/obo/UBERON_0006032,interdigital region between manual digits 3 and 4,interdigital region between manual digits III and IV +http://purl.obolibrary.org/obo/UBERON_0006035,interdigital region between manual digits 4 and 5,interdigital region between manual digits IV and V +http://purl.obolibrary.org/obo/UBERON_0006038,interdigital region between pedal digits 1 and 2,interdigital region between pedal digits I and II +http://purl.obolibrary.org/obo/UBERON_0006041,interdigital region between pedal digits 2 and 3,interdigital region between pedal digits II and III +http://purl.obolibrary.org/obo/UBERON_0006044,interdigital region between pedal digits 3 and 4,interdigital region between pedal digits III and IV +http://purl.obolibrary.org/obo/UBERON_0006047,interdigital region between pedal digits 4 and 5,interdigital region between pedal digits IV and V +http://purl.obolibrary.org/obo/UBERON_0006048,digit 1,autopod digit 1 +http://purl.obolibrary.org/obo/UBERON_0006048,digit 1,digit I +http://purl.obolibrary.org/obo/UBERON_0006048,digit 1,limb digit 1 +http://purl.obolibrary.org/obo/UBERON_0006049,digit 2,autopod digit 2 +http://purl.obolibrary.org/obo/UBERON_0006049,digit 2,digit II +http://purl.obolibrary.org/obo/UBERON_0006049,digit 2,limb digit 2 +http://purl.obolibrary.org/obo/UBERON_0006049,digit 2,second digit +http://purl.obolibrary.org/obo/UBERON_0006050,digit 3,autopod digit 3 +http://purl.obolibrary.org/obo/UBERON_0006050,digit 3,digit III +http://purl.obolibrary.org/obo/UBERON_0006050,digit 3,limb digit 3 +http://purl.obolibrary.org/obo/UBERON_0006050,digit 3,third digit +http://purl.obolibrary.org/obo/UBERON_0006051,digit 4,autopod digit 4 +http://purl.obolibrary.org/obo/UBERON_0006051,digit 4,digit IV +http://purl.obolibrary.org/obo/UBERON_0006051,digit 4,fourth digit +http://purl.obolibrary.org/obo/UBERON_0006051,digit 4,limb digit 4 +http://purl.obolibrary.org/obo/UBERON_0006052,digit 5,autopod digit 5 +http://purl.obolibrary.org/obo/UBERON_0006052,digit 5,digit V +http://purl.obolibrary.org/obo/UBERON_0006052,digit 5,fifth digit +http://purl.obolibrary.org/obo/UBERON_0006052,digit 5,limb digit 5 +http://purl.obolibrary.org/obo/UBERON_0006054,surface of occiput,occiput surface +http://purl.obolibrary.org/obo/UBERON_0006054,surface of occiput,regio occipitalis (capitis) +http://purl.obolibrary.org/obo/UBERON_0006056,posterior surface of head, +http://purl.obolibrary.org/obo/UBERON_0006058,multi-limb segment region, +http://purl.obolibrary.org/obo/UBERON_0006059,falx cerebri,cerebral falx +http://purl.obolibrary.org/obo/UBERON_0006060,conotruncus,bulbus cordis rostral half +http://purl.obolibrary.org/obo/UBERON_0006060,conotruncus,cardiac conotruncus +http://purl.obolibrary.org/obo/UBERON_0006060,conotruncus,rostral half of bulbus cordis +http://purl.obolibrary.org/obo/UBERON_0006061,process of vertebra,vertebra process +http://purl.obolibrary.org/obo/UBERON_0006061,process of vertebra,vertebral process +http://purl.obolibrary.org/obo/UBERON_0006062,zygapophysis,articular process of vertebra +http://purl.obolibrary.org/obo/UBERON_0006062,zygapophysis,processus articularis (zygapophysis) +http://purl.obolibrary.org/obo/UBERON_0006062,zygapophysis,zygapophysis +http://purl.obolibrary.org/obo/UBERON_0006063,cartilaginous neural arch, +http://purl.obolibrary.org/obo/UBERON_0006065,hemal arch,haemal arch +http://purl.obolibrary.org/obo/UBERON_0006065,hemal arch,ventral arcocentrum +http://purl.obolibrary.org/obo/UBERON_0006067,musculature of hindlimb zeugopod,leg musculature +http://purl.obolibrary.org/obo/UBERON_0006067,musculature of hindlimb zeugopod,muscle group of leg +http://purl.obolibrary.org/obo/UBERON_0006067,musculature of hindlimb zeugopod,set of muscles of leg +http://purl.obolibrary.org/obo/UBERON_0006068,bone of tail, +http://purl.obolibrary.org/obo/UBERON_0006071,caudal region, +http://purl.obolibrary.org/obo/UBERON_0006072,cervical region of vertebral column,axial skeleton cervical region +http://purl.obolibrary.org/obo/UBERON_0006072,cervical region of vertebral column,cervical skeleton +http://purl.obolibrary.org/obo/UBERON_0006072,cervical region of vertebral column,cervical spinal column +http://purl.obolibrary.org/obo/UBERON_0006072,cervical region of vertebral column,cervical spine +http://purl.obolibrary.org/obo/UBERON_0006072,cervical region of vertebral column,cervical vertebrae series +http://purl.obolibrary.org/obo/UBERON_0006072,cervical region of vertebral column,cervical vertebral column +http://purl.obolibrary.org/obo/UBERON_0006073,thoracic region of vertebral column,axial skeleton thoracic region +http://purl.obolibrary.org/obo/UBERON_0006073,thoracic region of vertebral column,columna vertebralis thoracicus +http://purl.obolibrary.org/obo/UBERON_0006073,thoracic region of vertebral column,thoracic spine +http://purl.obolibrary.org/obo/UBERON_0006073,thoracic region of vertebral column,thoracic vertebrae series +http://purl.obolibrary.org/obo/UBERON_0006073,thoracic region of vertebral column,thoracic vertebral column +http://purl.obolibrary.org/obo/UBERON_0006074,lumbar region of vertebral column,axial skeleton lumbar region +http://purl.obolibrary.org/obo/UBERON_0006074,lumbar region of vertebral column,lumbar skeleton +http://purl.obolibrary.org/obo/UBERON_0006074,lumbar region of vertebral column,lumbar spine +http://purl.obolibrary.org/obo/UBERON_0006074,lumbar region of vertebral column,lumbar vertebrae series +http://purl.obolibrary.org/obo/UBERON_0006074,lumbar region of vertebral column,lumbar vertebral column +http://purl.obolibrary.org/obo/UBERON_0006075,sacral region of vertebral column,axial skeleton sacral region +http://purl.obolibrary.org/obo/UBERON_0006075,sacral region of vertebral column,sacral skeleton +http://purl.obolibrary.org/obo/UBERON_0006075,sacral region of vertebral column,sacral vertebrae series +http://purl.obolibrary.org/obo/UBERON_0006076,caudal region of vertebral column,axial skeleton tail region +http://purl.obolibrary.org/obo/UBERON_0006076,caudal region of vertebral column,caudal skeleton +http://purl.obolibrary.org/obo/UBERON_0006076,caudal region of vertebral column,caudal vertebrae series +http://purl.obolibrary.org/obo/UBERON_0006077,subdivision of vertebral column,subdivision of vertebral skeleton +http://purl.obolibrary.org/obo/UBERON_0006077,subdivision of vertebral column,vertebrae series +http://purl.obolibrary.org/obo/UBERON_0006077,subdivision of vertebral column,vertebral column subdivision +http://purl.obolibrary.org/obo/UBERON_0006077,subdivision of vertebral column,vertebral series +http://purl.obolibrary.org/obo/UBERON_0006078,subdivision of spinal cord lateral column, +http://purl.obolibrary.org/obo/UBERON_0006079,subdivision of spinal cord dorsal column, +http://purl.obolibrary.org/obo/UBERON_0006081,fundus of gallbladder,gallbladder fundus +http://purl.obolibrary.org/obo/UBERON_0006082,fundus of urinary bladder,base of urinary bladder +http://purl.obolibrary.org/obo/UBERON_0006082,fundus of urinary bladder,fundus vesicae +http://purl.obolibrary.org/obo/UBERON_0006082,fundus of urinary bladder,urinary bladder base +http://purl.obolibrary.org/obo/UBERON_0006082,fundus of urinary bladder,urinary bladder fundus +http://purl.obolibrary.org/obo/UBERON_0006082,fundus of urinary bladder,urinary bladder fundus region +http://purl.obolibrary.org/obo/UBERON_0006083,perirhinal cortex,perirhinal area +http://purl.obolibrary.org/obo/UBERON_0006083,perirhinal cortex,perirhinal cortex +http://purl.obolibrary.org/obo/UBERON_0006086,stria medullaris,stria habenularis +http://purl.obolibrary.org/obo/UBERON_0006086,stria medullaris,stria medullaris (Wenzel-Wenzel) +http://purl.obolibrary.org/obo/UBERON_0006086,stria medullaris,stria medullaris of thalamus +http://purl.obolibrary.org/obo/UBERON_0006086,stria medullaris,stria medullaris thalami +http://purl.obolibrary.org/obo/UBERON_0006086,stria medullaris,stria medullaris thalamica +http://purl.obolibrary.org/obo/UBERON_0006087,internal arcuate fiber bundle,arcuate fibers medial lemniscus +http://purl.obolibrary.org/obo/UBERON_0006087,internal arcuate fiber bundle,fibrae arcuatae internae +http://purl.obolibrary.org/obo/UBERON_0006087,internal arcuate fiber bundle,internal arcuate fibers +http://purl.obolibrary.org/obo/UBERON_0006087,internal arcuate fiber bundle,internal arcuate fibres +http://purl.obolibrary.org/obo/UBERON_0006087,internal arcuate fiber bundle,internal arcuate tract +http://purl.obolibrary.org/obo/UBERON_0006088,inferior parietal cortex,inferior parietal cortex +http://purl.obolibrary.org/obo/UBERON_0006088,inferior parietal cortex,inferior parietal lobule +http://purl.obolibrary.org/obo/UBERON_0006089,dorsal external arcuate fiber bundle,dorsal external arcuate fiber bundle +http://purl.obolibrary.org/obo/UBERON_0006089,dorsal external arcuate fiber bundle,dorsal external arcuate fibers +http://purl.obolibrary.org/obo/UBERON_0006089,dorsal external arcuate fiber bundle,dorsal external arcuate tract +http://purl.obolibrary.org/obo/UBERON_0006089,dorsal external arcuate fiber bundle,dorsal superficial arcuate fibers +http://purl.obolibrary.org/obo/UBERON_0006089,dorsal external arcuate fiber bundle,external arcuate fibers +http://purl.obolibrary.org/obo/UBERON_0006090,glossopharyngeal nerve fiber bundle,central part of glossopharyngeal nerve +http://purl.obolibrary.org/obo/UBERON_0006090,glossopharyngeal nerve fiber bundle,glossopharyngeal nerve fiber bundle +http://purl.obolibrary.org/obo/UBERON_0006090,glossopharyngeal nerve fiber bundle,glossopharyngeal nerve fibers +http://purl.obolibrary.org/obo/UBERON_0006090,glossopharyngeal nerve fiber bundle,glossopharyngeal nerve tract +http://purl.obolibrary.org/obo/UBERON_0006090,glossopharyngeal nerve fiber bundle,ninth cranial nerve fibers +http://purl.obolibrary.org/obo/UBERON_0006091,inferior horn of the lateral ventricle,cornu inferius (ventriculi lateralis) +http://purl.obolibrary.org/obo/UBERON_0006091,inferior horn of the lateral ventricle,cornu inferius ventriculi lateralis +http://purl.obolibrary.org/obo/UBERON_0006091,inferior horn of the lateral ventricle,cornu temporale (ventriculi lateralis) +http://purl.obolibrary.org/obo/UBERON_0006091,inferior horn of the lateral ventricle,cornu temporale ventriculi lateralis +http://purl.obolibrary.org/obo/UBERON_0006091,inferior horn of the lateral ventricle,inferior horn of lateral ventricle +http://purl.obolibrary.org/obo/UBERON_0006091,inferior horn of the lateral ventricle,inferior horn of the lateral ventricle +http://purl.obolibrary.org/obo/UBERON_0006091,inferior horn of the lateral ventricle,temporal horn of lateral ventricle +http://purl.obolibrary.org/obo/UBERON_0006091,inferior horn of the lateral ventricle,"ventriculus lateralis, cornu inferius" +http://purl.obolibrary.org/obo/UBERON_0006091,inferior horn of the lateral ventricle,"ventriculus lateralis, cornu temporale" +http://purl.obolibrary.org/obo/UBERON_0006092,cuneus cortex,cuneate lobule +http://purl.obolibrary.org/obo/UBERON_0006092,cuneus cortex,cuneus +http://purl.obolibrary.org/obo/UBERON_0006092,cuneus cortex,cuneus cortex +http://purl.obolibrary.org/obo/UBERON_0006092,cuneus cortex,cuneus gyrus +http://purl.obolibrary.org/obo/UBERON_0006092,cuneus cortex,cuneus of hemisphere +http://purl.obolibrary.org/obo/UBERON_0006093,precuneus cortex,precuneate lobule +http://purl.obolibrary.org/obo/UBERON_0006093,precuneus cortex,precuneus +http://purl.obolibrary.org/obo/UBERON_0006093,precuneus cortex,precuneus cortex +http://purl.obolibrary.org/obo/UBERON_0006093,precuneus cortex,quadrate lobule +http://purl.obolibrary.org/obo/UBERON_0006094,superior parietal cortex,superior parietal cortex +http://purl.obolibrary.org/obo/UBERON_0006094,superior parietal cortex,superior parietal gyrus +http://purl.obolibrary.org/obo/UBERON_0006094,superior parietal cortex,superior parietal lobule +http://purl.obolibrary.org/obo/UBERON_0006094,superior parietal cortex,superior portion of parietal gyrus +http://purl.obolibrary.org/obo/UBERON_0006095,anterior transverse temporal area 41,B09-41 +http://purl.obolibrary.org/obo/UBERON_0006095,anterior transverse temporal area 41,BA41 +http://purl.obolibrary.org/obo/UBERON_0006095,anterior transverse temporal area 41,Brodmann (1909) area 41 +http://purl.obolibrary.org/obo/UBERON_0006095,anterior transverse temporal area 41,Brodmann area 41 +http://purl.obolibrary.org/obo/UBERON_0006095,anterior transverse temporal area 41,"Brodmann area 41, anterior transverse temporal" +http://purl.obolibrary.org/obo/UBERON_0006095,anterior transverse temporal area 41,Brodmann's area 41 +http://purl.obolibrary.org/obo/UBERON_0006095,anterior transverse temporal area 41,anterior transverse temporal area 41 +http://purl.obolibrary.org/obo/UBERON_0006095,anterior transverse temporal area 41,anterior transverse termporal area 41 +http://purl.obolibrary.org/obo/UBERON_0006095,anterior transverse temporal area 41,area 41 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0006095,anterior transverse temporal area 41,area 41 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0006095,anterior transverse temporal area 41,area temporalis transversa anterior +http://purl.obolibrary.org/obo/UBERON_0006095,anterior transverse temporal area 41,principle auditory receptive areas +http://purl.obolibrary.org/obo/UBERON_0006096,posterior transverse temporal area 42,B09-42 +http://purl.obolibrary.org/obo/UBERON_0006096,posterior transverse temporal area 42,BA42 +http://purl.obolibrary.org/obo/UBERON_0006096,posterior transverse temporal area 42,Brodmann (1909) area 42 +http://purl.obolibrary.org/obo/UBERON_0006096,posterior transverse temporal area 42,Brodmann area 42 +http://purl.obolibrary.org/obo/UBERON_0006096,posterior transverse temporal area 42,"Brodmann area 42, posterior transverse temporal" +http://purl.obolibrary.org/obo/UBERON_0006096,posterior transverse temporal area 42,Brodmann's area 42 +http://purl.obolibrary.org/obo/UBERON_0006096,posterior transverse temporal area 42,area 42 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0006096,posterior transverse temporal area 42,area 42 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0006096,posterior transverse temporal area 42,area temporalis transversa posterior +http://purl.obolibrary.org/obo/UBERON_0006096,posterior transverse temporal area 42,auditory association area +http://purl.obolibrary.org/obo/UBERON_0006096,posterior transverse temporal area 42,posterior transverse temporal area 42 +http://purl.obolibrary.org/obo/UBERON_0006096,posterior transverse temporal area 42,posterior transverse termporal area 42 +http://purl.obolibrary.org/obo/UBERON_0006097,ventral external arcuate fiber bundle,ventral external arcuate fiber bundle +http://purl.obolibrary.org/obo/UBERON_0006097,ventral external arcuate fiber bundle,ventral external arcuate fibers +http://purl.obolibrary.org/obo/UBERON_0006097,ventral external arcuate fiber bundle,ventral external arcuate tract +http://purl.obolibrary.org/obo/UBERON_0006098,basal nuclear complex,basal ganglia +http://purl.obolibrary.org/obo/UBERON_0006098,basal nuclear complex,basal ganglia (anatomic) +http://purl.obolibrary.org/obo/UBERON_0006098,basal nuclear complex,basal nuclei +http://purl.obolibrary.org/obo/UBERON_0006098,basal nuclear complex,basal nuclei of the forebrain +http://purl.obolibrary.org/obo/UBERON_0006098,basal nuclear complex,corpus striatum (Savel'ev) +http://purl.obolibrary.org/obo/UBERON_0006098,basal nuclear complex,ganglia basales +http://purl.obolibrary.org/obo/UBERON_0006099,Brodmann (1909) area 1,B09-1 +http://purl.obolibrary.org/obo/UBERON_0006099,Brodmann (1909) area 1,BA1 +http://purl.obolibrary.org/obo/UBERON_0006099,Brodmann (1909) area 1,Brodmann (1909) area 1 +http://purl.obolibrary.org/obo/UBERON_0006099,Brodmann (1909) area 1,Brodmann area 1 +http://purl.obolibrary.org/obo/UBERON_0006099,Brodmann (1909) area 1,Brodmann's area 1 +http://purl.obolibrary.org/obo/UBERON_0006099,Brodmann (1909) area 1,area 1 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0006099,Brodmann (1909) area 1,area 1 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0006099,Brodmann (1909) area 1,area postcentralis intermedia +http://purl.obolibrary.org/obo/UBERON_0006099,Brodmann (1909) area 1,intermediate postcentral +http://purl.obolibrary.org/obo/UBERON_0006099,Brodmann (1909) area 1,intermediate postcentral area +http://purl.obolibrary.org/obo/UBERON_0006100,Brodmann (1909) area 3,B09-3 +http://purl.obolibrary.org/obo/UBERON_0006100,Brodmann (1909) area 3,BA3 +http://purl.obolibrary.org/obo/UBERON_0006100,Brodmann (1909) area 3,Brodmann (1909) area 3 +http://purl.obolibrary.org/obo/UBERON_0006100,Brodmann (1909) area 3,Brodmann area 3 +http://purl.obolibrary.org/obo/UBERON_0006100,Brodmann (1909) area 3,Brodmann's area 3 +http://purl.obolibrary.org/obo/UBERON_0006100,Brodmann (1909) area 3,area 3 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0006100,Brodmann (1909) area 3,area 3 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0006100,Brodmann (1909) area 3,area postcentralis oralis +http://purl.obolibrary.org/obo/UBERON_0006100,Brodmann (1909) area 3,rostral postcentral +http://purl.obolibrary.org/obo/UBERON_0006100,Brodmann (1909) area 3,rostral postcentral area +http://purl.obolibrary.org/obo/UBERON_0006101,Brodmann (1909) area 24,B09-24 +http://purl.obolibrary.org/obo/UBERON_0006101,Brodmann (1909) area 24,BA24 +http://purl.obolibrary.org/obo/UBERON_0006101,Brodmann (1909) area 24,Brodmann (1909) area 24 +http://purl.obolibrary.org/obo/UBERON_0006101,Brodmann (1909) area 24,Brodmann area 24 +http://purl.obolibrary.org/obo/UBERON_0006101,Brodmann (1909) area 24,area 24 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0006101,Brodmann (1909) area 24,area 24 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0006101,Brodmann (1909) area 24,area cingularis anterior ventralis +http://purl.obolibrary.org/obo/UBERON_0006101,Brodmann (1909) area 24,ventral anterior cingulate +http://purl.obolibrary.org/obo/UBERON_0006102,Brodmann (1909) area 35,B09-35 +http://purl.obolibrary.org/obo/UBERON_0006102,Brodmann (1909) area 35,BA35 +http://purl.obolibrary.org/obo/UBERON_0006102,Brodmann (1909) area 35,Brodmann (1909) area 35 +http://purl.obolibrary.org/obo/UBERON_0006102,Brodmann (1909) area 35,Brodmann area 35 +http://purl.obolibrary.org/obo/UBERON_0006102,Brodmann (1909) area 35,"Brodmann area 35, perirhinal" +http://purl.obolibrary.org/obo/UBERON_0006102,Brodmann (1909) area 35,Brodmann's area 35 +http://purl.obolibrary.org/obo/UBERON_0006102,Brodmann (1909) area 35,area 35 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0006102,Brodmann (1909) area 35,area 35 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0006102,Brodmann (1909) area 35,area perirhinalis +http://purl.obolibrary.org/obo/UBERON_0006102,Brodmann (1909) area 35,perirhinal area 35 +http://purl.obolibrary.org/obo/UBERON_0006104,Brodmann (1909) area 36,B09-36 +http://purl.obolibrary.org/obo/UBERON_0006104,Brodmann (1909) area 36,BA36 +http://purl.obolibrary.org/obo/UBERON_0006104,Brodmann (1909) area 36,Brodmann (1909) area 36 +http://purl.obolibrary.org/obo/UBERON_0006104,Brodmann (1909) area 36,Brodmann area 36 +http://purl.obolibrary.org/obo/UBERON_0006104,Brodmann (1909) area 36,area 36 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0006104,Brodmann (1909) area 36,area 36 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0006104,Brodmann (1909) area 36,area ectorhinalis +http://purl.obolibrary.org/obo/UBERON_0006104,Brodmann (1909) area 36,ectorhinal +http://purl.obolibrary.org/obo/UBERON_0006104,Brodmann (1909) area 36,ectorhinal area 36 +http://purl.obolibrary.org/obo/UBERON_0006106,cochlear canal,cochlear canal +http://purl.obolibrary.org/obo/UBERON_0006106,cochlear canal,spiral canal of cochlea +http://purl.obolibrary.org/obo/UBERON_0006106,cochlear canal,wall of cochlea +http://purl.obolibrary.org/obo/UBERON_0006107,basolateral amygdaloid nuclear complex,BL +http://purl.obolibrary.org/obo/UBERON_0006107,basolateral amygdaloid nuclear complex,amygdalar basolateral nucleus +http://purl.obolibrary.org/obo/UBERON_0006107,basolateral amygdaloid nuclear complex,amygdaloid basolateral complex +http://purl.obolibrary.org/obo/UBERON_0006107,basolateral amygdaloid nuclear complex,basolateral amygdala +http://purl.obolibrary.org/obo/UBERON_0006107,basolateral amygdaloid nuclear complex,basolateral amygdaloid nuclear complex +http://purl.obolibrary.org/obo/UBERON_0006107,basolateral amygdaloid nuclear complex,basolateral complex +http://purl.obolibrary.org/obo/UBERON_0006107,basolateral amygdaloid nuclear complex,basolateral nuclear complex +http://purl.obolibrary.org/obo/UBERON_0006107,basolateral amygdaloid nuclear complex,basolateral nuclear group +http://purl.obolibrary.org/obo/UBERON_0006107,basolateral amygdaloid nuclear complex,basolateral nuclei of amygdala +http://purl.obolibrary.org/obo/UBERON_0006107,basolateral amygdaloid nuclear complex,basolateral subdivision of amygdala +http://purl.obolibrary.org/obo/UBERON_0006107,basolateral amygdaloid nuclear complex,pars basolateralis (Corpus amygdaloideum) +http://purl.obolibrary.org/obo/UBERON_0006107,basolateral amygdaloid nuclear complex,set of basolateral nuclei of amygdala +http://purl.obolibrary.org/obo/UBERON_0006107,basolateral amygdaloid nuclear complex,vicarious cortex +http://purl.obolibrary.org/obo/UBERON_0006108,corticomedial nuclear complex,CMA +http://purl.obolibrary.org/obo/UBERON_0006108,corticomedial nuclear complex,amygdalar corticomedial nucleus +http://purl.obolibrary.org/obo/UBERON_0006108,corticomedial nuclear complex,corpus amygdaloideum pars corticomedialis +http://purl.obolibrary.org/obo/UBERON_0006108,corticomedial nuclear complex,corpus amygdaloideum pars olfactoria +http://purl.obolibrary.org/obo/UBERON_0006108,corticomedial nuclear complex,corticomedial nuclear complex +http://purl.obolibrary.org/obo/UBERON_0006108,corticomedial nuclear complex,corticomedial nuclear group +http://purl.obolibrary.org/obo/UBERON_0006108,corticomedial nuclear complex,corticomedial nuclei of amygdala +http://purl.obolibrary.org/obo/UBERON_0006108,corticomedial nuclear complex,pars corticomedialis (Corpus amygdaloideum) +http://purl.obolibrary.org/obo/UBERON_0006108,corticomedial nuclear complex,set of corticomedial nuclei of amygdala +http://purl.obolibrary.org/obo/UBERON_0006114,lateral occipital cortex,gyrus occipitalis lateralis +http://purl.obolibrary.org/obo/UBERON_0006114,lateral occipital cortex,gyrus occipitalis medius (mai) +http://purl.obolibrary.org/obo/UBERON_0006114,lateral occipital cortex,gyrus occipitalis secundus +http://purl.obolibrary.org/obo/UBERON_0006114,lateral occipital cortex,lateral occipital cortex +http://purl.obolibrary.org/obo/UBERON_0006114,lateral occipital cortex,lateral occipital gyrus +http://purl.obolibrary.org/obo/UBERON_0006115,posterior column of fornix,crus fornicis +http://purl.obolibrary.org/obo/UBERON_0006115,posterior column of fornix,crus of fornix +http://purl.obolibrary.org/obo/UBERON_0006115,posterior column of fornix,"fornix, crus posterius" +http://purl.obolibrary.org/obo/UBERON_0006115,posterior column of fornix,posterior column of fornix +http://purl.obolibrary.org/obo/UBERON_0006115,posterior column of fornix,posterior column of fornix of forebrain +http://purl.obolibrary.org/obo/UBERON_0006115,posterior column of fornix,posterior crus of fornix +http://purl.obolibrary.org/obo/UBERON_0006115,posterior column of fornix,posterior pillar of fornix +http://purl.obolibrary.org/obo/UBERON_0006116,vagal nerve fiber bundle,central part of vagus nerve +http://purl.obolibrary.org/obo/UBERON_0006116,vagal nerve fiber bundle,tenth cranial nerve fibers +http://purl.obolibrary.org/obo/UBERON_0006116,vagal nerve fiber bundle,vagal nerve fiber bundle +http://purl.obolibrary.org/obo/UBERON_0006116,vagal nerve fiber bundle,vagal nerve fibers +http://purl.obolibrary.org/obo/UBERON_0006116,vagal nerve fiber bundle,vagal nerve tract +http://purl.obolibrary.org/obo/UBERON_0006117,accessory nerve fiber bundle,accessory nerve fiber bundle +http://purl.obolibrary.org/obo/UBERON_0006117,accessory nerve fiber bundle,accessory nerve fibers +http://purl.obolibrary.org/obo/UBERON_0006117,accessory nerve fiber bundle,accessory nerve tract +http://purl.obolibrary.org/obo/UBERON_0006117,accessory nerve fiber bundle,eleventh cranial nerve fibers +http://purl.obolibrary.org/obo/UBERON_0006118,lamina I of gray matter of spinal cord,lamina i of gray matter of spinal cord +http://purl.obolibrary.org/obo/UBERON_0006118,lamina I of gray matter of spinal cord,lamina marginalis +http://purl.obolibrary.org/obo/UBERON_0006118,lamina I of gray matter of spinal cord,lamina spinalis i +http://purl.obolibrary.org/obo/UBERON_0006118,lamina I of gray matter of spinal cord,layer of Waldeyer +http://purl.obolibrary.org/obo/UBERON_0006118,lamina I of gray matter of spinal cord,layer of waldeyer +http://purl.obolibrary.org/obo/UBERON_0006118,lamina I of gray matter of spinal cord,rexed lamina I +http://purl.obolibrary.org/obo/UBERON_0006118,lamina I of gray matter of spinal cord,rexed lamina i +http://purl.obolibrary.org/obo/UBERON_0006118,lamina I of gray matter of spinal cord,rexed layer 1 +http://purl.obolibrary.org/obo/UBERON_0006118,lamina I of gray matter of spinal cord,spinal lamina I +http://purl.obolibrary.org/obo/UBERON_0006118,lamina I of gray matter of spinal cord,spinal lamina i +http://purl.obolibrary.org/obo/UBERON_0006119,subbrachial nucleus,subbrachial nucleus +http://purl.obolibrary.org/obo/UBERON_0006119,subbrachial nucleus,tegmental area of tsai +http://purl.obolibrary.org/obo/UBERON_0006120,superior colliculus superficial gray layer,lamina II of superior colliculus +http://purl.obolibrary.org/obo/UBERON_0006120,superior colliculus superficial gray layer,lamina colliculi superioris ii +http://purl.obolibrary.org/obo/UBERON_0006120,superior colliculus superficial gray layer,layer II of superior colliculus +http://purl.obolibrary.org/obo/UBERON_0006120,superior colliculus superficial gray layer,outer gray layer of superior colliculus +http://purl.obolibrary.org/obo/UBERON_0006120,superior colliculus superficial gray layer,stratum cinereum +http://purl.obolibrary.org/obo/UBERON_0006120,superior colliculus superficial gray layer,stratum griseum superficiale +http://purl.obolibrary.org/obo/UBERON_0006120,superior colliculus superficial gray layer,stratum griseum superficiale colliculi superioris +http://purl.obolibrary.org/obo/UBERON_0006120,superior colliculus superficial gray layer,stratum griseum superficiale of superior colliculus +http://purl.obolibrary.org/obo/UBERON_0006120,superior colliculus superficial gray layer,superficial gray layer of superior colliculus +http://purl.obolibrary.org/obo/UBERON_0006120,superior colliculus superficial gray layer,superficial grey layer of superior colliculus +http://purl.obolibrary.org/obo/UBERON_0006120,superior colliculus superficial gray layer,superior colliculus superficial gray layer +http://purl.obolibrary.org/obo/UBERON_0006121,hemispheric lobule VIII,biventer 1 (HVIII) +http://purl.obolibrary.org/obo/UBERON_0006121,hemispheric lobule VIII,biventer lobule +http://purl.obolibrary.org/obo/UBERON_0006121,hemispheric lobule VIII,biventral lobule +http://purl.obolibrary.org/obo/UBERON_0006121,hemispheric lobule VIII,biventral lobule [h VIII] +http://purl.obolibrary.org/obo/UBERON_0006121,hemispheric lobule VIII,cuneiform lobe +http://purl.obolibrary.org/obo/UBERON_0006121,hemispheric lobule VIII,dorsal parafloccularis [h VIII b] +http://purl.obolibrary.org/obo/UBERON_0006121,hemispheric lobule VIII,dorsal paraflocculus +http://purl.obolibrary.org/obo/UBERON_0006121,hemispheric lobule VIII,hemispheric lobule VIII +http://purl.obolibrary.org/obo/UBERON_0006121,hemispheric lobule VIII,lobulus biventer +http://purl.obolibrary.org/obo/UBERON_0006121,hemispheric lobule VIII,lobulus biventer [h viii] +http://purl.obolibrary.org/obo/UBERON_0006121,hemispheric lobule VIII,lobulus biventralis +http://purl.obolibrary.org/obo/UBERON_0006121,hemispheric lobule VIII,lobulus parafloccularis dorsalis [h viii b] +http://purl.obolibrary.org/obo/UBERON_0006121,hemispheric lobule VIII,paraflocculus dorsalis +http://purl.obolibrary.org/obo/UBERON_0006123,horizontal limb of the diagonal band,crus horizontale striae diagonalis +http://purl.obolibrary.org/obo/UBERON_0006123,horizontal limb of the diagonal band,diagonal band horizontal limb +http://purl.obolibrary.org/obo/UBERON_0006123,horizontal limb of the diagonal band,hDBB +http://purl.obolibrary.org/obo/UBERON_0006123,horizontal limb of the diagonal band,horizontal limb of diagonal band +http://purl.obolibrary.org/obo/UBERON_0006123,horizontal limb of the diagonal band,horizontal limb of the diagonal band +http://purl.obolibrary.org/obo/UBERON_0006123,horizontal limb of the diagonal band,horizontal limb of the diagonal band of Broca +http://purl.obolibrary.org/obo/UBERON_0006124,vertical limb of the diagonal band,crus verticale striae diagonalis +http://purl.obolibrary.org/obo/UBERON_0006124,vertical limb of the diagonal band,vertical limb of diagonal band +http://purl.obolibrary.org/obo/UBERON_0006124,vertical limb of the diagonal band,vertical limb of the diagonal band +http://purl.obolibrary.org/obo/UBERON_0006124,vertical limb of the diagonal band,vertical limb of the diagonal band of Broca +http://purl.obolibrary.org/obo/UBERON_0006125,subdivision of diagonal band,diagonal band subdivision +http://purl.obolibrary.org/obo/UBERON_0006125,subdivision of diagonal band,regional part of diagonal band +http://purl.obolibrary.org/obo/UBERON_0006127,funiculus of spinal cord,spinal cord funiculus +http://purl.obolibrary.org/obo/UBERON_0006127,funiculus of spinal cord,white column of spinal cord +http://purl.obolibrary.org/obo/UBERON_0006133,funiculus of neuraxis, +http://purl.obolibrary.org/obo/UBERON_0006134,nerve fiber,nerve fibers +http://purl.obolibrary.org/obo/UBERON_0006134,nerve fiber,nerve fibre +http://purl.obolibrary.org/obo/UBERON_0006134,nerve fiber,neurofibra +http://purl.obolibrary.org/obo/UBERON_0006134,nerve fiber,neurofibrum +http://purl.obolibrary.org/obo/UBERON_0006135,myelinated nerve fiber, +http://purl.obolibrary.org/obo/UBERON_0006136,unmyelinated nerve fiber,non-myelinated nerve fiber +http://purl.obolibrary.org/obo/UBERON_0006137,proper palmar digital artery,arteriae digitales palmares propriae +http://purl.obolibrary.org/obo/UBERON_0006137,proper palmar digital artery,proper palmal digital arteries +http://purl.obolibrary.org/obo/UBERON_0006137,proper palmar digital artery,proper palmar digital arteries +http://purl.obolibrary.org/obo/UBERON_0006137,proper palmar digital artery,proper palmar digital arteries set +http://purl.obolibrary.org/obo/UBERON_0006138,plantar digital artery, +http://purl.obolibrary.org/obo/UBERON_0006139,plantar digital vein, +http://purl.obolibrary.org/obo/UBERON_0006140,palmar digital vein,palmar digital veins +http://purl.obolibrary.org/obo/UBERON_0006140,palmar digital vein,palmar digital veins set +http://purl.obolibrary.org/obo/UBERON_0006140,palmar digital vein,venae digitales palmares +http://purl.obolibrary.org/obo/UBERON_0006141,palmar digital artery, +http://purl.obolibrary.org/obo/UBERON_0006142,common plantar digital vein,common plantar vein +http://purl.obolibrary.org/obo/UBERON_0006143,proper plantar digital vein,proper plantar vein +http://purl.obolibrary.org/obo/UBERON_0006144,medial plantar digital vein,medial plantar vein +http://purl.obolibrary.org/obo/UBERON_0006145,dorsal digital artery of pes,dorsal digital artery of foot +http://purl.obolibrary.org/obo/UBERON_0006146,dorsal digital artery of manus,dorsal digital artery of hand +http://purl.obolibrary.org/obo/UBERON_0006163,dorsal digital artery,arteriae digitales dorsales +http://purl.obolibrary.org/obo/UBERON_0006163,dorsal digital artery,dorsal digital arteries +http://purl.obolibrary.org/obo/UBERON_0006163,dorsal digital artery,dorsal digital arteries set +http://purl.obolibrary.org/obo/UBERON_0006164,forelimb common dorsal digital arteries, +http://purl.obolibrary.org/obo/UBERON_0006165,median dorsal digital artery for digit 1,median dorsal digital artery for digit 01 +http://purl.obolibrary.org/obo/UBERON_0006165,median dorsal digital artery for digit 1,median dorsal digital artery for digit I +http://purl.obolibrary.org/obo/UBERON_0006166,lateral dorsal digital artery for digit 5,lateral dorsal digital artery for digit 05 +http://purl.obolibrary.org/obo/UBERON_0006166,lateral dorsal digital artery for digit 5,lateral dorsal digital artery for digit V +http://purl.obolibrary.org/obo/UBERON_0006167,forelimb proper dorsal digital arteries, +http://purl.obolibrary.org/obo/UBERON_0006168,hindlimb common dorsal digital arteries, +http://purl.obolibrary.org/obo/UBERON_0006169,hindlimb proper dorsal digital arteries, +http://purl.obolibrary.org/obo/UBERON_0006170,mesonephric capsule, +http://purl.obolibrary.org/obo/UBERON_0006171,renal sinus, +http://purl.obolibrary.org/obo/UBERON_0006172,rectal diverticulum, +http://purl.obolibrary.org/obo/UBERON_0006173,pronephric proximal tubule,pronephros proximal tubule +http://purl.obolibrary.org/obo/UBERON_0006174,pronephric sinus, +http://purl.obolibrary.org/obo/UBERON_0006175,pronephric distal tubule, +http://purl.obolibrary.org/obo/UBERON_0006182,mesonephric glomerular mesangium, +http://purl.obolibrary.org/obo/UBERON_0006183,mesonephric glomerular capillary, +http://purl.obolibrary.org/obo/UBERON_0006189,mesonephric connecting tubule, +http://purl.obolibrary.org/obo/UBERON_0006190,mesonephric distal tubule, +http://purl.obolibrary.org/obo/UBERON_0006192,mesonephric proximal tubule, +http://purl.obolibrary.org/obo/UBERON_0006194,renal sinus of right kidney,right renal sinus +http://purl.obolibrary.org/obo/UBERON_0006195,renal sinus of left kidney,left renal sinus +http://purl.obolibrary.org/obo/UBERON_0006196,mesonephric sinus, +http://purl.obolibrary.org/obo/UBERON_0006197,auricular vein,vena auriculares +http://purl.obolibrary.org/obo/UBERON_0006197,auricular vein,venae auriculares +http://purl.obolibrary.org/obo/UBERON_0006198,dorsal intercostal artery,superior intercostal artery +http://purl.obolibrary.org/obo/UBERON_0006198,dorsal intercostal artery,supreme intercostal artery +http://purl.obolibrary.org/obo/UBERON_0006199,posterior auricular vein,posterior auricular vein +http://purl.obolibrary.org/obo/UBERON_0006200,caudal humeral circumflex vein,posterior circumflex humeral vein +http://purl.obolibrary.org/obo/UBERON_0006200,caudal humeral circumflex vein,posterior humeral circumflex vein +http://purl.obolibrary.org/obo/UBERON_0006200,caudal humeral circumflex vein,vena circumflexa humeri posterior +http://purl.obolibrary.org/obo/UBERON_0006203,conchal part of pinna,concha auriculae +http://purl.obolibrary.org/obo/UBERON_0006203,conchal part of pinna,concha of auricle +http://purl.obolibrary.org/obo/UBERON_0006203,conchal part of pinna,concha of pinna +http://purl.obolibrary.org/obo/UBERON_0006204,inguinal ligament,Poupart's ligament +http://purl.obolibrary.org/obo/UBERON_0006204,inguinal ligament,Vesalius' ligament +http://purl.obolibrary.org/obo/UBERON_0006204,inguinal ligament,fallopian ligament +http://purl.obolibrary.org/obo/UBERON_0006205,pectineal ligament,Cooper's ligament (groin) +http://purl.obolibrary.org/obo/UBERON_0006205,pectineal ligament,inguinal ligament of Cooper +http://purl.obolibrary.org/obo/UBERON_0006205,pectineal ligament,ligamentum pectineale +http://purl.obolibrary.org/obo/UBERON_0006206,iridocorneal angle,anterior chamber angle +http://purl.obolibrary.org/obo/UBERON_0006207,aortico-pulmonary spiral septum,aortico-pulmonary septum +http://purl.obolibrary.org/obo/UBERON_0006207,aortico-pulmonary spiral septum,aorticopulmonary septum +http://purl.obolibrary.org/obo/UBERON_0006207,aortico-pulmonary spiral septum,septum aorticopulmonale +http://purl.obolibrary.org/obo/UBERON_0006208,auditory hillocks,auditory hillock of Hiss +http://purl.obolibrary.org/obo/UBERON_0006209,basioccipital cartilage element, +http://purl.obolibrary.org/obo/UBERON_0006210,body-wall mesenchyme, +http://purl.obolibrary.org/obo/UBERON_0006211,buccopharyngeal membrane, +http://purl.obolibrary.org/obo/UBERON_0006212,bulbo-ventricular groove,bulbo-ventricular sulcus +http://purl.obolibrary.org/obo/UBERON_0006212,bulbo-ventricular groove,bulboventricular groove +http://purl.obolibrary.org/obo/UBERON_0006212,bulbo-ventricular groove,ependymal groove +http://purl.obolibrary.org/obo/UBERON_0006212,bulbo-ventricular groove,ependymal sulcus +http://purl.obolibrary.org/obo/UBERON_0006213,carpus cartilage element, +http://purl.obolibrary.org/obo/UBERON_0006214,carpus pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0006215,rhombic lip, +http://purl.obolibrary.org/obo/UBERON_0006216,cervical sinus of His,cervical sinus +http://purl.obolibrary.org/obo/UBERON_0006216,cervical sinus of His,sinus cervicalis +http://purl.obolibrary.org/obo/UBERON_0006217,cloacal membrane,embryonic cloacal membrane +http://purl.obolibrary.org/obo/UBERON_0006218,common atrial chamber, +http://purl.obolibrary.org/obo/UBERON_0006219,deltoid pre-muscle mass, +http://purl.obolibrary.org/obo/UBERON_0006220,diencephalic part of interventricular foramen, +http://purl.obolibrary.org/obo/UBERON_0006222,future diencephalon,presumptive diencephalon +http://purl.obolibrary.org/obo/UBERON_0006223,dorsal meso-oesophagus,dorsal meso-esophagus +http://purl.obolibrary.org/obo/UBERON_0006224,elbow joint primordium, +http://purl.obolibrary.org/obo/UBERON_0006226,endolymphatic appendage, +http://purl.obolibrary.org/obo/UBERON_0006227,ethmoid bone primordium, +http://purl.obolibrary.org/obo/UBERON_0006228,exoccipital pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0006230,extrinsic ocular pre-muscle mass, +http://purl.obolibrary.org/obo/UBERON_0006231,facial bone primordium,facial bones primordia +http://purl.obolibrary.org/obo/UBERON_0006232,facio-acoustic VII-VIII preganglion complex, +http://purl.obolibrary.org/obo/UBERON_0006233,female genital tubercle,genital tubercle of female +http://purl.obolibrary.org/obo/UBERON_0006234,femur pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0006235,foregut-midgut junction, +http://purl.obolibrary.org/obo/UBERON_0006236,tetrapod frontal bone primordium,frontal bone primordium +http://purl.obolibrary.org/obo/UBERON_0006238,future brain,brain rudiment +http://purl.obolibrary.org/obo/UBERON_0006238,future brain,presumptive brain +http://purl.obolibrary.org/obo/UBERON_0006239,future central tendon, +http://purl.obolibrary.org/obo/UBERON_0006240,future forebrain,future prosencephalon +http://purl.obolibrary.org/obo/UBERON_0006240,future forebrain,presumptive forebrain +http://purl.obolibrary.org/obo/UBERON_0006240,future forebrain,presumptive prosencephalon +http://purl.obolibrary.org/obo/UBERON_0006241,future spinal cord,presumptive spinal cord +http://purl.obolibrary.org/obo/UBERON_0006241,future spinal cord,presumptive spinal cord neural keel +http://purl.obolibrary.org/obo/UBERON_0006241,future spinal cord,presumptive spinal cord neural plate +http://purl.obolibrary.org/obo/UBERON_0006241,future spinal cord,presumptive spinal cord neural rod +http://purl.obolibrary.org/obo/UBERON_0006242,gallbladder primordium,gall bladder primordium +http://purl.obolibrary.org/obo/UBERON_0006243,glossopharyngeal IX preganglion, +http://purl.obolibrary.org/obo/UBERON_0006244,hip joint primordium, +http://purl.obolibrary.org/obo/UBERON_0006245,humerus cartilage element, +http://purl.obolibrary.org/obo/UBERON_0006246,humerus pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0006247,iliac pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0006248,incus pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0006250,infundibular recess of 3rd ventricle,infundibular recess +http://purl.obolibrary.org/obo/UBERON_0006250,infundibular recess of 3rd ventricle,infundibular recess of third ventricle +http://purl.obolibrary.org/obo/UBERON_0006250,infundibular recess of 3rd ventricle,recessus infundibularis +http://purl.obolibrary.org/obo/UBERON_0006250,infundibular recess of 3rd ventricle,recessus infundibuli +http://purl.obolibrary.org/obo/UBERON_0006251,interparietal bone primordium, +http://purl.obolibrary.org/obo/UBERON_0006252,intersubcardinal venous anastomosis, +http://purl.obolibrary.org/obo/UBERON_0006253,embryonic intraretinal space,intraretinal space +http://purl.obolibrary.org/obo/UBERON_0006253,embryonic intraretinal space,intraretinal space of optic cup +http://purl.obolibrary.org/obo/UBERON_0006253,embryonic intraretinal space,intraretinal space of retina +http://purl.obolibrary.org/obo/UBERON_0006253,embryonic intraretinal space,retina intraretinal space +http://purl.obolibrary.org/obo/UBERON_0006254,ischial cartilage element, +http://purl.obolibrary.org/obo/UBERON_0006255,ischial pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0006256,knee joint primordium, +http://purl.obolibrary.org/obo/UBERON_0006257,laryngotracheal groove,laryngo-tracheal groove +http://purl.obolibrary.org/obo/UBERON_0006257,laryngotracheal groove,sulcus laryngotrachealis +http://purl.obolibrary.org/obo/UBERON_0006259,lens pit, +http://purl.obolibrary.org/obo/UBERON_0006260,lingual swellings, +http://purl.obolibrary.org/obo/UBERON_0006261,male genital tubercle,genital tubercle of male +http://purl.obolibrary.org/obo/UBERON_0006262,malleus pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0006263,Meckel's cartilage pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0006264,mouth-foregut junction, +http://purl.obolibrary.org/obo/UBERON_0006265,mural trophectoderm, +http://purl.obolibrary.org/obo/UBERON_0006266,nasolacrimal groove,naso-lacrimal groove +http://purl.obolibrary.org/obo/UBERON_0006267,notochordal plate, +http://purl.obolibrary.org/obo/UBERON_0006268,notochordal process, +http://purl.obolibrary.org/obo/UBERON_0006270,optic pit,optic sulcus +http://purl.obolibrary.org/obo/UBERON_0006271,orbital fissure, +http://purl.obolibrary.org/obo/UBERON_0006272,oronasal cavity, +http://purl.obolibrary.org/obo/UBERON_0006273,otic pit,otic cup +http://purl.obolibrary.org/obo/UBERON_0006274,tetrapod parietal bone primordium,parietal bone primordium +http://purl.obolibrary.org/obo/UBERON_0006275,pericardio-peritoneal canal, +http://purl.obolibrary.org/obo/UBERON_0006276,perioptic mesenchyme, +http://purl.obolibrary.org/obo/UBERON_0006277,pleuropericardial canals,pleuropericardial canal +http://purl.obolibrary.org/obo/UBERON_0006278,pleuropericardial folds,pleuro-pericardial folds +http://purl.obolibrary.org/obo/UBERON_0006279,pleuroperitoneal canal, +http://purl.obolibrary.org/obo/UBERON_0006280,polar trophectoderm, +http://purl.obolibrary.org/obo/UBERON_0006282,primary head vein, +http://purl.obolibrary.org/obo/UBERON_0006283,future cardiac ventricle,early heart ventricle +http://purl.obolibrary.org/obo/UBERON_0006283,future cardiac ventricle,embryonic heart ventricle +http://purl.obolibrary.org/obo/UBERON_0006283,future cardiac ventricle,future heart ventricle +http://purl.obolibrary.org/obo/UBERON_0006283,future cardiac ventricle,presumptive cardiac ventricle heart tube +http://purl.obolibrary.org/obo/UBERON_0006283,future cardiac ventricle,primitive ventricle +http://purl.obolibrary.org/obo/UBERON_0006283,future cardiac ventricle,primitive ventricle of heart +http://purl.obolibrary.org/obo/UBERON_0006283,future cardiac ventricle,primordial cardiac ventricle +http://purl.obolibrary.org/obo/UBERON_0006283,future cardiac ventricle,primordial ventricle +http://purl.obolibrary.org/obo/UBERON_0006284,early prosencephalic vesicle,prosencephalic vesicle +http://purl.obolibrary.org/obo/UBERON_0006285,pubic pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0006286,radius cartilage element, +http://purl.obolibrary.org/obo/UBERON_0006287,radius-ulna pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0006288,rib cartilage element, +http://purl.obolibrary.org/obo/UBERON_0006289,rib pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0006290,scapula cartilage element, +http://purl.obolibrary.org/obo/UBERON_0006291,scapula pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0006292,shoulder joint primordium, +http://purl.obolibrary.org/obo/UBERON_0006293,spleen primordium,spleen mesenchyme +http://purl.obolibrary.org/obo/UBERON_0006293,spleen primordium,splenic mesenchyme +http://purl.obolibrary.org/obo/UBERON_0006293,spleen primordium,splenic primordium +http://purl.obolibrary.org/obo/UBERON_0006294,stapes pre-cartilage condensation,stapedial anlage +http://purl.obolibrary.org/obo/UBERON_0006295,sternebral bone pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0006296,subcardinal vein, +http://purl.obolibrary.org/obo/UBERON_0006297,sublingual gland primordium, +http://purl.obolibrary.org/obo/UBERON_0006298,submandibular gland primordium, +http://purl.obolibrary.org/obo/UBERON_0006300,supracardinal vein, +http://purl.obolibrary.org/obo/UBERON_0006301,telencephalic part of interventricular foramen, +http://purl.obolibrary.org/obo/UBERON_0006303,tracheal diverticulum, +http://purl.obolibrary.org/obo/UBERON_0006304,future trigeminal ganglion,trigeminal V preganglion +http://purl.obolibrary.org/obo/UBERON_0006305,tunica vasculosa lentis, +http://purl.obolibrary.org/obo/UBERON_0006306,ulna cartilage element, +http://purl.obolibrary.org/obo/UBERON_0006307,urogenital membrane, +http://purl.obolibrary.org/obo/UBERON_0006309,venous vitelline plexus, +http://purl.obolibrary.org/obo/UBERON_0006310,vitelline venous plexus, +http://purl.obolibrary.org/obo/UBERON_0006311,chamber of eyeball,eye chamber +http://purl.obolibrary.org/obo/UBERON_0006311,chamber of eyeball,eyeball chamber +http://purl.obolibrary.org/obo/UBERON_0006312,ocular refractive media, +http://purl.obolibrary.org/obo/UBERON_0006314,bodily fluid,body fluid +http://purl.obolibrary.org/obo/UBERON_0006318,orbitalis muscle,musculus orbitalis +http://purl.obolibrary.org/obo/UBERON_0006318,orbitalis muscle,orbital muscle +http://purl.obolibrary.org/obo/UBERON_0006318,orbitalis muscle,orbital muscle of muller +http://purl.obolibrary.org/obo/UBERON_0006318,orbitalis muscle,orbitalis +http://purl.obolibrary.org/obo/UBERON_0006319,spinal cord reticular nucleus,spinal reticular nucleus +http://purl.obolibrary.org/obo/UBERON_0006320,inferior oblique extraocular muscle,inferior oblique +http://purl.obolibrary.org/obo/UBERON_0006320,inferior oblique extraocular muscle,inferior oblique muscle +http://purl.obolibrary.org/obo/UBERON_0006320,inferior oblique extraocular muscle,m. obliquus inferior +http://purl.obolibrary.org/obo/UBERON_0006320,inferior oblique extraocular muscle,musculus obliquus inferior +http://purl.obolibrary.org/obo/UBERON_0006320,inferior oblique extraocular muscle,musculus obliquus inferior bulbi +http://purl.obolibrary.org/obo/UBERON_0006320,inferior oblique extraocular muscle,obliquus inferior +http://purl.obolibrary.org/obo/UBERON_0006320,inferior oblique extraocular muscle,obliquus oculi inferior +http://purl.obolibrary.org/obo/UBERON_0006320,inferior oblique extraocular muscle,ventral oblique extraocular muscle +http://purl.obolibrary.org/obo/UBERON_0006321,superior oblique extraocular muscle,dorsal oblique extraocular muscle +http://purl.obolibrary.org/obo/UBERON_0006321,superior oblique extraocular muscle,musculus obliquus superior +http://purl.obolibrary.org/obo/UBERON_0006321,superior oblique extraocular muscle,obliquus superior +http://purl.obolibrary.org/obo/UBERON_0006321,superior oblique extraocular muscle,superior oblique +http://purl.obolibrary.org/obo/UBERON_0006321,superior oblique extraocular muscle,superior oblique muscle +http://purl.obolibrary.org/obo/UBERON_0006322,inferior rectus extraocular muscle,inferior rectus +http://purl.obolibrary.org/obo/UBERON_0006322,inferior rectus extraocular muscle,inferior rectus muscle +http://purl.obolibrary.org/obo/UBERON_0006322,inferior rectus extraocular muscle,m. rectus inferior +http://purl.obolibrary.org/obo/UBERON_0006322,inferior rectus extraocular muscle,musculus rectus inferior +http://purl.obolibrary.org/obo/UBERON_0006322,inferior rectus extraocular muscle,ventral rectus extraocular muscle +http://purl.obolibrary.org/obo/UBERON_0006323,superior rectus extraocular muscle,dorsal rectus extraocular muscle +http://purl.obolibrary.org/obo/UBERON_0006323,superior rectus extraocular muscle,m. rectus superior +http://purl.obolibrary.org/obo/UBERON_0006323,superior rectus extraocular muscle,musculus rectus superior +http://purl.obolibrary.org/obo/UBERON_0006323,superior rectus extraocular muscle,superior rectus +http://purl.obolibrary.org/obo/UBERON_0006323,superior rectus extraocular muscle,superior rectus muscle +http://purl.obolibrary.org/obo/UBERON_0006325,laryngeal intrinsic ligament,intrinsic ligament of larynx +http://purl.obolibrary.org/obo/UBERON_0006326,base of arytenoid,arytenoid cartilage base +http://purl.obolibrary.org/obo/UBERON_0006326,base of arytenoid,base of arytenoid +http://purl.obolibrary.org/obo/UBERON_0006326,base of arytenoid,base of arytenoid cartilage +http://purl.obolibrary.org/obo/UBERON_0006327,laryngeal extrinsic muscle,extrinsic muscle of larynx +http://purl.obolibrary.org/obo/UBERON_0006328,laryngeal intrinsic muscle,intrinsic laryngeal muscle +http://purl.obolibrary.org/obo/UBERON_0006328,laryngeal intrinsic muscle,intrinsic muscle of larynx +http://purl.obolibrary.org/obo/UBERON_0006329,superior pharyngeal constrictor,constrictor muscle of pharynx superior +http://purl.obolibrary.org/obo/UBERON_0006329,superior pharyngeal constrictor,musculus constrictor pharyngis superior +http://purl.obolibrary.org/obo/UBERON_0006329,superior pharyngeal constrictor,superior constrictor +http://purl.obolibrary.org/obo/UBERON_0006329,superior pharyngeal constrictor,superior constrictor muscle +http://purl.obolibrary.org/obo/UBERON_0006329,superior pharyngeal constrictor,superior constrictor of pharynx +http://purl.obolibrary.org/obo/UBERON_0006329,superior pharyngeal constrictor,superior constrictor pharyngeus +http://purl.obolibrary.org/obo/UBERON_0006330,anterior lingual gland,Bauhin's glands +http://purl.obolibrary.org/obo/UBERON_0006330,anterior lingual gland,Blandin's glands +http://purl.obolibrary.org/obo/UBERON_0006330,anterior lingual gland,Nuhn's glands +http://purl.obolibrary.org/obo/UBERON_0006330,anterior lingual gland,anterior lingual salivary gland +http://purl.obolibrary.org/obo/UBERON_0006330,anterior lingual gland,lingual salivary gland +http://purl.obolibrary.org/obo/UBERON_0006331,brainstem nucleus,brain stem nucleus +http://purl.obolibrary.org/obo/UBERON_0006332,nasal capsule,cartilaginous nasal capsule +http://purl.obolibrary.org/obo/UBERON_0006333,snout, +http://purl.obolibrary.org/obo/UBERON_0006334,posterior lateral line,pll +http://purl.obolibrary.org/obo/UBERON_0006337,distal early tubule,IT1 +http://purl.obolibrary.org/obo/UBERON_0006337,distal early tubule,IT2 +http://purl.obolibrary.org/obo/UBERON_0006338,lateral ventricle choroid plexus stroma, +http://purl.obolibrary.org/obo/UBERON_0006339,third ventricle choroid plexus stroma, +http://purl.obolibrary.org/obo/UBERON_0006340,fourth ventricle choroid plexus stroma, +http://purl.obolibrary.org/obo/UBERON_0006341,outer renal medulla peritubular capillary,kidney outer medulla peritubular capillary +http://purl.obolibrary.org/obo/UBERON_0006342,left subhepatic recess,left hepatic recess +http://purl.obolibrary.org/obo/UBERON_0006343,right subhepatic recess,Morison's pouch +http://purl.obolibrary.org/obo/UBERON_0006343,right subhepatic recess,hepatorenal fossa +http://purl.obolibrary.org/obo/UBERON_0006343,right subhepatic recess,hepatorenal recess of subhepatic space +http://purl.obolibrary.org/obo/UBERON_0006343,right subhepatic recess,recessus hepatorenalis +http://purl.obolibrary.org/obo/UBERON_0006343,right subhepatic recess,recessus hepatorenalis recessi subhepatici +http://purl.obolibrary.org/obo/UBERON_0006343,right subhepatic recess,right hepatic recess +http://purl.obolibrary.org/obo/UBERON_0006343,right subhepatic recess,right posterior subphrenic space +http://purl.obolibrary.org/obo/UBERON_0006343,right subhepatic recess,right subhepatic space +http://purl.obolibrary.org/obo/UBERON_0006345,stapedial artery,stapedial artery temporary +http://purl.obolibrary.org/obo/UBERON_0006347,communicating artery, +http://purl.obolibrary.org/obo/UBERON_0006349,epigastric artery, +http://purl.obolibrary.org/obo/UBERON_0006351,principal vein of forelimb, +http://purl.obolibrary.org/obo/UBERON_0006353,principal vein of hindlimb, +http://purl.obolibrary.org/obo/UBERON_0006355,superior vesical vein, +http://purl.obolibrary.org/obo/UBERON_0006356,epigastric vein, +http://purl.obolibrary.org/obo/UBERON_0006358,vasa hyaloidea propria, +http://purl.obolibrary.org/obo/UBERON_0006359,mesoduodenum, +http://purl.obolibrary.org/obo/UBERON_0006360,tongue intermolar eminence,intermolar eminence +http://purl.obolibrary.org/obo/UBERON_0006364,ureteric bud tip,ureteric tip +http://purl.obolibrary.org/obo/UBERON_0006373,perihilar interstitium, +http://purl.obolibrary.org/obo/UBERON_0006374,part of afferent arteriole forming the juxtaglomerular complex,part of afferent arteriole forming juxtaglomerular complex +http://purl.obolibrary.org/obo/UBERON_0006376,premacula segment of distal straight tubule,distal straight tubule premacula segment +http://purl.obolibrary.org/obo/UBERON_0006376,premacula segment of distal straight tubule,kidney medulla loop of Henle ascending limb thick segment +http://purl.obolibrary.org/obo/UBERON_0006376,premacula segment of distal straight tubule,medullary thick ascending limb of Henle's loop +http://purl.obolibrary.org/obo/UBERON_0006376,premacula segment of distal straight tubule,renal medulla loop of Henle ascending limb thick segment +http://purl.obolibrary.org/obo/UBERON_0006376,premacula segment of distal straight tubule,renal medulla thick ascending limb +http://purl.obolibrary.org/obo/UBERON_0006377,remnant of Rathke's pouch, +http://purl.obolibrary.org/obo/UBERON_0006378,strand of vibrissa hair,contour hair +http://purl.obolibrary.org/obo/UBERON_0006378,strand of vibrissa hair,sinus hair +http://purl.obolibrary.org/obo/UBERON_0006378,strand of vibrissa hair,touch hair +http://purl.obolibrary.org/obo/UBERON_0006378,strand of vibrissa hair,vibrissa hair +http://purl.obolibrary.org/obo/UBERON_0006428,basisphenoid bone,basisphenoid +http://purl.obolibrary.org/obo/UBERON_0006430,xiphoid cartilage,cartilage of xiphoid process +http://purl.obolibrary.org/obo/UBERON_0006430,xiphoid cartilage,xiphoid cartilage +http://purl.obolibrary.org/obo/UBERON_0006430,xiphoid cartilage,xiphoid process cartilage +http://purl.obolibrary.org/obo/UBERON_0006431,xiphoid process bone,bone tissue of xiphoid process +http://purl.obolibrary.org/obo/UBERON_0006435,os penis,baculum +http://purl.obolibrary.org/obo/UBERON_0006435,os penis,os baculum +http://purl.obolibrary.org/obo/UBERON_0006435,os penis,penile bone +http://purl.obolibrary.org/obo/UBERON_0006435,os penis,penis bone +http://purl.obolibrary.org/obo/UBERON_0006436,principal artery to forelimb, +http://purl.obolibrary.org/obo/UBERON_0006438,principal artery to hindlimb, +http://purl.obolibrary.org/obo/UBERON_0006440,os clitoris,baubellum +http://purl.obolibrary.org/obo/UBERON_0006440,os clitoris,clitoral bone +http://purl.obolibrary.org/obo/UBERON_0006440,os clitoris,clitoris bone +http://purl.obolibrary.org/obo/UBERON_0006440,os clitoris,os clitoridis +http://purl.obolibrary.org/obo/UBERON_0006442,subhepatic recess,hepatic recess +http://purl.obolibrary.org/obo/UBERON_0006442,subhepatic recess,subhepatic space +http://purl.obolibrary.org/obo/UBERON_0006443,prinicipal vein of limb, +http://purl.obolibrary.org/obo/UBERON_0006444,annulus fibrosus,anulus fibrosus +http://purl.obolibrary.org/obo/UBERON_0006444,annulus fibrosus,fibrocartilaginous ring +http://purl.obolibrary.org/obo/UBERON_0006445,caudal middle frontal gyrus,caudal middle frontal gyrus +http://purl.obolibrary.org/obo/UBERON_0006445,caudal middle frontal gyrus,posterior part of middle frontal gyrus +http://purl.obolibrary.org/obo/UBERON_0006446,rostral middle frontal gyrus,anterior part of middle frontal gyrus +http://purl.obolibrary.org/obo/UBERON_0006446,rostral middle frontal gyrus,rostral middle frontal gyrus +http://purl.obolibrary.org/obo/UBERON_0006447,L5 segment of lumbar spinal cord,L5 segment +http://purl.obolibrary.org/obo/UBERON_0006447,L5 segment of lumbar spinal cord,L5 spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006447,L5 segment of lumbar spinal cord,fifth lumbar spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006448,L1 segment of lumbar spinal cord,L1 segment +http://purl.obolibrary.org/obo/UBERON_0006448,L1 segment of lumbar spinal cord,L1 spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006448,L1 segment of lumbar spinal cord,first lumbar spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006449,L3 segment of lumbar spinal cord,L3 segment +http://purl.obolibrary.org/obo/UBERON_0006449,L3 segment of lumbar spinal cord,L3 spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006449,L3 segment of lumbar spinal cord,third lumbar spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006450,L2 segment of lumbar spinal cord,L2 spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006450,L2 segment of lumbar spinal cord,l2 segment +http://purl.obolibrary.org/obo/UBERON_0006450,L2 segment of lumbar spinal cord,second lumbar spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006451,L4 segment of lumbar spinal cord,L4 segment +http://purl.obolibrary.org/obo/UBERON_0006451,L4 segment of lumbar spinal cord,L4 spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006451,L4 segment of lumbar spinal cord,fourth lumbar spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006452,T4 segment of thoracic spinal cord,T4 segment +http://purl.obolibrary.org/obo/UBERON_0006452,T4 segment of thoracic spinal cord,T4 segment of spinal cord +http://purl.obolibrary.org/obo/UBERON_0006452,T4 segment of thoracic spinal cord,T4 spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006452,T4 segment of thoracic spinal cord,fourth thoracic spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006453,T5 segment of thoracic spinal cord,T5 spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006453,T5 segment of thoracic spinal cord,fifth thoracic spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006453,T5 segment of thoracic spinal cord,t5 segment +http://purl.obolibrary.org/obo/UBERON_0006454,T6 segment of thoracic spinal cord,T6 spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006454,T6 segment of thoracic spinal cord,sixth thoracic spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006454,T6 segment of thoracic spinal cord,t6 segment +http://purl.obolibrary.org/obo/UBERON_0006455,T7 segment of thoracic spinal cord,T7 spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006455,T7 segment of thoracic spinal cord,seventh thoracic spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006455,T7 segment of thoracic spinal cord,t7 segment +http://purl.obolibrary.org/obo/UBERON_0006456,T8 segment of thoracic spinal cord,T8 spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006456,T8 segment of thoracic spinal cord,eighth thoracic spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006456,T8 segment of thoracic spinal cord,t8 segment +http://purl.obolibrary.org/obo/UBERON_0006457,T1 segment of thoracic spinal cord,T1 spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006457,T1 segment of thoracic spinal cord,first thoracic spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006457,T1 segment of thoracic spinal cord,t1 segment +http://purl.obolibrary.org/obo/UBERON_0006458,T2 segment of thoracic spinal cord,T2 spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006458,T2 segment of thoracic spinal cord,second thoracic spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006458,T2 segment of thoracic spinal cord,t2 segment +http://purl.obolibrary.org/obo/UBERON_0006459,T3 segment of thoracic spinal cord,T3 spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006459,T3 segment of thoracic spinal cord,t3 segment +http://purl.obolibrary.org/obo/UBERON_0006459,T3 segment of thoracic spinal cord,third thoracic spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006460,S1 segment of sacral spinal cord,S1 segment +http://purl.obolibrary.org/obo/UBERON_0006460,S1 segment of sacral spinal cord,S1 spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006460,S1 segment of sacral spinal cord,first sacral spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006461,S2 segment of sacral spinal cord,S2 segment +http://purl.obolibrary.org/obo/UBERON_0006461,S2 segment of sacral spinal cord,S2 spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006461,S2 segment of sacral spinal cord,second sacral spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006462,S3 segment of sacral spinal cord,S3 segment +http://purl.obolibrary.org/obo/UBERON_0006462,S3 segment of sacral spinal cord,S3 spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006462,S3 segment of sacral spinal cord,third sacral spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006463,S4 segment of sacral spinal cord,S4 segment +http://purl.obolibrary.org/obo/UBERON_0006463,S4 segment of sacral spinal cord,S4 spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006463,S4 segment of sacral spinal cord,fourth sacral spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006464,S5 segment of sacral spinal cord,S5 segment +http://purl.obolibrary.org/obo/UBERON_0006464,S5 segment of sacral spinal cord,S5 spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006464,S5 segment of sacral spinal cord,fifth sacral spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006465,T9 segment of thoracic spinal cord,T9 spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006465,T9 segment of thoracic spinal cord,ninth thoracic spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006465,T9 segment of thoracic spinal cord,t9 segment +http://purl.obolibrary.org/obo/UBERON_0006466,T10 segment of thoracic spinal cord,T10 spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006466,T10 segment of thoracic spinal cord,t10 segment +http://purl.obolibrary.org/obo/UBERON_0006466,T10 segment of thoracic spinal cord,tenth thoracic spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006467,T11 segment of thoracic spinal cord,T11 spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006467,T11 segment of thoracic spinal cord,eleventh thoracic spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006467,T11 segment of thoracic spinal cord,t11 segment +http://purl.obolibrary.org/obo/UBERON_0006468,T12 segment of thoracic spinal cord,T12 spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006468,T12 segment of thoracic spinal cord,t12 segment +http://purl.obolibrary.org/obo/UBERON_0006468,T12 segment of thoracic spinal cord,twelfth thoracic spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006469,C1 segment of cervical spinal cord,C1 cervical spinal cord +http://purl.obolibrary.org/obo/UBERON_0006469,C1 segment of cervical spinal cord,C1 segment +http://purl.obolibrary.org/obo/UBERON_0006469,C1 segment of cervical spinal cord,C1 spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006469,C1 segment of cervical spinal cord,first cervical spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006470,C8 segment of cervical spinal cord,C8 segment +http://purl.obolibrary.org/obo/UBERON_0006470,C8 segment of cervical spinal cord,C8 spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006470,C8 segment of cervical spinal cord,eighth cervical spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006471,Brodmann (1909) area 5,B09-5 +http://purl.obolibrary.org/obo/UBERON_0006471,Brodmann (1909) area 5,BA5 +http://purl.obolibrary.org/obo/UBERON_0006471,Brodmann (1909) area 5,Brodmann (1909) area 5 +http://purl.obolibrary.org/obo/UBERON_0006471,Brodmann (1909) area 5,Brodmann area 5 +http://purl.obolibrary.org/obo/UBERON_0006471,Brodmann (1909) area 5,"Brodmann area 5, preparietal" +http://purl.obolibrary.org/obo/UBERON_0006471,Brodmann (1909) area 5,area 5 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0006471,Brodmann (1909) area 5,area praeparietalis +http://purl.obolibrary.org/obo/UBERON_0006471,Brodmann (1909) area 5,preparietal area 5 +http://purl.obolibrary.org/obo/UBERON_0006472,Brodmann (1909) area 6,B09-6 +http://purl.obolibrary.org/obo/UBERON_0006472,Brodmann (1909) area 6,BA6 +http://purl.obolibrary.org/obo/UBERON_0006472,Brodmann (1909) area 6,Brodmann (1909) area 6 +http://purl.obolibrary.org/obo/UBERON_0006472,Brodmann (1909) area 6,Brodmann area 6 +http://purl.obolibrary.org/obo/UBERON_0006472,Brodmann (1909) area 6,"Brodmann area 6, agranular frontal" +http://purl.obolibrary.org/obo/UBERON_0006472,Brodmann (1909) area 6,agranular frontal area 6 +http://purl.obolibrary.org/obo/UBERON_0006472,Brodmann (1909) area 6,area 6 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0006472,Brodmann (1909) area 6,area 6 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0006472,Brodmann (1909) area 6,area frontalis agranularis +http://purl.obolibrary.org/obo/UBERON_0006472,Brodmann (1909) area 6,frontal belt +http://purl.obolibrary.org/obo/UBERON_0006473,Brodmann (1909) area 18,B09-18 +http://purl.obolibrary.org/obo/UBERON_0006473,Brodmann (1909) area 18,BA18 +http://purl.obolibrary.org/obo/UBERON_0006473,Brodmann (1909) area 18,Brodmann (1909) area 18 +http://purl.obolibrary.org/obo/UBERON_0006473,Brodmann (1909) area 18,Brodmann area 18 +http://purl.obolibrary.org/obo/UBERON_0006473,Brodmann (1909) area 18,"Brodmann area 18, parastriate" +http://purl.obolibrary.org/obo/UBERON_0006473,Brodmann (1909) area 18,Brodmann's area 18 +http://purl.obolibrary.org/obo/UBERON_0006473,Brodmann (1909) area 18,area 18 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0006473,Brodmann (1909) area 18,area 18 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0006473,Brodmann (1909) area 18,area parastriata +http://purl.obolibrary.org/obo/UBERON_0006473,Brodmann (1909) area 18,parastriate area 18 +http://purl.obolibrary.org/obo/UBERON_0006473,Brodmann (1909) area 18,secondary visual area +http://purl.obolibrary.org/obo/UBERON_0006473,Brodmann (1909) area 18,visual area II +http://purl.obolibrary.org/obo/UBERON_0006474,Brodmann (1909) area 30,B09-30 +http://purl.obolibrary.org/obo/UBERON_0006474,Brodmann (1909) area 30,BA30 +http://purl.obolibrary.org/obo/UBERON_0006474,Brodmann (1909) area 30,Brodmann (1909) area 30 +http://purl.obolibrary.org/obo/UBERON_0006474,Brodmann (1909) area 30,Brodmann area 30 +http://purl.obolibrary.org/obo/UBERON_0006474,Brodmann (1909) area 30,"Brodmann area 30, agranular retrolimbic" +http://purl.obolibrary.org/obo/UBERON_0006474,Brodmann (1909) area 30,Brodmann's area 30 +http://purl.obolibrary.org/obo/UBERON_0006474,Brodmann (1909) area 30,agranular retrolimbic area 30 +http://purl.obolibrary.org/obo/UBERON_0006474,Brodmann (1909) area 30,area 30 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0006474,Brodmann (1909) area 30,area 30 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0006474,Brodmann (1909) area 30,area retrolimbica agranularis +http://purl.obolibrary.org/obo/UBERON_0006474,Brodmann (1909) area 30,area retrosplenialis agranularis +http://purl.obolibrary.org/obo/UBERON_0006475,Brodmann (1909) area 31,B09-31 +http://purl.obolibrary.org/obo/UBERON_0006475,Brodmann (1909) area 31,BA31 +http://purl.obolibrary.org/obo/UBERON_0006475,Brodmann (1909) area 31,Brodmann (1909) area 31 +http://purl.obolibrary.org/obo/UBERON_0006475,Brodmann (1909) area 31,Brodmann area 31 +http://purl.obolibrary.org/obo/UBERON_0006475,Brodmann (1909) area 31,"Brodmann area 31, dorsal posterior cingulate" +http://purl.obolibrary.org/obo/UBERON_0006475,Brodmann (1909) area 31,Brodmann's area 31 +http://purl.obolibrary.org/obo/UBERON_0006475,Brodmann (1909) area 31,area 31 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0006475,Brodmann (1909) area 31,area 31 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0006475,Brodmann (1909) area 31,area cingularis posterior dorsalis +http://purl.obolibrary.org/obo/UBERON_0006475,Brodmann (1909) area 31,cinguloparietal transition area +http://purl.obolibrary.org/obo/UBERON_0006475,Brodmann (1909) area 31,dorsal posterior cingulate area 31 +http://purl.obolibrary.org/obo/UBERON_0006476,Brodmann (1909) area 33,B09-33 +http://purl.obolibrary.org/obo/UBERON_0006476,Brodmann (1909) area 33,BA33 +http://purl.obolibrary.org/obo/UBERON_0006476,Brodmann (1909) area 33,Brodmann (1909) area 33 +http://purl.obolibrary.org/obo/UBERON_0006476,Brodmann (1909) area 33,Brodmann area 33 +http://purl.obolibrary.org/obo/UBERON_0006476,Brodmann (1909) area 33,"Brodmann area 33, pregenual" +http://purl.obolibrary.org/obo/UBERON_0006476,Brodmann (1909) area 33,Brodmann's area 33 +http://purl.obolibrary.org/obo/UBERON_0006476,Brodmann (1909) area 33,area 33 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0006476,Brodmann (1909) area 33,area 33 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0006476,Brodmann (1909) area 33,area praegenualis +http://purl.obolibrary.org/obo/UBERON_0006476,Brodmann (1909) area 33,pregenual area 33 +http://purl.obolibrary.org/obo/UBERON_0006477,Brodmann (1909) area 34,B09-34 +http://purl.obolibrary.org/obo/UBERON_0006477,Brodmann (1909) area 34,BA34 +http://purl.obolibrary.org/obo/UBERON_0006477,Brodmann (1909) area 34,Brodmann (1909) area 34 +http://purl.obolibrary.org/obo/UBERON_0006477,Brodmann (1909) area 34,Brodmann area 34 +http://purl.obolibrary.org/obo/UBERON_0006477,Brodmann (1909) area 34,"Brodmann area 34, dorsal entorhinal" +http://purl.obolibrary.org/obo/UBERON_0006477,Brodmann (1909) area 34,area 34 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0006477,Brodmann (1909) area 34,area 34 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0006477,Brodmann (1909) area 34,area entorhinalis dorsalis +http://purl.obolibrary.org/obo/UBERON_0006477,Brodmann (1909) area 34,dorsal entorhinal area 34 +http://purl.obolibrary.org/obo/UBERON_0006478,Brodmann (1909) area 37,B09-37 +http://purl.obolibrary.org/obo/UBERON_0006478,Brodmann (1909) area 37,BA37 +http://purl.obolibrary.org/obo/UBERON_0006478,Brodmann (1909) area 37,Brodmann (1909) area 37 +http://purl.obolibrary.org/obo/UBERON_0006478,Brodmann (1909) area 37,Brodmann area 37 +http://purl.obolibrary.org/obo/UBERON_0006478,Brodmann (1909) area 37,"Brodmann area 37, occipitotemporal" +http://purl.obolibrary.org/obo/UBERON_0006478,Brodmann (1909) area 37,area 37 0f brodmann +http://purl.obolibrary.org/obo/UBERON_0006478,Brodmann (1909) area 37,area 37 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0006478,Brodmann (1909) area 37,area occipitotemporalis +http://purl.obolibrary.org/obo/UBERON_0006478,Brodmann (1909) area 37,occipitotemporal area 37 +http://purl.obolibrary.org/obo/UBERON_0006479,Brodmann (1909) area 38,B09-38 +http://purl.obolibrary.org/obo/UBERON_0006479,Brodmann (1909) area 38,BA38 +http://purl.obolibrary.org/obo/UBERON_0006479,Brodmann (1909) area 38,Brodmann (1909) area 38 +http://purl.obolibrary.org/obo/UBERON_0006479,Brodmann (1909) area 38,Brodmann area 38 +http://purl.obolibrary.org/obo/UBERON_0006479,Brodmann (1909) area 38,"Brodmann area 38, temporopolar" +http://purl.obolibrary.org/obo/UBERON_0006479,Brodmann (1909) area 38,anterior end of the temporal lobe +http://purl.obolibrary.org/obo/UBERON_0006479,Brodmann (1909) area 38,anterior temporal lobe +http://purl.obolibrary.org/obo/UBERON_0006479,Brodmann (1909) area 38,area 38 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0006479,Brodmann (1909) area 38,area 38 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0006479,Brodmann (1909) area 38,area temporopolaris +http://purl.obolibrary.org/obo/UBERON_0006479,Brodmann (1909) area 38,temporopolar area 38 +http://purl.obolibrary.org/obo/UBERON_0006479,Brodmann (1909) area 38,temporopolar area 38 (H) +http://purl.obolibrary.org/obo/UBERON_0006480,Brodmann (1909) area 39,B09-39 +http://purl.obolibrary.org/obo/UBERON_0006480,Brodmann (1909) area 39,BA39 +http://purl.obolibrary.org/obo/UBERON_0006480,Brodmann (1909) area 39,Brodmann (1909) area 39 +http://purl.obolibrary.org/obo/UBERON_0006480,Brodmann (1909) area 39,Brodmann area 39 +http://purl.obolibrary.org/obo/UBERON_0006480,Brodmann (1909) area 39,"Brodmann area 39, angular" +http://purl.obolibrary.org/obo/UBERON_0006480,Brodmann (1909) area 39,angular area 39 +http://purl.obolibrary.org/obo/UBERON_0006480,Brodmann (1909) area 39,area 39 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0006480,Brodmann (1909) area 39,area 39 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0006480,Brodmann (1909) area 39,area angularis +http://purl.obolibrary.org/obo/UBERON_0006481,Brodmann (1909) area 44,B09-44 +http://purl.obolibrary.org/obo/UBERON_0006481,Brodmann (1909) area 44,BA44 +http://purl.obolibrary.org/obo/UBERON_0006481,Brodmann (1909) area 44,Brodmann (1909) area 44 +http://purl.obolibrary.org/obo/UBERON_0006481,Brodmann (1909) area 44,Brodmann area 44 +http://purl.obolibrary.org/obo/UBERON_0006481,Brodmann (1909) area 44,"Brodmann area 44, opercular" +http://purl.obolibrary.org/obo/UBERON_0006481,Brodmann (1909) area 44,area 44 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0006481,Brodmann (1909) area 44,area 44 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0006481,Brodmann (1909) area 44,area opercularis +http://purl.obolibrary.org/obo/UBERON_0006481,Brodmann (1909) area 44,opercular area 44 +http://purl.obolibrary.org/obo/UBERON_0006482,Brodmann (1909) area 45,B09-45 +http://purl.obolibrary.org/obo/UBERON_0006482,Brodmann (1909) area 45,BA45 +http://purl.obolibrary.org/obo/UBERON_0006482,Brodmann (1909) area 45,Brodmann (1909) area 45 +http://purl.obolibrary.org/obo/UBERON_0006482,Brodmann (1909) area 45,Brodmann area 45 +http://purl.obolibrary.org/obo/UBERON_0006482,Brodmann (1909) area 45,"Brodmann area 45, triangular" +http://purl.obolibrary.org/obo/UBERON_0006482,Brodmann (1909) area 45,area 45 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0006482,Brodmann (1909) area 45,area 45 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0006482,Brodmann (1909) area 45,area triangularis +http://purl.obolibrary.org/obo/UBERON_0006482,Brodmann (1909) area 45,triangular area 45 +http://purl.obolibrary.org/obo/UBERON_0006483,Brodmann (1909) area 46,B09-46 +http://purl.obolibrary.org/obo/UBERON_0006483,Brodmann (1909) area 46,BA46 +http://purl.obolibrary.org/obo/UBERON_0006483,Brodmann (1909) area 46,Brodmann (1909) area 46 +http://purl.obolibrary.org/obo/UBERON_0006483,Brodmann (1909) area 46,Brodmann area 46 +http://purl.obolibrary.org/obo/UBERON_0006483,Brodmann (1909) area 46,"Brodmann area 46, middle frontal" +http://purl.obolibrary.org/obo/UBERON_0006483,Brodmann (1909) area 46,area 46 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0006483,Brodmann (1909) area 46,area 46 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0006483,Brodmann (1909) area 46,area frontalis media +http://purl.obolibrary.org/obo/UBERON_0006483,Brodmann (1909) area 46,middle frontal area 46 +http://purl.obolibrary.org/obo/UBERON_0006484,Brodmann (1909) area 47,B09-47 +http://purl.obolibrary.org/obo/UBERON_0006484,Brodmann (1909) area 47,BA47 +http://purl.obolibrary.org/obo/UBERON_0006484,Brodmann (1909) area 47,Brodmann (1909) area 47 +http://purl.obolibrary.org/obo/UBERON_0006484,Brodmann (1909) area 47,Brodmann area 47 +http://purl.obolibrary.org/obo/UBERON_0006484,Brodmann (1909) area 47,"Brodmann area 47, orbital" +http://purl.obolibrary.org/obo/UBERON_0006484,Brodmann (1909) area 47,area 47 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0006484,Brodmann (1909) area 47,area 47 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0006484,Brodmann (1909) area 47,area orbitalis +http://purl.obolibrary.org/obo/UBERON_0006484,Brodmann (1909) area 47,orbital area 47 +http://purl.obolibrary.org/obo/UBERON_0006485,Brodmann (1909) area 48,B09-48 +http://purl.obolibrary.org/obo/UBERON_0006485,Brodmann (1909) area 48,BA48 +http://purl.obolibrary.org/obo/UBERON_0006485,Brodmann (1909) area 48,Brodmann (1909) area 48 +http://purl.obolibrary.org/obo/UBERON_0006485,Brodmann (1909) area 48,Brodmann area 48 +http://purl.obolibrary.org/obo/UBERON_0006485,Brodmann (1909) area 48,"Brodmann area 48, retrosubicular" +http://purl.obolibrary.org/obo/UBERON_0006485,Brodmann (1909) area 48,Brodmann's area 48 +http://purl.obolibrary.org/obo/UBERON_0006485,Brodmann (1909) area 48,area 48 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0006485,Brodmann (1909) area 48,area retrosubicularis +http://purl.obolibrary.org/obo/UBERON_0006485,Brodmann (1909) area 48,retrosubicular area 48 +http://purl.obolibrary.org/obo/UBERON_0006486,Brodmann (1909) area 52,B09-52 +http://purl.obolibrary.org/obo/UBERON_0006486,Brodmann (1909) area 52,BA52 +http://purl.obolibrary.org/obo/UBERON_0006486,Brodmann (1909) area 52,Brodmann (1909) area 52 +http://purl.obolibrary.org/obo/UBERON_0006486,Brodmann (1909) area 52,Brodmann area 52 +http://purl.obolibrary.org/obo/UBERON_0006486,Brodmann (1909) area 52,"Brodmann area 52, parainsular" +http://purl.obolibrary.org/obo/UBERON_0006486,Brodmann (1909) area 52,area 52 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0006486,Brodmann (1909) area 52,area parainsularis +http://purl.obolibrary.org/obo/UBERON_0006486,Brodmann (1909) area 52,parainsular area 52 +http://purl.obolibrary.org/obo/UBERON_0006487,Hadjikhani et al. (1998) visuotopic area V2d,Hadjikhani et al. (1998) visuotopic area v2d +http://purl.obolibrary.org/obo/UBERON_0006488,C3 segment of cervical spinal cord,C3 segment +http://purl.obolibrary.org/obo/UBERON_0006488,C3 segment of cervical spinal cord,C3 spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006488,C3 segment of cervical spinal cord,third cervical spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006489,C2 segment of cervical spinal cord,C2 segment +http://purl.obolibrary.org/obo/UBERON_0006489,C2 segment of cervical spinal cord,C2 spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006489,C2 segment of cervical spinal cord,second cervical spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006490,C4 segment of cervical spinal cord,C4 segment +http://purl.obolibrary.org/obo/UBERON_0006490,C4 segment of cervical spinal cord,C4 spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006490,C4 segment of cervical spinal cord,forth cervical spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006491,C5 segment of cervical spinal cord,C5 segment +http://purl.obolibrary.org/obo/UBERON_0006491,C5 segment of cervical spinal cord,C5 spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006491,C5 segment of cervical spinal cord,fifth cervical spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006492,C6 segment of cervical spinal cord,C6 segment +http://purl.obolibrary.org/obo/UBERON_0006492,C6 segment of cervical spinal cord,C6 spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006492,C6 segment of cervical spinal cord,sixth cervical spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006493,C7 segment of cervical spinal cord,C7 segment +http://purl.obolibrary.org/obo/UBERON_0006493,C7 segment of cervical spinal cord,C7 spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006493,C7 segment of cervical spinal cord,seventh cervical spinal cord segment +http://purl.obolibrary.org/obo/UBERON_0006494,apex of arytenoid,apex of arytenoid cartilage +http://purl.obolibrary.org/obo/UBERON_0006494,apex of arytenoid,arytenoid cartilage apex +http://purl.obolibrary.org/obo/UBERON_0006495,osseus cochlear canal,osseous cochlear canal +http://purl.obolibrary.org/obo/UBERON_0006496,external acoustic meatus osseus part,osseous external acoustic meatus +http://purl.obolibrary.org/obo/UBERON_0006496,external acoustic meatus osseus part,osseous external acoustic tube +http://purl.obolibrary.org/obo/UBERON_0006496,external acoustic meatus osseus part,osseous part of external acoustic meatus +http://purl.obolibrary.org/obo/UBERON_0006497,interosseous muscle of pes,foot interosseous +http://purl.obolibrary.org/obo/UBERON_0006497,interosseous muscle of pes,foot interosseus muscle +http://purl.obolibrary.org/obo/UBERON_0006497,interosseous muscle of pes,interosseous of foot +http://purl.obolibrary.org/obo/UBERON_0006497,interosseous muscle of pes,pes interosseous muscle +http://purl.obolibrary.org/obo/UBERON_0006499,dorsal pes interosseous muscle,dorsal foot interosseus muscle +http://purl.obolibrary.org/obo/UBERON_0006499,dorsal pes interosseous muscle,dorsal interosseous of foot +http://purl.obolibrary.org/obo/UBERON_0006499,dorsal pes interosseous muscle,musculi interossei dorsalis pedis +http://purl.obolibrary.org/obo/UBERON_0006502,plantar interosseous muscle of pes,musculi interossei plantares +http://purl.obolibrary.org/obo/UBERON_0006502,plantar interosseous muscle of pes,plantar foot interosseus muscle +http://purl.obolibrary.org/obo/UBERON_0006502,plantar interosseous muscle of pes,plantar interosseous of foot +http://purl.obolibrary.org/obo/UBERON_0006505,palmar interosseous muscle of manus,musculi interossei palmares +http://purl.obolibrary.org/obo/UBERON_0006505,palmar interosseous muscle of manus,palmar hand interosseus muscle +http://purl.obolibrary.org/obo/UBERON_0006505,palmar interosseous muscle of manus,palmar interosseous of hand +http://purl.obolibrary.org/obo/UBERON_0006508,interosseous muscle of autopod,interosseus muscle +http://purl.obolibrary.org/obo/UBERON_0006508,interosseous muscle of autopod,m. interosseous +http://purl.obolibrary.org/obo/UBERON_0006514,pallidum,neuraxis pallidum +http://purl.obolibrary.org/obo/UBERON_0006514,pallidum,pallidum of neuraxis +http://purl.obolibrary.org/obo/UBERON_0006516,dorsal pallidum,globus pallidus dorsal part +http://purl.obolibrary.org/obo/UBERON_0006517,kidney calyx,calices renales +http://purl.obolibrary.org/obo/UBERON_0006517,kidney calyx,renal calix +http://purl.obolibrary.org/obo/UBERON_0006517,kidney calyx,renal calyx +http://purl.obolibrary.org/obo/UBERON_0006518,right lung lobe,lobe of right lung +http://purl.obolibrary.org/obo/UBERON_0006518,right lung lobe,lobe of the right lung +http://purl.obolibrary.org/obo/UBERON_0006524,alveolar system,pulmonary alveolar system +http://purl.obolibrary.org/obo/UBERON_0006525,left lung alveolar system, +http://purl.obolibrary.org/obo/UBERON_0006526,right lung alveolar system, +http://purl.obolibrary.org/obo/UBERON_0006530,seminal fluid,seminal plasma +http://purl.obolibrary.org/obo/UBERON_0006531,oculomotor muscle, +http://purl.obolibrary.org/obo/UBERON_0006532,oblique extraocular muscle, +http://purl.obolibrary.org/obo/UBERON_0006533,rectus extraocular muscle, +http://purl.obolibrary.org/obo/UBERON_0006534,renal convoluted tubule,convoluted tubule +http://purl.obolibrary.org/obo/UBERON_0006534,renal convoluted tubule,kidney convoluted tubule +http://purl.obolibrary.org/obo/UBERON_0006535,skin secretion,skin fluid/secretion +http://purl.obolibrary.org/obo/UBERON_0006536,male reproductive gland secretion,male reproductive system fluid/secretion +http://purl.obolibrary.org/obo/UBERON_0006537,female reproductive gland secretion,female reproductive system fluid/secretion +http://purl.obolibrary.org/obo/UBERON_0006538,respiratory system fluid/secretion, +http://purl.obolibrary.org/obo/UBERON_0006539,mammary gland fluid/secretion, +http://purl.obolibrary.org/obo/UBERON_0006541,outer medulla inner stripe loop of Henle, +http://purl.obolibrary.org/obo/UBERON_0006542,outer medulla outer stripe loop of Henle, +http://purl.obolibrary.org/obo/UBERON_0006544,kidney vasculature, +http://purl.obolibrary.org/obo/UBERON_0006553,renal duct, +http://purl.obolibrary.org/obo/UBERON_0006555,excretory tube, +http://purl.obolibrary.org/obo/UBERON_0006558,lymphatic part of lymphoid system,lymphatic system +http://purl.obolibrary.org/obo/UBERON_0006558,lymphatic part of lymphoid system,lymphatic tree system +http://purl.obolibrary.org/obo/UBERON_0006561,non-lymphatic part of lymphoid system,non-lymphatic lymphoid system +http://purl.obolibrary.org/obo/UBERON_0006562,pharynx,anterior part of foregut +http://purl.obolibrary.org/obo/UBERON_0006562,pharynx,pharyngeal tube +http://purl.obolibrary.org/obo/UBERON_0006563,tunica media of pulmonary trunk, +http://purl.obolibrary.org/obo/UBERON_0006564,superficial palmar arch,arcus palmaris superficialis +http://purl.obolibrary.org/obo/UBERON_0006564,superficial palmar arch,superficial palmar arch +http://purl.obolibrary.org/obo/UBERON_0006564,superficial palmar arch,superficial palmar arterial arch +http://purl.obolibrary.org/obo/UBERON_0006565,female urethral meatus,external orifice of female urethra +http://purl.obolibrary.org/obo/UBERON_0006565,female urethral meatus,external urethral orifice (female) +http://purl.obolibrary.org/obo/UBERON_0006565,female urethral meatus,female urethral meatus +http://purl.obolibrary.org/obo/UBERON_0006565,female urethral meatus,ostium urethrae externum (urethra feminina) +http://purl.obolibrary.org/obo/UBERON_0006565,female urethral meatus,urethral meatus of clitoral urethra +http://purl.obolibrary.org/obo/UBERON_0006566,left ventricle myocardium,left ventricular myocardium +http://purl.obolibrary.org/obo/UBERON_0006566,left ventricle myocardium,myocardium of left ventricle +http://purl.obolibrary.org/obo/UBERON_0006567,right ventricle myocardium,myocardium of right ventricle +http://purl.obolibrary.org/obo/UBERON_0006567,right ventricle myocardium,right ventricular myocardium +http://purl.obolibrary.org/obo/UBERON_0006568,hypothalamic nucleus,nucleus of hypothalamus +http://purl.obolibrary.org/obo/UBERON_0006569,diencephalic nucleus, +http://purl.obolibrary.org/obo/UBERON_0006570,trabecula carnea of right ventricle,trabeculae carneae (ventriculus dexter) +http://purl.obolibrary.org/obo/UBERON_0006571,trabecula carnea of left ventricle,trabeculae carneae (ventriculus sinister) +http://purl.obolibrary.org/obo/UBERON_0006574,pectinate line,linea pectinata canalis analis +http://purl.obolibrary.org/obo/UBERON_0006574,pectinate line,pectinate line of anal canal +http://purl.obolibrary.org/obo/UBERON_0006575,mantle, +http://purl.obolibrary.org/obo/UBERON_0006580,mantle cavity, +http://purl.obolibrary.org/obo/UBERON_0006581,mantle muscle, +http://purl.obolibrary.org/obo/UBERON_0006582,statolith, +http://purl.obolibrary.org/obo/UBERON_0006583,statocyst, +http://purl.obolibrary.org/obo/UBERON_0006585,vestibular organ,balance organ +http://purl.obolibrary.org/obo/UBERON_0006586,otolymph, +http://purl.obolibrary.org/obo/UBERON_0006587,ligamentum venosum,ligament of arantius +http://purl.obolibrary.org/obo/UBERON_0006587,ligamentum venosum,ligamentum venosum (ductus venosus) +http://purl.obolibrary.org/obo/UBERON_0006587,ligamentum venosum,ligamentum venosum of liver +http://purl.obolibrary.org/obo/UBERON_0006587,ligamentum venosum,ligamentum venosus +http://purl.obolibrary.org/obo/UBERON_0006588,round ligament of liver,ligamentum teres hepatis +http://purl.obolibrary.org/obo/UBERON_0006588,round ligament of liver,ligamentum teres hepatitis +http://purl.obolibrary.org/obo/UBERON_0006588,round ligament of liver,ligamentum teres of liver +http://purl.obolibrary.org/obo/UBERON_0006589,round ligament of uterus,Hunter's ligament +http://purl.obolibrary.org/obo/UBERON_0006589,round ligament of uterus,ligamentum teres of uterus +http://purl.obolibrary.org/obo/UBERON_0006589,round ligament of uterus,ligamentum teres uteri +http://purl.obolibrary.org/obo/UBERON_0006589,round ligament of uterus,round ligament of the uterus +http://purl.obolibrary.org/obo/UBERON_0006590,remnant of embryonic structure,vestigial embryonic structure +http://purl.obolibrary.org/obo/UBERON_0006591,transformed artery, +http://purl.obolibrary.org/obo/UBERON_0006592,transformed vein, +http://purl.obolibrary.org/obo/UBERON_0006594,gubernacular cord,chorda gubernaculum +http://purl.obolibrary.org/obo/UBERON_0006595,presumptive endoderm, +http://purl.obolibrary.org/obo/UBERON_0006596,presumptive blood,future blood +http://purl.obolibrary.org/obo/UBERON_0006597,quadrate bone,quadrate +http://purl.obolibrary.org/obo/UBERON_0006597,quadrate bone,quadrate bone +http://purl.obolibrary.org/obo/UBERON_0006598,presumptive structure,future structure +http://purl.obolibrary.org/obo/UBERON_0006598,presumptive structure,presumptive structures +http://purl.obolibrary.org/obo/UBERON_0006599,presumptive hypochord,future hypochord +http://purl.obolibrary.org/obo/UBERON_0006600,presumptive enteric nervous system,future enteric nervous system +http://purl.obolibrary.org/obo/UBERON_0006601,presumptive ectoderm, +http://purl.obolibrary.org/obo/UBERON_0006603,presumptive mesoderm, +http://purl.obolibrary.org/obo/UBERON_0006604,lamina orbitonasalis,laminas orbitonasalis +http://purl.obolibrary.org/obo/UBERON_0006605,tectum synoticum, +http://purl.obolibrary.org/obo/UBERON_0006606,mandibular symphysis,dentary symphysis +http://purl.obolibrary.org/obo/UBERON_0006606,mandibular symphysis,inter-dentary joint +http://purl.obolibrary.org/obo/UBERON_0006606,mandibular symphysis,inter-mandibular joint +http://purl.obolibrary.org/obo/UBERON_0006606,mandibular symphysis,mental symphysis +http://purl.obolibrary.org/obo/UBERON_0006606,mandibular symphysis,symphysis mandibulae +http://purl.obolibrary.org/obo/UBERON_0006606,mandibular symphysis,symphysis menti +http://purl.obolibrary.org/obo/UBERON_0006607,medial umbilical ligament,ligamentum umbilicale mediale +http://purl.obolibrary.org/obo/UBERON_0006608,corpus cavernosum clitoridis,cavernous body of clitoris +http://purl.obolibrary.org/obo/UBERON_0006608,corpus cavernosum clitoridis,clitoral corpus cavernosum +http://purl.obolibrary.org/obo/UBERON_0006608,corpus cavernosum clitoridis,corpus cavernosum +http://purl.obolibrary.org/obo/UBERON_0006608,corpus cavernosum clitoridis,corpus cavernosum clitoridis +http://purl.obolibrary.org/obo/UBERON_0006608,corpus cavernosum clitoridis,corpus cavernosum of clitoris +http://purl.obolibrary.org/obo/UBERON_0006609,corpus cavernosum, +http://purl.obolibrary.org/obo/UBERON_0006610,tunica albuginea, +http://purl.obolibrary.org/obo/UBERON_0006611,exoskeleton, +http://purl.obolibrary.org/obo/UBERON_0006612,shell, +http://purl.obolibrary.org/obo/UBERON_0006614,aponeurosis, +http://purl.obolibrary.org/obo/UBERON_0006615,venous sinus,blood sinus +http://purl.obolibrary.org/obo/UBERON_0006616,right external ear, +http://purl.obolibrary.org/obo/UBERON_0006617,left external ear, +http://purl.obolibrary.org/obo/UBERON_0006618,atrium auricular region,atrial appendage +http://purl.obolibrary.org/obo/UBERON_0006618,atrium auricular region,atrial auricle +http://purl.obolibrary.org/obo/UBERON_0006618,atrium auricular region,atrium appendage +http://purl.obolibrary.org/obo/UBERON_0006618,atrium auricular region,auricle of atrium +http://purl.obolibrary.org/obo/UBERON_0006618,atrium auricular region,auricle of heart +http://purl.obolibrary.org/obo/UBERON_0006618,atrium auricular region,auricula (cor) +http://purl.obolibrary.org/obo/UBERON_0006618,atrium auricular region,auricula atrii +http://purl.obolibrary.org/obo/UBERON_0006618,atrium auricular region,auricular appendage +http://purl.obolibrary.org/obo/UBERON_0006618,atrium auricular region,cardiac auricle +http://purl.obolibrary.org/obo/UBERON_0006618,atrium auricular region,heart atrial appendage +http://purl.obolibrary.org/obo/UBERON_0006618,atrium auricular region,heart atrium auriclular region +http://purl.obolibrary.org/obo/UBERON_0006630,left atrium auricular region,auricula sinistra +http://purl.obolibrary.org/obo/UBERON_0006630,left atrium auricular region,heart left atrial appendage +http://purl.obolibrary.org/obo/UBERON_0006630,left atrium auricular region,left auricle +http://purl.obolibrary.org/obo/UBERON_0006630,left atrium auricular region,left auricula +http://purl.obolibrary.org/obo/UBERON_0006630,left atrium auricular region,left auricular appendix +http://purl.obolibrary.org/obo/UBERON_0006631,right atrium auricular region,auricula dextra +http://purl.obolibrary.org/obo/UBERON_0006631,right atrium auricular region,right auricle +http://purl.obolibrary.org/obo/UBERON_0006631,right atrium auricular region,right auricula +http://purl.obolibrary.org/obo/UBERON_0006631,right atrium auricular region,right auriculur appendix +http://purl.obolibrary.org/obo/UBERON_0006632,musculo-phrenic artery,musculophrenic artery +http://purl.obolibrary.org/obo/UBERON_0006633,coracoid process of scapula,coracoid process +http://purl.obolibrary.org/obo/UBERON_0006633,coracoid process of scapula,coracoid process of the scapula +http://purl.obolibrary.org/obo/UBERON_0006634,lingual vein, +http://purl.obolibrary.org/obo/UBERON_0006635,anterior abdominal wall,ventral abdominal wall +http://purl.obolibrary.org/obo/UBERON_0006636,lumbar artery,lumbar arterial tree +http://purl.obolibrary.org/obo/UBERON_0006637,celiac trunk,Haller's tripus +http://purl.obolibrary.org/obo/UBERON_0006637,celiac trunk,coeliac trunk +http://purl.obolibrary.org/obo/UBERON_0006637,celiac trunk,coeliaco-mesenteric trunk +http://purl.obolibrary.org/obo/UBERON_0006637,celiac trunk,truncus coeliacus +http://purl.obolibrary.org/obo/UBERON_0006638,remnant of urachus,median umbilical ligament +http://purl.obolibrary.org/obo/UBERON_0006639,crus of penis,crus of penis +http://purl.obolibrary.org/obo/UBERON_0006640,crus of clitoris,clitoris crus +http://purl.obolibrary.org/obo/UBERON_0006641,appendix epididymis,appendix of epididymis +http://purl.obolibrary.org/obo/UBERON_0006641,appendix epididymis,epididymal appendix +http://purl.obolibrary.org/obo/UBERON_0006641,appendix epididymis,epididymis appendix +http://purl.obolibrary.org/obo/UBERON_0006642,muscle layer of oviduct,muscle layer of fallopian tube +http://purl.obolibrary.org/obo/UBERON_0006642,muscle layer of oviduct,muscle layer of oviduct +http://purl.obolibrary.org/obo/UBERON_0006642,muscle layer of oviduct,muscle layer of uterine tube +http://purl.obolibrary.org/obo/UBERON_0006642,muscle layer of oviduct,muscular coat of uterine tube +http://purl.obolibrary.org/obo/UBERON_0006642,muscle layer of oviduct,muscular layer of uterine tube +http://purl.obolibrary.org/obo/UBERON_0006642,muscle layer of oviduct,muscularis of uterine tube +http://purl.obolibrary.org/obo/UBERON_0006642,muscle layer of oviduct,tunica muscularis (Tuba uterina) +http://purl.obolibrary.org/obo/UBERON_0006642,muscle layer of oviduct,tunica muscularis tubae uterinae +http://purl.obolibrary.org/obo/UBERON_0006642,muscle layer of oviduct,uterine tubal muscularis +http://purl.obolibrary.org/obo/UBERON_0006643,tunica albuginea of testis,testis tunica albuginea +http://purl.obolibrary.org/obo/UBERON_0006643,tunica albuginea of testis,tunica albuginea (testis) +http://purl.obolibrary.org/obo/UBERON_0006644,tunica albuginea of ovary,overay tunica albuginea +http://purl.obolibrary.org/obo/UBERON_0006644,tunica albuginea of ovary,tunica albuginea ovarii +http://purl.obolibrary.org/obo/UBERON_0006645,adventitia of epididymis,epididymis adventitia +http://purl.obolibrary.org/obo/UBERON_0006646,muscle layer of epididymis, +http://purl.obolibrary.org/obo/UBERON_0006647,adventitia of ductus deferens,adventitia of deferent duct +http://purl.obolibrary.org/obo/UBERON_0006647,adventitia of ductus deferens,adventitia of ductus deferens +http://purl.obolibrary.org/obo/UBERON_0006647,adventitia of ductus deferens,adventitia of vas deferens +http://purl.obolibrary.org/obo/UBERON_0006647,adventitia of ductus deferens,deferent ductal adventitia +http://purl.obolibrary.org/obo/UBERON_0006647,adventitia of ductus deferens,tunica adventitia (ductus deferens) +http://purl.obolibrary.org/obo/UBERON_0006647,adventitia of ductus deferens,tunica adventitia ductus deferentis +http://purl.obolibrary.org/obo/UBERON_0006648,adventitia of seminal vesicle,adventitia of seminal gland +http://purl.obolibrary.org/obo/UBERON_0006648,adventitia of seminal vesicle,seminal vesicle adventitia +http://purl.obolibrary.org/obo/UBERON_0006648,adventitia of seminal vesicle,tunica adventitia (vesicula seminalis) +http://purl.obolibrary.org/obo/UBERON_0006648,adventitia of seminal vesicle,tunica adventitia glandulae vesiculosae +http://purl.obolibrary.org/obo/UBERON_0006649,suspensory ligament of ovary,infundibulopelvic fold +http://purl.obolibrary.org/obo/UBERON_0006649,suspensory ligament of ovary,infundibulopelvic ligament +http://purl.obolibrary.org/obo/UBERON_0006650,tunica vaginalis testis,testis tunica vaginalis +http://purl.obolibrary.org/obo/UBERON_0006650,tunica vaginalis testis,tunica vaginalis of testis +http://purl.obolibrary.org/obo/UBERON_0006651,appendix testis,appendix of testis +http://purl.obolibrary.org/obo/UBERON_0006651,appendix testis,testis appendix +http://purl.obolibrary.org/obo/UBERON_0006652,muscular layer of vagina,muscular coat of vagina +http://purl.obolibrary.org/obo/UBERON_0006652,muscular layer of vagina,tunica muscularis vaginae +http://purl.obolibrary.org/obo/UBERON_0006652,muscular layer of vagina,vaginal muscularis +http://purl.obolibrary.org/obo/UBERON_0006653,glans clitoris,clitoris glans +http://purl.obolibrary.org/obo/UBERON_0006653,glans clitoris,glans of clitoris +http://purl.obolibrary.org/obo/UBERON_0006654,perineal body,central tendon of perineum +http://purl.obolibrary.org/obo/UBERON_0006655,septum of scrotum,scrotal septum +http://purl.obolibrary.org/obo/UBERON_0006655,septum of scrotum,septum scroti +http://purl.obolibrary.org/obo/UBERON_0006656,deep dorsal vein of penis, +http://purl.obolibrary.org/obo/UBERON_0006657,glenoid fossa,cavitas glenoidalis scapulae +http://purl.obolibrary.org/obo/UBERON_0006657,glenoid fossa,cavitus glenoidalis +http://purl.obolibrary.org/obo/UBERON_0006657,glenoid fossa,glenoid cavity +http://purl.obolibrary.org/obo/UBERON_0006657,glenoid fossa,glenoid cavity of scapula +http://purl.obolibrary.org/obo/UBERON_0006657,glenoid fossa,glenoid facet +http://purl.obolibrary.org/obo/UBERON_0006658,interphalangeal joint,inter-phalangeal joint +http://purl.obolibrary.org/obo/UBERON_0006658,interphalangeal joint,inter-phalanx joint +http://purl.obolibrary.org/obo/UBERON_0006659,cruciate ligament of knee, +http://purl.obolibrary.org/obo/UBERON_0006660,muscular coat,muscular coat +http://purl.obolibrary.org/obo/UBERON_0006660,muscular coat,muscular layer +http://purl.obolibrary.org/obo/UBERON_0006660,muscular coat,muscularis +http://purl.obolibrary.org/obo/UBERON_0006660,muscular coat,muscularis externa +http://purl.obolibrary.org/obo/UBERON_0006660,muscular coat,muscularis layer +http://purl.obolibrary.org/obo/UBERON_0006660,muscular coat,muscularis propria +http://purl.obolibrary.org/obo/UBERON_0006660,muscular coat,transverse muscular fibers +http://purl.obolibrary.org/obo/UBERON_0006660,muscular coat,tunica externa +http://purl.obolibrary.org/obo/UBERON_0006660,muscular coat,tunica muscularis +http://purl.obolibrary.org/obo/UBERON_0006661,epicranial aponeurosis,aponeurosis epicranialis +http://purl.obolibrary.org/obo/UBERON_0006661,epicranial aponeurosis,aponeurosis of epicranius +http://purl.obolibrary.org/obo/UBERON_0006661,epicranial aponeurosis,epicranial aponeurosis +http://purl.obolibrary.org/obo/UBERON_0006661,epicranial aponeurosis,epicranius aponeurosis +http://purl.obolibrary.org/obo/UBERON_0006661,epicranial aponeurosis,galea aponeurotica +http://purl.obolibrary.org/obo/UBERON_0006662,musculo-phrenic vein,musculophrenic vein +http://purl.obolibrary.org/obo/UBERON_0006663,hemiazygos vein,hemi-azygos vein +http://purl.obolibrary.org/obo/UBERON_0006663,hemiazygos vein,hemiazygous vein +http://purl.obolibrary.org/obo/UBERON_0006663,hemiazygos vein,inferior hemi-azygos vein +http://purl.obolibrary.org/obo/UBERON_0006663,hemiazygos vein,vena hemiazygos +http://purl.obolibrary.org/obo/UBERON_0006664,greater palatine artery,major palatine artery +http://purl.obolibrary.org/obo/UBERON_0006665,accessory hemiazygos vein,accessory hemi-azygos vein +http://purl.obolibrary.org/obo/UBERON_0006665,accessory hemiazygos vein,superior hemi-azygos vein +http://purl.obolibrary.org/obo/UBERON_0006665,accessory hemiazygos vein,vena azygos accessoria +http://purl.obolibrary.org/obo/UBERON_0006665,accessory hemiazygos vein,vena hemiazygos accessoria +http://purl.obolibrary.org/obo/UBERON_0006666,great cerebral vein,great cerebral vein +http://purl.obolibrary.org/obo/UBERON_0006666,great cerebral vein,great cerebral vein of Galen +http://purl.obolibrary.org/obo/UBERON_0006666,great cerebral vein,vein of Galen +http://purl.obolibrary.org/obo/UBERON_0006667,pituitary fossa,cavity of hypophyseal fossa +http://purl.obolibrary.org/obo/UBERON_0006667,pituitary fossa,cavity of sella turcica +http://purl.obolibrary.org/obo/UBERON_0006667,pituitary fossa,hypophyseal fossa +http://purl.obolibrary.org/obo/UBERON_0006667,pituitary fossa,hypophysial fossa +http://purl.obolibrary.org/obo/UBERON_0006667,pituitary fossa,pituitary fossa +http://purl.obolibrary.org/obo/UBERON_0006668,carotid canal, +http://purl.obolibrary.org/obo/UBERON_0006669,alveolar canal, +http://purl.obolibrary.org/obo/UBERON_0006670,central tendon of diaphragm,central tendon +http://purl.obolibrary.org/obo/UBERON_0006670,central tendon of diaphragm,centrum tendineum +http://purl.obolibrary.org/obo/UBERON_0006670,central tendon of diaphragm,centrum tendineum diaphragmatis +http://purl.obolibrary.org/obo/UBERON_0006671,orbital fat pad,intraorbital fat pad +http://purl.obolibrary.org/obo/UBERON_0006671,orbital fat pad,orbital fat +http://purl.obolibrary.org/obo/UBERON_0006671,orbital fat pad,orbital fat body +http://purl.obolibrary.org/obo/UBERON_0006671,orbital fat pad,retrobulbar fat +http://purl.obolibrary.org/obo/UBERON_0006672,incisive canal,canales incisivi +http://purl.obolibrary.org/obo/UBERON_0006672,incisive canal,canalis incisivus +http://purl.obolibrary.org/obo/UBERON_0006673,mandibular canal, +http://purl.obolibrary.org/obo/UBERON_0006674,inguinal ring, +http://purl.obolibrary.org/obo/UBERON_0006675,venous valve,valve of vein +http://purl.obolibrary.org/obo/UBERON_0006676,muscularis mucosa,gut muscularis +http://purl.obolibrary.org/obo/UBERON_0006676,muscularis mucosa,lamina muscularis mucosa +http://purl.obolibrary.org/obo/UBERON_0006676,muscularis mucosa,laminar muscularis mucosa +http://purl.obolibrary.org/obo/UBERON_0006676,muscularis mucosa,muscularis mucosae +http://purl.obolibrary.org/obo/UBERON_0006677,surface of epithelium,epithelium surface +http://purl.obolibrary.org/obo/UBERON_0006678,foramen secundum,ostium secundum +http://purl.obolibrary.org/obo/UBERON_0006679,carina of trachea,carina tracheae +http://purl.obolibrary.org/obo/UBERON_0006679,carina of trachea,tracheal carina +http://purl.obolibrary.org/obo/UBERON_0006680,trachealis,tracheal muscle +http://purl.obolibrary.org/obo/UBERON_0006680,trachealis,trachealis muscle +http://purl.obolibrary.org/obo/UBERON_0006681,interthalamic adhesion,interthalamic connection +http://purl.obolibrary.org/obo/UBERON_0006681,interthalamic adhesion,middle commissure +http://purl.obolibrary.org/obo/UBERON_0006682,hypoglossal canal, +http://purl.obolibrary.org/obo/UBERON_0006683,posterior fontanelle,fonticulus posterior +http://purl.obolibrary.org/obo/UBERON_0006683,posterior fontanelle,occipital fontanelle +http://purl.obolibrary.org/obo/UBERON_0006683,posterior fontanelle,posterior fontanelle of skull +http://purl.obolibrary.org/obo/UBERON_0006684,sphenoidal fontanelle, +http://purl.obolibrary.org/obo/UBERON_0006685,pharyngeal tubercle, +http://purl.obolibrary.org/obo/UBERON_0006686,spinal vein,vena spinalis +http://purl.obolibrary.org/obo/UBERON_0006687,median sacral vein, +http://purl.obolibrary.org/obo/UBERON_0006688,sublingual caruncle, +http://purl.obolibrary.org/obo/UBERON_0006689,frenulum of tongue,frenulum linguae +http://purl.obolibrary.org/obo/UBERON_0006689,frenulum of tongue,frenulum linguæ +http://purl.obolibrary.org/obo/UBERON_0006689,frenulum of tongue,frenulum of the tongue +http://purl.obolibrary.org/obo/UBERON_0006689,frenulum of tongue,lingual frenulum +http://purl.obolibrary.org/obo/UBERON_0006689,frenulum of tongue,tongue frenulum +http://purl.obolibrary.org/obo/UBERON_0006690,deep dorsal vein of clitoris, +http://purl.obolibrary.org/obo/UBERON_0006691,tentorium cerebelli,cerebellar tentorium +http://purl.obolibrary.org/obo/UBERON_0006692,vertebral canal, +http://purl.obolibrary.org/obo/UBERON_0006694,cerebellum vasculature, +http://purl.obolibrary.org/obo/UBERON_0006695,mammillary axonal complex, +http://purl.obolibrary.org/obo/UBERON_0006696,mammillothalamic axonal tract,fasciculus mammillothalamicus +http://purl.obolibrary.org/obo/UBERON_0006696,mammillothalamic axonal tract,mammillothalamic fasciculus +http://purl.obolibrary.org/obo/UBERON_0006696,mammillothalamic axonal tract,mammillothalamic tract +http://purl.obolibrary.org/obo/UBERON_0006696,mammillothalamic axonal tract,vicq d'azyr's bundle +http://purl.obolibrary.org/obo/UBERON_0006697,mammillotectal axonal tract, +http://purl.obolibrary.org/obo/UBERON_0006698,mammillotegmental axonal tract,Gudden tract +http://purl.obolibrary.org/obo/UBERON_0006698,mammillotegmental axonal tract,mammillotegmental fasciculus +http://purl.obolibrary.org/obo/UBERON_0006698,mammillotegmental axonal tract,mammillotegmental tract +http://purl.obolibrary.org/obo/UBERON_0006698,mammillotegmental axonal tract,mammillotegmental tract of hypothalamus +http://purl.obolibrary.org/obo/UBERON_0006698,mammillotegmental axonal tract,von Gudden's tract +http://purl.obolibrary.org/obo/UBERON_0006699,foramen cecum of tongue,Morand's foramen +http://purl.obolibrary.org/obo/UBERON_0006699,foramen cecum of tongue,Morgagni foramen +http://purl.obolibrary.org/obo/UBERON_0006699,foramen cecum of tongue,blind foramen of tongue +http://purl.obolibrary.org/obo/UBERON_0006699,foramen cecum of tongue,cecal foramen of tongue +http://purl.obolibrary.org/obo/UBERON_0006699,foramen cecum of tongue,ductus lingualis +http://purl.obolibrary.org/obo/UBERON_0006699,foramen cecum of tongue,foramen caecum linguae +http://purl.obolibrary.org/obo/UBERON_0006699,foramen cecum of tongue,foramen cecum of tongue +http://purl.obolibrary.org/obo/UBERON_0006699,foramen cecum of tongue,foramen of Morgagni +http://purl.obolibrary.org/obo/UBERON_0006713,foramen cecum of frontal bone, +http://purl.obolibrary.org/obo/UBERON_0006714,tibiofibula,tibia-fibula +http://purl.obolibrary.org/obo/UBERON_0006714,tibiofibula,tibiofibula +http://purl.obolibrary.org/obo/UBERON_0006715,radio-ulna,radioulna +http://purl.obolibrary.org/obo/UBERON_0006715,radio-ulna,radius+ulna +http://purl.obolibrary.org/obo/UBERON_0006715,radio-ulna,radius-ulna +http://purl.obolibrary.org/obo/UBERON_0006716,mesopodium region,carpus/tarsus +http://purl.obolibrary.org/obo/UBERON_0006716,mesopodium region,mesopodial limb segment +http://purl.obolibrary.org/obo/UBERON_0006716,mesopodium region,mesopodial segment +http://purl.obolibrary.org/obo/UBERON_0006717,autopodial skeleton,autopod skeleton +http://purl.obolibrary.org/obo/UBERON_0006717,autopodial skeleton,autopodial skeleton +http://purl.obolibrary.org/obo/UBERON_0006717,autopodial skeleton,skeletal parts of autopod +http://purl.obolibrary.org/obo/UBERON_0006717,autopodial skeleton,skeleton of autopod +http://purl.obolibrary.org/obo/UBERON_0006718,medial pterygoid muscle,musculus pterygoideus internus +http://purl.obolibrary.org/obo/UBERON_0006718,medial pterygoid muscle,musculus pterygoideus medialis +http://purl.obolibrary.org/obo/UBERON_0006718,medial pterygoid muscle,pterygoid medialis +http://purl.obolibrary.org/obo/UBERON_0006718,medial pterygoid muscle,pterygoideus medial +http://purl.obolibrary.org/obo/UBERON_0006718,medial pterygoid muscle,pterygoideus medialis +http://purl.obolibrary.org/obo/UBERON_0006719,lateral pterygoid muscle,external pterygoid muscle +http://purl.obolibrary.org/obo/UBERON_0006719,lateral pterygoid muscle,lateral pteregoid +http://purl.obolibrary.org/obo/UBERON_0006719,lateral pterygoid muscle,lateral pteregoid muscle +http://purl.obolibrary.org/obo/UBERON_0006719,lateral pterygoid muscle,lateral pterygoid +http://purl.obolibrary.org/obo/UBERON_0006719,lateral pterygoid muscle,m. pterygoideus externus +http://purl.obolibrary.org/obo/UBERON_0006719,lateral pterygoid muscle,m. pterygoideus lateralis +http://purl.obolibrary.org/obo/UBERON_0006719,lateral pterygoid muscle,musculus pterygoides lateralis +http://purl.obolibrary.org/obo/UBERON_0006719,lateral pterygoid muscle,musculus pterygoideus externus +http://purl.obolibrary.org/obo/UBERON_0006719,lateral pterygoid muscle,musculus pterygoideus lateralis +http://purl.obolibrary.org/obo/UBERON_0006719,lateral pterygoid muscle,pterygoideus externus +http://purl.obolibrary.org/obo/UBERON_0006719,lateral pterygoid muscle,pterygoideus externus muscle +http://purl.obolibrary.org/obo/UBERON_0006719,lateral pterygoid muscle,pterygoideus lateral +http://purl.obolibrary.org/obo/UBERON_0006719,lateral pterygoid muscle,pterygoideus lateral muscle +http://purl.obolibrary.org/obo/UBERON_0006720,pterygoid muscle, +http://purl.obolibrary.org/obo/UBERON_0006721,alisphenoid bone,ala major (os sphenoidale) +http://purl.obolibrary.org/obo/UBERON_0006721,alisphenoid bone,alisphenoid bone +http://purl.obolibrary.org/obo/UBERON_0006721,alisphenoid bone,greater wing of sphenoid +http://purl.obolibrary.org/obo/UBERON_0006721,alisphenoid bone,greater wing of sphenoidal bone +http://purl.obolibrary.org/obo/UBERON_0006722,manubrium of malleus,malleus handle +http://purl.obolibrary.org/obo/UBERON_0006722,manubrium of malleus,manubrium of malleus +http://purl.obolibrary.org/obo/UBERON_0006723,cochlear modiolus,cochlea modiolus +http://purl.obolibrary.org/obo/UBERON_0006723,cochlear modiolus,modiolus cochleae +http://purl.obolibrary.org/obo/UBERON_0006723,cochlear modiolus,modiolus of cochlea +http://purl.obolibrary.org/obo/UBERON_0006724,osseus spiral lamina,lamina modioli cochleae +http://purl.obolibrary.org/obo/UBERON_0006724,osseus spiral lamina,lamina of modiolus cochleae +http://purl.obolibrary.org/obo/UBERON_0006724,osseus spiral lamina,lamina of modiolus of cochlea +http://purl.obolibrary.org/obo/UBERON_0006724,osseus spiral lamina,osseous spiral lamina +http://purl.obolibrary.org/obo/UBERON_0006724,osseus spiral lamina,osseous spiral lamina of cochlea +http://purl.obolibrary.org/obo/UBERON_0006724,osseus spiral lamina,spiral lamina of modiolus +http://purl.obolibrary.org/obo/UBERON_0006725,spiral ligament,ligamentum spirale ductus cochlearis +http://purl.obolibrary.org/obo/UBERON_0006725,spiral ligament,spiral cochlear ligament +http://purl.obolibrary.org/obo/UBERON_0006725,spiral ligament,spiral ligament of cochlea +http://purl.obolibrary.org/obo/UBERON_0006725,spiral ligament,spiral ligament of cochlear duct +http://purl.obolibrary.org/obo/UBERON_0006726,outer canthus,lateral canthus of eye +http://purl.obolibrary.org/obo/UBERON_0006726,outer canthus,lateral palpebral commissure +http://purl.obolibrary.org/obo/UBERON_0006727,liver left lateral lobe,lateral segment of left lobe of liver +http://purl.obolibrary.org/obo/UBERON_0006727,liver left lateral lobe,lateral segment of liver +http://purl.obolibrary.org/obo/UBERON_0006727,liver left lateral lobe,segmentum laterale (lobus hepatis sinister) +http://purl.obolibrary.org/obo/UBERON_0006728,liver left medial lobe,medial segment of left lobe of liver +http://purl.obolibrary.org/obo/UBERON_0006728,liver left medial lobe,medial segment of liver +http://purl.obolibrary.org/obo/UBERON_0006728,liver left medial lobe,segmentum mediale (lobus hepatis sinister) +http://purl.obolibrary.org/obo/UBERON_0006729,liver perisinusoidal space,Disse's space +http://purl.obolibrary.org/obo/UBERON_0006729,liver perisinusoidal space,hepatic perisinusoidal space +http://purl.obolibrary.org/obo/UBERON_0006729,liver perisinusoidal space,perisinusoidal space of Disse +http://purl.obolibrary.org/obo/UBERON_0006729,liver perisinusoidal space,space of Disse +http://purl.obolibrary.org/obo/UBERON_0006729,liver perisinusoidal space,spatium perisinusoideum +http://purl.obolibrary.org/obo/UBERON_0006742,canthus,palpebral commissure +http://purl.obolibrary.org/obo/UBERON_0006743,paleodentate of dentate nucleus,PDT +http://purl.obolibrary.org/obo/UBERON_0006743,paleodentate of dentate nucleus,paleodentate of dentate nucleus +http://purl.obolibrary.org/obo/UBERON_0006743,paleodentate of dentate nucleus,paleodentate part of dentate nucleus +http://purl.obolibrary.org/obo/UBERON_0006743,paleodentate of dentate nucleus,paleodentate portion of dentate nucleus +http://purl.obolibrary.org/obo/UBERON_0006749,superior parathyroid gland,parathyroid 4 +http://purl.obolibrary.org/obo/UBERON_0006749,superior parathyroid gland,parathyroid IV +http://purl.obolibrary.org/obo/UBERON_0006755,inferior parathyroid gland,inferior parathyroid +http://purl.obolibrary.org/obo/UBERON_0006755,inferior parathyroid gland,parathyroid 3 +http://purl.obolibrary.org/obo/UBERON_0006755,inferior parathyroid gland,parathyroid III +http://purl.obolibrary.org/obo/UBERON_0006756,median lingual swelling,median lingual swelling +http://purl.obolibrary.org/obo/UBERON_0006756,median lingual swelling,median tongue bud +http://purl.obolibrary.org/obo/UBERON_0006756,median lingual swelling,tuberculum impar +http://purl.obolibrary.org/obo/UBERON_0006756,median lingual swelling,tuberculum linguale mediale +http://purl.obolibrary.org/obo/UBERON_0006757,lateral lingual swelling, +http://purl.obolibrary.org/obo/UBERON_0006761,corneo-scleral junction,cornea limbus +http://purl.obolibrary.org/obo/UBERON_0006761,corneo-scleral junction,corneal limbus +http://purl.obolibrary.org/obo/UBERON_0006761,corneo-scleral junction,corneal-scleral limbus +http://purl.obolibrary.org/obo/UBERON_0006761,corneo-scleral junction,corneoscleral junction +http://purl.obolibrary.org/obo/UBERON_0006761,corneo-scleral junction,limbus corneae +http://purl.obolibrary.org/obo/UBERON_0006761,corneo-scleral junction,sclerocorneal junction +http://purl.obolibrary.org/obo/UBERON_0006761,corneo-scleral junction,sclerocorneal limbus +http://purl.obolibrary.org/obo/UBERON_0006762,suspensory ligament of lens,Zinn's membrane +http://purl.obolibrary.org/obo/UBERON_0006762,suspensory ligament of lens,ciliary zonule +http://purl.obolibrary.org/obo/UBERON_0006762,suspensory ligament of lens,zonule of Zinn +http://purl.obolibrary.org/obo/UBERON_0006762,suspensory ligament of lens,zonules +http://purl.obolibrary.org/obo/UBERON_0006763,epithelium of conjunctiva,conjunctiva epithelium +http://purl.obolibrary.org/obo/UBERON_0006763,epithelium of conjunctiva,conjunctival epithelium +http://purl.obolibrary.org/obo/UBERON_0006764,anterior communicating artery, +http://purl.obolibrary.org/obo/UBERON_0006765,left anterior vena cava,left superior vena cava +http://purl.obolibrary.org/obo/UBERON_0006766,right anterior vena cava,right superior vena cava +http://purl.obolibrary.org/obo/UBERON_0006767,head of femur,acetabular head +http://purl.obolibrary.org/obo/UBERON_0006767,head of femur,femoral head +http://purl.obolibrary.org/obo/UBERON_0006767,head of femur,kopf des Schenkelbeins +http://purl.obolibrary.org/obo/UBERON_0006768,epiphyseal line,epiphysial junction +http://purl.obolibrary.org/obo/UBERON_0006768,epiphyseal line,line of bony union +http://purl.obolibrary.org/obo/UBERON_0006770,apophysis, +http://purl.obolibrary.org/obo/UBERON_0006771,long bone epiphyseal plate proliferative zone,epiphyseal plate proliferative zone +http://purl.obolibrary.org/obo/UBERON_0006772,long bone epiphyseal plate hypertrophic zone,epiphyseal plate hypertrophic zone +http://purl.obolibrary.org/obo/UBERON_0006773,long bone epiphyseal plate ossification zone,epiphyseal plate ossification zone +http://purl.obolibrary.org/obo/UBERON_0006775,zone of epiphyseal plate, +http://purl.obolibrary.org/obo/UBERON_0006776,annular epiphysis,anular epiphysis +http://purl.obolibrary.org/obo/UBERON_0006777,tectal plate,lamina quadrigemina +http://purl.obolibrary.org/obo/UBERON_0006777,tectal plate,quadrigeminal plate +http://purl.obolibrary.org/obo/UBERON_0006779,superficial white layer of superior colliculus,lamina III of superior colliculus +http://purl.obolibrary.org/obo/UBERON_0006779,superficial white layer of superior colliculus,lamina colliculi superioris iii +http://purl.obolibrary.org/obo/UBERON_0006779,superficial white layer of superior colliculus,layer III of superior colliculus +http://purl.obolibrary.org/obo/UBERON_0006779,superficial white layer of superior colliculus,optic layer +http://purl.obolibrary.org/obo/UBERON_0006779,superficial white layer of superior colliculus,optic layer of superior colliculus +http://purl.obolibrary.org/obo/UBERON_0006779,superficial white layer of superior colliculus,stratum opticum colliculi superioris +http://purl.obolibrary.org/obo/UBERON_0006780,zonal layer of superior colliculus,lamina I of superior colliculus +http://purl.obolibrary.org/obo/UBERON_0006780,zonal layer of superior colliculus,lamina colliculi superioris I +http://purl.obolibrary.org/obo/UBERON_0006780,zonal layer of superior colliculus,layer I of superior colliculus +http://purl.obolibrary.org/obo/UBERON_0006780,zonal layer of superior colliculus,stratum zonale colliculi superioris +http://purl.obolibrary.org/obo/UBERON_0006780,zonal layer of superior colliculus,stratum zonale of midbrain +http://purl.obolibrary.org/obo/UBERON_0006780,zonal layer of superior colliculus,stratum zonale of superior colliculus +http://purl.obolibrary.org/obo/UBERON_0006782,stratum lemnisci of superior colliculus, +http://purl.obolibrary.org/obo/UBERON_0006783,layer of superior colliculus,cytoarchitectural part of superior colliculus +http://purl.obolibrary.org/obo/UBERON_0006783,layer of superior colliculus,layer of optic tectum +http://purl.obolibrary.org/obo/UBERON_0006783,layer of superior colliculus,tectal layer +http://purl.obolibrary.org/obo/UBERON_0006785,gray matter layer of superior colliculus,gray matter of superior colliculus +http://purl.obolibrary.org/obo/UBERON_0006786,white matter of superior colliculus,predominantly white regional part of superior colliculus +http://purl.obolibrary.org/obo/UBERON_0006786,white matter of superior colliculus,white matter layer of superior colliculus +http://purl.obolibrary.org/obo/UBERON_0006787,middle white layer of superior colliculus,intermediate white layer +http://purl.obolibrary.org/obo/UBERON_0006787,middle white layer of superior colliculus,intermediate white layer of superior colliculus +http://purl.obolibrary.org/obo/UBERON_0006787,middle white layer of superior colliculus,lamina V of superior colliculus +http://purl.obolibrary.org/obo/UBERON_0006787,middle white layer of superior colliculus,lamina colliculi superioris v +http://purl.obolibrary.org/obo/UBERON_0006787,middle white layer of superior colliculus,layer V of superior colliculus +http://purl.obolibrary.org/obo/UBERON_0006787,middle white layer of superior colliculus,stratum album intermediale of superior colliculus +http://purl.obolibrary.org/obo/UBERON_0006787,middle white layer of superior colliculus,stratum medullare intermedium colliculi superioris +http://purl.obolibrary.org/obo/UBERON_0006788,middle gray layer of superior colliculus,intermediate gray layer +http://purl.obolibrary.org/obo/UBERON_0006788,middle gray layer of superior colliculus,intermediate grey layer of superior colliculus +http://purl.obolibrary.org/obo/UBERON_0006788,middle gray layer of superior colliculus,lamina IV of superior colliculus +http://purl.obolibrary.org/obo/UBERON_0006788,middle gray layer of superior colliculus,lamina colliculi superioris iv +http://purl.obolibrary.org/obo/UBERON_0006788,middle gray layer of superior colliculus,layer IV of superior colliculus +http://purl.obolibrary.org/obo/UBERON_0006788,middle gray layer of superior colliculus,stratum griseum intermediale +http://purl.obolibrary.org/obo/UBERON_0006788,middle gray layer of superior colliculus,stratum griseum intermediale of superior colliculus +http://purl.obolibrary.org/obo/UBERON_0006788,middle gray layer of superior colliculus,stratum griseum intermedium colliculi superioris +http://purl.obolibrary.org/obo/UBERON_0006788,middle gray layer of superior colliculus,stratum griseum mediale +http://purl.obolibrary.org/obo/UBERON_0006789,deep gray layer of superior colliculus,deep grey layer of superior colliculus +http://purl.obolibrary.org/obo/UBERON_0006789,deep gray layer of superior colliculus,lamina VI of superior colliculus +http://purl.obolibrary.org/obo/UBERON_0006789,deep gray layer of superior colliculus,lamina colliculi superioris vi +http://purl.obolibrary.org/obo/UBERON_0006789,deep gray layer of superior colliculus,layer VI of superior colliculus +http://purl.obolibrary.org/obo/UBERON_0006789,deep gray layer of superior colliculus,stratum griseum profundum +http://purl.obolibrary.org/obo/UBERON_0006789,deep gray layer of superior colliculus,stratum griseum profundum colliculi superioris +http://purl.obolibrary.org/obo/UBERON_0006789,deep gray layer of superior colliculus,stratum griseum profundum of superior colliculus +http://purl.obolibrary.org/obo/UBERON_0006790,deep white layer of superior colliculus,lamina VII of superior colliculus +http://purl.obolibrary.org/obo/UBERON_0006790,deep white layer of superior colliculus,lamina colliculi superioris vii +http://purl.obolibrary.org/obo/UBERON_0006790,deep white layer of superior colliculus,layer VII of superior colliculus +http://purl.obolibrary.org/obo/UBERON_0006790,deep white layer of superior colliculus,stratum album profundum +http://purl.obolibrary.org/obo/UBERON_0006790,deep white layer of superior colliculus,stratum album profundum of superior colliculus +http://purl.obolibrary.org/obo/UBERON_0006790,deep white layer of superior colliculus,stratum medullare profundum colliculi superioris +http://purl.obolibrary.org/obo/UBERON_0006791,superficial layer of superior colliculus,superficial gray and white zone +http://purl.obolibrary.org/obo/UBERON_0006792,intermediate layer of superior colliculus,central zone of the optic tectum +http://purl.obolibrary.org/obo/UBERON_0006793,deep layer of superior colliculus, +http://purl.obolibrary.org/obo/UBERON_0006794,visual processing part of nervous system,optic lobe +http://purl.obolibrary.org/obo/UBERON_0006795,arthropod optic lobe, +http://purl.obolibrary.org/obo/UBERON_0006796,cephalopod optic lobe, +http://purl.obolibrary.org/obo/UBERON_0006798,efferent nerve,nervus efferente +http://purl.obolibrary.org/obo/UBERON_0006799,glandular epithelium, +http://purl.obolibrary.org/obo/UBERON_0006800,anatomical line, +http://purl.obolibrary.org/obo/UBERON_0006801,proximal head of humerus,head of humerus +http://purl.obolibrary.org/obo/UBERON_0006802,acetabular rim, +http://purl.obolibrary.org/obo/UBERON_0006803,obturator foramen,foramen obturatorium +http://purl.obolibrary.org/obo/UBERON_0006804,reticular tissue,reticular connective tissue +http://purl.obolibrary.org/obo/UBERON_0006804,reticular tissue,textus connectivus reticularis +http://purl.obolibrary.org/obo/UBERON_0006805,sternal end of clavicle,extremitas sternalis (clavicula) +http://purl.obolibrary.org/obo/UBERON_0006805,sternal end of clavicle,extremitas sternalis claviculae +http://purl.obolibrary.org/obo/UBERON_0006805,sternal end of clavicle,medial end of clavicle +http://purl.obolibrary.org/obo/UBERON_0006806,entepicondyle of humerus,entepicondyle +http://purl.obolibrary.org/obo/UBERON_0006807,ectepicondyle of humerus,epicondylus lateralis (humerus) +http://purl.obolibrary.org/obo/UBERON_0006810,olecranon,olecranon process of ulna +http://purl.obolibrary.org/obo/UBERON_0006811,occipital condyle, +http://purl.obolibrary.org/obo/UBERON_0006812,mental foramen,mental foramina +http://purl.obolibrary.org/obo/UBERON_0006813,nasal skeleton,skeleton of nose +http://purl.obolibrary.org/obo/UBERON_0006815,areolar connective tissue,loose areolar connective tissue +http://purl.obolibrary.org/obo/UBERON_0006820,body of sternum,gladiolus of sternum +http://purl.obolibrary.org/obo/UBERON_0006820,body of sternum,mesosternum +http://purl.obolibrary.org/obo/UBERON_0006820,body of sternum,sternal body +http://purl.obolibrary.org/obo/UBERON_0006820,body of sternum,sternum body +http://purl.obolibrary.org/obo/UBERON_0006821,cutaneous muscle, +http://purl.obolibrary.org/obo/UBERON_0006822,proximal epiphysis of ulna,caput ulnae +http://purl.obolibrary.org/obo/UBERON_0006822,proximal epiphysis of ulna,head of ulna +http://purl.obolibrary.org/obo/UBERON_0006822,proximal epiphysis of ulna,proximal end of ulna +http://purl.obolibrary.org/obo/UBERON_0006822,proximal epiphysis of ulna,upper end of ulna +http://purl.obolibrary.org/obo/UBERON_0006828,trabecula carnea of atrium, +http://purl.obolibrary.org/obo/UBERON_0006829,remnant of left anterior vena cava, +http://purl.obolibrary.org/obo/UBERON_0006831,pre-tracheal muscle,pretracheal muscle +http://purl.obolibrary.org/obo/UBERON_0006832,lumen of open tracheal system trachea, +http://purl.obolibrary.org/obo/UBERON_0006833,lumen of trachea,lumen of cartilaginous trachea +http://purl.obolibrary.org/obo/UBERON_0006833,lumen of trachea,tracheal lumen +http://purl.obolibrary.org/obo/UBERON_0006834,uterus or analog, +http://purl.obolibrary.org/obo/UBERON_0006836,medial tibial tarsal bone, +http://purl.obolibrary.org/obo/UBERON_0006837,tegmen tympani,paries tegmentalis cavi tympani +http://purl.obolibrary.org/obo/UBERON_0006837,tegmen tympani,tegmental roof of tympanic cavity +http://purl.obolibrary.org/obo/UBERON_0006837,tegmen tympani,tegmental wall of tympanic cavity +http://purl.obolibrary.org/obo/UBERON_0006838,ventral ramus of spinal nerve,anterior primary ramus of spinal nerve +http://purl.obolibrary.org/obo/UBERON_0006838,ventral ramus of spinal nerve,anterior ramus of spinal nerve +http://purl.obolibrary.org/obo/UBERON_0006838,ventral ramus of spinal nerve,ventral ramus of spinal nerve +http://purl.obolibrary.org/obo/UBERON_0006839,dorsal ramus of spinal nerve,posterior primary ramus +http://purl.obolibrary.org/obo/UBERON_0006839,dorsal ramus of spinal nerve,posterior ramus of spinal nerve +http://purl.obolibrary.org/obo/UBERON_0006839,dorsal ramus of spinal nerve,ramus posterior nervi spinalis +http://purl.obolibrary.org/obo/UBERON_0006840,nucleus of lateral lemniscus,lateral lemniscus nuclei +http://purl.obolibrary.org/obo/UBERON_0006840,nucleus of lateral lemniscus,lateral lemniscus nucleus +http://purl.obolibrary.org/obo/UBERON_0006840,nucleus of lateral lemniscus,nuclei lemnisci lateralis +http://purl.obolibrary.org/obo/UBERON_0006840,nucleus of lateral lemniscus,nuclei of lateral lemniscus +http://purl.obolibrary.org/obo/UBERON_0006840,nucleus of lateral lemniscus,nucleus of the lateral lemniscus +http://purl.obolibrary.org/obo/UBERON_0006840,nucleus of lateral lemniscus,set of nuclei of lateral lemniscus +http://purl.obolibrary.org/obo/UBERON_0006841,central vein of liver,terminal branch of hepatic vein +http://purl.obolibrary.org/obo/UBERON_0006841,central vein of liver,terminal hepatic venule +http://purl.obolibrary.org/obo/UBERON_0006841,central vein of liver,vena centralis (hepar) +http://purl.obolibrary.org/obo/UBERON_0006842,lymphatic capillary,lymph capillary +http://purl.obolibrary.org/obo/UBERON_0006843,root of cranial nerve,cranial nerve root +http://purl.obolibrary.org/obo/UBERON_0006843,root of cranial nerve,cranial neural root +http://purl.obolibrary.org/obo/UBERON_0006844,cusp of tooth,tooth cusp +http://purl.obolibrary.org/obo/UBERON_0006845,abductor muscle, +http://purl.obolibrary.org/obo/UBERON_0006846,surface groove, +http://purl.obolibrary.org/obo/UBERON_0006847,cerebellar commissure,commissura cerebelli +http://purl.obolibrary.org/obo/UBERON_0006847,cerebellar commissure,commissure of cerebellum +http://purl.obolibrary.org/obo/UBERON_0006848,posterior pretectal nucleus, +http://purl.obolibrary.org/obo/UBERON_0006849,scapula,scapulae +http://purl.obolibrary.org/obo/UBERON_0006851,renal cortex peritubular capillary,kidney cortex peritubular capillary +http://purl.obolibrary.org/obo/UBERON_0006853,renal cortex tubule,kidney cortex tubule +http://purl.obolibrary.org/obo/UBERON_0006854,distal straight tubule postmacula segment,cortical thick ascending limb of Henle's loop +http://purl.obolibrary.org/obo/UBERON_0006854,distal straight tubule postmacula segment,kidney cortex loop of Henle ascending limb thick segment +http://purl.obolibrary.org/obo/UBERON_0006854,distal straight tubule postmacula segment,renal cortex loop of Henle ascending limb thick segment +http://purl.obolibrary.org/obo/UBERON_0006854,distal straight tubule postmacula segment,renal cortex thick ascending limb +http://purl.obolibrary.org/obo/UBERON_0006855,muscular coat of ureter,muscular coat of ureter +http://purl.obolibrary.org/obo/UBERON_0006855,muscular coat of ureter,muscular layer of ureter +http://purl.obolibrary.org/obo/UBERON_0006855,muscular coat of ureter,muscularis of ureter +http://purl.obolibrary.org/obo/UBERON_0006855,muscular coat of ureter,tunica muscularis (ureter) +http://purl.obolibrary.org/obo/UBERON_0006855,muscular coat of ureter,tunica muscularis ureteris +http://purl.obolibrary.org/obo/UBERON_0006856,interrenal gland, +http://purl.obolibrary.org/obo/UBERON_0006857,interrenal primordium, +http://purl.obolibrary.org/obo/UBERON_0006858,adrenal/interrenal gland,adrenal - interrenal gland +http://purl.obolibrary.org/obo/UBERON_0006858,adrenal/interrenal gland,adrenal gland - interrenal gland +http://purl.obolibrary.org/obo/UBERON_0006858,adrenal/interrenal gland,adrenal gland/interrenal tissue +http://purl.obolibrary.org/obo/UBERON_0006858,adrenal/interrenal gland,suprarenal gland - interrenal gland +http://purl.obolibrary.org/obo/UBERON_0006859,swim bladder bud, +http://purl.obolibrary.org/obo/UBERON_0006860,swim bladder,gas bladder +http://purl.obolibrary.org/obo/UBERON_0006860,swim bladder,swimbladder +http://purl.obolibrary.org/obo/UBERON_0006861,diaphysis proper,body proper of long bone +http://purl.obolibrary.org/obo/UBERON_0006861,diaphysis proper,shaft proper of long bone +http://purl.obolibrary.org/obo/UBERON_0006862,diaphysis of femur,body of femur +http://purl.obolibrary.org/obo/UBERON_0006862,diaphysis of femur,corpus femoris +http://purl.obolibrary.org/obo/UBERON_0006862,diaphysis of femur,femoral diaphysis +http://purl.obolibrary.org/obo/UBERON_0006862,diaphysis of femur,femoral shaft +http://purl.obolibrary.org/obo/UBERON_0006862,diaphysis of femur,shaft of femur +http://purl.obolibrary.org/obo/UBERON_0006863,proximal metaphysis of femur, +http://purl.obolibrary.org/obo/UBERON_0006864,distal metaphysis of femur, +http://purl.obolibrary.org/obo/UBERON_0006865,metaphysis of femur,femoral metaphysis +http://purl.obolibrary.org/obo/UBERON_0006866,terminal part of digestive tract, +http://purl.obolibrary.org/obo/UBERON_0006867,anal part of perineum,anal triangle +http://purl.obolibrary.org/obo/UBERON_0006868,seminal fluid secreting gland, +http://purl.obolibrary.org/obo/UBERON_0006869,electric organ, +http://purl.obolibrary.org/obo/UBERON_0006870,endostyle, +http://purl.obolibrary.org/obo/UBERON_0006871,embryonic footplate, +http://purl.obolibrary.org/obo/UBERON_0006872,handplate apical ectodermal ridge, +http://purl.obolibrary.org/obo/UBERON_0006875,embryonic handplate,hand plate +http://purl.obolibrary.org/obo/UBERON_0006875,embryonic handplate,handplate +http://purl.obolibrary.org/obo/UBERON_0006876,vasculature of organ,organ vasculature +http://purl.obolibrary.org/obo/UBERON_0006876,vasculature of organ,set of blood vessels of organ +http://purl.obolibrary.org/obo/UBERON_0006877,vasculature of liver,hepatic vasculature +http://purl.obolibrary.org/obo/UBERON_0006878,decidua parietalis,decidual parietalis +http://purl.obolibrary.org/obo/UBERON_0006904,head mesenchyme from mesoderm,head mesenchyme derived from mesoderm +http://purl.obolibrary.org/obo/UBERON_0006904,head mesenchyme from mesoderm,head mesenchyme from head mesoderm +http://purl.obolibrary.org/obo/UBERON_0006904,head mesenchyme from mesoderm,head mesenchyme from mesoderm +http://purl.obolibrary.org/obo/UBERON_0006904,head mesenchyme from mesoderm,mesenchyme derived from head mesoderm +http://purl.obolibrary.org/obo/UBERON_0006904,head mesenchyme from mesoderm,mesenchyme from head mesoderm +http://purl.obolibrary.org/obo/UBERON_0006905,mandibular process mesenchyme,mesenchyme of mandibular process +http://purl.obolibrary.org/obo/UBERON_0006905,mandibular process mesenchyme,mesenchyme of mandibular prominence +http://purl.obolibrary.org/obo/UBERON_0006906,ala of nose,nasal ala +http://purl.obolibrary.org/obo/UBERON_0006907,slow muscle tissue,slow muscle +http://purl.obolibrary.org/obo/UBERON_0006907,slow muscle tissue,slow skeletal muscle tissue +http://purl.obolibrary.org/obo/UBERON_0006907,slow muscle tissue,slow-twitch skeletal muscle +http://purl.obolibrary.org/obo/UBERON_0006908,fast muscle tissue,fast muscle +http://purl.obolibrary.org/obo/UBERON_0006908,fast muscle tissue,fast skeletal muscle tissue +http://purl.obolibrary.org/obo/UBERON_0006909,lumen of digestive tract,digestive tract lumen +http://purl.obolibrary.org/obo/UBERON_0006909,lumen of digestive tract,gut cavity +http://purl.obolibrary.org/obo/UBERON_0006909,lumen of digestive tract,gut lumen +http://purl.obolibrary.org/obo/UBERON_0006909,lumen of digestive tract,lumen of alimentary tract +http://purl.obolibrary.org/obo/UBERON_0006909,lumen of digestive tract,lumen of digestive tract +http://purl.obolibrary.org/obo/UBERON_0006909,lumen of digestive tract,lumen of gut +http://purl.obolibrary.org/obo/UBERON_0006911,digestive system secreted substance,digestive system fluid or secretion +http://purl.obolibrary.org/obo/UBERON_0006912,urinary bladder muscularis mucosa,muscularis mucosa of urinary bladder +http://purl.obolibrary.org/obo/UBERON_0006913,lip epithelium, +http://purl.obolibrary.org/obo/UBERON_0006914,squamous epithelium, +http://purl.obolibrary.org/obo/UBERON_0006915,stratified squamous epithelium,epithelium stratificatum squamosum +http://purl.obolibrary.org/obo/UBERON_0006916,non-keratinized epithelium of tongue, +http://purl.obolibrary.org/obo/UBERON_0006918,parakeratinized epithelium of tongue,tongue parakeratinized epithelium +http://purl.obolibrary.org/obo/UBERON_0006919,tongue squamous epithelium,squamous epithelium of tongue +http://purl.obolibrary.org/obo/UBERON_0006920,esophagus squamous epithelium, +http://purl.obolibrary.org/obo/UBERON_0006921,stomach squamous epithelium, +http://purl.obolibrary.org/obo/UBERON_0006922,cervix squamous epithelium,cervical squamous epithelium +http://purl.obolibrary.org/obo/UBERON_0006923,vagina squamous epithelium,vaginal squamous epithelium +http://purl.obolibrary.org/obo/UBERON_0006924,stomach glandular epithelium, +http://purl.obolibrary.org/obo/UBERON_0006925,digestive system gland,digestive gland +http://purl.obolibrary.org/obo/UBERON_0006929,glandular columnar epithelium, +http://purl.obolibrary.org/obo/UBERON_0006930,glandular cuboidal epithelium, +http://purl.obolibrary.org/obo/UBERON_0006931,stomach glandular region mucosa,stomach glandular region glandular mucous membrane +http://purl.obolibrary.org/obo/UBERON_0006932,vestibular epithelium,epithelium of vestibular labyrinth +http://purl.obolibrary.org/obo/UBERON_0006932,vestibular epithelium,inner ear vestibular component epithelium +http://purl.obolibrary.org/obo/UBERON_0006932,vestibular epithelium,vestibular sensory epithelium +http://purl.obolibrary.org/obo/UBERON_0006934,sensory epithelium,neuroepithelium +http://purl.obolibrary.org/obo/UBERON_0006935,crista ampullaris neuroepithelium,epithelium of crista of ampulla of semicircular duct of membranous labyrinth +http://purl.obolibrary.org/obo/UBERON_0006936,thymus subcapsular epithelium, +http://purl.obolibrary.org/obo/UBERON_0006937,inner ear epithelium, +http://purl.obolibrary.org/obo/UBERON_0006938,pinna surface epithelium, +http://purl.obolibrary.org/obo/UBERON_0006946,efferent duct,efferent ductule +http://purl.obolibrary.org/obo/UBERON_0006946,efferent duct,seminal duct +http://purl.obolibrary.org/obo/UBERON_0006947,male genital duct,sperm duct +http://purl.obolibrary.org/obo/UBERON_0006947,male genital duct,sperm ducts +http://purl.obolibrary.org/obo/UBERON_0006948,efferent duct epithelium,epithelium of efferent ductule of testis +http://purl.obolibrary.org/obo/UBERON_0006949,cervical loop, +http://purl.obolibrary.org/obo/UBERON_0006950,stellate reticulum, +http://purl.obolibrary.org/obo/UBERON_0006951,inner dental epithelium,inner enamel epithelium +http://purl.obolibrary.org/obo/UBERON_0006952,outer dental epithelium,external dental epithelium +http://purl.obolibrary.org/obo/UBERON_0006952,outer dental epithelium,external enamel epithelium +http://purl.obolibrary.org/obo/UBERON_0006952,outer dental epithelium,outer enamel epithelium +http://purl.obolibrary.org/obo/UBERON_0006953,ejaculatory duct epithelium, +http://purl.obolibrary.org/obo/UBERON_0006954,mammary gland myoepithelium,lactiferous ductal myo-epithelium +http://purl.obolibrary.org/obo/UBERON_0006954,mammary gland myoepithelium,mammary myoepithelium +http://purl.obolibrary.org/obo/UBERON_0006954,mammary gland myoepithelium,myo-epithelium of lactiferous duct +http://purl.obolibrary.org/obo/UBERON_0006954,mammary gland myoepithelium,myoepithelium of lactiferous duct +http://purl.obolibrary.org/obo/UBERON_0006955,uterine epithelium, +http://purl.obolibrary.org/obo/UBERON_0006956,buccal mucosa, +http://purl.obolibrary.org/obo/UBERON_0006957,submandibular gland primordium epithelium, +http://purl.obolibrary.org/obo/UBERON_0006958,great vein of heart,great cardiac vein +http://purl.obolibrary.org/obo/UBERON_0006959,mandible angular process, +http://purl.obolibrary.org/obo/UBERON_0006960,ovary stroma,interstitial tissue of ovary +http://purl.obolibrary.org/obo/UBERON_0006960,ovary stroma,ovarian stroma +http://purl.obolibrary.org/obo/UBERON_0006960,ovary stroma,ovary stroma +http://purl.obolibrary.org/obo/UBERON_0006960,ovary stroma,stroma of the ovary +http://purl.obolibrary.org/obo/UBERON_0006960,ovary stroma,stroma ovarica +http://purl.obolibrary.org/obo/UBERON_0006964,pars distalis of adenohypophysis,distal part of hypophysis +http://purl.obolibrary.org/obo/UBERON_0006964,pars distalis of adenohypophysis,pars anterior of adenohypophysis +http://purl.obolibrary.org/obo/UBERON_0006964,pars distalis of adenohypophysis,pars distalis (glandula pituitaria) +http://purl.obolibrary.org/obo/UBERON_0006964,pars distalis of adenohypophysis,pars distalis adenohypophysis +http://purl.obolibrary.org/obo/UBERON_0006964,pars distalis of adenohypophysis,pars distalis of anterior lobe of pituitary gland +http://purl.obolibrary.org/obo/UBERON_0006964,pars distalis of adenohypophysis,pars glandularis of adenohypophysis +http://purl.obolibrary.org/obo/UBERON_0006965,vascular cord, +http://purl.obolibrary.org/obo/UBERON_0006966,coronary capillary,heart capillary +http://purl.obolibrary.org/obo/UBERON_0006967,horn, +http://purl.obolibrary.org/obo/UBERON_0006968,keratin sheath of horn, +http://purl.obolibrary.org/obo/UBERON_0006969,cranial appendage, +http://purl.obolibrary.org/obo/UBERON_0006970,bony core of horn, +http://purl.obolibrary.org/obo/UBERON_0006971,antler, +http://purl.obolibrary.org/obo/UBERON_0006972,nephridium, +http://purl.obolibrary.org/obo/UBERON_0006973,protonephridium, +http://purl.obolibrary.org/obo/UBERON_0006974,metanephridium, +http://purl.obolibrary.org/obo/UBERON_0006976,peptonephridium, +http://purl.obolibrary.org/obo/UBERON_0006983,anatomical point, +http://purl.obolibrary.org/obo/UBERON_0006984,anatomical surface, +http://purl.obolibrary.org/obo/UBERON_0007005,cardiogenic splanchnic mesoderm,cardiogenic splanchnopleure +http://purl.obolibrary.org/obo/UBERON_0007010,cleaving embryo, +http://purl.obolibrary.org/obo/UBERON_0007021,sexually immature organism,juvenile organism +http://purl.obolibrary.org/obo/UBERON_0007021,sexually immature organism,juveniles +http://purl.obolibrary.org/obo/UBERON_0007023,adult organism,adult +http://purl.obolibrary.org/obo/UBERON_0007023,adult organism,adults +http://purl.obolibrary.org/obo/UBERON_0007026,presumptive gut,future digestive tract +http://purl.obolibrary.org/obo/UBERON_0007026,presumptive gut,future digestive tube +http://purl.obolibrary.org/obo/UBERON_0007026,presumptive gut,future gut +http://purl.obolibrary.org/obo/UBERON_0007026,presumptive gut,primitive gut +http://purl.obolibrary.org/obo/UBERON_0007037,mechanosensory system, +http://purl.obolibrary.org/obo/UBERON_0007095,somatic musculature, +http://purl.obolibrary.org/obo/UBERON_0007097,chordo neural hinge,CNH +http://purl.obolibrary.org/obo/UBERON_0007097,chordo neural hinge,chordoneural hinge +http://purl.obolibrary.org/obo/UBERON_0007098,mandibular neural crest, +http://purl.obolibrary.org/obo/UBERON_0007099,hyoid neural crest,hyoid crest +http://purl.obolibrary.org/obo/UBERON_0007100,primary circulatory organ,adult heart +http://purl.obolibrary.org/obo/UBERON_0007100,primary circulatory organ,dorsal tube +http://purl.obolibrary.org/obo/UBERON_0007100,primary circulatory organ,heart +http://purl.obolibrary.org/obo/UBERON_0007105,vitelline duct, +http://purl.obolibrary.org/obo/UBERON_0007106,chorionic villus, +http://purl.obolibrary.org/obo/UBERON_0007108,vernix caseosa, +http://purl.obolibrary.org/obo/UBERON_0007109,meconium, +http://purl.obolibrary.org/obo/UBERON_0007111,Douglas' pouch,excavatio recto-uterina +http://purl.obolibrary.org/obo/UBERON_0007111,Douglas' pouch,excavatio rectouterina +http://purl.obolibrary.org/obo/UBERON_0007111,Douglas' pouch,pouch of douglas +http://purl.obolibrary.org/obo/UBERON_0007111,Douglas' pouch,recto-uterine pouch +http://purl.obolibrary.org/obo/UBERON_0007111,Douglas' pouch,rectouterine pouch +http://purl.obolibrary.org/obo/UBERON_0007113,venom, +http://purl.obolibrary.org/obo/UBERON_0007115,deciduous tooth,primary tooth +http://purl.obolibrary.org/obo/UBERON_0007115,deciduous tooth,temporary tooth +http://purl.obolibrary.org/obo/UBERON_0007116,primary dentition,baby teeth +http://purl.obolibrary.org/obo/UBERON_0007116,primary dentition,deciduous teeth +http://purl.obolibrary.org/obo/UBERON_0007116,primary dentition,dentes decidui +http://purl.obolibrary.org/obo/UBERON_0007116,primary dentition,milk teeth +http://purl.obolibrary.org/obo/UBERON_0007116,primary dentition,primary teeth +http://purl.obolibrary.org/obo/UBERON_0007116,primary dentition,set of deciduous teeth +http://purl.obolibrary.org/obo/UBERON_0007116,primary dentition,set of primary teeth +http://purl.obolibrary.org/obo/UBERON_0007116,primary dentition,tooth of primary dentition +http://purl.obolibrary.org/obo/UBERON_0007118,umbilicus,navel +http://purl.obolibrary.org/obo/UBERON_0007118,umbilicus,umbilical part of abdomen +http://purl.obolibrary.org/obo/UBERON_0007118,umbilicus,umbilical region +http://purl.obolibrary.org/obo/UBERON_0007119,neck of femur,femoral neck +http://purl.obolibrary.org/obo/UBERON_0007120,premolar tooth, +http://purl.obolibrary.org/obo/UBERON_0007121,skin nerve field, +http://purl.obolibrary.org/obo/UBERON_0007122,pharyngeal pouch 1,1st arch branchial pouch +http://purl.obolibrary.org/obo/UBERON_0007122,pharyngeal pouch 1,1st arch branchial pouch endoderm +http://purl.obolibrary.org/obo/UBERON_0007122,pharyngeal pouch 1,1st arch pouch endoderm +http://purl.obolibrary.org/obo/UBERON_0007122,pharyngeal pouch 1,1st branchial pouch +http://purl.obolibrary.org/obo/UBERON_0007122,pharyngeal pouch 1,1st pharyngeal pouch endoderm +http://purl.obolibrary.org/obo/UBERON_0007122,pharyngeal pouch 1,first arch pharyngeal pouch +http://purl.obolibrary.org/obo/UBERON_0007122,pharyngeal pouch 1,first visceral pouch +http://purl.obolibrary.org/obo/UBERON_0007122,pharyngeal pouch 1,hyomandibular pouch +http://purl.obolibrary.org/obo/UBERON_0007122,pharyngeal pouch 1,pharyngeal pouches 1 +http://purl.obolibrary.org/obo/UBERON_0007122,pharyngeal pouch 1,visceral pouch 1 +http://purl.obolibrary.org/obo/UBERON_0007123,pharyngeal pouch 2,2nd arch branchial pouch +http://purl.obolibrary.org/obo/UBERON_0007123,pharyngeal pouch 2,2nd arch branchial pouch endoderm +http://purl.obolibrary.org/obo/UBERON_0007123,pharyngeal pouch 2,2nd arch pouch endoderm +http://purl.obolibrary.org/obo/UBERON_0007123,pharyngeal pouch 2,2nd branchial pouch +http://purl.obolibrary.org/obo/UBERON_0007123,pharyngeal pouch 2,2nd pharyngeal pouch endoderm +http://purl.obolibrary.org/obo/UBERON_0007123,pharyngeal pouch 2,pharyngeal pouches 2 +http://purl.obolibrary.org/obo/UBERON_0007123,pharyngeal pouch 2,second arch pharyngeal pouch +http://purl.obolibrary.org/obo/UBERON_0007123,pharyngeal pouch 2,second visceral pouch +http://purl.obolibrary.org/obo/UBERON_0007123,pharyngeal pouch 2,visceral pouch 2 +http://purl.obolibrary.org/obo/UBERON_0007124,pharyngeal pouch 3,3rd arch branchial pouch +http://purl.obolibrary.org/obo/UBERON_0007124,pharyngeal pouch 3,3rd arch branchial pouch endoderm +http://purl.obolibrary.org/obo/UBERON_0007124,pharyngeal pouch 3,3rd branchial pouch +http://purl.obolibrary.org/obo/UBERON_0007124,pharyngeal pouch 3,3rd pharyngeal pouch endoderm +http://purl.obolibrary.org/obo/UBERON_0007124,pharyngeal pouch 3,pharyngeal pouches 3 +http://purl.obolibrary.org/obo/UBERON_0007124,pharyngeal pouch 3,third arch pharyngeal pouch +http://purl.obolibrary.org/obo/UBERON_0007124,pharyngeal pouch 3,third visceral pouch +http://purl.obolibrary.org/obo/UBERON_0007124,pharyngeal pouch 3,visceral pouch 3 +http://purl.obolibrary.org/obo/UBERON_0007125,pharyngeal pouch 4,4th arch branchial pouch +http://purl.obolibrary.org/obo/UBERON_0007125,pharyngeal pouch 4,4th arch branchial pouch endoderm +http://purl.obolibrary.org/obo/UBERON_0007125,pharyngeal pouch 4,4th branchial pouch +http://purl.obolibrary.org/obo/UBERON_0007125,pharyngeal pouch 4,4th pharyngeal pouch endoderm +http://purl.obolibrary.org/obo/UBERON_0007125,pharyngeal pouch 4,fourth arch pharyngeal pouch +http://purl.obolibrary.org/obo/UBERON_0007125,pharyngeal pouch 4,fourth branchial pouch +http://purl.obolibrary.org/obo/UBERON_0007125,pharyngeal pouch 4,fourth visceral pouch +http://purl.obolibrary.org/obo/UBERON_0007125,pharyngeal pouch 4,pharyngeal pouches 4 +http://purl.obolibrary.org/obo/UBERON_0007125,pharyngeal pouch 4,visceral pouch 4 +http://purl.obolibrary.org/obo/UBERON_0007126,pharyngeal pouch 5,5th branchial pouch +http://purl.obolibrary.org/obo/UBERON_0007126,pharyngeal pouch 5,fifth visceral pouch +http://purl.obolibrary.org/obo/UBERON_0007126,pharyngeal pouch 5,pharyngeal pouches 5 +http://purl.obolibrary.org/obo/UBERON_0007126,pharyngeal pouch 5,visceral pouch 5 +http://purl.obolibrary.org/obo/UBERON_0007127,pharyngeal pouch 6,6th arch branchial pouch +http://purl.obolibrary.org/obo/UBERON_0007127,pharyngeal pouch 6,6th branchial pouch +http://purl.obolibrary.org/obo/UBERON_0007127,pharyngeal pouch 6,pharyngeal pouches 6 +http://purl.obolibrary.org/obo/UBERON_0007127,pharyngeal pouch 6,sixth visceral pouch +http://purl.obolibrary.org/obo/UBERON_0007127,pharyngeal pouch 6,visceral pouch 6 +http://purl.obolibrary.org/obo/UBERON_0007128,glomeral mesenchyme, +http://purl.obolibrary.org/obo/UBERON_0007132,head kidney,anterior kidney +http://purl.obolibrary.org/obo/UBERON_0007132,head kidney,kidney marrow +http://purl.obolibrary.org/obo/UBERON_0007134,trunk ganglion,body ganglion +http://purl.obolibrary.org/obo/UBERON_0007134,trunk ganglion,trunk ganglia +http://purl.obolibrary.org/obo/UBERON_0007135,neural keel, +http://purl.obolibrary.org/obo/UBERON_0007136,rectouterine fold,fold of Douglas +http://purl.obolibrary.org/obo/UBERON_0007136,rectouterine fold,plica rectouterina +http://purl.obolibrary.org/obo/UBERON_0007136,rectouterine fold,posterior ligament of uterus +http://purl.obolibrary.org/obo/UBERON_0007136,rectouterine fold,recto-uterine fold +http://purl.obolibrary.org/obo/UBERON_0007136,rectouterine fold,rectovaginal fold +http://purl.obolibrary.org/obo/UBERON_0007140,parietal mesothelium, +http://purl.obolibrary.org/obo/UBERON_0007141,visceral mesothelium, +http://purl.obolibrary.org/obo/UBERON_0007142,left internal carotid artery,arteria caritis interna sinistra +http://purl.obolibrary.org/obo/UBERON_0007143,right internal carotid artery,arteria carotis interna dextra +http://purl.obolibrary.org/obo/UBERON_0007144,embryonic post-anal tail,embryo tail +http://purl.obolibrary.org/obo/UBERON_0007144,embryonic post-anal tail,tail of embryo +http://purl.obolibrary.org/obo/UBERON_0007145,dome of diaphragm,diaphragm dome +http://purl.obolibrary.org/obo/UBERON_0007146,posterior spinal artery,dorsal spinal artery +http://purl.obolibrary.org/obo/UBERON_0007147,lumen of midgut,midgut lumen +http://purl.obolibrary.org/obo/UBERON_0007148,lumen of hindgut,hindgut lumen +http://purl.obolibrary.org/obo/UBERON_0007149,inferior thyroid artery, +http://purl.obolibrary.org/obo/UBERON_0007150,superior thyroid artery, +http://purl.obolibrary.org/obo/UBERON_0007151,mitral valve leaflet,leaflet of mitral valve +http://purl.obolibrary.org/obo/UBERON_0007151,mitral valve leaflet,mitral valve leaflet +http://purl.obolibrary.org/obo/UBERON_0007151,mitral valve leaflet,mitral valvular leaflet +http://purl.obolibrary.org/obo/UBERON_0007152,inferior sagittal sinus, +http://purl.obolibrary.org/obo/UBERON_0007153,superior epigastric artery, +http://purl.obolibrary.org/obo/UBERON_0007154,inferior epigastric vein, +http://purl.obolibrary.org/obo/UBERON_0007155,superior epigastric vein, +http://purl.obolibrary.org/obo/UBERON_0007156,inferior thyroid vein,inferior thyroid venous tree +http://purl.obolibrary.org/obo/UBERON_0007156,inferior thyroid vein,vena thyroidea inferioris +http://purl.obolibrary.org/obo/UBERON_0007157,superior thyroid vein, +http://purl.obolibrary.org/obo/UBERON_0007158,lumen of anal canal,anal canal lumen +http://purl.obolibrary.org/obo/UBERON_0007159,lumen of colon,colon lumen +http://purl.obolibrary.org/obo/UBERON_0007160,inferior petrosal sinus,sinus petrosal inferior +http://purl.obolibrary.org/obo/UBERON_0007161,medial arcuate ligament, +http://purl.obolibrary.org/obo/UBERON_0007162,lateral arcuate ligament, +http://purl.obolibrary.org/obo/UBERON_0007163,superior nasal meatus, +http://purl.obolibrary.org/obo/UBERON_0007164,distal radio-ulnar joint,articulation radioulnaris distalis +http://purl.obolibrary.org/obo/UBERON_0007164,distal radio-ulnar joint,distal radioulnar joint +http://purl.obolibrary.org/obo/UBERON_0007164,distal radio-ulnar joint,inferior radioulnar joint +http://purl.obolibrary.org/obo/UBERON_0007165,proximal radio-ulnar joint,superior radioulnar joint +http://purl.obolibrary.org/obo/UBERON_0007166,left dome of diaphragm,left dome of diaphragm viewed radiologically +http://purl.obolibrary.org/obo/UBERON_0007167,right dome of diaphragm,right dome of diaphragm viewed radiologically +http://purl.obolibrary.org/obo/UBERON_0007168,long head of biceps brachii,caput longum (musculus biceps brachii) +http://purl.obolibrary.org/obo/UBERON_0007168,long head of biceps brachii,caput longum musculus bicipitis brachii +http://purl.obolibrary.org/obo/UBERON_0007169,short head of biceps brachii,caput breve (musculus biceps brachii) +http://purl.obolibrary.org/obo/UBERON_0007169,short head of biceps brachii,caput breve musculus bicipitis brachii +http://purl.obolibrary.org/obo/UBERON_0007170,squamous part of occipital bone,occipital squama +http://purl.obolibrary.org/obo/UBERON_0007170,squamous part of occipital bone,squama occipitalis +http://purl.obolibrary.org/obo/UBERON_0007170,squamous part of occipital bone,squama of occipital bone +http://purl.obolibrary.org/obo/UBERON_0007171,border of scapula,scapular border +http://purl.obolibrary.org/obo/UBERON_0007172,angle of scapula,scapular angle +http://purl.obolibrary.org/obo/UBERON_0007173,lateral border of scapula,axillary border of scapula +http://purl.obolibrary.org/obo/UBERON_0007173,lateral border of scapula,lateral border of scapula +http://purl.obolibrary.org/obo/UBERON_0007173,lateral border of scapula,margo lateralis (scapula) +http://purl.obolibrary.org/obo/UBERON_0007173,lateral border of scapula,margo lateralis scapulae +http://purl.obolibrary.org/obo/UBERON_0007174,medial border of scapula,margo medialis (scapula) +http://purl.obolibrary.org/obo/UBERON_0007174,medial border of scapula,margo medialis scapulae +http://purl.obolibrary.org/obo/UBERON_0007174,medial border of scapula,medial part of scapula +http://purl.obolibrary.org/obo/UBERON_0007174,medial border of scapula,vertebral border of scapula +http://purl.obolibrary.org/obo/UBERON_0007175,inferior angle of scapula,angulus inferior (scapula) +http://purl.obolibrary.org/obo/UBERON_0007175,inferior angle of scapula,angulus inferior scapulae +http://purl.obolibrary.org/obo/UBERON_0007176,superior angle of scapula,angulus superior (scapula) +http://purl.obolibrary.org/obo/UBERON_0007176,superior angle of scapula,angulus superior scapulae +http://purl.obolibrary.org/obo/UBERON_0007176,superior angle of scapula,medial angle of scapula +http://purl.obolibrary.org/obo/UBERON_0007176,superior angle of scapula,superior medial angle of scapula +http://purl.obolibrary.org/obo/UBERON_0007177,lamina propria of mucosa of colon,colonic lamina propria +http://purl.obolibrary.org/obo/UBERON_0007177,lamina propria of mucosa of colon,lamina propria mucosae of colon +http://purl.obolibrary.org/obo/UBERON_0007177,lamina propria of mucosa of colon,lamina propria of colonic mucosa +http://purl.obolibrary.org/obo/UBERON_0007177,lamina propria of mucosa of colon,lamina propria of colonic mucous membrane +http://purl.obolibrary.org/obo/UBERON_0007178,muscularis mucosae of colon,lamina muscularis of colonic mucosa +http://purl.obolibrary.org/obo/UBERON_0007178,muscularis mucosae of colon,lamina muscularis of colonic mucous membrane +http://purl.obolibrary.org/obo/UBERON_0007178,muscularis mucosae of colon,muscularis mucosa of colon +http://purl.obolibrary.org/obo/UBERON_0007179,basal cell layer of urothelium,basal cell layer of uroepithelium +http://purl.obolibrary.org/obo/UBERON_0007180,atretic follicle of ovary,atretic follicle +http://purl.obolibrary.org/obo/UBERON_0007180,atretic follicle of ovary,folliculus atreticus (ovarium) +http://purl.obolibrary.org/obo/UBERON_0007181,serosa of infundibulum of uterine tube,serosa of infundibulum of fallopian tube +http://purl.obolibrary.org/obo/UBERON_0007181,serosa of infundibulum of uterine tube,serosa of infundibulum of oviduct +http://purl.obolibrary.org/obo/UBERON_0007182,muscle layer of infundibulum of uterine tube,muscle layer of infundibulum of fallopian tube +http://purl.obolibrary.org/obo/UBERON_0007182,muscle layer of infundibulum of uterine tube,muscle layer of infundibulum of oviduct +http://purl.obolibrary.org/obo/UBERON_0007182,muscle layer of infundibulum of uterine tube,muscularis of infundibulum of uterine tube +http://purl.obolibrary.org/obo/UBERON_0007185,pericardio-peritoneal canal mesothelium, +http://purl.obolibrary.org/obo/UBERON_0007186,pericardial visceral mesothelium,mesothelium of visceral pericardium +http://purl.obolibrary.org/obo/UBERON_0007186,pericardial visceral mesothelium,mesothelium of visceral serous pericardium +http://purl.obolibrary.org/obo/UBERON_0007186,pericardial visceral mesothelium,visceral serous pericardium mesothelium +http://purl.obolibrary.org/obo/UBERON_0007187,pericardial parietal mesothelium,mesothelium of parietal pericardium +http://purl.obolibrary.org/obo/UBERON_0007187,pericardial parietal mesothelium,mesothelium of parietal serous pericardium +http://purl.obolibrary.org/obo/UBERON_0007187,pericardial parietal mesothelium,parietal serous pericardium mesothelium +http://purl.obolibrary.org/obo/UBERON_0007187,pericardial parietal mesothelium,pericardium parietal mesothelium +http://purl.obolibrary.org/obo/UBERON_0007188,mesothelium of serous pericardium,mesothelium of pericardium +http://purl.obolibrary.org/obo/UBERON_0007188,mesothelium of serous pericardium,pericardial mesothelium +http://purl.obolibrary.org/obo/UBERON_0007188,mesothelium of serous pericardium,serous pericardium mesothelium +http://purl.obolibrary.org/obo/UBERON_0007190,paracentral gyrus, +http://purl.obolibrary.org/obo/UBERON_0007191,anterior paracentral gyrus, +http://purl.obolibrary.org/obo/UBERON_0007192,posterior paracentral gyrus, +http://purl.obolibrary.org/obo/UBERON_0007193,orbital gyrus,orbital gyri +http://purl.obolibrary.org/obo/UBERON_0007194,vesicular gland, +http://purl.obolibrary.org/obo/UBERON_0007195,stroma of bone marrow,bone marrow stroma +http://purl.obolibrary.org/obo/UBERON_0007196,tracheobronchial tree,arbor tracheobronchialis +http://purl.obolibrary.org/obo/UBERON_0007196,tracheobronchial tree,tracheobronchial system +http://purl.obolibrary.org/obo/UBERON_0007197,hermaphroditic organism,dioecious organism +http://purl.obolibrary.org/obo/UBERON_0007197,hermaphroditic organism,hermaphrodite +http://purl.obolibrary.org/obo/UBERON_0007198,hermaphrodite anatomical structure, +http://purl.obolibrary.org/obo/UBERON_0007204,brachiocephalic vasculature, +http://purl.obolibrary.org/obo/UBERON_0007213,mesenchyme derived from head neural crest,head mesenchyme from cranial neural crest +http://purl.obolibrary.org/obo/UBERON_0007213,mesenchyme derived from head neural crest,head mesenchyme from neural crest +http://purl.obolibrary.org/obo/UBERON_0007213,mesenchyme derived from head neural crest,head neural crest derived mesenchyme +http://purl.obolibrary.org/obo/UBERON_0007214,mesenchyme derived from trunk neural crest,trunk mesenchyme from neural crest +http://purl.obolibrary.org/obo/UBERON_0007214,mesenchyme derived from trunk neural crest,trunk neural crest derived mesenchyme +http://purl.obolibrary.org/obo/UBERON_0007215,trabecula cranii,trabeculae cranii +http://purl.obolibrary.org/obo/UBERON_0007223,osseus cochlea, +http://purl.obolibrary.org/obo/UBERON_0007224,medial entorhinal cortex,"entorhinal area, medial part" +http://purl.obolibrary.org/obo/UBERON_0007225,lateral entorhinal cortex,"entorhinal area, lateral part" +http://purl.obolibrary.org/obo/UBERON_0007227,superior vestibular nucleus,nucleus of Bechterew +http://purl.obolibrary.org/obo/UBERON_0007228,vestibular nucleus,vestibular VIII nucleus +http://purl.obolibrary.org/obo/UBERON_0007228,vestibular nucleus,vestibular nucleus of acoustic nerve +http://purl.obolibrary.org/obo/UBERON_0007228,vestibular nucleus,vestibular nucleus of eighth cranial nerve +http://purl.obolibrary.org/obo/UBERON_0007230,lateral vestibular nucleus,Deiter's nucleus +http://purl.obolibrary.org/obo/UBERON_0007230,lateral vestibular nucleus,Deiters' nucleus +http://purl.obolibrary.org/obo/UBERON_0007230,lateral vestibular nucleus,lateral nucleus of Deiters +http://purl.obolibrary.org/obo/UBERON_0007230,lateral vestibular nucleus,nucleus of Deiters +http://purl.obolibrary.org/obo/UBERON_0007237,1st arch mandibular component,ventral pharyngeal arch 1 +http://purl.obolibrary.org/obo/UBERON_0007238,1st arch maxillary component, +http://purl.obolibrary.org/obo/UBERON_0007239,tunica media of artery,arterial media +http://purl.obolibrary.org/obo/UBERON_0007239,tunica media of artery,tunica media (arteriae) +http://purl.obolibrary.org/obo/UBERON_0007240,tunica adventitia of artery,arterial adventitia +http://purl.obolibrary.org/obo/UBERON_0007240,tunica adventitia of artery,tunica externa (adventitia)(arteriae) +http://purl.obolibrary.org/obo/UBERON_0007241,tunica adventitia of vein,tunica externa (adventitia)(venae) +http://purl.obolibrary.org/obo/UBERON_0007241,tunica adventitia of vein,venous adventitia +http://purl.obolibrary.org/obo/UBERON_0007242,tunica intima of vein,tunica interna (intima)(venae) +http://purl.obolibrary.org/obo/UBERON_0007242,tunica intima of vein,venous intima +http://purl.obolibrary.org/obo/UBERON_0007243,tunica media of vein,tunica media (venae) +http://purl.obolibrary.org/obo/UBERON_0007243,tunica media of vein,venous media +http://purl.obolibrary.org/obo/UBERON_0007244,inferior olivary nucleus, +http://purl.obolibrary.org/obo/UBERON_0007245,nuclear complex of neuraxis,cluster of neural nuclei +http://purl.obolibrary.org/obo/UBERON_0007245,nuclear complex of neuraxis,neural nuclei +http://purl.obolibrary.org/obo/UBERON_0007245,nuclear complex of neuraxis,nuclear complex +http://purl.obolibrary.org/obo/UBERON_0007247,nucleus of superior olivary complex,superior olivary complex nucleus +http://purl.obolibrary.org/obo/UBERON_0007249,dorsal accessory inferior olivary nucleus,DAO +http://purl.obolibrary.org/obo/UBERON_0007249,dorsal accessory inferior olivary nucleus,dorsal accessory olivary nucleus +http://purl.obolibrary.org/obo/UBERON_0007249,dorsal accessory inferior olivary nucleus,dorsal accessory olive +http://purl.obolibrary.org/obo/UBERON_0007249,dorsal accessory inferior olivary nucleus,"inferior olivary complex, dorsal accessory olive" +http://purl.obolibrary.org/obo/UBERON_0007249,dorsal accessory inferior olivary nucleus,"inferior olive, dorsal nucleus" +http://purl.obolibrary.org/obo/UBERON_0007249,dorsal accessory inferior olivary nucleus,nucleus olivaris accessorius posterior +http://purl.obolibrary.org/obo/UBERON_0007249,dorsal accessory inferior olivary nucleus,posterior accessory olivary nucleus +http://purl.obolibrary.org/obo/UBERON_0007250,lingual tonsil,lingual tonsillar tissue +http://purl.obolibrary.org/obo/UBERON_0007251,preoptic nucleus, +http://purl.obolibrary.org/obo/UBERON_0007252,intervertebral disk of cervical vertebra,cervical intervertebral disc +http://purl.obolibrary.org/obo/UBERON_0007252,intervertebral disk of cervical vertebra,intervertebral disc of cervical region +http://purl.obolibrary.org/obo/UBERON_0007254,intervertebral disk of thoracic vertebra,intervertebral disc of thoracic region +http://purl.obolibrary.org/obo/UBERON_0007255,intervertebral disk of lumbar vertebra,intervertebral disc of lumbar region +http://purl.obolibrary.org/obo/UBERON_0007257,intervertebral disk of sacral vertebra,intervertebral disc of sacral region +http://purl.obolibrary.org/obo/UBERON_0007260,intervertebral disk of third cervical vertebra,C3 intervertebral disk +http://purl.obolibrary.org/obo/UBERON_0007260,intervertebral disk of third cervical vertebra,"intervertebral disk, C3-C4" +http://purl.obolibrary.org/obo/UBERON_0007261,intervertebral disk of fourth cervical vertebra,intervertebral disc of fourth cervical vertebra +http://purl.obolibrary.org/obo/UBERON_0007261,intervertebral disk of fourth cervical vertebra,"intervertebral disk, C4-C5" +http://purl.obolibrary.org/obo/UBERON_0007262,intervertebral disk of fifth cervical vertebra,intervertebral disc of fifth cervical vertebra +http://purl.obolibrary.org/obo/UBERON_0007262,intervertebral disk of fifth cervical vertebra,"intervertebral disk, C5-C6" +http://purl.obolibrary.org/obo/UBERON_0007263,intervertebral disk of sixth cervical vertebra,"intervertebral disk, C6-C7" +http://purl.obolibrary.org/obo/UBERON_0007264,intervertebral disk of seventh cervical vertebra,"intervertebral disk, C7-T1" +http://purl.obolibrary.org/obo/UBERON_0007265,intervertebral disk of axis,C2 disk +http://purl.obolibrary.org/obo/UBERON_0007265,intervertebral disk of axis,C2 intervertebral disk +http://purl.obolibrary.org/obo/UBERON_0007265,intervertebral disk of axis,intervertebral disc of cervical vertebra 2 +http://purl.obolibrary.org/obo/UBERON_0007265,intervertebral disk of axis,intervertebral disc of second cervical vertebra +http://purl.obolibrary.org/obo/UBERON_0007265,intervertebral disk of axis,intervertebral disk of cervical vertebra 2 +http://purl.obolibrary.org/obo/UBERON_0007265,intervertebral disk of axis,intervertebral disk of second cervical vertebra +http://purl.obolibrary.org/obo/UBERON_0007265,intervertebral disk of axis,"intervertebral disk, C2-C3" +http://purl.obolibrary.org/obo/UBERON_0007265,intervertebral disk of axis,second cervical intervertebral disk +http://purl.obolibrary.org/obo/UBERON_0007266,intervertebral disk of atlas,C1 disk +http://purl.obolibrary.org/obo/UBERON_0007266,intervertebral disk of atlas,C1 intervertebral disk +http://purl.obolibrary.org/obo/UBERON_0007266,intervertebral disk of atlas,first cervical intervertebral disk +http://purl.obolibrary.org/obo/UBERON_0007266,intervertebral disk of atlas,intervertebral disc of cervical vertebra 1 +http://purl.obolibrary.org/obo/UBERON_0007266,intervertebral disk of atlas,intervertebral disc of first cervical vertebra +http://purl.obolibrary.org/obo/UBERON_0007266,intervertebral disk of atlas,intervertebral disk of cervical vertebra 1 +http://purl.obolibrary.org/obo/UBERON_0007266,intervertebral disk of atlas,intervertebral disk of first cervical vertebra +http://purl.obolibrary.org/obo/UBERON_0007266,intervertebral disk of atlas,"intervertebral disk, C1-C2" +http://purl.obolibrary.org/obo/UBERON_0007267,trachea pre-cartilage rings, +http://purl.obolibrary.org/obo/UBERON_0007268,upper esophageal sphincter,pharyngoesophageal sphincter +http://purl.obolibrary.org/obo/UBERON_0007268,upper esophageal sphincter,upper esophageal sphincter muscle +http://purl.obolibrary.org/obo/UBERON_0007268,upper esophageal sphincter,upper oesophageal sphincter +http://purl.obolibrary.org/obo/UBERON_0007269,pectoral appendage musculature, +http://purl.obolibrary.org/obo/UBERON_0007270,pelvic appendage musculature, +http://purl.obolibrary.org/obo/UBERON_0007271,appendage musculature, +http://purl.obolibrary.org/obo/UBERON_0007272,pectoral appendage skeleton, +http://purl.obolibrary.org/obo/UBERON_0007273,pelvic appendage skeleton, +http://purl.obolibrary.org/obo/UBERON_0007274,crista of ampulla of anterior semicircular duct of membranous laybrinth,anterior crista ampullaris +http://purl.obolibrary.org/obo/UBERON_0007274,crista of ampulla of anterior semicircular duct of membranous laybrinth,anterior cristae +http://purl.obolibrary.org/obo/UBERON_0007274,crista of ampulla of anterior semicircular duct of membranous laybrinth,anterior semicircular canal sensory patch +http://purl.obolibrary.org/obo/UBERON_0007274,crista of ampulla of anterior semicircular duct of membranous laybrinth,anterior semicircular canal sensory patches +http://purl.obolibrary.org/obo/UBERON_0007274,crista of ampulla of anterior semicircular duct of membranous laybrinth,rostral crista +http://purl.obolibrary.org/obo/UBERON_0007275,crista of ampulla of posterior semicircular duct of membranous laybrinth,caudal crista +http://purl.obolibrary.org/obo/UBERON_0007275,crista of ampulla of posterior semicircular duct of membranous laybrinth,posterior crista ampullaris +http://purl.obolibrary.org/obo/UBERON_0007275,crista of ampulla of posterior semicircular duct of membranous laybrinth,posterior cristae +http://purl.obolibrary.org/obo/UBERON_0007275,crista of ampulla of posterior semicircular duct of membranous laybrinth,posterior semicircular canal sensory patch +http://purl.obolibrary.org/obo/UBERON_0007275,crista of ampulla of posterior semicircular duct of membranous laybrinth,posterior semicircular canal sensory patches +http://purl.obolibrary.org/obo/UBERON_0007276,crista of ampulla of lateral semicircular duct of membranous laybrinth,lateral crista ampullaris +http://purl.obolibrary.org/obo/UBERON_0007276,crista of ampulla of lateral semicircular duct of membranous laybrinth,lateral cristae +http://purl.obolibrary.org/obo/UBERON_0007276,crista of ampulla of lateral semicircular duct of membranous laybrinth,lateral semicircular canal sensory patch +http://purl.obolibrary.org/obo/UBERON_0007276,crista of ampulla of lateral semicircular duct of membranous laybrinth,lateral semicircular canal sensory patches +http://purl.obolibrary.org/obo/UBERON_0007277,presumptive hindbrain,presumptive rhombencephalon +http://purl.obolibrary.org/obo/UBERON_0007278,presumptive sinus venosus, +http://purl.obolibrary.org/obo/UBERON_0007279,presumptive atrioventricular canal,future AV canal +http://purl.obolibrary.org/obo/UBERON_0007279,presumptive atrioventricular canal,future atrioventricular canal +http://purl.obolibrary.org/obo/UBERON_0007280,presumptive endocardium, +http://purl.obolibrary.org/obo/UBERON_0007281,presumptive midbrain hindbrain boundary,presumptive MHB +http://purl.obolibrary.org/obo/UBERON_0007281,presumptive midbrain hindbrain boundary,presumptive midbrain-hindbrain boundary +http://purl.obolibrary.org/obo/UBERON_0007282,presumptive segmental plate, +http://purl.obolibrary.org/obo/UBERON_0007283,presumptive shield, +http://purl.obolibrary.org/obo/UBERON_0007284,presumptive neural plate,prospective neuroectoderm +http://purl.obolibrary.org/obo/UBERON_0007284,presumptive neural plate,prospective vegetal ectoderm +http://purl.obolibrary.org/obo/UBERON_0007285,presumptive paraxial mesoderm,future paraxial mesenchyme +http://purl.obolibrary.org/obo/UBERON_0007285,presumptive paraxial mesoderm,future paraxial mesoderm +http://purl.obolibrary.org/obo/UBERON_0007286,presumptive floor plate, +http://purl.obolibrary.org/obo/UBERON_0007287,presumptive bulbus arteriosus, +http://purl.obolibrary.org/obo/UBERON_0007288,presumptive forebrain midbrain boundary, +http://purl.obolibrary.org/obo/UBERON_0007289,presumptive rhombomere 1, +http://purl.obolibrary.org/obo/UBERON_0007290,presumptive rhombomere 3, +http://purl.obolibrary.org/obo/UBERON_0007291,presumptive rhombomere 4, +http://purl.obolibrary.org/obo/UBERON_0007292,presumptive rhombomere 5, +http://purl.obolibrary.org/obo/UBERON_0007293,presumptive rhombomere 6, +http://purl.obolibrary.org/obo/UBERON_0007294,presumptive rhombomere 7, +http://purl.obolibrary.org/obo/UBERON_0007295,presumptive rhombomere 8, +http://purl.obolibrary.org/obo/UBERON_0007296,presumptive rhombomere 2, +http://purl.obolibrary.org/obo/UBERON_0007297,presumptive pronephric mesoderm,nephron primordium +http://purl.obolibrary.org/obo/UBERON_0007298,pronephric proximal convoluted tubule, +http://purl.obolibrary.org/obo/UBERON_0007299,choroid plexus of tectal ventricle,choroid plexus tectal ventricle +http://purl.obolibrary.org/obo/UBERON_0007300,pectoral appendage blood vessel, +http://purl.obolibrary.org/obo/UBERON_0007301,appendage blood vessel, +http://purl.obolibrary.org/obo/UBERON_0007302,pectoral appendage vasculature, +http://purl.obolibrary.org/obo/UBERON_0007303,pharyngeal vasculature,branchial vasculature +http://purl.obolibrary.org/obo/UBERON_0007304,appendage vasculature, +http://purl.obolibrary.org/obo/UBERON_0007306,pronephric glomerular capillary, +http://purl.obolibrary.org/obo/UBERON_0007307,pronephric glomerular basement membrane,pronephric glomerular filtration membrane +http://purl.obolibrary.org/obo/UBERON_0007308,pronephric distal early tubule, +http://purl.obolibrary.org/obo/UBERON_0007311,sputum, +http://purl.obolibrary.org/obo/UBERON_0007312,pudendal artery,arteriae pudendae +http://purl.obolibrary.org/obo/UBERON_0007312,pudendal artery,arteriae pudendales +http://purl.obolibrary.org/obo/UBERON_0007314,superior external pudendal artery, +http://purl.obolibrary.org/obo/UBERON_0007315,internal pudendal artery,arteria pudenda interna +http://purl.obolibrary.org/obo/UBERON_0007315,internal pudendal artery,arteriae pudendae interna +http://purl.obolibrary.org/obo/UBERON_0007315,internal pudendal artery,arteriae pudendales interna +http://purl.obolibrary.org/obo/UBERON_0007315,internal pudendal artery,internal pudic artery +http://purl.obolibrary.org/obo/UBERON_0007316,deep external pudendal artery,arteria pudenda externa profunda +http://purl.obolibrary.org/obo/UBERON_0007316,deep external pudendal artery,arteriae pudendae externa profunda +http://purl.obolibrary.org/obo/UBERON_0007316,deep external pudendal artery,arteriae pudendales externa profunda +http://purl.obolibrary.org/obo/UBERON_0007317,superficial external pudendal artery,arteriae pudendae externa superficialis +http://purl.obolibrary.org/obo/UBERON_0007317,superficial external pudendal artery,arteriae pudendales externa superficialis +http://purl.obolibrary.org/obo/UBERON_0007317,superficial external pudendal artery,superficial external pudic artery +http://purl.obolibrary.org/obo/UBERON_0007318,saphenous vein, +http://purl.obolibrary.org/obo/UBERON_0007319,medial saphenous vein,medial accessory saphenous vein +http://purl.obolibrary.org/obo/UBERON_0007321,lateral saphenous vein,lateral accessory saphenous vein +http://purl.obolibrary.org/obo/UBERON_0007324,pancreatic lobule,lobulus pancreaticus +http://purl.obolibrary.org/obo/UBERON_0007324,pancreatic lobule,pancreas lobe +http://purl.obolibrary.org/obo/UBERON_0007324,pancreatic lobule,pancreatic lobule +http://purl.obolibrary.org/obo/UBERON_0007329,pancreatic duct,duct of pancreas +http://purl.obolibrary.org/obo/UBERON_0007329,pancreatic duct,pancreas duct +http://purl.obolibrary.org/obo/UBERON_0007330,rhamphotheca, +http://purl.obolibrary.org/obo/UBERON_0007331,maxillary rhamphotheca, +http://purl.obolibrary.org/obo/UBERON_0007332,mandibular rhamphotheca, +http://purl.obolibrary.org/obo/UBERON_0007334,nidopallium, +http://purl.obolibrary.org/obo/UBERON_0007347,hyperpallium, +http://purl.obolibrary.org/obo/UBERON_0007349,mesopallium, +http://purl.obolibrary.org/obo/UBERON_0007350,arcopallium, +http://purl.obolibrary.org/obo/UBERON_0007351,nucleus isthmo-opticus, +http://purl.obolibrary.org/obo/UBERON_0007352,stria vascularis vasculature,stria vascularis blood vessels +http://purl.obolibrary.org/obo/UBERON_0007354,cartilage of pharyngotympanic tube,cartilage of auditory tube +http://purl.obolibrary.org/obo/UBERON_0007354,cartilage of pharyngotympanic tube,cartilage of eustachian tube +http://purl.obolibrary.org/obo/UBERON_0007354,cartilage of pharyngotympanic tube,cartilago tubae auditivae +http://purl.obolibrary.org/obo/UBERON_0007354,cartilage of pharyngotympanic tube,cartilago tubae auditoriae +http://purl.obolibrary.org/obo/UBERON_0007354,cartilage of pharyngotympanic tube,pharyngotympanic tube cartilage +http://purl.obolibrary.org/obo/UBERON_0007355,bony part of pharyngotympanic tube,bony part of auditory tube +http://purl.obolibrary.org/obo/UBERON_0007355,bony part of pharyngotympanic tube,bony part of eustachian tube +http://purl.obolibrary.org/obo/UBERON_0007355,bony part of pharyngotympanic tube,osseous portion of eustachian tube +http://purl.obolibrary.org/obo/UBERON_0007355,bony part of pharyngotympanic tube,pars ossea (tuba auditiva) +http://purl.obolibrary.org/obo/UBERON_0007355,bony part of pharyngotympanic tube,pars ossea (tuba auditoria) +http://purl.obolibrary.org/obo/UBERON_0007356,crop, +http://purl.obolibrary.org/obo/UBERON_0007357,proventriculus, +http://purl.obolibrary.org/obo/UBERON_0007358,abomasum, +http://purl.obolibrary.org/obo/UBERON_0007359,ruminant forestomach,forestomach +http://purl.obolibrary.org/obo/UBERON_0007361,ruminant reticulum, +http://purl.obolibrary.org/obo/UBERON_0007362,omasum,omasum +http://purl.obolibrary.org/obo/UBERON_0007364,reticulorumen,retriculo-rumen +http://purl.obolibrary.org/obo/UBERON_0007365,rumen, +http://purl.obolibrary.org/obo/UBERON_0007366,ruminant stomach,plurilocular stomach +http://purl.obolibrary.org/obo/UBERON_0007367,surface of tongue,tongue surface +http://purl.obolibrary.org/obo/UBERON_0007371,superior surface of tongue,dorsal surface of tongue +http://purl.obolibrary.org/obo/UBERON_0007373,inferior surface of tongue,ventral surface of tongue +http://purl.obolibrary.org/obo/UBERON_0007373,inferior surface of tongue,ventrum linguae +http://purl.obolibrary.org/obo/UBERON_0007374,incus cartilage element, +http://purl.obolibrary.org/obo/UBERON_0007375,roof of mouth,roof of buccal cavity +http://purl.obolibrary.org/obo/UBERON_0007375,roof of mouth,roof of oral cavity +http://purl.obolibrary.org/obo/UBERON_0007376,outer epithelium,epidermis +http://purl.obolibrary.org/obo/UBERON_0007376,outer epithelium,epidermis (sensu Metazoa) +http://purl.obolibrary.org/obo/UBERON_0007376,outer epithelium,outer epidermal layer +http://purl.obolibrary.org/obo/UBERON_0007376,outer epithelium,outer epithelial layer +http://purl.obolibrary.org/obo/UBERON_0007377,stratum compactum of dermis,dermal deep region +http://purl.obolibrary.org/obo/UBERON_0007377,stratum compactum of dermis,stratum compactum +http://purl.obolibrary.org/obo/UBERON_0007378,egg yolk, +http://purl.obolibrary.org/obo/UBERON_0007379,shelled egg, +http://purl.obolibrary.org/obo/UBERON_0007380,dermal scale,scales +http://purl.obolibrary.org/obo/UBERON_0007381,epidermal scale, +http://purl.obolibrary.org/obo/UBERON_0007383,enveloping layer of ectoderm,EVL +http://purl.obolibrary.org/obo/UBERON_0007383,enveloping layer of ectoderm,enveloping layer +http://purl.obolibrary.org/obo/UBERON_0007384,appendage lymph vessel, +http://purl.obolibrary.org/obo/UBERON_0007385,pectoral appendage lymph vessel, +http://purl.obolibrary.org/obo/UBERON_0007386,pelvic appendage lymph vessel, +http://purl.obolibrary.org/obo/UBERON_0007389,paired limb/fin cartilage, +http://purl.obolibrary.org/obo/UBERON_0007390,pectoral appendage cartilage tissue, +http://purl.obolibrary.org/obo/UBERON_0007391,pelvic appendage cartilage tissue, +http://purl.obolibrary.org/obo/UBERON_0007412,midbrain raphe nuclei,midbrain raphe +http://purl.obolibrary.org/obo/UBERON_0007412,midbrain raphe nuclei,midbrain raphe nuclei +http://purl.obolibrary.org/obo/UBERON_0007412,midbrain raphe nuclei,nuclei raphes tegmenti mesencephali +http://purl.obolibrary.org/obo/UBERON_0007412,midbrain raphe nuclei,raphe nuclei of tegmentum of midbrain +http://purl.obolibrary.org/obo/UBERON_0007412,midbrain raphe nuclei,set of raphe nuclei of tegmentum of midbrain +http://purl.obolibrary.org/obo/UBERON_0007413,nucleus of pontine reticular formation,pontine reticular formation nucleus +http://purl.obolibrary.org/obo/UBERON_0007414,nucleus of midbrain tegmentum,tegmental nuclei +http://purl.obolibrary.org/obo/UBERON_0007414,nucleus of midbrain tegmentum,tegmental nucleus +http://purl.obolibrary.org/obo/UBERON_0007415,nucleus of midbrain reticular formation,mesencephalic reticular nucleus +http://purl.obolibrary.org/obo/UBERON_0007415,nucleus of midbrain reticular formation,midbrain reticular formation nucleus +http://purl.obolibrary.org/obo/UBERON_0007415,nucleus of midbrain reticular formation,midbrain reticular nucleus +http://purl.obolibrary.org/obo/UBERON_0007416,cerebellar peduncle, +http://purl.obolibrary.org/obo/UBERON_0007417,peduncle of neuraxis,neuraxis peduncle +http://purl.obolibrary.org/obo/UBERON_0007418,neural decussation,decussation of neuraxis +http://purl.obolibrary.org/obo/UBERON_0007418,neural decussation,neuraxis chiasm +http://purl.obolibrary.org/obo/UBERON_0007418,neural decussation,neuraxis chiasma +http://purl.obolibrary.org/obo/UBERON_0007418,neural decussation,neuraxis decussation +http://purl.obolibrary.org/obo/UBERON_0007425,decussation of diencephalon,diencephalon decussation +http://purl.obolibrary.org/obo/UBERON_0007440,stratum intermedium of tooth, +http://purl.obolibrary.org/obo/UBERON_0007473,lumen of epithelial sac,cavity of vesicle +http://purl.obolibrary.org/obo/UBERON_0007475,matrix-based tissue, +http://purl.obolibrary.org/obo/UBERON_0007486,fluid-based anatomical entity, +http://purl.obolibrary.org/obo/UBERON_0007490,keratin-based acellular structure, +http://purl.obolibrary.org/obo/UBERON_0007491,chitin-based acellular structure, +http://purl.obolibrary.org/obo/UBERON_0007499,epithelial sac, +http://purl.obolibrary.org/obo/UBERON_0007500,epithelial tube open at both ends, +http://purl.obolibrary.org/obo/UBERON_0007501,arborizing epithelial duct system,arborising epithelial duct system +http://purl.obolibrary.org/obo/UBERON_0007502,epithelial plexus, +http://purl.obolibrary.org/obo/UBERON_0007503,epithelial vesicle, +http://purl.obolibrary.org/obo/UBERON_0007521,smooth muscle sphincter, +http://purl.obolibrary.org/obo/UBERON_0007522,striated muscle sphincter, +http://purl.obolibrary.org/obo/UBERON_0007524,dense mesenchyme tissue, +http://purl.obolibrary.org/obo/UBERON_0007529,loose mesenchyme tissue, +http://purl.obolibrary.org/obo/UBERON_0007530,migrating mesenchyme population, +http://purl.obolibrary.org/obo/UBERON_0007567,regenerating anatomical structure, +http://purl.obolibrary.org/obo/UBERON_0007573,migrating epithelium, +http://purl.obolibrary.org/obo/UBERON_0007574,apical epidermal cap,apical epidermal caps +http://purl.obolibrary.org/obo/UBERON_0007574,apical epidermal cap,apical epithelial cap +http://purl.obolibrary.org/obo/UBERON_0007589,ciliated columnar oviduct epithelium, +http://purl.obolibrary.org/obo/UBERON_0007590,cuboidal oviduct epithelium, +http://purl.obolibrary.org/obo/UBERON_0007592,ciliated columnar epithelium, +http://purl.obolibrary.org/obo/UBERON_0007601,ciliated epithelium, +http://purl.obolibrary.org/obo/UBERON_0007602,stratified columnar epithelium,epithelium stratificatum columnare +http://purl.obolibrary.org/obo/UBERON_0007603,stratified cuboidal epithelium,epithelium stratificatum cuboideum +http://purl.obolibrary.org/obo/UBERON_0007606,ciliated stratified columnar epithelium, +http://purl.obolibrary.org/obo/UBERON_0007610,tibial artery, +http://purl.obolibrary.org/obo/UBERON_0007612,extensor digitorum communis,extensor digitorum +http://purl.obolibrary.org/obo/UBERON_0007612,extensor digitorum communis,extensor digitorum communis muscle +http://purl.obolibrary.org/obo/UBERON_0007613,extensor digitorum lateralis muscle,extensor digitorum lateralis +http://purl.obolibrary.org/obo/UBERON_0007614,extensor digiti minimi muscle, +http://purl.obolibrary.org/obo/UBERON_0007615,prostate gland ventral lobe, +http://purl.obolibrary.org/obo/UBERON_0007616,layer of synovial tissue,synovium +http://purl.obolibrary.org/obo/UBERON_0007617,synovial cavity of joint,articular cavity (synovial joint) +http://purl.obolibrary.org/obo/UBERON_0007617,synovial cavity of joint,cavitas articularis (junctura synovialis) +http://purl.obolibrary.org/obo/UBERON_0007617,synovial cavity of joint,cavity of synovial joint +http://purl.obolibrary.org/obo/UBERON_0007618,synovial cavity of hip joint, +http://purl.obolibrary.org/obo/UBERON_0007619,limiting membrane of retina,retina lamina +http://purl.obolibrary.org/obo/UBERON_0007622,pecten oculi, +http://purl.obolibrary.org/obo/UBERON_0007623,comb and wattle, +http://purl.obolibrary.org/obo/UBERON_0007625,pigment epithelium of eye, +http://purl.obolibrary.org/obo/UBERON_0007626,subparaventricular zone, +http://purl.obolibrary.org/obo/UBERON_0007627,magnocellular nucleus of stria terminalis,magnocellular nucleus +http://purl.obolibrary.org/obo/UBERON_0007628,lateral septal complex,lateral septal area +http://purl.obolibrary.org/obo/UBERON_0007628,lateral septal complex,lateral septum +http://purl.obolibrary.org/obo/UBERON_0007628,lateral septal complex,lateral septum complex +http://purl.obolibrary.org/obo/UBERON_0007629,medial septal complex,medial septum complex +http://purl.obolibrary.org/obo/UBERON_0007630,septohippocampal nucleus, +http://purl.obolibrary.org/obo/UBERON_0007631,accessory olfactory bulb glomerular layer,"AOB, glomerular layer" +http://purl.obolibrary.org/obo/UBERON_0007631,accessory olfactory bulb glomerular layer,"accessory olfactory bulb, glomerular layer" +http://purl.obolibrary.org/obo/UBERON_0007631,accessory olfactory bulb glomerular layer,glomerular layer of the accessory olfactory bulb +http://purl.obolibrary.org/obo/UBERON_0007632,Barrington's nucleus,Barrington nucleus +http://purl.obolibrary.org/obo/UBERON_0007632,Barrington's nucleus,nucleus of Barrington +http://purl.obolibrary.org/obo/UBERON_0007633,nucleus of trapezoid body,Tz +http://purl.obolibrary.org/obo/UBERON_0007633,nucleus of trapezoid body,nuclei of trapezoid body +http://purl.obolibrary.org/obo/UBERON_0007633,nucleus of trapezoid body,nucleus corporis trapezoidei +http://purl.obolibrary.org/obo/UBERON_0007633,nucleus of trapezoid body,nucleus of the trapezoid body +http://purl.obolibrary.org/obo/UBERON_0007633,nucleus of trapezoid body,nucleus trapezoidalis +http://purl.obolibrary.org/obo/UBERON_0007633,nucleus of trapezoid body,set of nuclei of trapezoid body +http://purl.obolibrary.org/obo/UBERON_0007633,nucleus of trapezoid body,trapezoid gray +http://purl.obolibrary.org/obo/UBERON_0007633,nucleus of trapezoid body,trapezoid nuclear complex +http://purl.obolibrary.org/obo/UBERON_0007633,nucleus of trapezoid body,trapezoid nuclei +http://purl.obolibrary.org/obo/UBERON_0007634,parabrachial nucleus,parabrachial area +http://purl.obolibrary.org/obo/UBERON_0007634,parabrachial nucleus,parabrachial complex +http://purl.obolibrary.org/obo/UBERON_0007634,parabrachial nucleus,parabrachial nuclei +http://purl.obolibrary.org/obo/UBERON_0007635,nucleus of medulla oblongata, +http://purl.obolibrary.org/obo/UBERON_0007637,hippocampus stratum lucidum, +http://purl.obolibrary.org/obo/UBERON_0007639,hippocampus alveus,CA2 alveus +http://purl.obolibrary.org/obo/UBERON_0007639,hippocampus alveus,alveus +http://purl.obolibrary.org/obo/UBERON_0007639,hippocampus alveus,alveus hippocampi +http://purl.obolibrary.org/obo/UBERON_0007639,hippocampus alveus,alveus of fornix +http://purl.obolibrary.org/obo/UBERON_0007639,hippocampus alveus,alveus of hippocampus +http://purl.obolibrary.org/obo/UBERON_0007639,hippocampus alveus,alveus of the hippocampus +http://purl.obolibrary.org/obo/UBERON_0007639,hippocampus alveus,neuraxis alveus +http://purl.obolibrary.org/obo/UBERON_0007640,hippocampus stratum lacunosum moleculare,lacunar-molecular layer of hippocampus +http://purl.obolibrary.org/obo/UBERON_0007640,hippocampus stratum lacunosum moleculare,stratum hippocampi moleculare et substratum lacunosum +http://purl.obolibrary.org/obo/UBERON_0007640,hippocampus stratum lacunosum moleculare,stratum lacunosum moleculare +http://purl.obolibrary.org/obo/UBERON_0007640,hippocampus stratum lacunosum moleculare,stratum lacunosum-moleculare +http://purl.obolibrary.org/obo/UBERON_0007641,trigeminal nuclear complex,nuclei trigemini +http://purl.obolibrary.org/obo/UBERON_0007641,trigeminal nuclear complex,trigeminal nuclei +http://purl.obolibrary.org/obo/UBERON_0007642,ligamentum arteriosum,Botallo's duct +http://purl.obolibrary.org/obo/UBERON_0007642,ligamentum arteriosum,Botallo's ligament +http://purl.obolibrary.org/obo/UBERON_0007642,ligamentum arteriosum,Harvey's ligament +http://purl.obolibrary.org/obo/UBERON_0007642,ligamentum arteriosum,ligamentum arteriosum (ductus arteriosus) +http://purl.obolibrary.org/obo/UBERON_0007643,node of ligamentum arteriosum,Botallo's node +http://purl.obolibrary.org/obo/UBERON_0007643,node of ligamentum arteriosum,ligamentum arteriosum node +http://purl.obolibrary.org/obo/UBERON_0007643,node of ligamentum arteriosum,lymph node of ligamentum arteriosum +http://purl.obolibrary.org/obo/UBERON_0007643,node of ligamentum arteriosum,nodus ligamenti arteriosi +http://purl.obolibrary.org/obo/UBERON_0007644,thoracic lymph node,lymph node of thorax +http://purl.obolibrary.org/obo/UBERON_0007645,future meninx,primary meninx +http://purl.obolibrary.org/obo/UBERON_0007646,endomeninx,future leptomeninges +http://purl.obolibrary.org/obo/UBERON_0007646,endomeninx,future leptomeninx +http://purl.obolibrary.org/obo/UBERON_0007647,ectomeninx,future dura mater +http://purl.obolibrary.org/obo/UBERON_0007650,esophagogastric junction,cardioesophageal junction +http://purl.obolibrary.org/obo/UBERON_0007650,esophagogastric junction,gastroesophageal junction +http://purl.obolibrary.org/obo/UBERON_0007651,anatomical junction,anatomical junction +http://purl.obolibrary.org/obo/UBERON_0007651,anatomical junction,junction +http://purl.obolibrary.org/obo/UBERON_0007652,esophageal sphincter, +http://purl.obolibrary.org/obo/UBERON_0007653,capillary loop nephron,developing capillary loop stage nephron +http://purl.obolibrary.org/obo/UBERON_0007653,capillary loop nephron,stage III nephron +http://purl.obolibrary.org/obo/UBERON_0007654,maturing nephron, +http://purl.obolibrary.org/obo/UBERON_0007656,lateral recess of fourth ventricle,recessus lateralis (ventriculi quarti) +http://purl.obolibrary.org/obo/UBERON_0007657,anular ligament of radius,annular ligament of radius +http://purl.obolibrary.org/obo/UBERON_0007657,anular ligament of radius,ligamentum anulare radii +http://purl.obolibrary.org/obo/UBERON_0007657,anular ligament of radius,orbicular ligament of radius +http://purl.obolibrary.org/obo/UBERON_0007679,intersomitic vein,intersegmental vein +http://purl.obolibrary.org/obo/UBERON_0007681,facial neural crest, +http://purl.obolibrary.org/obo/UBERON_0007683,lateral mesenchyme derived from mesoderm, +http://purl.obolibrary.org/obo/UBERON_0007684,uriniferous tubule, +http://purl.obolibrary.org/obo/UBERON_0007685,region of nephron tubule,renal tubule region +http://purl.obolibrary.org/obo/UBERON_0007687,kidney field, +http://purl.obolibrary.org/obo/UBERON_0007688,anlage,developmental field +http://purl.obolibrary.org/obo/UBERON_0007689,thyroid diverticulum, +http://purl.obolibrary.org/obo/UBERON_0007690,early pharyngeal endoderm,early pharyngeal arch endoderm +http://purl.obolibrary.org/obo/UBERON_0007691,gustatory pore,porus gustatorius +http://purl.obolibrary.org/obo/UBERON_0007691,gustatory pore,taste pore +http://purl.obolibrary.org/obo/UBERON_0007692,nucleus of thalamus,nuclear complex of thalamus +http://purl.obolibrary.org/obo/UBERON_0007692,nucleus of thalamus,thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0007693,caroticotympanic artery, +http://purl.obolibrary.org/obo/UBERON_0007699,tract of spinal cord,spinal cord tract +http://purl.obolibrary.org/obo/UBERON_0007702,tract of brain,brain tract +http://purl.obolibrary.org/obo/UBERON_0007702,tract of brain,landmark tracts +http://purl.obolibrary.org/obo/UBERON_0007703,spinothalamic tract, +http://purl.obolibrary.org/obo/UBERON_0007707,superior cerebellar peduncle of midbrain,SCPMB +http://purl.obolibrary.org/obo/UBERON_0007707,superior cerebellar peduncle of midbrain,superior cerebellar peduncle of midbrain +http://purl.obolibrary.org/obo/UBERON_0007709,superior cerebellar peduncle of pons,SCPP +http://purl.obolibrary.org/obo/UBERON_0007709,superior cerebellar peduncle of pons,superior cerebellar peduncle of pons +http://purl.obolibrary.org/obo/UBERON_0007710,intermediate nucleus of lateral lemniscus,"nucleus of the lateral lemniscus, horizontal part" +http://purl.obolibrary.org/obo/UBERON_0007711,sixth cervical dorsal root ganglion,C6 dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0007711,sixth cervical dorsal root ganglion,sixth cervical dorsal root ganglia +http://purl.obolibrary.org/obo/UBERON_0007711,sixth cervical dorsal root ganglion,sixth cervical dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0007711,sixth cervical dorsal root ganglion,sixth cervical spinal ganglion +http://purl.obolibrary.org/obo/UBERON_0007712,fourth thoracic spinal ganglion,fourth thoracic dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0007713,fourth sacral spinal ganglion,forth sacral dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0007713,fourth sacral spinal ganglion,fourth sacral dorsal root ganglion +http://purl.obolibrary.org/obo/UBERON_0007714,cervical subsegment of spinal cord,segment part of cervical spinal cord +http://purl.obolibrary.org/obo/UBERON_0007715,thoracic subsegment of spinal cord,segment part of thoracic spinal cord +http://purl.obolibrary.org/obo/UBERON_0007716,lumbar subsegment of spinal cord,segment part of lumbar spinal cord +http://purl.obolibrary.org/obo/UBERON_0007717,sacral subsegment of spinal cord,segment part of sacral spinal cord +http://purl.obolibrary.org/obo/UBERON_0007718,principal artery to limb, +http://purl.obolibrary.org/obo/UBERON_0007719,bone of reproductive organ, +http://purl.obolibrary.org/obo/UBERON_0007721,interphalangeal joint of pes,foot interphalangeal joint +http://purl.obolibrary.org/obo/UBERON_0007721,interphalangeal joint of pes,hindlimb digit inter-phalangeal joint +http://purl.obolibrary.org/obo/UBERON_0007721,interphalangeal joint of pes,interphalangeal joint of foot +http://purl.obolibrary.org/obo/UBERON_0007722,interphalangeal joint of manus,articulationes digitorum manus +http://purl.obolibrary.org/obo/UBERON_0007722,interphalangeal joint of manus,articulationes interphalangeae manus +http://purl.obolibrary.org/obo/UBERON_0007722,interphalangeal joint of manus,interphalangeal joint of hand +http://purl.obolibrary.org/obo/UBERON_0007723,interphalangeal joint of manual digit 1,interphalangeal joint of first digit of hand +http://purl.obolibrary.org/obo/UBERON_0007723,interphalangeal joint of manual digit 1,interphalangeal joint of hand digit 1 +http://purl.obolibrary.org/obo/UBERON_0007723,interphalangeal joint of manual digit 1,interphalangeal joint of manual digit 1 +http://purl.obolibrary.org/obo/UBERON_0007723,interphalangeal joint of manual digit 1,interphalangeal joint of manual digit I +http://purl.obolibrary.org/obo/UBERON_0007723,interphalangeal joint of manual digit 1,interphalangeal joint of pollex +http://purl.obolibrary.org/obo/UBERON_0007724,interphalangeal joint of pedal digit 1,interphalangeal joint of first digit of foot +http://purl.obolibrary.org/obo/UBERON_0007724,interphalangeal joint of pedal digit 1,interphalangeal joint of first digit of pes +http://purl.obolibrary.org/obo/UBERON_0007724,interphalangeal joint of pedal digit 1,interphalangeal joint of foot digit 1 +http://purl.obolibrary.org/obo/UBERON_0007724,interphalangeal joint of pedal digit 1,interphalangeal joint of great toe +http://purl.obolibrary.org/obo/UBERON_0007724,interphalangeal joint of pedal digit 1,interphalangeal joint of hallux +http://purl.obolibrary.org/obo/UBERON_0007724,interphalangeal joint of pedal digit 1,interphalangeal joint of pedal digit 1 +http://purl.obolibrary.org/obo/UBERON_0007724,interphalangeal joint of pedal digit 1,interphalangeal joint of pedal digit I +http://purl.obolibrary.org/obo/UBERON_0007725,interphalangeal joint of pedal digit 2,interphalangeal joint of pedal digit II +http://purl.obolibrary.org/obo/UBERON_0007725,interphalangeal joint of pedal digit 2,interphalangeal joint of second digit of foot +http://purl.obolibrary.org/obo/UBERON_0007726,interphalangeal joint of pedal digit 3,interphalangeal joint of pedal digit III +http://purl.obolibrary.org/obo/UBERON_0007726,interphalangeal joint of pedal digit 3,interphalangeal joint of third digit of foot +http://purl.obolibrary.org/obo/UBERON_0007727,interphalangeal joint of pedal digit 4,interphalangeal joint of fourth digit of foot +http://purl.obolibrary.org/obo/UBERON_0007727,interphalangeal joint of pedal digit 4,interphalangeal joint of pedal digit IV +http://purl.obolibrary.org/obo/UBERON_0007728,interphalangeal joint of pedal digit 5,interphalangeal joint of fifth digit of foot +http://purl.obolibrary.org/obo/UBERON_0007728,interphalangeal joint of pedal digit 5,interphalangeal joint of fifth toe +http://purl.obolibrary.org/obo/UBERON_0007728,interphalangeal joint of pedal digit 5,interphalangeal joint of pedal digit V +http://purl.obolibrary.org/obo/UBERON_0007729,interphalangeal joint of manual digit 2,interphalangeal joint of manual digit II +http://purl.obolibrary.org/obo/UBERON_0007729,interphalangeal joint of manual digit 2,interphalangeal joint of second digit of hand +http://purl.obolibrary.org/obo/UBERON_0007729,interphalangeal joint of manual digit 2,interphalangeal joint of second finger +http://purl.obolibrary.org/obo/UBERON_0007730,interphalangeal joint of manual digit 3,interphalangeal joint of manual digit III +http://purl.obolibrary.org/obo/UBERON_0007730,interphalangeal joint of manual digit 3,interphalangeal joint of third digit of hand +http://purl.obolibrary.org/obo/UBERON_0007730,interphalangeal joint of manual digit 3,interphalangeal joint of third finger +http://purl.obolibrary.org/obo/UBERON_0007731,interphalangeal joint of manual digit 4,interphalangeal joint of fourth digit of hand +http://purl.obolibrary.org/obo/UBERON_0007731,interphalangeal joint of manual digit 4,interphalangeal joint of fourth finger +http://purl.obolibrary.org/obo/UBERON_0007731,interphalangeal joint of manual digit 4,interphalangeal joint of manual digit IV +http://purl.obolibrary.org/obo/UBERON_0007732,interphalangeal joint of manual digit 5,interphalangeal joint of fifth digit of hand +http://purl.obolibrary.org/obo/UBERON_0007732,interphalangeal joint of manual digit 5,interphalangeal joint of fifth finger +http://purl.obolibrary.org/obo/UBERON_0007732,interphalangeal joint of manual digit 5,interphalangeal joint of manual digit V +http://purl.obolibrary.org/obo/UBERON_0007735,metacarpophalangeal joint of manual digit 1,metacarpophalangeal joint of digit 1 +http://purl.obolibrary.org/obo/UBERON_0007735,metacarpophalangeal joint of manual digit 1,metacarpophalangeal joint of first digit of hand +http://purl.obolibrary.org/obo/UBERON_0007735,metacarpophalangeal joint of manual digit 1,metacarpophalangeal joint of manual digit I +http://purl.obolibrary.org/obo/UBERON_0007738,metacarpophalangeal joint of manual digit 2,metacarpophalangeal joint of digit 2 +http://purl.obolibrary.org/obo/UBERON_0007738,metacarpophalangeal joint of manual digit 2,metacarpophalangeal joint of manual digit II +http://purl.obolibrary.org/obo/UBERON_0007738,metacarpophalangeal joint of manual digit 2,metacarpophalangeal joint of second digit of hand +http://purl.obolibrary.org/obo/UBERON_0007738,metacarpophalangeal joint of manual digit 2,metacarpophalangeal joint of second finger +http://purl.obolibrary.org/obo/UBERON_0007741,metacarpophalangeal joint of manual digit 3,metacarpophalangeal joint of digit 3 +http://purl.obolibrary.org/obo/UBERON_0007741,metacarpophalangeal joint of manual digit 3,metacarpophalangeal joint of manual digit III +http://purl.obolibrary.org/obo/UBERON_0007741,metacarpophalangeal joint of manual digit 3,metacarpophalangeal joint of third digit of hand +http://purl.obolibrary.org/obo/UBERON_0007741,metacarpophalangeal joint of manual digit 3,metacarpophalangeal joint of third finger +http://purl.obolibrary.org/obo/UBERON_0007744,metacarpophalangeal joint of manual digit 4,metacarpophalangeal joint of digit 4 +http://purl.obolibrary.org/obo/UBERON_0007744,metacarpophalangeal joint of manual digit 4,metacarpophalangeal joint of fourth digit of hand +http://purl.obolibrary.org/obo/UBERON_0007744,metacarpophalangeal joint of manual digit 4,metacarpophalangeal joint of fourth finger +http://purl.obolibrary.org/obo/UBERON_0007744,metacarpophalangeal joint of manual digit 4,metacarpophalangeal joint of manual digit IV +http://purl.obolibrary.org/obo/UBERON_0007747,metacarpophalangeal joint of manual digit 5,metacarpophalangeal joint of digit 5 +http://purl.obolibrary.org/obo/UBERON_0007747,metacarpophalangeal joint of manual digit 5,metacarpophalangeal joint of fifth digit of hand +http://purl.obolibrary.org/obo/UBERON_0007747,metacarpophalangeal joint of manual digit 5,metacarpophalangeal joint of fifth finger +http://purl.obolibrary.org/obo/UBERON_0007747,metacarpophalangeal joint of manual digit 5,metacarpophalangeal joint of manual digit V +http://purl.obolibrary.org/obo/UBERON_0007750,metatarsophalangeal joint of pedal digit 1,first metatarsophalangeal joint +http://purl.obolibrary.org/obo/UBERON_0007750,metatarsophalangeal joint of pedal digit 1,metatarsophalangeal joint of first digit of foot +http://purl.obolibrary.org/obo/UBERON_0007750,metatarsophalangeal joint of pedal digit 1,metatarsophalangeal joint of great toe +http://purl.obolibrary.org/obo/UBERON_0007750,metatarsophalangeal joint of pedal digit 1,metatarsophalangeal joint of pedal digit I +http://purl.obolibrary.org/obo/UBERON_0007753,metatarsophalangeal joint of pedal digit 2,metatarsophalangeal joint of pedal digit II +http://purl.obolibrary.org/obo/UBERON_0007753,metatarsophalangeal joint of pedal digit 2,metatarsophalangeal joint of second digit of foot +http://purl.obolibrary.org/obo/UBERON_0007756,metatarsophalangeal joint of pedal digit 3,metatarsophalangeal joint of pedal digit III +http://purl.obolibrary.org/obo/UBERON_0007756,metatarsophalangeal joint of pedal digit 3,metatarsophalangeal joint of third digit of foot +http://purl.obolibrary.org/obo/UBERON_0007759,metatarsophalangeal joint of pedal digit 4,metatarsophalangeal joint of fourth digit of foot +http://purl.obolibrary.org/obo/UBERON_0007759,metatarsophalangeal joint of pedal digit 4,metatarsophalangeal joint of pedal digit IV +http://purl.obolibrary.org/obo/UBERON_0007762,metatarsophalangeal joint of pedal digit 5,metatarsophalangeal joint of fifth digit of foot +http://purl.obolibrary.org/obo/UBERON_0007762,metatarsophalangeal joint of pedal digit 5,metatarsophalangeal joint of fifth toe +http://purl.obolibrary.org/obo/UBERON_0007762,metatarsophalangeal joint of pedal digit 5,metatarsophalangeal joint of pedal digit V +http://purl.obolibrary.org/obo/UBERON_0007763,cerebellum vermis culmen,cerebellum culmen +http://purl.obolibrary.org/obo/UBERON_0007763,cerebellum vermis culmen,culmen lobule +http://purl.obolibrary.org/obo/UBERON_0007763,cerebellum vermis culmen,neuraxis culmen +http://purl.obolibrary.org/obo/UBERON_0007764,paramedian reticular nucleus,ventral paramedian reticular nucleus +http://purl.obolibrary.org/obo/UBERON_0007767,dorsal premammillary nucleus,premammillary nucleus dorsal part +http://purl.obolibrary.org/obo/UBERON_0007768,ventral premammillary nucleus,premammillary nucleus ventral part +http://purl.obolibrary.org/obo/UBERON_0007769,medial preoptic region,medial preoptic area +http://purl.obolibrary.org/obo/UBERON_0007769,medial preoptic region,medial preopticarea +http://purl.obolibrary.org/obo/UBERON_0007770,osphradium, +http://purl.obolibrary.org/obo/UBERON_0007771,epidermis gland,epidermal gland +http://purl.obolibrary.org/obo/UBERON_0007771,epidermis gland,gland of epidermis +http://purl.obolibrary.org/obo/UBERON_0007772,scrotal sweat,scrotum sweat +http://purl.obolibrary.org/obo/UBERON_0007772,scrotal sweat,sweat of scrotal sac +http://purl.obolibrary.org/obo/UBERON_0007772,scrotal sweat,sweat of scrotum +http://purl.obolibrary.org/obo/UBERON_0007773,scrotal sweat gland, +http://purl.obolibrary.org/obo/UBERON_0007774,secondary dentition,dentes permanentes +http://purl.obolibrary.org/obo/UBERON_0007774,secondary dentition,permanent dentition +http://purl.obolibrary.org/obo/UBERON_0007774,secondary dentition,permanent teeth +http://purl.obolibrary.org/obo/UBERON_0007774,secondary dentition,set of permanent teeth +http://purl.obolibrary.org/obo/UBERON_0007774,secondary dentition,set of secondary teeth +http://purl.obolibrary.org/obo/UBERON_0007775,secondary tooth,permanent tooth +http://purl.obolibrary.org/obo/UBERON_0007776,unerupted tooth, +http://purl.obolibrary.org/obo/UBERON_0007777,umbilical vein endothelium, +http://purl.obolibrary.org/obo/UBERON_0007778,umbilical artery endothelium, +http://purl.obolibrary.org/obo/UBERON_0007779,transudate, +http://purl.obolibrary.org/obo/UBERON_0007780,exudate, +http://purl.obolibrary.org/obo/UBERON_0007794,secretion of serous gland,serosal fluid +http://purl.obolibrary.org/obo/UBERON_0007794,secretion of serous gland,serous gland fluid +http://purl.obolibrary.org/obo/UBERON_0007795,ascitic fluid, +http://purl.obolibrary.org/obo/UBERON_0007798,vascular system, +http://purl.obolibrary.org/obo/UBERON_0007799,mixed dentition,transitional dentition +http://purl.obolibrary.org/obo/UBERON_0007800,proatlas, +http://purl.obolibrary.org/obo/UBERON_0007801,pygostyle, +http://purl.obolibrary.org/obo/UBERON_0007802,uropygial gland, +http://purl.obolibrary.org/obo/UBERON_0007803,preen oil, +http://purl.obolibrary.org/obo/UBERON_0007804,sclerotic ring,scleral ring +http://purl.obolibrary.org/obo/UBERON_0007805,synsacrum, +http://purl.obolibrary.org/obo/UBERON_0007806,connecting stalk, +http://purl.obolibrary.org/obo/UBERON_0007807,connecting stalk vasculature,connecting stalk blood vessels +http://purl.obolibrary.org/obo/UBERON_0007808,adipose tissue of abdominal region, +http://purl.obolibrary.org/obo/UBERON_0007809,fascia of Camper,Camper's fascia +http://purl.obolibrary.org/obo/UBERON_0007809,fascia of Camper,adipose layer of superficial fascia of abdomen +http://purl.obolibrary.org/obo/UBERON_0007809,fascia of Camper,camper's fascia +http://purl.obolibrary.org/obo/UBERON_0007809,fascia of Camper,fascia investiens intermedia abdominis +http://purl.obolibrary.org/obo/UBERON_0007809,fascia of Camper,fatty layer of subcutaneous tissue of abdomen +http://purl.obolibrary.org/obo/UBERON_0007809,fascia of Camper,fatty layer of superficial fascia of abdomen +http://purl.obolibrary.org/obo/UBERON_0007809,fascia of Camper,intermediate investing fascia of abdomen +http://purl.obolibrary.org/obo/UBERON_0007809,fascia of Camper,panniculus adiposus abdominis +http://purl.obolibrary.org/obo/UBERON_0007809,fascia of Camper,panniculus adiposus telae subcutaneae abdominis +http://purl.obolibrary.org/obo/UBERON_0007809,fascia of Camper,superficial layer of superficial fascia of abdomen +http://purl.obolibrary.org/obo/UBERON_0007811,craniocervical region,cephalic area +http://purl.obolibrary.org/obo/UBERON_0007811,craniocervical region,cephalic part of animal +http://purl.obolibrary.org/obo/UBERON_0007811,craniocervical region,cephalic region +http://purl.obolibrary.org/obo/UBERON_0007811,craniocervical region,head and neck +http://purl.obolibrary.org/obo/UBERON_0007811,craniocervical region,head or neck +http://purl.obolibrary.org/obo/UBERON_0007812,post-anal tail,muscular postanal tail +http://purl.obolibrary.org/obo/UBERON_0007812,post-anal tail,postanal tail +http://purl.obolibrary.org/obo/UBERON_0007818,major alar cartilage,cartilago alaris major +http://purl.obolibrary.org/obo/UBERON_0007818,major alar cartilage,greater alar cartilage +http://purl.obolibrary.org/obo/UBERON_0007819,minor alar cartilage,lesser alar cartilage +http://purl.obolibrary.org/obo/UBERON_0007820,accessory nasal cartilage, +http://purl.obolibrary.org/obo/UBERON_0007821,lateral nasal cartilage, +http://purl.obolibrary.org/obo/UBERON_0007822,vomeronasal cartilage,Huschke's cartilage +http://purl.obolibrary.org/obo/UBERON_0007822,vomeronasal cartilage,Jacobson's cartilage +http://purl.obolibrary.org/obo/UBERON_0007823,appendage girdle region, +http://purl.obolibrary.org/obo/UBERON_0007825,reticular membrane of spiral organ,membrana reticularis organi spiralis +http://purl.obolibrary.org/obo/UBERON_0007825,reticular membrane of spiral organ,reticular lamina of spiral organ +http://purl.obolibrary.org/obo/UBERON_0007825,reticular membrane of spiral organ,reticular lamina of spiral organ of cochlea +http://purl.obolibrary.org/obo/UBERON_0007826,peritoneal mesentery, +http://purl.obolibrary.org/obo/UBERON_0007827,external nose, +http://purl.obolibrary.org/obo/UBERON_0007828,girdle bone/zone,girdle bone +http://purl.obolibrary.org/obo/UBERON_0007829,pectoral girdle bone,bone of pectoral girdle +http://purl.obolibrary.org/obo/UBERON_0007830,pelvic girdle bone/zone,bone of pelvic girdle +http://purl.obolibrary.org/obo/UBERON_0007830,pelvic girdle bone/zone,pelvic girdle bone +http://purl.obolibrary.org/obo/UBERON_0007831,pectoral girdle skeleton,skeletal parts of pectoral girdle +http://purl.obolibrary.org/obo/UBERON_0007831,pectoral girdle skeleton,skeleton of pectoral girdle +http://purl.obolibrary.org/obo/UBERON_0007832,pelvic girdle skeleton,pelvic girdle skeleton +http://purl.obolibrary.org/obo/UBERON_0007832,pelvic girdle skeleton,skeletal parts of pelvic girdle +http://purl.obolibrary.org/obo/UBERON_0007832,pelvic girdle skeleton,skeleton of pelvic girdle +http://purl.obolibrary.org/obo/UBERON_0007833,osseus semicircular canal,osseous semicircular canal +http://purl.obolibrary.org/obo/UBERON_0007834,lumbar spinal cord ventral commissure,lumbar spinal cord anterior commissure +http://purl.obolibrary.org/obo/UBERON_0007835,sacral spinal cord ventral commissure,sacral spinal cord anterior commissure +http://purl.obolibrary.org/obo/UBERON_0007836,cervical spinal cord ventral commissure,cervical spinal cord anterior commissure +http://purl.obolibrary.org/obo/UBERON_0007837,thoracic spinal cord ventral commissure,thoracic spinal cord anterior commissure +http://purl.obolibrary.org/obo/UBERON_0007838,spinal cord white commissure,white commissure of spinal cord +http://purl.obolibrary.org/obo/UBERON_0007840,spinal cord dorsal white commissure,commissura alba posterior medullae spinalis +http://purl.obolibrary.org/obo/UBERON_0007840,spinal cord dorsal white commissure,dorsal white commissure of spinal cord +http://purl.obolibrary.org/obo/UBERON_0007840,spinal cord dorsal white commissure,posterior white commissure of spinal cord +http://purl.obolibrary.org/obo/UBERON_0007841,furcula,furcula bone +http://purl.obolibrary.org/obo/UBERON_0007842,membrane bone, +http://purl.obolibrary.org/obo/UBERON_0007843,uncinate process of ribs, +http://purl.obolibrary.org/obo/UBERON_0007844,cartilage element,cartilage organ +http://purl.obolibrary.org/obo/UBERON_0007844,cartilage element,cartilaginous element +http://purl.obolibrary.org/obo/UBERON_0007844,cartilage element,chondrogenic element +http://purl.obolibrary.org/obo/UBERON_0007845,regular connective tissue, +http://purl.obolibrary.org/obo/UBERON_0007846,dense regular connective tissue,dense fibrous connective tissue +http://purl.obolibrary.org/obo/UBERON_0007846,dense regular connective tissue,dense regular collagenous connective tissue +http://purl.obolibrary.org/obo/UBERON_0007846,dense regular connective tissue,dense regular collagenous tissue +http://purl.obolibrary.org/obo/UBERON_0007846,dense regular connective tissue,regular dense connective tissue +http://purl.obolibrary.org/obo/UBERON_0007846,dense regular connective tissue,typus regularis (textus connectivus collagenosus compactus) +http://purl.obolibrary.org/obo/UBERON_0007862,perichordal tissue,perichordal connective tissue +http://purl.obolibrary.org/obo/UBERON_0007862,perichordal tissue,perichordal sheath +http://purl.obolibrary.org/obo/UBERON_0007862,perichordal tissue,perichordal sheath tissue +http://purl.obolibrary.org/obo/UBERON_0007914,bone of craniocervical region,head or neck bone +http://purl.obolibrary.org/obo/UBERON_0007958,central carpal bone,central carpals +http://purl.obolibrary.org/obo/UBERON_0007959,falciform carpal bone,os falciform +http://purl.obolibrary.org/obo/UBERON_0007959,falciform carpal bone,os falciforme +http://purl.obolibrary.org/obo/UBERON_0007960,scapholunate,scapholunate bone +http://purl.obolibrary.org/obo/UBERON_0007990,proximal sesamoid bone of pes,proximal sesamoid bone of foot +http://purl.obolibrary.org/obo/UBERON_0007991,proximal sesamoid bone of manus,proximal sesamoid bone of hand +http://purl.obolibrary.org/obo/UBERON_0007993,ulnar sesamoid bone,ulnar sesamoid +http://purl.obolibrary.org/obo/UBERON_0007997,sesamoid bone of manus,sesamoid bone of hand +http://purl.obolibrary.org/obo/UBERON_0008000,sesamoid bone of pes,sesamoid bone of foot +http://purl.obolibrary.org/obo/UBERON_0008001,irregular bone,os irregulare +http://purl.obolibrary.org/obo/UBERON_0008114,joint of girdle,girdle joint +http://purl.obolibrary.org/obo/UBERON_0008115,surface of cartilage,cartilage surface +http://purl.obolibrary.org/obo/UBERON_0008124,joint articular surface, +http://purl.obolibrary.org/obo/UBERON_0008187,hypertrophic cartilage zone, +http://purl.obolibrary.org/obo/UBERON_0008188,tendon of biceps brachii,biceps brachii tendon +http://purl.obolibrary.org/obo/UBERON_0008192,tendon of triceps brachii,triceps brachii tendon +http://purl.obolibrary.org/obo/UBERON_0008192,tendon of triceps brachii,triceps tendon +http://purl.obolibrary.org/obo/UBERON_0008193,pneumatized bone,hollow bone +http://purl.obolibrary.org/obo/UBERON_0008193,pneumatized bone,os pneumaticum +http://purl.obolibrary.org/obo/UBERON_0008193,pneumatized bone,pneumatic bone +http://purl.obolibrary.org/obo/UBERON_0008194,tibiotarsus, +http://purl.obolibrary.org/obo/UBERON_0008195,tarsometatarsus, +http://purl.obolibrary.org/obo/UBERON_0008196,muscle of pectoral girdle,muscle of shoulder girdle +http://purl.obolibrary.org/obo/UBERON_0008196,muscle of pectoral girdle,pectoral girdle muscle +http://purl.obolibrary.org/obo/UBERON_0008198,nail plate, +http://purl.obolibrary.org/obo/UBERON_0008199,chin,mental part of face +http://purl.obolibrary.org/obo/UBERON_0008199,chin,mental region +http://purl.obolibrary.org/obo/UBERON_0008199,chin,mental region of face +http://purl.obolibrary.org/obo/UBERON_0008199,chin,regio mentalis +http://purl.obolibrary.org/obo/UBERON_0008200,forehead, +http://purl.obolibrary.org/obo/UBERON_0008201,scute,scuta +http://purl.obolibrary.org/obo/UBERON_0008201,scute,scutae +http://purl.obolibrary.org/obo/UBERON_0008201,scute,scutum +http://purl.obolibrary.org/obo/UBERON_0008202,bone of hip region, +http://purl.obolibrary.org/obo/UBERON_0008203,pelvic cavity,space of pelvic compartment +http://purl.obolibrary.org/obo/UBERON_0008229,craniocervical region musculature,head or neck muscle +http://purl.obolibrary.org/obo/UBERON_0008230,tibialis,tibialis muscle +http://purl.obolibrary.org/obo/UBERON_0008231,dorsal thoracic segment of trunk,back of thorax +http://purl.obolibrary.org/obo/UBERON_0008231,dorsal thoracic segment of trunk,dorsum of thorax +http://purl.obolibrary.org/obo/UBERON_0008231,dorsal thoracic segment of trunk,posterior part of thorax +http://purl.obolibrary.org/obo/UBERON_0008231,dorsal thoracic segment of trunk,thoracic back +http://purl.obolibrary.org/obo/UBERON_0008231,dorsal thoracic segment of trunk,thoracic part of back +http://purl.obolibrary.org/obo/UBERON_0008231,dorsal thoracic segment of trunk,upper back +http://purl.obolibrary.org/obo/UBERON_0008242,lower back muscle, +http://purl.obolibrary.org/obo/UBERON_0008243,upper back muscle, +http://purl.obolibrary.org/obo/UBERON_0008245,pennate muscle, +http://purl.obolibrary.org/obo/UBERON_0008246,pyloric stomach, +http://purl.obolibrary.org/obo/UBERON_0008247,tube foot, +http://purl.obolibrary.org/obo/UBERON_0008248,echinoderm pyloric cecum, +http://purl.obolibrary.org/obo/UBERON_0008250,cardiac stomach, +http://purl.obolibrary.org/obo/UBERON_0008251,water vascular system, +http://purl.obolibrary.org/obo/UBERON_0008252,tube foot ampulla, +http://purl.obolibrary.org/obo/UBERON_0008253,Aristotle's lantern,Aristotles lantern +http://purl.obolibrary.org/obo/UBERON_0008254,styliform cartilage, +http://purl.obolibrary.org/obo/UBERON_0008255,right clavicle, +http://purl.obolibrary.org/obo/UBERON_0008256,left clavicle, +http://purl.obolibrary.org/obo/UBERON_0008257,radial sesamoid,os sesamoideum radiale +http://purl.obolibrary.org/obo/UBERON_0008258,oral subdivision of organism, +http://purl.obolibrary.org/obo/UBERON_0008259,aboral subdivision of organism, +http://purl.obolibrary.org/obo/UBERON_0008260,spine appendage, +http://purl.obolibrary.org/obo/UBERON_0008261,pedicellaria,pedicellariae +http://purl.obolibrary.org/obo/UBERON_0008262,ambulacral area, +http://purl.obolibrary.org/obo/UBERON_0008263,inter-ambulacral area, +http://purl.obolibrary.org/obo/UBERON_0008265,echinopluteus larva,pluteus larva +http://purl.obolibrary.org/obo/UBERON_0008266,periodontal ligament,fibra periodontalis +http://purl.obolibrary.org/obo/UBERON_0008266,periodontal ligament,periodontal fiber +http://purl.obolibrary.org/obo/UBERON_0008266,periodontal ligament,periodontal fibre +http://purl.obolibrary.org/obo/UBERON_0008267,left supracardinal vein, +http://purl.obolibrary.org/obo/UBERON_0008268,right supracardinal vein, +http://purl.obolibrary.org/obo/UBERON_0008269,nacre,mother of pearl +http://purl.obolibrary.org/obo/UBERON_0008270,mollusc shell, +http://purl.obolibrary.org/obo/UBERON_0008271,turtle shell, +http://purl.obolibrary.org/obo/UBERON_0008274,mollusc venom, +http://purl.obolibrary.org/obo/UBERON_0008275,carapace,chelonian carapace +http://purl.obolibrary.org/obo/UBERON_0008276,plastron, +http://purl.obolibrary.org/obo/UBERON_0008280,cnidarian venom, +http://purl.obolibrary.org/obo/UBERON_0008281,tooth bud,dental bud +http://purl.obolibrary.org/obo/UBERON_0008281,tooth bud,dental germ +http://purl.obolibrary.org/obo/UBERON_0008281,tooth bud,tooth germ +http://purl.obolibrary.org/obo/UBERON_0008283,columnella, +http://purl.obolibrary.org/obo/UBERON_0008284,columnella muscle, +http://purl.obolibrary.org/obo/UBERON_0008285,rumen epithelium, +http://purl.obolibrary.org/obo/UBERON_0008286,feather calamus, +http://purl.obolibrary.org/obo/UBERON_0008287,feather vane,vexillum +http://purl.obolibrary.org/obo/UBERON_0008288,feather rachis,rachis of feather +http://purl.obolibrary.org/obo/UBERON_0008290,afterfeather, +http://purl.obolibrary.org/obo/UBERON_0008291,down feather,downy feather +http://purl.obolibrary.org/obo/UBERON_0008291,down feather,plumaceous feather +http://purl.obolibrary.org/obo/UBERON_0008291,down feather,plumulaceous feather +http://purl.obolibrary.org/obo/UBERON_0008292,vaned feather, +http://purl.obolibrary.org/obo/UBERON_0008293,filoplume feather,filoplume +http://purl.obolibrary.org/obo/UBERON_0008294,feather barb, +http://purl.obolibrary.org/obo/UBERON_0008295,feather barbule, +http://purl.obolibrary.org/obo/UBERON_0008297,pennaceous feather, +http://purl.obolibrary.org/obo/UBERON_0008304,inner chondrogenic layer of perichondrium, +http://purl.obolibrary.org/obo/UBERON_0008305,outer fibrous layer of perichondrium, +http://purl.obolibrary.org/obo/UBERON_0008307,heart endothelium, +http://purl.obolibrary.org/obo/UBERON_0008310,nasopharyngeal gland, +http://purl.obolibrary.org/obo/UBERON_0008311,penile bulb artery,arteria bulbi penis +http://purl.obolibrary.org/obo/UBERON_0008311,penile bulb artery,artery of bulb of penis +http://purl.obolibrary.org/obo/UBERON_0008320,common penile artery, +http://purl.obolibrary.org/obo/UBERON_0008321,deep artery of penis,arteria profunda penis +http://purl.obolibrary.org/obo/UBERON_0008321,deep artery of penis,deep penile artery +http://purl.obolibrary.org/obo/UBERON_0008322,deep artery of clitoris, +http://purl.obolibrary.org/obo/UBERON_0008323,dorsal artery of clitoris, +http://purl.obolibrary.org/obo/UBERON_0008324,erectile tissue, +http://purl.obolibrary.org/obo/UBERON_0008330,vestibule of vagina,vagina vestibule +http://purl.obolibrary.org/obo/UBERON_0008330,vestibule of vagina,vaginal vestibule +http://purl.obolibrary.org/obo/UBERON_0008330,vestibule of vagina,vestibule of vagina +http://purl.obolibrary.org/obo/UBERON_0008330,vestibule of vagina,vestibulum pudendi +http://purl.obolibrary.org/obo/UBERON_0008330,vestibule of vagina,vestibulum vaginae +http://purl.obolibrary.org/obo/UBERON_0008331,clitoral smooth muscle, +http://purl.obolibrary.org/obo/UBERON_0008332,hilum of neuraxis,neuraxis hilum +http://purl.obolibrary.org/obo/UBERON_0008333,hilum of inferior olivary complex,hilum nuclei olivaris inferioris +http://purl.obolibrary.org/obo/UBERON_0008333,hilum of inferior olivary complex,hilum of inferior olivary nucleus +http://purl.obolibrary.org/obo/UBERON_0008333,hilum of inferior olivary complex,inferior olivary hilum +http://purl.obolibrary.org/obo/UBERON_0008333,hilum of inferior olivary complex,inferior olive hilum +http://purl.obolibrary.org/obo/UBERON_0008334,subarachnoid sulcus, +http://purl.obolibrary.org/obo/UBERON_0008335,ventrolateral sulcus of medulla oblongata,anterolateral sulcus of medulla +http://purl.obolibrary.org/obo/UBERON_0008335,ventrolateral sulcus of medulla oblongata,sulcus anterolateralis +http://purl.obolibrary.org/obo/UBERON_0008335,ventrolateral sulcus of medulla oblongata,sulcus anterolateralis medullae oblongatae +http://purl.obolibrary.org/obo/UBERON_0008335,ventrolateral sulcus of medulla oblongata,sulcus ventrolateralis +http://purl.obolibrary.org/obo/UBERON_0008335,ventrolateral sulcus of medulla oblongata,ventrolateral fissure of medulla +http://purl.obolibrary.org/obo/UBERON_0008335,ventrolateral sulcus of medulla oblongata,ventrolateral sulcus +http://purl.obolibrary.org/obo/UBERON_0008335,ventrolateral sulcus of medulla oblongata,ventrolateral sulcus of medulla +http://purl.obolibrary.org/obo/UBERON_0008337,inguinal part of abdomen,groin +http://purl.obolibrary.org/obo/UBERON_0008337,inguinal part of abdomen,groin area +http://purl.obolibrary.org/obo/UBERON_0008337,inguinal part of abdomen,groin region +http://purl.obolibrary.org/obo/UBERON_0008337,inguinal part of abdomen,iliac fossa viewed surgically +http://purl.obolibrary.org/obo/UBERON_0008337,inguinal part of abdomen,iliac region +http://purl.obolibrary.org/obo/UBERON_0008337,inguinal part of abdomen,inguen +http://purl.obolibrary.org/obo/UBERON_0008337,inguinal part of abdomen,inguinal region +http://purl.obolibrary.org/obo/UBERON_0008338,plantar part of pes,planta +http://purl.obolibrary.org/obo/UBERON_0008338,plantar part of pes,plantar part of foot +http://purl.obolibrary.org/obo/UBERON_0008338,plantar part of pes,plantar region +http://purl.obolibrary.org/obo/UBERON_0008338,plantar part of pes,regio plantaris +http://purl.obolibrary.org/obo/UBERON_0008338,plantar part of pes,sole +http://purl.obolibrary.org/obo/UBERON_0008338,plantar part of pes,sole of foot +http://purl.obolibrary.org/obo/UBERON_0008339,microvascular endothelium, +http://purl.obolibrary.org/obo/UBERON_0008340,nasal bridge, +http://purl.obolibrary.org/obo/UBERON_0008341,columella nasi,columella of nose +http://purl.obolibrary.org/obo/UBERON_0008341,columella nasi,nasal columella +http://purl.obolibrary.org/obo/UBERON_0008342,intestinal villus of duodenum, +http://purl.obolibrary.org/obo/UBERON_0008343,intestinal villus of jejunum, +http://purl.obolibrary.org/obo/UBERON_0008344,intestinal villus of ileum, +http://purl.obolibrary.org/obo/UBERON_0008345,ileal epithelium,epithelium of ileum +http://purl.obolibrary.org/obo/UBERON_0008346,duodenal epithelium,epithelium of duodenum +http://purl.obolibrary.org/obo/UBERON_0008367,breast epithelium, +http://purl.obolibrary.org/obo/UBERON_0008397,tracheobronchial epithelium, +http://purl.obolibrary.org/obo/UBERON_0008404,proximal tubular epithelium,epithelium of proximal convoluted tubule +http://purl.obolibrary.org/obo/UBERON_0008404,proximal tubular epithelium,epithelium of proximal renal tubule +http://purl.obolibrary.org/obo/UBERON_0008404,proximal tubular epithelium,proximal renal tubule epithelium +http://purl.obolibrary.org/obo/UBERON_0008404,proximal tubular epithelium,proximale tubular epithelium +http://purl.obolibrary.org/obo/UBERON_0008408,distal tubular epithelium, +http://purl.obolibrary.org/obo/UBERON_0008420,buccal epithelium, +http://purl.obolibrary.org/obo/UBERON_0008424,inguinal mammary gland, +http://purl.obolibrary.org/obo/UBERON_0008425,mammary ridge,mammary fold +http://purl.obolibrary.org/obo/UBERON_0008425,mammary ridge,mammary gland ridge +http://purl.obolibrary.org/obo/UBERON_0008426,transverse foramen of atlas,foramen transversarium of atlas +http://purl.obolibrary.org/obo/UBERON_0008427,transverse foramen of axis,foramen transversarium of axis +http://purl.obolibrary.org/obo/UBERON_0008428,ceratoglossus,ceratoglossus muscle +http://purl.obolibrary.org/obo/UBERON_0008428,ceratoglossus,musculus ceratoglossus +http://purl.obolibrary.org/obo/UBERON_0008429,cervical vertebral foramen, +http://purl.obolibrary.org/obo/UBERON_0008430,lumbar vertebral foramen, +http://purl.obolibrary.org/obo/UBERON_0008431,sacral foramen, +http://purl.obolibrary.org/obo/UBERON_0008432,thoracic vertebral foramen, +http://purl.obolibrary.org/obo/UBERON_0008433,lumbar vertebral arch,arch of lumbar vertebra +http://purl.obolibrary.org/obo/UBERON_0008434,cervical vertebral arch,arch of cervical vertebra +http://purl.obolibrary.org/obo/UBERON_0008435,vertebral arch of sacral segment, +http://purl.obolibrary.org/obo/UBERON_0008436,thoracic vertebral arch,arch of thoracic vertebra +http://purl.obolibrary.org/obo/UBERON_0008437,posterior arch of atlas,arcus posterior atlantis +http://purl.obolibrary.org/obo/UBERON_0008438,webbed interdigital region between manual digits, +http://purl.obolibrary.org/obo/UBERON_0008439,webbed interdigital region between pedal digits,toe web +http://purl.obolibrary.org/obo/UBERON_0008440,webbed autopod, +http://purl.obolibrary.org/obo/UBERON_0008441,webbed manus, +http://purl.obolibrary.org/obo/UBERON_0008442,webbed pes,webbed foot +http://purl.obolibrary.org/obo/UBERON_0008443,webbed digit, +http://purl.obolibrary.org/obo/UBERON_0008444,webbed manual digit,digit of webbed hand +http://purl.obolibrary.org/obo/UBERON_0008444,webbed manual digit,digit of webbed manus +http://purl.obolibrary.org/obo/UBERON_0008444,webbed manual digit,webbed finger +http://purl.obolibrary.org/obo/UBERON_0008445,webbed pedal digit,digit of webbed foot +http://purl.obolibrary.org/obo/UBERON_0008445,webbed pedal digit,digit of webbed pes +http://purl.obolibrary.org/obo/UBERON_0008445,webbed pedal digit,webbed toe +http://purl.obolibrary.org/obo/UBERON_0008446,flexor pollicis longus muscle, +http://purl.obolibrary.org/obo/UBERON_0008447,intertarsal joint, +http://purl.obolibrary.org/obo/UBERON_0008449,trochlear notch,semilunar notch of ulna +http://purl.obolibrary.org/obo/UBERON_0008450,psoas muscle,psoas +http://purl.obolibrary.org/obo/UBERON_0008453,rectus capitis anterior,anterior rectus capitis +http://purl.obolibrary.org/obo/UBERON_0008453,rectus capitis anterior,rectus capitis anterior muscle +http://purl.obolibrary.org/obo/UBERON_0008454,rectus capitis posterior major,greater posterior rectus capitis +http://purl.obolibrary.org/obo/UBERON_0008454,rectus capitis posterior major,rectus capitis posterior major muscle +http://purl.obolibrary.org/obo/UBERON_0008455,rectus capitis posterior minor,lesser posterior rectus capitis +http://purl.obolibrary.org/obo/UBERON_0008455,rectus capitis posterior minor,rectus capitis posterior minor muscle +http://purl.obolibrary.org/obo/UBERON_0008456,prezygapophysis of lumbar vertebra,cranial articular process of lumbar vertebra +http://purl.obolibrary.org/obo/UBERON_0008456,prezygapophysis of lumbar vertebra,superior articular process of lumbar vertebra +http://purl.obolibrary.org/obo/UBERON_0008457,prezygapophysis of sacral vertebra,articular process of sacral segment +http://purl.obolibrary.org/obo/UBERON_0008457,prezygapophysis of sacral vertebra,processus articularis superior (os sacrum) +http://purl.obolibrary.org/obo/UBERON_0008457,prezygapophysis of sacral vertebra,processus articularis superior ossis sacri +http://purl.obolibrary.org/obo/UBERON_0008457,prezygapophysis of sacral vertebra,superior articular process of sacral segment +http://purl.obolibrary.org/obo/UBERON_0008457,prezygapophysis of sacral vertebra,superior articular process of sacral vertebra +http://purl.obolibrary.org/obo/UBERON_0008457,prezygapophysis of sacral vertebra,superior articular process of sacrum +http://purl.obolibrary.org/obo/UBERON_0008459,prezygapophysis of cervical vertebra,superior articular process of cervical segment +http://purl.obolibrary.org/obo/UBERON_0008459,prezygapophysis of cervical vertebra,superior articular process of cervical vertebra +http://purl.obolibrary.org/obo/UBERON_0008460,prezygapophysis of thoracic vertebra,cranial articular process of thoracic vertebra +http://purl.obolibrary.org/obo/UBERON_0008460,prezygapophysis of thoracic vertebra,processus articularis (zygapophysis) thoracicus superior +http://purl.obolibrary.org/obo/UBERON_0008460,prezygapophysis of thoracic vertebra,superior apophyseal process +http://purl.obolibrary.org/obo/UBERON_0008460,prezygapophysis of thoracic vertebra,superior articular process of thoracic vertebra +http://purl.obolibrary.org/obo/UBERON_0008461,postzygapophysis of lumbar vertebra,caudal articular process of lumbar vertebra +http://purl.obolibrary.org/obo/UBERON_0008461,postzygapophysis of lumbar vertebra,inferior articular process of lumbar vertebra +http://purl.obolibrary.org/obo/UBERON_0008462,postzygapophysis of cervical vertebra,inferior articular process of cervical vertebra +http://purl.obolibrary.org/obo/UBERON_0008463,postzygapophysis of thoracic vertebra,caudal articular process of thoracic vertebra +http://purl.obolibrary.org/obo/UBERON_0008463,postzygapophysis of thoracic vertebra,inferior apophyseal process +http://purl.obolibrary.org/obo/UBERON_0008463,postzygapophysis of thoracic vertebra,inferior articular process of thoracic vertebra +http://purl.obolibrary.org/obo/UBERON_0008463,postzygapophysis of thoracic vertebra,inferior zygapophysis +http://purl.obolibrary.org/obo/UBERON_0008463,postzygapophysis of thoracic vertebra,processus articularis (zygapophysis) thoracicus inferior +http://purl.obolibrary.org/obo/UBERON_0008464,abductor hallucis muscle, +http://purl.obolibrary.org/obo/UBERON_0008465,abductor pollicis brevis muscle, +http://purl.obolibrary.org/obo/UBERON_0008488,cremaster muscle,cremaster +http://purl.obolibrary.org/obo/UBERON_0008488,cremaster muscle,muscle of Riolan (cremaster) +http://purl.obolibrary.org/obo/UBERON_0008488,cremaster muscle,musculus cremaster +http://purl.obolibrary.org/obo/UBERON_0008521,gluteus minimus,gluteus minimus muscle +http://purl.obolibrary.org/obo/UBERON_0008522,nasal muscle,muscle of nose +http://purl.obolibrary.org/obo/UBERON_0008523,infrahyoid muscle,musculus infrahyoideus +http://purl.obolibrary.org/obo/UBERON_0008529,piriformis muscle,m.piriformis +http://purl.obolibrary.org/obo/UBERON_0008529,piriformis muscle,piriformis +http://purl.obolibrary.org/obo/UBERON_0008537,quadratus femoris, +http://purl.obolibrary.org/obo/UBERON_0008544,splenius cervicis, +http://purl.obolibrary.org/obo/UBERON_0008546,iliocostalis cervicis muscle, +http://purl.obolibrary.org/obo/UBERON_0008549,prevertebral muscle,flexor muscle of vertebral column +http://purl.obolibrary.org/obo/UBERON_0008549,prevertebral muscle,prevertebral muscle +http://purl.obolibrary.org/obo/UBERON_0008571,suprahyoid muscle, +http://purl.obolibrary.org/obo/UBERON_0008572,posterior crico-arytenoid,posterior cricoarytenoid +http://purl.obolibrary.org/obo/UBERON_0008572,posterior crico-arytenoid,posterior cricoarytenoid muscle +http://purl.obolibrary.org/obo/UBERON_0008572,posterior crico-arytenoid,posterior cricoarytenoideus +http://purl.obolibrary.org/obo/UBERON_0008573,lateral crico-arytenoid,lateral cricoarytenoid +http://purl.obolibrary.org/obo/UBERON_0008573,lateral crico-arytenoid,lateral cricoarytenoid muscle +http://purl.obolibrary.org/obo/UBERON_0008573,lateral crico-arytenoid,lateral cricoarytenoideus +http://purl.obolibrary.org/obo/UBERON_0008574,transverse arytenoid, +http://purl.obolibrary.org/obo/UBERON_0008575,oblique arytenoid, +http://purl.obolibrary.org/obo/UBERON_0008576,thyro-arytenoid,thyroarytenoid +http://purl.obolibrary.org/obo/UBERON_0008577,vocalis muscle,vocal muscle +http://purl.obolibrary.org/obo/UBERON_0008577,vocalis muscle,vocalis +http://purl.obolibrary.org/obo/UBERON_0008582,superior longitudinal muscle of tongue,musculus longitudinalis superior +http://purl.obolibrary.org/obo/UBERON_0008583,transverse muscle of tongue,intrinsic tongue muscle transverse component +http://purl.obolibrary.org/obo/UBERON_0008583,transverse muscle of tongue,transverse lingual muscle +http://purl.obolibrary.org/obo/UBERON_0008584,vertical muscle of tongue,intrinsic tongue muscle vertical component +http://purl.obolibrary.org/obo/UBERON_0008584,vertical muscle of tongue,vertical lingual muscle +http://purl.obolibrary.org/obo/UBERON_0008585,levator veli palatini, +http://purl.obolibrary.org/obo/UBERON_0008586,tensor veli palatini,tensor veli palatini muscle +http://purl.obolibrary.org/obo/UBERON_0008588,procerus, +http://purl.obolibrary.org/obo/UBERON_0008589,depressor septi nasi,depressor septi +http://purl.obolibrary.org/obo/UBERON_0008591,depressor supercilii, +http://purl.obolibrary.org/obo/UBERON_0008592,levator labii superioris alaeque nasi, +http://purl.obolibrary.org/obo/UBERON_0008593,zygomaticus major muscle,zygomatic muscle +http://purl.obolibrary.org/obo/UBERON_0008594,zygomaticus minor muscle,"musculus quadratus labii superioris, zygomatic head" +http://purl.obolibrary.org/obo/UBERON_0008594,zygomaticus minor muscle,musculus zygomaticus minor +http://purl.obolibrary.org/obo/UBERON_0008594,zygomaticus minor muscle,"square muscle of the upper lip, zygomatic head" +http://purl.obolibrary.org/obo/UBERON_0008595,levator anguli oris,levator anguli oris muscle +http://purl.obolibrary.org/obo/UBERON_0008596,mentalis muscle,mentalis +http://purl.obolibrary.org/obo/UBERON_0008596,mentalis muscle,musculus mentalis +http://purl.obolibrary.org/obo/UBERON_0008597,depressor anguli oris muscle, +http://purl.obolibrary.org/obo/UBERON_0008598,risorius muscle,musculus risorius +http://purl.obolibrary.org/obo/UBERON_0008598,risorius muscle,risorius +http://purl.obolibrary.org/obo/UBERON_0008603,helicis major,musculus helicis major +http://purl.obolibrary.org/obo/UBERON_0008604,helicis minor, +http://purl.obolibrary.org/obo/UBERON_0008605,tragicus muscle,tragicus +http://purl.obolibrary.org/obo/UBERON_0008606,antitragicus muscle,antitragicus +http://purl.obolibrary.org/obo/UBERON_0008607,transverse muscle of auricle,transverse muscle of pinna +http://purl.obolibrary.org/obo/UBERON_0008607,transverse muscle of auricle,transversus auriculae +http://purl.obolibrary.org/obo/UBERON_0008607,transverse muscle of auricle,transversus auricularis +http://purl.obolibrary.org/obo/UBERON_0008608,oblique muscle of auricle,oblique muscle of pinna +http://purl.obolibrary.org/obo/UBERON_0008608,oblique muscle of auricle,obliquus auriculae +http://purl.obolibrary.org/obo/UBERON_0008608,oblique muscle of auricle,obliquus auricularis muscle +http://purl.obolibrary.org/obo/UBERON_0008609,transversus menti muscle,transverse menti +http://purl.obolibrary.org/obo/UBERON_0008611,scalene muscle,scalene muscles +http://purl.obolibrary.org/obo/UBERON_0008611,scalene muscle,scalenus muscle +http://purl.obolibrary.org/obo/UBERON_0008612,muscle of pelvic diaphragm,muscle of pelvic floor +http://purl.obolibrary.org/obo/UBERON_0008612,muscle of pelvic diaphragm,pelvic diaphragm muscle +http://purl.obolibrary.org/obo/UBERON_0008617,innermost intercostal muscle, +http://purl.obolibrary.org/obo/UBERON_0008618,subcostal muscle, +http://purl.obolibrary.org/obo/UBERON_0008622,scalenus anterior,anterior scalene +http://purl.obolibrary.org/obo/UBERON_0008712,stylohyoid muscle, +http://purl.obolibrary.org/obo/UBERON_0008713,pectoral girdle and thoracic body wall skeletal muscle, +http://purl.obolibrary.org/obo/UBERON_0008715,muscle tissue of prostate,prostate gland muscle tissue +http://purl.obolibrary.org/obo/UBERON_0008715,muscle tissue of prostate,prostate muscle tissue +http://purl.obolibrary.org/obo/UBERON_0008715,muscle tissue of prostate,prostatic muscle +http://purl.obolibrary.org/obo/UBERON_0008715,muscle tissue of prostate,prostatic musclular tissue +http://purl.obolibrary.org/obo/UBERON_0008716,hilum of kidney,hilar area of the kidney +http://purl.obolibrary.org/obo/UBERON_0008716,hilum of kidney,renal hilum +http://purl.obolibrary.org/obo/UBERON_0008772,proximal epiphysis of tibia,head of tibia +http://purl.obolibrary.org/obo/UBERON_0008772,proximal epiphysis of tibia,proximal end of tibia +http://purl.obolibrary.org/obo/UBERON_0008772,proximal epiphysis of tibia,proximal tibial epiphysis +http://purl.obolibrary.org/obo/UBERON_0008772,proximal epiphysis of tibia,upper end of tibia +http://purl.obolibrary.org/obo/UBERON_0008775,proximal epiphysis of fibula,caput fibulae +http://purl.obolibrary.org/obo/UBERON_0008775,proximal epiphysis of fibula,head of fibula +http://purl.obolibrary.org/obo/UBERON_0008775,proximal epiphysis of fibula,proximal end of fibula +http://purl.obolibrary.org/obo/UBERON_0008775,proximal epiphysis of fibula,upper end of fibula +http://purl.obolibrary.org/obo/UBERON_0008776,inner cell mass derived hypoblast,primitive endoderm +http://purl.obolibrary.org/obo/UBERON_0008777,hypaxial musculature,hypaxial muscles +http://purl.obolibrary.org/obo/UBERON_0008778,epaxial musculature,epaxial muscles +http://purl.obolibrary.org/obo/UBERON_0008779,subclavius, +http://purl.obolibrary.org/obo/UBERON_0008780,inner cell mass derived epiblast, +http://purl.obolibrary.org/obo/UBERON_0008781,blastodisc derived epiblast, +http://purl.obolibrary.org/obo/UBERON_0008783,dorsal venous arch,arcus venosus dorsalis pedis +http://purl.obolibrary.org/obo/UBERON_0008783,dorsal venous arch,dorsal venous arch of foot +http://purl.obolibrary.org/obo/UBERON_0008784,lower limb segment,free lower limb segment +http://purl.obolibrary.org/obo/UBERON_0008784,lower limb segment,free lower limb subdivision +http://purl.obolibrary.org/obo/UBERON_0008784,lower limb segment,segment of free lower limb +http://purl.obolibrary.org/obo/UBERON_0008784,lower limb segment,subdivision of free lower limb +http://purl.obolibrary.org/obo/UBERON_0008785,upper limb segment,free upper limb segment +http://purl.obolibrary.org/obo/UBERON_0008785,upper limb segment,free upper limb subdivision +http://purl.obolibrary.org/obo/UBERON_0008785,upper limb segment,segment of free upper limb +http://purl.obolibrary.org/obo/UBERON_0008785,upper limb segment,subdivision of free upper limb +http://purl.obolibrary.org/obo/UBERON_0008786,third trochanter, +http://purl.obolibrary.org/obo/UBERON_0008787,fourth trochanter, +http://purl.obolibrary.org/obo/UBERON_0008788,posterior cranial fossa, +http://purl.obolibrary.org/obo/UBERON_0008789,cranial fossa, +http://purl.obolibrary.org/obo/UBERON_0008790,rugal fold,ruga +http://purl.obolibrary.org/obo/UBERON_0008791,rugal fold of stomach,gastric ruga +http://purl.obolibrary.org/obo/UBERON_0008791,rugal fold of stomach,gastric rugae +http://purl.obolibrary.org/obo/UBERON_0008791,rugal fold of stomach,ruga of stomach +http://purl.obolibrary.org/obo/UBERON_0008798,rugal fold of vagina,ruga of vagina +http://purl.obolibrary.org/obo/UBERON_0008798,rugal fold of vagina,vaginal ruga +http://purl.obolibrary.org/obo/UBERON_0008799,transverse palatine fold,hard palate palatal rugae +http://purl.obolibrary.org/obo/UBERON_0008799,transverse palatine fold,hard palate ruga +http://purl.obolibrary.org/obo/UBERON_0008799,transverse palatine fold,impressiones rugales +http://purl.obolibrary.org/obo/UBERON_0008799,transverse palatine fold,palatal rugae +http://purl.obolibrary.org/obo/UBERON_0008799,transverse palatine fold,palatine fold +http://purl.obolibrary.org/obo/UBERON_0008799,transverse palatine fold,palatine rugae +http://purl.obolibrary.org/obo/UBERON_0008799,transverse palatine fold,plica palatina transversa +http://purl.obolibrary.org/obo/UBERON_0008799,transverse palatine fold,plicae palatinae transversae +http://purl.obolibrary.org/obo/UBERON_0008799,transverse palatine fold,ruga of palate +http://purl.obolibrary.org/obo/UBERON_0008799,transverse palatine fold,ruga palatina +http://purl.obolibrary.org/obo/UBERON_0008799,transverse palatine fold,rugae of palate +http://purl.obolibrary.org/obo/UBERON_0008799,transverse palatine fold,rugae palatinae +http://purl.obolibrary.org/obo/UBERON_0008799,transverse palatine fold,transverse palatine folds +http://purl.obolibrary.org/obo/UBERON_0008799,transverse palatine fold,transverse palatine folds set +http://purl.obolibrary.org/obo/UBERON_0008799,transverse palatine fold,transverse palatine ridge +http://purl.obolibrary.org/obo/UBERON_0008800,parietal endoderm, +http://purl.obolibrary.org/obo/UBERON_0008801,parotid gland primordium, +http://purl.obolibrary.org/obo/UBERON_0008802,cheek pouch,buccal pouch +http://purl.obolibrary.org/obo/UBERON_0008803,skin of cheek,cheek skin +http://purl.obolibrary.org/obo/UBERON_0008804,stylopharyngeus muscle,stylopharyngeus +http://purl.obolibrary.org/obo/UBERON_0008805,gingival groove,gingival sulcus +http://purl.obolibrary.org/obo/UBERON_0008805,gingival groove,sulcus gingivalis +http://purl.obolibrary.org/obo/UBERON_0008805,gingival groove,tooth-gingiva interface +http://purl.obolibrary.org/obo/UBERON_0008806,buccal funnel,suctorial disc +http://purl.obolibrary.org/obo/UBERON_0008806,buccal funnel,suctorial disk +http://purl.obolibrary.org/obo/UBERON_0008807,coagulating gland, +http://purl.obolibrary.org/obo/UBERON_0008808,prostate gland dorsolateral lobe, +http://purl.obolibrary.org/obo/UBERON_0008809,foramina of scarpa, +http://purl.obolibrary.org/obo/UBERON_0008810,nasopalatine nerve,Scarpa's nerve +http://purl.obolibrary.org/obo/UBERON_0008810,nasopalatine nerve,naso-palatine nerve +http://purl.obolibrary.org/obo/UBERON_0008810,nasopalatine nerve,nasopalatine +http://purl.obolibrary.org/obo/UBERON_0008810,nasopalatine nerve,nasopalatine nerves +http://purl.obolibrary.org/obo/UBERON_0008810,nasopalatine nerve,nervus nasopalatinus +http://purl.obolibrary.org/obo/UBERON_0008811,intromittent organ,aedeagus +http://purl.obolibrary.org/obo/UBERON_0008811,intromittent organ,copulatory organ +http://purl.obolibrary.org/obo/UBERON_0008811,intromittent organ,penis +http://purl.obolibrary.org/obo/UBERON_0008812,hemipenis, +http://purl.obolibrary.org/obo/UBERON_0008813,helicotrema,Scarpa's orifice +http://purl.obolibrary.org/obo/UBERON_0008814,pharyngeal arch system,embryonic pharyngeal complex +http://purl.obolibrary.org/obo/UBERON_0008814,pharyngeal arch system,pharyngeal apparatus +http://purl.obolibrary.org/obo/UBERON_0008814,pharyngeal arch system,pharyngeal system +http://purl.obolibrary.org/obo/UBERON_0008815,pharyngeal slit, +http://purl.obolibrary.org/obo/UBERON_0008816,embryonic head, +http://purl.obolibrary.org/obo/UBERON_0008817,thymus primordium endoderm, +http://purl.obolibrary.org/obo/UBERON_0008818,superior mediastinum,superior mediastinal part of chest +http://purl.obolibrary.org/obo/UBERON_0008819,inferior mediastinum,inferior mediastinal part of chest +http://purl.obolibrary.org/obo/UBERON_0008820,anterior mediastinum,anterior mediastinal part of chest +http://purl.obolibrary.org/obo/UBERON_0008821,middle mediastinum,middle mediastinal part of chest +http://purl.obolibrary.org/obo/UBERON_0008822,posterior mediastinum,posterior mediastinal part of chest +http://purl.obolibrary.org/obo/UBERON_0008823,neural tube derived brain, +http://purl.obolibrary.org/obo/UBERON_0008824,duct of epididymis,epididymal duct +http://purl.obolibrary.org/obo/UBERON_0008824,duct of epididymis,epididymis duct +http://purl.obolibrary.org/obo/UBERON_0008826,pulmonary surfactant,alveolar surfactant +http://purl.obolibrary.org/obo/UBERON_0008826,pulmonary surfactant,lung surfactant +http://purl.obolibrary.org/obo/UBERON_0008826,pulmonary surfactant,type II pneumocyte secretion +http://purl.obolibrary.org/obo/UBERON_0008827,murine forestomach, +http://purl.obolibrary.org/obo/UBERON_0008828,presphenoid bone,presphenoidal bone +http://purl.obolibrary.org/obo/UBERON_0008829,cerebellum external granule cell layer,outer granular layer of cerebellar cortex +http://purl.obolibrary.org/obo/UBERON_0008830,cerebellum internal granule cell layer,inner granular layer of cerebellar cortex +http://purl.obolibrary.org/obo/UBERON_0008831,inner spiral sulcus,internal spiral sulcus +http://purl.obolibrary.org/obo/UBERON_0008831,inner spiral sulcus,sulcus spiralis internus +http://purl.obolibrary.org/obo/UBERON_0008832,outer spiral sulcus,external spiral sulcus +http://purl.obolibrary.org/obo/UBERON_0008832,outer spiral sulcus,sulcus spiralis externus +http://purl.obolibrary.org/obo/UBERON_0008833,great auricular nerve,nervus auricularis magnus +http://purl.obolibrary.org/obo/UBERON_0008834,prostomium, +http://purl.obolibrary.org/obo/UBERON_0008835,hepatic diverticulum,liver diverticulum +http://purl.obolibrary.org/obo/UBERON_0008836,liver bud, +http://purl.obolibrary.org/obo/UBERON_0008837,palmar/plantar part of autopod, +http://purl.obolibrary.org/obo/UBERON_0008838,metapodial pad, +http://purl.obolibrary.org/obo/UBERON_0008839,palmar pad, +http://purl.obolibrary.org/obo/UBERON_0008840,plantar pad, +http://purl.obolibrary.org/obo/UBERON_0008841,suspensory ligament, +http://purl.obolibrary.org/obo/UBERON_0008842,suspensory ligament of testis, +http://purl.obolibrary.org/obo/UBERON_0008843,gubernaculum testis,male gubernaculum +http://purl.obolibrary.org/obo/UBERON_0008844,gubernaculum (female),female gubernaculum +http://purl.obolibrary.org/obo/UBERON_0008845,nonskeletal ligament,non-skeletal ligament +http://purl.obolibrary.org/obo/UBERON_0008846,skeletal ligament,articular larua +http://purl.obolibrary.org/obo/UBERON_0008846,skeletal ligament,articular ligament +http://purl.obolibrary.org/obo/UBERON_0008846,skeletal ligament,true ligament +http://purl.obolibrary.org/obo/UBERON_0008847,ovarian ligament,ligament of ovary +http://purl.obolibrary.org/obo/UBERON_0008847,ovarian ligament,ligamentum ovarii proprium +http://purl.obolibrary.org/obo/UBERON_0008847,ovarian ligament,proper ovarian ligament +http://purl.obolibrary.org/obo/UBERON_0008848,cranial suspensory ligament, +http://purl.obolibrary.org/obo/UBERON_0008851,ectoplacental cavity,epamniotic cavity +http://purl.obolibrary.org/obo/UBERON_0008852,visceral yolk sac,secondary yolk sac +http://purl.obolibrary.org/obo/UBERON_0008852,visceral yolk sac,umbilical vesicle +http://purl.obolibrary.org/obo/UBERON_0008852,visceral yolk sac,vitelline sac +http://purl.obolibrary.org/obo/UBERON_0008853,parietal yolk sac,primary yolk sac +http://purl.obolibrary.org/obo/UBERON_0008854,root of molar tooth,molar root +http://purl.obolibrary.org/obo/UBERON_0008854,root of molar tooth,molar tooth root +http://purl.obolibrary.org/obo/UBERON_0008855,placenta metrial gland, +http://purl.obolibrary.org/obo/UBERON_0008856,stomach muscularis externa,gastric muscularis +http://purl.obolibrary.org/obo/UBERON_0008856,stomach muscularis externa,muscle layer of stomach +http://purl.obolibrary.org/obo/UBERON_0008856,stomach muscularis externa,muscularis externa of stomach +http://purl.obolibrary.org/obo/UBERON_0008856,stomach muscularis externa,tunica muscularis (gaster) +http://purl.obolibrary.org/obo/UBERON_0008856,stomach muscularis externa,tunica muscularis gastris +http://purl.obolibrary.org/obo/UBERON_0008857,stomach smooth muscle circular layer,circular layer of gastric muscularis +http://purl.obolibrary.org/obo/UBERON_0008857,stomach smooth muscle circular layer,circular muscle layer of stomach +http://purl.obolibrary.org/obo/UBERON_0008857,stomach smooth muscle circular layer,middle circular muscle layer of stomach +http://purl.obolibrary.org/obo/UBERON_0008857,stomach smooth muscle circular layer,stratum circulare (tunica muscularis)(gaster) +http://purl.obolibrary.org/obo/UBERON_0008857,stomach smooth muscle circular layer,stratum circulare gastris +http://purl.obolibrary.org/obo/UBERON_0008857,stomach smooth muscle circular layer,stratum circulare tunicae muscularis gastricae +http://purl.obolibrary.org/obo/UBERON_0008858,pyloric canal,canalis pyloricus +http://purl.obolibrary.org/obo/UBERON_0008859,cardiac gastric gland,gardiac gland +http://purl.obolibrary.org/obo/UBERON_0008859,cardiac gastric gland,gastric cardiac gland +http://purl.obolibrary.org/obo/UBERON_0008859,cardiac gastric gland,gastric cardiac mucuous gland +http://purl.obolibrary.org/obo/UBERON_0008859,cardiac gastric gland,gastric gland of cardia +http://purl.obolibrary.org/obo/UBERON_0008859,cardiac gastric gland,glandula cardiaca (gaster) +http://purl.obolibrary.org/obo/UBERON_0008860,intermediate gastric gland, +http://purl.obolibrary.org/obo/UBERON_0008861,pyloric gastric gland,glandula pylorica +http://purl.obolibrary.org/obo/UBERON_0008861,pyloric gastric gland,pyloric antrum gland +http://purl.obolibrary.org/obo/UBERON_0008861,pyloric gastric gland,pyloric gland +http://purl.obolibrary.org/obo/UBERON_0008861,pyloric gastric gland,pyloric mucuous gland +http://purl.obolibrary.org/obo/UBERON_0008862,stomach smooth muscle inner oblique layer,inner oblique muscle layer of stomach +http://purl.obolibrary.org/obo/UBERON_0008862,stomach smooth muscle inner oblique layer,oblique fiber layer of gastric muscularis +http://purl.obolibrary.org/obo/UBERON_0008862,stomach smooth muscle inner oblique layer,oblique muscle layer of stomach +http://purl.obolibrary.org/obo/UBERON_0008863,stomach smooth muscle outer longitudinal layer,longitudinal layer of gastric muscularis +http://purl.obolibrary.org/obo/UBERON_0008863,stomach smooth muscle outer longitudinal layer,muscle layer 1 of stomach +http://purl.obolibrary.org/obo/UBERON_0008863,stomach smooth muscle outer longitudinal layer,outer longitudinal muscle layer of stomach +http://purl.obolibrary.org/obo/UBERON_0008863,stomach smooth muscle outer longitudinal layer,stratum longitudinale (tunica muscularis)(gaster) +http://purl.obolibrary.org/obo/UBERON_0008863,stomach smooth muscle outer longitudinal layer,stratum longitudinale tunicae muscularis gastricae +http://purl.obolibrary.org/obo/UBERON_0008866,enamel knot, +http://purl.obolibrary.org/obo/UBERON_0008867,trabecular network of bone, +http://purl.obolibrary.org/obo/UBERON_0008870,pulmonary alveolar parenchyma, +http://purl.obolibrary.org/obo/UBERON_0008873,alveolar pore, +http://purl.obolibrary.org/obo/UBERON_0008874,pulmonary acinus,acinus pulmonaris +http://purl.obolibrary.org/obo/UBERON_0008874,pulmonary acinus,arbor alveolaris +http://purl.obolibrary.org/obo/UBERON_0008874,pulmonary acinus,lobulus pulmonis primarius +http://purl.obolibrary.org/obo/UBERON_0008874,pulmonary acinus,primary pulmonary lobule +http://purl.obolibrary.org/obo/UBERON_0008874,pulmonary acinus,respiratory lobule +http://purl.obolibrary.org/obo/UBERON_0008876,hypodermis skeletal muscle layer,hypodermal muscle layer +http://purl.obolibrary.org/obo/UBERON_0008876,hypodermis skeletal muscle layer,hypodermis muscle layer +http://purl.obolibrary.org/obo/UBERON_0008876,hypodermis skeletal muscle layer,superficial fascia muscular layer +http://purl.obolibrary.org/obo/UBERON_0008877,epidermal-dermal junction,dermal-epidermal junction +http://purl.obolibrary.org/obo/UBERON_0008877,epidermal-dermal junction,dermo-epidermal junction +http://purl.obolibrary.org/obo/UBERON_0008877,epidermal-dermal junction,dermoepidermal junction +http://purl.obolibrary.org/obo/UBERON_0008877,epidermal-dermal junction,epidermal dermol junction +http://purl.obolibrary.org/obo/UBERON_0008878,palmar part of manus,front of hand +http://purl.obolibrary.org/obo/UBERON_0008878,palmar part of manus,palm +http://purl.obolibrary.org/obo/UBERON_0008878,palmar part of manus,palm of hand +http://purl.obolibrary.org/obo/UBERON_0008878,palmar part of manus,palmar region +http://purl.obolibrary.org/obo/UBERON_0008878,palmar part of manus,regio palmaris +http://purl.obolibrary.org/obo/UBERON_0008879,ligament of pinna,auricular ligament +http://purl.obolibrary.org/obo/UBERON_0008879,ligament of pinna,ligament of auricle +http://purl.obolibrary.org/obo/UBERON_0008879,ligament of pinna,pinna ligament +http://purl.obolibrary.org/obo/UBERON_0008880,annelid pygidium, +http://purl.obolibrary.org/obo/UBERON_0008881,rostral migratory stream, +http://purl.obolibrary.org/obo/UBERON_0008882,spinal cord commissure, +http://purl.obolibrary.org/obo/UBERON_0008883,osteoid,osteoid tissue +http://purl.obolibrary.org/obo/UBERON_0008883,osteoid,pre-bone +http://purl.obolibrary.org/obo/UBERON_0008883,osteoid,prebone +http://purl.obolibrary.org/obo/UBERON_0008883,osteoid,prebone tissue +http://purl.obolibrary.org/obo/UBERON_0008884,left putamen, +http://purl.obolibrary.org/obo/UBERON_0008885,right putamen, +http://purl.obolibrary.org/obo/UBERON_0008886,pulmonary vascular system,pulmonary circulatory system +http://purl.obolibrary.org/obo/UBERON_0008886,pulmonary vascular system,pulmonary system +http://purl.obolibrary.org/obo/UBERON_0008887,rectal venous plexus, +http://purl.obolibrary.org/obo/UBERON_0008888,vesical venous plexus, +http://purl.obolibrary.org/obo/UBERON_0008889,uterine venous plexus, +http://purl.obolibrary.org/obo/UBERON_0008891,external gill, +http://purl.obolibrary.org/obo/UBERON_0008892,internal gill, +http://purl.obolibrary.org/obo/UBERON_0008894,pharyngeal gill precursor,gill primordium +http://purl.obolibrary.org/obo/UBERON_0008894,pharyngeal gill precursor,internal gill bud +http://purl.obolibrary.org/obo/UBERON_0008895,splanchnocranium,pharyngeal endoskeleton +http://purl.obolibrary.org/obo/UBERON_0008895,splanchnocranium,viscerocranium +http://purl.obolibrary.org/obo/UBERON_0008896,post-hyoid pharyngeal arch,branchial arch +http://purl.obolibrary.org/obo/UBERON_0008896,post-hyoid pharyngeal arch,branchial arches +http://purl.obolibrary.org/obo/UBERON_0008896,post-hyoid pharyngeal arch,branchial bar +http://purl.obolibrary.org/obo/UBERON_0008896,post-hyoid pharyngeal arch,branchial bars +http://purl.obolibrary.org/obo/UBERON_0008896,post-hyoid pharyngeal arch,gill arch +http://purl.obolibrary.org/obo/UBERON_0008896,post-hyoid pharyngeal arch,gill arches 1-5 +http://purl.obolibrary.org/obo/UBERON_0008896,post-hyoid pharyngeal arch,pharyngeal arch 3-7 +http://purl.obolibrary.org/obo/UBERON_0008896,post-hyoid pharyngeal arch,visceral arches 3-7 +http://purl.obolibrary.org/obo/UBERON_0008897,fin, +http://purl.obolibrary.org/obo/UBERON_0008902,lateral recess of third ventricle,lateral recess of diencephalic ventricle +http://purl.obolibrary.org/obo/UBERON_0008904,neuromast,lateral line neuromast +http://purl.obolibrary.org/obo/UBERON_0008904,neuromast,neuromast organ +http://purl.obolibrary.org/obo/UBERON_0008904,neuromast,neuromasts +http://purl.obolibrary.org/obo/UBERON_0008906,lateral line nerve,lateral line nerves +http://purl.obolibrary.org/obo/UBERON_0008907,dermal bone, +http://purl.obolibrary.org/obo/UBERON_0008909,perichordal bone,perichordal bones +http://purl.obolibrary.org/obo/UBERON_0008911,chondral bone, +http://purl.obolibrary.org/obo/UBERON_0008913,perichondral bone,perichondral bones +http://purl.obolibrary.org/obo/UBERON_0008915,pore, +http://purl.obolibrary.org/obo/UBERON_0008917,ampullary organ,ampullary electroreceptor +http://purl.obolibrary.org/obo/UBERON_0008917,ampullary organ,ampullary electroreceptor organ +http://purl.obolibrary.org/obo/UBERON_0008917,ampullary organ,electrosensory ampullary organ +http://purl.obolibrary.org/obo/UBERON_0008918,ampulla of Lorenzini,ampullae of Lorenzini +http://purl.obolibrary.org/obo/UBERON_0008921,substratum of layer of retina, +http://purl.obolibrary.org/obo/UBERON_0008922,sublaminar layer S1, +http://purl.obolibrary.org/obo/UBERON_0008923,sublaminar layer S2, +http://purl.obolibrary.org/obo/UBERON_0008924,sublaminar layer S3, +http://purl.obolibrary.org/obo/UBERON_0008925,sublaminar layer S4, +http://purl.obolibrary.org/obo/UBERON_0008926,sublaminar layer S5, +http://purl.obolibrary.org/obo/UBERON_0008927,sublaminar layers S1 or S2, +http://purl.obolibrary.org/obo/UBERON_0008928,sublaminar layers S2 or S3, +http://purl.obolibrary.org/obo/UBERON_0008929,sublaminar layers S4 or S5, +http://purl.obolibrary.org/obo/UBERON_0008930,somatosensory cortex,primary somatic sensory cortex +http://purl.obolibrary.org/obo/UBERON_0008930,somatosensory cortex,somatic sensory cortex +http://purl.obolibrary.org/obo/UBERON_0008930,somatosensory cortex,somatosensory area +http://purl.obolibrary.org/obo/UBERON_0008930,somatosensory cortex,somatosensory areas +http://purl.obolibrary.org/obo/UBERON_0008930,somatosensory cortex,somesthetic area +http://purl.obolibrary.org/obo/UBERON_0008933,primary somatosensory cortex,S1 +http://purl.obolibrary.org/obo/UBERON_0008933,primary somatosensory cortex,S1C +http://purl.obolibrary.org/obo/UBERON_0008933,primary somatosensory cortex,postcentral gyrus +http://purl.obolibrary.org/obo/UBERON_0008933,primary somatosensory cortex,primary somatosensory area +http://purl.obolibrary.org/obo/UBERON_0008933,primary somatosensory cortex,"primary somatosensory cortex (area S1, areas 3,1,2)" +http://purl.obolibrary.org/obo/UBERON_0008933,primary somatosensory cortex,somatosensory area 1 +http://purl.obolibrary.org/obo/UBERON_0008934,secondary somatosensory cortex,somatosensory area 2 +http://purl.obolibrary.org/obo/UBERON_0008935,gastropod albumen gland, +http://purl.obolibrary.org/obo/UBERON_0008936,gastropod genital pore,genital pore +http://purl.obolibrary.org/obo/UBERON_0008937,visceral hump, +http://purl.obolibrary.org/obo/UBERON_0008939,pedal ganglion, +http://purl.obolibrary.org/obo/UBERON_0008940,parietal ganglion, +http://purl.obolibrary.org/obo/UBERON_0008941,pleural ganglion, +http://purl.obolibrary.org/obo/UBERON_0008942,gastropod cerebral ganglion,cerebral ganglion +http://purl.obolibrary.org/obo/UBERON_0008943,headfoot, +http://purl.obolibrary.org/obo/UBERON_0008944,albumen,egg white +http://purl.obolibrary.org/obo/UBERON_0008945,extraembryonic endoderm, +http://purl.obolibrary.org/obo/UBERON_0008946,lung parenchyma,parenchyma of lung +http://purl.obolibrary.org/obo/UBERON_0008946,lung parenchyma,pulmonary parenchyma +http://purl.obolibrary.org/obo/UBERON_0008946,lung parenchyma,respiratory portion of lung +http://purl.obolibrary.org/obo/UBERON_0008947,respiratory primordium, +http://purl.obolibrary.org/obo/UBERON_0008948,upper lobe of lung,cranial lobe of lung +http://purl.obolibrary.org/obo/UBERON_0008948,upper lobe of lung,lobus superior +http://purl.obolibrary.org/obo/UBERON_0008948,upper lobe of lung,lobus superior pulmonis +http://purl.obolibrary.org/obo/UBERON_0008948,upper lobe of lung,superior lobe of lung +http://purl.obolibrary.org/obo/UBERON_0008949,lower lobe of lung,inferior lobe of lung +http://purl.obolibrary.org/obo/UBERON_0008949,lower lobe of lung,lobus inferior +http://purl.obolibrary.org/obo/UBERON_0008949,lower lobe of lung,lobus inferior pulmonis +http://purl.obolibrary.org/obo/UBERON_0008950,azygous lobe of lung, +http://purl.obolibrary.org/obo/UBERON_0008951,left lung lobe,lobe of left lung +http://purl.obolibrary.org/obo/UBERON_0008951,left lung lobe,lobe of the left lung +http://purl.obolibrary.org/obo/UBERON_0008952,upper lobe of left lung,left lung cranial lobe +http://purl.obolibrary.org/obo/UBERON_0008952,upper lobe of left lung,left upper lobe +http://purl.obolibrary.org/obo/UBERON_0008952,upper lobe of left lung,left upper lobe of lung +http://purl.obolibrary.org/obo/UBERON_0008952,upper lobe of left lung,lobus superior (pulmo sinister) +http://purl.obolibrary.org/obo/UBERON_0008952,upper lobe of left lung,lobus superior pulmonis sinistri +http://purl.obolibrary.org/obo/UBERON_0008952,upper lobe of left lung,superior lobe of left lung +http://purl.obolibrary.org/obo/UBERON_0008953,lower lobe of left lung,inferior lobe of left lung +http://purl.obolibrary.org/obo/UBERON_0008953,lower lobe of left lung,left lower lobe +http://purl.obolibrary.org/obo/UBERON_0008953,lower lobe of left lung,left lower lobe of lung +http://purl.obolibrary.org/obo/UBERON_0008953,lower lobe of left lung,left lung caudal lobe +http://purl.obolibrary.org/obo/UBERON_0008953,lower lobe of left lung,lobus inferior (pulmo sinister) +http://purl.obolibrary.org/obo/UBERON_0008953,lower lobe of left lung,lobus inferior pulmonis sinistri +http://purl.obolibrary.org/obo/UBERON_0008954,lingula of left lung,left pulmonary lingula +http://purl.obolibrary.org/obo/UBERON_0008954,lingula of left lung,lingula of lung +http://purl.obolibrary.org/obo/UBERON_0008954,lingula of left lung,lingula of the lung +http://purl.obolibrary.org/obo/UBERON_0008955,middle lobe of lung,lung middle lobe +http://purl.obolibrary.org/obo/UBERON_0008956,involucrum, +http://purl.obolibrary.org/obo/UBERON_0008957,sequestrum, +http://purl.obolibrary.org/obo/UBERON_0008958,cetacean involucrum, +http://purl.obolibrary.org/obo/UBERON_0008959,auditory bulla, +http://purl.obolibrary.org/obo/UBERON_0008960,melon organ, +http://purl.obolibrary.org/obo/UBERON_0008961,parabronchus, +http://purl.obolibrary.org/obo/UBERON_0008962,forelimb bone,free forelimb bone +http://purl.obolibrary.org/obo/UBERON_0008963,hoof, +http://purl.obolibrary.org/obo/UBERON_0008964,abdominal ganglion of visceral hump, +http://purl.obolibrary.org/obo/UBERON_0008967,centrum semiovale,centrum ovale +http://purl.obolibrary.org/obo/UBERON_0008967,centrum semiovale,corpus medullare cerebri +http://purl.obolibrary.org/obo/UBERON_0008967,centrum semiovale,medullary center +http://purl.obolibrary.org/obo/UBERON_0008967,centrum semiovale,substantia centralis medullaris cerebri +http://purl.obolibrary.org/obo/UBERON_0008969,dental follicle, +http://purl.obolibrary.org/obo/UBERON_0008971,left colon, +http://purl.obolibrary.org/obo/UBERON_0008972,right colon, +http://purl.obolibrary.org/obo/UBERON_0008974,apocrine gland,true apocrine gland +http://purl.obolibrary.org/obo/UBERON_0008975,oviduct shell gland,shell gland +http://purl.obolibrary.org/obo/UBERON_0008976,snake venom gland, +http://purl.obolibrary.org/obo/UBERON_0008977,pes anserinus of tibia,pes anserinus +http://purl.obolibrary.org/obo/UBERON_0008978,anal sac, +http://purl.obolibrary.org/obo/UBERON_0008979,carcass, +http://purl.obolibrary.org/obo/UBERON_0008982,fascia,fascia cluster +http://purl.obolibrary.org/obo/UBERON_0008987,renal parenchyma,parenchyma of kidney +http://purl.obolibrary.org/obo/UBERON_0008989,submucosal esophageal gland,esophageal gland +http://purl.obolibrary.org/obo/UBERON_0008989,submucosal esophageal gland,glandulae oesophageae +http://purl.obolibrary.org/obo/UBERON_0008989,submucosal esophageal gland,mucous gland of submucosa of esophagus +http://purl.obolibrary.org/obo/UBERON_0008992,chorion frondosum, +http://purl.obolibrary.org/obo/UBERON_0008993,habenular nucleus,ganglion habenulae +http://purl.obolibrary.org/obo/UBERON_0008993,habenular nucleus,habenular nuclei +http://purl.obolibrary.org/obo/UBERON_0008993,habenular nucleus,nucleus habenulae +http://purl.obolibrary.org/obo/UBERON_0008994,equine glandular stomach, +http://purl.obolibrary.org/obo/UBERON_0008995,nucleus of cerebellar nuclear complex,cerebellar nucleus +http://purl.obolibrary.org/obo/UBERON_0008995,nucleus of cerebellar nuclear complex,deep cerebellar nucleus +http://purl.obolibrary.org/obo/UBERON_0008998,vasculature of brain,brain vasculature +http://purl.obolibrary.org/obo/UBERON_0008998,vasculature of brain,cerebrovascular system +http://purl.obolibrary.org/obo/UBERON_0008998,vasculature of brain,intracerebral vasculature +http://purl.obolibrary.org/obo/UBERON_0008999,hoof lamina, +http://purl.obolibrary.org/obo/UBERON_0009000,ischial spine,spina ischialis +http://purl.obolibrary.org/obo/UBERON_0009002,placental membrane, +http://purl.obolibrary.org/obo/UBERON_0009005,femorotibial joint,femoratibial joint +http://purl.obolibrary.org/obo/UBERON_0009005,femorotibial joint,tibiofemoral joint +http://purl.obolibrary.org/obo/UBERON_0009006,deep inguinal lymph node,deep inguinal node +http://purl.obolibrary.org/obo/UBERON_0009006,deep inguinal lymph node,femoral lymph node +http://purl.obolibrary.org/obo/UBERON_0009006,deep inguinal lymph node,nodus lymphaticus inguinalis profundus +http://purl.obolibrary.org/obo/UBERON_0009007,superficial inguinal lymph node,lymph node of Cloquet +http://purl.obolibrary.org/obo/UBERON_0009007,superficial inguinal lymph node,lymph node of Rosenmuller +http://purl.obolibrary.org/obo/UBERON_0009007,superficial inguinal lymph node,nodus lymphaticus inguinalis superficialis +http://purl.obolibrary.org/obo/UBERON_0009007,superficial inguinal lymph node,superficial inguinal node +http://purl.obolibrary.org/obo/UBERON_0009009,carotid sinus nerve,Hering sinus nerve +http://purl.obolibrary.org/obo/UBERON_0009009,carotid sinus nerve,carotid branch of glossopharyngeal nerve +http://purl.obolibrary.org/obo/UBERON_0009009,carotid sinus nerve,ramus sinus carotici +http://purl.obolibrary.org/obo/UBERON_0009009,carotid sinus nerve,ramus sinus carotici nervi glossopharyngei +http://purl.obolibrary.org/obo/UBERON_0009009,carotid sinus nerve,ramus sinus carotici nervus glossopharyngei +http://purl.obolibrary.org/obo/UBERON_0009009,carotid sinus nerve,sinus nerve of Hering +http://purl.obolibrary.org/obo/UBERON_0009010,periurethral tissue, +http://purl.obolibrary.org/obo/UBERON_0009013,white fibrocartilage, +http://purl.obolibrary.org/obo/UBERON_0009014,lower back skin, +http://purl.obolibrary.org/obo/UBERON_0009015,upper back skin, +http://purl.obolibrary.org/obo/UBERON_0009016,ciliary stroma,ocular ciliary stroma +http://purl.obolibrary.org/obo/UBERON_0009016,ciliary stroma,stroma of ciliary body +http://purl.obolibrary.org/obo/UBERON_0009020,left uterine horn, +http://purl.obolibrary.org/obo/UBERON_0009022,right uterine horn, +http://purl.obolibrary.org/obo/UBERON_0009024,adrenal gland X zone, +http://purl.obolibrary.org/obo/UBERON_0009025,gastroepiploic artery, +http://purl.obolibrary.org/obo/UBERON_0009026,iliac circumflex artery, +http://purl.obolibrary.org/obo/UBERON_0009027,vesical artery,arteria vesicali +http://purl.obolibrary.org/obo/UBERON_0009027,vesical artery,vesical arteries +http://purl.obolibrary.org/obo/UBERON_0009029,pudendal vein,vena pudendae +http://purl.obolibrary.org/obo/UBERON_0009029,pudendal vein,vena pudendales +http://purl.obolibrary.org/obo/UBERON_0009030,left pulmonary vein, +http://purl.obolibrary.org/obo/UBERON_0009032,right pulmonary vein, +http://purl.obolibrary.org/obo/UBERON_0009035,renal straight tubule,kidney straight tubule +http://purl.obolibrary.org/obo/UBERON_0009035,renal straight tubule,straight tubule +http://purl.obolibrary.org/obo/UBERON_0009038,sulcus ampullaris,ampullary groove +http://purl.obolibrary.org/obo/UBERON_0009038,sulcus ampullaris,ampullary sulcus +http://purl.obolibrary.org/obo/UBERON_0009039,lymph node germinal center, +http://purl.obolibrary.org/obo/UBERON_0009040,deep circumflex iliac artery,arteria circumflexa ilium profunda +http://purl.obolibrary.org/obo/UBERON_0009041,superficial circumflex iliac artery,arteria circumflexa ilium superficialis +http://purl.obolibrary.org/obo/UBERON_0009042,prostatic venous plexus, +http://purl.obolibrary.org/obo/UBERON_0009044,pudendal venous plexus, +http://purl.obolibrary.org/obo/UBERON_0009046,inferior external pudendal vein, +http://purl.obolibrary.org/obo/UBERON_0009047,superior external pudendal vein, +http://purl.obolibrary.org/obo/UBERON_0009048,deep external pudendal vein,vena pudendae externalis profunda +http://purl.obolibrary.org/obo/UBERON_0009048,deep external pudendal vein,vena pudendales externalis profunda +http://purl.obolibrary.org/obo/UBERON_0009049,superficial external pudendal vein,vena pudendae externalis superficialis +http://purl.obolibrary.org/obo/UBERON_0009049,superficial external pudendal vein,vena pudendales externalis superficialis +http://purl.obolibrary.org/obo/UBERON_0009050,nucleus of solitary tract,nuclei tractus solitarii +http://purl.obolibrary.org/obo/UBERON_0009050,nucleus of solitary tract,nucleus of the solitary tract +http://purl.obolibrary.org/obo/UBERON_0009050,nucleus of solitary tract,nucleus of the tractus solitarius +http://purl.obolibrary.org/obo/UBERON_0009050,nucleus of solitary tract,nucleus of tractus solitarius +http://purl.obolibrary.org/obo/UBERON_0009050,nucleus of solitary tract,nucleus solitarius +http://purl.obolibrary.org/obo/UBERON_0009050,nucleus of solitary tract,nucleus tracti solitarii +http://purl.obolibrary.org/obo/UBERON_0009050,nucleus of solitary tract,nucleus tractus solitarii +http://purl.obolibrary.org/obo/UBERON_0009050,nucleus of solitary tract,nucleus tractus solitarii medullae oblongatae +http://purl.obolibrary.org/obo/UBERON_0009050,nucleus of solitary tract,solitary nuclear complex +http://purl.obolibrary.org/obo/UBERON_0009050,nucleus of solitary tract,solitary nucleus +http://purl.obolibrary.org/obo/UBERON_0009050,nucleus of solitary tract,solitary tract nucleus +http://purl.obolibrary.org/obo/UBERON_0009051,gelatinous nucleus of solitary tract, +http://purl.obolibrary.org/obo/UBERON_0009052,medial nucleus of solitary tract, +http://purl.obolibrary.org/obo/UBERON_0009053,dorsal nucleus of trapezoid body,dorsal nucleus of trapezoid body +http://purl.obolibrary.org/obo/UBERON_0009053,dorsal nucleus of trapezoid body,nucleus dorsalis corporis trapezoidei +http://purl.obolibrary.org/obo/UBERON_0009054,open circulatory system, +http://purl.obolibrary.org/obo/UBERON_0009055,closed circulatory system, +http://purl.obolibrary.org/obo/UBERON_0009056,two-pass circulatory system, +http://purl.obolibrary.org/obo/UBERON_0009057,one-pass circulatory system, +http://purl.obolibrary.org/obo/UBERON_0009058,faveolus,lung faveolus +http://purl.obolibrary.org/obo/UBERON_0009060,air sac,sacci pneumatici +http://purl.obolibrary.org/obo/UBERON_0009061,anterior air sac, +http://purl.obolibrary.org/obo/UBERON_0009062,posterior air sac, +http://purl.obolibrary.org/obo/UBERON_0009063,interclavicular air sac, +http://purl.obolibrary.org/obo/UBERON_0009064,cervical air sac, +http://purl.obolibrary.org/obo/UBERON_0009065,anterior thoracic air sac, +http://purl.obolibrary.org/obo/UBERON_0009066,posterior thoracic air sac, +http://purl.obolibrary.org/obo/UBERON_0009067,abdominal air sac, +http://purl.obolibrary.org/obo/UBERON_0009071,mesobronchus, +http://purl.obolibrary.org/obo/UBERON_0009072,ventrobronchus, +http://purl.obolibrary.org/obo/UBERON_0009073,dorsobronchus, +http://purl.obolibrary.org/obo/UBERON_0009074,syrinx organ, +http://purl.obolibrary.org/obo/UBERON_0009075,membrana tympaniformis,syrinx organ wall +http://purl.obolibrary.org/obo/UBERON_0009075,membrana tympaniformis,wall of syrinx +http://purl.obolibrary.org/obo/UBERON_0009076,membrana tympaniformis lateralis,lateral wall of syrinx +http://purl.obolibrary.org/obo/UBERON_0009077,membrana tympaniformis medialis,medial wall of syrinx +http://purl.obolibrary.org/obo/UBERON_0009078,pessulus, +http://purl.obolibrary.org/obo/UBERON_0009089,inner medulla vasa recta descending limb, +http://purl.obolibrary.org/obo/UBERON_0009090,outer medulla vasa recta descending limb, +http://purl.obolibrary.org/obo/UBERON_0009091,vasa recta ascending limb, +http://purl.obolibrary.org/obo/UBERON_0009092,inner medulla vasa recta ascending limb, +http://purl.obolibrary.org/obo/UBERON_0009093,outer medulla vasa recta ascending limb, +http://purl.obolibrary.org/obo/UBERON_0009095,tip of renal papilla,papillary tip +http://purl.obolibrary.org/obo/UBERON_0009095,tip of renal papilla,papillary tips +http://purl.obolibrary.org/obo/UBERON_0009097,gravid organism,gravid +http://purl.obolibrary.org/obo/UBERON_0009097,gravid organism,pregnant adult +http://purl.obolibrary.org/obo/UBERON_0009097,gravid organism,pregnant adult stage +http://purl.obolibrary.org/obo/UBERON_0009097,gravid organism,pregnant organism +http://purl.obolibrary.org/obo/UBERON_0009097,gravid organism,pregnant stage +http://purl.obolibrary.org/obo/UBERON_0009098,gravid uterus, +http://purl.obolibrary.org/obo/UBERON_0009099,typhlosole, +http://purl.obolibrary.org/obo/UBERON_0009100,nephric fold, +http://purl.obolibrary.org/obo/UBERON_0009101,ammocoete, +http://purl.obolibrary.org/obo/UBERON_0009102,supraneural body,dorsal fat body +http://purl.obolibrary.org/obo/UBERON_0009102,supraneural body,pro-vertebral arch +http://purl.obolibrary.org/obo/UBERON_0009114,cervical thymus, +http://purl.obolibrary.org/obo/UBERON_0009115,thoracic thymus, +http://purl.obolibrary.org/obo/UBERON_0009116,thymoid, +http://purl.obolibrary.org/obo/UBERON_0009117,indifferent gonad, +http://purl.obolibrary.org/obo/UBERON_0009118,marsupium,marsupial pouch +http://purl.obolibrary.org/obo/UBERON_0009119,branchial basket,gill basket +http://purl.obolibrary.org/obo/UBERON_0009120,gill filament,gill filaments +http://purl.obolibrary.org/obo/UBERON_0009121,vomeronasal nerve, +http://purl.obolibrary.org/obo/UBERON_0009122,adenohypophyseal placode, +http://purl.obolibrary.org/obo/UBERON_0009124,geniculate placode,epibranchial placode 1 +http://purl.obolibrary.org/obo/UBERON_0009124,geniculate placode,facial epibranchial placode +http://purl.obolibrary.org/obo/UBERON_0009124,geniculate placode,facial placode +http://purl.obolibrary.org/obo/UBERON_0009125,petrosal placode,epibranchial placode 2 +http://purl.obolibrary.org/obo/UBERON_0009125,petrosal placode,glossopharyngeal IX placode +http://purl.obolibrary.org/obo/UBERON_0009125,petrosal placode,glossopharyngeal epibranchial placode +http://purl.obolibrary.org/obo/UBERON_0009125,petrosal placode,glossopharyngeal placode +http://purl.obolibrary.org/obo/UBERON_0009126,nodosal placode,epibranchial placode 3 +http://purl.obolibrary.org/obo/UBERON_0009126,nodosal placode,nodose placode +http://purl.obolibrary.org/obo/UBERON_0009126,nodosal placode,nodose placodes +http://purl.obolibrary.org/obo/UBERON_0009126,nodosal placode,vagal epibranchial placode +http://purl.obolibrary.org/obo/UBERON_0009126,nodosal placode,vagal epibranchial placodes +http://purl.obolibrary.org/obo/UBERON_0009127,epibranchial ganglion,epibranchial ganglia +http://purl.obolibrary.org/obo/UBERON_0009128,lateral line placode, +http://purl.obolibrary.org/obo/UBERON_0009129,right atrium endocardium,endocardium of right atrium +http://purl.obolibrary.org/obo/UBERON_0009129,right atrium endocardium,right atrial endocardium +http://purl.obolibrary.org/obo/UBERON_0009130,dorsal meso-duodenum, +http://purl.obolibrary.org/obo/UBERON_0009132,peroneus,fibularis +http://purl.obolibrary.org/obo/UBERON_0009132,peroneus,fibularis muscle +http://purl.obolibrary.org/obo/UBERON_0009132,peroneus,peroneal muscle +http://purl.obolibrary.org/obo/UBERON_0009132,peroneus,peroneal muscle group +http://purl.obolibrary.org/obo/UBERON_0009132,peroneus,peroneal muscles +http://purl.obolibrary.org/obo/UBERON_0009132,peroneus,peroneus muscle +http://purl.obolibrary.org/obo/UBERON_0009132,peroneus,peronæus muscle +http://purl.obolibrary.org/obo/UBERON_0009133,pleuroperitoneal membrane,pleuroperitoneal fold +http://purl.obolibrary.org/obo/UBERON_0009133,pleuroperitoneal membrane,pleuroperitoneal membranes +http://purl.obolibrary.org/obo/UBERON_0009138,right common cardinal vein,common cardinal vein right +http://purl.obolibrary.org/obo/UBERON_0009139,right posterior cardinal vein,posterior cardinal vein right +http://purl.obolibrary.org/obo/UBERON_0009139,right posterior cardinal vein,right postcardinal vein +http://purl.obolibrary.org/obo/UBERON_0009140,right subcardinal vein,subcardinal vein right +http://purl.obolibrary.org/obo/UBERON_0009141,craniocervical region vein,craniocervical vein +http://purl.obolibrary.org/obo/UBERON_0009141,craniocervical region vein,head and neck veins +http://purl.obolibrary.org/obo/UBERON_0009141,craniocervical region vein,vein of head and neck +http://purl.obolibrary.org/obo/UBERON_0009142,entire embryonic mesenchyme, +http://purl.obolibrary.org/obo/UBERON_0009145,pharyngeal region of foregut,pharyngeal region +http://purl.obolibrary.org/obo/UBERON_0009149,foramen primum,interatrial foramen primum +http://purl.obolibrary.org/obo/UBERON_0009149,foramen primum,ostium primum +http://purl.obolibrary.org/obo/UBERON_0009149,foramen primum,primary interatrial foramen +http://purl.obolibrary.org/obo/UBERON_0009191,sphenoid bone pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0009192,basisphenoid pre-cartilage condensation,basi-sphenoid pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0009193,sphenoid cartilage element,sphenoid bone cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0009194,basisphenoid cartilage condenstion,basisphenoid cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0009195,anal membrane, +http://purl.obolibrary.org/obo/UBERON_0009196,indifferent external genitalia, +http://purl.obolibrary.org/obo/UBERON_0009197,basioccipital pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0009198,craniofacial suture,joint of the skull bones +http://purl.obolibrary.org/obo/UBERON_0009199,facial suture, +http://purl.obolibrary.org/obo/UBERON_0009200,limb epidermis, +http://purl.obolibrary.org/obo/UBERON_0009201,nephric duct, +http://purl.obolibrary.org/obo/UBERON_0009202,vasa recta descending limb, +http://purl.obolibrary.org/obo/UBERON_0009203,internasal suture,inter-nasal suture +http://purl.obolibrary.org/obo/UBERON_0009203,internasal suture,internasal suture of skull +http://purl.obolibrary.org/obo/UBERON_0009203,internasal suture,sutura internasalis +http://purl.obolibrary.org/obo/UBERON_0009204,medial nasal process mesenchyme, +http://purl.obolibrary.org/obo/UBERON_0009205,lateral nasal process mesenchyme,mesenchyme of latero-nasal process +http://purl.obolibrary.org/obo/UBERON_0009206,lateral nasal process surface ectoderm,ectoderm of latero-nasal process +http://purl.obolibrary.org/obo/UBERON_0009207,geschmacksstreifen, +http://purl.obolibrary.org/obo/UBERON_0009210,pharyngeal membrane,branchial arch membrane +http://purl.obolibrary.org/obo/UBERON_0009210,pharyngeal membrane,branchial membrane +http://purl.obolibrary.org/obo/UBERON_0009210,pharyngeal membrane,pharyngeal membrane +http://purl.obolibrary.org/obo/UBERON_0009213,pharyngeal membrane of 1st arch,1st branchial membrane +http://purl.obolibrary.org/obo/UBERON_0009213,pharyngeal membrane of 1st arch,1st pharyngeal membrane +http://purl.obolibrary.org/obo/UBERON_0009213,pharyngeal membrane of 1st arch,future tympanic membrane +http://purl.obolibrary.org/obo/UBERON_0009213,pharyngeal membrane of 1st arch,tympanic membrane primordium +http://purl.obolibrary.org/obo/UBERON_0009215,pharyngeal membrane of 2nd arch,2nd pharyngeal membrane +http://purl.obolibrary.org/obo/UBERON_0009216,pharyngeal membrane of 3rd arch,3rd pharyngeal membrane +http://purl.obolibrary.org/obo/UBERON_0009217,pharyngeal membrane of 4th arch,4th pharyngeal membrane +http://purl.obolibrary.org/obo/UBERON_0009291,cartilaginous vertebral centrum,cartilaginous centrum of vertebra +http://purl.obolibrary.org/obo/UBERON_0009292,embryonic nasal process, +http://purl.obolibrary.org/obo/UBERON_0009293,embryonic frontal process,frontal process +http://purl.obolibrary.org/obo/UBERON_0009468,basiotic bone,basiotic +http://purl.obolibrary.org/obo/UBERON_0009470,postsphenoidal bone, +http://purl.obolibrary.org/obo/UBERON_0009471,dorsum of tongue,dorsal tongue +http://purl.obolibrary.org/obo/UBERON_0009471,dorsum of tongue,dorsum linguae +http://purl.obolibrary.org/obo/UBERON_0009471,dorsum of tongue,tongue dorsum +http://purl.obolibrary.org/obo/UBERON_0009472,axilla,arm pit +http://purl.obolibrary.org/obo/UBERON_0009472,axilla,armpit +http://purl.obolibrary.org/obo/UBERON_0009472,axilla,axillary region +http://purl.obolibrary.org/obo/UBERON_0009472,axilla,regio axillaris +http://purl.obolibrary.org/obo/UBERON_0009473,parapodium,paradpod +http://purl.obolibrary.org/obo/UBERON_0009473,parapodium,polychaete paradpodium +http://purl.obolibrary.org/obo/UBERON_0009474,ascidian ampulla, +http://purl.obolibrary.org/obo/UBERON_0009475,ampullar siphon, +http://purl.obolibrary.org/obo/UBERON_0009476,madreporite, +http://purl.obolibrary.org/obo/UBERON_0009477,associated mesenchyme of otic placode, +http://purl.obolibrary.org/obo/UBERON_0009478,associated mesenchyme of midgut,early midgut associated mesenchyme +http://purl.obolibrary.org/obo/UBERON_0009479,ectoderm of buccopharyngeal membrane, +http://purl.obolibrary.org/obo/UBERON_0009480,endoderm of buccopharyngeal membrane, +http://purl.obolibrary.org/obo/UBERON_0009481,cavity of pericardio-peritoneal canal,cavity of the pericardio-peritoneal canal +http://purl.obolibrary.org/obo/UBERON_0009482,associated mesenchyme of foregut-midgut junction, +http://purl.obolibrary.org/obo/UBERON_0009483,mesentery of foregut-midgut junction,foregut-midgut junction mesentery +http://purl.obolibrary.org/obo/UBERON_0009484,dorsal mesentery of mesentery of foregut-midgut junction, +http://purl.obolibrary.org/obo/UBERON_0009494,pharyngeal arch mesenchymal region,branchial arch mesenchyme +http://purl.obolibrary.org/obo/UBERON_0009494,pharyngeal arch mesenchymal region,pharyngeal arch mesenchyme +http://purl.obolibrary.org/obo/UBERON_0009495,extrahepatic part of biliary bud, +http://purl.obolibrary.org/obo/UBERON_0009496,intrahepatic part of biliary bud, +http://purl.obolibrary.org/obo/UBERON_0009497,epithelium of foregut-midgut junction, +http://purl.obolibrary.org/obo/UBERON_0009499,parietal of mesothelium of pericardio-peritoneal canal, +http://purl.obolibrary.org/obo/UBERON_0009500,periotic mesenchyme,otocyst associated mesenchyme +http://purl.obolibrary.org/obo/UBERON_0009500,periotic mesenchyme,otocyst mesenchyme +http://purl.obolibrary.org/obo/UBERON_0009501,mesenchyme of fronto-nasal process,frontonasal mesenchyme +http://purl.obolibrary.org/obo/UBERON_0009501,mesenchyme of fronto-nasal process,naso-frontal mesenchyme +http://purl.obolibrary.org/obo/UBERON_0009502,ventral mesentery of mesentery of foregut-midgut junction, +http://purl.obolibrary.org/obo/UBERON_0009503,mesenchyme of hindgut,hindgut associated mesenchyme +http://purl.obolibrary.org/obo/UBERON_0009504,mesenchyme of main bronchus,main bronchus associated mesenchyme +http://purl.obolibrary.org/obo/UBERON_0009505,mesenchyme of trachea,trachea associated mesenchyme +http://purl.obolibrary.org/obo/UBERON_0009506,mesenchyme of middle ear,middle ear associated mesenchyme +http://purl.obolibrary.org/obo/UBERON_0009521,anal membrane endodermal component, +http://purl.obolibrary.org/obo/UBERON_0009522,lateral lingual swelling epithelium, +http://purl.obolibrary.org/obo/UBERON_0009523,mesenchyme of handplate,hand plate mesenchyme +http://purl.obolibrary.org/obo/UBERON_0009523,mesenchyme of handplate,handplate mesenchyme +http://purl.obolibrary.org/obo/UBERON_0009526,maxillary process mesenchyme,mesenchyme of maxillary process +http://purl.obolibrary.org/obo/UBERON_0009526,maxillary process mesenchyme,mesenchyme of maxillary prominence +http://purl.obolibrary.org/obo/UBERON_0009536,vascular element of left lung, +http://purl.obolibrary.org/obo/UBERON_0009537,vascular element of right lung, +http://purl.obolibrary.org/obo/UBERON_0009538,mesenchyme of sublingual gland primordium, +http://purl.obolibrary.org/obo/UBERON_0009539,mesenchyme of submandibular gland primordium, +http://purl.obolibrary.org/obo/UBERON_0009548,hepatic sinusoid of left of lobe of liver,left lobe hepatic sinusoids +http://purl.obolibrary.org/obo/UBERON_0009549,hepatic sinusoid of right of lobe of liver,right lobe hepatic sinusoids +http://purl.obolibrary.org/obo/UBERON_0009550,endoderm of foregut-midgut junction, +http://purl.obolibrary.org/obo/UBERON_0009551,distal segment of digit,digit tip +http://purl.obolibrary.org/obo/UBERON_0009551,distal segment of digit,distal digit segment +http://purl.obolibrary.org/obo/UBERON_0009551,distal segment of digit,tip of digit +http://purl.obolibrary.org/obo/UBERON_0009552,distal segment of manual digit,finger digit tip +http://purl.obolibrary.org/obo/UBERON_0009552,distal segment of manual digit,finger distal segment +http://purl.obolibrary.org/obo/UBERON_0009552,distal segment of manual digit,finger tip +http://purl.obolibrary.org/obo/UBERON_0009552,distal segment of manual digit,fingertip +http://purl.obolibrary.org/obo/UBERON_0009552,distal segment of manual digit,forelimb digit tip +http://purl.obolibrary.org/obo/UBERON_0009552,distal segment of manual digit,tip of finger +http://purl.obolibrary.org/obo/UBERON_0009553,distal segment of pedal digit,hindlimb digit tip +http://purl.obolibrary.org/obo/UBERON_0009553,distal segment of pedal digit,tip of toe +http://purl.obolibrary.org/obo/UBERON_0009553,distal segment of pedal digit,toe digit tip +http://purl.obolibrary.org/obo/UBERON_0009553,distal segment of pedal digit,toe distal segment +http://purl.obolibrary.org/obo/UBERON_0009555,short pastern bone,equine middle phalanx +http://purl.obolibrary.org/obo/UBERON_0009555,short pastern bone,equine phalanx 2 +http://purl.obolibrary.org/obo/UBERON_0009555,short pastern bone,equine phalanx 2 of digit III +http://purl.obolibrary.org/obo/UBERON_0009556,long pastern bone,equine phalanx 1 of digit III +http://purl.obolibrary.org/obo/UBERON_0009556,long pastern bone,equine proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0009558,pastern bone, +http://purl.obolibrary.org/obo/UBERON_0009559,metacarpal/tarsal-phalangeal joint,metacarpo-tarsophalangeal joint +http://purl.obolibrary.org/obo/UBERON_0009559,metacarpal/tarsal-phalangeal joint,metapodial-phalangeal joint +http://purl.obolibrary.org/obo/UBERON_0009559,metacarpal/tarsal-phalangeal joint,metapodium-phalanx joint +http://purl.obolibrary.org/obo/UBERON_0009563,pastern region of limb, +http://purl.obolibrary.org/obo/UBERON_0009564,distal limb integumentary appendage, +http://purl.obolibrary.org/obo/UBERON_0009565,nail of manual digit,finger nail +http://purl.obolibrary.org/obo/UBERON_0009565,nail of manual digit,fingernail +http://purl.obolibrary.org/obo/UBERON_0009565,nail of manual digit,nail of finger +http://purl.obolibrary.org/obo/UBERON_0009566,intestinal submucosa,submucosa of intestine +http://purl.obolibrary.org/obo/UBERON_0009567,nail of pedal digit,nail of pes +http://purl.obolibrary.org/obo/UBERON_0009567,nail of pedal digit,nail of toe +http://purl.obolibrary.org/obo/UBERON_0009567,nail of pedal digit,toe nail +http://purl.obolibrary.org/obo/UBERON_0009567,nail of pedal digit,toenail +http://purl.obolibrary.org/obo/UBERON_0009568,trunk region of vertebral column,thoracolumbar column +http://purl.obolibrary.org/obo/UBERON_0009568,trunk region of vertebral column,thoracolumbar region of vertebral column +http://purl.obolibrary.org/obo/UBERON_0009568,trunk region of vertebral column,thoracolumbar vertebrae set +http://purl.obolibrary.org/obo/UBERON_0009568,trunk region of vertebral column,thoracolumbar vertebral column +http://purl.obolibrary.org/obo/UBERON_0009568,trunk region of vertebral column,trunk vertebrae series +http://purl.obolibrary.org/obo/UBERON_0009568,trunk region of vertebral column,trunk vertebral column +http://purl.obolibrary.org/obo/UBERON_0009569,subdivision of trunk,region of trunk +http://purl.obolibrary.org/obo/UBERON_0009569,subdivision of trunk,trunk subdivision +http://purl.obolibrary.org/obo/UBERON_0009570,spinal cord sulcus limitans,spinal cord lateral wall sulcus limitans +http://purl.obolibrary.org/obo/UBERON_0009571,ventral midline, +http://purl.obolibrary.org/obo/UBERON_0009572,lumen of central canal of spinal cord,cavity of central canal of spinal cord +http://purl.obolibrary.org/obo/UBERON_0009572,lumen of central canal of spinal cord,central canal lumen +http://purl.obolibrary.org/obo/UBERON_0009572,lumen of central canal of spinal cord,spinal cord lumen +http://purl.obolibrary.org/obo/UBERON_0009573,sulcus limitans of fourth ventricle, +http://purl.obolibrary.org/obo/UBERON_0009576,medulla oblongata sulcus limitans, +http://purl.obolibrary.org/obo/UBERON_0009577,metencephalon sulcus limitans, +http://purl.obolibrary.org/obo/UBERON_0009578,myelencephalon sulcus limitans, +http://purl.obolibrary.org/obo/UBERON_0009579,myelencephalon basal plate,basal plate myelencephalon +http://purl.obolibrary.org/obo/UBERON_0009579,myelencephalon basal plate,future myelencephalon basal plate +http://purl.obolibrary.org/obo/UBERON_0009580,diencephalon mantle layer,diencephalon lateral wall mantle layer +http://purl.obolibrary.org/obo/UBERON_0009580,diencephalon mantle layer,mantle layer lateral wall diencephalon +http://purl.obolibrary.org/obo/UBERON_0009581,midbrain mantle layer,mantle layer lateral wall midbrain +http://purl.obolibrary.org/obo/UBERON_0009581,midbrain mantle layer,midbrain lateral wall mantle layer +http://purl.obolibrary.org/obo/UBERON_0009582,spinal cord lateral wall,lateral wall spinal cord +http://purl.obolibrary.org/obo/UBERON_0009583,spinal cord mantle layer,mantle layer lateral wall spinal cord +http://purl.obolibrary.org/obo/UBERON_0009583,spinal cord mantle layer,spinal cord lateral wall mantle layer +http://purl.obolibrary.org/obo/UBERON_0009584,1st arch mandibular mesenchyme,mesenchymal region of mandibular component of first pharyngeal arch +http://purl.obolibrary.org/obo/UBERON_0009584,1st arch mandibular mesenchyme,mesenchyme of mandibular component +http://purl.obolibrary.org/obo/UBERON_0009585,interdigital region mesenchyme,interdigital mesenchyme +http://purl.obolibrary.org/obo/UBERON_0009585,interdigital region mesenchyme,mesenchyme of interdigital region +http://purl.obolibrary.org/obo/UBERON_0009586,mesenchyme of interdigital region between manual digits 1 and 2,interdigital region between fingers 1 and 2 mesenchyme +http://purl.obolibrary.org/obo/UBERON_0009586,mesenchyme of interdigital region between manual digits 1 and 2,mesenchyme of interdigital region between manual digits I and II +http://purl.obolibrary.org/obo/UBERON_0009587,mesenchyme of interdigital region between manual digits 2 and 3,interdigital region between fingers 2 and 3 mesenchyme +http://purl.obolibrary.org/obo/UBERON_0009587,mesenchyme of interdigital region between manual digits 2 and 3,mesenchyme of interdigital region between manual digits II and III +http://purl.obolibrary.org/obo/UBERON_0009588,mesenchyme of interdigital region between manual digits 3 and 4,interdigital region between fingers 3 and 4 mesenchyme +http://purl.obolibrary.org/obo/UBERON_0009588,mesenchyme of interdigital region between manual digits 3 and 4,mesenchyme of interdigital region between manual digits III and IV +http://purl.obolibrary.org/obo/UBERON_0009589,mesenchyme of interdigital region between manual digits 4 and 5,interdigital region between fingers 4 and 5 mesenchyme +http://purl.obolibrary.org/obo/UBERON_0009589,mesenchyme of interdigital region between manual digits 4 and 5,mesenchyme of interdigital region between manual digits IV and V +http://purl.obolibrary.org/obo/UBERON_0009590,mesenchyme of interdigital region between pedal digits 1 and 2,interdigital region between toes 1 and 2 mesenchyme +http://purl.obolibrary.org/obo/UBERON_0009590,mesenchyme of interdigital region between pedal digits 1 and 2,mesenchyme of interdigital region between pedal digits I and II +http://purl.obolibrary.org/obo/UBERON_0009591,mesenchyme of interdigital region between pedal digits 2 and 3,interdigital region between toes 2 and 3 mesenchyme +http://purl.obolibrary.org/obo/UBERON_0009591,mesenchyme of interdigital region between pedal digits 2 and 3,mesenchyme of interdigital region between pedal digits II and III +http://purl.obolibrary.org/obo/UBERON_0009592,mesenchyme of interdigital region between pedal digits 3 and 4,interdigital region between toes 3 and 4 mesenchyme +http://purl.obolibrary.org/obo/UBERON_0009592,mesenchyme of interdigital region between pedal digits 3 and 4,mesenchyme of interdigital region between pedal digits III and IV +http://purl.obolibrary.org/obo/UBERON_0009593,mesenchyme of interdigital region between pedal digits 4 and 5,interdigital region between toes 4 and 5 mesenchyme +http://purl.obolibrary.org/obo/UBERON_0009593,mesenchyme of interdigital region between pedal digits 4 and 5,mesenchyme of interdigital region between pedal digits IV and V +http://purl.obolibrary.org/obo/UBERON_0009596,mesenchyme of interdigital region between digits 1 and 2,mesenchyme of interdigital region between digits I and II +http://purl.obolibrary.org/obo/UBERON_0009597,mesenchyme of interdigital region between digits 2 and 3,mesenchyme of interdigital region between digits II and III +http://purl.obolibrary.org/obo/UBERON_0009598,mesenchyme of interdigital region between digits 3 and 4,mesenchyme of interdigital region between digits III and IV +http://purl.obolibrary.org/obo/UBERON_0009599,mesenchyme of interdigital region between digits 4 and 5,mesenchyme of interdigital region between digits IV and V +http://purl.obolibrary.org/obo/UBERON_0009600,mesenchyme of interdigital region of manus,mesenchyme of interdigital region of forelimb +http://purl.obolibrary.org/obo/UBERON_0009601,mesenchyme of interdigital region of pes,mesenchyme of interdigital region of hindlimb +http://purl.obolibrary.org/obo/UBERON_0009602,left lung associated mesenchyme,left lung mesenchyme +http://purl.obolibrary.org/obo/UBERON_0009603,right lung associated mesenchyme,right lung mesenchyme +http://purl.obolibrary.org/obo/UBERON_0009610,forebrain neural plate, +http://purl.obolibrary.org/obo/UBERON_0009611,midbrain neural plate, +http://purl.obolibrary.org/obo/UBERON_0009612,forebrain midbrain boundary neural plate,diencephalic-mesencephalic boundary neural plate +http://purl.obolibrary.org/obo/UBERON_0009614,hindbrain neural plate, +http://purl.obolibrary.org/obo/UBERON_0009615,midbrain hindbrain boundary neural plate,MHB neural plate +http://purl.obolibrary.org/obo/UBERON_0009615,midbrain hindbrain boundary neural plate,midbrain-hindbrain boundary neural plate +http://purl.obolibrary.org/obo/UBERON_0009616,presumptive midbrain,presumptive mesencephalon +http://purl.obolibrary.org/obo/UBERON_0009617,head paraxial mesoderm,cephalic paraxial mesenchyme +http://purl.obolibrary.org/obo/UBERON_0009617,head paraxial mesoderm,cephalic paraxial mesoderm +http://purl.obolibrary.org/obo/UBERON_0009617,head paraxial mesoderm,cranial paraxial mesenchyme +http://purl.obolibrary.org/obo/UBERON_0009617,head paraxial mesoderm,cranial paraxial mesoderm +http://purl.obolibrary.org/obo/UBERON_0009617,head paraxial mesoderm,head paraxial mesenchyme +http://purl.obolibrary.org/obo/UBERON_0009618,trunk paraxial mesoderm,trunk and cervical paraxial mesenchyme +http://purl.obolibrary.org/obo/UBERON_0009620,tail bud paraxial mesoderm, +http://purl.obolibrary.org/obo/UBERON_0009621,tail somite, +http://purl.obolibrary.org/obo/UBERON_0009622,pronephric proximal straight tubule, +http://purl.obolibrary.org/obo/UBERON_0009623,spinal nerve root,root of spinal nerve +http://purl.obolibrary.org/obo/UBERON_0009623,spinal nerve root,spinal neural root +http://purl.obolibrary.org/obo/UBERON_0009623,spinal nerve root,spinal root +http://purl.obolibrary.org/obo/UBERON_0009624,lumbar nerve,lumbar spinal nerve +http://purl.obolibrary.org/obo/UBERON_0009624,lumbar nerve,nervus lumbalis +http://purl.obolibrary.org/obo/UBERON_0009625,sacral nerve,nervus sacralis +http://purl.obolibrary.org/obo/UBERON_0009625,sacral nerve,sacral spinal nerve +http://purl.obolibrary.org/obo/UBERON_0009629,coccygeal nerve,coccygeal spinal nerve +http://purl.obolibrary.org/obo/UBERON_0009630,root of thoracic nerve,nerve root part of thoracic spinal cord +http://purl.obolibrary.org/obo/UBERON_0009630,root of thoracic nerve,thoracic nerve root +http://purl.obolibrary.org/obo/UBERON_0009630,root of thoracic nerve,thoracic neural root +http://purl.obolibrary.org/obo/UBERON_0009631,root of lumbar spinal nerve,lumbar spinal nerve root +http://purl.obolibrary.org/obo/UBERON_0009631,root of lumbar spinal nerve,lumbar spinal neural root +http://purl.obolibrary.org/obo/UBERON_0009631,root of lumbar spinal nerve,nerve root part of lumbar spinal cord +http://purl.obolibrary.org/obo/UBERON_0009632,root of cervical nerve,cervical neural root +http://purl.obolibrary.org/obo/UBERON_0009632,root of cervical nerve,cervical spinal root +http://purl.obolibrary.org/obo/UBERON_0009632,root of cervical nerve,nerve root part of cervical spinal cord +http://purl.obolibrary.org/obo/UBERON_0009632,root of cervical nerve,root of cervical spinal nerve +http://purl.obolibrary.org/obo/UBERON_0009633,root of sacral nerve,nerve root part of sacral spinal cord +http://purl.obolibrary.org/obo/UBERON_0009633,root of sacral nerve,root of sacral spinal nerve +http://purl.obolibrary.org/obo/UBERON_0009633,root of sacral nerve,sacral neural root +http://purl.obolibrary.org/obo/UBERON_0009634,root of coccygeal nerve,coccygeal neural root +http://purl.obolibrary.org/obo/UBERON_0009634,root of coccygeal nerve,coccygeal spinal nerve root +http://purl.obolibrary.org/obo/UBERON_0009634,root of coccygeal nerve,root of coccygeal spinal nerve +http://purl.obolibrary.org/obo/UBERON_0009635,parachordal cartilage,parachordal cartilages +http://purl.obolibrary.org/obo/UBERON_0009636,prechordal cartilage, +http://purl.obolibrary.org/obo/UBERON_0009637,alisphenoid ossification center, +http://purl.obolibrary.org/obo/UBERON_0009638,orbitosphenoid ossification center, +http://purl.obolibrary.org/obo/UBERON_0009639,body of sphenoid,Entire body of sphenoid bone +http://purl.obolibrary.org/obo/UBERON_0009639,body of sphenoid,body of sphenoidal bone +http://purl.obolibrary.org/obo/UBERON_0009639,body of sphenoid,central body of sphenoid +http://purl.obolibrary.org/obo/UBERON_0009639,body of sphenoid,corpus (os sphenoidale) +http://purl.obolibrary.org/obo/UBERON_0009639,body of sphenoid,sphenoid body +http://purl.obolibrary.org/obo/UBERON_0009640,hypophyseal cartilage, +http://purl.obolibrary.org/obo/UBERON_0009641,ansa lenticularis,ansa lenticularis in thalamo +http://purl.obolibrary.org/obo/UBERON_0009641,ansa lenticularis,ansa lenticularis in thalamus +http://purl.obolibrary.org/obo/UBERON_0009641,ansa lenticularis,ventral peduncle of lateral forebrain bundle +http://purl.obolibrary.org/obo/UBERON_0009643,central tegmental tract, +http://purl.obolibrary.org/obo/UBERON_0009644,trachea non-cartilage connective tissue, +http://purl.obolibrary.org/obo/UBERON_0009645,ampullary gland,ampulla of the vas +http://purl.obolibrary.org/obo/UBERON_0009645,ampullary gland,ampullae of the vas +http://purl.obolibrary.org/obo/UBERON_0009645,ampullary gland,ampullary gland of seminal duct +http://purl.obolibrary.org/obo/UBERON_0009646,lumbar sympathetic nerve trunk,lumbar sympathetic trunk +http://purl.obolibrary.org/obo/UBERON_0009647,tympanic membrane epithelium,tympanic epithelium +http://purl.obolibrary.org/obo/UBERON_0009647,tympanic membrane epithelium,tympanic membrane epithelial layer +http://purl.obolibrary.org/obo/UBERON_0009648,eyelid subcutaneous connective tissue, +http://purl.obolibrary.org/obo/UBERON_0009650,cortical arch of kidney,renal cortex proper +http://purl.obolibrary.org/obo/UBERON_0009650,cortical arch of kidney,renal cortical arch +http://purl.obolibrary.org/obo/UBERON_0009651,nephron tubule basement membrane,kidney tubule basement membrane +http://purl.obolibrary.org/obo/UBERON_0009651,nephron tubule basement membrane,renal tubular basement membrane +http://purl.obolibrary.org/obo/UBERON_0009651,nephron tubule basement membrane,renal tubule basement membrane +http://purl.obolibrary.org/obo/UBERON_0009652,bronchus basement membrane,bronchial basement membrane +http://purl.obolibrary.org/obo/UBERON_0009653,trachea basement membrane, +http://purl.obolibrary.org/obo/UBERON_0009654,alveolar artery, +http://purl.obolibrary.org/obo/UBERON_0009655,auricular artery, +http://purl.obolibrary.org/obo/UBERON_0009657,artery of lip, +http://purl.obolibrary.org/obo/UBERON_0009658,pancreaticoduodenal artery,arteriae pancreaticoduodenales +http://purl.obolibrary.org/obo/UBERON_0009658,pancreaticoduodenal artery,pancreatico-duodenal artery +http://purl.obolibrary.org/obo/UBERON_0009659,spermatic artery, +http://purl.obolibrary.org/obo/UBERON_0009661,midbrain nucleus, +http://purl.obolibrary.org/obo/UBERON_0009662,hindbrain nucleus, +http://purl.obolibrary.org/obo/UBERON_0009663,telencephalic nucleus, +http://purl.obolibrary.org/obo/UBERON_0009664,gut mesentery, +http://purl.obolibrary.org/obo/UBERON_0009668,ventral mesentery, +http://purl.obolibrary.org/obo/UBERON_0009669,embryonic cloacal lumen, +http://purl.obolibrary.org/obo/UBERON_0009670,rectal lumen,lumen of rectum +http://purl.obolibrary.org/obo/UBERON_0009671,nasal fin, +http://purl.obolibrary.org/obo/UBERON_0009672,oronasal membrane,bucconasal membrane +http://purl.obolibrary.org/obo/UBERON_0009673,accessory XI nerve cranial component, +http://purl.obolibrary.org/obo/UBERON_0009674,accessory XI nerve spinal component,spinal part of the accessory nerve +http://purl.obolibrary.org/obo/UBERON_0009675,chorda tympani branch of facial nerve,chorda tympani +http://purl.obolibrary.org/obo/UBERON_0009675,chorda tympani branch of facial nerve,chorda tympani nerve +http://purl.obolibrary.org/obo/UBERON_0009675,chorda tympani branch of facial nerve,corda tympani nerve +http://purl.obolibrary.org/obo/UBERON_0009675,chorda tympani branch of facial nerve,facial VII nerve chorda tympani branch +http://purl.obolibrary.org/obo/UBERON_0009675,chorda tympani branch of facial nerve,nervus corda tympani +http://purl.obolibrary.org/obo/UBERON_0009675,chorda tympani branch of facial nerve,parasympathetic root of submandibular ganglion +http://purl.obolibrary.org/obo/UBERON_0009675,chorda tympani branch of facial nerve,radix parasympathica ganglii submandibularis +http://purl.obolibrary.org/obo/UBERON_0009675,chorda tympani branch of facial nerve,tympanic cord +http://purl.obolibrary.org/obo/UBERON_0009676,early telencephalic vesicle,early telencephalic vesicle +http://purl.obolibrary.org/obo/UBERON_0009678,tooth row,dental arcade +http://purl.obolibrary.org/obo/UBERON_0009678,tooth row,row of teeth +http://purl.obolibrary.org/obo/UBERON_0009678,tooth row,tooth rows +http://purl.obolibrary.org/obo/UBERON_0009679,set of lower jaw teeth,arcus dentalis inferior +http://purl.obolibrary.org/obo/UBERON_0009679,set of lower jaw teeth,lower dental arcade +http://purl.obolibrary.org/obo/UBERON_0009679,set of lower jaw teeth,lower jaw teeth +http://purl.obolibrary.org/obo/UBERON_0009679,set of lower jaw teeth,set of all lower teeth +http://purl.obolibrary.org/obo/UBERON_0009680,set of upper jaw teeth,arcus dentalis superior +http://purl.obolibrary.org/obo/UBERON_0009680,set of upper jaw teeth,set of all upper teeth +http://purl.obolibrary.org/obo/UBERON_0009680,set of upper jaw teeth,upper dental arcade +http://purl.obolibrary.org/obo/UBERON_0009680,set of upper jaw teeth,upper jaw teeth +http://purl.obolibrary.org/obo/UBERON_0009687,middle cardiac vein,lesser cardiac vein +http://purl.obolibrary.org/obo/UBERON_0009687,middle cardiac vein,posterior interventricular vein +http://purl.obolibrary.org/obo/UBERON_0009688,posterior inferior cerebellar artery,posterior inferior cerebellar artery +http://purl.obolibrary.org/obo/UBERON_0009689,anterior inferior cerebellar artery, +http://purl.obolibrary.org/obo/UBERON_0009692,lumen of pharyngotympanic tube,auditory tube lumen +http://purl.obolibrary.org/obo/UBERON_0009692,lumen of pharyngotympanic tube,lumen of auditory tube +http://purl.obolibrary.org/obo/UBERON_0009692,lumen of pharyngotympanic tube,lumen of eustachian tube +http://purl.obolibrary.org/obo/UBERON_0009692,lumen of pharyngotympanic tube,pharyngotympanic tube lumen +http://purl.obolibrary.org/obo/UBERON_0009695,epithelium of laryngopharynx,epithelium of laryngeal pharynx +http://purl.obolibrary.org/obo/UBERON_0009695,epithelium of laryngopharynx,laryngopharynx epithelium +http://purl.obolibrary.org/obo/UBERON_0009697,epithelium of appendix,appendix epithelium +http://purl.obolibrary.org/obo/UBERON_0009697,epithelium of appendix,epithelium of vermiform appendix +http://purl.obolibrary.org/obo/UBERON_0009708,dorsal pancreas, +http://purl.obolibrary.org/obo/UBERON_0009709,ventral pancreas, +http://purl.obolibrary.org/obo/UBERON_0009712,endocardium of right ventricle,right ventricle endocardium +http://purl.obolibrary.org/obo/UBERON_0009712,endocardium of right ventricle,right ventricular endocardium +http://purl.obolibrary.org/obo/UBERON_0009713,endocardium of left ventricle,left ventricle endocardium +http://purl.obolibrary.org/obo/UBERON_0009713,endocardium of left ventricle,left ventricular endocardium +http://purl.obolibrary.org/obo/UBERON_0009714,intermaxillary process, +http://purl.obolibrary.org/obo/UBERON_0009715,stomodeal lumen,lumen of stomatodaeum +http://purl.obolibrary.org/obo/UBERON_0009715,stomodeal lumen,lumen of stomodeum +http://purl.obolibrary.org/obo/UBERON_0009715,stomodeal lumen,stomatodeal cavity +http://purl.obolibrary.org/obo/UBERON_0009716,cupular organ, +http://purl.obolibrary.org/obo/UBERON_0009717,coronal organ, +http://purl.obolibrary.org/obo/UBERON_0009718,neurohypophyseal duct, +http://purl.obolibrary.org/obo/UBERON_0009719,tunicate siphon,siphon +http://purl.obolibrary.org/obo/UBERON_0009720,oral siphon,anterior buccal siphon +http://purl.obolibrary.org/obo/UBERON_0009720,oral siphon,buccal siphon +http://purl.obolibrary.org/obo/UBERON_0009721,atrial siphon, +http://purl.obolibrary.org/obo/UBERON_0009722,entire pharyngeal arch endoderm, +http://purl.obolibrary.org/obo/UBERON_0009731,sublaminar layers S3 or S4, +http://purl.obolibrary.org/obo/UBERON_0009732,sublaminar layers S1 or S2 or S5, +http://purl.obolibrary.org/obo/UBERON_0009733,sublaminar layers S1 or S2 or S3, +http://purl.obolibrary.org/obo/UBERON_0009734,sublaminar layers S2 or S3 or S4, +http://purl.obolibrary.org/obo/UBERON_0009735,sublaminar layers S1 or S3 or S4, +http://purl.obolibrary.org/obo/UBERON_0009736,sublaminar layers S3 or S4 or S5, +http://purl.obolibrary.org/obo/UBERON_0009737,sublaminar layers S1 or S2 or S3 or S4, +http://purl.obolibrary.org/obo/UBERON_0009738,border of sublaminar layers S1 and S2, +http://purl.obolibrary.org/obo/UBERON_0009739,border of sublaminar layers S3 and S4, +http://purl.obolibrary.org/obo/UBERON_0009740,border between sublaminar layers, +http://purl.obolibrary.org/obo/UBERON_0009742,proamniotic cavity, +http://purl.obolibrary.org/obo/UBERON_0009743,visceral yolk sac cavity, +http://purl.obolibrary.org/obo/UBERON_0009744,lymph node medullary sinus, +http://purl.obolibrary.org/obo/UBERON_0009745,lymph node medullary cord, +http://purl.obolibrary.org/obo/UBERON_0009746,head fold of embryonic disc,head fold +http://purl.obolibrary.org/obo/UBERON_0009747,tail fold of embryonic disc,tail fold +http://purl.obolibrary.org/obo/UBERON_0009748,cephalic neural fold, +http://purl.obolibrary.org/obo/UBERON_0009749,limb mesenchyme, +http://purl.obolibrary.org/obo/UBERON_0009751,cardiac mesenchyme,heart mesenchyme +http://purl.obolibrary.org/obo/UBERON_0009752,pancreas mesenchyme, +http://purl.obolibrary.org/obo/UBERON_0009753,adrenal gland cortex zone,adrenal cortical region +http://purl.obolibrary.org/obo/UBERON_0009754,blubber, +http://purl.obolibrary.org/obo/UBERON_0009755,spermaceti, +http://purl.obolibrary.org/obo/UBERON_0009756,spermaceti organ, +http://purl.obolibrary.org/obo/UBERON_0009757,ambergris, +http://purl.obolibrary.org/obo/UBERON_0009758,abdominal ganglion, +http://purl.obolibrary.org/obo/UBERON_0009767,proximal interphalangeal joint, +http://purl.obolibrary.org/obo/UBERON_0009768,distal interphalangeal joint, +http://purl.obolibrary.org/obo/UBERON_0009769,left common cardinal vein,common cardinal vein left +http://purl.obolibrary.org/obo/UBERON_0009771,left anterior cardinal vein,left precardinal vein +http://purl.obolibrary.org/obo/UBERON_0009771,left anterior cardinal vein,precardinal vein left +http://purl.obolibrary.org/obo/UBERON_0009772,right anterior cardinal vein,precardinal vein right +http://purl.obolibrary.org/obo/UBERON_0009772,right anterior cardinal vein,right precardinal vein +http://purl.obolibrary.org/obo/UBERON_0009773,renal tubule,renal tubule (generic) +http://purl.obolibrary.org/obo/UBERON_0009773,renal tubule,tubule of excretory system +http://purl.obolibrary.org/obo/UBERON_0009775,lateral medullary reticular complex,lateral group of medullary reticular formation +http://purl.obolibrary.org/obo/UBERON_0009775,lateral medullary reticular complex,lateral medullary reticular group +http://purl.obolibrary.org/obo/UBERON_0009775,lateral medullary reticular complex,lateral reticular formation of the medulla oblongata +http://purl.obolibrary.org/obo/UBERON_0009775,lateral medullary reticular complex,nuclei laterales myelencephali +http://purl.obolibrary.org/obo/UBERON_0009776,intermediate reticular formation, +http://purl.obolibrary.org/obo/UBERON_0009777,intermediate reticular nucleus, +http://purl.obolibrary.org/obo/UBERON_0009778,pleural sac, +http://purl.obolibrary.org/obo/UBERON_0009779,cardiac muscle tissue of right auricle,cardiac muscle of right auricular region +http://purl.obolibrary.org/obo/UBERON_0009779,cardiac muscle tissue of right auricle,right atrium auricular region heart muscle +http://purl.obolibrary.org/obo/UBERON_0009779,cardiac muscle tissue of right auricle,right auricular region myocardium +http://purl.obolibrary.org/obo/UBERON_0009780,cardiac muscle tissue of left auricle,cardiac muscle of left auricular region +http://purl.obolibrary.org/obo/UBERON_0009780,cardiac muscle tissue of left auricle,left atrium auricular region heart muscle +http://purl.obolibrary.org/obo/UBERON_0009834,dorsolateral prefrontal cortex, +http://purl.obolibrary.org/obo/UBERON_0009835,anterior cingulate cortex, +http://purl.obolibrary.org/obo/UBERON_0009836,fronto-orbital gyrus,fronto-orbital gyrus +http://purl.obolibrary.org/obo/UBERON_0009836,fronto-orbital gyrus,orbito-frontal gyrus +http://purl.obolibrary.org/obo/UBERON_0009836,fronto-orbital gyrus,orbitofrontal gyrus +http://purl.obolibrary.org/obo/UBERON_0009840,lower rhombic lip,caudal rhombic lip +http://purl.obolibrary.org/obo/UBERON_0009840,lower rhombic lip,lower (caudal) rhombic lip +http://purl.obolibrary.org/obo/UBERON_0009841,upper rhombic lip,cerebellar anlage +http://purl.obolibrary.org/obo/UBERON_0009841,upper rhombic lip,presumptive cerebellum +http://purl.obolibrary.org/obo/UBERON_0009841,upper rhombic lip,rostral rhombic lip +http://purl.obolibrary.org/obo/UBERON_0009841,upper rhombic lip,upper (rostral) rhombic lip +http://purl.obolibrary.org/obo/UBERON_0009842,glandular acinus,acini +http://purl.obolibrary.org/obo/UBERON_0009842,glandular acinus,acinus +http://purl.obolibrary.org/obo/UBERON_0009843,prostate epithelial cord,cord of prostate epithelium +http://purl.obolibrary.org/obo/UBERON_0009843,prostate epithelial cord,epithelial cord of prostate +http://purl.obolibrary.org/obo/UBERON_0009844,urogenital sinus lumen, +http://purl.obolibrary.org/obo/UBERON_0009845,urogenital sinus mesenchyme,UGM +http://purl.obolibrary.org/obo/UBERON_0009846,embryonic cloacal epithelium, +http://purl.obolibrary.org/obo/UBERON_0009847,prostate field, +http://purl.obolibrary.org/obo/UBERON_0009848,zona limitans intrathalamica,ZLI +http://purl.obolibrary.org/obo/UBERON_0009850,nematode larva, +http://purl.obolibrary.org/obo/UBERON_0009851,border of sublaminar layers S4 and S5, +http://purl.obolibrary.org/obo/UBERON_0009852,border of sublaminar layers S2 and S3, +http://purl.obolibrary.org/obo/UBERON_0009853,body of uterus,corpus uteri +http://purl.obolibrary.org/obo/UBERON_0009853,body of uterus,uterine body +http://purl.obolibrary.org/obo/UBERON_0009853,body of uterus,uterine corpus +http://purl.obolibrary.org/obo/UBERON_0009854,digestive tract diverticulum, +http://purl.obolibrary.org/obo/UBERON_0009855,echinoderm gastric caecum, +http://purl.obolibrary.org/obo/UBERON_0009856,sac,diverticulum +http://purl.obolibrary.org/obo/UBERON_0009856,sac,pouch +http://purl.obolibrary.org/obo/UBERON_0009857,cavum septum pellucidum,cave of septum pellucidum +http://purl.obolibrary.org/obo/UBERON_0009857,cavum septum pellucidum,cavum of septum pellucidum +http://purl.obolibrary.org/obo/UBERON_0009857,cavum septum pellucidum,septum pellucidum cave +http://purl.obolibrary.org/obo/UBERON_0009857,cavum septum pellucidum,ventriculus septi pellucidi +http://purl.obolibrary.org/obo/UBERON_0009858,outer fibrous layer of periosteum,capsular layer of periosteum +http://purl.obolibrary.org/obo/UBERON_0009858,outer fibrous layer of periosteum,external layer of periosteum +http://purl.obolibrary.org/obo/UBERON_0009858,outer fibrous layer of periosteum,external periosteum +http://purl.obolibrary.org/obo/UBERON_0009858,outer fibrous layer of periosteum,fibrous layer of periosteum +http://purl.obolibrary.org/obo/UBERON_0009858,outer fibrous layer of periosteum,outer fibrous layer of periosteum +http://purl.obolibrary.org/obo/UBERON_0009859,endosteum, +http://purl.obolibrary.org/obo/UBERON_0009860,ascidian digestive gland, +http://purl.obolibrary.org/obo/UBERON_0009861,ascidian neural complex, +http://purl.obolibrary.org/obo/UBERON_0009862,ascidian cerebral ganglion, +http://purl.obolibrary.org/obo/UBERON_0009863,ascidian ciliated funnel, +http://purl.obolibrary.org/obo/UBERON_0009864,ascidian neural gland, +http://purl.obolibrary.org/obo/UBERON_0009865,Hatschek's pit, +http://purl.obolibrary.org/obo/UBERON_0009866,Hatschek's nephridium, +http://purl.obolibrary.org/obo/UBERON_0009867,Hatschek's diverticulum, +http://purl.obolibrary.org/obo/UBERON_0009868,Hatschek's left diverticulum, +http://purl.obolibrary.org/obo/UBERON_0009869,Hatschek's right diverticulum, +http://purl.obolibrary.org/obo/UBERON_0009870,zone of stomach,gastric zone +http://purl.obolibrary.org/obo/UBERON_0009870,zone of stomach,region of stomach +http://purl.obolibrary.org/obo/UBERON_0009870,zone of stomach,section of stomach +http://purl.obolibrary.org/obo/UBERON_0009871,nephrogenic zone,cortical nephrogenic niche +http://purl.obolibrary.org/obo/UBERON_0009871,nephrogenic zone,cortical nephrogenic zone +http://purl.obolibrary.org/obo/UBERON_0009877,metapodium region,metacarpal or metatarsal part of limb +http://purl.obolibrary.org/obo/UBERON_0009877,metapodium region,metacarpus/metatarsus region +http://purl.obolibrary.org/obo/UBERON_0009877,metapodium region,metapodial segment +http://purl.obolibrary.org/obo/UBERON_0009878,mesopodial skeleton,basipodium skeleton +http://purl.obolibrary.org/obo/UBERON_0009878,mesopodial skeleton,carpal/tarsal skeleton +http://purl.obolibrary.org/obo/UBERON_0009878,mesopodial skeleton,mesopodial skeleton +http://purl.obolibrary.org/obo/UBERON_0009878,mesopodial skeleton,mesopodium skeleton +http://purl.obolibrary.org/obo/UBERON_0009878,mesopodial skeleton,skeletal parts of mesopodium +http://purl.obolibrary.org/obo/UBERON_0009879,tarsal skeleton,hind mesopodial skeleton +http://purl.obolibrary.org/obo/UBERON_0009879,tarsal skeleton,hind mesopodium +http://purl.obolibrary.org/obo/UBERON_0009879,tarsal skeleton,hind mesopodium skeleton +http://purl.obolibrary.org/obo/UBERON_0009879,tarsal skeleton,set of tarsal bones +http://purl.obolibrary.org/obo/UBERON_0009879,tarsal skeleton,skeletal parts of hind mesopodium +http://purl.obolibrary.org/obo/UBERON_0009879,tarsal skeleton,tarsal bones set +http://purl.obolibrary.org/obo/UBERON_0009879,tarsal skeleton,tarsalia +http://purl.obolibrary.org/obo/UBERON_0009880,carpal skeleton,carpal bones +http://purl.obolibrary.org/obo/UBERON_0009880,carpal skeleton,carpal bones set +http://purl.obolibrary.org/obo/UBERON_0009880,carpal skeleton,fore mesopodial skeleton +http://purl.obolibrary.org/obo/UBERON_0009880,carpal skeleton,fore mesopodium skeleton +http://purl.obolibrary.org/obo/UBERON_0009880,carpal skeleton,ossa carpi +http://purl.obolibrary.org/obo/UBERON_0009880,carpal skeleton,skeletal parts of fore mesopodium +http://purl.obolibrary.org/obo/UBERON_0009880,carpal skeleton,skeleton of carpus +http://purl.obolibrary.org/obo/UBERON_0009881,anterior lateral plate mesoderm,ALPM +http://purl.obolibrary.org/obo/UBERON_0009882,anal column,column of Morgagni +http://purl.obolibrary.org/obo/UBERON_0009883,medullary ray,Ferrein's pyramid +http://purl.obolibrary.org/obo/UBERON_0009883,medullary ray,kidney medullary ray +http://purl.obolibrary.org/obo/UBERON_0009883,medullary ray,renal medullary ray +http://purl.obolibrary.org/obo/UBERON_0009885,interlobar artery,arteriae interlobares renis +http://purl.obolibrary.org/obo/UBERON_0009885,interlobar artery,interlobar artery of kidney +http://purl.obolibrary.org/obo/UBERON_0009885,interlobar artery,kidney interlobar artery +http://purl.obolibrary.org/obo/UBERON_0009885,interlobar artery,renal interlobar artery +http://purl.obolibrary.org/obo/UBERON_0009887,interlobar vein,interlobar vein of kidney +http://purl.obolibrary.org/obo/UBERON_0009887,interlobar vein,venae interlobares renis +http://purl.obolibrary.org/obo/UBERON_0009888,Koller's sickle,Kohler's sickle +http://purl.obolibrary.org/obo/UBERON_0009889,secondary heart field,anterior heart field +http://purl.obolibrary.org/obo/UBERON_0009889,secondary heart field,anterior/second heart field +http://purl.obolibrary.org/obo/UBERON_0009889,secondary heart field,second heart field +http://purl.obolibrary.org/obo/UBERON_0009890,anterior intestinal portal,fovea cardiaca +http://purl.obolibrary.org/obo/UBERON_0009891,facial mesenchyme,face mesenchyme +http://purl.obolibrary.org/obo/UBERON_0009891,facial mesenchyme,mesenchyme of face +http://purl.obolibrary.org/obo/UBERON_0009892,ascidian anterior sensory vesicle, +http://purl.obolibrary.org/obo/UBERON_0009893,ascidian ocellus, +http://purl.obolibrary.org/obo/UBERON_0009894,siphon primordium, +http://purl.obolibrary.org/obo/UBERON_0009895,atrial siphon primordia, +http://purl.obolibrary.org/obo/UBERON_0009896,oral siphon primordia, +http://purl.obolibrary.org/obo/UBERON_0009897,right auditory cortex, +http://purl.obolibrary.org/obo/UBERON_0009898,left auditory cortex, +http://purl.obolibrary.org/obo/UBERON_0009899,pole of cerebral hemisphere, +http://purl.obolibrary.org/obo/UBERON_0009906,root of optic nerve,optic nerve root +http://purl.obolibrary.org/obo/UBERON_0009906,root of optic nerve,optic tract root +http://purl.obolibrary.org/obo/UBERON_0009906,root of optic nerve,root of optic tract +http://purl.obolibrary.org/obo/UBERON_0009907,sensory root of trigeminal nerve,radix sensoria (nervus trigeminus [v]) +http://purl.obolibrary.org/obo/UBERON_0009907,sensory root of trigeminal nerve,radix sensoria nervus trigemini +http://purl.obolibrary.org/obo/UBERON_0009908,caudal root of abducens nerve,radix caudalis nervi abducentis +http://purl.obolibrary.org/obo/UBERON_0009909,rostral root of abducens nerve, +http://purl.obolibrary.org/obo/UBERON_0009910,posterior lateral plate mesoderm,PLPM +http://purl.obolibrary.org/obo/UBERON_0009911,lobule,lobulus +http://purl.obolibrary.org/obo/UBERON_0009912,anatomical lobe,lobus +http://purl.obolibrary.org/obo/UBERON_0009913,renal lobe,kidney lobe +http://purl.obolibrary.org/obo/UBERON_0009913,renal lobe,lobi renalis +http://purl.obolibrary.org/obo/UBERON_0009913,renal lobe,lobus renalis +http://purl.obolibrary.org/obo/UBERON_0009914,renal lobule,kidney lobule +http://purl.obolibrary.org/obo/UBERON_0009914,renal lobule,lobulus renalis +http://purl.obolibrary.org/obo/UBERON_0009916,wall of ureter,ureteral wall +http://purl.obolibrary.org/obo/UBERON_0009917,kidney corticomedullary boundary, +http://purl.obolibrary.org/obo/UBERON_0009918,retrotrapezoid nucleus, +http://purl.obolibrary.org/obo/UBERON_0009919,ureter smooth muscle,ureteral smooth muscle +http://purl.obolibrary.org/obo/UBERON_0009919,ureter smooth muscle,ureteral smooth muscle layer +http://purl.obolibrary.org/obo/UBERON_0009920,optic neural crest, +http://purl.obolibrary.org/obo/UBERON_0009921,hypophyseal tube, +http://purl.obolibrary.org/obo/UBERON_0009948,clavicular air sac, +http://purl.obolibrary.org/obo/UBERON_0009949,humeral diverticulum of clavicular air sac, +http://purl.obolibrary.org/obo/UBERON_0009950,olfactory bulb plexiform layer,plexiform layer +http://purl.obolibrary.org/obo/UBERON_0009951,main olfactory bulb, +http://purl.obolibrary.org/obo/UBERON_0009952,dentate gyrus subgranular zone,subgranular zone +http://purl.obolibrary.org/obo/UBERON_0009952,dentate gyrus subgranular zone,subgranular zone of dentate gyrus +http://purl.obolibrary.org/obo/UBERON_0009953,post-embryonic organism,postnatal organism +http://purl.obolibrary.org/obo/UBERON_0009954,vomeronasal system, +http://purl.obolibrary.org/obo/UBERON_0009955,neurogenic placode,neurogenic placodes +http://purl.obolibrary.org/obo/UBERON_0009956,corpuscle of de Quatrefage,organ of de Quatrefage +http://purl.obolibrary.org/obo/UBERON_0009957,ciliated pit, +http://purl.obolibrary.org/obo/UBERON_0009958,bladder lumen,bladder cavity +http://purl.obolibrary.org/obo/UBERON_0009958,bladder lumen,cavity of urinary bladder +http://purl.obolibrary.org/obo/UBERON_0009958,bladder lumen,lumen of urinary bladder +http://purl.obolibrary.org/obo/UBERON_0009958,bladder lumen,urinary bladder lumen +http://purl.obolibrary.org/obo/UBERON_0009959,lumen of oropharynx,oropharyngeal cavity +http://purl.obolibrary.org/obo/UBERON_0009959,lumen of oropharynx,oropharynx lumen +http://purl.obolibrary.org/obo/UBERON_0009960,esophagus smooth muscle circular layer,circular muscle layer of esophagus +http://purl.obolibrary.org/obo/UBERON_0009960,esophagus smooth muscle circular layer,esophagus smooth muscle circular layer +http://purl.obolibrary.org/obo/UBERON_0009960,esophagus smooth muscle circular layer,inner circular muscle layer of esophagus +http://purl.obolibrary.org/obo/UBERON_0009961,esophagus smooth muscle longitudinal layer,esophagus smooth muscle longitudinal layer +http://purl.obolibrary.org/obo/UBERON_0009961,esophagus smooth muscle longitudinal layer,longitudinal muscle layer of esophagus +http://purl.obolibrary.org/obo/UBERON_0009961,esophagus smooth muscle longitudinal layer,outer longitudinal muscle layer of esophagus +http://purl.obolibrary.org/obo/UBERON_0009962,excretory gland, +http://purl.obolibrary.org/obo/UBERON_0009963,antennal gland,green gland +http://purl.obolibrary.org/obo/UBERON_0009964,crustacean maxillary gland, +http://purl.obolibrary.org/obo/UBERON_0009965,coxal gland, +http://purl.obolibrary.org/obo/UBERON_0009966,internodal tract,interatrial conduction tract +http://purl.obolibrary.org/obo/UBERON_0009966,internodal tract,internodal conduction tract +http://purl.obolibrary.org/obo/UBERON_0009966,internodal tract,internodal fasciculus +http://purl.obolibrary.org/obo/UBERON_0009966,internodal tract,internodal tract muscle tissue +http://purl.obolibrary.org/obo/UBERON_0009967,spleen venous sinus,sinus lienalis +http://purl.obolibrary.org/obo/UBERON_0009967,spleen venous sinus,sinus splenicus +http://purl.obolibrary.org/obo/UBERON_0009967,spleen venous sinus,splenic sinus +http://purl.obolibrary.org/obo/UBERON_0009967,spleen venous sinus,venous sinus of red pulp of spleen +http://purl.obolibrary.org/obo/UBERON_0009968,primitive superior sagittal sinus, +http://purl.obolibrary.org/obo/UBERON_0009969,statoacoustic epithelium,stato-acoustic epithelium +http://purl.obolibrary.org/obo/UBERON_0009970,epithelium of pancreatic duct,pancreatic duct epithelium +http://purl.obolibrary.org/obo/UBERON_0009970,epithelium of pancreatic duct,pancreatic ductal epithelium +http://purl.obolibrary.org/obo/UBERON_0009971,principal gastric gland,acid gland +http://purl.obolibrary.org/obo/UBERON_0009971,principal gastric gland,glandula gastrica propria +http://purl.obolibrary.org/obo/UBERON_0009971,principal gastric gland,main gastric gland +http://purl.obolibrary.org/obo/UBERON_0009971,principal gastric gland,oxyntic gland +http://purl.obolibrary.org/obo/UBERON_0009971,principal gastric gland,principal gland of fundus of stomach +http://purl.obolibrary.org/obo/UBERON_0009972,ureteropelvic junction,pelviureteric junction +http://purl.obolibrary.org/obo/UBERON_0009972,ureteropelvic junction,pelvoureteric junction +http://purl.obolibrary.org/obo/UBERON_0009973,ureterovesical junction,vesico-ureteral junction +http://purl.obolibrary.org/obo/UBERON_0009973,ureterovesical junction,vesico-ureteric junction +http://purl.obolibrary.org/obo/UBERON_0009973,ureterovesical junction,vesicoureteric junction +http://purl.obolibrary.org/obo/UBERON_0009974,lumen of Rathke's pouch, +http://purl.obolibrary.org/obo/UBERON_0009975,remnant of lumen of Rathke's pouch, +http://purl.obolibrary.org/obo/UBERON_0009976,hypothalamo-hypophyseal system,hypophyseal portal system +http://purl.obolibrary.org/obo/UBERON_0009976,hypothalamo-hypophyseal system,hypothalamic hypophyseal portal system +http://purl.obolibrary.org/obo/UBERON_0009976,hypothalamo-hypophyseal system,hypothalamohypophyseal portal system +http://purl.obolibrary.org/obo/UBERON_0009976,hypothalamo-hypophyseal system,venae portales hypophysiales +http://purl.obolibrary.org/obo/UBERON_0009977,natal tooth,natal teeth +http://purl.obolibrary.org/obo/UBERON_0009978,epicondyle, +http://purl.obolibrary.org/obo/UBERON_0009979,condyle,condylus +http://purl.obolibrary.org/obo/UBERON_0009980,condyle of femur,condylus femoralis +http://purl.obolibrary.org/obo/UBERON_0009980,condyle of femur,condylus femoris +http://purl.obolibrary.org/obo/UBERON_0009980,condyle of femur,femoral condyle +http://purl.obolibrary.org/obo/UBERON_0009984,medial condyle of femur,condylus medialis femoris +http://purl.obolibrary.org/obo/UBERON_0009985,lateral condyle of femur,condylus lateralis femoris +http://purl.obolibrary.org/obo/UBERON_0009986,lateral epicondyle of femur,epicondylus lateralis (femur) +http://purl.obolibrary.org/obo/UBERON_0009986,lateral epicondyle of femur,epicondylus lateralis femoris +http://purl.obolibrary.org/obo/UBERON_0009987,medial epicondyle of femur,epicondylus medialis (femur) +http://purl.obolibrary.org/obo/UBERON_0009988,condyle of humerus,condylus humeri +http://purl.obolibrary.org/obo/UBERON_0009988,condyle of humerus,humeral condyle +http://purl.obolibrary.org/obo/UBERON_0009989,condyle of tibia,tibial condyle +http://purl.obolibrary.org/obo/UBERON_0009990,medial condyle of tibia,condylus medialis (tibia) +http://purl.obolibrary.org/obo/UBERON_0009990,medial condyle of tibia,condylus medialis tibiae +http://purl.obolibrary.org/obo/UBERON_0009991,lateral condyle of tibia,condylus lateralis (tibia) +http://purl.obolibrary.org/obo/UBERON_0009991,lateral condyle of tibia,condylus lateralis tibiae +http://purl.obolibrary.org/obo/UBERON_0009992,cranial sensory ganglion,cranial nerve sensory ganglion +http://purl.obolibrary.org/obo/UBERON_0009992,cranial sensory ganglion,ganglion sensorium cranialium +http://purl.obolibrary.org/obo/UBERON_0009992,cranial sensory ganglion,ganglion sensorium nervi cranialis +http://purl.obolibrary.org/obo/UBERON_0009992,cranial sensory ganglion,sensory ganglion of cranial nerve +http://purl.obolibrary.org/obo/UBERON_0009993,primary chorionic villus, +http://purl.obolibrary.org/obo/UBERON_0009994,secondary chorionic villus, +http://purl.obolibrary.org/obo/UBERON_0009995,tertiary chorionic villus, +http://purl.obolibrary.org/obo/UBERON_0010000,multicellular anatomical structure,multicellular structure +http://purl.obolibrary.org/obo/UBERON_0010001,cell cluster organ, +http://purl.obolibrary.org/obo/UBERON_0010002,pulmonary neuroendocrine body,NEB +http://purl.obolibrary.org/obo/UBERON_0010002,pulmonary neuroendocrine body,pulmonary neuroepithelial body +http://purl.obolibrary.org/obo/UBERON_0010005,placental labyrinth villous,villous of placental labyrinth +http://purl.obolibrary.org/obo/UBERON_0010006,placenta intervillous maternal lacunae, +http://purl.obolibrary.org/obo/UBERON_0010007,placenta fetal blood space, +http://purl.obolibrary.org/obo/UBERON_0010008,placental cotyledon,placenta cotyledon +http://purl.obolibrary.org/obo/UBERON_0010009,aggregate regional part of brain,set of nuclei of neuraxis +http://purl.obolibrary.org/obo/UBERON_0010010,basal nucleus of telencephalon,Meynert's nucleus +http://purl.obolibrary.org/obo/UBERON_0010010,basal nucleus of telencephalon,basal magnocellular nucleus (substantia innominata) +http://purl.obolibrary.org/obo/UBERON_0010010,basal nucleus of telencephalon,basal nuclei of Meynert +http://purl.obolibrary.org/obo/UBERON_0010010,basal nucleus of telencephalon,basal nucleus +http://purl.obolibrary.org/obo/UBERON_0010010,basal nucleus of telencephalon,basal nucleus of Meynert +http://purl.obolibrary.org/obo/UBERON_0010010,basal nucleus of telencephalon,basal substance of telencephalon +http://purl.obolibrary.org/obo/UBERON_0010010,basal nucleus of telencephalon,ganglion of Meynert +http://purl.obolibrary.org/obo/UBERON_0010010,basal nucleus of telencephalon,nucleus basalis +http://purl.obolibrary.org/obo/UBERON_0010010,basal nucleus of telencephalon,nucleus basalis of Meynert +http://purl.obolibrary.org/obo/UBERON_0010010,basal nucleus of telencephalon,substantia basalis telencephali +http://purl.obolibrary.org/obo/UBERON_0010011,collection of basal ganglia,basal ganglia +http://purl.obolibrary.org/obo/UBERON_0010011,collection of basal ganglia,basal ganglia set +http://purl.obolibrary.org/obo/UBERON_0010011,collection of basal ganglia,basal nuclei +http://purl.obolibrary.org/obo/UBERON_0010011,collection of basal ganglia,basal nuclei (basal ganglia) +http://purl.obolibrary.org/obo/UBERON_0010011,collection of basal ganglia,cerebral nuclei +http://purl.obolibrary.org/obo/UBERON_0010011,collection of basal ganglia,set of basal ganglia +http://purl.obolibrary.org/obo/UBERON_0010011,collection of basal ganglia,set of basal nuclei +http://purl.obolibrary.org/obo/UBERON_0010011,collection of basal ganglia,subcortical nuclei +http://purl.obolibrary.org/obo/UBERON_0010012,upper beak, +http://purl.obolibrary.org/obo/UBERON_0010013,lower beak, +http://purl.obolibrary.org/obo/UBERON_0010014,epigonal organ,subgonal organ +http://purl.obolibrary.org/obo/UBERON_0010015,ventral patch of Leydig's organ, +http://purl.obolibrary.org/obo/UBERON_0010016,spiral valve of intestine,intestinal spiral valve +http://purl.obolibrary.org/obo/UBERON_0010017,spiral valve of cystic duct,Heister's valve +http://purl.obolibrary.org/obo/UBERON_0010017,spiral valve of cystic duct,plica spiralis +http://purl.obolibrary.org/obo/UBERON_0010017,spiral valve of cystic duct,plica spiralis (ductus cysticus) +http://purl.obolibrary.org/obo/UBERON_0010017,spiral valve of cystic duct,spiral fold of cystic duct +http://purl.obolibrary.org/obo/UBERON_0010017,spiral valve of cystic duct,valve of Heister +http://purl.obolibrary.org/obo/UBERON_0010018,spiral valve of conus arteriosus, +http://purl.obolibrary.org/obo/UBERON_0010019,spiracle (sensu Vertebrata),vertebrate spiracle +http://purl.obolibrary.org/obo/UBERON_0010020,tubotympanic recess epithelium, +http://purl.obolibrary.org/obo/UBERON_0010021,dorsal part of pharyngeal pouch 1,dorsal 1st branchial pouch +http://purl.obolibrary.org/obo/UBERON_0010021,dorsal part of pharyngeal pouch 1,dorsal pharyngeal pouch 1 +http://purl.obolibrary.org/obo/UBERON_0010022,ventral part of pharyngeal pouch 1,ventral 1st branchial pouch +http://purl.obolibrary.org/obo/UBERON_0010022,ventral part of pharyngeal pouch 1,ventral pharyngeal pouch 1 +http://purl.obolibrary.org/obo/UBERON_0010023,dorsal part of pharyngeal pouch 2,dorsal 2nd branchial pouch +http://purl.obolibrary.org/obo/UBERON_0010023,dorsal part of pharyngeal pouch 2,dorsal pharyngeal pouch 2 +http://purl.obolibrary.org/obo/UBERON_0010024,ventral part of pharyngeal pouch 2,ventral 2nd branchial pouch +http://purl.obolibrary.org/obo/UBERON_0010024,ventral part of pharyngeal pouch 2,ventral pharyngeal pouch 2 +http://purl.obolibrary.org/obo/UBERON_0010025,dorsal part of pharyngeal pouch 3,dorsal 3rd arch pharyngeal pouch endoderm +http://purl.obolibrary.org/obo/UBERON_0010025,dorsal part of pharyngeal pouch 3,dorsal 3rd branchial pouch +http://purl.obolibrary.org/obo/UBERON_0010025,dorsal part of pharyngeal pouch 3,dorsal pharyngeal pouch 3 +http://purl.obolibrary.org/obo/UBERON_0010025,dorsal part of pharyngeal pouch 3,dorsal wing of pharyngeal pouch 3 +http://purl.obolibrary.org/obo/UBERON_0010026,ventral part of pharyngeal pouch 3,ventral 3rd arch pharyngeal pouch endoderm +http://purl.obolibrary.org/obo/UBERON_0010026,ventral part of pharyngeal pouch 3,ventral 3rd branchial pouch +http://purl.obolibrary.org/obo/UBERON_0010026,ventral part of pharyngeal pouch 3,ventral pharyngeal pouch 3 +http://purl.obolibrary.org/obo/UBERON_0010026,ventral part of pharyngeal pouch 3,ventral wing of pharyngeal pouch 3 +http://purl.obolibrary.org/obo/UBERON_0010027,dorsal part of pharyngeal pouch 4,dorsal 4th branchial pouch +http://purl.obolibrary.org/obo/UBERON_0010027,dorsal part of pharyngeal pouch 4,dorsal pharyngeal pouch 4 +http://purl.obolibrary.org/obo/UBERON_0010028,ventral part of pharyngeal pouch 4,ventral 4th branchial pouch +http://purl.obolibrary.org/obo/UBERON_0010028,ventral part of pharyngeal pouch 4,ventral pharyngeal pouch 4 +http://purl.obolibrary.org/obo/UBERON_0010029,dorsal part of pharyngeal pouch 5,dorsal 5th branchial pouch +http://purl.obolibrary.org/obo/UBERON_0010029,dorsal part of pharyngeal pouch 5,dorsal pharyngeal pouch 5 +http://purl.obolibrary.org/obo/UBERON_0010030,ventral part of pharyngeal pouch 5,ventral 5th branchial pouch +http://purl.obolibrary.org/obo/UBERON_0010030,ventral part of pharyngeal pouch 5,ventral pharyngeal pouch 5 +http://purl.obolibrary.org/obo/UBERON_0010031,6th arch mesenchyme,6th pharyngeal arch mesenchyme +http://purl.obolibrary.org/obo/UBERON_0010032,anterior part of tongue, +http://purl.obolibrary.org/obo/UBERON_0010033,posterior part of tongue,base of tongue +http://purl.obolibrary.org/obo/UBERON_0010033,posterior part of tongue,pars posterior (dorsum linguae) +http://purl.obolibrary.org/obo/UBERON_0010033,posterior part of tongue,pars posterior dorsi linguae +http://purl.obolibrary.org/obo/UBERON_0010033,posterior part of tongue,pars posterior linguae +http://purl.obolibrary.org/obo/UBERON_0010033,posterior part of tongue,pars postsulcalis (dorsum linguae) +http://purl.obolibrary.org/obo/UBERON_0010033,posterior part of tongue,pharyngeal part of tongue +http://purl.obolibrary.org/obo/UBERON_0010033,posterior part of tongue,pharyngeal portion of dorsum of tongue +http://purl.obolibrary.org/obo/UBERON_0010033,posterior part of tongue,posterior part of dorsum of tongue +http://purl.obolibrary.org/obo/UBERON_0010033,posterior part of tongue,postsulcal part of dorsum of tongue +http://purl.obolibrary.org/obo/UBERON_0010034,copula linguae,copula +http://purl.obolibrary.org/obo/UBERON_0010036,anterior tegmental nucleus, +http://purl.obolibrary.org/obo/UBERON_0010038,fundic gastric gland,fundal gland +http://purl.obolibrary.org/obo/UBERON_0010038,fundic gastric gland,fundus gland +http://purl.obolibrary.org/obo/UBERON_0010038,fundic gastric gland,gastric fundal gland +http://purl.obolibrary.org/obo/UBERON_0010038,fundic gastric gland,gastric fundus gland +http://purl.obolibrary.org/obo/UBERON_0010038,fundic gastric gland,gastric gland of fundus of stomach +http://purl.obolibrary.org/obo/UBERON_0010039,food storage organ, +http://purl.obolibrary.org/obo/UBERON_0010040,stomach non-glandular epithelium,stomach aglandular epithelium +http://purl.obolibrary.org/obo/UBERON_0010041,median ovary, +http://purl.obolibrary.org/obo/UBERON_0010042,1st arch mesenchyme,mesenchyme of 1st arch +http://purl.obolibrary.org/obo/UBERON_0010045,1st arch maxillary mesenchyme,mesenchyme of maxillary component +http://purl.obolibrary.org/obo/UBERON_0010046,entire pharyngeal arch associated mesenchyme,associated mesenchyme of pharyngeal region +http://purl.obolibrary.org/obo/UBERON_0010046,entire pharyngeal arch associated mesenchyme,entire branchial arch associated mesenchyme +http://purl.obolibrary.org/obo/UBERON_0010046,entire pharyngeal arch associated mesenchyme,pharyngeal arch associated mesenchyme +http://purl.obolibrary.org/obo/UBERON_0010047,oral gland,buccal gland +http://purl.obolibrary.org/obo/UBERON_0010047,oral gland,gland of oral opening +http://purl.obolibrary.org/obo/UBERON_0010047,oral gland,gland of oral region +http://purl.obolibrary.org/obo/UBERON_0010047,oral gland,mouth gland +http://purl.obolibrary.org/obo/UBERON_0010047,oral gland,oral cavity gland +http://purl.obolibrary.org/obo/UBERON_0010047,oral gland,oral region gland +http://purl.obolibrary.org/obo/UBERON_0010048,Duvernoy's gland, +http://purl.obolibrary.org/obo/UBERON_0010049,supralabial gland, +http://purl.obolibrary.org/obo/UBERON_0010050,infralabial gland, +http://purl.obolibrary.org/obo/UBERON_0010051,dorsal patch of Leydig's organ, +http://purl.obolibrary.org/obo/UBERON_0010052,mucosa of dorsum of tongue,mucosa of dorsal surface of tongue +http://purl.obolibrary.org/obo/UBERON_0010053,echolocation organ, +http://purl.obolibrary.org/obo/UBERON_0010054,malleus cartilage element, +http://purl.obolibrary.org/obo/UBERON_0010055,stapes cartilage element, +http://purl.obolibrary.org/obo/UBERON_0010056,future tongue, +http://purl.obolibrary.org/obo/UBERON_0010057,hypopharyngeal eminence,hypobranchial eminence +http://purl.obolibrary.org/obo/UBERON_0010059,hypoglossal cord, +http://purl.obolibrary.org/obo/UBERON_0010060,pharyngeal opening of pharyngotympanic tube,ostium pharyngeum tubae auditivae +http://purl.obolibrary.org/obo/UBERON_0010060,pharyngeal opening of pharyngotympanic tube,ostium pharyngeum tubae auditoriae +http://purl.obolibrary.org/obo/UBERON_0010060,pharyngeal opening of pharyngotympanic tube,pharyngeal opening of auditory tube +http://purl.obolibrary.org/obo/UBERON_0010060,pharyngeal opening of pharyngotympanic tube,pharyngeal opening of eustachian tube +http://purl.obolibrary.org/obo/UBERON_0010060,pharyngeal opening of pharyngotympanic tube,pharyngeal orifice of auditory tube +http://purl.obolibrary.org/obo/UBERON_0010060,pharyngeal opening of pharyngotympanic tube,pharyngeal orifice of eustachian tube +http://purl.obolibrary.org/obo/UBERON_0010060,pharyngeal opening of pharyngotympanic tube,pharyngeal orifice of pharyngotympanic tube +http://purl.obolibrary.org/obo/UBERON_0010060,pharyngeal opening of pharyngotympanic tube,pharyngeal ostium of auditory tube +http://purl.obolibrary.org/obo/UBERON_0010060,pharyngeal opening of pharyngotympanic tube,pharyngeal ostium of eustachian tube +http://purl.obolibrary.org/obo/UBERON_0010060,pharyngeal opening of pharyngotympanic tube,pharyngeal ostium of pharyngotympanic tube +http://purl.obolibrary.org/obo/UBERON_0010060,pharyngeal opening of pharyngotympanic tube,pharyngeal tubal ostium +http://purl.obolibrary.org/obo/UBERON_0010061,lumen of nasopharynx,nasopharyngeal luman +http://purl.obolibrary.org/obo/UBERON_0010061,lumen of nasopharynx,nasopharynx cavity +http://purl.obolibrary.org/obo/UBERON_0010061,lumen of nasopharynx,nasopharynx lumen +http://purl.obolibrary.org/obo/UBERON_0010062,pharyngotympanic tube epithelium,auditory tube epithelium +http://purl.obolibrary.org/obo/UBERON_0010062,pharyngotympanic tube epithelium,eustachian tube epithelium +http://purl.obolibrary.org/obo/UBERON_0010063,tympanic cavity epithelium, +http://purl.obolibrary.org/obo/UBERON_0010064,open anatomical space, +http://purl.obolibrary.org/obo/UBERON_0010065,auditory meatus epithelium, +http://purl.obolibrary.org/obo/UBERON_0010066,tympanic plate,pars tympanica (os temporale) +http://purl.obolibrary.org/obo/UBERON_0010066,tympanic plate,tympanic part of temporal bone +http://purl.obolibrary.org/obo/UBERON_0010069,outer epithelial layer of tympanic membrane,cuticular layer of tympanic membrane +http://purl.obolibrary.org/obo/UBERON_0010069,outer epithelial layer of tympanic membrane,cuticular stratum of tympanic membrane +http://purl.obolibrary.org/obo/UBERON_0010069,outer epithelial layer of tympanic membrane,outer cuticular layer of tympanic membrane +http://purl.obolibrary.org/obo/UBERON_0010069,outer epithelial layer of tympanic membrane,outer layer of tympanic membrane +http://purl.obolibrary.org/obo/UBERON_0010069,outer epithelial layer of tympanic membrane,tympanic membrane external acoustic meatus epithelial component +http://purl.obolibrary.org/obo/UBERON_0010070,intermediate layer of tympanic membrane,connective tissue layer of tympanic membrane +http://purl.obolibrary.org/obo/UBERON_0010070,intermediate layer of tympanic membrane,fibrous layer of tympanic membrane +http://purl.obolibrary.org/obo/UBERON_0010070,intermediate layer of tympanic membrane,fibrous stratum of tympanic membrane +http://purl.obolibrary.org/obo/UBERON_0010070,intermediate layer of tympanic membrane,intermediate fibrous layer of tympanic membrane +http://purl.obolibrary.org/obo/UBERON_0010070,intermediate layer of tympanic membrane,tympanic endothelium +http://purl.obolibrary.org/obo/UBERON_0010071,layer of tympanic membrane,tympanic membrane layer +http://purl.obolibrary.org/obo/UBERON_0010074,chromaffin system,argentaffin system +http://purl.obolibrary.org/obo/UBERON_0010074,chromaffin system,chromaffin tissue +http://purl.obolibrary.org/obo/UBERON_0010075,sacral neural crest, +http://purl.obolibrary.org/obo/UBERON_0010076,network of trabecular spaces in bone tissue,trabecular network of bone tissue +http://purl.obolibrary.org/obo/UBERON_0010077,cuboidal epithelium, +http://purl.obolibrary.org/obo/UBERON_0010078,optic choroid vascular plexus,CVP +http://purl.obolibrary.org/obo/UBERON_0010081,future common hepatic duct, +http://purl.obolibrary.org/obo/UBERON_0010083,future dermis, +http://purl.obolibrary.org/obo/UBERON_0010084,future diaphragm, +http://purl.obolibrary.org/obo/UBERON_0010090,future falx cerebri, +http://purl.obolibrary.org/obo/UBERON_0010091,future hindbrain meninx,future hindbrain meninges +http://purl.obolibrary.org/obo/UBERON_0010092,future metencephalon, +http://purl.obolibrary.org/obo/UBERON_0010096,future myelencephalon, +http://purl.obolibrary.org/obo/UBERON_0010123,future facial nucleus, +http://purl.obolibrary.org/obo/UBERON_0010124,future inferior salivatory nucleus, +http://purl.obolibrary.org/obo/UBERON_0010125,future superior salivatory nucleus, +http://purl.obolibrary.org/obo/UBERON_0010126,future nucleus ambiguus, +http://purl.obolibrary.org/obo/UBERON_0010127,future dorsal motor nucleus of vagus, +http://purl.obolibrary.org/obo/UBERON_0010128,future pterygopalatine ganglion,future Meckel ganglion +http://purl.obolibrary.org/obo/UBERON_0010128,future pterygopalatine ganglion,future Meckel's ganglion +http://purl.obolibrary.org/obo/UBERON_0010128,future pterygopalatine ganglion,future nasal ganglion +http://purl.obolibrary.org/obo/UBERON_0010128,future pterygopalatine ganglion,future palatine ganglion +http://purl.obolibrary.org/obo/UBERON_0010128,future pterygopalatine ganglion,future pterygopalatine ganglia +http://purl.obolibrary.org/obo/UBERON_0010128,future pterygopalatine ganglion,future sphenopalatine ganglion +http://purl.obolibrary.org/obo/UBERON_0010128,future pterygopalatine ganglion,future sphenopalatine parasympathetic ganglion +http://purl.obolibrary.org/obo/UBERON_0010129,femur cartilage element,femoral cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010130,embryonic autopod plate,autopod plate +http://purl.obolibrary.org/obo/UBERON_0010130,embryonic autopod plate,limb plate +http://purl.obolibrary.org/obo/UBERON_0010131,conducting tissue of heart,specialized conducting tissue of heart +http://purl.obolibrary.org/obo/UBERON_0010131,conducting tissue of heart,specialized muscle tissue of heart +http://purl.obolibrary.org/obo/UBERON_0010132,gastroduodenal artery, +http://purl.obolibrary.org/obo/UBERON_0010133,neuroendocrine gland,neuroendocrine system gland +http://purl.obolibrary.org/obo/UBERON_0010134,secretory circumventricular organ, +http://purl.obolibrary.org/obo/UBERON_0010135,sensory circumventricular organ,humerosensory circumventricular organ +http://purl.obolibrary.org/obo/UBERON_0010135,sensory circumventricular organ,humerosensory system +http://purl.obolibrary.org/obo/UBERON_0010135,sensory circumventricular organ,humerosensory system organ +http://purl.obolibrary.org/obo/UBERON_0010135,sensory circumventricular organ,sensitive circumventricular organs +http://purl.obolibrary.org/obo/UBERON_0010135,sensory circumventricular organ,sensitive organs +http://purl.obolibrary.org/obo/UBERON_0010135,sensory circumventricular organ,sensory CVOs +http://purl.obolibrary.org/obo/UBERON_0010135,sensory circumventricular organ,sensory circumventricular organs +http://purl.obolibrary.org/obo/UBERON_0010136,epithelial sheet, +http://purl.obolibrary.org/obo/UBERON_0010137,polarized epithelium, +http://purl.obolibrary.org/obo/UBERON_0010141,primitive sex cord of indifferent gonad,indifferent sex cord +http://purl.obolibrary.org/obo/UBERON_0010141,primitive sex cord of indifferent gonad,primitive sex cords +http://purl.obolibrary.org/obo/UBERON_0010143,seminal vesicle fluid,secretion of seminal vesicle +http://purl.obolibrary.org/obo/UBERON_0010143,seminal vesicle fluid,seminal vesicle secretion +http://purl.obolibrary.org/obo/UBERON_0010145,paraurethral gland,Skene gland +http://purl.obolibrary.org/obo/UBERON_0010145,paraurethral gland,Skene's gland +http://purl.obolibrary.org/obo/UBERON_0010145,paraurethral gland,female prostate +http://purl.obolibrary.org/obo/UBERON_0010145,paraurethral gland,para-urethral gland +http://purl.obolibrary.org/obo/UBERON_0010145,paraurethral gland,periurethral gland +http://purl.obolibrary.org/obo/UBERON_0010145,paraurethral gland,urethral gland of clitoral urethra +http://purl.obolibrary.org/obo/UBERON_0010146,paraurethral duct,Skene's duct +http://purl.obolibrary.org/obo/UBERON_0010146,paraurethral duct,duct of Skene's gland +http://purl.obolibrary.org/obo/UBERON_0010146,paraurethral duct,duct of paraurethral gland +http://purl.obolibrary.org/obo/UBERON_0010146,paraurethral duct,female prostate duct +http://purl.obolibrary.org/obo/UBERON_0010146,paraurethral duct,paraurethral gland duct +http://purl.obolibrary.org/obo/UBERON_0010146,paraurethral duct,periurethral duct +http://purl.obolibrary.org/obo/UBERON_0010147,male accessory sex gland,male accessory gland +http://purl.obolibrary.org/obo/UBERON_0010147,male accessory sex gland,male accessory reproductive gland +http://purl.obolibrary.org/obo/UBERON_0010148,mating plug,copulation plug +http://purl.obolibrary.org/obo/UBERON_0010148,mating plug,copulatory plug +http://purl.obolibrary.org/obo/UBERON_0010148,mating plug,sperm plug +http://purl.obolibrary.org/obo/UBERON_0010148,mating plug,vaginal plug +http://purl.obolibrary.org/obo/UBERON_0010150,duct of major vestibular gland,duct of greater vestibular gland +http://purl.obolibrary.org/obo/UBERON_0010150,duct of major vestibular gland,greater vestibular gland duct +http://purl.obolibrary.org/obo/UBERON_0010151,duct of bulbourethral gland,bulbourethral gland duct +http://purl.obolibrary.org/obo/UBERON_0010151,duct of bulbourethral gland,duct of bulbo-urethral gland +http://purl.obolibrary.org/obo/UBERON_0010151,duct of bulbourethral gland,ductus glandulae bulbourethralis +http://purl.obolibrary.org/obo/UBERON_0010152,skin mucus, +http://purl.obolibrary.org/obo/UBERON_0010153,rumen papilla,rumen papillae +http://purl.obolibrary.org/obo/UBERON_0010154,inner lining mucosa of the abomasum, +http://purl.obolibrary.org/obo/UBERON_0010155,parietomastoid suture,parieto-mastoid suture of skull +http://purl.obolibrary.org/obo/UBERON_0010155,parietomastoid suture,parietomastoid suture of skull +http://purl.obolibrary.org/obo/UBERON_0010156,sphenofrontal suture,frontosphenoid suture +http://purl.obolibrary.org/obo/UBERON_0010156,sphenofrontal suture,sphenofrontal suture of skull +http://purl.obolibrary.org/obo/UBERON_0010157,sphenoparietal suture,spheno-parietal suture +http://purl.obolibrary.org/obo/UBERON_0010157,sphenoparietal suture,sphenoparietal suture of skull +http://purl.obolibrary.org/obo/UBERON_0010158,sphenozygomatic suture,sphenozygomatica suture of skull +http://purl.obolibrary.org/obo/UBERON_0010159,occipitomastoid suture,occipitomastoid suture of skull +http://purl.obolibrary.org/obo/UBERON_0010160,lumen of lymphatic vessel,lumen of lymphatic duct +http://purl.obolibrary.org/obo/UBERON_0010160,lumen of lymphatic vessel,lymphatic vessel lumen +http://purl.obolibrary.org/obo/UBERON_0010161,lumen of blood vessel,blood vessel lumen +http://purl.obolibrary.org/obo/UBERON_0010162,post-anal tail tip,tail tip +http://purl.obolibrary.org/obo/UBERON_0010163,eyebrow, +http://purl.obolibrary.org/obo/UBERON_0010164,collection of hairs,hairs +http://purl.obolibrary.org/obo/UBERON_0010164,collection of hairs,hairs set +http://purl.obolibrary.org/obo/UBERON_0010164,collection of hairs,pili +http://purl.obolibrary.org/obo/UBERON_0010164,collection of hairs,set of hairs +http://purl.obolibrary.org/obo/UBERON_0010165,collection of hair on face,facial hairs set +http://purl.obolibrary.org/obo/UBERON_0010165,collection of hair on face,set of facial hairs +http://purl.obolibrary.org/obo/UBERON_0010166,coat of hair,hair coat +http://purl.obolibrary.org/obo/UBERON_0010166,coat of hair,set of coat hairs +http://purl.obolibrary.org/obo/UBERON_0010167,beard, +http://purl.obolibrary.org/obo/UBERON_0010168,collection of eyelashes,cilia +http://purl.obolibrary.org/obo/UBERON_0010168,collection of eyelashes,eyelashes +http://purl.obolibrary.org/obo/UBERON_0010168,collection of eyelashes,eyelashes set +http://purl.obolibrary.org/obo/UBERON_0010168,collection of eyelashes,set of eyelashes +http://purl.obolibrary.org/obo/UBERON_0010169,moustache,mustache +http://purl.obolibrary.org/obo/UBERON_0010170,region of neural crest, +http://purl.obolibrary.org/obo/UBERON_0010171,strand of hair of face,face hair +http://purl.obolibrary.org/obo/UBERON_0010171,strand of hair of face,face hair strand +http://purl.obolibrary.org/obo/UBERON_0010171,strand of hair of face,hair of face +http://purl.obolibrary.org/obo/UBERON_0010172,bulb of aorta,aorta bulb +http://purl.obolibrary.org/obo/UBERON_0010172,bulb of aorta,aortic bulb +http://purl.obolibrary.org/obo/UBERON_0010172,bulb of aorta,aortic root +http://purl.obolibrary.org/obo/UBERON_0010172,bulb of aorta,bulb of ascending aorta +http://purl.obolibrary.org/obo/UBERON_0010172,bulb of aorta,bulbus aortae +http://purl.obolibrary.org/obo/UBERON_0010172,bulb of aorta,root of aorta +http://purl.obolibrary.org/obo/UBERON_0010172,bulb of aorta,supraaortic valve area +http://purl.obolibrary.org/obo/UBERON_0010173,sinotubular junction,sinotubular ridge +http://purl.obolibrary.org/obo/UBERON_0010174,Schweigger-Seidel sheath, +http://purl.obolibrary.org/obo/UBERON_0010175,nutrient foramen vein,nutrient vein +http://purl.obolibrary.org/obo/UBERON_0010176,nutrient foramen artery,nutrient artery +http://purl.obolibrary.org/obo/UBERON_0010181,straight venules of kidney,set of straight venules of kidney +http://purl.obolibrary.org/obo/UBERON_0010181,straight venules of kidney,venulae rectae of kidney +http://purl.obolibrary.org/obo/UBERON_0010181,straight venules of kidney,venulae rectae renis +http://purl.obolibrary.org/obo/UBERON_0010183,liver trabecula,liver trabeculae +http://purl.obolibrary.org/obo/UBERON_0010185,rete ovarii,rete ovarii of ovary +http://purl.obolibrary.org/obo/UBERON_0010186,male urethral gland,Littre's gland +http://purl.obolibrary.org/obo/UBERON_0010186,male urethral gland,gland of Littre +http://purl.obolibrary.org/obo/UBERON_0010186,male urethral gland,gland of male urethra +http://purl.obolibrary.org/obo/UBERON_0010186,male urethral gland,glandulae urethrales urethrae masculinae +http://purl.obolibrary.org/obo/UBERON_0010186,male urethral gland,male urethra gland +http://purl.obolibrary.org/obo/UBERON_0010186,male urethral gland,urethral gland (male) +http://purl.obolibrary.org/obo/UBERON_0010187,female urethral gland,female urethra gland +http://purl.obolibrary.org/obo/UBERON_0010187,female urethral gland,gland of female urethra +http://purl.obolibrary.org/obo/UBERON_0010187,female urethral gland,urethral gland (female) +http://purl.obolibrary.org/obo/UBERON_0010188,protuberance, +http://purl.obolibrary.org/obo/UBERON_0010189,right atrium venous valve, +http://purl.obolibrary.org/obo/UBERON_0010190,pair of dorsal aortae,paired dorsal aortae +http://purl.obolibrary.org/obo/UBERON_0010191,aortic system, +http://purl.obolibrary.org/obo/UBERON_0010192,genital artery,gonadal artery +http://purl.obolibrary.org/obo/UBERON_0010193,renal portal vein,renal portal veins +http://purl.obolibrary.org/obo/UBERON_0010194,hepatic portal system,hepatic-portal system +http://purl.obolibrary.org/obo/UBERON_0010194,hepatic portal system,portal system of liver +http://purl.obolibrary.org/obo/UBERON_0010195,renal portal system,portal system of kidney +http://purl.obolibrary.org/obo/UBERON_0010195,renal portal system,renal-portal system +http://purl.obolibrary.org/obo/UBERON_0010197,trunk of common carotid artery,common carotid arterial trunk +http://purl.obolibrary.org/obo/UBERON_0010198,carotid duct,ductus caroticus +http://purl.obolibrary.org/obo/UBERON_0010199,bona-fide anatomical boundary, +http://purl.obolibrary.org/obo/UBERON_0010202,lateral line,lateral lines +http://purl.obolibrary.org/obo/UBERON_0010204,tail vasculature,post-vent vasculature +http://purl.obolibrary.org/obo/UBERON_0010205,mesencephalic vein,vena mesencephalica +http://purl.obolibrary.org/obo/UBERON_0010205,mesencephalic vein,venae mesencephalicae +http://purl.obolibrary.org/obo/UBERON_0010207,nictitating membrane,membrana nictitans +http://purl.obolibrary.org/obo/UBERON_0010207,nictitating membrane,nictitans +http://purl.obolibrary.org/obo/UBERON_0010207,nictitating membrane,palperbra tertia +http://purl.obolibrary.org/obo/UBERON_0010207,nictitating membrane,third eyelid +http://purl.obolibrary.org/obo/UBERON_0010209,plica semilunaris of conjunctiva,plica semilunaris (conjunctiva) +http://purl.obolibrary.org/obo/UBERON_0010209,plica semilunaris of conjunctiva,semilunar fold of conjunctiva +http://purl.obolibrary.org/obo/UBERON_0010210,blood clot,coagulated blood +http://purl.obolibrary.org/obo/UBERON_0010210,blood clot,fibrin clot +http://purl.obolibrary.org/obo/UBERON_0010210,blood clot,hemostatic plug +http://purl.obolibrary.org/obo/UBERON_0010210,blood clot,thrombus +http://purl.obolibrary.org/obo/UBERON_0010211,granulation tissue, +http://purl.obolibrary.org/obo/UBERON_0010212,laryngeal apparatus,laryngeal cartilage system +http://purl.obolibrary.org/obo/UBERON_0010213,laryngeal pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0010214,cricoid pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0010215,arytenoid swellings, +http://purl.obolibrary.org/obo/UBERON_0010219,thyroid pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0010220,arytenoid pre-cartilage condensation,arytenoid swelling pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010221,laryngeal associated mesenchyme, +http://purl.obolibrary.org/obo/UBERON_0010222,anatomical line between pupils,inter-pupillary line +http://purl.obolibrary.org/obo/UBERON_0010222,anatomical line between pupils,interpupillary line +http://purl.obolibrary.org/obo/UBERON_0010223,left pupil,pupil of left eye +http://purl.obolibrary.org/obo/UBERON_0010224,right pupil,pupil of right eye +http://purl.obolibrary.org/obo/UBERON_0010225,thalamic complex, +http://purl.obolibrary.org/obo/UBERON_0010227,future cardiac atrium,presumptive atrium heart tube +http://purl.obolibrary.org/obo/UBERON_0010227,future cardiac atrium,primordial atrium +http://purl.obolibrary.org/obo/UBERON_0010227,future cardiac atrium,primordial cardiac atrium +http://purl.obolibrary.org/obo/UBERON_0010228,ruminal fluid, +http://purl.obolibrary.org/obo/UBERON_0010229,ruminant esophageal groove,ruminant reticular groove +http://purl.obolibrary.org/obo/UBERON_0010230,eyeball of camera-type eye,bulbus oculi +http://purl.obolibrary.org/obo/UBERON_0010230,eyeball of camera-type eye,eye +http://purl.obolibrary.org/obo/UBERON_0010230,eyeball of camera-type eye,eye globe +http://purl.obolibrary.org/obo/UBERON_0010230,eyeball of camera-type eye,eyeball +http://purl.obolibrary.org/obo/UBERON_0010230,eyeball of camera-type eye,globe +http://purl.obolibrary.org/obo/UBERON_0010231,anatomical line between outer ears, +http://purl.obolibrary.org/obo/UBERON_0010232,placodal ectoderm, +http://purl.obolibrary.org/obo/UBERON_0010233,stroma of thyroid gland,thyroid gland stroma +http://purl.obolibrary.org/obo/UBERON_0010233,stroma of thyroid gland,thyroid stroma +http://purl.obolibrary.org/obo/UBERON_0010234,palatopharyngeus muscle,palatopharyngeal muscle +http://purl.obolibrary.org/obo/UBERON_0010234,palatopharyngeus muscle,palatopharyngeus +http://purl.obolibrary.org/obo/UBERON_0010234,palatopharyngeus muscle,pharyngopalatinus muscle +http://purl.obolibrary.org/obo/UBERON_0010235,uvular muscle,uvular muscle +http://purl.obolibrary.org/obo/UBERON_0010238,torus pylorus,torus pyloricus +http://purl.obolibrary.org/obo/UBERON_0010239,spiral colon,coiled colon +http://purl.obolibrary.org/obo/UBERON_0010240,zygomatic gland, +http://purl.obolibrary.org/obo/UBERON_0010241,molar gland,molar salivary gland +http://purl.obolibrary.org/obo/UBERON_0010242,anterior buccal gland, +http://purl.obolibrary.org/obo/UBERON_0010243,merocrine gland, +http://purl.obolibrary.org/obo/UBERON_0010244,choroid tapetum lucidum,choroidal tapetum lucidum +http://purl.obolibrary.org/obo/UBERON_0010244,choroid tapetum lucidum,tapetum choroideae +http://purl.obolibrary.org/obo/UBERON_0010245,retinal tapetum lucidum, +http://purl.obolibrary.org/obo/UBERON_0010246,choroidal guanine tapetum, +http://purl.obolibrary.org/obo/UBERON_0010247,choroidal tapetum cellulosum,choroid tapetum cellulosum +http://purl.obolibrary.org/obo/UBERON_0010248,choroidal tapetum fibrosum, +http://purl.obolibrary.org/obo/UBERON_0010249,posterior meningeal artery,terminal branch of ascending pharyngeal artery +http://purl.obolibrary.org/obo/UBERON_0010250,middle meningeal artery, +http://purl.obolibrary.org/obo/UBERON_0010251,anterior meningeal artery,anterior meningeal branch of anterior ethmoidal artery +http://purl.obolibrary.org/obo/UBERON_0010251,anterior meningeal artery,ramus meningeus anterior (arteria ethmoidalis anterioris) +http://purl.obolibrary.org/obo/UBERON_0010252,1st arch mandibular mesenchyme from neural crest, +http://purl.obolibrary.org/obo/UBERON_0010253,1st arch maxillary mesenchyme from neural crest, +http://purl.obolibrary.org/obo/UBERON_0010254,2nd arch mesenchyme from neural crest,neural crest derived arch 2 mesenchyme +http://purl.obolibrary.org/obo/UBERON_0010254,2nd arch mesenchyme from neural crest,pharyngeal arch 2 mesenchyme from neural crest +http://purl.obolibrary.org/obo/UBERON_0010255,3rd arch mesenchyme from neural crest,3rd pharyngeal arch mesenchyme derived from neural crest +http://purl.obolibrary.org/obo/UBERON_0010255,3rd arch mesenchyme from neural crest,mesenchyme derived from neural crest of mesenchyme of 3rd arch +http://purl.obolibrary.org/obo/UBERON_0010255,3rd arch mesenchyme from neural crest,neural crest derived arch 3 mesenchyme +http://purl.obolibrary.org/obo/UBERON_0010255,3rd arch mesenchyme from neural crest,pharyngeal arch 3 mesenchyme from neural crest +http://purl.obolibrary.org/obo/UBERON_0010256,4th arch mesenchyme from neural crest,4th pharyngeal arch mesenchyme derived from neural crest +http://purl.obolibrary.org/obo/UBERON_0010256,4th arch mesenchyme from neural crest,mesenchyme derived from neural crest of mesenchyme of 4th arch +http://purl.obolibrary.org/obo/UBERON_0010256,4th arch mesenchyme from neural crest,neural crest derived arch 4 mesenchyme +http://purl.obolibrary.org/obo/UBERON_0010256,4th arch mesenchyme from neural crest,pharyngeal arch 4 mesenchyme from neural crest +http://purl.obolibrary.org/obo/UBERON_0010257,6th arch mesenchyme from neural crest,neural crest derived arch 6 mesenchyme +http://purl.obolibrary.org/obo/UBERON_0010257,6th arch mesenchyme from neural crest,pharyngeal arch 6 mesenchyme from neural crest +http://purl.obolibrary.org/obo/UBERON_0010258,mesenchyme from rhombencephalic neural crest, +http://purl.obolibrary.org/obo/UBERON_0010259,1st arch mesenchyme from neural crest,mesenchyme derived from neural crest of mesenchyme of 1st arch +http://purl.obolibrary.org/obo/UBERON_0010259,1st arch mesenchyme from neural crest,neural crest derived arch 1 mesenchyme +http://purl.obolibrary.org/obo/UBERON_0010259,1st arch mesenchyme from neural crest,pharyngeal arch 1 mesenchyme from neural crest +http://purl.obolibrary.org/obo/UBERON_0010260,umbilical blood vessel,allantoic vessel +http://purl.obolibrary.org/obo/UBERON_0010260,umbilical blood vessel,umbilical cord blood vessel +http://purl.obolibrary.org/obo/UBERON_0010260,umbilical blood vessel,umbilical vessel +http://purl.obolibrary.org/obo/UBERON_0010262,operculum of brain, +http://purl.obolibrary.org/obo/UBERON_0010264,hepatopancreas, +http://purl.obolibrary.org/obo/UBERON_0010265,mollusc hepatopancreas, +http://purl.obolibrary.org/obo/UBERON_0010266,arthropod hepatopancreas, +http://purl.obolibrary.org/obo/UBERON_0010269,filum terminale internum,internal part of filum terminale +http://purl.obolibrary.org/obo/UBERON_0010270,filum terminale externum,external part of filum terminale +http://purl.obolibrary.org/obo/UBERON_0010271,musculus retractor bulbi,M. retractor bulbi +http://purl.obolibrary.org/obo/UBERON_0010271,musculus retractor bulbi,retractor bulbi +http://purl.obolibrary.org/obo/UBERON_0010271,musculus retractor bulbi,retractor bulbi muscle +http://purl.obolibrary.org/obo/UBERON_0010272,hyoid apparatus, +http://purl.obolibrary.org/obo/UBERON_0010273,zone of hyoid bone,hyoid bone zone +http://purl.obolibrary.org/obo/UBERON_0010276,space in vertebral column,vertebral column opening +http://purl.obolibrary.org/obo/UBERON_0010276,space in vertebral column,vertebral conduit +http://purl.obolibrary.org/obo/UBERON_0010277,mesocardium, +http://purl.obolibrary.org/obo/UBERON_0010279,pericardial sinus, +http://purl.obolibrary.org/obo/UBERON_0010283,oblique pericardial sinus,oblique sinus of pericardial cavity +http://purl.obolibrary.org/obo/UBERON_0010284,lacrimal punctum, +http://purl.obolibrary.org/obo/UBERON_0010285,midbrain basal plate,basal plate midbrain +http://purl.obolibrary.org/obo/UBERON_0010285,midbrain basal plate,basal plate midbrain region +http://purl.obolibrary.org/obo/UBERON_0010286,midbrain neural tube, +http://purl.obolibrary.org/obo/UBERON_0010287,motor root of facial nerve,facial nerve motor root +http://purl.obolibrary.org/obo/UBERON_0010287,motor root of facial nerve,motor component of the VIIth (facial) nerve +http://purl.obolibrary.org/obo/UBERON_0010287,motor root of facial nerve,seventh cranial nerve motor root +http://purl.obolibrary.org/obo/UBERON_0010289,scleral cartilage,scleral cartilage element +http://purl.obolibrary.org/obo/UBERON_0010289,scleral cartilage,sclerotic cartilage +http://purl.obolibrary.org/obo/UBERON_0010290,scleral ossicle,scleral ossicle +http://purl.obolibrary.org/obo/UBERON_0010290,scleral ossicle,sclerotic bone +http://purl.obolibrary.org/obo/UBERON_0010290,scleral ossicle,sclerotic ossicle +http://purl.obolibrary.org/obo/UBERON_0010291,layer of sclera, +http://purl.obolibrary.org/obo/UBERON_0010292,episcleral layer of eyeball,episclera +http://purl.obolibrary.org/obo/UBERON_0010292,episcleral layer of eyeball,episcleral layer +http://purl.obolibrary.org/obo/UBERON_0010292,episcleral layer of eyeball,lamina episcleralis +http://purl.obolibrary.org/obo/UBERON_0010293,suprachoroid lamina,lamina suprachorioidea +http://purl.obolibrary.org/obo/UBERON_0010293,suprachoroid lamina,lamina suprachoroidea +http://purl.obolibrary.org/obo/UBERON_0010294,scleral endothelium, +http://purl.obolibrary.org/obo/UBERON_0010295,substantia propria of sclera,scleral stroma +http://purl.obolibrary.org/obo/UBERON_0010295,substantia propria of sclera,stroma of sclera +http://purl.obolibrary.org/obo/UBERON_0010295,substantia propria of sclera,subsantia propria sclerae +http://purl.obolibrary.org/obo/UBERON_0010295,substantia propria of sclera,substantia propria sclerae +http://purl.obolibrary.org/obo/UBERON_0010296,scleral skeletal element, +http://purl.obolibrary.org/obo/UBERON_0010297,endochondral scleral ossicle, +http://purl.obolibrary.org/obo/UBERON_0010298,intramembranous scleral ossicle, +http://purl.obolibrary.org/obo/UBERON_0010299,scleral mesenchyme, +http://purl.obolibrary.org/obo/UBERON_0010300,epithelial scleral papilla layer,scleral papillae +http://purl.obolibrary.org/obo/UBERON_0010302,amnioserosa, +http://purl.obolibrary.org/obo/UBERON_0010303,extraembryonic epithelium,extra-embryonic epithelium +http://purl.obolibrary.org/obo/UBERON_0010304,non-keratinized stratified squamous epithelium,epithelium stratificatum squamosum noncornificatum +http://purl.obolibrary.org/obo/UBERON_0010304,non-keratinized stratified squamous epithelium,nonkeratinizing stratified squamous epithelium +http://purl.obolibrary.org/obo/UBERON_0010304,non-keratinized stratified squamous epithelium,stratified squamous non-keratinized epithelium +http://purl.obolibrary.org/obo/UBERON_0010304,non-keratinized stratified squamous epithelium,stratified squamous nonkeratinizing epithelium +http://purl.obolibrary.org/obo/UBERON_0010305,subdivision of conjunctiva,conjunctiva region +http://purl.obolibrary.org/obo/UBERON_0010305,subdivision of conjunctiva,region of conjunctiva +http://purl.obolibrary.org/obo/UBERON_0010306,bulbar conjunctiva,ocular conjunctiva +http://purl.obolibrary.org/obo/UBERON_0010307,conjunctival fornix,conjunctiva fornix +http://purl.obolibrary.org/obo/UBERON_0010307,conjunctival fornix,forniceal conjunctiva +http://purl.obolibrary.org/obo/UBERON_0010307,conjunctival fornix,fornix conjunctiva +http://purl.obolibrary.org/obo/UBERON_0010308,os opticus,Gemminger's ossicle +http://purl.obolibrary.org/obo/UBERON_0010308,os opticus,os nervi optici +http://purl.obolibrary.org/obo/UBERON_0010309,palpebral bone, +http://purl.obolibrary.org/obo/UBERON_0010310,nictitating membrane lamina,cartilago intercipiens +http://purl.obolibrary.org/obo/UBERON_0010310,nictitating membrane lamina,nictitating membrane cartilage +http://purl.obolibrary.org/obo/UBERON_0010311,scleral sesamoid bone,scleral sesamoid +http://purl.obolibrary.org/obo/UBERON_0010311,scleral sesamoid bone,scleral sesamoid element +http://purl.obolibrary.org/obo/UBERON_0010311,scleral sesamoid bone,sesamoideum esclerae +http://purl.obolibrary.org/obo/UBERON_0010312,immature eye,future eye +http://purl.obolibrary.org/obo/UBERON_0010313,neural crest-derived structure, +http://purl.obolibrary.org/obo/UBERON_0010314,structure with developmental contribution from neural crest, +http://purl.obolibrary.org/obo/UBERON_0010316,germ layer / neural crest, +http://purl.obolibrary.org/obo/UBERON_0010321,skeletal element of eye region, +http://purl.obolibrary.org/obo/UBERON_0010323,cranial skeletal system,cranial skeleton +http://purl.obolibrary.org/obo/UBERON_0010323,cranial skeletal system,cranium +http://purl.obolibrary.org/obo/UBERON_0010323,cranial skeletal system,osteocranium +http://purl.obolibrary.org/obo/UBERON_0010326,optic pedicel, +http://purl.obolibrary.org/obo/UBERON_0010328,limb bud mesenchyme, +http://purl.obolibrary.org/obo/UBERON_0010329,paired limb/fin bud mesenchyme, +http://purl.obolibrary.org/obo/UBERON_0010330,eyelid mesenchyme, +http://purl.obolibrary.org/obo/UBERON_0010332,epithelium of handplate,handplate epithelium +http://purl.obolibrary.org/obo/UBERON_0010333,extraembryonic membrane mesenchyme, +http://purl.obolibrary.org/obo/UBERON_0010334,maxillary process mesenchyme from neural crest, +http://purl.obolibrary.org/obo/UBERON_0010335,maxillary process mesenchyme from head mesenchyme, +http://purl.obolibrary.org/obo/UBERON_0010336,mandibular process mesenchyme from neural crest, +http://purl.obolibrary.org/obo/UBERON_0010337,mandibular process mesenchyme from head mesenchyme, +http://purl.obolibrary.org/obo/UBERON_0010338,1st arch maxillary mesenchyme from head mesenchyme, +http://purl.obolibrary.org/obo/UBERON_0010339,1st arch mandibular mesenchyme from head mesenchyme, +http://purl.obolibrary.org/obo/UBERON_0010341,1st arch mesenchyme from head mesenchyme,mesenchyme derived from head mesoderm of mesenchyme of 1st arch +http://purl.obolibrary.org/obo/UBERON_0010343,2nd arch mesenchyme from head mesenchyme,head mesenchyme derived arch 2 mesenchyme +http://purl.obolibrary.org/obo/UBERON_0010343,2nd arch mesenchyme from head mesenchyme,mesenchyme derived from head mesoderm of mesenchyme of 2nd arch +http://purl.obolibrary.org/obo/UBERON_0010343,2nd arch mesenchyme from head mesenchyme,pharyngeal arch 2 mesenchyme from head mesenchyme +http://purl.obolibrary.org/obo/UBERON_0010344,3rd arch mesenchyme from head mesenchyme,head mesenchyme derived arch 3 mesenchyme +http://purl.obolibrary.org/obo/UBERON_0010344,3rd arch mesenchyme from head mesenchyme,mesenchyme derived from head mesoderm of mesenchyme of 3rd arch +http://purl.obolibrary.org/obo/UBERON_0010344,3rd arch mesenchyme from head mesenchyme,pharyngeal arch 3 mesenchyme from head mesenchyme +http://purl.obolibrary.org/obo/UBERON_0010345,4th arch mesenchyme from head mesenchyme,head mesenchyme derived arch 4 mesenchyme +http://purl.obolibrary.org/obo/UBERON_0010345,4th arch mesenchyme from head mesenchyme,mesenchyme derived from head mesoderm of mesenchyme of 4th arch +http://purl.obolibrary.org/obo/UBERON_0010345,4th arch mesenchyme from head mesenchyme,pharyngeal arch 4 mesenchyme from head mesenchyme +http://purl.obolibrary.org/obo/UBERON_0010347,6th arch mesenchyme from head mesenchyme,head mesenchyme derived arch 6 mesenchyme +http://purl.obolibrary.org/obo/UBERON_0010347,6th arch mesenchyme from head mesenchyme,pharyngeal arch 6 mesenchyme from head mesenchyme +http://purl.obolibrary.org/obo/UBERON_0010348,hyoid pre-muscle mass, +http://purl.obolibrary.org/obo/UBERON_0010349,otic capsule pre-cartilage condensation,otic capsule anlage +http://purl.obolibrary.org/obo/UBERON_0010354,Reichert's cartilage pre-cartilage condensation,future Reichert's cartilage +http://purl.obolibrary.org/obo/UBERON_0010354,Reichert's cartilage pre-cartilage condensation,hyoid cartilage pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010355,ossification center,centrum ossificationis +http://purl.obolibrary.org/obo/UBERON_0010355,ossification center,ossification centre +http://purl.obolibrary.org/obo/UBERON_0010356,primary ossification center,centrum ossificationis primarium +http://purl.obolibrary.org/obo/UBERON_0010356,primary ossification center,primary ossification centre +http://purl.obolibrary.org/obo/UBERON_0010357,secondary ossification center,centrum ossificationis secundarium +http://purl.obolibrary.org/obo/UBERON_0010357,secondary ossification center,secondary ossification centre +http://purl.obolibrary.org/obo/UBERON_0010358,arch of centrum of vertebra, +http://purl.obolibrary.org/obo/UBERON_0010359,pharyngeal arch mesenchyme from neural crest,arch mesenchyme from neural crest +http://purl.obolibrary.org/obo/UBERON_0010359,pharyngeal arch mesenchyme from neural crest,branchial arch mesenchyme from neural crest +http://purl.obolibrary.org/obo/UBERON_0010359,pharyngeal arch mesenchyme from neural crest,neural crest derived arch mesenchyme +http://purl.obolibrary.org/obo/UBERON_0010360,pharyngeal arch mesenchyme from head mesenchyme,arch mesenchyme from head mesenchyme +http://purl.obolibrary.org/obo/UBERON_0010360,pharyngeal arch mesenchyme from head mesenchyme,branchial arch mesenchyme from head mesenchyme +http://purl.obolibrary.org/obo/UBERON_0010360,pharyngeal arch mesenchyme from head mesenchyme,head mesenchyme derived arch mesenchyme +http://purl.obolibrary.org/obo/UBERON_0010361,synostosis,bony union +http://purl.obolibrary.org/obo/UBERON_0010361,synostosis,junctura ossea +http://purl.obolibrary.org/obo/UBERON_0010362,endoskeleton,replacement skeleton +http://purl.obolibrary.org/obo/UBERON_0010363,endochondral element,endochondral replacement element +http://purl.obolibrary.org/obo/UBERON_0010364,dermal skeleton, +http://purl.obolibrary.org/obo/UBERON_0010365,odontoid tissue,odontogenic tissue +http://purl.obolibrary.org/obo/UBERON_0010366,conjunctival vasculature,conjunctival veins +http://purl.obolibrary.org/obo/UBERON_0010366,conjunctival vasculature,conjunctival veins set +http://purl.obolibrary.org/obo/UBERON_0010366,conjunctival vasculature,set of conjunctival veins +http://purl.obolibrary.org/obo/UBERON_0010366,conjunctival vasculature,venae conjunctivales +http://purl.obolibrary.org/obo/UBERON_0010367,conjunctival vein, +http://purl.obolibrary.org/obo/UBERON_0010368,pulmonary lobule,lobulus pulmonis +http://purl.obolibrary.org/obo/UBERON_0010369,secondary pulmonary lobule,lobulus pulmonis secondarius +http://purl.obolibrary.org/obo/UBERON_0010370,tibial vein,vena tibialis +http://purl.obolibrary.org/obo/UBERON_0010371,ecto-epithelium,ectoderm-derived epithelium +http://purl.obolibrary.org/obo/UBERON_0010372,uncinate process of ethmoid,uncinate process of the ethmoid +http://purl.obolibrary.org/obo/UBERON_0010372,uncinate process of ethmoid,uncinate process of the ethmoid bone +http://purl.obolibrary.org/obo/UBERON_0010373,uncinate process of pancreas,Winslow's pancreas +http://purl.obolibrary.org/obo/UBERON_0010373,uncinate process of pancreas,lesser pancreas +http://purl.obolibrary.org/obo/UBERON_0010373,uncinate process of pancreas,processus uncinatus (pancreas) +http://purl.obolibrary.org/obo/UBERON_0010373,uncinate process of pancreas,processus uncinatus pancreatis +http://purl.obolibrary.org/obo/UBERON_0010375,pancreas dorsal primordium, +http://purl.obolibrary.org/obo/UBERON_0010376,pancreas ventral primordium, +http://purl.obolibrary.org/obo/UBERON_0010377,mesenchyme from somatopleure, +http://purl.obolibrary.org/obo/UBERON_0010378,mesenchyme from splanchnopleure, +http://purl.obolibrary.org/obo/UBERON_0010379,superior tarsal muscle,Mueller's muscle +http://purl.obolibrary.org/obo/UBERON_0010380,enteric nerve, +http://purl.obolibrary.org/obo/UBERON_0010384,lumen of laryngopharynx,laryngopharynx lumen +http://purl.obolibrary.org/obo/UBERON_0010386,Peyer's patch follicle,Peyer's patch follicle +http://purl.obolibrary.org/obo/UBERON_0010387,Peyer's patch T cell area, +http://purl.obolibrary.org/obo/UBERON_0010388,proximal segment of rib,proximal part of rib +http://purl.obolibrary.org/obo/UBERON_0010388,proximal segment of rib,proximal rib +http://purl.obolibrary.org/obo/UBERON_0010388,proximal segment of rib,proximal rib segment +http://purl.obolibrary.org/obo/UBERON_0010389,pterygoid bone,lamina lateralis (processus pterygoideus) +http://purl.obolibrary.org/obo/UBERON_0010389,pterygoid bone,lamina lateralis processi pterygoideus ossis sphenoidalis +http://purl.obolibrary.org/obo/UBERON_0010389,pterygoid bone,lateral lamina of pterygoid process +http://purl.obolibrary.org/obo/UBERON_0010389,pterygoid bone,lateral plate of pterygoid process +http://purl.obolibrary.org/obo/UBERON_0010389,pterygoid bone,lateral plate of sphenoid +http://purl.obolibrary.org/obo/UBERON_0010389,pterygoid bone,lateral pterygoid plate +http://purl.obolibrary.org/obo/UBERON_0010390,lumen of urethra,urethral lumen +http://purl.obolibrary.org/obo/UBERON_0010391,parametrium, +http://purl.obolibrary.org/obo/UBERON_0010392,B cell domain, +http://purl.obolibrary.org/obo/UBERON_0010393,T cell domain, +http://purl.obolibrary.org/obo/UBERON_0010394,lymphocyte domain, +http://purl.obolibrary.org/obo/UBERON_0010395,lymph node primary follicle,primary follicle of lymph node +http://purl.obolibrary.org/obo/UBERON_0010396,afferent lymphatic vessel,vasa afferentia lymphoglandula +http://purl.obolibrary.org/obo/UBERON_0010396,afferent lymphatic vessel,vasa afferentia lymphoglandulae +http://purl.obolibrary.org/obo/UBERON_0010397,efferent lymphatic vessel, +http://purl.obolibrary.org/obo/UBERON_0010398,spleen marginal sinus,splenic marginal sinus +http://purl.obolibrary.org/obo/UBERON_0010399,spleen trabecular artery, +http://purl.obolibrary.org/obo/UBERON_0010400,spleen trabecular vein, +http://purl.obolibrary.org/obo/UBERON_0010401,spleen central arteriole,follicular arteriole +http://purl.obolibrary.org/obo/UBERON_0010401,spleen central arteriole,splenic central arteriole +http://purl.obolibrary.org/obo/UBERON_0010402,epidermis suprabasal layer,suprabasal cell layer of skin +http://purl.obolibrary.org/obo/UBERON_0010402,epidermis suprabasal layer,suprabasal layer of epidermis +http://purl.obolibrary.org/obo/UBERON_0010403,brain marginal zone,brain marginal zone +http://purl.obolibrary.org/obo/UBERON_0010404,lateral ventricle subependymal layer, +http://purl.obolibrary.org/obo/UBERON_0010405,spinal cord lateral motor column, +http://purl.obolibrary.org/obo/UBERON_0010406,cholinergic enteric nerve, +http://purl.obolibrary.org/obo/UBERON_0010408,ocular angle artery,angular artery +http://purl.obolibrary.org/obo/UBERON_0010409,ocular surface region,eye surface +http://purl.obolibrary.org/obo/UBERON_0010409,ocular surface region,eye surface region +http://purl.obolibrary.org/obo/UBERON_0010409,ocular surface region,ocular surface +http://purl.obolibrary.org/obo/UBERON_0010410,inguinal fat pad,fat depot of inguinal region +http://purl.obolibrary.org/obo/UBERON_0010410,inguinal fat pad,inguinal fat depot +http://purl.obolibrary.org/obo/UBERON_0010411,retroperitoneal fat pad,retroperitoneal fat depot +http://purl.obolibrary.org/obo/UBERON_0010412,epididymal fat pad,periepididymal fat pad +http://purl.obolibrary.org/obo/UBERON_0010413,parametrial fat pad,parametrial fat depot +http://purl.obolibrary.org/obo/UBERON_0010414,omental fat pad,omental fat depot +http://purl.obolibrary.org/obo/UBERON_0010415,barrel cortex, +http://purl.obolibrary.org/obo/UBERON_0010416,lymph node B cell domain,lymph node B cell dependent cortex +http://purl.obolibrary.org/obo/UBERON_0010416,lymph node B cell domain,lymph node B-cell domain +http://purl.obolibrary.org/obo/UBERON_0010416,lymph node B cell domain,nodular lymph node cortex +http://purl.obolibrary.org/obo/UBERON_0010417,lymph node T cell domain,T cell zone of lymph node +http://purl.obolibrary.org/obo/UBERON_0010417,lymph node T cell domain,T zone of lymph node +http://purl.obolibrary.org/obo/UBERON_0010417,lymph node T cell domain,lymph node T cell dependent paracortex +http://purl.obolibrary.org/obo/UBERON_0010417,lymph node T cell domain,lymph node T zone +http://purl.obolibrary.org/obo/UBERON_0010417,lymph node T cell domain,lymph node T-cell domain +http://purl.obolibrary.org/obo/UBERON_0010417,lymph node T cell domain,lymph node deep cortex +http://purl.obolibrary.org/obo/UBERON_0010418,urethral opening,urethral orifice +http://purl.obolibrary.org/obo/UBERON_0010419,vibrissa follicle,follicle of sinus hair +http://purl.obolibrary.org/obo/UBERON_0010419,vibrissa follicle,follicle of vibrissa +http://purl.obolibrary.org/obo/UBERON_0010419,vibrissa follicle,vibrissal follicle +http://purl.obolibrary.org/obo/UBERON_0010420,lymph node germinal center mantle zone,lymph node B cell corona +http://purl.obolibrary.org/obo/UBERON_0010420,lymph node germinal center mantle zone,lymph node follicular corona +http://purl.obolibrary.org/obo/UBERON_0010420,lymph node germinal center mantle zone,lymph node follicular mantle +http://purl.obolibrary.org/obo/UBERON_0010420,lymph node germinal center mantle zone,lymph node inactive zone +http://purl.obolibrary.org/obo/UBERON_0010420,lymph node germinal center mantle zone,lymph node peripheral zone +http://purl.obolibrary.org/obo/UBERON_0010420,lymph node germinal center mantle zone,mantle zone of lymph node germinal center +http://purl.obolibrary.org/obo/UBERON_0010421,spleen B cell corona,follicle mantle +http://purl.obolibrary.org/obo/UBERON_0010421,spleen B cell corona,spleen B cell corona +http://purl.obolibrary.org/obo/UBERON_0010421,spleen B cell corona,spleen B-cell corona +http://purl.obolibrary.org/obo/UBERON_0010421,spleen B cell corona,spleen lymphocytic corona +http://purl.obolibrary.org/obo/UBERON_0010421,spleen B cell corona,splenic B cell corona +http://purl.obolibrary.org/obo/UBERON_0010422,primary nodular lymphoid tissue,primary lymphoid follicle +http://purl.obolibrary.org/obo/UBERON_0010422,primary nodular lymphoid tissue,primary lymphoid nodule +http://purl.obolibrary.org/obo/UBERON_0010423,primary lymphoid nodule of tonsil, +http://purl.obolibrary.org/obo/UBERON_0010424,distal segment of rib,distal part of rib +http://purl.obolibrary.org/obo/UBERON_0010424,distal segment of rib,distal rib +http://purl.obolibrary.org/obo/UBERON_0010424,distal segment of rib,distal rib segment +http://purl.obolibrary.org/obo/UBERON_0010425,internal naris,choana +http://purl.obolibrary.org/obo/UBERON_0010425,internal naris,internal choana +http://purl.obolibrary.org/obo/UBERON_0010426,oropharyngeal choana,choana of oropharynx +http://purl.obolibrary.org/obo/UBERON_0010426,oropharyngeal choana,oropharyngeal naris +http://purl.obolibrary.org/obo/UBERON_0010426,oropharyngeal choana,palatal choana +http://purl.obolibrary.org/obo/UBERON_0010427,ciliary processes,ciliary processes +http://purl.obolibrary.org/obo/UBERON_0010427,ciliary processes,ciliary processes set +http://purl.obolibrary.org/obo/UBERON_0010427,ciliary processes,processus ciliares +http://purl.obolibrary.org/obo/UBERON_0010427,ciliary processes,set of ciliary processes +http://purl.obolibrary.org/obo/UBERON_0010428,flat bone, +http://purl.obolibrary.org/obo/UBERON_0010437,zygomaticus muscle,m. zygomaticus +http://purl.obolibrary.org/obo/UBERON_0010437,zygomaticus muscle,zygomaticus +http://purl.obolibrary.org/obo/UBERON_0010467,teres muscle,teres +http://purl.obolibrary.org/obo/UBERON_0010496,teres minor muscle,teres minor +http://purl.obolibrary.org/obo/UBERON_0010498,pseudostratified columnar epithelium, +http://purl.obolibrary.org/obo/UBERON_0010499,pseudostratified ciliated columnar epithelium,epithelium pseudostratificatum columnare ciliatum (trachea et bronchi) +http://purl.obolibrary.org/obo/UBERON_0010501,pseudostratified smooth columnar epithelium, +http://purl.obolibrary.org/obo/UBERON_0010505,periosteal dura mater,outer layer of dura mater +http://purl.obolibrary.org/obo/UBERON_0010505,periosteal dura mater,outer periosteal layer of dura mater +http://purl.obolibrary.org/obo/UBERON_0010505,periosteal dura mater,periosteal dura +http://purl.obolibrary.org/obo/UBERON_0010505,periosteal dura mater,periosteal layer of dura mater +http://purl.obolibrary.org/obo/UBERON_0010506,meningeal dura mater,inner layer of dura mater +http://purl.obolibrary.org/obo/UBERON_0010506,meningeal dura mater,meningeal dura +http://purl.obolibrary.org/obo/UBERON_0010506,meningeal dura mater,meningeal layer of dura mater +http://purl.obolibrary.org/obo/UBERON_0010507,layer of dura mater, +http://purl.obolibrary.org/obo/UBERON_0010509,strand of pelage hair,pelage hair +http://purl.obolibrary.org/obo/UBERON_0010510,strand of auchene hair,auchene hair +http://purl.obolibrary.org/obo/UBERON_0010511,strand of awl hair,awl hair +http://purl.obolibrary.org/obo/UBERON_0010512,strand of guard hair,guard hair +http://purl.obolibrary.org/obo/UBERON_0010512,strand of guard hair,guardhair +http://purl.obolibrary.org/obo/UBERON_0010512,strand of guard hair,monotrich hair +http://purl.obolibrary.org/obo/UBERON_0010513,strand of zigzag hair,zigzag hair +http://purl.obolibrary.org/obo/UBERON_0010514,strand of duvet hair,duvet hair +http://purl.obolibrary.org/obo/UBERON_0010515,brille, +http://purl.obolibrary.org/obo/UBERON_0010516,clasper, +http://purl.obolibrary.org/obo/UBERON_0010517,cephalic clasper, +http://purl.obolibrary.org/obo/UBERON_0010518,pelvic fin clasper,myxopterygium +http://purl.obolibrary.org/obo/UBERON_0010519,tail electric organ,electric organ of tail +http://purl.obolibrary.org/obo/UBERON_0010520,head electric organ, +http://purl.obolibrary.org/obo/UBERON_0010521,electroreceptor organ,electric sense organ +http://purl.obolibrary.org/obo/UBERON_0010521,electroreceptor organ,electroreception organ +http://purl.obolibrary.org/obo/UBERON_0010522,replacement element, +http://purl.obolibrary.org/obo/UBERON_0010523,microcirculatory vessel,microcirculatory vessels +http://purl.obolibrary.org/obo/UBERON_0010524,fibularis tertius,musculus peroneus tertius +http://purl.obolibrary.org/obo/UBERON_0010524,fibularis tertius,peroneus digiti quinti +http://purl.obolibrary.org/obo/UBERON_0010524,fibularis tertius,peroneus tertius +http://purl.obolibrary.org/obo/UBERON_0010524,fibularis tertius,peroneus tertius muscle +http://purl.obolibrary.org/obo/UBERON_0010526,fibularis brevis,musculus peroneus brevis +http://purl.obolibrary.org/obo/UBERON_0010526,fibularis brevis,peronaeus brevis +http://purl.obolibrary.org/obo/UBERON_0010526,fibularis brevis,peroneus brevis +http://purl.obolibrary.org/obo/UBERON_0010526,fibularis brevis,peroneus brevis muscle +http://purl.obolibrary.org/obo/UBERON_0010527,cavity of bone organ,bone organ cavity +http://purl.obolibrary.org/obo/UBERON_0010528,pneumatic cavity of bone,air space of bone +http://purl.obolibrary.org/obo/UBERON_0010531,metanephros induced blastemal cells,induced blastemal cells +http://purl.obolibrary.org/obo/UBERON_0010531,metanephros induced blastemal cells,nephrogenic interstitium of nephrogenic zone +http://purl.obolibrary.org/obo/UBERON_0010532,primitive nephron,future nephron +http://purl.obolibrary.org/obo/UBERON_0010532,primitive nephron,presumptive nephron +http://purl.obolibrary.org/obo/UBERON_0010533,metanephros cortex, +http://purl.obolibrary.org/obo/UBERON_0010534,primitive mesonephric nephron,developing mesonephric nephron +http://purl.obolibrary.org/obo/UBERON_0010534,primitive mesonephric nephron,primitive mesonephric nephron +http://purl.obolibrary.org/obo/UBERON_0010535,primitive metanephric nephron,developing metanephric nephron +http://purl.obolibrary.org/obo/UBERON_0010535,primitive metanephric nephron,primitive metanephric nephron +http://purl.obolibrary.org/obo/UBERON_0010536,nephron progenitor, +http://purl.obolibrary.org/obo/UBERON_0010537,mesonephric nephron progenitor, +http://purl.obolibrary.org/obo/UBERON_0010538,paired limb/fin segment,limb/fin segment +http://purl.obolibrary.org/obo/UBERON_0010540,tarsus pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0010541,tarsus cartilage element, +http://purl.obolibrary.org/obo/UBERON_0010543,acropodial skeleton,acropodial skeleton +http://purl.obolibrary.org/obo/UBERON_0010543,acropodial skeleton,acropodium skeleton +http://purl.obolibrary.org/obo/UBERON_0010543,acropodial skeleton,set of phalanges +http://purl.obolibrary.org/obo/UBERON_0010543,acropodial skeleton,skeletal parts of acropodial region +http://purl.obolibrary.org/obo/UBERON_0010544,metacarpus skeleton,anterior metapodial skeleton +http://purl.obolibrary.org/obo/UBERON_0010544,metacarpus skeleton,metacarpal bones +http://purl.obolibrary.org/obo/UBERON_0010544,metacarpus skeleton,metacarpal skeleton +http://purl.obolibrary.org/obo/UBERON_0010544,metacarpus skeleton,metacarpals [I-V] +http://purl.obolibrary.org/obo/UBERON_0010544,metacarpus skeleton,metacarpals set +http://purl.obolibrary.org/obo/UBERON_0010544,metacarpus skeleton,ossa metacarpalia [I-V] +http://purl.obolibrary.org/obo/UBERON_0010544,metacarpus skeleton,ossa metacarpi [I-V] +http://purl.obolibrary.org/obo/UBERON_0010544,metacarpus skeleton,set of metacarpal bones +http://purl.obolibrary.org/obo/UBERON_0010544,metacarpus skeleton,set of metacarpals +http://purl.obolibrary.org/obo/UBERON_0010544,metacarpus skeleton,set of metacarpals [I-V] +http://purl.obolibrary.org/obo/UBERON_0010544,metacarpus skeleton,skeleton of metacarpus +http://purl.obolibrary.org/obo/UBERON_0010545,metatarsus skeleton,metatarsal bones set +http://purl.obolibrary.org/obo/UBERON_0010545,metatarsus skeleton,metatarsal skeleton +http://purl.obolibrary.org/obo/UBERON_0010545,metatarsus skeleton,metatarsals [I-V] +http://purl.obolibrary.org/obo/UBERON_0010545,metatarsus skeleton,ossa metatarsalia [I-V] +http://purl.obolibrary.org/obo/UBERON_0010545,metatarsus skeleton,ossa metatarsi[I-V] +http://purl.obolibrary.org/obo/UBERON_0010545,metatarsus skeleton,posterior metapodial skeleton +http://purl.obolibrary.org/obo/UBERON_0010545,metatarsus skeleton,set of metatarsal bones +http://purl.obolibrary.org/obo/UBERON_0010545,metatarsus skeleton,set of metatarsals [I-V] +http://purl.obolibrary.org/obo/UBERON_0010545,metatarsus skeleton,skeleton of metatarsus +http://purl.obolibrary.org/obo/UBERON_0010546,metapodial skeleton,metacarpal/metatarsal skeleton +http://purl.obolibrary.org/obo/UBERON_0010546,metapodial skeleton,metapodial skeleton +http://purl.obolibrary.org/obo/UBERON_0010546,metapodial skeleton,metapodium skeleton +http://purl.obolibrary.org/obo/UBERON_0010546,metapodial skeleton,skeletal parts of metapodium +http://purl.obolibrary.org/obo/UBERON_0010546,metapodial skeleton,skeleton of metapodium +http://purl.obolibrary.org/obo/UBERON_0010547,pedal digit 1 metatarsal pre-cartilage condensation,hind limb digit 1 metatarsal pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010547,pedal digit 1 metatarsal pre-cartilage condensation,pedal digit I metatarsal pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010547,pedal digit 1 metatarsal pre-cartilage condensation,toe 1 metatarsal pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010548,pedal digit 2 metatarsal pre-cartilage condensation,hind limb digit 2 metatarsal pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010548,pedal digit 2 metatarsal pre-cartilage condensation,pedal digit II metatarsal pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010548,pedal digit 2 metatarsal pre-cartilage condensation,toe 2 metatarsal pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010549,pedal digit 3 metatarsal pre-cartilage condensation,hind limb digit 3 metatarsal pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010549,pedal digit 3 metatarsal pre-cartilage condensation,pedal digit III metatarsal pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010549,pedal digit 3 metatarsal pre-cartilage condensation,toe 3 metatarsal pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010550,pedal digit 4 metatarsal pre-cartilage condensation,hind limb digit 4 metatarsal pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010550,pedal digit 4 metatarsal pre-cartilage condensation,pedal digit IV metatarsal pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010550,pedal digit 4 metatarsal pre-cartilage condensation,toe 4 metatarsal pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010551,pedal digit 5 metatarsal pre-cartilage condensation,hind limb digit 5 metatarsal pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010551,pedal digit 5 metatarsal pre-cartilage condensation,pedal digit V metatarsal pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010551,pedal digit 5 metatarsal pre-cartilage condensation,toe 5 metatarsal pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010557,pedal digit 1 metatarsal cartilage element,hind limb digit 1 metatarsal cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010557,pedal digit 1 metatarsal cartilage element,pedal digit I metatarsal cartilage element +http://purl.obolibrary.org/obo/UBERON_0010557,pedal digit 1 metatarsal cartilage element,toe 1 metatarsal cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010558,pedal digit 2 metatarsal cartilage element,hind limb digit 2 metatarsal cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010558,pedal digit 2 metatarsal cartilage element,pedal digit II metatarsal cartilage element +http://purl.obolibrary.org/obo/UBERON_0010558,pedal digit 2 metatarsal cartilage element,toe 2 metatarsal cartilage element +http://purl.obolibrary.org/obo/UBERON_0010559,pedal digit 3 metatarsal cartilage element,hind limb digit 3 metatarsal cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010559,pedal digit 3 metatarsal cartilage element,pedal digit III metatarsal cartilage element +http://purl.obolibrary.org/obo/UBERON_0010559,pedal digit 3 metatarsal cartilage element,toe 3 metatarsal cartilage element +http://purl.obolibrary.org/obo/UBERON_0010560,pedal digit 4 metatarsal cartilage element,hind limb digit 4 metatarsal cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010560,pedal digit 4 metatarsal cartilage element,pedal digit IV metatarsal cartilage element +http://purl.obolibrary.org/obo/UBERON_0010560,pedal digit 4 metatarsal cartilage element,toe 4 metatarsal cartilage element +http://purl.obolibrary.org/obo/UBERON_0010561,pedal digit 5 metatarsal cartilage element,hind limb digit 5 metatarsal cartilage element +http://purl.obolibrary.org/obo/UBERON_0010561,pedal digit 5 metatarsal cartilage element,pedal digit V metatarsal cartilage element +http://purl.obolibrary.org/obo/UBERON_0010561,pedal digit 5 metatarsal cartilage element,toe 5 metatarsal cartilage element +http://purl.obolibrary.org/obo/UBERON_0010562,pedal digit 1 mesenchyme,hind limb digit 1 mesenchyme +http://purl.obolibrary.org/obo/UBERON_0010562,pedal digit 1 mesenchyme,pedal digit I mesenchyme +http://purl.obolibrary.org/obo/UBERON_0010564,manual digit 1 mesenchyme,fore limb digit 1 mesenchyme +http://purl.obolibrary.org/obo/UBERON_0010564,manual digit 1 mesenchyme,manual digit I mesenchyme +http://purl.obolibrary.org/obo/UBERON_0010565,manual digit 1 metacarpus pre-cartilage condensation,finger 1 metacarpus pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010565,manual digit 1 metacarpus pre-cartilage condensation,fore limb digit 1 metacarpus pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010565,manual digit 1 metacarpus pre-cartilage condensation,manual digit I metacarpus pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010565,manual digit 1 metacarpus pre-cartilage condensation,metacarpal 1 pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010566,manual digit 2 metacarpus pre-cartilage condensation,finger 2 metacarpus pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010566,manual digit 2 metacarpus pre-cartilage condensation,fore limb digit 2 metacarpus pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010566,manual digit 2 metacarpus pre-cartilage condensation,manual digit II metacarpus pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010566,manual digit 2 metacarpus pre-cartilage condensation,metacarpal 2 pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010567,manual digit 3 metacarpus pre-cartilage condensation,finger 3 metacarpus pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010567,manual digit 3 metacarpus pre-cartilage condensation,fore limb digit 3 metacarpus pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010567,manual digit 3 metacarpus pre-cartilage condensation,manual digit III metacarpus pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010567,manual digit 3 metacarpus pre-cartilage condensation,metacarpal 3 pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010568,manual digit 4 metacarpus pre-cartilage condensation,finger 4 metacarpus pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010568,manual digit 4 metacarpus pre-cartilage condensation,fore limb digit 4 metacarpus pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010568,manual digit 4 metacarpus pre-cartilage condensation,manual digit IV metacarpus pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010568,manual digit 4 metacarpus pre-cartilage condensation,metacarpal 4 pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010569,manual digit 5 metacarpus pre-cartilage condensation,finger 5 metacarpus pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010569,manual digit 5 metacarpus pre-cartilage condensation,fore limb digit 5 metacarpus pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010569,manual digit 5 metacarpus pre-cartilage condensation,manual digit V metacarpus pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010569,manual digit 5 metacarpus pre-cartilage condensation,metacarpal 5 pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010570,manual digit 1 metacarpus cartilage element,finger 1 metacarpus cartilage element +http://purl.obolibrary.org/obo/UBERON_0010570,manual digit 1 metacarpus cartilage element,fore limb digit 1 metacarpus cartilage element +http://purl.obolibrary.org/obo/UBERON_0010570,manual digit 1 metacarpus cartilage element,manual digit I metacarpus cartilage element +http://purl.obolibrary.org/obo/UBERON_0010570,manual digit 1 metacarpus cartilage element,metacarpus 1 cartilage element +http://purl.obolibrary.org/obo/UBERON_0010571,manual digit 2 metacarpus cartilage element,finger 2 metacarpus cartilage element +http://purl.obolibrary.org/obo/UBERON_0010571,manual digit 2 metacarpus cartilage element,fore limb digit 2 metacarpus cartilage element +http://purl.obolibrary.org/obo/UBERON_0010571,manual digit 2 metacarpus cartilage element,manual digit II metacarpus cartilage element +http://purl.obolibrary.org/obo/UBERON_0010571,manual digit 2 metacarpus cartilage element,metacarpus 2 cartilage element +http://purl.obolibrary.org/obo/UBERON_0010572,manual digit 3 metacarpus cartilage element,finger 3 metacarpus cartilage element +http://purl.obolibrary.org/obo/UBERON_0010572,manual digit 3 metacarpus cartilage element,fore limb digit 3 metacarpus cartilage element +http://purl.obolibrary.org/obo/UBERON_0010572,manual digit 3 metacarpus cartilage element,manual digit III metacarpus cartilage element +http://purl.obolibrary.org/obo/UBERON_0010572,manual digit 3 metacarpus cartilage element,metacarpus 3 cartilage element +http://purl.obolibrary.org/obo/UBERON_0010573,manual digit 4 metacarpus cartilage element,finger 4 metacarpus cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010573,manual digit 4 metacarpus cartilage element,fore limb digit 4 metacarpus cartilage element +http://purl.obolibrary.org/obo/UBERON_0010573,manual digit 4 metacarpus cartilage element,manual digit IV metacarpus cartilage element +http://purl.obolibrary.org/obo/UBERON_0010573,manual digit 4 metacarpus cartilage element,metacarpus 4 cartilage element +http://purl.obolibrary.org/obo/UBERON_0010574,manual digit 5 metacarpus cartilage element,finger 5 metacarpus cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010574,manual digit 5 metacarpus cartilage element,fore limb digit 5 metacarpus cartilage element +http://purl.obolibrary.org/obo/UBERON_0010574,manual digit 5 metacarpus cartilage element,manual digit V metacarpus cartilage element +http://purl.obolibrary.org/obo/UBERON_0010574,manual digit 5 metacarpus cartilage element,metacarpus 5 cartilage element +http://purl.obolibrary.org/obo/UBERON_0010575,manual digit 1 phalanx pre-cartilage condensation,fore limb digit 1 phalanx pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010575,manual digit 1 phalanx pre-cartilage condensation,manual digit I phalanx pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010576,manual digit 2 phalanx pre-cartilage condensation,fore limb digit 2 phalanx pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010576,manual digit 2 phalanx pre-cartilage condensation,manual digit II phalanx pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010577,manual digit 3 phalanx pre-cartilage condensation,fore limb digit 3 phalanx pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010577,manual digit 3 phalanx pre-cartilage condensation,manual digit III phalanx pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010578,manual digit 4 phalanx pre-cartilage condensation,fore limb digit 4 phalanx pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010578,manual digit 4 phalanx pre-cartilage condensation,manual digit IV phalanx pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010579,manual digit 5 phalanx pre-cartilage condensation,fore limb digit 5 phalanx pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010579,manual digit 5 phalanx pre-cartilage condensation,manual digit V phalanx pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010580,pedal digit 1 phalanx pre-cartilage condensation,hind limb digit 1 phalanx pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010580,pedal digit 1 phalanx pre-cartilage condensation,pedal digit I phalanx pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010581,pedal digit 2 phalanx pre-cartilage condensation,hind limb digit 2 phalanx pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010581,pedal digit 2 phalanx pre-cartilage condensation,pedal digit II phalanx pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010582,pedal digit 3 phalanx pre-cartilage condensation,hind limb digit 3 phalanx pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010582,pedal digit 3 phalanx pre-cartilage condensation,pedal digit III phalanx pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010583,pedal digit 4 phalanx pre-cartilage condensation,hind limb digit 4 phalanx pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010583,pedal digit 4 phalanx pre-cartilage condensation,pedal digit IV phalanx pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010584,pedal digit 5 phalanx pre-cartilage condensation,hind limb digit 5 phalanx pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010584,pedal digit 5 phalanx pre-cartilage condensation,pedal digit V phalanx pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010585,pedal digit phalanx pre-cartilage condensation,foot phalanx pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010585,pedal digit phalanx pre-cartilage condensation,hind limb digit phalanx pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010585,pedal digit phalanx pre-cartilage condensation,hindlimb phalanx pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010585,pedal digit phalanx pre-cartilage condensation,pes phalanx pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010586,manual digit phalanx pre-cartilage condensation,fore limb digit phalanx pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010586,manual digit phalanx pre-cartilage condensation,forelimb phalanx pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010586,manual digit phalanx pre-cartilage condensation,hand phalanx pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010586,manual digit phalanx pre-cartilage condensation,manus phalanx pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010675,manual digit 1 phalanx cartilage element,fore limb digit 1 phalanx cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010675,manual digit 1 phalanx cartilage element,manual digit I phalanx cartilage element +http://purl.obolibrary.org/obo/UBERON_0010676,manual digit 2 phalanx cartilage element,fore limb digit 2 phalanx cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010676,manual digit 2 phalanx cartilage element,manual digit II phalanx cartilage element +http://purl.obolibrary.org/obo/UBERON_0010677,manual digit 3 phalanx cartilage element,fore limb digit 3 phalanx cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010677,manual digit 3 phalanx cartilage element,manual digit III phalanx cartilage element +http://purl.obolibrary.org/obo/UBERON_0010678,manual digit 4 phalanx cartilage element,fore limb digit 4 phalanx cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010678,manual digit 4 phalanx cartilage element,manual digit IV phalanx cartilage element +http://purl.obolibrary.org/obo/UBERON_0010679,manual digit 5 phalanx cartilage element,fore limb digit 5 phalanx cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010679,manual digit 5 phalanx cartilage element,manual digit V phalanx cartilage element +http://purl.obolibrary.org/obo/UBERON_0010680,pedal digit 1 phalanx cartilage element,hind limb digit 1 phalanx cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010680,pedal digit 1 phalanx cartilage element,pedal digit I phalanx cartilage element +http://purl.obolibrary.org/obo/UBERON_0010681,pedal digit 2 phalanx cartilage element,hind limb digit 2 phalanx cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010681,pedal digit 2 phalanx cartilage element,pedal digit II phalanx cartilage element +http://purl.obolibrary.org/obo/UBERON_0010682,pedal digit 3 phalanx cartilage element,hind limb digit 3 phalanx cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010682,pedal digit 3 phalanx cartilage element,pedal digit III phalanx cartilage element +http://purl.obolibrary.org/obo/UBERON_0010683,pedal digit 4 phalanx cartilage element,hind limb digit 4 phalanx cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010683,pedal digit 4 phalanx cartilage element,pedal digit IV phalanx cartilage element +http://purl.obolibrary.org/obo/UBERON_0010684,pedal digit 5 phalanx cartilage element,hind limb digit 5 phalanx cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010684,pedal digit 5 phalanx cartilage element,pedal digit V phalanx cartilage element +http://purl.obolibrary.org/obo/UBERON_0010685,pedal digit phalanx cartilage element,hind limb digit phalanx cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010686,manual digit phalanx cartilage element,fore limb digit phalanx cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010687,pedal digit metatarsal pre-cartilage condensation,hind limb digit metatarsal pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010687,pedal digit metatarsal pre-cartilage condensation,metatarsal bone pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010687,pedal digit metatarsal pre-cartilage condensation,metatarsus pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010688,skeleton of manual acropodium,all phalanges in forelimb autopod +http://purl.obolibrary.org/obo/UBERON_0010688,skeleton of manual acropodium,anterior acropodium skeleton +http://purl.obolibrary.org/obo/UBERON_0010688,skeleton of manual acropodium,fore acropodium skeleton +http://purl.obolibrary.org/obo/UBERON_0010688,skeleton of manual acropodium,hand digit skeleton +http://purl.obolibrary.org/obo/UBERON_0010688,skeleton of manual acropodium,manual digit skeleton +http://purl.obolibrary.org/obo/UBERON_0010688,skeleton of manual acropodium,manual phalanges +http://purl.obolibrary.org/obo/UBERON_0010688,skeleton of manual acropodium,phalanges of hand +http://purl.obolibrary.org/obo/UBERON_0010688,skeleton of manual acropodium,phalanges of manus +http://purl.obolibrary.org/obo/UBERON_0010688,skeleton of manual acropodium,set of manual phalanges +http://purl.obolibrary.org/obo/UBERON_0010688,skeleton of manual acropodium,set of phalanges of hand +http://purl.obolibrary.org/obo/UBERON_0010688,skeleton of manual acropodium,set of phalanges of manus +http://purl.obolibrary.org/obo/UBERON_0010690,manual digit 1 epithelium,fore limb digit 1 epithelium +http://purl.obolibrary.org/obo/UBERON_0010690,manual digit 1 epithelium,manual digit I epithelium +http://purl.obolibrary.org/obo/UBERON_0010693,pedal digit 1 epithelium,hind limb digit 1 epithelium +http://purl.obolibrary.org/obo/UBERON_0010693,pedal digit 1 epithelium,pedal digit I epithelium +http://purl.obolibrary.org/obo/UBERON_0010695,mesenchyme of tarsal region, +http://purl.obolibrary.org/obo/UBERON_0010696,skeleton of pedal acropodium,all phalanges in hindlimb autopod +http://purl.obolibrary.org/obo/UBERON_0010696,skeleton of pedal acropodium,foot digit skeleton +http://purl.obolibrary.org/obo/UBERON_0010696,skeleton of pedal acropodium,hind acropodium skeleton +http://purl.obolibrary.org/obo/UBERON_0010696,skeleton of pedal acropodium,pedal phalanges +http://purl.obolibrary.org/obo/UBERON_0010696,skeleton of pedal acropodium,phalanges of foot +http://purl.obolibrary.org/obo/UBERON_0010696,skeleton of pedal acropodium,phalanges of pes +http://purl.obolibrary.org/obo/UBERON_0010696,skeleton of pedal acropodium,posterior acropodium skeleton +http://purl.obolibrary.org/obo/UBERON_0010696,skeleton of pedal acropodium,set of pedal phalanges +http://purl.obolibrary.org/obo/UBERON_0010696,skeleton of pedal acropodium,set of phalanges of foot +http://purl.obolibrary.org/obo/UBERON_0010696,skeleton of pedal acropodium,set of phalanges of pes +http://purl.obolibrary.org/obo/UBERON_0010697,pedal digit metatarsal cartilage element,hind limb digit metatarsal cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010698,manual digit metacarpus pre-cartilage condensation,fore limb digit metacarpus pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010698,manual digit metacarpus pre-cartilage condensation,metacarpal bone pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010698,manual digit metacarpus pre-cartilage condensation,metacarpal pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010698,manual digit metacarpus pre-cartilage condensation,metacarpus pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010699,manual digit metacarpus cartilage element,finger metacarpus cartilage element +http://purl.obolibrary.org/obo/UBERON_0010699,manual digit metacarpus cartilage element,fore limb digit metacarpus cartilage element +http://purl.obolibrary.org/obo/UBERON_0010699,manual digit metacarpus cartilage element,metacarpal cartilage element +http://purl.obolibrary.org/obo/UBERON_0010699,manual digit metacarpus cartilage element,metacarpus cartilage element +http://purl.obolibrary.org/obo/UBERON_0010700,phalanx pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0010701,phalanx cartilage element,phalanx cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010702,digit mesenchyme, +http://purl.obolibrary.org/obo/UBERON_0010703,forelimb zeugopod skeleton,antebrachial skeleton +http://purl.obolibrary.org/obo/UBERON_0010703,forelimb zeugopod skeleton,antebrachium skeleton +http://purl.obolibrary.org/obo/UBERON_0010703,forelimb zeugopod skeleton,anterior zeugopodium skeleton +http://purl.obolibrary.org/obo/UBERON_0010703,forelimb zeugopod skeleton,fore epipodium skeleton +http://purl.obolibrary.org/obo/UBERON_0010703,forelimb zeugopod skeleton,forearm skeleton +http://purl.obolibrary.org/obo/UBERON_0010703,forelimb zeugopod skeleton,skeleton of forearm +http://purl.obolibrary.org/obo/UBERON_0010704,parenchyma of quadrate lobe of liver,liver right quadrate lobe parenchyma +http://purl.obolibrary.org/obo/UBERON_0010704,parenchyma of quadrate lobe of liver,parenchyma of quadrate lobe +http://purl.obolibrary.org/obo/UBERON_0010706,parenchyma of caudate lobe of liver,liver right caudate lobe parenchyma +http://purl.obolibrary.org/obo/UBERON_0010706,parenchyma of caudate lobe of liver,parenchyma of caudate lobe +http://purl.obolibrary.org/obo/UBERON_0010707,appendage girdle complex,appendage complex +http://purl.obolibrary.org/obo/UBERON_0010707,appendage girdle complex,appendage-girdle complex +http://purl.obolibrary.org/obo/UBERON_0010707,appendage girdle complex,appendage/girdle complex +http://purl.obolibrary.org/obo/UBERON_0010707,appendage girdle complex,girdle plus limb or fin +http://purl.obolibrary.org/obo/UBERON_0010707,appendage girdle complex,limb +http://purl.obolibrary.org/obo/UBERON_0010708,pectoral complex,pectoral appendage/girdle complex +http://purl.obolibrary.org/obo/UBERON_0010708,pectoral complex,pectoral girdle plus anterior limb or fin +http://purl.obolibrary.org/obo/UBERON_0010708,pectoral complex,pectoral girdle plus pectoral limb or fin +http://purl.obolibrary.org/obo/UBERON_0010709,pelvic complex,pelvic appendage/girdle complex +http://purl.obolibrary.org/obo/UBERON_0010709,pelvic complex,pelvic girdle plus pelvic limb or fin +http://purl.obolibrary.org/obo/UBERON_0010709,pelvic complex,pelvic girdle plus posterior limb or fin +http://purl.obolibrary.org/obo/UBERON_0010710,pectoral fin skeleton,forefin skeleton +http://purl.obolibrary.org/obo/UBERON_0010711,pelvic fin skeleton, +http://purl.obolibrary.org/obo/UBERON_0010712,limb skeleton subdivision, +http://purl.obolibrary.org/obo/UBERON_0010713,paired fin skeleton, +http://purl.obolibrary.org/obo/UBERON_0010714,iliac cartilage element, +http://purl.obolibrary.org/obo/UBERON_0010718,pubic cartilage element, +http://purl.obolibrary.org/obo/UBERON_0010719,girdle skeleton,skeleton of girdle +http://purl.obolibrary.org/obo/UBERON_0010720,hindlimb zeugopod skeleton,crural skeleton +http://purl.obolibrary.org/obo/UBERON_0010720,hindlimb zeugopod skeleton,crus skeleton +http://purl.obolibrary.org/obo/UBERON_0010720,hindlimb zeugopod skeleton,hindlimb zygopod skeleton +http://purl.obolibrary.org/obo/UBERON_0010720,hindlimb zeugopod skeleton,posterior zeugopodium skeleton +http://purl.obolibrary.org/obo/UBERON_0010720,hindlimb zeugopod skeleton,skeleton cruris +http://purl.obolibrary.org/obo/UBERON_0010721,distal tarsal bone,cuneiform bone +http://purl.obolibrary.org/obo/UBERON_0010721,distal tarsal bone,distal tarsal +http://purl.obolibrary.org/obo/UBERON_0010721,distal tarsal bone,distal tarsal bone +http://purl.obolibrary.org/obo/UBERON_0010721,distal tarsal bone,os cuneiform +http://purl.obolibrary.org/obo/UBERON_0010721,distal tarsal bone,os cuneiforme +http://purl.obolibrary.org/obo/UBERON_0010722,accessory bone, +http://purl.obolibrary.org/obo/UBERON_0010723,os vesalianum pedis,pedal vesalian bone +http://purl.obolibrary.org/obo/UBERON_0010724,lateral tubercle of talus,accessory talus +http://purl.obolibrary.org/obo/UBERON_0010724,lateral tubercle of talus,os trigonum +http://purl.obolibrary.org/obo/UBERON_0010724,lateral tubercle of talus,os trigonum of talus +http://purl.obolibrary.org/obo/UBERON_0010724,lateral tubercle of talus,tuberculum laterale (talus) +http://purl.obolibrary.org/obo/UBERON_0010725,accessory navicular bone, +http://purl.obolibrary.org/obo/UBERON_0010726,os vesalianum manus,manual vesalian bone +http://purl.obolibrary.org/obo/UBERON_0010727,sutural bone,Wormian bone +http://purl.obolibrary.org/obo/UBERON_0010728,sphenoid lesser wing pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0010732,alisphenoid pre-cartilage condensation,sphenoid greater wing pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010733,alisphenoid cartilage element,sphenoid greater wing cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010737,distal tarsal bone 4,os tarsale IV +http://purl.obolibrary.org/obo/UBERON_0010738,distal tarsal bone 5,distal tarsal 5 +http://purl.obolibrary.org/obo/UBERON_0010738,distal tarsal bone 5,tarsal 5 +http://purl.obolibrary.org/obo/UBERON_0010739,distal carpal bone 5,distal carpal 5 +http://purl.obolibrary.org/obo/UBERON_0010740,bone of appendage girdle complex, +http://purl.obolibrary.org/obo/UBERON_0010741,bone of pectoral complex, +http://purl.obolibrary.org/obo/UBERON_0010742,bone of pelvic complex, +http://purl.obolibrary.org/obo/UBERON_0010743,meningeal cluster,cerebral meninges +http://purl.obolibrary.org/obo/UBERON_0010743,meningeal cluster,cluster of meninges +http://purl.obolibrary.org/obo/UBERON_0010743,meningeal cluster,meninges +http://purl.obolibrary.org/obo/UBERON_0010744,sacral vertebra pre-cartilage condensation,sacral vertebral pre-cartilage condensation group +http://purl.obolibrary.org/obo/UBERON_0010745,sacral vertebra cartilage element,sacral vertebral cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010745,sacral vertebra cartilage element,sacral vertebral cartilage condensation group +http://purl.obolibrary.org/obo/UBERON_0010746,iliac blade,a. ossis ilii +http://purl.obolibrary.org/obo/UBERON_0010746,iliac blade,ala of ilium +http://purl.obolibrary.org/obo/UBERON_0010746,iliac blade,ala ossis ilii +http://purl.obolibrary.org/obo/UBERON_0010746,iliac blade,ilium ala +http://purl.obolibrary.org/obo/UBERON_0010746,iliac blade,wing of ilium +http://purl.obolibrary.org/obo/UBERON_0010746,iliac blade,wing of the ilium +http://purl.obolibrary.org/obo/UBERON_0010747,body of ilium,ilium body +http://purl.obolibrary.org/obo/UBERON_0010748,lymph node follicle,follicle of lymph node +http://purl.obolibrary.org/obo/UBERON_0010749,middle pharyngeal constrictor,middle constrictor +http://purl.obolibrary.org/obo/UBERON_0010749,middle pharyngeal constrictor,middle constrictor of pharynx +http://purl.obolibrary.org/obo/UBERON_0010749,middle pharyngeal constrictor,middle constrictor pharyngeus +http://purl.obolibrary.org/obo/UBERON_0010749,middle pharyngeal constrictor,musculus constrictor pharyngis medius +http://purl.obolibrary.org/obo/UBERON_0010750,prefrontal bone, +http://purl.obolibrary.org/obo/UBERON_0010751,squamous part of temporal bone primordium,squamosal bone primordium +http://purl.obolibrary.org/obo/UBERON_0010751,squamous part of temporal bone primordium,squamosal primordium +http://purl.obolibrary.org/obo/UBERON_0010752,exoccipital cartilage element, +http://purl.obolibrary.org/obo/UBERON_0010753,lymph node secondary follicle, +http://purl.obolibrary.org/obo/UBERON_0010754,germinal center,central zone of follice +http://purl.obolibrary.org/obo/UBERON_0010754,germinal center,reaction center of follicle +http://purl.obolibrary.org/obo/UBERON_0010755,secondary follicle corona,inactive zone of follicle +http://purl.obolibrary.org/obo/UBERON_0010755,secondary follicle corona,peripheral zone of follicle +http://purl.obolibrary.org/obo/UBERON_0010756,spleen follicular dendritic cell network,spleen FDC network +http://purl.obolibrary.org/obo/UBERON_0010756,spleen follicular dendritic cell network,splenic follicular dendritic cell network +http://purl.obolibrary.org/obo/UBERON_0010757,rib 8,costa VIII +http://purl.obolibrary.org/obo/UBERON_0010757,rib 8,eighth rib +http://purl.obolibrary.org/obo/UBERON_0010758,subdivision of organism along appendicular axis,appendage segment +http://purl.obolibrary.org/obo/UBERON_0010758,subdivision of organism along appendicular axis,appendicular segment +http://purl.obolibrary.org/obo/UBERON_0010759,equine distal sesamoid, +http://purl.obolibrary.org/obo/UBERON_0010760,supraglenoid tubercle,supraglenoid tuberosity +http://purl.obolibrary.org/obo/UBERON_0010801,calcaneum pre-cartilage condensation,calcaneous pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010842,calcaneum cartilage element,calcaneous cartilage element +http://purl.obolibrary.org/obo/UBERON_0010843,clavicle cartilage element, +http://purl.obolibrary.org/obo/UBERON_0010844,clavicle pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0010846,radius pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0010847,ulna pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0010848,radius-ulna cartilage element,radio-ulna cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010849,tibia cartilage element, +http://purl.obolibrary.org/obo/UBERON_0010850,tibia pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0010851,fibula cartilage element,fibulal cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010851,fibula cartilage element,fibular cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010852,fibula pre-cartilage condensation,fibulal pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010852,fibula pre-cartilage condensation,fibular pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010853,capitulum of humerus,humeral capitulum +http://purl.obolibrary.org/obo/UBERON_0010854,skin of front of neck,skin of anterior neck +http://purl.obolibrary.org/obo/UBERON_0010854,skin of front of neck,skin of anterior part of neck +http://purl.obolibrary.org/obo/UBERON_0010854,skin of front of neck,skin of anterior portion of neck +http://purl.obolibrary.org/obo/UBERON_0010854,skin of front of neck,skin of throat +http://purl.obolibrary.org/obo/UBERON_0010855,skin of forelimb wing, +http://purl.obolibrary.org/obo/UBERON_0010856,patagium, +http://purl.obolibrary.org/obo/UBERON_0010858,inter limb-segment region, +http://purl.obolibrary.org/obo/UBERON_0010861,propatagium, +http://purl.obolibrary.org/obo/UBERON_0010862,dactylopatagium, +http://purl.obolibrary.org/obo/UBERON_0010863,dactylopatagium brevis, +http://purl.obolibrary.org/obo/UBERON_0010864,dactylopatagium minus, +http://purl.obolibrary.org/obo/UBERON_0010865,dactylopatagium medius, +http://purl.obolibrary.org/obo/UBERON_0010866,dactylopatagium major, +http://purl.obolibrary.org/obo/UBERON_0010867,plagiopatagium, +http://purl.obolibrary.org/obo/UBERON_0010868,uropropatagium,interfemoral membrane +http://purl.obolibrary.org/obo/UBERON_0010868,uropropatagium,interfemoral wing membrane +http://purl.obolibrary.org/obo/UBERON_0010869,calcar,calcar spur +http://purl.obolibrary.org/obo/UBERON_0010878,humeral patagium, +http://purl.obolibrary.org/obo/UBERON_0010879,tusk, +http://purl.obolibrary.org/obo/UBERON_0010880,gular fold, +http://purl.obolibrary.org/obo/UBERON_0010881,limb cartilage element, +http://purl.obolibrary.org/obo/UBERON_0010882,limb bone pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0010883,forelimb cartilage element, +http://purl.obolibrary.org/obo/UBERON_0010884,forelimb bone pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0010885,hindlimb cartilage element,hindlimb cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010886,hindlimb pre-cartilage condensation,hindlimb pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0010887,tragus,tragal part of pinna +http://purl.obolibrary.org/obo/UBERON_0010889,ectethmoid,dorsal nasal capsule +http://purl.obolibrary.org/obo/UBERON_0010890,pelvic complex muscle,pelvic girdle and hind limb muscles +http://purl.obolibrary.org/obo/UBERON_0010891,pectoral complex muscle,pectoral girdle and fore limb muscles +http://purl.obolibrary.org/obo/UBERON_0010892,mesethmoid element,ventral nasal capsule +http://purl.obolibrary.org/obo/UBERON_0010893,median external naris,median anterior naris +http://purl.obolibrary.org/obo/UBERON_0010893,median external naris,median nostril +http://purl.obolibrary.org/obo/UBERON_0010893,median external naris,nasohypophysial opening +http://purl.obolibrary.org/obo/UBERON_0010894,keratinous tooth,horny denticle +http://purl.obolibrary.org/obo/UBERON_0010895,sequential hermaphroditic organism, +http://purl.obolibrary.org/obo/UBERON_0010896,piston cartilage,lingual cartilage +http://purl.obolibrary.org/obo/UBERON_0010898,gastralium,abdominal rib +http://purl.obolibrary.org/obo/UBERON_0010898,gastralium,belly rib +http://purl.obolibrary.org/obo/UBERON_0010898,gastralium,gastralia +http://purl.obolibrary.org/obo/UBERON_0010899,synchronous hermaphroditic organism,serially hermaphroditic organism +http://purl.obolibrary.org/obo/UBERON_0010899,synchronous hermaphroditic organism,simultaneous hermaphroditic organism +http://purl.obolibrary.org/obo/UBERON_0010900,tarsometatarsus cartilage element, +http://purl.obolibrary.org/obo/UBERON_0010901,tarsometatarsus pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0010902,tibiotarsus cartilage element, +http://purl.obolibrary.org/obo/UBERON_0010903,tibiotarsus pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0010905,clavicle bone primordium,clavicle primordium +http://purl.obolibrary.org/obo/UBERON_0010907,parafibula, +http://purl.obolibrary.org/obo/UBERON_0010908,paraglossale,paraglossale bone +http://purl.obolibrary.org/obo/UBERON_0010910,opisthotic, +http://purl.obolibrary.org/obo/UBERON_0010911,ossicle, +http://purl.obolibrary.org/obo/UBERON_0010912,subdivision of skeleton,skeletal subdivision +http://purl.obolibrary.org/obo/UBERON_0010913,vertebral element,vertebra element +http://purl.obolibrary.org/obo/UBERON_0010921,thyrohyoid ligament, +http://purl.obolibrary.org/obo/UBERON_0010925,median thyrohyoid ligament,ligamentum thyrohyoideum medianum +http://purl.obolibrary.org/obo/UBERON_0010925,median thyrohyoid ligament,middle thyrohyoid ligament +http://purl.obolibrary.org/obo/UBERON_0010926,lateral thyrohyoid ligament,ligamentum hyothyreoideum laterale +http://purl.obolibrary.org/obo/UBERON_0010926,lateral thyrohyoid ligament,ligamentum thyrohyoideum laterale +http://purl.obolibrary.org/obo/UBERON_0010927,thyroepiglotticus muscle,pars thyroepiglottica (musculus thyroarytenoideus) +http://purl.obolibrary.org/obo/UBERON_0010927,thyroepiglotticus muscle,pars thyroepiglottica musculus thyroarytenoidei +http://purl.obolibrary.org/obo/UBERON_0010927,thyroepiglotticus muscle,thyro-epiglottic part of thyro-arytenoid +http://purl.obolibrary.org/obo/UBERON_0010927,thyroepiglotticus muscle,thyroepiglottic +http://purl.obolibrary.org/obo/UBERON_0010927,thyroepiglotticus muscle,thyroepiglottic muscle +http://purl.obolibrary.org/obo/UBERON_0010927,thyroepiglotticus muscle,thyroepiglotticus +http://purl.obolibrary.org/obo/UBERON_0010927,thyroepiglotticus muscle,thyroepiglottus +http://purl.obolibrary.org/obo/UBERON_0010927,thyroepiglotticus muscle,thyroepiglottus muscle +http://purl.obolibrary.org/obo/UBERON_0010928,cricopharyngeus muscle,cricopharyngeal part of inferior constrictor pharyngeus +http://purl.obolibrary.org/obo/UBERON_0010928,cricopharyngeus muscle,cricopharyngeal part of inferior pharyngeal constrictor +http://purl.obolibrary.org/obo/UBERON_0010928,cricopharyngeus muscle,cricopharyngeal part of inferior pharyngeal constrictor muscle +http://purl.obolibrary.org/obo/UBERON_0010928,cricopharyngeus muscle,cricopharyngeus +http://purl.obolibrary.org/obo/UBERON_0010928,cricopharyngeus muscle,cricopharyngeus portion of the inferior pharyngeal constrictor +http://purl.obolibrary.org/obo/UBERON_0010928,cricopharyngeus muscle,musculus cricopharyngeus +http://purl.obolibrary.org/obo/UBERON_0010928,cricopharyngeus muscle,pars cricopharyngea (musculus constrictor pharyngis inferior) +http://purl.obolibrary.org/obo/UBERON_0010928,cricopharyngeus muscle,pars cricopharyngea musculus constrictoris pharyngis inferioris +http://purl.obolibrary.org/obo/UBERON_0010929,stapedius pre-muscle condensation, +http://purl.obolibrary.org/obo/UBERON_0010930,interhyoideus,interhyoideus muscle +http://purl.obolibrary.org/obo/UBERON_0010931,intermandibularis,intermandibularis muscle +http://purl.obolibrary.org/obo/UBERON_0010932,crico-arytenoid muscle,crico-arytenoid +http://purl.obolibrary.org/obo/UBERON_0010932,crico-arytenoid muscle,cricoarytenoid +http://purl.obolibrary.org/obo/UBERON_0010932,crico-arytenoid muscle,cricoarytenoid muscle +http://purl.obolibrary.org/obo/UBERON_0010932,crico-arytenoid muscle,cricoarytenoideus +http://purl.obolibrary.org/obo/UBERON_0010933,orbicularis oris muscle,orbicularis oris +http://purl.obolibrary.org/obo/UBERON_0010935,tensor tympani pre-muscle condensation, +http://purl.obolibrary.org/obo/UBERON_0010936,thyropharyngeus muscle,musculus thyropharyngeus +http://purl.obolibrary.org/obo/UBERON_0010936,thyropharyngeus muscle,pars thyropharyngea (musculus constrictor pharyngis inferior) +http://purl.obolibrary.org/obo/UBERON_0010936,thyropharyngeus muscle,pars thyropharyngea musculus constrictoris pharyngis inferioris +http://purl.obolibrary.org/obo/UBERON_0010936,thyropharyngeus muscle,thyropharyngeal part of inferior constrictor pharyngeus +http://purl.obolibrary.org/obo/UBERON_0010936,thyropharyngeus muscle,thyropharyngeal part of inferior constrictor pharyngeus muscle +http://purl.obolibrary.org/obo/UBERON_0010936,thyropharyngeus muscle,thyropharyngeal part of inferior pharyngeal constrictor +http://purl.obolibrary.org/obo/UBERON_0010936,thyropharyngeus muscle,thyropharyngeus +http://purl.obolibrary.org/obo/UBERON_0010937,salpingopharyngeus muscle,salpingopharyngeus +http://purl.obolibrary.org/obo/UBERON_0010938,muscle belly,belly of muscle +http://purl.obolibrary.org/obo/UBERON_0010939,zygomaticomandibularis muscle,zygomaticomandibularis +http://purl.obolibrary.org/obo/UBERON_0010939,zygomaticomandibularis muscle,zygomaticomandibularis muscle +http://purl.obolibrary.org/obo/UBERON_0010940,muscle of digastric group, +http://purl.obolibrary.org/obo/UBERON_0010943,anterior digastric muscle,anterior belly of digastric +http://purl.obolibrary.org/obo/UBERON_0010943,anterior digastric muscle,anterior belly of digastric muscle +http://purl.obolibrary.org/obo/UBERON_0010943,anterior digastric muscle,anterior digastric +http://purl.obolibrary.org/obo/UBERON_0010943,anterior digastric muscle,anterior digastric muscle +http://purl.obolibrary.org/obo/UBERON_0010943,anterior digastric muscle,"digastric, anterior" +http://purl.obolibrary.org/obo/UBERON_0010943,anterior digastric muscle,digastricus anterior +http://purl.obolibrary.org/obo/UBERON_0010943,anterior digastric muscle,digastricus anterior belly +http://purl.obolibrary.org/obo/UBERON_0010943,anterior digastric muscle,"digastricus, venter rostralis" +http://purl.obolibrary.org/obo/UBERON_0010943,anterior digastric muscle,venter anterior (musculus digastricus) +http://purl.obolibrary.org/obo/UBERON_0010943,anterior digastric muscle,venter posterior musculus digastrici anterior +http://purl.obolibrary.org/obo/UBERON_0010944,posterior digastric muscle,"digastric, posterior" +http://purl.obolibrary.org/obo/UBERON_0010944,posterior digastric muscle,digastricus posterior +http://purl.obolibrary.org/obo/UBERON_0010944,posterior digastric muscle,digastricus posterior belly +http://purl.obolibrary.org/obo/UBERON_0010944,posterior digastric muscle,"digastricus, venter caudalis" +http://purl.obolibrary.org/obo/UBERON_0010944,posterior digastric muscle,m. digastricus posterior +http://purl.obolibrary.org/obo/UBERON_0010944,posterior digastric muscle,posterior belly of digastric +http://purl.obolibrary.org/obo/UBERON_0010944,posterior digastric muscle,posterior belly of digastric muscle +http://purl.obolibrary.org/obo/UBERON_0010944,posterior digastric muscle,posterior digastric muscle +http://purl.obolibrary.org/obo/UBERON_0010944,posterior digastric muscle,venter posterior musculus digastrici +http://purl.obolibrary.org/obo/UBERON_0010945,jugulohyoideus muscle, +http://purl.obolibrary.org/obo/UBERON_0010946,occipitofrontalis muscle, +http://purl.obolibrary.org/obo/UBERON_0010947,occipitalis,occipital belly of occipitofrontalis +http://purl.obolibrary.org/obo/UBERON_0010947,occipitalis,occipital part of occipitofrontalis +http://purl.obolibrary.org/obo/UBERON_0010947,occipitalis,venter occipitalis (musculus occipitofrontalis) +http://purl.obolibrary.org/obo/UBERON_0010947,occipitalis,venter transversa musculi occipitofrontalis occipitalis +http://purl.obolibrary.org/obo/UBERON_0010947,occipitalis,venter transversa musculus occipitofrontalis occipitalis +http://purl.obolibrary.org/obo/UBERON_0010948,cleidooccipital muscle,cleido-occipitalis +http://purl.obolibrary.org/obo/UBERON_0010948,cleidooccipital muscle,cleido-occipitalis muscle +http://purl.obolibrary.org/obo/UBERON_0010948,cleidooccipital muscle,cleidooccipital +http://purl.obolibrary.org/obo/UBERON_0010949,sternooccipital muscle,sternooccipital +http://purl.obolibrary.org/obo/UBERON_0010950,styloauricular muscle,mandibulo-auricularis +http://purl.obolibrary.org/obo/UBERON_0010950,styloauricular muscle,mandibulo-auricularis muscle +http://purl.obolibrary.org/obo/UBERON_0010950,styloauricular muscle,stylo-auricularis +http://purl.obolibrary.org/obo/UBERON_0010950,styloauricular muscle,stylo-auricularis muscle +http://purl.obolibrary.org/obo/UBERON_0010950,styloauricular muscle,styloauricularis +http://purl.obolibrary.org/obo/UBERON_0010951,interscutular muscle,interscutularis +http://purl.obolibrary.org/obo/UBERON_0010951,interscutular muscle,musculus interscutularis +http://purl.obolibrary.org/obo/UBERON_0010952,frontalis muscle belly,frontal belly of occipitofrontalis +http://purl.obolibrary.org/obo/UBERON_0010952,frontalis muscle belly,frontal part of occipitofrontalis +http://purl.obolibrary.org/obo/UBERON_0010952,frontalis muscle belly,frontalis +http://purl.obolibrary.org/obo/UBERON_0010952,frontalis muscle belly,frontalis muscke +http://purl.obolibrary.org/obo/UBERON_0010952,frontalis muscle belly,orbito-temporo-auricularis +http://purl.obolibrary.org/obo/UBERON_0010952,frontalis muscle belly,venter frontalis (musculus occipitofrontalis) +http://purl.obolibrary.org/obo/UBERON_0010952,frontalis muscle belly,venter frontalis musculus occipitofrontalis +http://purl.obolibrary.org/obo/UBERON_0010953,nasalis muscle,nasalis +http://purl.obolibrary.org/obo/UBERON_0010954,ceratohyoideus muscle,ceratohyoideus +http://purl.obolibrary.org/obo/UBERON_0010955,trapezius pre-muscle mass, +http://purl.obolibrary.org/obo/UBERON_0010956,pterygopharyngeal part of superior pharyngeal constrictor,pars pterygopharyngea (musculus constrictor pharyngis superior) +http://purl.obolibrary.org/obo/UBERON_0010956,pterygopharyngeal part of superior pharyngeal constrictor,pars pterygopharyngea musculus constrictoris pharyngis superioris +http://purl.obolibrary.org/obo/UBERON_0010956,pterygopharyngeal part of superior pharyngeal constrictor,pterygopharyngeal part of superior constrictor pharyngeus +http://purl.obolibrary.org/obo/UBERON_0010958,arytenoid muscle, +http://purl.obolibrary.org/obo/UBERON_0010959,craniocervical muscle,muscle of head or neck +http://purl.obolibrary.org/obo/UBERON_0010961,erector spinae pre-muscle mass, +http://purl.obolibrary.org/obo/UBERON_0010962,extensor pre-muscle mass, +http://purl.obolibrary.org/obo/UBERON_0010963,trunk and cervical myotome group, +http://purl.obolibrary.org/obo/UBERON_0010970,intercostal pre-muscle mass, +http://purl.obolibrary.org/obo/UBERON_0010974,external intercostal pre-muscle mass, +http://purl.obolibrary.org/obo/UBERON_0010975,external oblique pre-muscle mass, +http://purl.obolibrary.org/obo/UBERON_0010977,flexor pre-muscle mass, +http://purl.obolibrary.org/obo/UBERON_0010981,internal intercostal pre-muscle mass, +http://purl.obolibrary.org/obo/UBERON_0010982,latissimus dorsi pre-muscle mass, +http://purl.obolibrary.org/obo/UBERON_0010983,levator scapulae pre-muscle mass, +http://purl.obolibrary.org/obo/UBERON_0010984,pectoral pre-muscle mass, +http://purl.obolibrary.org/obo/UBERON_0010985,rhomboid pre-muscle mass, +http://purl.obolibrary.org/obo/UBERON_0010986,serratus ventralis pre-muscle mass,serratus anterior pre-muscle mass +http://purl.obolibrary.org/obo/UBERON_0010987,sterno-mastoid pre-muscle mass, +http://purl.obolibrary.org/obo/UBERON_0010988,teres major pre-muscle mass, +http://purl.obolibrary.org/obo/UBERON_0010989,transverospinalis pre-muscle mass, +http://purl.obolibrary.org/obo/UBERON_0010990,transversospinales muscle,transverospinalis +http://purl.obolibrary.org/obo/UBERON_0010993,subscapularis pre-muscle mass, +http://purl.obolibrary.org/obo/UBERON_0010994,coronoid process of ulna,coronoid process of the ulna +http://purl.obolibrary.org/obo/UBERON_0010994,coronoid process of ulna,processus coronoideus +http://purl.obolibrary.org/obo/UBERON_0010994,coronoid process of ulna,ulnar coronoid process +http://purl.obolibrary.org/obo/UBERON_0010995,deep part of masseter muscle,deep layer of masseter +http://purl.obolibrary.org/obo/UBERON_0010995,deep part of masseter muscle,deep part of masseter +http://purl.obolibrary.org/obo/UBERON_0010995,deep part of masseter muscle,"masseter, deep" +http://purl.obolibrary.org/obo/UBERON_0010995,deep part of masseter muscle,"masseter, profundus" +http://purl.obolibrary.org/obo/UBERON_0010995,deep part of masseter muscle,pars profunda (musculus masseter) +http://purl.obolibrary.org/obo/UBERON_0010995,deep part of masseter muscle,pars profunda musculus masseterica +http://purl.obolibrary.org/obo/UBERON_0010995,deep part of masseter muscle,pars profunda of masseter muscle +http://purl.obolibrary.org/obo/UBERON_0010996,articular cartilage of joint,articular cartilage +http://purl.obolibrary.org/obo/UBERON_0010996,articular cartilage of joint,cartilago articularis +http://purl.obolibrary.org/obo/UBERON_0011002,articular cartilage element, +http://purl.obolibrary.org/obo/UBERON_0011004,pharyngeal arch cartilage,pharyngeal arch cartilages +http://purl.obolibrary.org/obo/UBERON_0011004,pharyngeal arch cartilage,splanchnocranium cartilage +http://purl.obolibrary.org/obo/UBERON_0011005,endocardium of auricle,auricle endocardium +http://purl.obolibrary.org/obo/UBERON_0011006,endocardium of left auricle,left atrium auricular region endocardium +http://purl.obolibrary.org/obo/UBERON_0011006,endocardium of left auricle,left auricle endocardium +http://purl.obolibrary.org/obo/UBERON_0011007,endocardium of right auricle,right auricle endocardium +http://purl.obolibrary.org/obo/UBERON_0011011,brachioradialis,brachioradialis muscle +http://purl.obolibrary.org/obo/UBERON_0011012,flexor pollicis brevis muscle,flexor pollicis brevis +http://purl.obolibrary.org/obo/UBERON_0011013,spinalis muscle,spinal muscle +http://purl.obolibrary.org/obo/UBERON_0011013,spinalis muscle,spinalis +http://purl.obolibrary.org/obo/UBERON_0011014,spinalis capitis muscle,spinal muscle of head +http://purl.obolibrary.org/obo/UBERON_0011014,spinalis capitis muscle,spinalis capitis +http://purl.obolibrary.org/obo/UBERON_0011015,iliac fossa, +http://purl.obolibrary.org/obo/UBERON_0011016,pyramidalis,pyramidalis muscle +http://purl.obolibrary.org/obo/UBERON_0011017,semispinalis muscle,semispinalis +http://purl.obolibrary.org/obo/UBERON_0011022,flexor hallucis brevis muscle,flexor hallucis brevis +http://purl.obolibrary.org/obo/UBERON_0011022,flexor hallucis brevis muscle,flexor hallucis brevis muscle +http://purl.obolibrary.org/obo/UBERON_0011022,flexor hallucis brevis muscle,m.flexor hallucis brevis +http://purl.obolibrary.org/obo/UBERON_0011024,extrinsic extensor muscle of manus,extrinsic extensor muscle of hand +http://purl.obolibrary.org/obo/UBERON_0011025,aryepiglotticus muscle,ary-epiglottic part of oblique arytenoid +http://purl.obolibrary.org/obo/UBERON_0011025,aryepiglotticus muscle,aryepiglottic +http://purl.obolibrary.org/obo/UBERON_0011025,aryepiglotticus muscle,aryepiglottic muscle +http://purl.obolibrary.org/obo/UBERON_0011025,aryepiglotticus muscle,aryepiglotticus +http://purl.obolibrary.org/obo/UBERON_0011025,aryepiglotticus muscle,aryepiglottus +http://purl.obolibrary.org/obo/UBERON_0011025,aryepiglotticus muscle,aryepiglottus muscle +http://purl.obolibrary.org/obo/UBERON_0011025,aryepiglotticus muscle,pars aryepiglottica (musculus arytenoideus obliquus) +http://purl.obolibrary.org/obo/UBERON_0011025,aryepiglotticus muscle,pars aryepiglottica musculus arytenoidei obliqui +http://purl.obolibrary.org/obo/UBERON_0011043,obturator muscle, +http://purl.obolibrary.org/obo/UBERON_0011048,obturator internus,internal obturator +http://purl.obolibrary.org/obo/UBERON_0011048,obturator internus,musculus obturator internus +http://purl.obolibrary.org/obo/UBERON_0011049,uterovesical pouch,excavatio vesico-uterina +http://purl.obolibrary.org/obo/UBERON_0011049,uterovesical pouch,excavatio vesicouterina +http://purl.obolibrary.org/obo/UBERON_0011049,uterovesical pouch,vesico-uterine pouch +http://purl.obolibrary.org/obo/UBERON_0011049,uterovesical pouch,vesicouterine pouch +http://purl.obolibrary.org/obo/UBERON_0011050,thoracic vertebra 8,T8 vertebra +http://purl.obolibrary.org/obo/UBERON_0011050,thoracic vertebra 8,eighth dorsal vertebra +http://purl.obolibrary.org/obo/UBERON_0011050,thoracic vertebra 8,eighth thoracic vertebra +http://purl.obolibrary.org/obo/UBERON_0011060,perilymphatic channel,ductus perilymphaticus +http://purl.obolibrary.org/obo/UBERON_0011078,endolymphatic space, +http://purl.obolibrary.org/obo/UBERON_0011079,angular bone, +http://purl.obolibrary.org/obo/UBERON_0011085,palatoquadrate arch,dorsal visceral arch 1 +http://purl.obolibrary.org/obo/UBERON_0011085,palatoquadrate arch,upper pharyngeal jaw +http://purl.obolibrary.org/obo/UBERON_0011087,pharyngeal arch 7,gill arch 5 +http://purl.obolibrary.org/obo/UBERON_0011087,pharyngeal arch 7,visceral arch 7 +http://purl.obolibrary.org/obo/UBERON_0011088,ligament of knee joint,knee joint ligament +http://purl.obolibrary.org/obo/UBERON_0011090,skeleton of right pelvic girdle, +http://purl.obolibrary.org/obo/UBERON_0011091,skeleton of left pelvic girdle, +http://purl.obolibrary.org/obo/UBERON_0011092,right pelvic girdle region,right pelvic girdle +http://purl.obolibrary.org/obo/UBERON_0011093,left pelvic girdle region,left pelvic girdle +http://purl.obolibrary.org/obo/UBERON_0011094,vertebra cartilage element,vertebral cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0011095,vertebra pre-cartilage condensation,vertebral pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0011096,lacrimal nerve,nervus lacrimalis +http://purl.obolibrary.org/obo/UBERON_0011104,epiphysis of fifth metacarpal bone,fifth metacarpal bone epiphysis +http://purl.obolibrary.org/obo/UBERON_0011104,epiphysis of fifth metacarpal bone,metacarpal 5 epiphysis +http://purl.obolibrary.org/obo/UBERON_0011106,cruciate ligament of atlas,cruciate ligament of dens +http://purl.obolibrary.org/obo/UBERON_0011106,cruciate ligament of atlas,cruciform ligament of atlas +http://purl.obolibrary.org/obo/UBERON_0011106,cruciate ligament of atlas,cruciform ligament of dens +http://purl.obolibrary.org/obo/UBERON_0011106,cruciate ligament of atlas,ligamentum cruciforme atlantis +http://purl.obolibrary.org/obo/UBERON_0011107,synovial joint of pelvic girdle,joint of pelvic girdle +http://purl.obolibrary.org/obo/UBERON_0011107,synovial joint of pelvic girdle,pelvic girdle joint +http://purl.obolibrary.org/obo/UBERON_0011108,synovial joint of pectoral girdle,joint of shoulder girdle +http://purl.obolibrary.org/obo/UBERON_0011108,synovial joint of pectoral girdle,pectoral girdle joint +http://purl.obolibrary.org/obo/UBERON_0011110,humeroulnar joint,articulatio humeroulnaris +http://purl.obolibrary.org/obo/UBERON_0011110,humeroulnar joint,humero-ulnar joint +http://purl.obolibrary.org/obo/UBERON_0011111,humeroradial joint,articulatio humeroradialis +http://purl.obolibrary.org/obo/UBERON_0011111,humeroradial joint,humero-radial joint +http://purl.obolibrary.org/obo/UBERON_0011112,tibiofibular joint,fibulatibial joint +http://purl.obolibrary.org/obo/UBERON_0011112,tibiofibular joint,fibulotibial joint +http://purl.obolibrary.org/obo/UBERON_0011112,tibiofibular joint,tibiafibular joint +http://purl.obolibrary.org/obo/UBERON_0011113,inferior tibiofibular joint,distal tibiofibular joint +http://purl.obolibrary.org/obo/UBERON_0011113,inferior tibiofibular joint,syndesmosis tibiofibularis +http://purl.obolibrary.org/obo/UBERON_0011113,inferior tibiofibular joint,tibiofibular syndesmosis +http://purl.obolibrary.org/obo/UBERON_0011117,superior tibiofibular joint,proximal tibiofibular joint +http://purl.obolibrary.org/obo/UBERON_0011118,tarsometatarsal joint,tarso-metatarsal join +http://purl.obolibrary.org/obo/UBERON_0011119,carpometacarpal joint,articulationes carpometacarpeæ +http://purl.obolibrary.org/obo/UBERON_0011120,laryngeal joint,joint of larynx +http://purl.obolibrary.org/obo/UBERON_0011120,laryngeal joint,laryngeal articulation +http://purl.obolibrary.org/obo/UBERON_0011121,cricothyroid joint,cricothyroid articulation +http://purl.obolibrary.org/obo/UBERON_0011122,cricoarytenoid joint,crico-arytenoid joint +http://purl.obolibrary.org/obo/UBERON_0011122,cricoarytenoid joint,cricoarytenoid articulation +http://purl.obolibrary.org/obo/UBERON_0011123,stifle joint, +http://purl.obolibrary.org/obo/UBERON_0011124,xiphisternal joint,synchondrosis xiphisternalis +http://purl.obolibrary.org/obo/UBERON_0011130,temporomandibular joint primordium,temporo-mandibular joint primordium +http://purl.obolibrary.org/obo/UBERON_0011131,intermetacarpal joint, +http://purl.obolibrary.org/obo/UBERON_0011132,intercarpal joint,carpal joint +http://purl.obolibrary.org/obo/UBERON_0011133,intermetatarsal joint, +http://purl.obolibrary.org/obo/UBERON_0011134,nonsynovial joint,solid joint +http://purl.obolibrary.org/obo/UBERON_0011135,intervertebral cartilage, +http://purl.obolibrary.org/obo/UBERON_0011136,ligament of vertebral column,vertebral column ligament +http://purl.obolibrary.org/obo/UBERON_0011137,axial skeletal system, +http://purl.obolibrary.org/obo/UBERON_0011138,postcranial axial skeletal system,post-cranial axial skeletal system +http://purl.obolibrary.org/obo/UBERON_0011139,synovial limb joint,synovial joint of free limb segment +http://purl.obolibrary.org/obo/UBERON_0011140,superficial part of masseter muscle,"masseter, superficial" +http://purl.obolibrary.org/obo/UBERON_0011140,superficial part of masseter muscle,pars profunda musculus masseterica superficialis +http://purl.obolibrary.org/obo/UBERON_0011140,superficial part of masseter muscle,pars superficialis (musculus masseter) +http://purl.obolibrary.org/obo/UBERON_0011140,superficial part of masseter muscle,pars superficialis of masseter muscle +http://purl.obolibrary.org/obo/UBERON_0011140,superficial part of masseter muscle,superficial layer of masseter +http://purl.obolibrary.org/obo/UBERON_0011140,superficial part of masseter muscle,superficial part of masseter +http://purl.obolibrary.org/obo/UBERON_0011141,appendicular ossicle,ossicle of appendicular skeleton +http://purl.obolibrary.org/obo/UBERON_0011142,axial ossicle,ossicle of axial skeleton +http://purl.obolibrary.org/obo/UBERON_0011142,axial ossicle,ossicle of postcranial-axial skeleton +http://purl.obolibrary.org/obo/UBERON_0011143,upper urinary tract, +http://purl.obolibrary.org/obo/UBERON_0011144,adductor muscle of hip,adductor group (leg) +http://purl.obolibrary.org/obo/UBERON_0011145,adductor muscle, +http://purl.obolibrary.org/obo/UBERON_0011146,silk gland, +http://purl.obolibrary.org/obo/UBERON_0011147,Verson's gland, +http://purl.obolibrary.org/obo/UBERON_0011148,submucosal gland, +http://purl.obolibrary.org/obo/UBERON_0011149,Marshall's gland, +http://purl.obolibrary.org/obo/UBERON_0011150,pharyngeal arch derived gill, +http://purl.obolibrary.org/obo/UBERON_0011151,jaw depressor muscle, +http://purl.obolibrary.org/obo/UBERON_0011152,dorsal hyoid arch skeleton,dorsal hyoid arch +http://purl.obolibrary.org/obo/UBERON_0011152,dorsal hyoid arch skeleton,dorsal pharyngeal arch 2 skeleton +http://purl.obolibrary.org/obo/UBERON_0011152,dorsal hyoid arch skeleton,dorsal visceral arch 2 +http://purl.obolibrary.org/obo/UBERON_0011153,ventral hyoid arch skeleton,ventral hyoid arch +http://purl.obolibrary.org/obo/UBERON_0011153,ventral hyoid arch skeleton,ventral pharyngeal arch 2 skeleton +http://purl.obolibrary.org/obo/UBERON_0011153,ventral hyoid arch skeleton,ventral visceral arch 2 +http://purl.obolibrary.org/obo/UBERON_0011154,gular region, +http://purl.obolibrary.org/obo/UBERON_0011155,Sylvian cistern, +http://purl.obolibrary.org/obo/UBERON_0011156,facial skeleton,facial skeleton +http://purl.obolibrary.org/obo/UBERON_0011157,cuneiform cartilage,Wrisbergi cartilage +http://purl.obolibrary.org/obo/UBERON_0011157,cuneiform cartilage,cartilage of Morgagni +http://purl.obolibrary.org/obo/UBERON_0011157,cuneiform cartilage,cartilage of Wrisberg +http://purl.obolibrary.org/obo/UBERON_0011158,primary subdivision of skull,skull subdivision +http://purl.obolibrary.org/obo/UBERON_0011158,primary subdivision of skull,subdivision of skull +http://purl.obolibrary.org/obo/UBERON_0011159,primary subdivision of cranial skeletal system, +http://purl.obolibrary.org/obo/UBERON_0011160,nasal suture, +http://purl.obolibrary.org/obo/UBERON_0011161,spheno-occipital synchondrosis, +http://purl.obolibrary.org/obo/UBERON_0011162,supraoccipital cartilage element,supra-occipital cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0011162,supraoccipital cartilage element,supraoccipital cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0011163,supraoccipital pre-cartilage condensation,supra-occipital pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0011164,neurocranium bone,chondrocranium bone +http://purl.obolibrary.org/obo/UBERON_0011165,crico-esophageal tendon,crico-oesophageal tendon +http://purl.obolibrary.org/obo/UBERON_0011165,crico-esophageal tendon,cricoesophageal tendon +http://purl.obolibrary.org/obo/UBERON_0011165,crico-esophageal tendon,tendo cricoesophageus +http://purl.obolibrary.org/obo/UBERON_0011166,patellofemoral joint,femorapatellar joint +http://purl.obolibrary.org/obo/UBERON_0011166,patellofemoral joint,femoropatellar joint +http://purl.obolibrary.org/obo/UBERON_0011166,patellofemoral joint,patello femoral joint +http://purl.obolibrary.org/obo/UBERON_0011167,septomaxilla bone,septomaxilla +http://purl.obolibrary.org/obo/UBERON_0011168,postfrontal bone, +http://purl.obolibrary.org/obo/UBERON_0011169,postorbital bone, +http://purl.obolibrary.org/obo/UBERON_0011170,quadrate-articular joint, +http://purl.obolibrary.org/obo/UBERON_0011171,joint connecting upper and lower jaws, +http://purl.obolibrary.org/obo/UBERON_0011172,retrorubral area of midbrain reticular nucleus,"midbrain reticular nucleus, retrorubral area" +http://purl.obolibrary.org/obo/UBERON_0011172,retrorubral area of midbrain reticular nucleus,retrorubral area +http://purl.obolibrary.org/obo/UBERON_0011173,anterior division of bed nuclei of stria terminalis,anterior division +http://purl.obolibrary.org/obo/UBERON_0011173,anterior division of bed nuclei of stria terminalis,anterior nuclei of stria terminalis +http://purl.obolibrary.org/obo/UBERON_0011173,anterior division of bed nuclei of stria terminalis,anterior part of the bed nucleus of the stria terminalis +http://purl.obolibrary.org/obo/UBERON_0011173,anterior division of bed nuclei of stria terminalis,bed nuclei of the stria terminalis anterior division +http://purl.obolibrary.org/obo/UBERON_0011173,anterior division of bed nuclei of stria terminalis,"bed nuclei of the stria terminalis, anterior division" +http://purl.obolibrary.org/obo/UBERON_0011173,anterior division of bed nuclei of stria terminalis,bed nuclei of the stria terminals anterior division +http://purl.obolibrary.org/obo/UBERON_0011173,anterior division of bed nuclei of stria terminalis,bed nucleus of the stria terminalis anterior division +http://purl.obolibrary.org/obo/UBERON_0011173,anterior division of bed nuclei of stria terminalis,bed nucleus of the stria terminalis anterior part +http://purl.obolibrary.org/obo/UBERON_0011173,anterior division of bed nuclei of stria terminalis,bed nucleus of thestria terminalis anterior division +http://purl.obolibrary.org/obo/UBERON_0011175,fusiform nucleus of stria terminalis,"bed nuclei of the stria terminalis, anterior division, fusiform nucleus" +http://purl.obolibrary.org/obo/UBERON_0011176,oval nucleus of stria terminalis,"bed nuclei of the stria terminalis, anterior division, oval nucleus" +http://purl.obolibrary.org/obo/UBERON_0011176,oval nucleus of stria terminalis,oval nucleus +http://purl.obolibrary.org/obo/UBERON_0011177,posterior division of bed nuclei of stria terminalis,"bed nuclei of the stria terminalis, posterior division" +http://purl.obolibrary.org/obo/UBERON_0011177,posterior division of bed nuclei of stria terminalis,posterior nuclei of stria terminalis +http://purl.obolibrary.org/obo/UBERON_0011178,principal nucleus of stria terminalis,"bed nuclei of the stria terminalis, posterior division, principal nucleus" +http://purl.obolibrary.org/obo/UBERON_0011179,transverse nucleus of stria terminalis,"bed nuclei of the stria terminalis, posterior division, transverse nucleus" +http://purl.obolibrary.org/obo/UBERON_0011183,corpus spongiosum of penis,corpus cavernosum urethra +http://purl.obolibrary.org/obo/UBERON_0011183,corpus spongiosum of penis,corpus cavernosum urethrae +http://purl.obolibrary.org/obo/UBERON_0011183,corpus spongiosum of penis,corpus spongiosum +http://purl.obolibrary.org/obo/UBERON_0011183,corpus spongiosum of penis,spongiose body of penis +http://purl.obolibrary.org/obo/UBERON_0011184,epithelium of crypt of Lieberkuhn,intestinal crypt epithelium +http://purl.obolibrary.org/obo/UBERON_0011185,gastrointestinal sphincter, +http://purl.obolibrary.org/obo/UBERON_0011186,Krause's gland,Krause gland +http://purl.obolibrary.org/obo/UBERON_0011187,ventral tubercle of humerus,greater tubercle +http://purl.obolibrary.org/obo/UBERON_0011187,ventral tubercle of humerus,greater tubercle of humerus +http://purl.obolibrary.org/obo/UBERON_0011187,ventral tubercle of humerus,greater tuberosity of humerus +http://purl.obolibrary.org/obo/UBERON_0011187,ventral tubercle of humerus,tuberculum majus +http://purl.obolibrary.org/obo/UBERON_0011187,ventral tubercle of humerus,tuberculum majus humeri +http://purl.obolibrary.org/obo/UBERON_0011188,lesser tubercle of humerus,lesser tubercle +http://purl.obolibrary.org/obo/UBERON_0011188,lesser tubercle of humerus,lesser tuberosity of humerus +http://purl.obolibrary.org/obo/UBERON_0011188,lesser tubercle of humerus,tuberculum minus +http://purl.obolibrary.org/obo/UBERON_0011189,lamina propria of large intestine,lamina propria of mucosa of large intestine +http://purl.obolibrary.org/obo/UBERON_0011189,lamina propria of large intestine,large intestinal lamina propria +http://purl.obolibrary.org/obo/UBERON_0011189,lamina propria of large intestine,large intestine lamina propria +http://purl.obolibrary.org/obo/UBERON_0011190,lunule of nail,lunula +http://purl.obolibrary.org/obo/UBERON_0011190,lunule of nail,lunula unguis +http://purl.obolibrary.org/obo/UBERON_0011190,lunule of nail,nail lunule +http://purl.obolibrary.org/obo/UBERON_0011191,ophthalmic vein,opthalmic vein +http://purl.obolibrary.org/obo/UBERON_0011192,superior ophthalmic vein, +http://purl.obolibrary.org/obo/UBERON_0011193,inferior ophthalmic vein, +http://purl.obolibrary.org/obo/UBERON_0011194,ophthalmic plexus,ophthalmic nerve plexus +http://purl.obolibrary.org/obo/UBERON_0011194,ophthalmic plexus,ophthalmic plexus +http://purl.obolibrary.org/obo/UBERON_0011194,ophthalmic plexus,opthalmic plexus +http://purl.obolibrary.org/obo/UBERON_0011194,ophthalmic plexus,plexus ophthalmicus +http://purl.obolibrary.org/obo/UBERON_0011195,inferior parathyroid epithelium,parathyroid III epithelium +http://purl.obolibrary.org/obo/UBERON_0011196,superior parathyroid epithelium, +http://purl.obolibrary.org/obo/UBERON_0011197,parathyroid epithelium, +http://purl.obolibrary.org/obo/UBERON_0011198,muscle layer of large intestine,muscular coat of large intestine +http://purl.obolibrary.org/obo/UBERON_0011198,muscle layer of large intestine,muscular layer of large intestine +http://purl.obolibrary.org/obo/UBERON_0011198,muscle layer of large intestine,muscularis externa of large intestine +http://purl.obolibrary.org/obo/UBERON_0011198,muscle layer of large intestine,tunica muscularis intestini crassi +http://purl.obolibrary.org/obo/UBERON_0011199,prostatic utricle,sinus pocularis +http://purl.obolibrary.org/obo/UBERON_0011199,prostatic utricle,uterus masculinus +http://purl.obolibrary.org/obo/UBERON_0011199,prostatic utricle,utricle of prostate +http://purl.obolibrary.org/obo/UBERON_0011199,prostatic utricle,utriculus of prostate +http://purl.obolibrary.org/obo/UBERON_0011199,prostatic utricle,vagina masculina +http://purl.obolibrary.org/obo/UBERON_0011200,sacrococcygeal symphysis,sacrococcygeal joint +http://purl.obolibrary.org/obo/UBERON_0011201,muscle layer of small intestine,muscular coat of small intestine +http://purl.obolibrary.org/obo/UBERON_0011201,muscle layer of small intestine,muscular layer of small intestine +http://purl.obolibrary.org/obo/UBERON_0011201,muscle layer of small intestine,muscularis externa of small intestine +http://purl.obolibrary.org/obo/UBERON_0011201,muscle layer of small intestine,small intestine muscularis propria +http://purl.obolibrary.org/obo/UBERON_0011201,muscle layer of small intestine,tunica muscularis (intestinum tenue) +http://purl.obolibrary.org/obo/UBERON_0011201,muscle layer of small intestine,tunica muscularis intestini tenuis +http://purl.obolibrary.org/obo/UBERON_0011202,urachus epithelium, +http://purl.obolibrary.org/obo/UBERON_0011203,urachus mesenchyme, +http://purl.obolibrary.org/obo/UBERON_0011204,rectovesical pouch,excavatio rectovesicalis +http://purl.obolibrary.org/obo/UBERON_0011204,rectovesical pouch,recto-vesical pouch +http://purl.obolibrary.org/obo/UBERON_0011204,rectovesical pouch,rectovesical space +http://purl.obolibrary.org/obo/UBERON_0011205,carpometacarpus,carpometacarpus bone +http://purl.obolibrary.org/obo/UBERON_0011206,hinge joint, +http://purl.obolibrary.org/obo/UBERON_0011207,iliocostalis lumborum, +http://purl.obolibrary.org/obo/UBERON_0011208,medial migration pathway NC-derived mesenchyme,medial migration pathway mesenchyme +http://purl.obolibrary.org/obo/UBERON_0011209,lateral migration pathway NC-derived mesenchyme,lateral migration pathway mesenchyme +http://purl.obolibrary.org/obo/UBERON_0011210,migration pathway NC-derived mesenchyme,migration pathway mesenchyme +http://purl.obolibrary.org/obo/UBERON_0011213,root of vagus nerve,rootlet of vagus nerve +http://purl.obolibrary.org/obo/UBERON_0011213,root of vagus nerve,vagal root +http://purl.obolibrary.org/obo/UBERON_0011213,root of vagus nerve,vagus nerve root +http://purl.obolibrary.org/obo/UBERON_0011213,root of vagus nerve,vagus root +http://purl.obolibrary.org/obo/UBERON_0011214,nucleus of midbrain tectum,nucleus of tectum +http://purl.obolibrary.org/obo/UBERON_0011215,central nervous system cell part cluster,cell part cluster of neuraxis +http://purl.obolibrary.org/obo/UBERON_0011215,central nervous system cell part cluster,neuraxis layer +http://purl.obolibrary.org/obo/UBERON_0011216,organ system subdivision, +http://purl.obolibrary.org/obo/UBERON_0011217,serratus dorsalis muscle,serratus dorsalis +http://purl.obolibrary.org/obo/UBERON_0011217,serratus dorsalis muscle,serratus posterior +http://purl.obolibrary.org/obo/UBERON_0011217,serratus dorsalis muscle,serratus posterior muscle +http://purl.obolibrary.org/obo/UBERON_0011218,spinalis cervicis muscle,spinal muscle of neck +http://purl.obolibrary.org/obo/UBERON_0011219,longissimus lumborum muscle,longissimus lumborum +http://purl.obolibrary.org/obo/UBERON_0011220,mastoid process of temporal bone,mastoid process +http://purl.obolibrary.org/obo/UBERON_0011220,mastoid process of temporal bone,mastoid process of skull +http://purl.obolibrary.org/obo/UBERON_0011221,ora serrata of retina,ora serrata +http://purl.obolibrary.org/obo/UBERON_0011221,ora serrata of retina,ora serrata retinae +http://purl.obolibrary.org/obo/UBERON_0011222,intra-ocular muscle,intrinsic muscle of eyeball +http://purl.obolibrary.org/obo/UBERON_0011222,intra-ocular muscle,intrinsic ocular muscle +http://purl.obolibrary.org/obo/UBERON_0011233,synovial membrane of synovial tendon sheath, +http://purl.obolibrary.org/obo/UBERON_0011234,fibrous membrane of synovial tendon sheath, +http://purl.obolibrary.org/obo/UBERON_0011236,deep fascia,fascia profunda +http://purl.obolibrary.org/obo/UBERON_0011237,visceral fascia, +http://purl.obolibrary.org/obo/UBERON_0011238,mesethmoid bone, +http://purl.obolibrary.org/obo/UBERON_0011241,ethmoid region, +http://purl.obolibrary.org/obo/UBERON_0011242,ethmoid cartilage,ethmoid cartilages +http://purl.obolibrary.org/obo/UBERON_0011244,perpendicular plate of ethmoid,lamina perpendicularis (os ethmoidale) +http://purl.obolibrary.org/obo/UBERON_0011244,perpendicular plate of ethmoid,lamina perpendicularis of ethmoid bone +http://purl.obolibrary.org/obo/UBERON_0011245,infra-orbital canal of maxilla,canalis infra-orbitalis +http://purl.obolibrary.org/obo/UBERON_0011245,infra-orbital canal of maxilla,canalis infraorbitalis +http://purl.obolibrary.org/obo/UBERON_0011246,procoracoid bone, +http://purl.obolibrary.org/obo/UBERON_0011247,procoracoid cartilage, +http://purl.obolibrary.org/obo/UBERON_0011248,procoracoid element,procoracoid +http://purl.obolibrary.org/obo/UBERON_0011249,appendicular skeletal system, +http://purl.obolibrary.org/obo/UBERON_0011250,autopod bone, +http://purl.obolibrary.org/obo/UBERON_0011251,levator claviculae muscle,cleidocervicalis +http://purl.obolibrary.org/obo/UBERON_0011251,levator claviculae muscle,cleidocervicalis muscle +http://purl.obolibrary.org/obo/UBERON_0011251,levator claviculae muscle,levator claviculae +http://purl.obolibrary.org/obo/UBERON_0011251,levator claviculae muscle,musculus levator claviculae +http://purl.obolibrary.org/obo/UBERON_0011251,levator claviculae muscle,omocervicalis +http://purl.obolibrary.org/obo/UBERON_0011251,levator claviculae muscle,tracheloacromial muscle +http://purl.obolibrary.org/obo/UBERON_0011252,scent gland, +http://purl.obolibrary.org/obo/UBERON_0011253,gland of anal sac,anal sac gland +http://purl.obolibrary.org/obo/UBERON_0011255,Eimer's organ, +http://purl.obolibrary.org/obo/UBERON_0011256,rhinarium, +http://purl.obolibrary.org/obo/UBERON_0011263,femoral gland, +http://purl.obolibrary.org/obo/UBERON_0011264,femoral pore, +http://purl.obolibrary.org/obo/UBERON_0011265,carpometacarpal joint of digit 1,carpometacarpal joint of digit I +http://purl.obolibrary.org/obo/UBERON_0011265,carpometacarpal joint of digit 1,carpometacarpal joint of pollex +http://purl.obolibrary.org/obo/UBERON_0011265,carpometacarpal joint of digit 1,carpometacarpal joint of thumb +http://purl.obolibrary.org/obo/UBERON_0011267,quadratojugal bone,quadratojugal +http://purl.obolibrary.org/obo/UBERON_0011268,sublingua, +http://purl.obolibrary.org/obo/UBERON_0011270,dorsal trunk,back of trunk +http://purl.obolibrary.org/obo/UBERON_0011270,dorsal trunk,dorsal part of trunk +http://purl.obolibrary.org/obo/UBERON_0011270,dorsal trunk,dorsum of trunk +http://purl.obolibrary.org/obo/UBERON_0011270,dorsal trunk,trunk back +http://purl.obolibrary.org/obo/UBERON_0011271,caudal-sacral region of vertebral column,caudal-sacral vertebrae series +http://purl.obolibrary.org/obo/UBERON_0011272,embryonic skin basal layer, +http://purl.obolibrary.org/obo/UBERON_0011273,nail of manual digit 1,claw of digit 1 of fore-paw +http://purl.obolibrary.org/obo/UBERON_0011273,nail of manual digit 1,nail of manual digit I +http://purl.obolibrary.org/obo/UBERON_0011273,nail of manual digit 1,nail of thumb +http://purl.obolibrary.org/obo/UBERON_0011273,nail of manual digit 1,nail plate of thumb +http://purl.obolibrary.org/obo/UBERON_0011273,nail of manual digit 1,thumb nail +http://purl.obolibrary.org/obo/UBERON_0011274,nail of manual digit 2,claw of digit 2 of fore-paw +http://purl.obolibrary.org/obo/UBERON_0011274,nail of manual digit 2,index finger nail +http://purl.obolibrary.org/obo/UBERON_0011274,nail of manual digit 2,nail of index finger +http://purl.obolibrary.org/obo/UBERON_0011274,nail of manual digit 2,nail of manual digit II +http://purl.obolibrary.org/obo/UBERON_0011274,nail of manual digit 2,nail of second finger +http://purl.obolibrary.org/obo/UBERON_0011274,nail of manual digit 2,nail plate of index finger +http://purl.obolibrary.org/obo/UBERON_0011275,nail of manual digit 3,claw of digit 3 of fore-paw +http://purl.obolibrary.org/obo/UBERON_0011275,nail of manual digit 3,middle finger nail +http://purl.obolibrary.org/obo/UBERON_0011275,nail of manual digit 3,nail of manual digit III +http://purl.obolibrary.org/obo/UBERON_0011275,nail of manual digit 3,nail of middle finger +http://purl.obolibrary.org/obo/UBERON_0011275,nail of manual digit 3,nail of third finger +http://purl.obolibrary.org/obo/UBERON_0011275,nail of manual digit 3,nail plate of middle finger +http://purl.obolibrary.org/obo/UBERON_0011276,nail of manual digit 4,claw of digit 4 of fore-paw +http://purl.obolibrary.org/obo/UBERON_0011276,nail of manual digit 4,nail of fourth finger +http://purl.obolibrary.org/obo/UBERON_0011276,nail of manual digit 4,nail of manual digit IV +http://purl.obolibrary.org/obo/UBERON_0011276,nail of manual digit 4,nail of ring finger +http://purl.obolibrary.org/obo/UBERON_0011276,nail of manual digit 4,nail plate of ring finger +http://purl.obolibrary.org/obo/UBERON_0011276,nail of manual digit 4,ring finger nail +http://purl.obolibrary.org/obo/UBERON_0011277,nail of manual digit 5,claw of digit 5 of fore-paw +http://purl.obolibrary.org/obo/UBERON_0011277,nail of manual digit 5,little finger nail +http://purl.obolibrary.org/obo/UBERON_0011277,nail of manual digit 5,nail of fifth finger +http://purl.obolibrary.org/obo/UBERON_0011277,nail of manual digit 5,nail of manual digit V +http://purl.obolibrary.org/obo/UBERON_0011277,nail of manual digit 5,nail plate of little finger +http://purl.obolibrary.org/obo/UBERON_0011278,nail of pedal digit 1,big toe nail +http://purl.obolibrary.org/obo/UBERON_0011278,nail of pedal digit 1,claw of digit 1 of hind-paw +http://purl.obolibrary.org/obo/UBERON_0011278,nail of pedal digit 1,nail of big toe +http://purl.obolibrary.org/obo/UBERON_0011278,nail of pedal digit 1,nail of great toe +http://purl.obolibrary.org/obo/UBERON_0011278,nail of pedal digit 1,nail of pedal digit I +http://purl.obolibrary.org/obo/UBERON_0011278,nail of pedal digit 1,nail plate of big toe +http://purl.obolibrary.org/obo/UBERON_0011279,nail of pedal digit 2,claw of digit 2 of hind-paw +http://purl.obolibrary.org/obo/UBERON_0011279,nail of pedal digit 2,nail of pedal digit II +http://purl.obolibrary.org/obo/UBERON_0011279,nail of pedal digit 2,nail of second toe +http://purl.obolibrary.org/obo/UBERON_0011279,nail of pedal digit 2,nail plate of second toe +http://purl.obolibrary.org/obo/UBERON_0011279,nail of pedal digit 2,second toe nail +http://purl.obolibrary.org/obo/UBERON_0011280,nail of pedal digit 3,claw of digit 3 of hind-paw +http://purl.obolibrary.org/obo/UBERON_0011280,nail of pedal digit 3,nail of pedal digit III +http://purl.obolibrary.org/obo/UBERON_0011280,nail of pedal digit 3,nail of third toe +http://purl.obolibrary.org/obo/UBERON_0011280,nail of pedal digit 3,nail plate of third toe +http://purl.obolibrary.org/obo/UBERON_0011280,nail of pedal digit 3,third toe nail +http://purl.obolibrary.org/obo/UBERON_0011281,nail of pedal digit 4,claw of digit 4 of hind-paw +http://purl.obolibrary.org/obo/UBERON_0011281,nail of pedal digit 4,fourth toe nail +http://purl.obolibrary.org/obo/UBERON_0011281,nail of pedal digit 4,nail of fourth toe +http://purl.obolibrary.org/obo/UBERON_0011281,nail of pedal digit 4,nail of pedal digit IV +http://purl.obolibrary.org/obo/UBERON_0011281,nail of pedal digit 4,nail plate of fourth toe +http://purl.obolibrary.org/obo/UBERON_0011282,nail of pedal digit 5,claw of digit 5 of hind-paw +http://purl.obolibrary.org/obo/UBERON_0011282,nail of pedal digit 5,little toe nail +http://purl.obolibrary.org/obo/UBERON_0011282,nail of pedal digit 5,nail of fifth toe +http://purl.obolibrary.org/obo/UBERON_0011282,nail of pedal digit 5,nail of little toe +http://purl.obolibrary.org/obo/UBERON_0011282,nail of pedal digit 5,nail of pedal digit V +http://purl.obolibrary.org/obo/UBERON_0011282,nail of pedal digit 5,nail plate of little toe +http://purl.obolibrary.org/obo/UBERON_0011283,epoophoron,organ of Rosenmuller +http://purl.obolibrary.org/obo/UBERON_0011287,rostral organ, +http://purl.obolibrary.org/obo/UBERON_0011288,stomochord, +http://purl.obolibrary.org/obo/UBERON_0011289,pharyngobasilar fascia,pharyngeal aponeurosis +http://purl.obolibrary.org/obo/UBERON_0011298,submucosa of uterine tube,submucosa of fallopian tube +http://purl.obolibrary.org/obo/UBERON_0011298,submucosa of uterine tube,tela submucosa tubae uterinae +http://purl.obolibrary.org/obo/UBERON_0011299,white matter of telencephalon,predominantly white regional part of telencephalon +http://purl.obolibrary.org/obo/UBERON_0011299,white matter of telencephalon,telencephalic tract/commissure +http://purl.obolibrary.org/obo/UBERON_0011299,white matter of telencephalon,telencephalic tracts +http://purl.obolibrary.org/obo/UBERON_0011299,white matter of telencephalon,telencephalic white matter +http://purl.obolibrary.org/obo/UBERON_0011300,gray matter of telencephalon,predominantly gray regional part of telencephalon +http://purl.obolibrary.org/obo/UBERON_0011301,manubrium sternum pre-cartilage condensation,manubrium sterni pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0011302,tunicate tunic, +http://purl.obolibrary.org/obo/UBERON_0011303,lamprey sucker, +http://purl.obolibrary.org/obo/UBERON_0011304,tunicate postabdomen, +http://purl.obolibrary.org/obo/UBERON_0011305,superficial part of temporalis,anterior temporal +http://purl.obolibrary.org/obo/UBERON_0011305,superficial part of temporalis,temporal muscle anterolateral part +http://purl.obolibrary.org/obo/UBERON_0011305,superficial part of temporalis,temporales +http://purl.obolibrary.org/obo/UBERON_0011305,superficial part of temporalis,temporalis anterior head +http://purl.obolibrary.org/obo/UBERON_0011305,superficial part of temporalis,temporalis pars anterior +http://purl.obolibrary.org/obo/UBERON_0011305,superficial part of temporalis,temporalis pars superficialis +http://purl.obolibrary.org/obo/UBERON_0011306,deep part of temporalis,medial temporal +http://purl.obolibrary.org/obo/UBERON_0011306,deep part of temporalis,posterior temporal +http://purl.obolibrary.org/obo/UBERON_0011306,deep part of temporalis,temporal muscle posterior part +http://purl.obolibrary.org/obo/UBERON_0011306,deep part of temporalis,temporalis bbHauptmassebb +http://purl.obolibrary.org/obo/UBERON_0011306,deep part of temporalis,temporalis lamina profunda +http://purl.obolibrary.org/obo/UBERON_0011306,deep part of temporalis,temporalis pars posterior +http://purl.obolibrary.org/obo/UBERON_0011306,deep part of temporalis,temporalis pars profunda +http://purl.obolibrary.org/obo/UBERON_0011306,deep part of temporalis,temporalis posterior head +http://purl.obolibrary.org/obo/UBERON_0011307,suprazygomatic part of temporalis,temporalis pars suprazygomatica +http://purl.obolibrary.org/obo/UBERON_0011307,suprazygomatic part of temporalis,zygomatic temporalis +http://purl.obolibrary.org/obo/UBERON_0011308,pars reflexa of masseter,"masseter, pars reflexa" +http://purl.obolibrary.org/obo/UBERON_0011309,body of mandible,corpus mandibulae +http://purl.obolibrary.org/obo/UBERON_0011309,body of mandible,mandibular body +http://purl.obolibrary.org/obo/UBERON_0011310,masseteric fossa, +http://purl.obolibrary.org/obo/UBERON_0011311,hyoepiglottic ligament,hyo-epiglottic ligament +http://purl.obolibrary.org/obo/UBERON_0011311,hyoepiglottic ligament,igamentum hyoepiglotticum +http://purl.obolibrary.org/obo/UBERON_0011312,hyoepiglottic muscle,hyo-epiglottic muscle +http://purl.obolibrary.org/obo/UBERON_0011312,hyoepiglottic muscle,hyoepiglotticus +http://purl.obolibrary.org/obo/UBERON_0011312,hyoepiglottic muscle,hyoepiglottus +http://purl.obolibrary.org/obo/UBERON_0011313,posterior subdivision of masseter,"masseter, posterior" +http://purl.obolibrary.org/obo/UBERON_0011314,anterior subdivision of masseter,"masseter, anterior" +http://purl.obolibrary.org/obo/UBERON_0011315,digastric branch of facial nerve,digastric branch of facial nerve (CN VII) +http://purl.obolibrary.org/obo/UBERON_0011315,digastric branch of facial nerve,"facial nerve, digastric branch" +http://purl.obolibrary.org/obo/UBERON_0011315,digastric branch of facial nerve,nerve to posterior belly of digastric +http://purl.obolibrary.org/obo/UBERON_0011315,digastric branch of facial nerve,ramus digastricus (nervus facialis) +http://purl.obolibrary.org/obo/UBERON_0011315,digastric branch of facial nerve,ramus digastricus nervus facialis +http://purl.obolibrary.org/obo/UBERON_0011316,nerve to stylohyoid from facial nerve,facial nerve stylohyoid branch +http://purl.obolibrary.org/obo/UBERON_0011316,nerve to stylohyoid from facial nerve,nerve to stylohyoid +http://purl.obolibrary.org/obo/UBERON_0011316,nerve to stylohyoid from facial nerve,ramus stylohyoideus +http://purl.obolibrary.org/obo/UBERON_0011316,nerve to stylohyoid from facial nerve,ramus stylohyoideus nervus facialis +http://purl.obolibrary.org/obo/UBERON_0011316,nerve to stylohyoid from facial nerve,stylodigastric nerve +http://purl.obolibrary.org/obo/UBERON_0011316,nerve to stylohyoid from facial nerve,stylohyoid branch of facial nerve +http://purl.obolibrary.org/obo/UBERON_0011317,nerve to stylopharyngeus from glossopharyngeal nerve,branch of glossopharyngeal nerve to stylopharyngeus +http://purl.obolibrary.org/obo/UBERON_0011317,nerve to stylopharyngeus from glossopharyngeal nerve,nerve to stylopharyngeus +http://purl.obolibrary.org/obo/UBERON_0011317,nerve to stylopharyngeus from glossopharyngeal nerve,ramus musculi stylopharyngei nervus glossopharyngei +http://purl.obolibrary.org/obo/UBERON_0011317,nerve to stylopharyngeus from glossopharyngeal nerve,stylopharyngeal branch of glossopharyngeal nerve +http://purl.obolibrary.org/obo/UBERON_0011318,capsule of temporomandibular joint,articular capsule of temporomandibular joint +http://purl.obolibrary.org/obo/UBERON_0011318,capsule of temporomandibular joint,capsula articularis articulationis temporomandibularis +http://purl.obolibrary.org/obo/UBERON_0011319,disk of temporomandibular joint,articular disc of temporomandibular joint +http://purl.obolibrary.org/obo/UBERON_0011319,disk of temporomandibular joint,articular disk of temporomandibular joint +http://purl.obolibrary.org/obo/UBERON_0011319,disk of temporomandibular joint,discus articularis (articulatio temporomandibularis) +http://purl.obolibrary.org/obo/UBERON_0011319,disk of temporomandibular joint,discus articularis articulationis temporomandibularis +http://purl.obolibrary.org/obo/UBERON_0011319,disk of temporomandibular joint,temporomandibular articular disk +http://purl.obolibrary.org/obo/UBERON_0011320,ligament of temporomandibular joint,temporomandibular joint ligament +http://purl.obolibrary.org/obo/UBERON_0011321,masseteric nerve,nervus massetericus +http://purl.obolibrary.org/obo/UBERON_0011322,mylohyoid nerve,branch of inferior alveolar nerve to mylohyoid +http://purl.obolibrary.org/obo/UBERON_0011322,mylohyoid nerve,mylodigastric nerve +http://purl.obolibrary.org/obo/UBERON_0011322,mylohyoid nerve,mylohyoid branch of inferior alveolar nerve +http://purl.obolibrary.org/obo/UBERON_0011322,mylohyoid nerve,nerve to mylohyoid +http://purl.obolibrary.org/obo/UBERON_0011322,mylohyoid nerve,nervus mylohyoideus +http://purl.obolibrary.org/obo/UBERON_0011325,pharyngeal nerve plexus,pharyngeal nerve plexus +http://purl.obolibrary.org/obo/UBERON_0011325,pharyngeal nerve plexus,pharyngeal plexus of vagus nerve +http://purl.obolibrary.org/obo/UBERON_0011325,pharyngeal nerve plexus,plexus pharyngeus nervi vagi +http://purl.obolibrary.org/obo/UBERON_0011325,pharyngeal nerve plexus,vagus nerve pharyngeal plexus +http://purl.obolibrary.org/obo/UBERON_0011326,superior laryngeal nerve,nervus laryngealis superior +http://purl.obolibrary.org/obo/UBERON_0011326,superior laryngeal nerve,nervus laryngeus superior +http://purl.obolibrary.org/obo/UBERON_0011326,superior laryngeal nerve,superior laryngeal branch of inferior vagal ganglion +http://purl.obolibrary.org/obo/UBERON_0011326,superior laryngeal nerve,superior laryngeal branch of vagus +http://purl.obolibrary.org/obo/UBERON_0011327,deep temporal nerve,nervi temporales profundi +http://purl.obolibrary.org/obo/UBERON_0011332,extrinsic tongue pre-muscle mass, +http://purl.obolibrary.org/obo/UBERON_0011342,surface of mandible,mandibular surface +http://purl.obolibrary.org/obo/UBERON_0011343,medial surface of mandible,medial surface of ramus of mandible +http://purl.obolibrary.org/obo/UBERON_0011344,lateral surface of mandible,lateral surface of ramus of mandible +http://purl.obolibrary.org/obo/UBERON_0011345,pharyngeal raphe,raphe pharyngis +http://purl.obolibrary.org/obo/UBERON_0011346,palatine raphe,raphe palati +http://purl.obolibrary.org/obo/UBERON_0011347,raphe of hard palate, +http://purl.obolibrary.org/obo/UBERON_0011348,raphe of soft palate, +http://purl.obolibrary.org/obo/UBERON_0011349,pterygomandibular raphe, +http://purl.obolibrary.org/obo/UBERON_0011350,mylohyoid raphe, +http://purl.obolibrary.org/obo/UBERON_0011357,Reissner's fiber,Reissner's fibre +http://purl.obolibrary.org/obo/UBERON_0011358,infundibular organ,infundibular organ of Boeke +http://purl.obolibrary.org/obo/UBERON_0011358,infundibular organ,ventral infundibular organ +http://purl.obolibrary.org/obo/UBERON_0011359,urophysis, +http://purl.obolibrary.org/obo/UBERON_0011360,ampulla caudalis, +http://purl.obolibrary.org/obo/UBERON_0011362,cranial blood vasculature,cranial blood vessel +http://purl.obolibrary.org/obo/UBERON_0011362,cranial blood vasculature,set of blood vessels of head +http://purl.obolibrary.org/obo/UBERON_0011363,cranial lymph vasculature,cranial lymph vessel +http://purl.obolibrary.org/obo/UBERON_0011363,cranial lymph vasculature,cranial lymphatics +http://purl.obolibrary.org/obo/UBERON_0011363,cranial lymph vasculature,set of lymphatic vessels of head +http://purl.obolibrary.org/obo/UBERON_0011364,cleidocephalicus muscle,cleidocephalic +http://purl.obolibrary.org/obo/UBERON_0011364,cleidocephalicus muscle,cleidocephalic muscle +http://purl.obolibrary.org/obo/UBERON_0011364,cleidocephalicus muscle,cleidocephalicus +http://purl.obolibrary.org/obo/UBERON_0011366,cleidobrachialis muscle,cleidobrachial +http://purl.obolibrary.org/obo/UBERON_0011366,cleidobrachialis muscle,cleidobrachial muscle +http://purl.obolibrary.org/obo/UBERON_0011366,cleidobrachialis muscle,cleidobrachialis +http://purl.obolibrary.org/obo/UBERON_0011368,brachiocephalic muscle, +http://purl.obolibrary.org/obo/UBERON_0011369,omotransversarius muscle,omotransverse +http://purl.obolibrary.org/obo/UBERON_0011369,omotransversarius muscle,omotransverse muscle +http://purl.obolibrary.org/obo/UBERON_0011370,transverse process of atlas, +http://purl.obolibrary.org/obo/UBERON_0011371,sternocephalicus muscle,sternocephalicus +http://purl.obolibrary.org/obo/UBERON_0011374,prepuce, +http://purl.obolibrary.org/obo/UBERON_0011375,skin of prepuce of clitoris,preputial skin of clitoris +http://purl.obolibrary.org/obo/UBERON_0011376,iliothoracic muscle,iliothoracic +http://purl.obolibrary.org/obo/UBERON_0011377,femorothoracic muscle,femorothoracic +http://purl.obolibrary.org/obo/UBERON_0011379,male external urethral sphincter,external urethral sphincter of male urethra +http://purl.obolibrary.org/obo/UBERON_0011379,male external urethral sphincter,male sphincter urethrae +http://purl.obolibrary.org/obo/UBERON_0011379,male external urethral sphincter,male sphincter urethrae muscle +http://purl.obolibrary.org/obo/UBERON_0011379,male external urethral sphincter,male urethral sphincter muscle +http://purl.obolibrary.org/obo/UBERON_0011379,male external urethral sphincter,musculus sphincter urethrae externus (urethra masculina) +http://purl.obolibrary.org/obo/UBERON_0011379,male external urethral sphincter,musculus sphincter urethrae externus urethrae masculinae +http://purl.obolibrary.org/obo/UBERON_0011379,male external urethral sphincter,musculus sphincter urethrae membranaceae +http://purl.obolibrary.org/obo/UBERON_0011380,female external urethral sphincter,external urethral sphincter of female urethra +http://purl.obolibrary.org/obo/UBERON_0011380,female external urethral sphincter,musculus sphincter urethrae externus (urethra feminina) +http://purl.obolibrary.org/obo/UBERON_0011380,female external urethral sphincter,musculus sphincter urethrae externus urethrae femininae +http://purl.obolibrary.org/obo/UBERON_0011380,female external urethral sphincter,outer muscle layer of female urethra +http://purl.obolibrary.org/obo/UBERON_0011380,female external urethral sphincter,rhabdosphincter of female urethra +http://purl.obolibrary.org/obo/UBERON_0011380,female external urethral sphincter,striated muscle layer of female urethra +http://purl.obolibrary.org/obo/UBERON_0011383,inferior pancreaticoduodenal vein,inferior pancreatico-duodenal vein +http://purl.obolibrary.org/obo/UBERON_0011384,superior pancreaticoduodenal vein,superior pancreatico-duodenal vein +http://purl.obolibrary.org/obo/UBERON_0011384,superior pancreaticoduodenal vein,vena pancreaticoduodenalis superior +http://purl.obolibrary.org/obo/UBERON_0011385,parotidoauricular muscle,parotidoauricular +http://purl.obolibrary.org/obo/UBERON_0011385,parotidoauricular muscle,parotidoauricularis +http://purl.obolibrary.org/obo/UBERON_0011386,facial modiolus,modiolus anguli oris +http://purl.obolibrary.org/obo/UBERON_0011387,constrictor vulvae muscle,constrictor vulvae +http://purl.obolibrary.org/obo/UBERON_0011388,male bulbospongiosus muscle,bulbospongiosus of male +http://purl.obolibrary.org/obo/UBERON_0011388,male bulbospongiosus muscle,male bulbospongiosus +http://purl.obolibrary.org/obo/UBERON_0011389,bulbospongiosus muscle,bulbospongiosus +http://purl.obolibrary.org/obo/UBERON_0011389,bulbospongiosus muscle,musculus bulbospongiosus +http://purl.obolibrary.org/obo/UBERON_0011390,pudendal nerve,internal pudendal nerve +http://purl.obolibrary.org/obo/UBERON_0011390,pudendal nerve,nervus pudendae +http://purl.obolibrary.org/obo/UBERON_0011390,pudendal nerve,nervus pudendales +http://purl.obolibrary.org/obo/UBERON_0011390,pudendal nerve,pudenal nerve +http://purl.obolibrary.org/obo/UBERON_0011390,pudendal nerve,pudendal +http://purl.obolibrary.org/obo/UBERON_0011391,perineal nerve,perineal branch of pudendal nerve +http://purl.obolibrary.org/obo/UBERON_0011392,blood vessel internal elastic membrane,inner elastic lamina +http://purl.obolibrary.org/obo/UBERON_0011392,blood vessel internal elastic membrane,internal elastic lamina +http://purl.obolibrary.org/obo/UBERON_0011392,blood vessel internal elastic membrane,internal elastic membrane +http://purl.obolibrary.org/obo/UBERON_0011415,cutaneous trunci muscle,cutaneous trunci +http://purl.obolibrary.org/obo/UBERON_0011464,levator nasolabialis muscle,levator nasolabialis +http://purl.obolibrary.org/obo/UBERON_0011465,longissimus atlantis muscle,longissimus atlantis +http://purl.obolibrary.org/obo/UBERON_0011472,ventral lateral sacrocaudal muscle,lumbosacrocaudalis +http://purl.obolibrary.org/obo/UBERON_0011472,ventral lateral sacrocaudal muscle,lumbosacrocaudalis muscle +http://purl.obolibrary.org/obo/UBERON_0011472,ventral lateral sacrocaudal muscle,ventral lateral sacrocaudal +http://purl.obolibrary.org/obo/UBERON_0011495,rectus thoracis muscle,rectus thoracis +http://purl.obolibrary.org/obo/UBERON_0011508,sphincter colli superficialis muscle,M. sphincter colli superficialis +http://purl.obolibrary.org/obo/UBERON_0011508,sphincter colli superficialis muscle,sphincter colli superficialis +http://purl.obolibrary.org/obo/UBERON_0011509,sphincter colli profundus muscle,M. sphincter colli profundus +http://purl.obolibrary.org/obo/UBERON_0011509,sphincter colli profundus muscle,sphincter colli profundus +http://purl.obolibrary.org/obo/UBERON_0011510,cloacal bursa, +http://purl.obolibrary.org/obo/UBERON_0011511,iliococcygeus muscle,iliococcygeus +http://purl.obolibrary.org/obo/UBERON_0011511,iliococcygeus muscle,musculus iliococcygeus +http://purl.obolibrary.org/obo/UBERON_0011512,puborectalis muscle,puborectalis +http://purl.obolibrary.org/obo/UBERON_0011528,pubococcygeus muscle,levator prostatae +http://purl.obolibrary.org/obo/UBERON_0011528,pubococcygeus muscle,musculus pubococcygeus +http://purl.obolibrary.org/obo/UBERON_0011528,pubococcygeus muscle,musculus pubovaginalis +http://purl.obolibrary.org/obo/UBERON_0011531,male pubococcygeus muscle,levator prostate +http://purl.obolibrary.org/obo/UBERON_0011531,male pubococcygeus muscle,levator prostate muscle +http://purl.obolibrary.org/obo/UBERON_0011531,male pubococcygeus muscle,musculus levator prostatae +http://purl.obolibrary.org/obo/UBERON_0011532,female pubococcygeus muscle,pubovaginalis +http://purl.obolibrary.org/obo/UBERON_0011532,female pubococcygeus muscle,pubovaginalis muscle +http://purl.obolibrary.org/obo/UBERON_0011533,"abductor pollicis, radioulna-prepollox", +http://purl.obolibrary.org/obo/UBERON_0011534,abductor pollicis muscle, +http://purl.obolibrary.org/obo/UBERON_0011535,chondroglossus muscle,chondroglossal +http://purl.obolibrary.org/obo/UBERON_0011535,chondroglossus muscle,chondroglossus +http://purl.obolibrary.org/obo/UBERON_0011564,adductor pollicis muscle of prepollex, +http://purl.obolibrary.org/obo/UBERON_0011565,lumen of gastrointestinal system,cavity of digestive tract +http://purl.obolibrary.org/obo/UBERON_0011565,lumen of gastrointestinal system,cavity of gastrointestinal tract +http://purl.obolibrary.org/obo/UBERON_0011565,lumen of gastrointestinal system,gastrointestinal tract lumen +http://purl.obolibrary.org/obo/UBERON_0011565,lumen of gastrointestinal system,lumen of gastrointestinal tract +http://purl.obolibrary.org/obo/UBERON_0011566,lumen of esophagus,cavity of eosophagus +http://purl.obolibrary.org/obo/UBERON_0011566,lumen of esophagus,cavity of esophagus +http://purl.obolibrary.org/obo/UBERON_0011566,lumen of esophagus,eosophageal cavity +http://purl.obolibrary.org/obo/UBERON_0011566,lumen of esophagus,eosophageal lumen +http://purl.obolibrary.org/obo/UBERON_0011566,lumen of esophagus,eosophagus lumen +http://purl.obolibrary.org/obo/UBERON_0011566,lumen of esophagus,esophageal cavity +http://purl.obolibrary.org/obo/UBERON_0011566,lumen of esophagus,esophageal lumen +http://purl.obolibrary.org/obo/UBERON_0011566,lumen of esophagus,esophagus lumen +http://purl.obolibrary.org/obo/UBERON_0011574,mesonephric duct lumen,nephric duct lumen +http://purl.obolibrary.org/obo/UBERON_0011575,styloid process of ulna,processus styloideus ulnae +http://purl.obolibrary.org/obo/UBERON_0011575,styloid process of ulna,ulnar styloid process +http://purl.obolibrary.org/obo/UBERON_0011576,supraorbital ridge,margo supraorbitalis +http://purl.obolibrary.org/obo/UBERON_0011576,supraorbital ridge,superior orbital rim +http://purl.obolibrary.org/obo/UBERON_0011576,supraorbital ridge,supra-orbital margin +http://purl.obolibrary.org/obo/UBERON_0011576,supraorbital ridge,supra-orbital ridge +http://purl.obolibrary.org/obo/UBERON_0011576,supraorbital ridge,supraorbital margin +http://purl.obolibrary.org/obo/UBERON_0011577,flexural organ, +http://purl.obolibrary.org/obo/UBERON_0011579,venom gland, +http://purl.obolibrary.org/obo/UBERON_0011580,platypus crural gland, +http://purl.obolibrary.org/obo/UBERON_0011581,platypus calcaneus spur, +http://purl.obolibrary.org/obo/UBERON_0011582,paired limb/fin skeleton,limb/fin skeleton +http://purl.obolibrary.org/obo/UBERON_0011582,paired limb/fin skeleton,skeletal parts of limb/fin +http://purl.obolibrary.org/obo/UBERON_0011582,paired limb/fin skeleton,skeleton of limb/fin +http://purl.obolibrary.org/obo/UBERON_0011583,stylopodial skeleton,stylopodium skeleton +http://purl.obolibrary.org/obo/UBERON_0011584,zeugopodial skeleton,epipodial skeleton +http://purl.obolibrary.org/obo/UBERON_0011584,zeugopodial skeleton,skeleton of zeugopod +http://purl.obolibrary.org/obo/UBERON_0011584,zeugopodial skeleton,zeugopod skeleton +http://purl.obolibrary.org/obo/UBERON_0011585,cell condensation, +http://purl.obolibrary.org/obo/UBERON_0011587,pre-dentine,pre-dentine tissue +http://purl.obolibrary.org/obo/UBERON_0011587,pre-dentine,predentin +http://purl.obolibrary.org/obo/UBERON_0011587,pre-dentine,predentine tissue +http://purl.obolibrary.org/obo/UBERON_0011588,pre-enamel,pre-enamel tissue +http://purl.obolibrary.org/obo/UBERON_0011588,pre-enamel,preenamel tissue +http://purl.obolibrary.org/obo/UBERON_0011589,non-mineralized cartilage tissue, +http://purl.obolibrary.org/obo/UBERON_0011590,commissure of diencephalon,diencephalon commissure +http://purl.obolibrary.org/obo/UBERON_0011591,tract of diencephalon,diencephalon tract +http://purl.obolibrary.org/obo/UBERON_0011592,future upper lip,upper jaw future lip +http://purl.obolibrary.org/obo/UBERON_0011593,maxillary tooth,maxillary teeth +http://purl.obolibrary.org/obo/UBERON_0011594,dentary tooth, +http://purl.obolibrary.org/obo/UBERON_0011595,jaw region, +http://purl.obolibrary.org/obo/UBERON_0011596,future lower lip,lower jaw future lip +http://purl.obolibrary.org/obo/UBERON_0011597,bone of upper jaw,upper jaw bone +http://purl.obolibrary.org/obo/UBERON_0011598,coronoid bone, +http://purl.obolibrary.org/obo/UBERON_0011599,lenticular process of incus bone,incus crus longum +http://purl.obolibrary.org/obo/UBERON_0011599,lenticular process of incus bone,lenticular process of incus +http://purl.obolibrary.org/obo/UBERON_0011599,lenticular process of incus bone,processus lenticularis (incus) +http://purl.obolibrary.org/obo/UBERON_0011599,lenticular process of incus bone,processus lenticularis incudis +http://purl.obolibrary.org/obo/UBERON_0011601,gingiva of upper jaw,gum of maxilla +http://purl.obolibrary.org/obo/UBERON_0011601,gingiva of upper jaw,gum of upper jaw +http://purl.obolibrary.org/obo/UBERON_0011601,gingiva of upper jaw,upper gingiva +http://purl.obolibrary.org/obo/UBERON_0011601,gingiva of upper jaw,upper jaw gingiva +http://purl.obolibrary.org/obo/UBERON_0011602,gingiva of lower jaw,gum of lower jaw +http://purl.obolibrary.org/obo/UBERON_0011602,gingiva of lower jaw,gum of mandible +http://purl.obolibrary.org/obo/UBERON_0011602,gingiva of lower jaw,lower gingiva +http://purl.obolibrary.org/obo/UBERON_0011602,gingiva of lower jaw,lower jaw gingiva +http://purl.obolibrary.org/obo/UBERON_0011603,coronoid tooth,coronoid teeth +http://purl.obolibrary.org/obo/UBERON_0011604,carina of sternum, +http://purl.obolibrary.org/obo/UBERON_0011605,supracoracoideus muscle of wing, +http://purl.obolibrary.org/obo/UBERON_0011606,hyomandibular bone, +http://purl.obolibrary.org/obo/UBERON_0011607,hyomandibular cartilage,hyosymplectic cartilage +http://purl.obolibrary.org/obo/UBERON_0011607,hyomandibular cartilage,symplectic cartilage +http://purl.obolibrary.org/obo/UBERON_0011608,hyomandibular element,hyomandibula - stapes +http://purl.obolibrary.org/obo/UBERON_0011608,hyomandibular element,hyomandibula element +http://purl.obolibrary.org/obo/UBERON_0011609,ceratohyal element, +http://purl.obolibrary.org/obo/UBERON_0011610,ceratohyal cartilage, +http://purl.obolibrary.org/obo/UBERON_0011611,ceratohyal bone,anterior ceratohyal +http://purl.obolibrary.org/obo/UBERON_0011611,ceratohyal bone,anterohyal +http://purl.obolibrary.org/obo/UBERON_0011611,ceratohyal bone,ceratohyal +http://purl.obolibrary.org/obo/UBERON_0011611,ceratohyal bone,ceratohyal anterior +http://purl.obolibrary.org/obo/UBERON_0011611,ceratohyal bone,ceratohyal bone +http://purl.obolibrary.org/obo/UBERON_0011611,ceratohyal bone,ceratohyoid bone +http://purl.obolibrary.org/obo/UBERON_0011611,ceratohyal bone,distal ceratohyal +http://purl.obolibrary.org/obo/UBERON_0011611,ceratohyal bone,rostral ceratohyal +http://purl.obolibrary.org/obo/UBERON_0011612,hypohyal cartilage, +http://purl.obolibrary.org/obo/UBERON_0011613,hypohyal element, +http://purl.obolibrary.org/obo/UBERON_0011614,basihyal element, +http://purl.obolibrary.org/obo/UBERON_0011615,basihyal cartilage, +http://purl.obolibrary.org/obo/UBERON_0011618,basihyal bone,basihyoid +http://purl.obolibrary.org/obo/UBERON_0011618,basihyal bone,glossohyal +http://purl.obolibrary.org/obo/UBERON_0011619,stylohyoid bone, +http://purl.obolibrary.org/obo/UBERON_0011620,basihyal lingual process,lingual process of basihyoid +http://purl.obolibrary.org/obo/UBERON_0011620,basihyal lingual process,lingual process of basihyoid bone +http://purl.obolibrary.org/obo/UBERON_0011621,thyrohyoid cartilage, +http://purl.obolibrary.org/obo/UBERON_0011622,thyrohyoid bone, +http://purl.obolibrary.org/obo/UBERON_0011623,horn of thyroid cartilage,cornu of thyroid cartilage +http://purl.obolibrary.org/obo/UBERON_0011623,horn of thyroid cartilage,thyroid cartilage horn +http://purl.obolibrary.org/obo/UBERON_0011624,superior horn of thyroid cartilage,cornu superius (cartilago thyroidea) +http://purl.obolibrary.org/obo/UBERON_0011624,superior horn of thyroid cartilage,cornu superius cartilaginis thyroideae +http://purl.obolibrary.org/obo/UBERON_0011624,superior horn of thyroid cartilage,superior cornu of thyroid cartilage +http://purl.obolibrary.org/obo/UBERON_0011625,inferior horn of thyroid cartilage,cornu inferius (cartilago thyroidea) +http://purl.obolibrary.org/obo/UBERON_0011625,inferior horn of thyroid cartilage,cornu inferius cartilaginis thyroidea +http://purl.obolibrary.org/obo/UBERON_0011625,inferior horn of thyroid cartilage,cornu inferius cartilaginis thyroideae +http://purl.obolibrary.org/obo/UBERON_0011626,tympanohyoid cartilage, +http://purl.obolibrary.org/obo/UBERON_0011627,orbital part of frontal bone,pars orbitalis (os frontale) +http://purl.obolibrary.org/obo/UBERON_0011627,orbital part of frontal bone,pars orbitalis ossis frontalis +http://purl.obolibrary.org/obo/UBERON_0011628,early premaxilla,future premaxilla +http://purl.obolibrary.org/obo/UBERON_0011629,supratemporal bone,supratemporal +http://purl.obolibrary.org/obo/UBERON_0011630,intertemporal bone,intertemporal +http://purl.obolibrary.org/obo/UBERON_0011631,tabular bone,tabular +http://purl.obolibrary.org/obo/UBERON_0011634,ectopterygoid bone,ectopterygoid +http://purl.obolibrary.org/obo/UBERON_0011635,splenial bone,splenial +http://purl.obolibrary.org/obo/UBERON_0011636,surangular bone,surangular +http://purl.obolibrary.org/obo/UBERON_0011637,prearticular bone,prearticular +http://purl.obolibrary.org/obo/UBERON_0011638,pharyngeal arch 8,gill arch 6 +http://purl.obolibrary.org/obo/UBERON_0011638,pharyngeal arch 8,visceral arch 8 +http://purl.obolibrary.org/obo/UBERON_0011639,frontoparietal bone,frontoparietal +http://purl.obolibrary.org/obo/UBERON_0011640,palatoglossal arch,anterior pillar of fauces +http://purl.obolibrary.org/obo/UBERON_0011640,palatoglossal arch,arcus glossopalatinus +http://purl.obolibrary.org/obo/UBERON_0011640,palatoglossal arch,arcus palatoglossus +http://purl.obolibrary.org/obo/UBERON_0011640,palatoglossal arch,glossopalatine arch +http://purl.obolibrary.org/obo/UBERON_0011640,palatoglossal arch,plica anterior faucium +http://purl.obolibrary.org/obo/UBERON_0011641,odontogenic mesenchyme of molar,molar mesenchyme +http://purl.obolibrary.org/obo/UBERON_0011641,odontogenic mesenchyme of molar,odontogenic mesenchyme of molar tooth +http://purl.obolibrary.org/obo/UBERON_0011642,oral epithelium from ectoderm, +http://purl.obolibrary.org/obo/UBERON_0011643,puboischiofemoralis internus muscle,puboischiofemoralis internus +http://purl.obolibrary.org/obo/UBERON_0011644,puboischiofemoralis externus muscle,puboischiofemoralis externus +http://purl.obolibrary.org/obo/UBERON_0011645,iliofemoralis muscle,iliofemoralis +http://purl.obolibrary.org/obo/UBERON_0011646,patagialis muscle, +http://purl.obolibrary.org/obo/UBERON_0011647,depressor mandibulae muscle,depressor labi mandibularis +http://purl.obolibrary.org/obo/UBERON_0011647,depressor mandibulae muscle,depressor labi mandibularis muscle +http://purl.obolibrary.org/obo/UBERON_0011647,depressor mandibulae muscle,depressor mandibulae +http://purl.obolibrary.org/obo/UBERON_0011648,jaw muscle,mandibular muscle +http://purl.obolibrary.org/obo/UBERON_0011648,jaw muscle,mandibular muscles +http://purl.obolibrary.org/obo/UBERON_0011649,levator operculi,levator operculae +http://purl.obolibrary.org/obo/UBERON_0011649,levator operculi,levator operculi muscle +http://purl.obolibrary.org/obo/UBERON_0011650,epihyoidean, +http://purl.obolibrary.org/obo/UBERON_0011651,ventral head of rib,capitulum of costa +http://purl.obolibrary.org/obo/UBERON_0011651,ventral head of rib,capitulum of rib +http://purl.obolibrary.org/obo/UBERON_0011651,ventral head of rib,costal capitulum +http://purl.obolibrary.org/obo/UBERON_0011652,dorsal head of rib,tuberculum of rib +http://purl.obolibrary.org/obo/UBERON_0011653,diapophysis of neural arch, +http://purl.obolibrary.org/obo/UBERON_0011655,interclavicle,interclavicle bone +http://purl.obolibrary.org/obo/UBERON_0011657,dermal element of plastron,plastron element +http://purl.obolibrary.org/obo/UBERON_0011658,epiplastron, +http://purl.obolibrary.org/obo/UBERON_0011659,entoplastron, +http://purl.obolibrary.org/obo/UBERON_0011660,hypoplastron, +http://purl.obolibrary.org/obo/UBERON_0011661,xiphiplastron, +http://purl.obolibrary.org/obo/UBERON_0011662,plastron-carapace bridge, +http://purl.obolibrary.org/obo/UBERON_0011663,anterior plastron-carapace bridge, +http://purl.obolibrary.org/obo/UBERON_0011664,posterior plastron-carapace bridge, +http://purl.obolibrary.org/obo/UBERON_0011665,carapace bone, +http://purl.obolibrary.org/obo/UBERON_0011666,peripheral plate of carapace, +http://purl.obolibrary.org/obo/UBERON_0011667,pleural plate of carapace, +http://purl.obolibrary.org/obo/UBERON_0011669,neural plate of carapace, +http://purl.obolibrary.org/obo/UBERON_0011670,pygal plate of carapace, +http://purl.obolibrary.org/obo/UBERON_0011671,nuchal plate of carapace, +http://purl.obolibrary.org/obo/UBERON_0011672,suprapygal plate of carapace,suprapygal bone +http://purl.obolibrary.org/obo/UBERON_0011672,suprapygal plate of carapace,suprapygal plate +http://purl.obolibrary.org/obo/UBERON_0011673,plastron scute, +http://purl.obolibrary.org/obo/UBERON_0011674,carapace scute, +http://purl.obolibrary.org/obo/UBERON_0011675,perichordal ring, +http://purl.obolibrary.org/obo/UBERON_0011676,subdivision of organism along main body axis,axial subdivision of organism +http://purl.obolibrary.org/obo/UBERON_0011676,subdivision of organism along main body axis,body segment +http://purl.obolibrary.org/obo/UBERON_0011676,subdivision of organism along main body axis,main body segment +http://purl.obolibrary.org/obo/UBERON_0011677,trunk vertebra,thoracolumbar vertebra +http://purl.obolibrary.org/obo/UBERON_0011678,hindlimb intermedium bone,hidlimb intermedium +http://purl.obolibrary.org/obo/UBERON_0011678,hindlimb intermedium bone,intermedium (hind) +http://purl.obolibrary.org/obo/UBERON_0011678,hindlimb intermedium bone,intermedium of pes +http://purl.obolibrary.org/obo/UBERON_0011678,hindlimb intermedium bone,pedal intermedium +http://purl.obolibrary.org/obo/UBERON_0011679,proximal tarsal bone, +http://purl.obolibrary.org/obo/UBERON_0011683,adductor mandibulae,dorsal adductor mandibulae +http://purl.obolibrary.org/obo/UBERON_0011683,adductor mandibulae,m. adductor mandibulae +http://purl.obolibrary.org/obo/UBERON_0011684,levator palatoquadrati, +http://purl.obolibrary.org/obo/UBERON_0011685,preorbitalis muscle,preorbitalis +http://purl.obolibrary.org/obo/UBERON_0011686,spiracularis muscle,spiracularis +http://purl.obolibrary.org/obo/UBERON_0011687,levator hyomandibulae muscle,levator hyomandibulae +http://purl.obolibrary.org/obo/UBERON_0011688,pre-enameloid,non-mineralized enameloid tissue +http://purl.obolibrary.org/obo/UBERON_0011692,enameloid,bitypic enamel +http://purl.obolibrary.org/obo/UBERON_0011692,enameloid,durodentine +http://purl.obolibrary.org/obo/UBERON_0011692,enameloid,enameloid tissue +http://purl.obolibrary.org/obo/UBERON_0011692,enameloid,vitrodentine +http://purl.obolibrary.org/obo/UBERON_0011693,extraembryonic portion of umbilical artery,extraembryonic umbilical artery +http://purl.obolibrary.org/obo/UBERON_0011694,embryo portion of umbilical artery,embryonic umbilical artery +http://purl.obolibrary.org/obo/UBERON_0011695,embryonic cardiovascular system,conceptus cardiovascular system +http://purl.obolibrary.org/obo/UBERON_0011696,left extraembryonic umbilical artery,extraembryonic umbilical artery left +http://purl.obolibrary.org/obo/UBERON_0011697,right extraembryonic umbilical artery,extraembryonic umbilical artery right +http://purl.obolibrary.org/obo/UBERON_0011698,midgut loop, +http://purl.obolibrary.org/obo/UBERON_0011737,caudate lobe hepatic sinusoid,liver right caudate lobe hepatic sinusoids +http://purl.obolibrary.org/obo/UBERON_0011738,quadrate lobe hepatic sinusoid,liver right quadrate lobe hepatic sinusoids +http://purl.obolibrary.org/obo/UBERON_0011741,cardiac valve leaflet, +http://purl.obolibrary.org/obo/UBERON_0011742,aortic valve leaflet,aortic valve leaflets +http://purl.obolibrary.org/obo/UBERON_0011745,pulmonary valve leaflets, +http://purl.obolibrary.org/obo/UBERON_0011754,genital swelling,labioscrotal swelling +http://purl.obolibrary.org/obo/UBERON_0011755,female labial swelling,labioscrotal swelling of female +http://purl.obolibrary.org/obo/UBERON_0011756,male genital swelling,labioscrotal swelling of male +http://purl.obolibrary.org/obo/UBERON_0011756,male genital swelling,scrotal bulge +http://purl.obolibrary.org/obo/UBERON_0011756,male genital swelling,scrotal primordium +http://purl.obolibrary.org/obo/UBERON_0011757,differentiated genital tubercle, +http://purl.obolibrary.org/obo/UBERON_0011765,jugular lymph sac, +http://purl.obolibrary.org/obo/UBERON_0011766,left recurrent laryngeal nerve,left recurrent laryngeal branch +http://purl.obolibrary.org/obo/UBERON_0011766,left recurrent laryngeal nerve,left recurrent laryngeal nerve +http://purl.obolibrary.org/obo/UBERON_0011766,left recurrent laryngeal nerve,vagus X nerve left recurrent laryngeal branch +http://purl.obolibrary.org/obo/UBERON_0011767,right recurrent laryngeal nerve,right recurrent laryngeal branch +http://purl.obolibrary.org/obo/UBERON_0011767,right recurrent laryngeal nerve,right recurrent laryngeal nerve +http://purl.obolibrary.org/obo/UBERON_0011767,right recurrent laryngeal nerve,vagus X nerve right recurrent laryngeal branch +http://purl.obolibrary.org/obo/UBERON_0011768,pineal gland stalk,epiphyseal stalk +http://purl.obolibrary.org/obo/UBERON_0011768,pineal gland stalk,pineal stalk +http://purl.obolibrary.org/obo/UBERON_0011769,cartilaginous projection,cartilage process +http://purl.obolibrary.org/obo/UBERON_0011769,cartilaginous projection,cartilaginous process +http://purl.obolibrary.org/obo/UBERON_0011770,mentomeckelian, +http://purl.obolibrary.org/obo/UBERON_0011772,lower jaw opening, +http://purl.obolibrary.org/obo/UBERON_0011773,upper jaw opening, +http://purl.obolibrary.org/obo/UBERON_0011774,utriculosaccular duct,Böttcher's canal +http://purl.obolibrary.org/obo/UBERON_0011774,utriculosaccular duct,ductus utricosaccularis +http://purl.obolibrary.org/obo/UBERON_0011774,utriculosaccular duct,utricosaccular duct +http://purl.obolibrary.org/obo/UBERON_0011774,utriculosaccular duct,utricosaccular duct of membranous labyrinth +http://purl.obolibrary.org/obo/UBERON_0011774,utriculosaccular duct,utriculo-saccular duct +http://purl.obolibrary.org/obo/UBERON_0011775,vagus nerve nucleus,nodosal nucleus +http://purl.obolibrary.org/obo/UBERON_0011775,vagus nerve nucleus,nucleus of Xth nerve +http://purl.obolibrary.org/obo/UBERON_0011775,vagus nerve nucleus,nucleus of vagal X nerve +http://purl.obolibrary.org/obo/UBERON_0011775,vagus nerve nucleus,nucleus of vagal nerve +http://purl.obolibrary.org/obo/UBERON_0011775,vagus nerve nucleus,nucleus of vagus nerve +http://purl.obolibrary.org/obo/UBERON_0011775,vagus nerve nucleus,tenth cranial nerve nucleus +http://purl.obolibrary.org/obo/UBERON_0011775,vagus nerve nucleus,vagal X nucleus +http://purl.obolibrary.org/obo/UBERON_0011775,vagus nerve nucleus,vagal nucleus +http://purl.obolibrary.org/obo/UBERON_0011775,vagus nerve nucleus,vagus nucleus +http://purl.obolibrary.org/obo/UBERON_0011776,dorsal commissural nucleus of spinal cord, +http://purl.obolibrary.org/obo/UBERON_0011777,nucleus of spinal cord,spinal cord nucleus +http://purl.obolibrary.org/obo/UBERON_0011778,motor nucleus of vagal nerve,motor nucleus X +http://purl.obolibrary.org/obo/UBERON_0011778,motor nucleus of vagal nerve,motor nucleus of X +http://purl.obolibrary.org/obo/UBERON_0011778,motor nucleus of vagal nerve,nX +http://purl.obolibrary.org/obo/UBERON_0011778,motor nucleus of vagal nerve,nucleus motorius of nervi vagi +http://purl.obolibrary.org/obo/UBERON_0011778,motor nucleus of vagal nerve,vagal lobe +http://purl.obolibrary.org/obo/UBERON_0011779,nerve of head region,cephalic nerve +http://purl.obolibrary.org/obo/UBERON_0011779,nerve of head region,head nerve +http://purl.obolibrary.org/obo/UBERON_0011782,feather follicle, +http://purl.obolibrary.org/obo/UBERON_0011783,feather follicle placode,feather bud primordium +http://purl.obolibrary.org/obo/UBERON_0011783,feather follicle placode,feather placode +http://purl.obolibrary.org/obo/UBERON_0011783,feather follicle placode,feather primordium +http://purl.obolibrary.org/obo/UBERON_0011784,feather shaft,feather shaft +http://purl.obolibrary.org/obo/UBERON_0011784,feather shaft,shaft of feather +http://purl.obolibrary.org/obo/UBERON_0011784,feather shaft,stem of feather +http://purl.obolibrary.org/obo/UBERON_0011785,ramus of feather barb,main shaft of feather barb +http://purl.obolibrary.org/obo/UBERON_0011786,ramus of feather barbule,main shaft of feather barbule +http://purl.obolibrary.org/obo/UBERON_0011792,feather muscle, +http://purl.obolibrary.org/obo/UBERON_0011793,flight feather, +http://purl.obolibrary.org/obo/UBERON_0011794,rectrix feather,rectrices +http://purl.obolibrary.org/obo/UBERON_0011794,rectrix feather,rectrix +http://purl.obolibrary.org/obo/UBERON_0011794,rectrix feather,retrices +http://purl.obolibrary.org/obo/UBERON_0011794,rectrix feather,retrix +http://purl.obolibrary.org/obo/UBERON_0011794,rectrix feather,retrix feather +http://purl.obolibrary.org/obo/UBERON_0011795,remex feather,remiges +http://purl.obolibrary.org/obo/UBERON_0011796,primary remex feather,primary flight feather +http://purl.obolibrary.org/obo/UBERON_0011796,primary remex feather,primary remex +http://purl.obolibrary.org/obo/UBERON_0011796,primary remex feather,primary remiges +http://purl.obolibrary.org/obo/UBERON_0011797,secondary remex feather,secondary flight feather +http://purl.obolibrary.org/obo/UBERON_0011797,secondary remex feather,secondary remex +http://purl.obolibrary.org/obo/UBERON_0011797,secondary remex feather,secondary remiges +http://purl.obolibrary.org/obo/UBERON_0011798,tertial remex feather,tertial flight feather +http://purl.obolibrary.org/obo/UBERON_0011798,tertial remex feather,tertial remex +http://purl.obolibrary.org/obo/UBERON_0011798,tertial remex feather,tertial remiges +http://purl.obolibrary.org/obo/UBERON_0011798,tertial remex feather,tertiary flight feather +http://purl.obolibrary.org/obo/UBERON_0011798,tertial remex feather,tertiary remex +http://purl.obolibrary.org/obo/UBERON_0011798,tertial remex feather,tertiary remiges +http://purl.obolibrary.org/obo/UBERON_0011798,tertial remex feather,true tertial +http://purl.obolibrary.org/obo/UBERON_0011799,cavity of feather shaft, +http://purl.obolibrary.org/obo/UBERON_0011800,dermal pulp of feather shaft, +http://purl.obolibrary.org/obo/UBERON_0011801,dermal condensation of feather follicle, +http://purl.obolibrary.org/obo/UBERON_0011802,feather bud,elongate feather bud +http://purl.obolibrary.org/obo/UBERON_0011802,feather bud,feather papilla +http://purl.obolibrary.org/obo/UBERON_0011803,"feather bud, dermal component",dermal core of feather papilla +http://purl.obolibrary.org/obo/UBERON_0011803,"feather bud, dermal component",dermal papilla of feather bud +http://purl.obolibrary.org/obo/UBERON_0011803,"feather bud, dermal component",dermal papilla of feather papilla +http://purl.obolibrary.org/obo/UBERON_0011804,"feather bud, epidermal component",feather bud epithelium +http://purl.obolibrary.org/obo/UBERON_0011805,cavity of feather follicle, +http://purl.obolibrary.org/obo/UBERON_0011806,dermis of feather follicle, +http://purl.obolibrary.org/obo/UBERON_0011807,epidermis of feather follicle, +http://purl.obolibrary.org/obo/UBERON_0011808,outer epidermal layer of feather follicle, +http://purl.obolibrary.org/obo/UBERON_0011809,inner epidermal layer of feather follicle,epidermal collar of feather follicle +http://purl.obolibrary.org/obo/UBERON_0011809,inner epidermal layer of feather follicle,follicle collar of feather follicle +http://purl.obolibrary.org/obo/UBERON_0011810,collection of feathers,feather coat +http://purl.obolibrary.org/obo/UBERON_0011810,collection of feathers,plumage +http://purl.obolibrary.org/obo/UBERON_0011814,non-neurogenic ectodermal placode, +http://purl.obolibrary.org/obo/UBERON_0011817,skin appendage placode,cutaneous appendage follicle placode +http://purl.obolibrary.org/obo/UBERON_0011817,skin appendage placode,skin follicle placode +http://purl.obolibrary.org/obo/UBERON_0011818,superficial fascia,subcutaneous tissue +http://purl.obolibrary.org/obo/UBERON_0011818,superficial fascia,superficial fascial layer +http://purl.obolibrary.org/obo/UBERON_0011818,superficial fascia,tela subcutanea +http://purl.obolibrary.org/obo/UBERON_0011819,lumen of atrioventricular canal,AVC lumen +http://purl.obolibrary.org/obo/UBERON_0011819,lumen of atrioventricular canal,cavity of atrioventricular canal +http://purl.obolibrary.org/obo/UBERON_0011819,lumen of atrioventricular canal,lumen of AVC +http://purl.obolibrary.org/obo/UBERON_0011820,atrioventricular region, +http://purl.obolibrary.org/obo/UBERON_0011821,irregular connective tissue, +http://purl.obolibrary.org/obo/UBERON_0011822,dense irregular connective tissue,irregular dense connective tissue +http://purl.obolibrary.org/obo/UBERON_0011822,dense irregular connective tissue,typus irregularis (textus connectivus collagenosus compactus) +http://purl.obolibrary.org/obo/UBERON_0011823,dense connective tissue, +http://purl.obolibrary.org/obo/UBERON_0011824,fibrous connective tissue, +http://purl.obolibrary.org/obo/UBERON_0011825,loose connective tissue,textus connectivus collagenosus laxus +http://purl.obolibrary.org/obo/UBERON_0011825,loose connective tissue,textus connectivus laxus +http://purl.obolibrary.org/obo/UBERON_0011826,vestibular gland, +http://purl.obolibrary.org/obo/UBERON_0011827,areolar gland,Montgomery's gland +http://purl.obolibrary.org/obo/UBERON_0011827,areolar gland,accessory gland of Montgomery +http://purl.obolibrary.org/obo/UBERON_0011827,areolar gland,accessory gland of breast +http://purl.obolibrary.org/obo/UBERON_0011827,areolar gland,gland of Montgomery +http://purl.obolibrary.org/obo/UBERON_0011828,areolar tubercle,Montgomery tubercle +http://purl.obolibrary.org/obo/UBERON_0011828,areolar tubercle,Montgomery's tubercle +http://purl.obolibrary.org/obo/UBERON_0011828,areolar tubercle,tubercle of Montgomery +http://purl.obolibrary.org/obo/UBERON_0011830,duct of lesser vestibular gland,lesser vestibular gland duct +http://purl.obolibrary.org/obo/UBERON_0011831,duct of vestibular gland,vestibular gland duct +http://purl.obolibrary.org/obo/UBERON_0011844,duct of areolar gland,areolar gland duct +http://purl.obolibrary.org/obo/UBERON_0011845,duct of sebaceous gland,sebaceous gland duct +http://purl.obolibrary.org/obo/UBERON_0011846,acinus of sebaceous gland,sebaceous gland acinus +http://purl.obolibrary.org/obo/UBERON_0011847,acinus of parotid gland,parotid gland acinus +http://purl.obolibrary.org/obo/UBERON_0011850,acinus of salivary gland,salivary gland acinus +http://purl.obolibrary.org/obo/UBERON_0011854,acinus of areolar gland,areolar gland acinus +http://purl.obolibrary.org/obo/UBERON_0011856,acinus of lactiferous gland,lactiferous gland acinus +http://purl.obolibrary.org/obo/UBERON_0011857,acinus of lacrimal gland,lacrimal gland acinus +http://purl.obolibrary.org/obo/UBERON_0011858,acinus of exocrine gland,exocrine gland acinus +http://purl.obolibrary.org/obo/UBERON_0011859,internal acoustic meatus, +http://purl.obolibrary.org/obo/UBERON_0011860,collection of collagen fibrils, +http://purl.obolibrary.org/obo/UBERON_0011861,aorta collagen fibril, +http://purl.obolibrary.org/obo/UBERON_0011862,pulmonary collagen fibril, +http://purl.obolibrary.org/obo/UBERON_0011863,bone collagen fibril, +http://purl.obolibrary.org/obo/UBERON_0011864,tendon collagen fibril, +http://purl.obolibrary.org/obo/UBERON_0011865,corneal stroma collagen fibril, +http://purl.obolibrary.org/obo/UBERON_0011866,condylar joint, +http://purl.obolibrary.org/obo/UBERON_0011867,extensor carpi radialis muscle,extensor carpi radialis +http://purl.obolibrary.org/obo/UBERON_0011868,midcarpal joint,articulatio mediocarpalis +http://purl.obolibrary.org/obo/UBERON_0011868,midcarpal joint,transverse carpal joint +http://purl.obolibrary.org/obo/UBERON_0011869,pisiform joint,articulatio ossis pisiformis +http://purl.obolibrary.org/obo/UBERON_0011870,pisotriquetral joint, +http://purl.obolibrary.org/obo/UBERON_0011871,nasomaxillary suture,nasomaxillary suture of skull +http://purl.obolibrary.org/obo/UBERON_0011873,synarthrosis, +http://purl.obolibrary.org/obo/UBERON_0011874,amphiarthrosis, +http://purl.obolibrary.org/obo/UBERON_0011875,ligament of sternoclavicular joint,ligamentum sternoclavicularis +http://purl.obolibrary.org/obo/UBERON_0011875,ligament of sternoclavicular joint,sternoclavicular joint ligament +http://purl.obolibrary.org/obo/UBERON_0011876,body of tongue,corpus linguae +http://purl.obolibrary.org/obo/UBERON_0011876,body of tongue,tongue body +http://purl.obolibrary.org/obo/UBERON_0011877,margin of tongue,margo linguae +http://purl.obolibrary.org/obo/UBERON_0011877,margin of tongue,tongue margin +http://purl.obolibrary.org/obo/UBERON_0011878,muscle layer of esophagus,muscle coat of esophagus +http://purl.obolibrary.org/obo/UBERON_0011878,muscle layer of esophagus,muscular coat of oesophagus +http://purl.obolibrary.org/obo/UBERON_0011878,muscle layer of esophagus,muscular layer of oesophagus +http://purl.obolibrary.org/obo/UBERON_0011878,muscle layer of esophagus,tela muscularis (oesophagus) +http://purl.obolibrary.org/obo/UBERON_0011878,muscle layer of esophagus,tunica muscularis esophagi +http://purl.obolibrary.org/obo/UBERON_0011878,muscle layer of esophagus,tunica muscularis oesophageae +http://purl.obolibrary.org/obo/UBERON_0011879,mesorchium, +http://purl.obolibrary.org/obo/UBERON_0011892,anterior uvea,Haller tunica vascula +http://purl.obolibrary.org/obo/UBERON_0011892,anterior uvea,anterior part of uveal tract +http://purl.obolibrary.org/obo/UBERON_0011892,anterior uvea,anterior uveal tract +http://purl.obolibrary.org/obo/UBERON_0011892,anterior uvea,anterior vascular layer of the eyeball +http://purl.obolibrary.org/obo/UBERON_0011892,anterior uvea,anterior vascular tunic of the eye +http://purl.obolibrary.org/obo/UBERON_0011892,anterior uvea,ciliary body and iris +http://purl.obolibrary.org/obo/UBERON_0011892,anterior uvea,tunica vasculosa bulbosa +http://purl.obolibrary.org/obo/UBERON_0011892,anterior uvea,vasculosa oculi +http://purl.obolibrary.org/obo/UBERON_0011892,anterior uvea,ventral uveal tract +http://purl.obolibrary.org/obo/UBERON_0011893,endoneurial fluid, +http://purl.obolibrary.org/obo/UBERON_0011894,lumen of vagina,vaginal lumen +http://purl.obolibrary.org/obo/UBERON_0011895,endomysium,fascia of muscle fiber +http://purl.obolibrary.org/obo/UBERON_0011896,smooth muscle endomysium, +http://purl.obolibrary.org/obo/UBERON_0011897,cardiac endomysium,endomysium of cardiac muscle cell +http://purl.obolibrary.org/obo/UBERON_0011897,cardiac endomysium,fibrocollagenous sheath of cardiac muscle cell +http://purl.obolibrary.org/obo/UBERON_0011898,skeletal muscle endomysium, +http://purl.obolibrary.org/obo/UBERON_0011899,epimysium,fascia of muscle organ +http://purl.obolibrary.org/obo/UBERON_0011900,perimysium,fascia of muscle fasciculus +http://purl.obolibrary.org/obo/UBERON_0011901,hair matrix, +http://purl.obolibrary.org/obo/UBERON_0011903,gizzard smooth muscle, +http://purl.obolibrary.org/obo/UBERON_0011904,gastrolith, +http://purl.obolibrary.org/obo/UBERON_0011905,plantaris,musculus plantaris +http://purl.obolibrary.org/obo/UBERON_0011905,plantaris,plantaris +http://purl.obolibrary.org/obo/UBERON_0011906,muscle head,caput (musculus) +http://purl.obolibrary.org/obo/UBERON_0011906,muscle head,caput musculi +http://purl.obolibrary.org/obo/UBERON_0011906,muscle head,head of muscle organ +http://purl.obolibrary.org/obo/UBERON_0011906,muscle head,muscular organ head +http://purl.obolibrary.org/obo/UBERON_0011907,gastrocnemius medialis,caput mediale (musculus gastrocnemius) +http://purl.obolibrary.org/obo/UBERON_0011907,gastrocnemius medialis,caput mediale musculus gastrocnemii +http://purl.obolibrary.org/obo/UBERON_0011907,gastrocnemius medialis,medial head of gastrocnemius +http://purl.obolibrary.org/obo/UBERON_0011907,gastrocnemius medialis,medial head of gastrocnemius muscle +http://purl.obolibrary.org/obo/UBERON_0011908,gastrocnemius lateralis,caput laterale (musculus gastrocnemius) +http://purl.obolibrary.org/obo/UBERON_0011908,gastrocnemius lateralis,caput laterale musculus gastrocnemii +http://purl.obolibrary.org/obo/UBERON_0011908,gastrocnemius lateralis,lateral head of gastrocnemius +http://purl.obolibrary.org/obo/UBERON_0011908,gastrocnemius lateralis,lateral head of gastrocnemius muscle +http://purl.obolibrary.org/obo/UBERON_0011909,gastrocnemius internus,M. gastrocnemius internus +http://purl.obolibrary.org/obo/UBERON_0011909,gastrocnemius internus,musculus gastrocnemius internus +http://purl.obolibrary.org/obo/UBERON_0011910,gastrocnemius externus,M. gastrocnemius externus +http://purl.obolibrary.org/obo/UBERON_0011910,gastrocnemius externus,musculus gastrocnemius externus +http://purl.obolibrary.org/obo/UBERON_0011915,cerebellar glomerulus,cerebellar glomeruli +http://purl.obolibrary.org/obo/UBERON_0011917,thalamic glomerulus,thalamic glomeruli +http://purl.obolibrary.org/obo/UBERON_0011918,line of Schwalbe,Schwalbe line +http://purl.obolibrary.org/obo/UBERON_0011918,line of Schwalbe,Schwalbe's line +http://purl.obolibrary.org/obo/UBERON_0011918,line of Schwalbe,Schwalbe's ring +http://purl.obolibrary.org/obo/UBERON_0011919,yolk sac blood island,visceral yolk sac blood island +http://purl.obolibrary.org/obo/UBERON_0011919,yolk sac blood island,yolk sac blood islands +http://purl.obolibrary.org/obo/UBERON_0011921,connecting stalk blood islands,blood island of umbilical vesicle +http://purl.obolibrary.org/obo/UBERON_0011921,connecting stalk blood islands,insula sanguinea vesiculae umbilicalis +http://purl.obolibrary.org/obo/UBERON_0011922,cochlear basement membrane,basement membrane of cochlear labyrinth +http://purl.obolibrary.org/obo/UBERON_0011922,cochlear basement membrane,cochlea basement membrane +http://purl.obolibrary.org/obo/UBERON_0011924,postganglionic autonomic fiber,postganglionic autonomic fibre +http://purl.obolibrary.org/obo/UBERON_0011924,postganglionic autonomic fiber,postganglionic nerve fiber +http://purl.obolibrary.org/obo/UBERON_0011925,preganglionic autonomic fiber,preganglionic nerve fiber +http://purl.obolibrary.org/obo/UBERON_0011926,postganglionic sympathetic fiber,postganglionic sympathetic fiber +http://purl.obolibrary.org/obo/UBERON_0011926,postganglionic sympathetic fiber,sympathetic postganglionic fiber +http://purl.obolibrary.org/obo/UBERON_0011927,preganglionic sympathetic fiber, +http://purl.obolibrary.org/obo/UBERON_0011929,postganglionic parasympathetic fiber,parasympathetic postganglionic fiber +http://purl.obolibrary.org/obo/UBERON_0011930,preganglionic parasympathetic fiber, +http://purl.obolibrary.org/obo/UBERON_0011931,nasal hair,hair of nose +http://purl.obolibrary.org/obo/UBERON_0011931,nasal hair,hair of vestibular part of nose +http://purl.obolibrary.org/obo/UBERON_0011931,nasal hair,nose hair +http://purl.obolibrary.org/obo/UBERON_0011932,pilosebaceous unit,fabrica pilosebacea +http://purl.obolibrary.org/obo/UBERON_0011932,pilosebaceous unit,pilo-sebaceous apparatus +http://purl.obolibrary.org/obo/UBERON_0011932,pilosebaceous unit,pilo-sebaceous unit +http://purl.obolibrary.org/obo/UBERON_0011932,pilosebaceous unit,pilosebaceous apparatus +http://purl.obolibrary.org/obo/UBERON_0011932,pilosebaceous unit,pilosebaceous gland +http://purl.obolibrary.org/obo/UBERON_0011933,vibrissa unit,vibrissa +http://purl.obolibrary.org/obo/UBERON_0011936,vibrissa hair bulb,bulb of sinus hair +http://purl.obolibrary.org/obo/UBERON_0011936,vibrissa hair bulb,bulb of vibrissa follicle +http://purl.obolibrary.org/obo/UBERON_0011936,vibrissa hair bulb,vibrissa bulb +http://purl.obolibrary.org/obo/UBERON_0011937,vibrissa root sheath,root sheath of sinus hair +http://purl.obolibrary.org/obo/UBERON_0011937,vibrissa root sheath,root sheath of vibrissa +http://purl.obolibrary.org/obo/UBERON_0011937,vibrissa root sheath,root sheath of vibrissa hair +http://purl.obolibrary.org/obo/UBERON_0011938,vibrissa inner root sheath, +http://purl.obolibrary.org/obo/UBERON_0011939,vibrissa outer root sheath, +http://purl.obolibrary.org/obo/UBERON_0011940,arrector pili muscle of vibrissa,arrector pilorum muscle of vibrissa +http://purl.obolibrary.org/obo/UBERON_0011941,lateral angle of scapula,angulus lateralis (scapula) +http://purl.obolibrary.org/obo/UBERON_0011941,lateral angle of scapula,angulus lateralis scapulae +http://purl.obolibrary.org/obo/UBERON_0011944,subintestinal vein,SIV +http://purl.obolibrary.org/obo/UBERON_0011945,luminal layer of epithelium, +http://purl.obolibrary.org/obo/UBERON_0011946,subluminal layer of epithelium, +http://purl.obolibrary.org/obo/UBERON_0011947,ureter luminal urothelium, +http://purl.obolibrary.org/obo/UBERON_0011948,ureter subluminal urothelium, +http://purl.obolibrary.org/obo/UBERON_0011949,endometrium luminal epithelium, +http://purl.obolibrary.org/obo/UBERON_0011950,mammary gland luminal epithelium,lumina layer of epithelium of lactiferous gland +http://purl.obolibrary.org/obo/UBERON_0011951,prostate luminal epithelium,subdivision of luminal layer of epithelium of prostatic gland +http://purl.obolibrary.org/obo/UBERON_0011952,non-glandular epithelium, +http://purl.obolibrary.org/obo/UBERON_0011953,stomach glandular region, +http://purl.obolibrary.org/obo/UBERON_0011954,stomach non-glandular region,stomach cutaneous region +http://purl.obolibrary.org/obo/UBERON_0011954,stomach non-glandular region,stomach ependymal region +http://purl.obolibrary.org/obo/UBERON_0011955,left hepatic vein, +http://purl.obolibrary.org/obo/UBERON_0011956,right hepatic vein, +http://purl.obolibrary.org/obo/UBERON_0011957,middle hepatic vein, +http://purl.obolibrary.org/obo/UBERON_0011958,acetabular labrum,labrum acetabuli +http://purl.obolibrary.org/obo/UBERON_0011958,acetabular labrum,labrum of acetabulum +http://purl.obolibrary.org/obo/UBERON_0011959,glenoid labrum of scapula,glenoidal labrum of glenohumeral joint +http://purl.obolibrary.org/obo/UBERON_0011959,glenoid labrum of scapula,glenoidal labrum of scapula +http://purl.obolibrary.org/obo/UBERON_0011959,glenoid labrum of scapula,labrum glenoidale +http://purl.obolibrary.org/obo/UBERON_0011960,articular capsule of glenohumeral joint,articular capsule of humerus +http://purl.obolibrary.org/obo/UBERON_0011960,articular capsule of glenohumeral joint,articular capsule of shoulder joint +http://purl.obolibrary.org/obo/UBERON_0011960,articular capsule of glenohumeral joint,capsule of shoulder joint +http://purl.obolibrary.org/obo/UBERON_0011960,articular capsule of glenohumeral joint,fibrous capsule of glenohumeral joint +http://purl.obolibrary.org/obo/UBERON_0011961,articular capsule of hip joint,capsula articularis coxae +http://purl.obolibrary.org/obo/UBERON_0011961,articular capsule of hip joint,capsule of hip joint +http://purl.obolibrary.org/obo/UBERON_0011961,articular capsule of hip joint,fibrous capsule of hip joint +http://purl.obolibrary.org/obo/UBERON_0011962,transverse tarsal joint,articulatio tarsi transversa +http://purl.obolibrary.org/obo/UBERON_0011962,transverse tarsal joint,chopart's joint +http://purl.obolibrary.org/obo/UBERON_0011962,transverse tarsal joint,midtarsal joint +http://purl.obolibrary.org/obo/UBERON_0011963,talocalcaneonavicular joint,articulatio talocalcaneonavicularis +http://purl.obolibrary.org/obo/UBERON_0011963,talocalcaneonavicular joint,talocalcaneonavicular articulation +http://purl.obolibrary.org/obo/UBERON_0011964,calcaneocuboid joint,articulatio calcaneocubiodea +http://purl.obolibrary.org/obo/UBERON_0011964,calcaneocuboid joint,calcaneocuboid articulation +http://purl.obolibrary.org/obo/UBERON_0011964,calcaneocuboid joint,calcaneocuboidal joint +http://purl.obolibrary.org/obo/UBERON_0011965,saddle joint,sellar joint +http://purl.obolibrary.org/obo/UBERON_0011966,manubriosternal joint,manubriosternal symphysis +http://purl.obolibrary.org/obo/UBERON_0011967,costotransverse joint, +http://purl.obolibrary.org/obo/UBERON_0011968,radio-carpal joint,articulatio radiocarpea +http://purl.obolibrary.org/obo/UBERON_0011968,radio-carpal joint,radiocarpal articulation +http://purl.obolibrary.org/obo/UBERON_0011968,radio-carpal joint,radiocarpal joint +http://purl.obolibrary.org/obo/UBERON_0011969,mesotarsal joint, +http://purl.obolibrary.org/obo/UBERON_0011970,talofibular ligament,ligamentum talofibulare +http://purl.obolibrary.org/obo/UBERON_0011970,talofibular ligament,talo-fibular ligament +http://purl.obolibrary.org/obo/UBERON_0011971,calcaneofibular ligament,ligamentum calcaneofibulare +http://purl.obolibrary.org/obo/UBERON_0011972,medial ligament of ankle joint,deltoid collateral ligament of ankle joint +http://purl.obolibrary.org/obo/UBERON_0011972,medial ligament of ankle joint,deltoid ligament of ankle joint +http://purl.obolibrary.org/obo/UBERON_0011972,medial ligament of ankle joint,ligamentum collaterale mediale (articulatio talocruralis) +http://purl.obolibrary.org/obo/UBERON_0011972,medial ligament of ankle joint,ligamentum collaterale mediale articulationis talocruralis +http://purl.obolibrary.org/obo/UBERON_0011972,medial ligament of ankle joint,ligamentum deltoideum +http://purl.obolibrary.org/obo/UBERON_0011972,medial ligament of ankle joint,ligamentum deltoideum (articulatio talocruralis) +http://purl.obolibrary.org/obo/UBERON_0011972,medial ligament of ankle joint,medial collateral ligament of ankle joint +http://purl.obolibrary.org/obo/UBERON_0011973,epiphysis of phalanx of pes,epiphysis of phalanx of toe +http://purl.obolibrary.org/obo/UBERON_0011974,epiphysis of proximal phalanx of pes,epiphysis of proximal phalanx of toe +http://purl.obolibrary.org/obo/UBERON_0011975,epiphysis of middle phalanx of pes,epiphysis of middle phalanx of toe +http://purl.obolibrary.org/obo/UBERON_0011976,epiphysis of distal phalanx of pes,epiphysis of distal phalanx of toe +http://purl.obolibrary.org/obo/UBERON_0011977,epiphysis of proximal phalanx of manus,epiphysis of proximal phalanx of finger +http://purl.obolibrary.org/obo/UBERON_0011978,epiphysis of middle phalanx of manus,epiphysis of middle phalanx of finger +http://purl.obolibrary.org/obo/UBERON_0011979,epiphysis of distal phalanx of manus,epiphysis of distal phalanx of finger +http://purl.obolibrary.org/obo/UBERON_0011980,crurotarsal joint, +http://purl.obolibrary.org/obo/UBERON_0011981,manual digit 6,6th finger +http://purl.obolibrary.org/obo/UBERON_0011981,manual digit 6,fore digit VI +http://purl.obolibrary.org/obo/UBERON_0011981,manual digit 6,fore limb digit 6 +http://purl.obolibrary.org/obo/UBERON_0011981,manual digit 6,manual digit VI +http://purl.obolibrary.org/obo/UBERON_0011981,manual digit 6,sixth finger +http://purl.obolibrary.org/obo/UBERON_0011982,manual digit 7,fore digit VII +http://purl.obolibrary.org/obo/UBERON_0011982,manual digit 7,fore limb digit 7 +http://purl.obolibrary.org/obo/UBERON_0011982,manual digit 7,manual digit VII +http://purl.obolibrary.org/obo/UBERON_0011982,manual digit 7,seventh finger +http://purl.obolibrary.org/obo/UBERON_0011983,manual digit 8,eighth finger +http://purl.obolibrary.org/obo/UBERON_0011983,manual digit 8,fore digit VIII +http://purl.obolibrary.org/obo/UBERON_0011983,manual digit 8,fore limb digit 8 +http://purl.obolibrary.org/obo/UBERON_0011983,manual digit 8,manual digit VIII +http://purl.obolibrary.org/obo/UBERON_0011984,pedal digit 6,digitus sextus pedis +http://purl.obolibrary.org/obo/UBERON_0011984,pedal digit 6,hind digit 6 +http://purl.obolibrary.org/obo/UBERON_0011984,pedal digit 6,hind digit VI +http://purl.obolibrary.org/obo/UBERON_0011984,pedal digit 6,hind limb digit 6 +http://purl.obolibrary.org/obo/UBERON_0011984,pedal digit 6,pedal digit VI +http://purl.obolibrary.org/obo/UBERON_0011984,pedal digit 6,pes digit VI +http://purl.obolibrary.org/obo/UBERON_0011984,pedal digit 6,sixth toe +http://purl.obolibrary.org/obo/UBERON_0011984,pedal digit 6,toe 6 +http://purl.obolibrary.org/obo/UBERON_0011985,infraorbital sinus,sinus infraorbitalis +http://purl.obolibrary.org/obo/UBERON_0011986,mucosa of infraorbital sinus,infraorbital sinus mucosa +http://purl.obolibrary.org/obo/UBERON_0011996,pharyngeal adductor, +http://purl.obolibrary.org/obo/UBERON_0011997,coelom, +http://purl.obolibrary.org/obo/UBERON_0012054,myocoele, +http://purl.obolibrary.org/obo/UBERON_0012055,left lung lower lobe bronchiole,bronchiole of left lower lobe +http://purl.obolibrary.org/obo/UBERON_0012055,left lung lower lobe bronchiole,bronchiole of left lower lobe of lung +http://purl.obolibrary.org/obo/UBERON_0012055,left lung lower lobe bronchiole,left lung caudal lobe bronchiole +http://purl.obolibrary.org/obo/UBERON_0012056,left lung upper lobe bronchiole,bronchiole of left cranial lobe +http://purl.obolibrary.org/obo/UBERON_0012056,left lung upper lobe bronchiole,bronchiole of left upper lobe +http://purl.obolibrary.org/obo/UBERON_0012056,left lung upper lobe bronchiole,bronchiole of left upper lobe of lung +http://purl.obolibrary.org/obo/UBERON_0012056,left lung upper lobe bronchiole,left lung cranial lobe bronchiole +http://purl.obolibrary.org/obo/UBERON_0012059,right lung lower lobe bronchiole,bronchiole of right cranial lobe +http://purl.obolibrary.org/obo/UBERON_0012059,right lung lower lobe bronchiole,bronchiole of right lower lobe +http://purl.obolibrary.org/obo/UBERON_0012059,right lung lower lobe bronchiole,bronchiole of right lower lobe of lung +http://purl.obolibrary.org/obo/UBERON_0012059,right lung lower lobe bronchiole,right lung caudal lobe bronchiole +http://purl.obolibrary.org/obo/UBERON_0012063,lobar bronchus of right lung middle lobe,bronchus of right middle lobe +http://purl.obolibrary.org/obo/UBERON_0012063,lobar bronchus of right lung middle lobe,middle lobar bronchus +http://purl.obolibrary.org/obo/UBERON_0012063,lobar bronchus of right lung middle lobe,middle lobe bronchus +http://purl.obolibrary.org/obo/UBERON_0012065,lobar bronchus of left lung upper lobe,bronchus of left upper lobe +http://purl.obolibrary.org/obo/UBERON_0012065,lobar bronchus of left lung upper lobe,left superior lobar bronchus +http://purl.obolibrary.org/obo/UBERON_0012065,lobar bronchus of left lung upper lobe,left upper lobar bronchus +http://purl.obolibrary.org/obo/UBERON_0012065,lobar bronchus of left lung upper lobe,left upper lobe bronchus +http://purl.obolibrary.org/obo/UBERON_0012066,lobar bronchus of left lung lower lobe,bronchus of left lower lobe +http://purl.obolibrary.org/obo/UBERON_0012066,lobar bronchus of left lung lower lobe,left inferior lobar bronchus +http://purl.obolibrary.org/obo/UBERON_0012066,lobar bronchus of left lung lower lobe,left lower lobar bronchus +http://purl.obolibrary.org/obo/UBERON_0012066,lobar bronchus of left lung lower lobe,left lower lobe bronchus +http://purl.obolibrary.org/obo/UBERON_0012067,primary bronchiole,proximal bronchiole +http://purl.obolibrary.org/obo/UBERON_0012068,right lung middle lobe bronchiole,bronchiole of middle right lobe +http://purl.obolibrary.org/obo/UBERON_0012068,right lung middle lobe bronchiole,bronchiole of right middle lobe +http://purl.obolibrary.org/obo/UBERON_0012068,right lung middle lobe bronchiole,bronchiole of right middle lobe of lung +http://purl.obolibrary.org/obo/UBERON_0012069,epithelium-associated lymphoid tissue, +http://purl.obolibrary.org/obo/UBERON_0012070,palatal tooth,palatal teeth +http://purl.obolibrary.org/obo/UBERON_0012071,palate bone,palatal bone +http://purl.obolibrary.org/obo/UBERON_0012072,palatal part of dermatocranium, +http://purl.obolibrary.org/obo/UBERON_0012073,tooth of palatine bone,palatine teeth +http://purl.obolibrary.org/obo/UBERON_0012073,tooth of palatine bone,palatine tooth +http://purl.obolibrary.org/obo/UBERON_0012074,bony part of hard palate,bony palate +http://purl.obolibrary.org/obo/UBERON_0012074,bony part of hard palate,hard palate skeleton +http://purl.obolibrary.org/obo/UBERON_0012074,bony part of hard palate,palatum osseum +http://purl.obolibrary.org/obo/UBERON_0012075,replacement bone,replacement bones +http://purl.obolibrary.org/obo/UBERON_0012076,tibiotalar joint, +http://purl.obolibrary.org/obo/UBERON_0012078,fovea capitis of femur,fovea capitis femoris +http://purl.obolibrary.org/obo/UBERON_0012078,fovea capitis of femur,fovea capitis femoris (caput femoris) +http://purl.obolibrary.org/obo/UBERON_0012078,fovea capitis of femur,fovea capitis of femoral head +http://purl.obolibrary.org/obo/UBERON_0012078,fovea capitis of femur,fovea for ligament of head of femur +http://purl.obolibrary.org/obo/UBERON_0012079,metapterygial axis, +http://purl.obolibrary.org/obo/UBERON_0012080,patella cartilage element, +http://purl.obolibrary.org/obo/UBERON_0012081,patella pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0012082,bronchial lumen,bronchial lumen +http://purl.obolibrary.org/obo/UBERON_0012082,bronchial lumen,lumen of bronchus +http://purl.obolibrary.org/obo/UBERON_0012083,lumen of primary bronchus,lumen of main bronchus +http://purl.obolibrary.org/obo/UBERON_0012083,lumen of primary bronchus,main bronchial lumen +http://purl.obolibrary.org/obo/UBERON_0012083,lumen of primary bronchus,principal bronchial lumen +http://purl.obolibrary.org/obo/UBERON_0012084,lumen of secondary bronchus,lobar bronchial lumen +http://purl.obolibrary.org/obo/UBERON_0012084,lumen of secondary bronchus,lumen of lobar bronchus +http://purl.obolibrary.org/obo/UBERON_0012084,lumen of secondary bronchus,secondary bronchial lumen +http://purl.obolibrary.org/obo/UBERON_0012085,lumen of tertiary bronchus,lumen of segmental bronchus +http://purl.obolibrary.org/obo/UBERON_0012085,lumen of tertiary bronchus,segmental bronchial lumen +http://purl.obolibrary.org/obo/UBERON_0012086,lumen of parabronchus, +http://purl.obolibrary.org/obo/UBERON_0012087,air capillary of parabronchus,air capillary +http://purl.obolibrary.org/obo/UBERON_0012087,air capillary of parabronchus,air vesicle +http://purl.obolibrary.org/obo/UBERON_0012088,lateroobronchus, +http://purl.obolibrary.org/obo/UBERON_0012100,appendicocostalis muscle,appendicocostalis +http://purl.obolibrary.org/obo/UBERON_0012102,buccal salivary gland, +http://purl.obolibrary.org/obo/UBERON_0012103,suspensory ligament of breast,retinaculum cutis mammae +http://purl.obolibrary.org/obo/UBERON_0012103,suspensory ligament of breast,suspensory ligament of cooper +http://purl.obolibrary.org/obo/UBERON_0012103,suspensory ligament of breast,suspensory retinaculum of breast +http://purl.obolibrary.org/obo/UBERON_0012104,sesamoid bone of the peroneus longus muscle,os peroneum +http://purl.obolibrary.org/obo/UBERON_0012105,baleen plate, +http://purl.obolibrary.org/obo/UBERON_0012106,baleen plate bristle,baleen plate fringe +http://purl.obolibrary.org/obo/UBERON_0012106,baleen plate bristle,fringe of baleen plate +http://purl.obolibrary.org/obo/UBERON_0012108,postorbital bar,post-orbital bar +http://purl.obolibrary.org/obo/UBERON_0012109,zygomatic process of frontal bone,frontal bone - zygomatic process +http://purl.obolibrary.org/obo/UBERON_0012109,zygomatic process of frontal bone,processus zygomaticus (os frontale) +http://purl.obolibrary.org/obo/UBERON_0012109,zygomatic process of frontal bone,processus zygomaticus ossis frontalis +http://purl.obolibrary.org/obo/UBERON_0012110,frontal process of zygomatic bone,processus frontalis (os zygomaticum) +http://purl.obolibrary.org/obo/UBERON_0012110,frontal process of zygomatic bone,processus frontalis ossis zygomatici +http://purl.obolibrary.org/obo/UBERON_0012110,frontal process of zygomatic bone,zygomatic bone - frontal process +http://purl.obolibrary.org/obo/UBERON_0012111,diastema,interdental space +http://purl.obolibrary.org/obo/UBERON_0012112,ingested food, +http://purl.obolibrary.org/obo/UBERON_0012113,bolus of food,bolus of ingested food +http://purl.obolibrary.org/obo/UBERON_0012113,bolus of food,food bolus +http://purl.obolibrary.org/obo/UBERON_0012114,cud, +http://purl.obolibrary.org/obo/UBERON_0012115,dental comb,tooth comb +http://purl.obolibrary.org/obo/UBERON_0012115,dental comb,toothcomb +http://purl.obolibrary.org/obo/UBERON_0012116,nutrient foramen conduit, +http://purl.obolibrary.org/obo/UBERON_0012117,lumen of nutrient foramen,nutrient foramen +http://purl.obolibrary.org/obo/UBERON_0012117,lumen of nutrient foramen,nutrient foramina +http://purl.obolibrary.org/obo/UBERON_0012118,infraspinatus tendon,tendon of infraspinatus muscle +http://purl.obolibrary.org/obo/UBERON_0012119,vinculum tendon of wing, +http://purl.obolibrary.org/obo/UBERON_0012120,vinculum of tendon,tendon vinculum +http://purl.obolibrary.org/obo/UBERON_0012121,respiratory velum, +http://purl.obolibrary.org/obo/UBERON_0012124,avian scapholunar bone, +http://purl.obolibrary.org/obo/UBERON_0012125,dermatological-muscosal system,dermatological system +http://purl.obolibrary.org/obo/UBERON_0012126,fibulare, +http://purl.obolibrary.org/obo/UBERON_0012127,feather barbicel,feather hooklet +http://purl.obolibrary.org/obo/UBERON_0012128,nose tip,apex nasi +http://purl.obolibrary.org/obo/UBERON_0012128,nose tip,apex of nose +http://purl.obolibrary.org/obo/UBERON_0012128,nose tip,nasal tip +http://purl.obolibrary.org/obo/UBERON_0012128,nose tip,tip of nose +http://purl.obolibrary.org/obo/UBERON_0012129,radial head of humerus,capitellum of humerus +http://purl.obolibrary.org/obo/UBERON_0012129,radial head of humerus,radial condyle of humerus +http://purl.obolibrary.org/obo/UBERON_0012130,olecranon fossa,fossa olecrani +http://purl.obolibrary.org/obo/UBERON_0012131,centrale,central mesopodium bone +http://purl.obolibrary.org/obo/UBERON_0012131,centrale,os centrale +http://purl.obolibrary.org/obo/UBERON_0012132,intercuneiform joint, +http://purl.obolibrary.org/obo/UBERON_0012133,lateral-intermediate intercuneiform joint, +http://purl.obolibrary.org/obo/UBERON_0012134,medial-intermediate intercuneiform joint, +http://purl.obolibrary.org/obo/UBERON_0012135,prepollex skeleton, +http://purl.obolibrary.org/obo/UBERON_0012136,prehallux, +http://purl.obolibrary.org/obo/UBERON_0012137,pedal digit 7,hind digit 7 +http://purl.obolibrary.org/obo/UBERON_0012137,pedal digit 7,hind digit VII +http://purl.obolibrary.org/obo/UBERON_0012137,pedal digit 7,hind limb digit 7 +http://purl.obolibrary.org/obo/UBERON_0012137,pedal digit 7,pedal digit VII +http://purl.obolibrary.org/obo/UBERON_0012137,pedal digit 7,pes digit VII +http://purl.obolibrary.org/obo/UBERON_0012137,pedal digit 7,seventh toe +http://purl.obolibrary.org/obo/UBERON_0012137,pedal digit 7,toe 7 +http://purl.obolibrary.org/obo/UBERON_0012138,pedal digit 8,digitus octus pedis +http://purl.obolibrary.org/obo/UBERON_0012138,pedal digit 8,eigth toe +http://purl.obolibrary.org/obo/UBERON_0012138,pedal digit 8,hind digit 8 +http://purl.obolibrary.org/obo/UBERON_0012138,pedal digit 8,hind digit VIII +http://purl.obolibrary.org/obo/UBERON_0012138,pedal digit 8,hind limb digit 8 +http://purl.obolibrary.org/obo/UBERON_0012138,pedal digit 8,pedal digit VIII +http://purl.obolibrary.org/obo/UBERON_0012138,pedal digit 8,pes digit VIII +http://purl.obolibrary.org/obo/UBERON_0012138,pedal digit 8,toe 8 +http://purl.obolibrary.org/obo/UBERON_0012139,segment of autopod, +http://purl.obolibrary.org/obo/UBERON_0012140,digitopodium region, +http://purl.obolibrary.org/obo/UBERON_0012141,manual digitopodium region, +http://purl.obolibrary.org/obo/UBERON_0012142,pedal digitopodium region, +http://purl.obolibrary.org/obo/UBERON_0012150,skeleton of digitopodium, +http://purl.obolibrary.org/obo/UBERON_0012151,skeleton of manual digitopodium, +http://purl.obolibrary.org/obo/UBERON_0012152,skeleton of pedal digitopodium, +http://purl.obolibrary.org/obo/UBERON_0012167,buccal fat pad,Bichat's fat pad +http://purl.obolibrary.org/obo/UBERON_0012167,buccal fat pad,cheek fat pad +http://purl.obolibrary.org/obo/UBERON_0012168,umbilical cord blood, +http://purl.obolibrary.org/obo/UBERON_0012170,core of nucleus accumbens,accumbens nucleus core +http://purl.obolibrary.org/obo/UBERON_0012170,core of nucleus accumbens,"accumbens nucleus, core" +http://purl.obolibrary.org/obo/UBERON_0012170,core of nucleus accumbens,core of nucleus accumbens +http://purl.obolibrary.org/obo/UBERON_0012170,core of nucleus accumbens,core region of nucleus accumbens +http://purl.obolibrary.org/obo/UBERON_0012170,core of nucleus accumbens,nucleus accumbens core +http://purl.obolibrary.org/obo/UBERON_0012170,core of nucleus accumbens,nucleusa ccumbens core +http://purl.obolibrary.org/obo/UBERON_0012171,shell of nucleus accumbens,accumbens nucleus shell +http://purl.obolibrary.org/obo/UBERON_0012171,shell of nucleus accumbens,"accumbens nucleus, shell" +http://purl.obolibrary.org/obo/UBERON_0012171,shell of nucleus accumbens,nucleus accumbens shell +http://purl.obolibrary.org/obo/UBERON_0012171,shell of nucleus accumbens,shell of nucleus accumbens +http://purl.obolibrary.org/obo/UBERON_0012171,shell of nucleus accumbens,shell region of nucleus accumbens +http://purl.obolibrary.org/obo/UBERON_0012172,stomach primordium, +http://purl.obolibrary.org/obo/UBERON_0012173,middle suprarenal artery,middle suprarenal arterial tree +http://purl.obolibrary.org/obo/UBERON_0012175,acoustico-facial VII-VIII ganglion complex,acousticofacial ganglion +http://purl.obolibrary.org/obo/UBERON_0012175,acoustico-facial VII-VIII ganglion complex,facio-acoustic ganglion +http://purl.obolibrary.org/obo/UBERON_0012175,acoustico-facial VII-VIII ganglion complex,facio-acoustic ganglion complex VII-VIII +http://purl.obolibrary.org/obo/UBERON_0012176,comb, +http://purl.obolibrary.org/obo/UBERON_0012177,skin apocrine gland, +http://purl.obolibrary.org/obo/UBERON_0012179,bone of pelvis, +http://purl.obolibrary.org/obo/UBERON_0012180,head or neck skin, +http://purl.obolibrary.org/obo/UBERON_0012181,tonsil crypt,cryptae tonsillares +http://purl.obolibrary.org/obo/UBERON_0012181,tonsil crypt,tonsillar crypt +http://purl.obolibrary.org/obo/UBERON_0012186,ovary growing follicle, +http://purl.obolibrary.org/obo/UBERON_0012187,frontal artery,supratrochlear artery +http://purl.obolibrary.org/obo/UBERON_0012187,frontal artery,supratrochlear branch of ophthalmic artery +http://purl.obolibrary.org/obo/UBERON_0012193,phrenic vein, +http://purl.obolibrary.org/obo/UBERON_0012194,superior intercostal vein, +http://purl.obolibrary.org/obo/UBERON_0012195,left superior intercostal vein, +http://purl.obolibrary.org/obo/UBERON_0012196,right superior intercostal vein, +http://purl.obolibrary.org/obo/UBERON_0012197,intercostal vein, +http://purl.obolibrary.org/obo/UBERON_0012198,intercostal space, +http://purl.obolibrary.org/obo/UBERON_0012199,posterior intercostal vein,venae intercostalis posterior +http://purl.obolibrary.org/obo/UBERON_0012200,anterior intercostal vein, +http://purl.obolibrary.org/obo/UBERON_0012236,intercostal lymph node,intercostal node +http://purl.obolibrary.org/obo/UBERON_0012236,intercostal lymph node,nodi lymphoidei intercostales +http://purl.obolibrary.org/obo/UBERON_0012236,intercostal lymph node,nodus intercostale +http://purl.obolibrary.org/obo/UBERON_0012237,superior phrenic vein, +http://purl.obolibrary.org/obo/UBERON_0012238,ureteric bud trunk, +http://purl.obolibrary.org/obo/UBERON_0012239,urinary bladder vasculature,bladder vasculature +http://purl.obolibrary.org/obo/UBERON_0012239,urinary bladder vasculature,blood vessels of bladder +http://purl.obolibrary.org/obo/UBERON_0012239,urinary bladder vasculature,set of urinary bladder blood vessels +http://purl.obolibrary.org/obo/UBERON_0012240,urethral meatus,external meatus of urethra +http://purl.obolibrary.org/obo/UBERON_0012240,urethral meatus,external urethral orifice +http://purl.obolibrary.org/obo/UBERON_0012240,urethral meatus,external urethral ostium +http://purl.obolibrary.org/obo/UBERON_0012240,urethral meatus,external urinary meatus +http://purl.obolibrary.org/obo/UBERON_0012240,urethral meatus,meatus urinarius +http://purl.obolibrary.org/obo/UBERON_0012240,urethral meatus,orificium urethrae externum +http://purl.obolibrary.org/obo/UBERON_0012240,urethral meatus,orificium urethræ externum +http://purl.obolibrary.org/obo/UBERON_0012240,urethral meatus,urethral meatus +http://purl.obolibrary.org/obo/UBERON_0012241,male urethral meatus,external orifice of male urethra +http://purl.obolibrary.org/obo/UBERON_0012241,male urethral meatus,external urethral orifice (male) +http://purl.obolibrary.org/obo/UBERON_0012241,male urethral meatus,male urethra ostium +http://purl.obolibrary.org/obo/UBERON_0012241,male urethral meatus,ostium urethrae externum (urethra masculina) +http://purl.obolibrary.org/obo/UBERON_0012241,male urethral meatus,urethral meatus of penile urethra +http://purl.obolibrary.org/obo/UBERON_0012242,internal urethral orifice,internal meatus of urethra +http://purl.obolibrary.org/obo/UBERON_0012242,internal urethral orifice,internal urethral orifice of urinary bladder +http://purl.obolibrary.org/obo/UBERON_0012242,internal urethral orifice,internal urethral ostium +http://purl.obolibrary.org/obo/UBERON_0012242,internal urethral orifice,orificium urethrae internum +http://purl.obolibrary.org/obo/UBERON_0012242,internal urethral orifice,ostium orificium internum +http://purl.obolibrary.org/obo/UBERON_0012242,internal urethral orifice,ostium urethrae internum +http://purl.obolibrary.org/obo/UBERON_0012242,internal urethral orifice,vesicourethral orifice +http://purl.obolibrary.org/obo/UBERON_0012243,nuptial pad,nuptial ball +http://purl.obolibrary.org/obo/UBERON_0012243,nuptial pad,nuptial excrescence +http://purl.obolibrary.org/obo/UBERON_0012244,stratum intermedium of epidermis, +http://purl.obolibrary.org/obo/UBERON_0012245,silk, +http://purl.obolibrary.org/obo/UBERON_0012246,thyroid follicular lumen,lumen of thyroid follicle +http://purl.obolibrary.org/obo/UBERON_0012246,thyroid follicular lumen,thyroid follicle lumen +http://purl.obolibrary.org/obo/UBERON_0012246,thyroid follicular lumen,thyroid follicular space +http://purl.obolibrary.org/obo/UBERON_0012247,cervical gland,glandulae cervicales +http://purl.obolibrary.org/obo/UBERON_0012248,cervical mucosa, +http://purl.obolibrary.org/obo/UBERON_0012249,ectocervix,ectocervix +http://purl.obolibrary.org/obo/UBERON_0012249,ectocervix,portio vaginalis +http://purl.obolibrary.org/obo/UBERON_0012249,ectocervix,portio vaginalis cervicis +http://purl.obolibrary.org/obo/UBERON_0012249,ectocervix,uterine ectocervix +http://purl.obolibrary.org/obo/UBERON_0012249,ectocervix,vaginal part of cervix +http://purl.obolibrary.org/obo/UBERON_0012250,cervix glandular epithelium, +http://purl.obolibrary.org/obo/UBERON_0012251,ectocervical epithelium,exocervical epithelium +http://purl.obolibrary.org/obo/UBERON_0012252,endocervical epithelium,endocervical glandular epithelium +http://purl.obolibrary.org/obo/UBERON_0012253,cervical squamo-columnar junction,squamo-columnar junction of uterine cervix +http://purl.obolibrary.org/obo/UBERON_0012253,cervical squamo-columnar junction,squamocolumnar junction of uterine cervix +http://purl.obolibrary.org/obo/UBERON_0012254,abdominal aorta artery,abdominal artery +http://purl.obolibrary.org/obo/UBERON_0012254,abdominal aorta artery,artery of abdomen +http://purl.obolibrary.org/obo/UBERON_0012255,inferior phrenic artery,arteriae phrenicae inferiores +http://purl.obolibrary.org/obo/UBERON_0012256,digestive syncytial vacuole, +http://purl.obolibrary.org/obo/UBERON_0012260,alular digit, +http://purl.obolibrary.org/obo/UBERON_0012261,manual major digit (Aves), +http://purl.obolibrary.org/obo/UBERON_0012262,manual minor digit (Aves), +http://purl.obolibrary.org/obo/UBERON_0012267,equine splint bone,splint bone +http://purl.obolibrary.org/obo/UBERON_0012268,equine forelimb splint bone,forelimb splint bone +http://purl.obolibrary.org/obo/UBERON_0012269,equine hindlimb splint bone,hindlimb splint bone +http://purl.obolibrary.org/obo/UBERON_0012270,forestomach-glandular stomach junction, +http://purl.obolibrary.org/obo/UBERON_0012271,major duodenal papilla,greater duodenal papilla +http://purl.obolibrary.org/obo/UBERON_0012271,major duodenal papilla,tubercle of Vater +http://purl.obolibrary.org/obo/UBERON_0012272,minor duodenal papilla,Santorini's caruncle +http://purl.obolibrary.org/obo/UBERON_0012272,minor duodenal papilla,Santorini's minor caruncle +http://purl.obolibrary.org/obo/UBERON_0012272,minor duodenal papilla,lesser duodenal papilla +http://purl.obolibrary.org/obo/UBERON_0012273,periampullary region of duodenum,periampullary region +http://purl.obolibrary.org/obo/UBERON_0012274,columnar epithelium, +http://purl.obolibrary.org/obo/UBERON_0012275,meso-epithelium,mesoderm-derived epithelium +http://purl.obolibrary.org/obo/UBERON_0012275,meso-epithelium,mesoepithelium +http://purl.obolibrary.org/obo/UBERON_0012276,endometrium glandular epithelium,glandular part of endometrium +http://purl.obolibrary.org/obo/UBERON_0012276,endometrium glandular epithelium,uterine glands +http://purl.obolibrary.org/obo/UBERON_0012276,endometrium glandular epithelium,uterine glands set +http://purl.obolibrary.org/obo/UBERON_0012278,gland of nasal mucosa,glandula nasalis +http://purl.obolibrary.org/obo/UBERON_0012278,gland of nasal mucosa,glandulae nasales +http://purl.obolibrary.org/obo/UBERON_0012279,chromaffin paraganglion, +http://purl.obolibrary.org/obo/UBERON_0012281,perianal sebaceous gland, +http://purl.obolibrary.org/obo/UBERON_0012282,mammary fat pad, +http://purl.obolibrary.org/obo/UBERON_0012283,femoral fat pad,femoral fat depot +http://purl.obolibrary.org/obo/UBERON_0012284,animal hemisphere, +http://purl.obolibrary.org/obo/UBERON_0012285,vegetal hemisphere, +http://purl.obolibrary.org/obo/UBERON_0012286,hemisphere of embryo, +http://purl.obolibrary.org/obo/UBERON_0012287,Rathkes pouch epithelium, +http://purl.obolibrary.org/obo/UBERON_0012288,centroquartal bone,os centroquartale +http://purl.obolibrary.org/obo/UBERON_0012288,centroquartal bone,os naviculocuboideum +http://purl.obolibrary.org/obo/UBERON_0012289,fused tarsal bones 2 and 3,fused tarsals 2 and 3 +http://purl.obolibrary.org/obo/UBERON_0012289,fused tarsal bones 2 and 3,os cuneiforme intermediolaterale +http://purl.obolibrary.org/obo/UBERON_0012289,fused tarsal bones 2 and 3,os tarsale II et III +http://purl.obolibrary.org/obo/UBERON_0012290,fused carpal bones 2 and 3,fused carpals 2 and 3 +http://purl.obolibrary.org/obo/UBERON_0012291,lateral malleolus of fibula, +http://purl.obolibrary.org/obo/UBERON_0012292,embryonic cloacal fold, +http://purl.obolibrary.org/obo/UBERON_0012293,anal fold, +http://purl.obolibrary.org/obo/UBERON_0012294,navicular fossa of spongiose part of urethra,fossa navicularis of urethra +http://purl.obolibrary.org/obo/UBERON_0012294,navicular fossa of spongiose part of urethra,fossa navicularis urethrae +http://purl.obolibrary.org/obo/UBERON_0012294,navicular fossa of spongiose part of urethra,"fossa navicularis urethrae (pars spongiosa, urethra masculina)" +http://purl.obolibrary.org/obo/UBERON_0012294,navicular fossa of spongiose part of urethra,navicular fossa +http://purl.obolibrary.org/obo/UBERON_0012294,navicular fossa of spongiose part of urethra,navicular fossa of urethra +http://purl.obolibrary.org/obo/UBERON_0012295,Guérin's valve,Guerin's valve +http://purl.obolibrary.org/obo/UBERON_0012295,Guérin's valve,Guérin's fold +http://purl.obolibrary.org/obo/UBERON_0012295,Guérin's valve,Guérin's valvule +http://purl.obolibrary.org/obo/UBERON_0012295,Guérin's valve,urethral valve of Guérin +http://purl.obolibrary.org/obo/UBERON_0012295,Guérin's valve,valve of fossa navicularis of urethra +http://purl.obolibrary.org/obo/UBERON_0012295,Guérin's valve,valvula fossae navicularis +http://purl.obolibrary.org/obo/UBERON_0012296,urethral crest,crista of urethra +http://purl.obolibrary.org/obo/UBERON_0012296,urethral crest,crista urethralis +http://purl.obolibrary.org/obo/UBERON_0012296,urethral crest,urethral crista +http://purl.obolibrary.org/obo/UBERON_0012297,male urethral crest,crista phallica +http://purl.obolibrary.org/obo/UBERON_0012297,male urethral crest,crista urethralis masculinae +http://purl.obolibrary.org/obo/UBERON_0012297,male urethral crest,urethral crest (male) +http://purl.obolibrary.org/obo/UBERON_0012297,male urethral crest,urethral crest of male +http://purl.obolibrary.org/obo/UBERON_0012298,female urethral crest,crista urethralis femininae +http://purl.obolibrary.org/obo/UBERON_0012298,female urethral crest,urethral crest (female) +http://purl.obolibrary.org/obo/UBERON_0012298,female urethral crest,urethral crest of female +http://purl.obolibrary.org/obo/UBERON_0012299,mucosa of urethra,mucous membrane of urethra +http://purl.obolibrary.org/obo/UBERON_0012299,mucosa of urethra,tunica mucosa urethrae +http://purl.obolibrary.org/obo/UBERON_0012299,mucosa of urethra,urethral mucosa +http://purl.obolibrary.org/obo/UBERON_0012300,limb paddle, +http://purl.obolibrary.org/obo/UBERON_0012301,female membranous urethra, +http://purl.obolibrary.org/obo/UBERON_0012302,male membranous urethra, +http://purl.obolibrary.org/obo/UBERON_0012303,ureteral orifice,Mercier's bar +http://purl.obolibrary.org/obo/UBERON_0012303,ureteral orifice,orifice of ureter +http://purl.obolibrary.org/obo/UBERON_0012303,ureteral orifice,orificium ureteris +http://purl.obolibrary.org/obo/UBERON_0012303,ureteral orifice,ostium ureteris +http://purl.obolibrary.org/obo/UBERON_0012303,ureteral orifice,ureteral meatus +http://purl.obolibrary.org/obo/UBERON_0012303,ureteral orifice,ureteral opening +http://purl.obolibrary.org/obo/UBERON_0012303,ureteral orifice,ureteric orifice +http://purl.obolibrary.org/obo/UBERON_0012303,ureteral orifice,ureteric ostium +http://purl.obolibrary.org/obo/UBERON_0012303,ureteral orifice,ureterovesical orifice +http://purl.obolibrary.org/obo/UBERON_0012304,nasal diverticulum, +http://purl.obolibrary.org/obo/UBERON_0012305,marginal cutaneous pouch of ear, +http://purl.obolibrary.org/obo/UBERON_0012306,lateral cervical lymph node,lateral cervical node +http://purl.obolibrary.org/obo/UBERON_0012307,anterior cervical lymph node,anterior cervical node +http://purl.obolibrary.org/obo/UBERON_0012308,superficial lateral cervical lymph node,superficial lateral cervical node +http://purl.obolibrary.org/obo/UBERON_0012309,superficial anterior cervical lymph node,anterior jugular lymph node +http://purl.obolibrary.org/obo/UBERON_0012310,deep lateral cervical lymph node,deep lateral cervical node +http://purl.obolibrary.org/obo/UBERON_0012311,deep anterior cervical lymph node, +http://purl.obolibrary.org/obo/UBERON_0012312,maxillary process ectoderm, +http://purl.obolibrary.org/obo/UBERON_0012313,1st arch maxillary ectoderm,ectoderm of maxillary component +http://purl.obolibrary.org/obo/UBERON_0012314,embryonic facial prominence, +http://purl.obolibrary.org/obo/UBERON_0012315,incisive foramen,Stenson's foramen +http://purl.obolibrary.org/obo/UBERON_0012315,incisive foramen,foramina incisivum +http://purl.obolibrary.org/obo/UBERON_0012315,incisive foramen,nasopalatine foramen +http://purl.obolibrary.org/obo/UBERON_0012316,primitive palate, +http://purl.obolibrary.org/obo/UBERON_0012317,vagina orifice,opening of vagina +http://purl.obolibrary.org/obo/UBERON_0012317,vagina orifice,orifice of vagina +http://purl.obolibrary.org/obo/UBERON_0012317,vagina orifice,ostium vaginae +http://purl.obolibrary.org/obo/UBERON_0012317,vagina orifice,vagina opening +http://purl.obolibrary.org/obo/UBERON_0012317,vagina orifice,vaginal orifice +http://purl.obolibrary.org/obo/UBERON_0012318,anterior ethmoidal artery,a. ethmoidalis anterior +http://purl.obolibrary.org/obo/UBERON_0012318,anterior ethmoidal artery,arteria ethmoidalis anterior +http://purl.obolibrary.org/obo/UBERON_0012319,posterior ethmoidal artery,a. ethmoidalis posterior +http://purl.obolibrary.org/obo/UBERON_0012319,posterior ethmoidal artery,arteria ethmoidalis posterior +http://purl.obolibrary.org/obo/UBERON_0012320,cervical artery, +http://purl.obolibrary.org/obo/UBERON_0012321,deep cervical artery, +http://purl.obolibrary.org/obo/UBERON_0012322,ascending cervical artery, +http://purl.obolibrary.org/obo/UBERON_0012324,transverse cervical artery, +http://purl.obolibrary.org/obo/UBERON_0012325,retrocerebral complex, +http://purl.obolibrary.org/obo/UBERON_0012326,gubernacular bulb, +http://purl.obolibrary.org/obo/UBERON_0012327,pearly penile papule,hirsuties coronae glandis +http://purl.obolibrary.org/obo/UBERON_0012327,pearly penile papule,hirsutoid papilloma +http://purl.obolibrary.org/obo/UBERON_0012328,penile spine, +http://purl.obolibrary.org/obo/UBERON_0012329,keratinized stratified squamous epithelium,epithelium stratificatum squamosum cornificatum +http://purl.obolibrary.org/obo/UBERON_0012330,nasal-associated lymphoid tissue,NALT +http://purl.obolibrary.org/obo/UBERON_0012330,nasal-associated lymphoid tissue,naso-pharyngeal lymphoid tissue +http://purl.obolibrary.org/obo/UBERON_0012331,mesosalpinx, +http://purl.obolibrary.org/obo/UBERON_0012332,broad ligament of uterus,broad uterine ligament +http://purl.obolibrary.org/obo/UBERON_0012333,ovarian bursa, +http://purl.obolibrary.org/obo/UBERON_0012334,navicular bursa,bursa podotrochlearis +http://purl.obolibrary.org/obo/UBERON_0012335,navicular bursa of manus,bursa podotrochlearis manus +http://purl.obolibrary.org/obo/UBERON_0012335,navicular bursa of manus,navicular bursa of forelimb +http://purl.obolibrary.org/obo/UBERON_0012336,perianal skin,skin of perianal area +http://purl.obolibrary.org/obo/UBERON_0012337,cauda equina, +http://purl.obolibrary.org/obo/UBERON_0012343,navicular bursa of pes,bursa podotrochlearis pes +http://purl.obolibrary.org/obo/UBERON_0012343,navicular bursa of pes,navicular bursa of hindlimb +http://purl.obolibrary.org/obo/UBERON_0012344,holocrine gland, +http://purl.obolibrary.org/obo/UBERON_0012348,autopod pad, +http://purl.obolibrary.org/obo/UBERON_0012349,digital pad,acropodial pad +http://purl.obolibrary.org/obo/UBERON_0012349,digital pad,acropodium pad +http://purl.obolibrary.org/obo/UBERON_0012349,digital pad,interdigital pad +http://purl.obolibrary.org/obo/UBERON_0012350,carpal pad, +http://purl.obolibrary.org/obo/UBERON_0012351,urachal lumen,urachus lumen +http://purl.obolibrary.org/obo/UBERON_0012352,mesangial matrix,extracellular mesangial matrix +http://purl.obolibrary.org/obo/UBERON_0012353,fin skeleton,skeleton of fin +http://purl.obolibrary.org/obo/UBERON_0012354,acropodium region,acropodial limb segment +http://purl.obolibrary.org/obo/UBERON_0012354,acropodium region,acropodial region +http://purl.obolibrary.org/obo/UBERON_0012354,acropodium region,acropodial segment of autopod +http://purl.obolibrary.org/obo/UBERON_0012354,acropodium region,set of digits +http://purl.obolibrary.org/obo/UBERON_0012355,manual acropodium region,acropodial hindlimb segment +http://purl.obolibrary.org/obo/UBERON_0012355,manual acropodium region,acropodial region of manus +http://purl.obolibrary.org/obo/UBERON_0012355,manual acropodium region,acropodial segment of manus +http://purl.obolibrary.org/obo/UBERON_0012355,manual acropodium region,all fingers +http://purl.obolibrary.org/obo/UBERON_0012355,manual acropodium region,anterior acropodium region +http://purl.obolibrary.org/obo/UBERON_0012355,manual acropodium region,anterior acropodium segment of limb +http://purl.obolibrary.org/obo/UBERON_0012355,manual acropodium region,digiti manus +http://purl.obolibrary.org/obo/UBERON_0012355,manual acropodium region,digits of hand +http://purl.obolibrary.org/obo/UBERON_0012355,manual acropodium region,fingers including thumb +http://purl.obolibrary.org/obo/UBERON_0012355,manual acropodium region,fingers set +http://purl.obolibrary.org/obo/UBERON_0012355,manual acropodium region,manual acropodium region +http://purl.obolibrary.org/obo/UBERON_0012355,manual acropodium region,manual acropodium segment of limb +http://purl.obolibrary.org/obo/UBERON_0012355,manual acropodium region,set of digits of hand +http://purl.obolibrary.org/obo/UBERON_0012355,manual acropodium region,set of fingers +http://purl.obolibrary.org/obo/UBERON_0012356,pedal acropodium region,acropodial forelimb segment +http://purl.obolibrary.org/obo/UBERON_0012356,pedal acropodium region,acropodial region of pes +http://purl.obolibrary.org/obo/UBERON_0012356,pedal acropodium region,acropodial segment of pes +http://purl.obolibrary.org/obo/UBERON_0012356,pedal acropodium region,all toes +http://purl.obolibrary.org/obo/UBERON_0012356,pedal acropodium region,digits of foot +http://purl.obolibrary.org/obo/UBERON_0012356,pedal acropodium region,pedal acropodium region +http://purl.obolibrary.org/obo/UBERON_0012356,pedal acropodium region,set of toes +http://purl.obolibrary.org/obo/UBERON_0012356,pedal acropodium region,toes set +http://purl.obolibrary.org/obo/UBERON_0012357,digitopodium bone, +http://purl.obolibrary.org/obo/UBERON_0012358,manual digitopodium bone,bone of forelimb digitopodium +http://purl.obolibrary.org/obo/UBERON_0012359,pedal digitopodium bone,bone of hindlimb digitopodium +http://purl.obolibrary.org/obo/UBERON_0012360,bone of jaw,jaw bone +http://purl.obolibrary.org/obo/UBERON_0012361,internal anal region, +http://purl.obolibrary.org/obo/UBERON_0012363,thyroid follicle epithelium,epithelium of thyroid follicle +http://purl.obolibrary.org/obo/UBERON_0012363,thyroid follicle epithelium,thyroid follicle epithelium +http://purl.obolibrary.org/obo/UBERON_0012363,thyroid follicle epithelium,wall of thyroid follicle +http://purl.obolibrary.org/obo/UBERON_0012364,colloid of thyroid follicle,thyroid colloid +http://purl.obolibrary.org/obo/UBERON_0012364,colloid of thyroid follicle,thyroid follicle colloid +http://purl.obolibrary.org/obo/UBERON_0012367,muscle layer of intestine,intestinal muscularis propria +http://purl.obolibrary.org/obo/UBERON_0012367,muscle layer of intestine,muscularis externa of intestine +http://purl.obolibrary.org/obo/UBERON_0012367,muscle layer of intestine,smooth muscle of intestine +http://purl.obolibrary.org/obo/UBERON_0012368,circular muscle layer of muscular coat,circular muscle layer +http://purl.obolibrary.org/obo/UBERON_0012368,circular muscle layer of muscular coat,circular smooth muscle +http://purl.obolibrary.org/obo/UBERON_0012368,circular muscle layer of muscular coat,inner muscularis +http://purl.obolibrary.org/obo/UBERON_0012368,circular muscle layer of muscular coat,inner muscularis layer +http://purl.obolibrary.org/obo/UBERON_0012369,longitudinal muscle layer of muscular coat,longitudinal muscle layer +http://purl.obolibrary.org/obo/UBERON_0012369,longitudinal muscle layer of muscular coat,longitudinal smooth muscle +http://purl.obolibrary.org/obo/UBERON_0012369,longitudinal muscle layer of muscular coat,outer muscularis +http://purl.obolibrary.org/obo/UBERON_0012369,longitudinal muscle layer of muscular coat,outer muscularis layer +http://purl.obolibrary.org/obo/UBERON_0012373,sympathetic nerve plexus, +http://purl.obolibrary.org/obo/UBERON_0012374,subserosal plexus,subserous nerve plexus +http://purl.obolibrary.org/obo/UBERON_0012374,subserosal plexus,subserous plexus +http://purl.obolibrary.org/obo/UBERON_0012374,subserosal plexus,tela subserosa +http://purl.obolibrary.org/obo/UBERON_0012375,subserosa, +http://purl.obolibrary.org/obo/UBERON_0012376,retromolar triangle, +http://purl.obolibrary.org/obo/UBERON_0012377,muscle layer of jejunum,muscularis externa of jejunum +http://purl.obolibrary.org/obo/UBERON_0012378,muscle layer of urinary bladder,bladder muscular coat +http://purl.obolibrary.org/obo/UBERON_0012378,muscle layer of urinary bladder,muscle layer of urinary bladder +http://purl.obolibrary.org/obo/UBERON_0012378,muscle layer of urinary bladder,muscular coat of bladder +http://purl.obolibrary.org/obo/UBERON_0012378,muscle layer of urinary bladder,muscular coat of urinary bladder +http://purl.obolibrary.org/obo/UBERON_0012378,muscle layer of urinary bladder,muscular layer of bladder +http://purl.obolibrary.org/obo/UBERON_0012378,muscle layer of urinary bladder,muscular layer of urinary bladder +http://purl.obolibrary.org/obo/UBERON_0012378,muscle layer of urinary bladder,tunica musculari vesicae +http://purl.obolibrary.org/obo/UBERON_0012378,muscle layer of urinary bladder,tunica muscularis (vesica urinaria) +http://purl.obolibrary.org/obo/UBERON_0012398,large intestine smooth muscle circular layer, +http://purl.obolibrary.org/obo/UBERON_0012399,large intestine smooth muscle longitudinal layer,longitudinal muscle layer of zone of large intestine +http://purl.obolibrary.org/obo/UBERON_0012401,small intestine smooth muscle circular layer,circular layer of small intestine muscularis propria +http://purl.obolibrary.org/obo/UBERON_0012401,small intestine smooth muscle circular layer,circular muscle coat of small intestine +http://purl.obolibrary.org/obo/UBERON_0012401,small intestine smooth muscle circular layer,circular muscle layer of small intestine +http://purl.obolibrary.org/obo/UBERON_0012401,small intestine smooth muscle circular layer,circular muscle of small intestine +http://purl.obolibrary.org/obo/UBERON_0012401,small intestine smooth muscle circular layer,short pitch helicoidal muscle layer of small intestine +http://purl.obolibrary.org/obo/UBERON_0012401,small intestine smooth muscle circular layer,stratum circulare (tunica muscularis)(intestinum tenue) +http://purl.obolibrary.org/obo/UBERON_0012401,small intestine smooth muscle circular layer,stratum circulare tunicae muscularis intestini tenuis +http://purl.obolibrary.org/obo/UBERON_0012401,small intestine smooth muscle circular layer,stratum helicoidale brevis gradus tunicae muscularis intestini tenuis +http://purl.obolibrary.org/obo/UBERON_0012402,small intestine smooth muscle longitudinal layer,long pitch helicoidal muscle layer of small intestine +http://purl.obolibrary.org/obo/UBERON_0012402,small intestine smooth muscle longitudinal layer,longitudinal layer of small intestine muscularis propria +http://purl.obolibrary.org/obo/UBERON_0012402,small intestine smooth muscle longitudinal layer,longitudinal muscle coat of small intestine +http://purl.obolibrary.org/obo/UBERON_0012402,small intestine smooth muscle longitudinal layer,longitudinal muscle layer of small intestine +http://purl.obolibrary.org/obo/UBERON_0012402,small intestine smooth muscle longitudinal layer,longitudinal muscle of small intestine +http://purl.obolibrary.org/obo/UBERON_0012402,small intestine smooth muscle longitudinal layer,stratum helicoidale longi gradus tunicae muscularis intestini tenuis +http://purl.obolibrary.org/obo/UBERON_0012402,small intestine smooth muscle longitudinal layer,stratum longitudinale (tunica muscularis) (intestinum tenue) +http://purl.obolibrary.org/obo/UBERON_0012402,small intestine smooth muscle longitudinal layer,stratum longitudinale tunicae muscularis intestini tenuis +http://purl.obolibrary.org/obo/UBERON_0012416,respiratory system arterial smooth muscle, +http://purl.obolibrary.org/obo/UBERON_0012418,respiratory system venous smooth muscle, +http://purl.obolibrary.org/obo/UBERON_0012419,taenia coli,longitudinal band of large intestine muscularis +http://purl.obolibrary.org/obo/UBERON_0012420,coprodeum,cloacal coprodeum +http://purl.obolibrary.org/obo/UBERON_0012420,coprodeum,coprodaeum +http://purl.obolibrary.org/obo/UBERON_0012420,coprodeum,coprodeal portion of cloaca +http://purl.obolibrary.org/obo/UBERON_0012421,urodeum,cloacal urodeum +http://purl.obolibrary.org/obo/UBERON_0012421,urodeum,urodaeum +http://purl.obolibrary.org/obo/UBERON_0012421,urodeum,urodeal portion of cloaca +http://purl.obolibrary.org/obo/UBERON_0012422,secretion of crop, +http://purl.obolibrary.org/obo/UBERON_0012423,layer of microvilli, +http://purl.obolibrary.org/obo/UBERON_0012424,brush border layer, +http://purl.obolibrary.org/obo/UBERON_0012425,striated border microvillus layer, +http://purl.obolibrary.org/obo/UBERON_0012426,short microvillus layer, +http://purl.obolibrary.org/obo/UBERON_0012427,intestinal brush border layer,brush border microvillus layer of intestine +http://purl.obolibrary.org/obo/UBERON_0012427,intestinal brush border layer,intestinal brush border +http://purl.obolibrary.org/obo/UBERON_0012428,proximal convoluted tubule brush border, +http://purl.obolibrary.org/obo/UBERON_0012429,hematopoietic tissue,haemopoietic tissue +http://purl.obolibrary.org/obo/UBERON_0012429,hematopoietic tissue,hematopoietic tissue +http://purl.obolibrary.org/obo/UBERON_0012429,hematopoietic tissue,hemopoietic tissue +http://purl.obolibrary.org/obo/UBERON_0012429,hematopoietic tissue,textus haemopoieticus +http://purl.obolibrary.org/obo/UBERON_0012430,tunica fibrosa of eyeball,fibrous layer of eyeball +http://purl.obolibrary.org/obo/UBERON_0012437,epithelial-mesenchymal boundary, +http://purl.obolibrary.org/obo/UBERON_0012438,blastema of regenerating fin/limb, +http://purl.obolibrary.org/obo/UBERON_0012439,blastema of regenerating digit tip, +http://purl.obolibrary.org/obo/UBERON_0012441,endothelium of peritubular capillary,peritubular capillary endothelium +http://purl.obolibrary.org/obo/UBERON_0012442,epiploic foramen,aditus to lesser sac +http://purl.obolibrary.org/obo/UBERON_0012442,epiploic foramen,epiploic foramen of Winslow +http://purl.obolibrary.org/obo/UBERON_0012442,epiploic foramen,foramen of Winslow +http://purl.obolibrary.org/obo/UBERON_0012442,epiploic foramen,foramen omentale +http://purl.obolibrary.org/obo/UBERON_0012442,epiploic foramen,foramen omentale (epiploicum) +http://purl.obolibrary.org/obo/UBERON_0012442,epiploic foramen,omental foramen +http://purl.obolibrary.org/obo/UBERON_0012443,row of scales, +http://purl.obolibrary.org/obo/UBERON_0012444,gastropege, +http://purl.obolibrary.org/obo/UBERON_0012447,podotheca, +http://purl.obolibrary.org/obo/UBERON_0012448,Herbst's corpuscle, +http://purl.obolibrary.org/obo/UBERON_0012449,mechanoreceptor, +http://purl.obolibrary.org/obo/UBERON_0012450,Meissner's corpuscle, +http://purl.obolibrary.org/obo/UBERON_0012451,sensory receptor,peripheral ending of sensory neuron +http://purl.obolibrary.org/obo/UBERON_0012453,nerve ending, +http://purl.obolibrary.org/obo/UBERON_0012456,Merkel nerve ending,Merkel's disc +http://purl.obolibrary.org/obo/UBERON_0012456,Merkel nerve ending,Merkel's disk +http://purl.obolibrary.org/obo/UBERON_0012456,Merkel nerve ending,Merkel's receptor +http://purl.obolibrary.org/obo/UBERON_0012456,Merkel nerve ending,Merkel's tactile disc +http://purl.obolibrary.org/obo/UBERON_0012457,Ruffini nerve ending,Ruffini's corpuscle +http://purl.obolibrary.org/obo/UBERON_0012457,Ruffini nerve ending,corpusculum sensorium fusiforme +http://purl.obolibrary.org/obo/UBERON_0012458,antler velvet,velvet of antler +http://purl.obolibrary.org/obo/UBERON_0012459,antler pedicle, +http://purl.obolibrary.org/obo/UBERON_0012462,proctodeum portion of cloaca, +http://purl.obolibrary.org/obo/UBERON_0012463,cloacal lumen,cloaca lumen +http://purl.obolibrary.org/obo/UBERON_0012463,cloacal lumen,cloacal chamber +http://purl.obolibrary.org/obo/UBERON_0012464,cloacal vent,cloacal opening +http://purl.obolibrary.org/obo/UBERON_0012465,lumen of terminal part of digestive tract, +http://purl.obolibrary.org/obo/UBERON_0012466,extraembryonic cavity, +http://purl.obolibrary.org/obo/UBERON_0012467,enclosed anatomical space,closed anatomical space +http://purl.obolibrary.org/obo/UBERON_0012468,anal tooth,anal teeth +http://purl.obolibrary.org/obo/UBERON_0012469,external anal region, +http://purl.obolibrary.org/obo/UBERON_0012470,wheel papilla, +http://purl.obolibrary.org/obo/UBERON_0012471,hepatogastric ligament,gastro-hepatic ligament +http://purl.obolibrary.org/obo/UBERON_0012471,hepatogastric ligament,gastrohepatic ligament +http://purl.obolibrary.org/obo/UBERON_0012471,hepatogastric ligament,hepato-gastric ligament +http://purl.obolibrary.org/obo/UBERON_0012471,hepatogastric ligament,ligamentum hepatogastricum +http://purl.obolibrary.org/obo/UBERON_0012472,hepatoduodenal ligament,ligamentum hepatoduodenale +http://purl.obolibrary.org/obo/UBERON_0012473,oral cirrus,buccal cilia +http://purl.obolibrary.org/obo/UBERON_0012473,oral cirrus,buccal cirri +http://purl.obolibrary.org/obo/UBERON_0012473,oral cirrus,buccal cirrus +http://purl.obolibrary.org/obo/UBERON_0012473,oral cirrus,buccal tentacle +http://purl.obolibrary.org/obo/UBERON_0012473,oral cirrus,oral cilia +http://purl.obolibrary.org/obo/UBERON_0012473,oral cirrus,oral cirri +http://purl.obolibrary.org/obo/UBERON_0012473,oral cirrus,oral tentacle +http://purl.obolibrary.org/obo/UBERON_0012474,hepatic cecum,hepatic caecum +http://purl.obolibrary.org/obo/UBERON_0012475,skeleton of pectoral complex, +http://purl.obolibrary.org/obo/UBERON_0012476,skeleton of pelvic complex, +http://purl.obolibrary.org/obo/UBERON_0012477,dorsal part of neck,back of neck +http://purl.obolibrary.org/obo/UBERON_0012477,dorsal part of neck,nape of neck +http://purl.obolibrary.org/obo/UBERON_0012477,dorsal part of neck,neck back +http://purl.obolibrary.org/obo/UBERON_0012477,dorsal part of neck,nucha +http://purl.obolibrary.org/obo/UBERON_0012477,dorsal part of neck,nuchal region +http://purl.obolibrary.org/obo/UBERON_0012477,dorsal part of neck,posterior cervical region +http://purl.obolibrary.org/obo/UBERON_0012477,dorsal part of neck,posterior neck region +http://purl.obolibrary.org/obo/UBERON_0012477,dorsal part of neck,posterior part of neck +http://purl.obolibrary.org/obo/UBERON_0012477,dorsal part of neck,regio cervicalis posterior +http://purl.obolibrary.org/obo/UBERON_0012478,cloacal gland, +http://purl.obolibrary.org/obo/UBERON_0012479,urodeal gland,urodaeal gland +http://purl.obolibrary.org/obo/UBERON_0012480,cloacal mucosa,cloaca mucosa +http://purl.obolibrary.org/obo/UBERON_0012480,cloacal mucosa,cloaca mucosa of organ +http://purl.obolibrary.org/obo/UBERON_0012480,cloacal mucosa,cloaca mucous membrane +http://purl.obolibrary.org/obo/UBERON_0012480,cloacal mucosa,cloaca organ mucosa +http://purl.obolibrary.org/obo/UBERON_0012480,cloacal mucosa,cloacal mucous membrane +http://purl.obolibrary.org/obo/UBERON_0012480,cloacal mucosa,mucosa of cloaca +http://purl.obolibrary.org/obo/UBERON_0012480,cloacal mucosa,mucosa of organ of cloaca +http://purl.obolibrary.org/obo/UBERON_0012480,cloacal mucosa,mucous membrane of cloaca +http://purl.obolibrary.org/obo/UBERON_0012480,cloacal mucosa,organ mucosa of cloaca +http://purl.obolibrary.org/obo/UBERON_0012481,cloacal epithelium, +http://purl.obolibrary.org/obo/UBERON_0012482,submucosa of cloaca,cloaca submucosa +http://purl.obolibrary.org/obo/UBERON_0012482,submucosa of cloaca,cloacal submucosa +http://purl.obolibrary.org/obo/UBERON_0012483,serosa of cloaca,cloaca serosa +http://purl.obolibrary.org/obo/UBERON_0012483,serosa of cloaca,cloaca serous membrane +http://purl.obolibrary.org/obo/UBERON_0012483,serosa of cloaca,cloacal serosa +http://purl.obolibrary.org/obo/UBERON_0012483,serosa of cloaca,serous membrane of cloaca +http://purl.obolibrary.org/obo/UBERON_0012483,serosa of cloaca,visceral peritoneum of cloaca +http://purl.obolibrary.org/obo/UBERON_0012485,cloacal villus,cloacal villi +http://purl.obolibrary.org/obo/UBERON_0012486,muscle layer of cloaca,muscularis externa of cloaca +http://purl.obolibrary.org/obo/UBERON_0012487,vaginal sphincter,sphincter of vagina +http://purl.obolibrary.org/obo/UBERON_0012488,muscle layer of duodenum,duodenal muscularis propria +http://purl.obolibrary.org/obo/UBERON_0012488,muscle layer of duodenum,muscularis externa of duodenum +http://purl.obolibrary.org/obo/UBERON_0012489,muscle layer of colon,colonic muscularis propria +http://purl.obolibrary.org/obo/UBERON_0012489,muscle layer of colon,muscular coat of colon +http://purl.obolibrary.org/obo/UBERON_0012489,muscle layer of colon,muscular layer of colon +http://purl.obolibrary.org/obo/UBERON_0012489,muscle layer of colon,muscularis externa of colon +http://purl.obolibrary.org/obo/UBERON_0012489,muscle layer of colon,tunica muscularis coli +http://purl.obolibrary.org/obo/UBERON_0012490,muscle layer of anal canal,anal canal muscularis propria +http://purl.obolibrary.org/obo/UBERON_0012490,muscle layer of anal canal,anal muscularis propria +http://purl.obolibrary.org/obo/UBERON_0012490,muscle layer of anal canal,muscular coat of anal canal +http://purl.obolibrary.org/obo/UBERON_0012490,muscle layer of anal canal,muscular layer of anal canal +http://purl.obolibrary.org/obo/UBERON_0012490,muscle layer of anal canal,muscularis externa of anal canal +http://purl.obolibrary.org/obo/UBERON_0012490,muscle layer of anal canal,muscularis propria of anal canal +http://purl.obolibrary.org/obo/UBERON_0012494,muscularis mucosae of duodenum,lamina muscularis of duodenal mucous membrane +http://purl.obolibrary.org/obo/UBERON_0012494,muscularis mucosae of duodenum,lamina muscularis of duodenum +http://purl.obolibrary.org/obo/UBERON_0012497,muscularis mucosae of rectum,lamina muscularis of rectal mucosa +http://purl.obolibrary.org/obo/UBERON_0012497,muscularis mucosae of rectum,lamina muscularis of rectal mucous membrane +http://purl.obolibrary.org/obo/UBERON_0012498,serosa of appendix,appendiceal serosa +http://purl.obolibrary.org/obo/UBERON_0012498,serosa of appendix,appendix serosa +http://purl.obolibrary.org/obo/UBERON_0012498,serosa of appendix,serosa of vermiform appendix +http://purl.obolibrary.org/obo/UBERON_0012498,serosa of appendix,visceral peritoneum of vermiform appendix +http://purl.obolibrary.org/obo/UBERON_0012499,serosa of uterine tube,serosa of fallopian tube +http://purl.obolibrary.org/obo/UBERON_0012499,serosa of uterine tube,serosa of oviduct +http://purl.obolibrary.org/obo/UBERON_0012499,serosa of uterine tube,serous coat of uterine tube +http://purl.obolibrary.org/obo/UBERON_0012499,serosa of uterine tube,tunica serosa (tuba uterina) +http://purl.obolibrary.org/obo/UBERON_0012499,serosa of uterine tube,tunica serosa tubae uterinae +http://purl.obolibrary.org/obo/UBERON_0012499,serosa of uterine tube,uterine tubal serosa +http://purl.obolibrary.org/obo/UBERON_0012499,serosa of uterine tube,uterine tube serosa +http://purl.obolibrary.org/obo/UBERON_0012503,serosa of fundus of stomach,visceral peritoneum of fundus of stomach +http://purl.obolibrary.org/obo/UBERON_0012504,adventitia of esophagus,adventitia of oesophagus +http://purl.obolibrary.org/obo/UBERON_0012504,adventitia of esophagus,adventitious layer of esophagus +http://purl.obolibrary.org/obo/UBERON_0012504,adventitia of esophagus,esophageal adventitia +http://purl.obolibrary.org/obo/UBERON_0012504,adventitia of esophagus,esophagus adventitia +http://purl.obolibrary.org/obo/UBERON_0012504,adventitia of esophagus,tunica adventitia (esophagus) +http://purl.obolibrary.org/obo/UBERON_0012504,adventitia of esophagus,tunica adventitia oesophageae +http://purl.obolibrary.org/obo/UBERON_0012520,forelimb epitrochlearis muscle,epitrochlearis +http://purl.obolibrary.org/obo/UBERON_0012615,umbilical smooth muscle, +http://purl.obolibrary.org/obo/UBERON_0012621,muscle of Aristotle's lantern,lantern muscle +http://purl.obolibrary.org/obo/UBERON_0012641,body of tubeworm, +http://purl.obolibrary.org/obo/UBERON_0012642,vestimentum muscle,vestimentum +http://purl.obolibrary.org/obo/UBERON_0012643,plume, +http://purl.obolibrary.org/obo/UBERON_0012644,trophosome, +http://purl.obolibrary.org/obo/UBERON_0012645,opisthosome, +http://purl.obolibrary.org/obo/UBERON_0012646,tubeworm tube, +http://purl.obolibrary.org/obo/UBERON_0012648,ampulla of uterine tube,ampulla of fallopian tube +http://purl.obolibrary.org/obo/UBERON_0012648,ampulla of uterine tube,ampulla of oviduct +http://purl.obolibrary.org/obo/UBERON_0012648,ampulla of uterine tube,ampulla tubae uterinae +http://purl.obolibrary.org/obo/UBERON_0012648,ampulla of uterine tube,uterine tube ampulla +http://purl.obolibrary.org/obo/UBERON_0012649,anococcygeus muscle,anococcygeus +http://purl.obolibrary.org/obo/UBERON_0012650,gastroduodenal junction, +http://purl.obolibrary.org/obo/UBERON_0012651,mucosa of gastroduodenal junction,gastroduodenal mucosa +http://purl.obolibrary.org/obo/UBERON_0012652,colorectum, +http://purl.obolibrary.org/obo/UBERON_0012925,bronchial bud, +http://purl.obolibrary.org/obo/UBERON_0013067,colorectal mucosa, +http://purl.obolibrary.org/obo/UBERON_0013068,palatine torus,torus palatinus +http://purl.obolibrary.org/obo/UBERON_0013069,popliteal area,popliteal fossa +http://purl.obolibrary.org/obo/UBERON_0013070,prepatagium, +http://purl.obolibrary.org/obo/UBERON_0013073,rattle,snake rattle +http://purl.obolibrary.org/obo/UBERON_0013074,cornual diverticulum,cornual sinus +http://purl.obolibrary.org/obo/UBERON_0013075,venom gland duct,duct of venom gland +http://purl.obolibrary.org/obo/UBERON_0013076,snake venom, +http://purl.obolibrary.org/obo/UBERON_0013078,venom-injecting tooth, +http://purl.obolibrary.org/obo/UBERON_0013106,elapid venom, +http://purl.obolibrary.org/obo/UBERON_0013110,hydrophid venom, +http://purl.obolibrary.org/obo/UBERON_0013112,viper venom, +http://purl.obolibrary.org/obo/UBERON_0013113,angular/surangular bone, +http://purl.obolibrary.org/obo/UBERON_0013114,compressor glandulae muscle, +http://purl.obolibrary.org/obo/UBERON_0013115,pterygoideus glandulae muscle, +http://purl.obolibrary.org/obo/UBERON_0013116,venom gland musculature, +http://purl.obolibrary.org/obo/UBERON_0013118,sulcus of brain,cerebral sulci +http://purl.obolibrary.org/obo/UBERON_0013119,haemal node,hemal node +http://purl.obolibrary.org/obo/UBERON_0013120,eyelid submuscular connective tissue, +http://purl.obolibrary.org/obo/UBERON_0013121,proximal epiphysis of phalanx of pes,basal epiphysis of phalanx of foot +http://purl.obolibrary.org/obo/UBERON_0013121,proximal epiphysis of phalanx of pes,base of phalanx of foot +http://purl.obolibrary.org/obo/UBERON_0013121,proximal epiphysis of phalanx of pes,basis phalangis (pedis) +http://purl.obolibrary.org/obo/UBERON_0013121,proximal epiphysis of phalanx of pes,basis phalangis pedis +http://purl.obolibrary.org/obo/UBERON_0013121,proximal epiphysis of phalanx of pes,proximal epiphysis of phalanx of toe +http://purl.obolibrary.org/obo/UBERON_0013122,distal epiphysis of phalanx of pes,caput phalangis (pedis) +http://purl.obolibrary.org/obo/UBERON_0013122,distal epiphysis of phalanx of pes,caput phalangis pedis +http://purl.obolibrary.org/obo/UBERON_0013122,distal epiphysis of phalanx of pes,distal end of phalanx of foot +http://purl.obolibrary.org/obo/UBERON_0013122,distal epiphysis of phalanx of pes,distal epiphysis of phalanx of toe +http://purl.obolibrary.org/obo/UBERON_0013122,distal epiphysis of phalanx of pes,head of phalanx of foot +http://purl.obolibrary.org/obo/UBERON_0013124,left posterior cardinal vein,left postcardinal vein +http://purl.obolibrary.org/obo/UBERON_0013124,left posterior cardinal vein,posterior cardinal vein left +http://purl.obolibrary.org/obo/UBERON_0013125,left subcardinal vein,subcardinal vein left +http://purl.obolibrary.org/obo/UBERON_0013126,vein of abdomen,abdominal vein +http://purl.obolibrary.org/obo/UBERON_0013127,pulmonary venous system,pulmonary venous circulatory system +http://purl.obolibrary.org/obo/UBERON_0013128,bulb of penis,bulbus penis +http://purl.obolibrary.org/obo/UBERON_0013128,bulb of penis,penile bulb +http://purl.obolibrary.org/obo/UBERON_0013128,bulb of penis,urethral bulb +http://purl.obolibrary.org/obo/UBERON_0013129,bulb of vestibule,bulbus vestibuli vaginae +http://purl.obolibrary.org/obo/UBERON_0013129,bulb of vestibule,vestibular bulb +http://purl.obolibrary.org/obo/UBERON_0013129,bulb of vestibule,vestibular bulb of vagina +http://purl.obolibrary.org/obo/UBERON_0013131,lobe of tail, +http://purl.obolibrary.org/obo/UBERON_0013132,penicillar arteriole,penicilli +http://purl.obolibrary.org/obo/UBERON_0013132,penicillar arteriole,penicillus +http://purl.obolibrary.org/obo/UBERON_0013133,superior phrenic artery,arteria phrenicea superioris +http://purl.obolibrary.org/obo/UBERON_0013133,superior phrenic artery,arteriae phrenicae superiores +http://purl.obolibrary.org/obo/UBERON_0013135,interdental plate, +http://purl.obolibrary.org/obo/UBERON_0013136,vein of lip,labial vein of face +http://purl.obolibrary.org/obo/UBERON_0013136,vein of lip,lip vein +http://purl.obolibrary.org/obo/UBERON_0013136,vein of lip,vena labialis +http://purl.obolibrary.org/obo/UBERON_0013137,external pudendal artery,arteriae pudendae externa +http://purl.obolibrary.org/obo/UBERON_0013137,external pudendal artery,arteriae pudendales externa +http://purl.obolibrary.org/obo/UBERON_0013138,coronary ligament of liver,coronary ligament +http://purl.obolibrary.org/obo/UBERON_0013138,coronary ligament of liver,ligamentum coronarium +http://purl.obolibrary.org/obo/UBERON_0013138,coronary ligament of liver,ligamentum coronarium hepatis +http://purl.obolibrary.org/obo/UBERON_0013139,ligament of liver,hepatic ligament +http://purl.obolibrary.org/obo/UBERON_0013139,ligament of liver,liver ligament +http://purl.obolibrary.org/obo/UBERON_0013140,systemic vein,systemic venous tree organ part +http://purl.obolibrary.org/obo/UBERON_0013141,capillary bed, +http://purl.obolibrary.org/obo/UBERON_0013142,soleal vein,soleus vein +http://purl.obolibrary.org/obo/UBERON_0013142,soleal vein,vein of soleus muscle +http://purl.obolibrary.org/obo/UBERON_0013142,soleal vein,vena solealis +http://purl.obolibrary.org/obo/UBERON_0013143,gastrocnemius vein,vein of gastrocnemius muscle +http://purl.obolibrary.org/obo/UBERON_0013143,gastrocnemius vein,vena gastrocnemii +http://purl.obolibrary.org/obo/UBERON_0013144,vein of genicular venous plexus, +http://purl.obolibrary.org/obo/UBERON_0013145,accessory saphenous vein,posteromedial vein of thigh +http://purl.obolibrary.org/obo/UBERON_0013146,venous system of brain,brain venous system +http://purl.obolibrary.org/obo/UBERON_0013147,early mesencephalic vesicle,mesencephalic vesicle +http://purl.obolibrary.org/obo/UBERON_0013148,early midbrain vesicle,midbrain vesicle +http://purl.obolibrary.org/obo/UBERON_0013149,hindbrain vesicle,rhombencephalic vesicle +http://purl.obolibrary.org/obo/UBERON_0013150,future brain vesicle,early brain vesicle +http://purl.obolibrary.org/obo/UBERON_0013150,future brain vesicle,primitive brain vesicle +http://purl.obolibrary.org/obo/UBERON_0013151,choroidal artery,artery of choroid plexus +http://purl.obolibrary.org/obo/UBERON_0013151,choroidal artery,choroid artery +http://purl.obolibrary.org/obo/UBERON_0013152,interventricular foramen of heart, +http://purl.obolibrary.org/obo/UBERON_0013153,arachnoid villus, +http://purl.obolibrary.org/obo/UBERON_0013154,1st arch maxillary endoderm,endoderm of maxillary component +http://purl.obolibrary.org/obo/UBERON_0013155,1st arch mandibular ectoderm,ectoderm of mandibular component +http://purl.obolibrary.org/obo/UBERON_0013156,1st arch mandibular endoderm,endoderm of mandibular component +http://purl.obolibrary.org/obo/UBERON_0013157,1st arch maxillary-mandibular cleft,1st arch maxillary-mandibular groove ectoderm +http://purl.obolibrary.org/obo/UBERON_0013157,1st arch maxillary-mandibular cleft,ectoderm of maxillary-mandibular groove +http://purl.obolibrary.org/obo/UBERON_0013158,foregut-midgut junction gland,gland of foregut-midgut junction +http://purl.obolibrary.org/obo/UBERON_0013159,epithalamus mantle layer,mantle layer epithalamus +http://purl.obolibrary.org/obo/UBERON_0013159,epithalamus mantle layer,mantle layer of epithalamus +http://purl.obolibrary.org/obo/UBERON_0013160,epithalamus ventricular layer,ventricular layer epithalamus +http://purl.obolibrary.org/obo/UBERON_0013160,epithalamus ventricular layer,ventricular layer of epithalamus +http://purl.obolibrary.org/obo/UBERON_0013161,left lateral ventricle,left telencephalic ventricle +http://purl.obolibrary.org/obo/UBERON_0013162,right lateral ventricle,right telencephalic ventricle +http://purl.obolibrary.org/obo/UBERON_0013164,molariform tooth,postcanine tooth +http://purl.obolibrary.org/obo/UBERON_0013165,epiglottic vallecula,vallecula epiglottica +http://purl.obolibrary.org/obo/UBERON_0013165,epiglottic vallecula,vallecula of epiglottis +http://purl.obolibrary.org/obo/UBERON_0013166,vallecula of cerebellum,vallecula cerebelli +http://purl.obolibrary.org/obo/UBERON_0013167,cricopharyngeal ligament,crico-pharyngeal ligament +http://purl.obolibrary.org/obo/UBERON_0013167,cricopharyngeal ligament,ligamentum cricopharyngeum +http://purl.obolibrary.org/obo/UBERON_0013168,thyroepiglottic ligament,ligamentum thyroepiglotticum +http://purl.obolibrary.org/obo/UBERON_0013168,thyroepiglottic ligament,thyroepiglottic ligament +http://purl.obolibrary.org/obo/UBERON_0013169,vestibular ligament,ligamentum vestibulare +http://purl.obolibrary.org/obo/UBERON_0013169,vestibular ligament,ventricular ligament +http://purl.obolibrary.org/obo/UBERON_0013169,vestibular ligament,vestibular ligament of larynx +http://purl.obolibrary.org/obo/UBERON_0013170,cricoarytenoid ligament,crico-arytenoid ligament +http://purl.obolibrary.org/obo/UBERON_0013170,cricoarytenoid ligament,ligamentum cricoaryteneoideum +http://purl.obolibrary.org/obo/UBERON_0013171,cricothyroid ligament,crico-thyroid ligament +http://purl.obolibrary.org/obo/UBERON_0013171,cricothyroid ligament,ligamentum cricothyreoideum +http://purl.obolibrary.org/obo/UBERON_0013172,cricotracheal ligament, +http://purl.obolibrary.org/obo/UBERON_0013173,anterior part of tympanic bone,anterior surface of tympanic plate +http://purl.obolibrary.org/obo/UBERON_0013173,anterior part of tympanic bone,anterior wall of tympanic cavity +http://purl.obolibrary.org/obo/UBERON_0013173,anterior part of tympanic bone,anterior wall of tympanum +http://purl.obolibrary.org/obo/UBERON_0013174,sigmoid process of tympanic bone,sigmoid process +http://purl.obolibrary.org/obo/UBERON_0013174,sigmoid process of tympanic bone,sigmoid process of auditory bulla +http://purl.obolibrary.org/obo/UBERON_0013175,nasal air sac,blowhole air sac +http://purl.obolibrary.org/obo/UBERON_0013176,phonic lip, +http://purl.obolibrary.org/obo/UBERON_0013177,dorsal bursa, +http://purl.obolibrary.org/obo/UBERON_0013178,anterior dorsal bursa, +http://purl.obolibrary.org/obo/UBERON_0013179,posterior dorsal bursa, +http://purl.obolibrary.org/obo/UBERON_0013180,bursal cartilage, +http://purl.obolibrary.org/obo/UBERON_0013181,blowhole ligament, +http://purl.obolibrary.org/obo/UBERON_0013182,core of melon organ, +http://purl.obolibrary.org/obo/UBERON_0013188,monkey lips dorsal bursa complex,MLDB complex +http://purl.obolibrary.org/obo/UBERON_0013189,junk chamber, +http://purl.obolibrary.org/obo/UBERON_0013190,entotympanic bone, +http://purl.obolibrary.org/obo/UBERON_0013191,ovarian cortex,cortex of ovary +http://purl.obolibrary.org/obo/UBERON_0013191,ovarian cortex,cortex ovarii (zona parenchymatosa) +http://purl.obolibrary.org/obo/UBERON_0013192,ovarian medulla,medulla of ovary +http://purl.obolibrary.org/obo/UBERON_0013192,ovarian medulla,medulla ovarii (zona vasculosa) +http://purl.obolibrary.org/obo/UBERON_0013193,parakeratinized epithelium, +http://purl.obolibrary.org/obo/UBERON_0013194,orthokeratinized epithelium, +http://purl.obolibrary.org/obo/UBERON_0013195,parakeratinized epithelium of gingiva,gingival parakeratinized epithelium +http://purl.obolibrary.org/obo/UBERON_0013196,strand of wool, +http://purl.obolibrary.org/obo/UBERON_0013198,cocoon, +http://purl.obolibrary.org/obo/UBERON_0013199,stria of neuraxis,neuraxis stria +http://purl.obolibrary.org/obo/UBERON_0013199,stria of neuraxis,neuraxis striae +http://purl.obolibrary.org/obo/UBERON_0013199,stria of neuraxis,stria +http://purl.obolibrary.org/obo/UBERON_0013199,stria of neuraxis,striae +http://purl.obolibrary.org/obo/UBERON_0013201,olfactory pathway, +http://purl.obolibrary.org/obo/UBERON_0013203,hypogastrium,hypogastric part of abdomen +http://purl.obolibrary.org/obo/UBERON_0013203,hypogastrium,hypogastric region +http://purl.obolibrary.org/obo/UBERON_0013203,hypogastrium,pubic part of abdomen +http://purl.obolibrary.org/obo/UBERON_0013203,hypogastrium,pubic region +http://purl.obolibrary.org/obo/UBERON_0013203,hypogastrium,regio pubica +http://purl.obolibrary.org/obo/UBERON_0013203,hypogastrium,suprapubic region +http://purl.obolibrary.org/obo/UBERON_0013204,epipubic bone, +http://purl.obolibrary.org/obo/UBERON_0013206,nasal tentacle, +http://purl.obolibrary.org/obo/UBERON_0013207,entepicondylar foramen, +http://purl.obolibrary.org/obo/UBERON_0013208,Grueneberg ganglion,Grüneberg ganglion +http://purl.obolibrary.org/obo/UBERON_0013211,cerumen gland,cerumen-secreting gland +http://purl.obolibrary.org/obo/UBERON_0013211,cerumen gland,ceruminous gland +http://purl.obolibrary.org/obo/UBERON_0013211,cerumen gland,ceruminous sweat gland +http://purl.obolibrary.org/obo/UBERON_0013211,cerumen gland,earwax gland +http://purl.obolibrary.org/obo/UBERON_0013212,anal sac gland secretion, +http://purl.obolibrary.org/obo/UBERON_0013213,ossicone, +http://purl.obolibrary.org/obo/UBERON_0013216,udder, +http://purl.obolibrary.org/obo/UBERON_0013217,zygomatic plate, +http://purl.obolibrary.org/obo/UBERON_0013218,rete mirabile, +http://purl.obolibrary.org/obo/UBERON_0013219,parotoid gland, +http://purl.obolibrary.org/obo/UBERON_0013220,foramen of Panizza, +http://purl.obolibrary.org/obo/UBERON_0013221,caudofemoralis,M. caudofemoralis +http://purl.obolibrary.org/obo/UBERON_0013221,caudofemoralis,caudofemoralis muscle +http://purl.obolibrary.org/obo/UBERON_0013222,otic notch, +http://purl.obolibrary.org/obo/UBERON_0013223,alveolar gland, +http://purl.obolibrary.org/obo/UBERON_0013224,Ciaccio's gland,Wolfring's gland +http://purl.obolibrary.org/obo/UBERON_0013224,Ciaccio's gland,gland of Wolfring +http://purl.obolibrary.org/obo/UBERON_0013224,Ciaccio's gland,gland of Wolfring and Ciacco +http://purl.obolibrary.org/obo/UBERON_0013226,accessory lacrimal gland,glandulae lacrimales accessoriae +http://purl.obolibrary.org/obo/UBERON_0013227,crypt of Henle,Henle's gland +http://purl.obolibrary.org/obo/UBERON_0013227,crypt of Henle,crypts of Henle +http://purl.obolibrary.org/obo/UBERON_0013227,crypt of Henle,gland of Henle +http://purl.obolibrary.org/obo/UBERON_0013228,sweat gland of eyelid,Moll's gland +http://purl.obolibrary.org/obo/UBERON_0013228,sweat gland of eyelid,ciliary gland +http://purl.obolibrary.org/obo/UBERON_0013228,sweat gland of eyelid,ciliary gland of moll +http://purl.obolibrary.org/obo/UBERON_0013228,sweat gland of eyelid,ciliary sweat gland of eyelid +http://purl.obolibrary.org/obo/UBERON_0013228,sweat gland of eyelid,gland of Moll +http://purl.obolibrary.org/obo/UBERON_0013229,eyelid gland,gland of eyelid +http://purl.obolibrary.org/obo/UBERON_0013230,nictitans gland, +http://purl.obolibrary.org/obo/UBERON_0013231,sebaceous gland of eyelid, +http://purl.obolibrary.org/obo/UBERON_0013232,serous acinus,acinus of serous gland +http://purl.obolibrary.org/obo/UBERON_0013233,supraorbital gland, +http://purl.obolibrary.org/obo/UBERON_0013234,violet gland, +http://purl.obolibrary.org/obo/UBERON_0013235,ventrum,front of body proper +http://purl.obolibrary.org/obo/UBERON_0013235,ventrum,ventral part of organism +http://purl.obolibrary.org/obo/UBERON_0013235,ventrum,ventral region of organism +http://purl.obolibrary.org/obo/UBERON_0013236,ventral trunk,anterolateral part of trunk +http://purl.obolibrary.org/obo/UBERON_0013236,ventral trunk,front of trunk +http://purl.obolibrary.org/obo/UBERON_0013236,ventral trunk,trunk front +http://purl.obolibrary.org/obo/UBERON_0013236,ventral trunk,trunk proper +http://purl.obolibrary.org/obo/UBERON_0013237,genital papilla of vulva,mammalian genital papilla +http://purl.obolibrary.org/obo/UBERON_0013238,future glans, +http://purl.obolibrary.org/obo/UBERON_0013239,future glans penis,glans of male genital tubercle +http://purl.obolibrary.org/obo/UBERON_0013240,future glans clitoris,glans of female genital tubercle +http://purl.obolibrary.org/obo/UBERON_0013241,embryonic urethral groove,sulcus urethralis primarius +http://purl.obolibrary.org/obo/UBERON_0013241,embryonic urethral groove,urethral groove +http://purl.obolibrary.org/obo/UBERON_0013241,embryonic urethral groove,urethral sulcus +http://purl.obolibrary.org/obo/UBERON_0013244,vaginal plate, +http://purl.obolibrary.org/obo/UBERON_0013245,sinovaginal bulb, +http://purl.obolibrary.org/obo/UBERON_0013247,male paramesonephric duct, +http://purl.obolibrary.org/obo/UBERON_0013248,paradidymis,Waldeyer's organ +http://purl.obolibrary.org/obo/UBERON_0013248,paradidymis,organ of Giraldes +http://purl.obolibrary.org/obo/UBERON_0013248,paradidymis,organ of Giraldés +http://purl.obolibrary.org/obo/UBERON_0013249,paroophoron,Kobelt's tubules +http://purl.obolibrary.org/obo/UBERON_0013250,vesicular appendage of epoophoron,appendix vesiculosus +http://purl.obolibrary.org/obo/UBERON_0013250,vesicular appendage of epoophoron,female cystic vesicular appendage +http://purl.obolibrary.org/obo/UBERON_0013262,remnnant of ductus deferens,ductus deferens vestige +http://purl.obolibrary.org/obo/UBERON_0013262,remnnant of ductus deferens,ductus deferens vestigialis +http://purl.obolibrary.org/obo/UBERON_0013262,remnnant of ductus deferens,vestige of ductus deferens +http://purl.obolibrary.org/obo/UBERON_0013277,remnant of processus vaginalis,processus vaginalis vestige +http://purl.obolibrary.org/obo/UBERON_0013277,remnant of processus vaginalis,vestige of processus vaginalis +http://purl.obolibrary.org/obo/UBERON_0013278,canal of Nuck, +http://purl.obolibrary.org/obo/UBERON_0013279,diaphysis of fibula,body of fibula +http://purl.obolibrary.org/obo/UBERON_0013279,diaphysis of fibula,corpus fibulae +http://purl.obolibrary.org/obo/UBERON_0013279,diaphysis of fibula,fibula diaphysis +http://purl.obolibrary.org/obo/UBERON_0013279,diaphysis of fibula,shaft of fibula +http://purl.obolibrary.org/obo/UBERON_0013280,diaphysis of tibia,body of tibia +http://purl.obolibrary.org/obo/UBERON_0013280,diaphysis of tibia,corpus tibiae +http://purl.obolibrary.org/obo/UBERON_0013280,diaphysis of tibia,shaft of tibia +http://purl.obolibrary.org/obo/UBERON_0013280,diaphysis of tibia,tibial diaphysis +http://purl.obolibrary.org/obo/UBERON_0013397,stratum argenteum of choroid,choroid stratum argenteum +http://purl.obolibrary.org/obo/UBERON_0013398,choroidal gland, +http://purl.obolibrary.org/obo/UBERON_0013399,blood vessel layer of choroid,lamina choroideae vasculosa +http://purl.obolibrary.org/obo/UBERON_0013399,blood vessel layer of choroid,lamina vasculosa (choroid) +http://purl.obolibrary.org/obo/UBERON_0013399,blood vessel layer of choroid,lamina vasculosa of choroid +http://purl.obolibrary.org/obo/UBERON_0013399,blood vessel layer of choroid,outer layer of choroid proper +http://purl.obolibrary.org/obo/UBERON_0013399,blood vessel layer of choroid,vessel layer of choroid +http://purl.obolibrary.org/obo/UBERON_0013403,asterion of skull, +http://purl.obolibrary.org/obo/UBERON_0013406,bregma, +http://purl.obolibrary.org/obo/UBERON_0013411,cranial cavity,cavitas cranii +http://purl.obolibrary.org/obo/UBERON_0013412,crotaphion, +http://purl.obolibrary.org/obo/UBERON_0013417,epicranium, +http://purl.obolibrary.org/obo/UBERON_0013420,groove for sigmoid sinus, +http://purl.obolibrary.org/obo/UBERON_0013422,infratemporal fossa, +http://purl.obolibrary.org/obo/UBERON_0013423,jugal point, +http://purl.obolibrary.org/obo/UBERON_0013424,anatomical point connecting sagittal and lambdoidal sutures, +http://purl.obolibrary.org/obo/UBERON_0013426,obelion, +http://purl.obolibrary.org/obo/UBERON_0013427,occipital bun, +http://purl.obolibrary.org/obo/UBERON_0013428,ophryon, +http://purl.obolibrary.org/obo/UBERON_0013436,porion, +http://purl.obolibrary.org/obo/UBERON_0013442,postorbital process, +http://purl.obolibrary.org/obo/UBERON_0013445,pterygomaxillary fissure, +http://purl.obolibrary.org/obo/UBERON_0013447,sagittal crest of skull,crista sagittalis externa +http://purl.obolibrary.org/obo/UBERON_0013448,sagittal keel, +http://purl.obolibrary.org/obo/UBERON_0013450,simian shelf, +http://purl.obolibrary.org/obo/UBERON_0013454,spheno-maxillary fossa, +http://purl.obolibrary.org/obo/UBERON_0013455,spheno-petrosal fissure,fissura sphenopetrosa +http://purl.obolibrary.org/obo/UBERON_0013455,spheno-petrosal fissure,sphenopetrosal fissure +http://purl.obolibrary.org/obo/UBERON_0013459,stephanion, +http://purl.obolibrary.org/obo/UBERON_0013460,suprainiac fossa, +http://purl.obolibrary.org/obo/UBERON_0013462,sylvian point, +http://purl.obolibrary.org/obo/UBERON_0013463,temporal fossa, +http://purl.obolibrary.org/obo/UBERON_0013468,zygomatic fossa, +http://purl.obolibrary.org/obo/UBERON_0013469,external occipital protuberance, +http://purl.obolibrary.org/obo/UBERON_0013471,retromolar space,retromolar gap +http://purl.obolibrary.org/obo/UBERON_0013472,upper esophagus, +http://purl.obolibrary.org/obo/UBERON_0013473,lower esophagus,distal part of esophagus +http://purl.obolibrary.org/obo/UBERON_0013473,lower esophagus,lower third of esophagus +http://purl.obolibrary.org/obo/UBERON_0013474,middle part of esophagus, +http://purl.obolibrary.org/obo/UBERON_0013475,gustatory gland,posterior deep lingual gland +http://purl.obolibrary.org/obo/UBERON_0013475,gustatory gland,posterior lingual serous gland +http://purl.obolibrary.org/obo/UBERON_0013475,gustatory gland,von Ebner gland +http://purl.obolibrary.org/obo/UBERON_0013475,gustatory gland,von Ebner's gland +http://purl.obolibrary.org/obo/UBERON_0013476,dermal layer of tongue,tongue (dermal layer) +http://purl.obolibrary.org/obo/UBERON_0013477,blowhole, +http://purl.obolibrary.org/obo/UBERON_0013478,cecal tonsil,caecal tonsil +http://purl.obolibrary.org/obo/UBERON_0013479,lung endothelium, +http://purl.obolibrary.org/obo/UBERON_0013481,crypt of Lieberkuhn of ileum,ileal crypt +http://purl.obolibrary.org/obo/UBERON_0013481,crypt of Lieberkuhn of ileum,ileal crypt of Lieberkuhn +http://purl.obolibrary.org/obo/UBERON_0013481,crypt of Lieberkuhn of ileum,ileal intestinal crypt +http://purl.obolibrary.org/obo/UBERON_0013482,crypt of Lieberkuhn of duodenum,duodenal crypt +http://purl.obolibrary.org/obo/UBERON_0013482,crypt of Lieberkuhn of duodenum,duodenal crypt of Lieberkuhn +http://purl.obolibrary.org/obo/UBERON_0013483,crypt of Lieberkuhn of jejunum,jejunal crypt +http://purl.obolibrary.org/obo/UBERON_0013483,crypt of Lieberkuhn of jejunum,jejunal crypt of Lieberkuhn +http://purl.obolibrary.org/obo/UBERON_0013485,crypt of Lieberkuhn of colon,colonic crypt +http://purl.obolibrary.org/obo/UBERON_0013485,crypt of Lieberkuhn of colon,colonic crypt of Lieberkuhn +http://purl.obolibrary.org/obo/UBERON_0013486,crypt of Lieberkuhn of appendix,appendiceal crypt +http://purl.obolibrary.org/obo/UBERON_0013486,crypt of Lieberkuhn of appendix,appendiceal crypt of Lieberkuhn +http://purl.obolibrary.org/obo/UBERON_0013487,epidermal ridge of digit, +http://purl.obolibrary.org/obo/UBERON_0013488,panniculus adiposus,panniculus adiposus group +http://purl.obolibrary.org/obo/UBERON_0013488,panniculus adiposus,subcutaneous fat +http://purl.obolibrary.org/obo/UBERON_0013489,superficial cervical fascia,lamina superficialis fasciae cervicalis +http://purl.obolibrary.org/obo/UBERON_0013489,superficial cervical fascia,superficial cervical fascia +http://purl.obolibrary.org/obo/UBERON_0013489,superficial cervical fascia,superficial layer of cervical fascia +http://purl.obolibrary.org/obo/UBERON_0013489,superficial cervical fascia,superficial layer of deep cervical fascia +http://purl.obolibrary.org/obo/UBERON_0013490,deep cervical fascia,deep cervical fascia +http://purl.obolibrary.org/obo/UBERON_0013490,deep cervical fascia,deep fascia of neck +http://purl.obolibrary.org/obo/UBERON_0013490,deep cervical fascia,investing cervical fascia +http://purl.obolibrary.org/obo/UBERON_0013490,deep cervical fascia,investing layer of cervical fascia +http://purl.obolibrary.org/obo/UBERON_0013491,cervical fascia,fascia of neck +http://purl.obolibrary.org/obo/UBERON_0013492,prevertebral cervical fascia,lamina prevertebralis (fascia cervicalis) +http://purl.obolibrary.org/obo/UBERON_0013492,prevertebral cervical fascia,lamina prevertebralis fasciae cervicalis +http://purl.obolibrary.org/obo/UBERON_0013492,prevertebral cervical fascia,prevertebral fascia +http://purl.obolibrary.org/obo/UBERON_0013492,prevertebral cervical fascia,prevertebral layer of cervical fascia +http://purl.obolibrary.org/obo/UBERON_0013492,prevertebral cervical fascia,prevertebral layer of deep cervical fascia +http://purl.obolibrary.org/obo/UBERON_0013493,abdominal fascia,endo-abdominopelvic fascia +http://purl.obolibrary.org/obo/UBERON_0013493,abdominal fascia,fascia of abdomen +http://purl.obolibrary.org/obo/UBERON_0013494,keratin-coated spine, +http://purl.obolibrary.org/obo/UBERON_0013495,barbed keratin-coated spine,quill +http://purl.obolibrary.org/obo/UBERON_0013496,unbarbed keratin-coated spine,hedgehog spine +http://purl.obolibrary.org/obo/UBERON_0013497,muscularis orbicularis,orbicularis muscle +http://purl.obolibrary.org/obo/UBERON_0013498,vestibulo-cochlear VIII ganglion complex,vestibulocochlear VIII ganglion complex +http://purl.obolibrary.org/obo/UBERON_0013498,vestibulo-cochlear VIII ganglion complex,vestibulocochlear ganglion complex +http://purl.obolibrary.org/obo/UBERON_0013499,glossopharyngeal-vagus IX-X preganglion complex, +http://purl.obolibrary.org/obo/UBERON_0013500,glossopharyngeal-vagus IX-X ganglion complex, +http://purl.obolibrary.org/obo/UBERON_0013501,cloacal sphincter,sphincter cloacae +http://purl.obolibrary.org/obo/UBERON_0013502,5th arch mesenchyme,5th pharyngeal arch mesenchyme +http://purl.obolibrary.org/obo/UBERON_0013503,caudal vertebra cartilage element,coccygeal vertebra cartilage element +http://purl.obolibrary.org/obo/UBERON_0013503,caudal vertebra cartilage element,coccygeal vertebral cartilage condensation group +http://purl.obolibrary.org/obo/UBERON_0013503,caudal vertebra cartilage element,tail vertebral cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0013504,caudal vertebra pre-cartilage condensation,coccygeal vertebra pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0013504,caudal vertebra pre-cartilage condensation,tail vertebral pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0013505,cervical vertebra cartilage element,cervical vertebral cartilage condensation group +http://purl.obolibrary.org/obo/UBERON_0013506,cervical vertebra pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0013507,thoracic vertebra cartilage element,thoracic vertebral cartilage condensation group +http://purl.obolibrary.org/obo/UBERON_0013508,thoracic vertebra pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0013509,lumbar vertebra cartilage element,lumbar vertebral cartilage condensation group +http://purl.obolibrary.org/obo/UBERON_0013510,lumbar vertebra pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0013511,ambiens muscle, +http://purl.obolibrary.org/obo/UBERON_0013512,row of feathers,feather row +http://purl.obolibrary.org/obo/UBERON_0013512,row of feathers,feather tract +http://purl.obolibrary.org/obo/UBERON_0013513,anal pterya, +http://purl.obolibrary.org/obo/UBERON_0013514,space surrounding organism,external to organism +http://purl.obolibrary.org/obo/UBERON_0013514,space surrounding organism,outside of body +http://purl.obolibrary.org/obo/UBERON_0013515,subdivision of oviduct,subdivision of fallopian tube +http://purl.obolibrary.org/obo/UBERON_0013515,subdivision of oviduct,subdivision of oviduct +http://purl.obolibrary.org/obo/UBERON_0013515,subdivision of oviduct,subdivision of uterine tube +http://purl.obolibrary.org/obo/UBERON_0013515,subdivision of oviduct,uterine tube zone +http://purl.obolibrary.org/obo/UBERON_0013515,subdivision of oviduct,zone of uterine tube +http://purl.obolibrary.org/obo/UBERON_0013516,uterine tube magnum,magnum of oviduct +http://purl.obolibrary.org/obo/UBERON_0013516,uterine tube magnum,magnum of uterine tube +http://purl.obolibrary.org/obo/UBERON_0013519,avian uterine tube isthmus,isthmus of oviduct +http://purl.obolibrary.org/obo/UBERON_0013519,avian uterine tube isthmus,isthmus of uterine tube +http://purl.obolibrary.org/obo/UBERON_0013522,subdivision of tube, +http://purl.obolibrary.org/obo/UBERON_0013523,lateral vaginal canal,lateral vagina +http://purl.obolibrary.org/obo/UBERON_0013523,lateral vaginal canal,lateral vaginae +http://purl.obolibrary.org/obo/UBERON_0013524,median vaginal canal,central pseudovaginal canal +http://purl.obolibrary.org/obo/UBERON_0013524,median vaginal canal,central vagina +http://purl.obolibrary.org/obo/UBERON_0013524,median vaginal canal,median pseudovaginal canal +http://purl.obolibrary.org/obo/UBERON_0013524,median vaginal canal,median vagina +http://purl.obolibrary.org/obo/UBERON_0013525,stomach lumen,cavity of stomach +http://purl.obolibrary.org/obo/UBERON_0013526,otocyst lumen,lumen of otocyst +http://purl.obolibrary.org/obo/UBERON_0013527,pectoral flipper tubercle, +http://purl.obolibrary.org/obo/UBERON_0013528,Brodmann (1909) area 11,B09-11 +http://purl.obolibrary.org/obo/UBERON_0013528,Brodmann (1909) area 11,Brodmann (1909) area 11 +http://purl.obolibrary.org/obo/UBERON_0013528,Brodmann (1909) area 11,"Brodmann area 11, prefrontal" +http://purl.obolibrary.org/obo/UBERON_0013528,Brodmann (1909) area 11,area 11 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0013528,Brodmann (1909) area 11,area 11 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0013528,Brodmann (1909) area 11,medial orbital area +http://purl.obolibrary.org/obo/UBERON_0013529,Brodmann area, +http://purl.obolibrary.org/obo/UBERON_0013531,retrosplenial region, +http://purl.obolibrary.org/obo/UBERON_0013533,Brodmann (1909) area 2,B09-2 +http://purl.obolibrary.org/obo/UBERON_0013533,Brodmann (1909) area 2,Brodmann (1909) area 2 +http://purl.obolibrary.org/obo/UBERON_0013533,Brodmann (1909) area 2,Brodmann area 2 +http://purl.obolibrary.org/obo/UBERON_0013533,Brodmann (1909) area 2,"Brodmann area 2, caudal postcentral" +http://purl.obolibrary.org/obo/UBERON_0013533,Brodmann (1909) area 2,Brodmann's area 2 +http://purl.obolibrary.org/obo/UBERON_0013533,Brodmann (1909) area 2,area 2 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0013533,Brodmann (1909) area 2,area 2 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0013533,Brodmann (1909) area 2,area postcentralis caudalis +http://purl.obolibrary.org/obo/UBERON_0013533,Brodmann (1909) area 2,caudal postcentral area +http://purl.obolibrary.org/obo/UBERON_0013535,Brodmann (1909) area 4,B09-4 +http://purl.obolibrary.org/obo/UBERON_0013535,Brodmann (1909) area 4,Brodmann (1909) area 4 +http://purl.obolibrary.org/obo/UBERON_0013535,Brodmann (1909) area 4,Brodmann area 4 +http://purl.obolibrary.org/obo/UBERON_0013535,Brodmann (1909) area 4,"Brodmann area 4, gigantopyramidal" +http://purl.obolibrary.org/obo/UBERON_0013535,Brodmann (1909) area 4,Brodmann's area 4 +http://purl.obolibrary.org/obo/UBERON_0013535,Brodmann (1909) area 4,area 4 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0013535,Brodmann (1909) area 4,area 4 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0013535,Brodmann (1909) area 4,area gigantopyramidalis +http://purl.obolibrary.org/obo/UBERON_0013535,Brodmann (1909) area 4,giant pyramidal area +http://purl.obolibrary.org/obo/UBERON_0013538,Brodmann (1909) area 7,B09-7 +http://purl.obolibrary.org/obo/UBERON_0013538,Brodmann (1909) area 7,Brodmann (1909) area 7 +http://purl.obolibrary.org/obo/UBERON_0013538,Brodmann (1909) area 7,Brodmann area 7 +http://purl.obolibrary.org/obo/UBERON_0013538,Brodmann (1909) area 7,"Brodmann area 7, superior parietal" +http://purl.obolibrary.org/obo/UBERON_0013538,Brodmann (1909) area 7,area 7 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0013538,Brodmann (1909) area 7,area 7 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0013538,Brodmann (1909) area 7,area parietalis superior +http://purl.obolibrary.org/obo/UBERON_0013539,Brodmann (1909) area 8,B09-8 +http://purl.obolibrary.org/obo/UBERON_0013539,Brodmann (1909) area 8,Brodmann (1909) area 8 +http://purl.obolibrary.org/obo/UBERON_0013539,Brodmann (1909) area 8,Brodmann area 8 +http://purl.obolibrary.org/obo/UBERON_0013539,Brodmann (1909) area 8,"Brodmann area 8, intermediate frontal" +http://purl.obolibrary.org/obo/UBERON_0013539,Brodmann (1909) area 8,area 8 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0013539,Brodmann (1909) area 8,area 8 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0013539,Brodmann (1909) area 8,area frontalis intermedia +http://purl.obolibrary.org/obo/UBERON_0013539,Brodmann (1909) area 8,intermediate frontal area +http://purl.obolibrary.org/obo/UBERON_0013540,Brodmann (1909) area 9,B09-9 +http://purl.obolibrary.org/obo/UBERON_0013540,Brodmann (1909) area 9,Brodmann (1909) area 9 +http://purl.obolibrary.org/obo/UBERON_0013540,Brodmann (1909) area 9,Brodmann area 9 +http://purl.obolibrary.org/obo/UBERON_0013540,Brodmann (1909) area 9,"Brodmann area 9, granular frontal" +http://purl.obolibrary.org/obo/UBERON_0013540,Brodmann (1909) area 9,area 9 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0013540,Brodmann (1909) area 9,area 9 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0013540,Brodmann (1909) area 9,area frontalis granularis +http://purl.obolibrary.org/obo/UBERON_0013540,Brodmann (1909) area 9,granular frontal area +http://purl.obolibrary.org/obo/UBERON_0013541,Brodmann (1909) area 10,B09-10 +http://purl.obolibrary.org/obo/UBERON_0013541,Brodmann (1909) area 10,Brodmann (1909) area 10 +http://purl.obolibrary.org/obo/UBERON_0013541,Brodmann (1909) area 10,Brodmann area 10 +http://purl.obolibrary.org/obo/UBERON_0013541,Brodmann (1909) area 10,"Brodmann area 10, frontoplar" +http://purl.obolibrary.org/obo/UBERON_0013541,Brodmann (1909) area 10,area 10 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0013541,Brodmann (1909) area 10,area 10 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0013541,Brodmann (1909) area 10,area frontopolaris +http://purl.obolibrary.org/obo/UBERON_0013541,Brodmann (1909) area 10,lateral orbital area +http://purl.obolibrary.org/obo/UBERON_0013543,Brodmann (1909) area 12,B09-12 +http://purl.obolibrary.org/obo/UBERON_0013543,Brodmann (1909) area 12,Brodmann (1909) area 12 +http://purl.obolibrary.org/obo/UBERON_0013543,Brodmann (1909) area 12,Brodmann area 12 +http://purl.obolibrary.org/obo/UBERON_0013543,Brodmann (1909) area 12,"Brodmann area 12, prefrontal" +http://purl.obolibrary.org/obo/UBERON_0013543,Brodmann (1909) area 12,area 12 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0013543,Brodmann (1909) area 12,area 12 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0013543,Brodmann (1909) area 12,area praefrontalis +http://purl.obolibrary.org/obo/UBERON_0013543,Brodmann (1909) area 12,frontopolar area +http://purl.obolibrary.org/obo/UBERON_0013544,Brodmann (1909) area 13,B09-13 +http://purl.obolibrary.org/obo/UBERON_0013544,Brodmann (1909) area 13,Brodmann (1909) area 13 +http://purl.obolibrary.org/obo/UBERON_0013544,Brodmann (1909) area 13,Brodmann area 13 +http://purl.obolibrary.org/obo/UBERON_0013544,Brodmann (1909) area 13,area 13 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0013545,Brodmann (1909) area 14,B09-14 +http://purl.obolibrary.org/obo/UBERON_0013545,Brodmann (1909) area 14,Brodmann (1909) area 14 +http://purl.obolibrary.org/obo/UBERON_0013545,Brodmann (1909) area 14,Brodmann area 14 +http://purl.obolibrary.org/obo/UBERON_0013545,Brodmann (1909) area 14,area 14 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0013546,Brodmann (1909) area 15,B09-15 +http://purl.obolibrary.org/obo/UBERON_0013546,Brodmann (1909) area 15,Brodmann (1909) area 15 +http://purl.obolibrary.org/obo/UBERON_0013546,Brodmann (1909) area 15,Brodmann area 15 +http://purl.obolibrary.org/obo/UBERON_0013546,Brodmann (1909) area 15,area 15 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0013547,Brodmann (1909) area 16,B09-16 +http://purl.obolibrary.org/obo/UBERON_0013547,Brodmann (1909) area 16,Brodmann (1909) area 16 +http://purl.obolibrary.org/obo/UBERON_0013547,Brodmann (1909) area 16,Brodmann area 16 +http://purl.obolibrary.org/obo/UBERON_0013547,Brodmann (1909) area 16,area 16 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0013547,Brodmann (1909) area 16,area 16 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0013550,Brodmann (1909) area 19,B09-19 +http://purl.obolibrary.org/obo/UBERON_0013550,Brodmann (1909) area 19,Brodmann (1909) area 19 +http://purl.obolibrary.org/obo/UBERON_0013550,Brodmann (1909) area 19,Brodmann area 19 +http://purl.obolibrary.org/obo/UBERON_0013550,Brodmann (1909) area 19,"Brodmann area 19, peristriate" +http://purl.obolibrary.org/obo/UBERON_0013550,Brodmann (1909) area 19,Brodmann's area 19 +http://purl.obolibrary.org/obo/UBERON_0013550,Brodmann (1909) area 19,area 19 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0013550,Brodmann (1909) area 19,area 19 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0013550,Brodmann (1909) area 19,area peristriata +http://purl.obolibrary.org/obo/UBERON_0013550,Brodmann (1909) area 19,preoccipital area +http://purl.obolibrary.org/obo/UBERON_0013551,Brodmann (1909) area 20,B09-20 +http://purl.obolibrary.org/obo/UBERON_0013551,Brodmann (1909) area 20,Brodmann (1909) area 20 +http://purl.obolibrary.org/obo/UBERON_0013551,Brodmann (1909) area 20,Brodmann area 20 +http://purl.obolibrary.org/obo/UBERON_0013551,Brodmann (1909) area 20,"Brodmann area 20, inferior temporal" +http://purl.obolibrary.org/obo/UBERON_0013551,Brodmann (1909) area 20,area 20 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0013551,Brodmann (1909) area 20,area 20 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0013551,Brodmann (1909) area 20,area temporalis inferior +http://purl.obolibrary.org/obo/UBERON_0013551,Brodmann (1909) area 20,inferior temporal area +http://purl.obolibrary.org/obo/UBERON_0013552,Brodmann (1909) area 21,B09-21 +http://purl.obolibrary.org/obo/UBERON_0013552,Brodmann (1909) area 21,BA21 +http://purl.obolibrary.org/obo/UBERON_0013552,Brodmann (1909) area 21,Brodmann (1909) area 21 +http://purl.obolibrary.org/obo/UBERON_0013552,Brodmann (1909) area 21,Brodmann area 21 +http://purl.obolibrary.org/obo/UBERON_0013552,Brodmann (1909) area 21,"Brodmann area 21, middle temporal" +http://purl.obolibrary.org/obo/UBERON_0013552,Brodmann (1909) area 21,area 21 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0013552,Brodmann (1909) area 21,area 21 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0013553,Brodmann (1909) area 22,B09-22 +http://purl.obolibrary.org/obo/UBERON_0013553,Brodmann (1909) area 22,Brodmann (1909) area 22 +http://purl.obolibrary.org/obo/UBERON_0013553,Brodmann (1909) area 22,Brodmann area 22 +http://purl.obolibrary.org/obo/UBERON_0013553,Brodmann (1909) area 22,"Brodmann area 22, superior temporal" +http://purl.obolibrary.org/obo/UBERON_0013553,Brodmann (1909) area 22,Superior temporal area +http://purl.obolibrary.org/obo/UBERON_0013553,Brodmann (1909) area 22,area 22 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0013553,Brodmann (1909) area 22,area 22 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0013553,Brodmann (1909) area 22,area temporalis superior +http://purl.obolibrary.org/obo/UBERON_0013554,Brodmann (1909) area 23,B09-23 +http://purl.obolibrary.org/obo/UBERON_0013554,Brodmann (1909) area 23,Brodmann (1909) area 23 +http://purl.obolibrary.org/obo/UBERON_0013554,Brodmann (1909) area 23,Brodmann area 23 +http://purl.obolibrary.org/obo/UBERON_0013554,Brodmann (1909) area 23,"Brodmann area 23, ventral posterior cingulate" +http://purl.obolibrary.org/obo/UBERON_0013554,Brodmann (1909) area 23,area 23 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0013554,Brodmann (1909) area 23,area 23 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0013554,Brodmann (1909) area 23,area cingularis posterior ventralis +http://purl.obolibrary.org/obo/UBERON_0013554,Brodmann (1909) area 23,granular cingulate area +http://purl.obolibrary.org/obo/UBERON_0013554,Brodmann (1909) area 23,posterior cingulate area +http://purl.obolibrary.org/obo/UBERON_0013556,Brodmann (1909) area 25,B09-25 +http://purl.obolibrary.org/obo/UBERON_0013556,Brodmann (1909) area 25,Brodmann (1909) area 25 +http://purl.obolibrary.org/obo/UBERON_0013556,Brodmann (1909) area 25,Brodmann area 25 +http://purl.obolibrary.org/obo/UBERON_0013556,Brodmann (1909) area 25,"Brodmann area 25, subgenual" +http://purl.obolibrary.org/obo/UBERON_0013556,Brodmann (1909) area 25,Brodmann's area 25 +http://purl.obolibrary.org/obo/UBERON_0013556,Brodmann (1909) area 25,area 25 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0013556,Brodmann (1909) area 25,area 25 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0013556,Brodmann (1909) area 25,area subgenualis +http://purl.obolibrary.org/obo/UBERON_0013558,Brodmann (1909) area 27,B09-27 +http://purl.obolibrary.org/obo/UBERON_0013558,Brodmann (1909) area 27,BA27 +http://purl.obolibrary.org/obo/UBERON_0013558,Brodmann (1909) area 27,Brodmann (1909) area 27 +http://purl.obolibrary.org/obo/UBERON_0013558,Brodmann (1909) area 27,"Brodmann area 26, presubicular" +http://purl.obolibrary.org/obo/UBERON_0013558,Brodmann (1909) area 27,Brodmann area 27 +http://purl.obolibrary.org/obo/UBERON_0013558,Brodmann (1909) area 27,area 27 +http://purl.obolibrary.org/obo/UBERON_0013558,Brodmann (1909) area 27,area 27 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0013558,Brodmann (1909) area 27,area 27 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0013558,Brodmann (1909) area 27,area praesubicularis +http://purl.obolibrary.org/obo/UBERON_0013558,Brodmann (1909) area 27,presubicular area +http://purl.obolibrary.org/obo/UBERON_0013559,Brodmann (1909) area 28,B09-28 +http://purl.obolibrary.org/obo/UBERON_0013559,Brodmann (1909) area 28,BA28 +http://purl.obolibrary.org/obo/UBERON_0013559,Brodmann (1909) area 28,Brodmann (1909) area 28 +http://purl.obolibrary.org/obo/UBERON_0013559,Brodmann (1909) area 28,Brodmann area 28 +http://purl.obolibrary.org/obo/UBERON_0013559,Brodmann (1909) area 28,"Brodmann area 28, entorhinal" +http://purl.obolibrary.org/obo/UBERON_0013559,Brodmann (1909) area 28,area 28 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0013559,Brodmann (1909) area 28,area 28 of Brodmann (Crosby) +http://purl.obolibrary.org/obo/UBERON_0013559,Brodmann (1909) area 28,area 28 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0013559,Brodmann (1909) area 28,area entorhinalis +http://purl.obolibrary.org/obo/UBERON_0013559,Brodmann (1909) area 28,area entorhinalis ventralis +http://purl.obolibrary.org/obo/UBERON_0013560,Brodmann (1909) area 32,B09-32 +http://purl.obolibrary.org/obo/UBERON_0013560,Brodmann (1909) area 32,Brodmann (1909) area 32 +http://purl.obolibrary.org/obo/UBERON_0013560,Brodmann (1909) area 32,Brodmann area 32 +http://purl.obolibrary.org/obo/UBERON_0013560,Brodmann (1909) area 32,"Brodmann area 32, dorsal anterior cingulate" +http://purl.obolibrary.org/obo/UBERON_0013560,Brodmann (1909) area 32,area 32 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0013560,Brodmann (1909) area 32,area 32 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0013560,Brodmann (1909) area 32,area cingularis anterior dorsalis +http://purl.obolibrary.org/obo/UBERON_0013561,Brodmann (1909) area 43,B09-43 +http://purl.obolibrary.org/obo/UBERON_0013561,Brodmann (1909) area 43,Brodmann (1909) area 43 +http://purl.obolibrary.org/obo/UBERON_0013561,Brodmann (1909) area 43,Brodmann area 43 +http://purl.obolibrary.org/obo/UBERON_0013561,Brodmann (1909) area 43,"Brodmann area 43, subcentral" +http://purl.obolibrary.org/obo/UBERON_0013561,Brodmann (1909) area 43,area 43 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0013561,Brodmann (1909) area 43,area 43 of brodmann +http://purl.obolibrary.org/obo/UBERON_0013561,Brodmann (1909) area 43,area subcentralis +http://purl.obolibrary.org/obo/UBERON_0013562,Brodmann (1909) area 8a,B09-8a +http://purl.obolibrary.org/obo/UBERON_0013562,Brodmann (1909) area 8a,Brodmann (1909) area 8a +http://purl.obolibrary.org/obo/UBERON_0013562,Brodmann (1909) area 8a,Brodmann area 8a +http://purl.obolibrary.org/obo/UBERON_0013562,Brodmann (1909) area 8a,area 8a of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0013573,Brodmann (1909) area 40,B09-40 +http://purl.obolibrary.org/obo/UBERON_0013573,Brodmann (1909) area 40,Brodmann (1909) area 40 +http://purl.obolibrary.org/obo/UBERON_0013573,Brodmann (1909) area 40,Brodmann area 40 +http://purl.obolibrary.org/obo/UBERON_0013573,Brodmann (1909) area 40,"Brodmann area 40, supramarginal" +http://purl.obolibrary.org/obo/UBERON_0013573,Brodmann (1909) area 40,Supramarginal area 40 +http://purl.obolibrary.org/obo/UBERON_0013573,Brodmann (1909) area 40,area 40 of Brodmann +http://purl.obolibrary.org/obo/UBERON_0013573,Brodmann (1909) area 40,area 40 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_0013573,Brodmann (1909) area 40,area supramarginalis +http://purl.obolibrary.org/obo/UBERON_0013581,metapodium bone 1,metapodium 1 +http://purl.obolibrary.org/obo/UBERON_0013581,metapodium bone 1,metapodium I +http://purl.obolibrary.org/obo/UBERON_0013582,metapodium bone 2,metapodium 2 +http://purl.obolibrary.org/obo/UBERON_0013582,metapodium bone 2,metapodium II +http://purl.obolibrary.org/obo/UBERON_0013583,metapodium bone 3,3rd metapodium bone +http://purl.obolibrary.org/obo/UBERON_0013583,metapodium bone 3,metapodial bone III +http://purl.obolibrary.org/obo/UBERON_0013583,metapodium bone 3,metapodium 3 +http://purl.obolibrary.org/obo/UBERON_0013583,metapodium bone 3,metapodium III +http://purl.obolibrary.org/obo/UBERON_0013584,metapodium bone 4,metapodium 4 +http://purl.obolibrary.org/obo/UBERON_0013584,metapodium bone 4,metapodium IV +http://purl.obolibrary.org/obo/UBERON_0013585,metapodium bone 5,metapodium 5 +http://purl.obolibrary.org/obo/UBERON_0013585,metapodium bone 5,metapodium V +http://purl.obolibrary.org/obo/UBERON_0013586,fused metapodial bones 3 and 4,fused metapodials 3/4 +http://purl.obolibrary.org/obo/UBERON_0013586,fused metapodial bones 3 and 4,os metapodiale III et IV +http://purl.obolibrary.org/obo/UBERON_0013587,fused metacarpal bones 3 and 4,fused metacarpal 3/4 +http://purl.obolibrary.org/obo/UBERON_0013587,fused metacarpal bones 3 and 4,os metacarpale III et IV +http://purl.obolibrary.org/obo/UBERON_0013588,fused metatarsal bones 3 and 4,fused metatarsal 3/4 +http://purl.obolibrary.org/obo/UBERON_0013588,fused metatarsal bones 3 and 4,os metatarsale III et IV (Ru) +http://purl.obolibrary.org/obo/UBERON_0013589,koniocortex, +http://purl.obolibrary.org/obo/UBERON_0013590,cruciate sulcus,cruciate sulci +http://purl.obolibrary.org/obo/UBERON_0013591,postsylvian sulcus, +http://purl.obolibrary.org/obo/UBERON_0013592,presylvian sulcus, +http://purl.obolibrary.org/obo/UBERON_0013593,suprasylvian sulcus, +http://purl.obolibrary.org/obo/UBERON_0013594,ectosylvian sulcus, +http://purl.obolibrary.org/obo/UBERON_0013595,postlateral sulcus, +http://purl.obolibrary.org/obo/UBERON_0013596,brain coronal sulcus,coronal sulcus of brain +http://purl.obolibrary.org/obo/UBERON_0013598,accessory nucleus of optic tract,nuclei accessorii tractus optici +http://purl.obolibrary.org/obo/UBERON_0013598,accessory nucleus of optic tract,nucleus of accessory optic system +http://purl.obolibrary.org/obo/UBERON_0013598,accessory nucleus of optic tract,terminal nucleus of accessory optic tract +http://purl.obolibrary.org/obo/UBERON_0013599,dorsal accessory nucleus of optic tract,dorsal terminal nucleus of accessory optic tract +http://purl.obolibrary.org/obo/UBERON_0013599,dorsal accessory nucleus of optic tract,dorsal terminal nucleus of the accessory optic tract +http://purl.obolibrary.org/obo/UBERON_0013599,dorsal accessory nucleus of optic tract,nucleus accessorius posterior tractus optici +http://purl.obolibrary.org/obo/UBERON_0013599,dorsal accessory nucleus of optic tract,posterior accessory nucleus of optic tract +http://purl.obolibrary.org/obo/UBERON_0013599,dorsal accessory nucleus of optic tract,posterior terminal nucleus of accessory optic tract +http://purl.obolibrary.org/obo/UBERON_0013600,lateral accessory nucleus of optic tract,lateral terminal nucleus of the accessory optic tract +http://purl.obolibrary.org/obo/UBERON_0013600,lateral accessory nucleus of optic tract,nucleus accessorius lateralis tractus optici +http://purl.obolibrary.org/obo/UBERON_0013601,medial accessory nucleus of optic tract,medial terminal nucleus of the accessory optic tract +http://purl.obolibrary.org/obo/UBERON_0013601,medial accessory nucleus of optic tract,nucleus accessorius medialis tractus optici +http://purl.obolibrary.org/obo/UBERON_0013605,layer of lateral geniculate body, +http://purl.obolibrary.org/obo/UBERON_0013606,magnocellular layer of dorsal nucleus of lateral geniculate body,lateral geniculate nucleus magnocellular layer +http://purl.obolibrary.org/obo/UBERON_0013606,magnocellular layer of dorsal nucleus of lateral geniculate body,magnocellular layer of lateral geniculate nucleus +http://purl.obolibrary.org/obo/UBERON_0013606,magnocellular layer of dorsal nucleus of lateral geniculate body,strata magnocellularia nuclei dorsalis corporis geniculati lateralis +http://purl.obolibrary.org/obo/UBERON_0013607,parvocellular layer of dorsal nucleus of lateral geniculate body,parvocellular layer of lateral geniculate nucleus +http://purl.obolibrary.org/obo/UBERON_0013607,parvocellular layer of dorsal nucleus of lateral geniculate body,strata parvocellularia nuclei dorsalis corporis geniculati lateralis +http://purl.obolibrary.org/obo/UBERON_0013608,inferior olive dorsal accessory nucleus,dorsal accessory nucleus of inferior olivary complex +http://purl.obolibrary.org/obo/UBERON_0013609,inferior olive medial accessory nucleus,medial accessory nucleus of inferior olivary complex +http://purl.obolibrary.org/obo/UBERON_0013610,inferior olive ventral accessory nucleus,ventral accessory nucleus of inferior olivary complex +http://purl.obolibrary.org/obo/UBERON_0013612,lower jaw cingulum, +http://purl.obolibrary.org/obo/UBERON_0013613,upper jaw cingulum, +http://purl.obolibrary.org/obo/UBERON_0013614,fasciculus aberans, +http://purl.obolibrary.org/obo/UBERON_0013615,koniocellular layer of dorsal nucleus of lateral geniculate body,konioocellular layer of lateral geniculate nucleus +http://purl.obolibrary.org/obo/UBERON_0013615,koniocellular layer of dorsal nucleus of lateral geniculate body,stratum koniocellulare nuclei dorsalis corporis geniculati lateralis +http://purl.obolibrary.org/obo/UBERON_0013616,primary molar tooth,deciduous molar tooth +http://purl.obolibrary.org/obo/UBERON_0013616,primary molar tooth,primary molar tooth +http://purl.obolibrary.org/obo/UBERON_0013616,primary molar tooth,temporary molar tooth +http://purl.obolibrary.org/obo/UBERON_0013617,upper primary molar tooth,primary upper molar tooth +http://purl.obolibrary.org/obo/UBERON_0013617,upper primary molar tooth,upper deciduous molar +http://purl.obolibrary.org/obo/UBERON_0013617,upper primary molar tooth,upper deciduous molar tooth +http://purl.obolibrary.org/obo/UBERON_0013617,upper primary molar tooth,upper primary molar tooth +http://purl.obolibrary.org/obo/UBERON_0013618,secondary molar tooth,permanent molar tooth +http://purl.obolibrary.org/obo/UBERON_0013618,secondary molar tooth,secondary molar tooth +http://purl.obolibrary.org/obo/UBERON_0013619,upper secondary molar tooth,maxillary secondary molar tooth +http://purl.obolibrary.org/obo/UBERON_0013619,upper secondary molar tooth,upper permanent molar tooth +http://purl.obolibrary.org/obo/UBERON_0013619,upper secondary molar tooth,upper secondary molar tooth +http://purl.obolibrary.org/obo/UBERON_0013620,lower primary molar tooth,lower deciduous molar tooth +http://purl.obolibrary.org/obo/UBERON_0013620,lower primary molar tooth,primary lower molar tooth +http://purl.obolibrary.org/obo/UBERON_0013621,lower secondary molar tooth,lower permanent molar +http://purl.obolibrary.org/obo/UBERON_0013621,lower secondary molar tooth,lower permanent molar tooth +http://purl.obolibrary.org/obo/UBERON_0013621,lower secondary molar tooth,mandibular secondary molar tooth +http://purl.obolibrary.org/obo/UBERON_0013622,manual autopod pad, +http://purl.obolibrary.org/obo/UBERON_0013623,pedal autopod pad, +http://purl.obolibrary.org/obo/UBERON_0013626,medial metatarsal pad,thenar pad +http://purl.obolibrary.org/obo/UBERON_0013627,lateral metatarsal pad,hypothenar pad +http://purl.obolibrary.org/obo/UBERON_0013628,pollical pad,interdigital pad 1 of manus +http://purl.obolibrary.org/obo/UBERON_0013629,hallical pad,interdigital pad 1 of pes +http://purl.obolibrary.org/obo/UBERON_0013630,short bone, +http://purl.obolibrary.org/obo/UBERON_0013631,sesamoid element,sesamoid +http://purl.obolibrary.org/obo/UBERON_0013632,sesamoid cartilage,cartilago sesamoidea +http://purl.obolibrary.org/obo/UBERON_0013632,sesamoid cartilage,sesamoid cartilage of cricopharyngeal ligament +http://purl.obolibrary.org/obo/UBERON_0013633,intertrochanteric crest, +http://purl.obolibrary.org/obo/UBERON_0013634,intertrochanteric line, +http://purl.obolibrary.org/obo/UBERON_0013635,sphincter colli muscle,sphincter colli +http://purl.obolibrary.org/obo/UBERON_0013636,epithelium of intestinal villus,intestinal villus epithelium +http://purl.obolibrary.org/obo/UBERON_0013637,prostate gland lateral lobe,lateral lobe of prostate +http://purl.obolibrary.org/obo/UBERON_0013637,prostate gland lateral lobe,lateral lobe of prostate gland +http://purl.obolibrary.org/obo/UBERON_0013638,horny papilla of tongue,horny papilla +http://purl.obolibrary.org/obo/UBERON_0013639,mechanical papilla of tongue,mechanical papilla +http://purl.obolibrary.org/obo/UBERON_0013640,internal cheek pouch,internal buccal pouch +http://purl.obolibrary.org/obo/UBERON_0013641,external cheek pouch,external buccal pouch +http://purl.obolibrary.org/obo/UBERON_0013642,ring of oral cilia, +http://purl.obolibrary.org/obo/UBERON_0013643,lophophore, +http://purl.obolibrary.org/obo/UBERON_0013644,duodenal ampulla,ampulla (duodenum) +http://purl.obolibrary.org/obo/UBERON_0013644,duodenal ampulla,ampulla duodeni +http://purl.obolibrary.org/obo/UBERON_0013644,duodenal ampulla,ampulla of duodenum +http://purl.obolibrary.org/obo/UBERON_0013644,duodenal ampulla,bulbus (duodenum) +http://purl.obolibrary.org/obo/UBERON_0013644,duodenal ampulla,bulbus duodeni +http://purl.obolibrary.org/obo/UBERON_0013644,duodenal ampulla,duodenal cap +http://purl.obolibrary.org/obo/UBERON_0013644,duodenal ampulla,duodenal cap viewed radiologically +http://purl.obolibrary.org/obo/UBERON_0013645,gular gland, +http://purl.obolibrary.org/obo/UBERON_0013646,buccal nerve,buccinator nerve +http://purl.obolibrary.org/obo/UBERON_0013646,buccal nerve,long buccal nerve +http://purl.obolibrary.org/obo/UBERON_0013647,lateral pterygoid nerve,branch of buccal nerve to lateral pterygoid +http://purl.obolibrary.org/obo/UBERON_0013647,lateral pterygoid nerve,nerve to lateral pterygoid +http://purl.obolibrary.org/obo/UBERON_0013647,lateral pterygoid nerve,nervus pterygoideus lateralis +http://purl.obolibrary.org/obo/UBERON_0013648,masseteric artery,arteria masseterica +http://purl.obolibrary.org/obo/UBERON_0013649,fused tarsal bones 1 and 2,fused tarsals 1 and 2 +http://purl.obolibrary.org/obo/UBERON_0013649,fused tarsal bones 1 and 2,os cuneiforme mediointermedium +http://purl.obolibrary.org/obo/UBERON_0013649,fused tarsal bones 1 and 2,os tarsale I et II +http://purl.obolibrary.org/obo/UBERON_0013653,velar skeleton,skeleton of velum +http://purl.obolibrary.org/obo/UBERON_0013655,elastica externa of notochord,elastica externa +http://purl.obolibrary.org/obo/UBERON_0013655,elastica externa of notochord,membrana elastica externa +http://purl.obolibrary.org/obo/UBERON_0013656,dulla,dulaa +http://purl.obolibrary.org/obo/UBERON_0013656,dulla,dulah +http://purl.obolibrary.org/obo/UBERON_0013657,hump,CamelHump +http://purl.obolibrary.org/obo/UBERON_0013657,hump,camel hump +http://purl.obolibrary.org/obo/UBERON_0013658,corpus cavernosum maxillaris,palatal corpus cavernosum maxillaris +http://purl.obolibrary.org/obo/UBERON_0013658,corpus cavernosum maxillaris,palatal reital organ +http://purl.obolibrary.org/obo/UBERON_0013659,spongiose tissue of corpus cavernosum maxillaris, +http://purl.obolibrary.org/obo/UBERON_0013670,midline of corpus cavernosum maxillaris, +http://purl.obolibrary.org/obo/UBERON_0013671,nerve ending of of corpus cavernosum maxillaris, +http://purl.obolibrary.org/obo/UBERON_0013672,priapium, +http://purl.obolibrary.org/obo/UBERON_0013673,os priapium, +http://purl.obolibrary.org/obo/UBERON_0013674,ctenactinium, +http://purl.obolibrary.org/obo/UBERON_0013675,toxactinium, +http://purl.obolibrary.org/obo/UBERON_0013676,aproctal bone of priapium, +http://purl.obolibrary.org/obo/UBERON_0013677,serrated projection of ctenactinium, +http://purl.obolibrary.org/obo/UBERON_0013678,anatomical line between inner canthi,inter inner canthal line +http://purl.obolibrary.org/obo/UBERON_0013678,anatomical line between inner canthi,inter medial canthal line +http://purl.obolibrary.org/obo/UBERON_0013679,inner canthus of right eye,right inner canthus +http://purl.obolibrary.org/obo/UBERON_0013679,inner canthus of right eye,right medial canthus +http://purl.obolibrary.org/obo/UBERON_0013679,inner canthus of right eye,right medial palpebral commissure +http://purl.obolibrary.org/obo/UBERON_0013680,inner canthus of left eye,left inner canthus +http://purl.obolibrary.org/obo/UBERON_0013680,inner canthus of left eye,left medial canthus +http://purl.obolibrary.org/obo/UBERON_0013680,inner canthus of left eye,left medial palpebral commissure +http://purl.obolibrary.org/obo/UBERON_0013682,peripheral region of retina,peripheral retina +http://purl.obolibrary.org/obo/UBERON_0013683,left dorsal thalamus, +http://purl.obolibrary.org/obo/UBERON_0013684,right dorsal thalamus, +http://purl.obolibrary.org/obo/UBERON_0013685,foramen of skull,foramen of skull +http://purl.obolibrary.org/obo/UBERON_0013686,anatomical conduit space, +http://purl.obolibrary.org/obo/UBERON_0013687,pericranium,periosteum externum cranii +http://purl.obolibrary.org/obo/UBERON_0013688,tonsil germinal center, +http://purl.obolibrary.org/obo/UBERON_0013689,appendix lymphoid tissue,lymphatic tissue of appendix +http://purl.obolibrary.org/obo/UBERON_0013689,appendix lymphoid tissue,lymphatic tissue of vermiform appendix +http://purl.obolibrary.org/obo/UBERON_0013691,buttock,clunis +http://purl.obolibrary.org/obo/UBERON_0013691,buttock,gluteal part of pelvic girdle +http://purl.obolibrary.org/obo/UBERON_0013691,buttock,gluteal region +http://purl.obolibrary.org/obo/UBERON_0013691,buttock,regio glutealis +http://purl.obolibrary.org/obo/UBERON_0013692,inframammary fold, +http://purl.obolibrary.org/obo/UBERON_0013693,cerebral cortex neuropil,neuropil of cerebral cortex +http://purl.obolibrary.org/obo/UBERON_0013694,brain endothelium, +http://purl.obolibrary.org/obo/UBERON_0013695,colon endothelium, +http://purl.obolibrary.org/obo/UBERON_0013696,tonsil epithelium, +http://purl.obolibrary.org/obo/UBERON_0013697,exocrine pancreas epithelium, +http://purl.obolibrary.org/obo/UBERON_0013698,strand of pubic hair,pubic hair +http://purl.obolibrary.org/obo/UBERON_0013699,strand of axillary hair,axilla hair +http://purl.obolibrary.org/obo/UBERON_0013699,strand of axillary hair,axillary hair +http://purl.obolibrary.org/obo/UBERON_0013699,strand of axillary hair,hair of axilla +http://purl.obolibrary.org/obo/UBERON_0013700,axial musculature, +http://purl.obolibrary.org/obo/UBERON_0013701,main body axis, +http://purl.obolibrary.org/obo/UBERON_0013702,body proper,body +http://purl.obolibrary.org/obo/UBERON_0013702,body proper,whole body +http://purl.obolibrary.org/obo/UBERON_0013703,integumentary projection, +http://purl.obolibrary.org/obo/UBERON_0013704,notochordal canal, +http://purl.obolibrary.org/obo/UBERON_0013705,fascia of Scarpa,Colles' fascia +http://purl.obolibrary.org/obo/UBERON_0013705,fascia of Scarpa,Scarpa's fascia +http://purl.obolibrary.org/obo/UBERON_0013705,fascia of Scarpa,deep layer of superficial fascia of abdomen +http://purl.obolibrary.org/obo/UBERON_0013705,fascia of Scarpa,membranous layer of subcutaneous tissue of abdomen +http://purl.obolibrary.org/obo/UBERON_0013705,fascia of Scarpa,membranous layer of superficial fascia of abdomen +http://purl.obolibrary.org/obo/UBERON_0013705,fascia of Scarpa,stratum membranosum telae subcutaneae abdominis +http://purl.obolibrary.org/obo/UBERON_0013706,bone spine, +http://purl.obolibrary.org/obo/UBERON_0013707,iliac spine, +http://purl.obolibrary.org/obo/UBERON_0013708,anterior superior iliac spine,anterior superior iliac spine (volume) +http://purl.obolibrary.org/obo/UBERON_0013709,anterior inferior iliac spine,anterior inferior iliac spine (volume) +http://purl.obolibrary.org/obo/UBERON_0013710,posterior superior iliac spine,posterior superior iliac spine (volume) +http://purl.obolibrary.org/obo/UBERON_0013711,posterior inferior iliac spine,posterior inferior iliac spine (volume) +http://purl.obolibrary.org/obo/UBERON_0013712,anterior iliac spine, +http://purl.obolibrary.org/obo/UBERON_0013713,posterior iliac spine, +http://purl.obolibrary.org/obo/UBERON_0013715,ilio-marsupialis muscle,M. ilio-marsupialis +http://purl.obolibrary.org/obo/UBERON_0013715,ilio-marsupialis muscle,ilio-marsupialis +http://purl.obolibrary.org/obo/UBERON_0013716,branch of ilio-marsupialis muscle, +http://purl.obolibrary.org/obo/UBERON_0013717,superficial inguinal ring, +http://purl.obolibrary.org/obo/UBERON_0013718,dartos muscle, +http://purl.obolibrary.org/obo/UBERON_0013719,dartos muscle of scrotum,dartos layer of scrotum +http://purl.obolibrary.org/obo/UBERON_0013720,dartos muscle of labia majora,dartos layer of labia +http://purl.obolibrary.org/obo/UBERON_0013721,deep inguinal ring, +http://purl.obolibrary.org/obo/UBERON_0013725,anterior talofibular ligament,ligamentum talofibulare anterius +http://purl.obolibrary.org/obo/UBERON_0013726,posterior talofibular ligament,ligamentum talofibulare posterius +http://purl.obolibrary.org/obo/UBERON_0013727,notochordal fluid,notochord fluid +http://purl.obolibrary.org/obo/UBERON_0013727,notochordal fluid,portion of notochordal fluid +http://purl.obolibrary.org/obo/UBERON_0013730,mycetome, +http://purl.obolibrary.org/obo/UBERON_0013731,basilar papilla,papilla basilaris +http://purl.obolibrary.org/obo/UBERON_0013732,vestibule of nasal cavity, +http://purl.obolibrary.org/obo/UBERON_0013733,caudal linear nucleus,CLi +http://purl.obolibrary.org/obo/UBERON_0013733,caudal linear nucleus,posterior linear nucleus +http://purl.obolibrary.org/obo/UBERON_0013734,rostral linear nucleus,RLi +http://purl.obolibrary.org/obo/UBERON_0013734,rostral linear nucleus,anterior linear nucleus +http://purl.obolibrary.org/obo/UBERON_0013736,interfascicular linear nucleus, +http://purl.obolibrary.org/obo/UBERON_0013737,paranigral nucleus, +http://purl.obolibrary.org/obo/UBERON_0013738,parabrachial pigmental nucleus,parabrachial pigmented nucleus +http://purl.obolibrary.org/obo/UBERON_0013739,base of crypt of Lieberkuhn,basal portion of intestinal gland +http://purl.obolibrary.org/obo/UBERON_0013739,base of crypt of Lieberkuhn,base of intestinal gland +http://purl.obolibrary.org/obo/UBERON_0013739,base of crypt of Lieberkuhn,base part of epithelium of intestinal gland +http://purl.obolibrary.org/obo/UBERON_0013740,wall of crypt of Lieberkuhn,wall of intestinal gland +http://purl.obolibrary.org/obo/UBERON_0013740,wall of crypt of Lieberkuhn,wall part of epithelium of intestinal gland +http://purl.obolibrary.org/obo/UBERON_0013741,base of crypt of Lieberkuhn of large intestine, +http://purl.obolibrary.org/obo/UBERON_0013742,wall of crypt of Lieberkuhn of large intestine, +http://purl.obolibrary.org/obo/UBERON_0013743,base of crypt of Lieberkuhn of small intestine, +http://purl.obolibrary.org/obo/UBERON_0013744,wall of crypt of Lieberkuhn of small intestine, +http://purl.obolibrary.org/obo/UBERON_0013745,zona intermedia of adrenal gland,zona intermedia +http://purl.obolibrary.org/obo/UBERON_0013745,zona intermedia of adrenal gland,zona intermedia of suprarenal gland +http://purl.obolibrary.org/obo/UBERON_0013746,basibranchial element,basibranchial +http://purl.obolibrary.org/obo/UBERON_0013746,basibranchial element,basibranchials +http://purl.obolibrary.org/obo/UBERON_0013747,basibranchial cartilage, +http://purl.obolibrary.org/obo/UBERON_0013748,ulnar metaphysis,metaphysis of ulna +http://purl.obolibrary.org/obo/UBERON_0013749,metaphysis of humerus,diaphyseal end of humerus +http://purl.obolibrary.org/obo/UBERON_0013749,metaphysis of humerus,humeral metaphysis +http://purl.obolibrary.org/obo/UBERON_0013750,metaphysis of tibia,tibial metaphysis +http://purl.obolibrary.org/obo/UBERON_0013751,metaphysis of radius,radial metaphysis +http://purl.obolibrary.org/obo/UBERON_0013752,diaphysis of metacarpal bone,body of metacarpal +http://purl.obolibrary.org/obo/UBERON_0013752,diaphysis of metacarpal bone,corpus ossis metacarpi +http://purl.obolibrary.org/obo/UBERON_0013752,diaphysis of metacarpal bone,metacarpal bone diaphysis +http://purl.obolibrary.org/obo/UBERON_0013752,diaphysis of metacarpal bone,shaft of metacarpal +http://purl.obolibrary.org/obo/UBERON_0013752,diaphysis of metacarpal bone,shaft of metacarpal bone +http://purl.obolibrary.org/obo/UBERON_0013753,distal epiphysis of metacarpal bone,caput ossis metacarpi +http://purl.obolibrary.org/obo/UBERON_0013753,distal epiphysis of metacarpal bone,distal end of metacarpal bone +http://purl.obolibrary.org/obo/UBERON_0013753,distal epiphysis of metacarpal bone,head of metacarpal bone +http://purl.obolibrary.org/obo/UBERON_0013753,distal epiphysis of metacarpal bone,lower end of metacarpal bone +http://purl.obolibrary.org/obo/UBERON_0013754,integumentary system layer,layer of skin +http://purl.obolibrary.org/obo/UBERON_0013754,integumentary system layer,skin layer +http://purl.obolibrary.org/obo/UBERON_0013755,arterial blood,arterial blood +http://purl.obolibrary.org/obo/UBERON_0013755,arterial blood,blood in artery +http://purl.obolibrary.org/obo/UBERON_0013755,arterial blood,portion of arterial blood +http://purl.obolibrary.org/obo/UBERON_0013756,venous blood,blood in vein +http://purl.obolibrary.org/obo/UBERON_0013756,venous blood,portion of venous blood +http://purl.obolibrary.org/obo/UBERON_0013756,venous blood,venous blood +http://purl.obolibrary.org/obo/UBERON_0013757,capillary blood,blood in capillary +http://purl.obolibrary.org/obo/UBERON_0013757,capillary blood,portion of blood in capillary +http://purl.obolibrary.org/obo/UBERON_0013757,capillary blood,portion of capillary blood +http://purl.obolibrary.org/obo/UBERON_0013758,cervical os, +http://purl.obolibrary.org/obo/UBERON_0013759,internal cervical os, +http://purl.obolibrary.org/obo/UBERON_0013760,external cervical os,external os of uterus +http://purl.obolibrary.org/obo/UBERON_0013760,external cervical os,ostium uteri +http://purl.obolibrary.org/obo/UBERON_0013761,cervical cavity,lumen of cervix of uterus +http://purl.obolibrary.org/obo/UBERON_0013764,common crus of semicircular duct,common membranous limb of membranous semicircular ducts +http://purl.obolibrary.org/obo/UBERON_0013764,common crus of semicircular duct,common membranous limb of semicircular ducts +http://purl.obolibrary.org/obo/UBERON_0013764,common crus of semicircular duct,crus membranaceum commune ductus semicircularis +http://purl.obolibrary.org/obo/UBERON_0013764,common crus of semicircular duct,crus membranaceum commune ductuum semicircularium +http://purl.obolibrary.org/obo/UBERON_0013765,digestive system element,digestive organ +http://purl.obolibrary.org/obo/UBERON_0013765,digestive system element,digestive system organ +http://purl.obolibrary.org/obo/UBERON_0013766,epicanthal fold,epicanthic fold +http://purl.obolibrary.org/obo/UBERON_0013766,epicanthal fold,epicanthus +http://purl.obolibrary.org/obo/UBERON_0013766,epicanthal fold,eye fold +http://purl.obolibrary.org/obo/UBERON_0013766,epicanthal fold,medial canthic fold +http://purl.obolibrary.org/obo/UBERON_0013766,epicanthal fold,palpebronasal fold +http://purl.obolibrary.org/obo/UBERON_0013766,epicanthal fold,plica palpebronasalis +http://purl.obolibrary.org/obo/UBERON_0013767,frontal process of maxilla,processus frontalis (maxilla) +http://purl.obolibrary.org/obo/UBERON_0013768,great vessel of heart,great vessel +http://purl.obolibrary.org/obo/UBERON_0013768,great vessel of heart,great vessel of thorax +http://purl.obolibrary.org/obo/UBERON_0013769,uterine lumen,cavity of uterus +http://purl.obolibrary.org/obo/UBERON_0013769,uterine lumen,uterine cavity +http://purl.obolibrary.org/obo/UBERON_0013769,uterine lumen,uterine space +http://purl.obolibrary.org/obo/UBERON_0013770,intermammary cleft, +http://purl.obolibrary.org/obo/UBERON_0013771,line connecting laterally paired nipples,intermammary line +http://purl.obolibrary.org/obo/UBERON_0013772,left nipple, +http://purl.obolibrary.org/obo/UBERON_0013773,right nipple, +http://purl.obolibrary.org/obo/UBERON_0013774,diaphysis of metatarsal bone,diaphysis of metatarsal +http://purl.obolibrary.org/obo/UBERON_0013774,diaphysis of metatarsal bone,metatarsal bone diaphysis +http://purl.obolibrary.org/obo/UBERON_0013774,diaphysis of metatarsal bone,metatarsal diaphysis +http://purl.obolibrary.org/obo/UBERON_0013774,diaphysis of metatarsal bone,shaft of metatarsal bone +http://purl.obolibrary.org/obo/UBERON_0013776,skin of palmar/plantar part of autopod, +http://purl.obolibrary.org/obo/UBERON_0013777,skin of palm of manus,palmar skin of hand +http://purl.obolibrary.org/obo/UBERON_0013777,skin of palm of manus,skin of palmar area of hand +http://purl.obolibrary.org/obo/UBERON_0013778,skin of sole of pes,plantar skin of foot +http://purl.obolibrary.org/obo/UBERON_0013778,skin of sole of pes,skin of plantar part of foot +http://purl.obolibrary.org/obo/UBERON_0013778,skin of sole of pes,skin of sole of foot +http://purl.obolibrary.org/obo/UBERON_0014169,nigrostriatal tract,comb bundle +http://purl.obolibrary.org/obo/UBERON_0014169,nigrostriatal tract,nigrostriatal bundle +http://purl.obolibrary.org/obo/UBERON_0014169,nigrostriatal tract,nigrostriatal fibers +http://purl.obolibrary.org/obo/UBERON_0014169,nigrostriatal tract,nigrostriatal tract +http://purl.obolibrary.org/obo/UBERON_0014277,piriform cortex layer 1,layer 1 of piriform cortex +http://purl.obolibrary.org/obo/UBERON_0014277,piriform cortex layer 1,piriform cortex layer 1 +http://purl.obolibrary.org/obo/UBERON_0014277,piriform cortex layer 1,piriform cortex plexiform layer +http://purl.obolibrary.org/obo/UBERON_0014277,piriform cortex layer 1,plexiform layer of piriform cortex +http://purl.obolibrary.org/obo/UBERON_0014277,piriform cortex layer 1,pyriform cortex layer 1 +http://purl.obolibrary.org/obo/UBERON_0014280,piriform cortex layer 2,layer 2 of piriform cortex +http://purl.obolibrary.org/obo/UBERON_0014280,piriform cortex layer 2,layer II of piriform cortex +http://purl.obolibrary.org/obo/UBERON_0014280,piriform cortex layer 2,piriform cortex layer 2 +http://purl.obolibrary.org/obo/UBERON_0014280,piriform cortex layer 2,piriform cortex layer II +http://purl.obolibrary.org/obo/UBERON_0014283,piriform cortex layer 3,layer 3 of piriform cortex +http://purl.obolibrary.org/obo/UBERON_0014283,piriform cortex layer 3,piriform cortex layer 3 +http://purl.obolibrary.org/obo/UBERON_0014284,endopiriform nucleus,endopiriform nucleus +http://purl.obolibrary.org/obo/UBERON_0014284,endopiriform nucleus,layer 4 of piriform cortex +http://purl.obolibrary.org/obo/UBERON_0014284,endopiriform nucleus,layer IV of piriform cortex +http://purl.obolibrary.org/obo/UBERON_0014286,dorsal cap of Kooy,dorsal cap of kooy +http://purl.obolibrary.org/obo/UBERON_0014287,medial accessory olive,MAO +http://purl.obolibrary.org/obo/UBERON_0014287,medial accessory olive,medial accessory olive +http://purl.obolibrary.org/obo/UBERON_0014370,extrastriate cortex,extrastriate areas +http://purl.obolibrary.org/obo/UBERON_0014370,extrastriate cortex,extrastriate cortex +http://purl.obolibrary.org/obo/UBERON_0014371,future telencephalon,presumptive telencephalon +http://purl.obolibrary.org/obo/UBERON_0014372,fibroelastic membrane of larynx,fibro-elastic membrane of larynx +http://purl.obolibrary.org/obo/UBERON_0014372,fibroelastic membrane of larynx,membrana fibroelastica laryngis +http://purl.obolibrary.org/obo/UBERON_0014374,embryoid body, +http://purl.obolibrary.org/obo/UBERON_0014375,intrinsic muscle of manus,intrinsic hand muscle +http://purl.obolibrary.org/obo/UBERON_0014375,intrinsic muscle of manus,intrinsic muscle of hand +http://purl.obolibrary.org/obo/UBERON_0014376,thenar muscle, +http://purl.obolibrary.org/obo/UBERON_0014377,hypothenar muscle, +http://purl.obolibrary.org/obo/UBERON_0014378,intrinsic muscle of pes,intrinsic muscle of foot +http://purl.obolibrary.org/obo/UBERON_0014379,adductor hallucis muscle,adductor hallucis +http://purl.obolibrary.org/obo/UBERON_0014380,flexor digitorum brevis muscle,flexor digitorum brevis +http://purl.obolibrary.org/obo/UBERON_0014380,flexor digitorum brevis muscle,flexor digitorum brevis of foot +http://purl.obolibrary.org/obo/UBERON_0014380,flexor digitorum brevis muscle,musculus flexor digitorum brevis +http://purl.obolibrary.org/obo/UBERON_0014381,whorl of hair, +http://purl.obolibrary.org/obo/UBERON_0014382,collection of hairs on head or neck, +http://purl.obolibrary.org/obo/UBERON_0014385,aryepiglottic fold,ary-epiglottic fold +http://purl.obolibrary.org/obo/UBERON_0014386,vertebral endplate, +http://purl.obolibrary.org/obo/UBERON_0014387,mesenchyme derived from neural crest,mesenchyme from neural crest +http://purl.obolibrary.org/obo/UBERON_0014387,mesenchyme derived from neural crest,neural crest derived mesenchyme +http://purl.obolibrary.org/obo/UBERON_0014387,mesenchyme derived from neural crest,neural crest mesenchyme +http://purl.obolibrary.org/obo/UBERON_0014388,kidney collecting duct epithelium,collecting duct of renal tubule epithelium +http://purl.obolibrary.org/obo/UBERON_0014388,kidney collecting duct epithelium,epithelium of collecting duct of renal tubule +http://purl.obolibrary.org/obo/UBERON_0014388,kidney collecting duct epithelium,epithelium of renal collecting tubule +http://purl.obolibrary.org/obo/UBERON_0014389,gustatory papilla of tongue,gustatory papilla +http://purl.obolibrary.org/obo/UBERON_0014389,gustatory papilla of tongue,taste papilla +http://purl.obolibrary.org/obo/UBERON_0014390,muscle layer of ileum,muscularis externa of ileum +http://purl.obolibrary.org/obo/UBERON_0014391,palmar/plantar sweat gland, +http://purl.obolibrary.org/obo/UBERON_0014392,sweat of palm,palm sweat +http://purl.obolibrary.org/obo/UBERON_0014392,sweat of palm,palmar sweat +http://purl.obolibrary.org/obo/UBERON_0014393,sweat of axilla,axillary sweat +http://purl.obolibrary.org/obo/UBERON_0014394,uterine fat pad,uterine fat depot +http://purl.obolibrary.org/obo/UBERON_0014395,proximal mesopodial bone, +http://purl.obolibrary.org/obo/UBERON_0014396,interscapular fat pad,interscapular fat depot +http://purl.obolibrary.org/obo/UBERON_0014397,lateral process of malleus,malleus process brevis +http://purl.obolibrary.org/obo/UBERON_0014397,lateral process of malleus,processus lateralis (malleus) +http://purl.obolibrary.org/obo/UBERON_0014397,lateral process of malleus,processus lateralis mallei +http://purl.obolibrary.org/obo/UBERON_0014397,lateral process of malleus,processus lateralis malleus +http://purl.obolibrary.org/obo/UBERON_0014397,lateral process of malleus,short process of malleus +http://purl.obolibrary.org/obo/UBERON_0014397,lateral process of malleus,tuberculum mallei +http://purl.obolibrary.org/obo/UBERON_0014398,respiratory muscle, +http://purl.obolibrary.org/obo/UBERON_0014399,sinusoidal space,lumen of sinusoid +http://purl.obolibrary.org/obo/UBERON_0014399,sinusoidal space,sinusoid lumen +http://purl.obolibrary.org/obo/UBERON_0014400,hepatic sinusoidal space,lumen of hepatic sinusoid +http://purl.obolibrary.org/obo/UBERON_0014401,renal venous blood vessel,kidney venous blood vessel +http://purl.obolibrary.org/obo/UBERON_0014401,renal venous blood vessel,venous blood vessel of kidney +http://purl.obolibrary.org/obo/UBERON_0014402,sex-specific anatomical structure,gender-specific +http://purl.obolibrary.org/obo/UBERON_0014402,sex-specific anatomical structure,gender-specific anatomical structure +http://purl.obolibrary.org/obo/UBERON_0014402,sex-specific anatomical structure,sex-specific +http://purl.obolibrary.org/obo/UBERON_0014403,male anatomical structure,male-specific structure +http://purl.obolibrary.org/obo/UBERON_0014404,female anatomical structure, +http://purl.obolibrary.org/obo/UBERON_0014409,metacromion,metacromion of scapula +http://purl.obolibrary.org/obo/UBERON_0014409,metacromion,metacromion process +http://purl.obolibrary.org/obo/UBERON_0014409,metacromion,scapular metacromion +http://purl.obolibrary.org/obo/UBERON_0014410,fibularis quartus,fibularis quartus muscle +http://purl.obolibrary.org/obo/UBERON_0014410,fibularis quartus,peroneus digiti quarti +http://purl.obolibrary.org/obo/UBERON_0014410,fibularis quartus,peroneus quartus +http://purl.obolibrary.org/obo/UBERON_0014410,fibularis quartus,peroneus quartus muscle +http://purl.obolibrary.org/obo/UBERON_0014411,greater sciatic notch,greater sacrosciatic notch +http://purl.obolibrary.org/obo/UBERON_0014411,greater sciatic notch,incisura ischiadica major +http://purl.obolibrary.org/obo/UBERON_0014430,sciatic notch, +http://purl.obolibrary.org/obo/UBERON_0014436,lesser sciatic notch,incisura ischiadica minor +http://purl.obolibrary.org/obo/UBERON_0014437,iliac crest, +http://purl.obolibrary.org/obo/UBERON_0014438,superior pubic ramus,superior ramus of pubis +http://purl.obolibrary.org/obo/UBERON_0014439,inferior pubic ramus,inferior ramus of pubis +http://purl.obolibrary.org/obo/UBERON_0014440,ischiopubic ramus,conjoint ramus +http://purl.obolibrary.org/obo/UBERON_0014441,ischial ramus,ramus of ischium +http://purl.obolibrary.org/obo/UBERON_0014441,ischial ramus,ramus ossis ischii +http://purl.obolibrary.org/obo/UBERON_0014441,ischial ramus,ramusi ossis ischii +http://purl.obolibrary.org/obo/UBERON_0014442,superior ischial ramus, +http://purl.obolibrary.org/obo/UBERON_0014443,inferior ischial ramus, +http://purl.obolibrary.org/obo/UBERON_0014444,pubic ramus,ramus of pubis +http://purl.obolibrary.org/obo/UBERON_0014445,acetabular fossa,fossa acetabularis +http://purl.obolibrary.org/obo/UBERON_0014445,acetabular fossa,fossa acetabularis (acetabuli) +http://purl.obolibrary.org/obo/UBERON_0014445,acetabular fossa,fossa acetabuli +http://purl.obolibrary.org/obo/UBERON_0014446,acetabular notch, +http://purl.obolibrary.org/obo/UBERON_0014447,feathered facial disc,facial disk +http://purl.obolibrary.org/obo/UBERON_0014447,feathered facial disc,facial diss +http://purl.obolibrary.org/obo/UBERON_0014448,feathered ear tuft,ear tuft +http://purl.obolibrary.org/obo/UBERON_0014450,pretectal nucleus,nucleus of pretectal area +http://purl.obolibrary.org/obo/UBERON_0014450,pretectal nucleus,pretectal area nucleus +http://purl.obolibrary.org/obo/UBERON_0014450,pretectal nucleus,pretectal nucleus +http://purl.obolibrary.org/obo/UBERON_0014451,tongue taste bud,gustatory papilla taste bud +http://purl.obolibrary.org/obo/UBERON_0014451,tongue taste bud,gustatory papillae taste bud +http://purl.obolibrary.org/obo/UBERON_0014452,gustatory epithelium of tongue,lingual gustatory epithelium +http://purl.obolibrary.org/obo/UBERON_0014453,gustatory epithelium of palate,palatal gustatory epithelium +http://purl.obolibrary.org/obo/UBERON_0014454,visceral abdominal adipose tissue, +http://purl.obolibrary.org/obo/UBERON_0014455,subcutaneous abdominal adipose tissue,abdominal subcutaneous adipose tissue +http://purl.obolibrary.org/obo/UBERON_0014455,subcutaneous abdominal adipose tissue,subcutaneous abdominal fat +http://purl.obolibrary.org/obo/UBERON_0014455,subcutaneous abdominal adipose tissue,subcutaneous fat of abdominal region +http://purl.obolibrary.org/obo/UBERON_0014456,extraperitoneal space,spatium extraperitoneale +http://purl.obolibrary.org/obo/UBERON_0014458,female bulbospongiosus muscle,bulbospongiosus of female +http://purl.obolibrary.org/obo/UBERON_0014458,female bulbospongiosus muscle,female bulbospongiosus +http://purl.obolibrary.org/obo/UBERON_0014459,temporal fenestra, +http://purl.obolibrary.org/obo/UBERON_0014460,supratemporal fenestra,upper temporal fenestra +http://purl.obolibrary.org/obo/UBERON_0014461,infratemporal fenestra,lateral temporal fenestra +http://purl.obolibrary.org/obo/UBERON_0014461,infratemporal fenestra,lower temporal fenestra +http://purl.obolibrary.org/obo/UBERON_0014463,cardiac ganglion,Wrisberg ganglion +http://purl.obolibrary.org/obo/UBERON_0014463,cardiac ganglion,cardiac ganglia set +http://purl.obolibrary.org/obo/UBERON_0014463,cardiac ganglion,cardiac ganglion of Wrisberg +http://purl.obolibrary.org/obo/UBERON_0014463,cardiac ganglion,ganglia cardiaca +http://purl.obolibrary.org/obo/UBERON_0014463,cardiac ganglion,ganglion of Wrisberg +http://purl.obolibrary.org/obo/UBERON_0014464,renal fat pad, +http://purl.obolibrary.org/obo/UBERON_0014465,antorbital fenestra, +http://purl.obolibrary.org/obo/UBERON_0014466,subarachnoid fissure, +http://purl.obolibrary.org/obo/UBERON_0014468,ansoparamedian fissure of cerebellum,ansoparamedian fissure +http://purl.obolibrary.org/obo/UBERON_0014468,ansoparamedian fissure of cerebellum,fissura ansoparamedianis +http://purl.obolibrary.org/obo/UBERON_0014468,ansoparamedian fissure of cerebellum,fissura lunogracilis +http://purl.obolibrary.org/obo/UBERON_0014468,ansoparamedian fissure of cerebellum,lunogracile fissure +http://purl.obolibrary.org/obo/UBERON_0014468,ansoparamedian fissure of cerebellum,lunogracile fissure of cerebellum +http://purl.obolibrary.org/obo/UBERON_0014471,primary fissure of cerebellum,fissura preclivalis +http://purl.obolibrary.org/obo/UBERON_0014471,primary fissure of cerebellum,fissura prima +http://purl.obolibrary.org/obo/UBERON_0014471,primary fissure of cerebellum,fissura prima cerebelli +http://purl.obolibrary.org/obo/UBERON_0014471,primary fissure of cerebellum,fissura superior anterior +http://purl.obolibrary.org/obo/UBERON_0014471,primary fissure of cerebellum,preclival fissure +http://purl.obolibrary.org/obo/UBERON_0014471,primary fissure of cerebellum,primary sulcus of cerebellum +http://purl.obolibrary.org/obo/UBERON_0014473,precentral fissure of cerebellum,fissura postlingualis cerebelli +http://purl.obolibrary.org/obo/UBERON_0014473,precentral fissure of cerebellum,fissura praecentralis +http://purl.obolibrary.org/obo/UBERON_0014473,precentral fissure of cerebellum,fissura precentralis cerebelli +http://purl.obolibrary.org/obo/UBERON_0014473,precentral fissure of cerebellum,post-lingual fissure of cerebellum +http://purl.obolibrary.org/obo/UBERON_0014473,precentral fissure of cerebellum,postlingual fissure +http://purl.obolibrary.org/obo/UBERON_0014473,precentral fissure of cerebellum,precentral fissure +http://purl.obolibrary.org/obo/UBERON_0014474,postcentral fissure of cerebellum,fissura postcentralis cerebelli +http://purl.obolibrary.org/obo/UBERON_0014474,postcentral fissure of cerebellum,fissura praeculminata +http://purl.obolibrary.org/obo/UBERON_0014474,postcentral fissure of cerebellum,post-central fissure of cerebellum +http://purl.obolibrary.org/obo/UBERON_0014474,postcentral fissure of cerebellum,postcentral fissure-2 +http://purl.obolibrary.org/obo/UBERON_0014475,endostylar duct,duct of endostyle +http://purl.obolibrary.org/obo/UBERON_0014477,thoracic skeleton,skeleton of thorax +http://purl.obolibrary.org/obo/UBERON_0014477,thoracic skeleton,thoracic part of axial skeleton +http://purl.obolibrary.org/obo/UBERON_0014477,thoracic skeleton,thoracic skeleton +http://purl.obolibrary.org/obo/UBERON_0014478,rib skeletal system,rib series +http://purl.obolibrary.org/obo/UBERON_0014479,elephant trunk,trunk of elephant +http://purl.obolibrary.org/obo/UBERON_0014480,blood feather, +http://purl.obolibrary.org/obo/UBERON_0014481,sex skin, +http://purl.obolibrary.org/obo/UBERON_0014482,ischial callosity, +http://purl.obolibrary.org/obo/UBERON_0014483,distal phalanx of digit 1,digit 1 distal phalanx +http://purl.obolibrary.org/obo/UBERON_0014483,distal phalanx of digit 1,distal phalanx of digit I +http://purl.obolibrary.org/obo/UBERON_0014483,distal phalanx of digit 1,distal phalanx of first digit +http://purl.obolibrary.org/obo/UBERON_0014484,distal phalanx of digit 2,2nd digit distal phalanx +http://purl.obolibrary.org/obo/UBERON_0014484,distal phalanx of digit 2,digit 2 distal phalanx +http://purl.obolibrary.org/obo/UBERON_0014484,distal phalanx of digit 2,distal phalanx of 2nd digit +http://purl.obolibrary.org/obo/UBERON_0014484,distal phalanx of digit 2,distal phalanx of digit II +http://purl.obolibrary.org/obo/UBERON_0014484,distal phalanx of digit 2,distal phalanx of index digit +http://purl.obolibrary.org/obo/UBERON_0014484,distal phalanx of digit 2,distal phalanx of second digit +http://purl.obolibrary.org/obo/UBERON_0014484,distal phalanx of digit 2,second digit distal phalanx +http://purl.obolibrary.org/obo/UBERON_0014484,distal phalanx of digit 2,second distal phalanx +http://purl.obolibrary.org/obo/UBERON_0014485,distal phalanx of digit 3,3rd digit distal phalanx +http://purl.obolibrary.org/obo/UBERON_0014485,distal phalanx of digit 3,digit 3 distal phalanx +http://purl.obolibrary.org/obo/UBERON_0014485,distal phalanx of digit 3,distal phalanx of 3rd digit +http://purl.obolibrary.org/obo/UBERON_0014485,distal phalanx of digit 3,distal phalanx of digit III +http://purl.obolibrary.org/obo/UBERON_0014485,distal phalanx of digit 3,distal phalanx of middle digit +http://purl.obolibrary.org/obo/UBERON_0014485,distal phalanx of digit 3,distal phalanx of third digit +http://purl.obolibrary.org/obo/UBERON_0014485,distal phalanx of digit 3,equine 3rd phalanx of digit 3 +http://purl.obolibrary.org/obo/UBERON_0014485,distal phalanx of digit 3,equine distal phalanx +http://purl.obolibrary.org/obo/UBERON_0014485,distal phalanx of digit 3,third digit distal phalanx +http://purl.obolibrary.org/obo/UBERON_0014485,distal phalanx of digit 3,third distal phalanx +http://purl.obolibrary.org/obo/UBERON_0014486,distal phalanx of digit 4,4th digit distal phalanx +http://purl.obolibrary.org/obo/UBERON_0014486,distal phalanx of digit 4,digit 4 distal phalanx +http://purl.obolibrary.org/obo/UBERON_0014486,distal phalanx of digit 4,distal phalanx of 4th digit +http://purl.obolibrary.org/obo/UBERON_0014486,distal phalanx of digit 4,distal phalanx of digit IV +http://purl.obolibrary.org/obo/UBERON_0014486,distal phalanx of digit 4,distal phalanx of fourth digit +http://purl.obolibrary.org/obo/UBERON_0014486,distal phalanx of digit 4,distal phalanx of ring digit +http://purl.obolibrary.org/obo/UBERON_0014486,distal phalanx of digit 4,fourth digit distal phalanx +http://purl.obolibrary.org/obo/UBERON_0014486,distal phalanx of digit 4,fourth distal phalanx +http://purl.obolibrary.org/obo/UBERON_0014487,distal phalanx of digit 5,5th digit distal phalanx +http://purl.obolibrary.org/obo/UBERON_0014487,distal phalanx of digit 5,digit 5 distal phalanx +http://purl.obolibrary.org/obo/UBERON_0014487,distal phalanx of digit 5,distal phalanx of 5th digit +http://purl.obolibrary.org/obo/UBERON_0014487,distal phalanx of digit 5,distal phalanx of digit V +http://purl.obolibrary.org/obo/UBERON_0014487,distal phalanx of digit 5,distal phalanx of fifth digit +http://purl.obolibrary.org/obo/UBERON_0014487,distal phalanx of digit 5,distal phalanx of little digit +http://purl.obolibrary.org/obo/UBERON_0014487,distal phalanx of digit 5,fifth digit distal phalanx +http://purl.obolibrary.org/obo/UBERON_0014487,distal phalanx of digit 5,fifth distal phalanx +http://purl.obolibrary.org/obo/UBERON_0014488,middle phalanx of digit 2,2nd digit intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0014488,middle phalanx of digit 2,2nd digit middle phalanx +http://purl.obolibrary.org/obo/UBERON_0014488,middle phalanx of digit 2,2nd digit of intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0014488,middle phalanx of digit 2,2nd digit of middle phalanx +http://purl.obolibrary.org/obo/UBERON_0014488,middle phalanx of digit 2,digit 2 intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0014488,middle phalanx of digit 2,digit 2 middle phalanx +http://purl.obolibrary.org/obo/UBERON_0014488,middle phalanx of digit 2,intermediate phalanx of 2nd digit +http://purl.obolibrary.org/obo/UBERON_0014488,middle phalanx of digit 2,intermediate phalanx of digit 2 +http://purl.obolibrary.org/obo/UBERON_0014488,middle phalanx of digit 2,intermediate phalanx of second digit +http://purl.obolibrary.org/obo/UBERON_0014488,middle phalanx of digit 2,middle phalanx of 2nd digit +http://purl.obolibrary.org/obo/UBERON_0014488,middle phalanx of digit 2,middle phalanx of digit II +http://purl.obolibrary.org/obo/UBERON_0014488,middle phalanx of digit 2,middle phalanx of index digit +http://purl.obolibrary.org/obo/UBERON_0014488,middle phalanx of digit 2,middle phalanx of second digit +http://purl.obolibrary.org/obo/UBERON_0014488,middle phalanx of digit 2,second digit intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0014488,middle phalanx of digit 2,second digit middle phalanx +http://purl.obolibrary.org/obo/UBERON_0014488,middle phalanx of digit 2,second middle phalanx +http://purl.obolibrary.org/obo/UBERON_0014489,middle phalanx of digit 3,3rd digit intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0014489,middle phalanx of digit 3,3rd digit middle phalanx +http://purl.obolibrary.org/obo/UBERON_0014489,middle phalanx of digit 3,3rd digit of intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0014489,middle phalanx of digit 3,3rd digit of middle phalanx +http://purl.obolibrary.org/obo/UBERON_0014489,middle phalanx of digit 3,digit 3 intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0014489,middle phalanx of digit 3,digit 3 middle phalanx +http://purl.obolibrary.org/obo/UBERON_0014489,middle phalanx of digit 3,intermediate phalanx of 3rd digit +http://purl.obolibrary.org/obo/UBERON_0014489,middle phalanx of digit 3,intermediate phalanx of digit 3 +http://purl.obolibrary.org/obo/UBERON_0014489,middle phalanx of digit 3,intermediate phalanx of third digit +http://purl.obolibrary.org/obo/UBERON_0014489,middle phalanx of digit 3,middle phalanx of 3rd digit +http://purl.obolibrary.org/obo/UBERON_0014489,middle phalanx of digit 3,middle phalanx of digit III +http://purl.obolibrary.org/obo/UBERON_0014489,middle phalanx of digit 3,middle phalanx of middle digit +http://purl.obolibrary.org/obo/UBERON_0014489,middle phalanx of digit 3,middle phalanx of third digit +http://purl.obolibrary.org/obo/UBERON_0014489,middle phalanx of digit 3,third digit intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0014489,middle phalanx of digit 3,third digit middle phalanx +http://purl.obolibrary.org/obo/UBERON_0014489,middle phalanx of digit 3,third middle phalanx +http://purl.obolibrary.org/obo/UBERON_0014490,middle phalanx of digit 4,4th digit intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0014490,middle phalanx of digit 4,4th digit middle phalanx +http://purl.obolibrary.org/obo/UBERON_0014490,middle phalanx of digit 4,4th digit of intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0014490,middle phalanx of digit 4,4th digit of middle phalanx +http://purl.obolibrary.org/obo/UBERON_0014490,middle phalanx of digit 4,digit 4 intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0014490,middle phalanx of digit 4,digit 4 middle phalanx +http://purl.obolibrary.org/obo/UBERON_0014490,middle phalanx of digit 4,fourth digit intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0014490,middle phalanx of digit 4,fourth digit middle phalanx +http://purl.obolibrary.org/obo/UBERON_0014490,middle phalanx of digit 4,fourth middle phalanx +http://purl.obolibrary.org/obo/UBERON_0014490,middle phalanx of digit 4,intermediate phalanx of 4th digit +http://purl.obolibrary.org/obo/UBERON_0014490,middle phalanx of digit 4,intermediate phalanx of digit 4 +http://purl.obolibrary.org/obo/UBERON_0014490,middle phalanx of digit 4,intermediate phalanx of fourth digit +http://purl.obolibrary.org/obo/UBERON_0014490,middle phalanx of digit 4,middle phalanx of 4th digit +http://purl.obolibrary.org/obo/UBERON_0014490,middle phalanx of digit 4,middle phalanx of digit IV +http://purl.obolibrary.org/obo/UBERON_0014490,middle phalanx of digit 4,middle phalanx of fourth digit +http://purl.obolibrary.org/obo/UBERON_0014490,middle phalanx of digit 4,middle phalanx of ring digit +http://purl.obolibrary.org/obo/UBERON_0014491,middle phalanx of digit 5,5th digit intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0014491,middle phalanx of digit 5,5th digit middle phalanx +http://purl.obolibrary.org/obo/UBERON_0014491,middle phalanx of digit 5,5th digit of intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0014491,middle phalanx of digit 5,5th digit of middle phalanx +http://purl.obolibrary.org/obo/UBERON_0014491,middle phalanx of digit 5,digit 5 intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0014491,middle phalanx of digit 5,digit 5 middle phalanx +http://purl.obolibrary.org/obo/UBERON_0014491,middle phalanx of digit 5,fifth digit intermediate phalanx +http://purl.obolibrary.org/obo/UBERON_0014491,middle phalanx of digit 5,fifth digit middle phalanx +http://purl.obolibrary.org/obo/UBERON_0014491,middle phalanx of digit 5,fifth middle phalanx +http://purl.obolibrary.org/obo/UBERON_0014491,middle phalanx of digit 5,intermediate phalanx of 5th digit +http://purl.obolibrary.org/obo/UBERON_0014491,middle phalanx of digit 5,intermediate phalanx of digit 5 +http://purl.obolibrary.org/obo/UBERON_0014491,middle phalanx of digit 5,intermediate phalanx of fifth digit +http://purl.obolibrary.org/obo/UBERON_0014491,middle phalanx of digit 5,middle phalanx of 5th digit +http://purl.obolibrary.org/obo/UBERON_0014491,middle phalanx of digit 5,middle phalanx of digit V +http://purl.obolibrary.org/obo/UBERON_0014491,middle phalanx of digit 5,middle phalanx of fifth digit +http://purl.obolibrary.org/obo/UBERON_0014491,middle phalanx of digit 5,middle phalanx of little digit +http://purl.obolibrary.org/obo/UBERON_0014501,proximal phalanx of digit 1,digit I P1 +http://purl.obolibrary.org/obo/UBERON_0014501,proximal phalanx of digit 1,digit I-1 +http://purl.obolibrary.org/obo/UBERON_0014501,proximal phalanx of digit 1,first proximal phalanx of autopod +http://purl.obolibrary.org/obo/UBERON_0014501,proximal phalanx of digit 1,proximal phalanx of digit I +http://purl.obolibrary.org/obo/UBERON_0014501,proximal phalanx of digit 1,proximal phalanx of first digit of autopod +http://purl.obolibrary.org/obo/UBERON_0014502,proximal phalanx of digit 2,2nd digit of autopod proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0014502,proximal phalanx of digit 2,2nd digit proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0014502,proximal phalanx of digit 2,autopod digit 2 proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0014502,proximal phalanx of digit 2,digit II-1 +http://purl.obolibrary.org/obo/UBERON_0014502,proximal phalanx of digit 2,digit IU P1 +http://purl.obolibrary.org/obo/UBERON_0014502,proximal phalanx of digit 2,proximal phalanx of 2nd digit +http://purl.obolibrary.org/obo/UBERON_0014502,proximal phalanx of digit 2,proximal phalanx of 2nd digit of autopod +http://purl.obolibrary.org/obo/UBERON_0014502,proximal phalanx of digit 2,proximal phalanx of digit II +http://purl.obolibrary.org/obo/UBERON_0014502,proximal phalanx of digit 2,proximal phalanx of index digit +http://purl.obolibrary.org/obo/UBERON_0014502,proximal phalanx of digit 2,proximal phalanx of second digit +http://purl.obolibrary.org/obo/UBERON_0014502,proximal phalanx of digit 2,proximal phalanx of second digit of autopod +http://purl.obolibrary.org/obo/UBERON_0014502,proximal phalanx of digit 2,second digit proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0014502,proximal phalanx of digit 2,second proximal phalanx of autopod +http://purl.obolibrary.org/obo/UBERON_0014503,proximal phalanx of digit 3,3rd digit of autopod proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0014503,proximal phalanx of digit 3,3rd digit proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0014503,proximal phalanx of digit 3,autopod digit 3 proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0014503,proximal phalanx of digit 3,digit III P1 +http://purl.obolibrary.org/obo/UBERON_0014503,proximal phalanx of digit 3,digit III-1 +http://purl.obolibrary.org/obo/UBERON_0014503,proximal phalanx of digit 3,proximal phalanx of 3rd digit +http://purl.obolibrary.org/obo/UBERON_0014503,proximal phalanx of digit 3,proximal phalanx of 3rd digit of autopod +http://purl.obolibrary.org/obo/UBERON_0014503,proximal phalanx of digit 3,proximal phalanx of digit III +http://purl.obolibrary.org/obo/UBERON_0014503,proximal phalanx of digit 3,proximal phalanx of middle digit +http://purl.obolibrary.org/obo/UBERON_0014503,proximal phalanx of digit 3,proximal phalanx of third digit +http://purl.obolibrary.org/obo/UBERON_0014503,proximal phalanx of digit 3,proximal phalanx of third digit of autopod +http://purl.obolibrary.org/obo/UBERON_0014503,proximal phalanx of digit 3,third digit proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0014503,proximal phalanx of digit 3,third proximal phalanx of autopod +http://purl.obolibrary.org/obo/UBERON_0014504,proximal phalanx of digit 4,4th digit of autopod proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0014504,proximal phalanx of digit 4,4th digit proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0014504,proximal phalanx of digit 4,autopod digit 4 proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0014504,proximal phalanx of digit 4,digit IV P1 +http://purl.obolibrary.org/obo/UBERON_0014504,proximal phalanx of digit 4,digit IV-1 +http://purl.obolibrary.org/obo/UBERON_0014504,proximal phalanx of digit 4,fourth digit proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0014504,proximal phalanx of digit 4,fourth proximal phalanx of autopod +http://purl.obolibrary.org/obo/UBERON_0014504,proximal phalanx of digit 4,proximal phalanx of 4th digit +http://purl.obolibrary.org/obo/UBERON_0014504,proximal phalanx of digit 4,proximal phalanx of 4th digit of autopod +http://purl.obolibrary.org/obo/UBERON_0014504,proximal phalanx of digit 4,proximal phalanx of digit IV +http://purl.obolibrary.org/obo/UBERON_0014504,proximal phalanx of digit 4,proximal phalanx of fourth digit +http://purl.obolibrary.org/obo/UBERON_0014504,proximal phalanx of digit 4,proximal phalanx of fourth digit of autopod +http://purl.obolibrary.org/obo/UBERON_0014504,proximal phalanx of digit 4,proximal phalanx of ring digit +http://purl.obolibrary.org/obo/UBERON_0014505,proximal phalanx of digit 5,5th digit of autopod proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0014505,proximal phalanx of digit 5,5th digit proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0014505,proximal phalanx of digit 5,autopod digit 5 proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0014505,proximal phalanx of digit 5,digit V P1 +http://purl.obolibrary.org/obo/UBERON_0014505,proximal phalanx of digit 5,digit V-1 +http://purl.obolibrary.org/obo/UBERON_0014505,proximal phalanx of digit 5,fifth digit proximal phalanx +http://purl.obolibrary.org/obo/UBERON_0014505,proximal phalanx of digit 5,fifth proximal phalanx of autopod +http://purl.obolibrary.org/obo/UBERON_0014505,proximal phalanx of digit 5,proximal phalanx of 5th digit +http://purl.obolibrary.org/obo/UBERON_0014505,proximal phalanx of digit 5,proximal phalanx of 5th digit of autopod +http://purl.obolibrary.org/obo/UBERON_0014505,proximal phalanx of digit 5,proximal phalanx of digit V +http://purl.obolibrary.org/obo/UBERON_0014505,proximal phalanx of digit 5,proximal phalanx of fifth digit +http://purl.obolibrary.org/obo/UBERON_0014505,proximal phalanx of digit 5,proximal phalanx of fifth digit of autopod +http://purl.obolibrary.org/obo/UBERON_0014505,proximal phalanx of digit 5,proximal phalanx of little digit +http://purl.obolibrary.org/obo/UBERON_0014506,distal interphalangeal joint of digit 3,distal interphalangeal joint of digit III +http://purl.obolibrary.org/obo/UBERON_0014507,distal interphalangeal joint of pedal digit 3,distal interphalangeal joint of pedal digit III +http://purl.obolibrary.org/obo/UBERON_0014507,distal interphalangeal joint of pedal digit 3,distal interphalangeal joint of third digit of foot +http://purl.obolibrary.org/obo/UBERON_0014507,distal interphalangeal joint of pedal digit 3,distal interphalangeal joint of third toe +http://purl.obolibrary.org/obo/UBERON_0014508,distal interphalangeal joint of manual digit 3,distal interphalangeal joint of manual digit III +http://purl.obolibrary.org/obo/UBERON_0014508,distal interphalangeal joint of manual digit 3,distal interphalangeal joint of middle finger +http://purl.obolibrary.org/obo/UBERON_0014509,distal sesamoid impar ligament,DSIL +http://purl.obolibrary.org/obo/UBERON_0014509,distal sesamoid impar ligament,distal sesamoidean impar ligament +http://purl.obolibrary.org/obo/UBERON_0014509,distal sesamoid impar ligament,impar ligament of distal equine limb +http://purl.obolibrary.org/obo/UBERON_0014510,lamina of omasum,omasal lamina +http://purl.obolibrary.org/obo/UBERON_0014510,lamina of omasum,omasal laminae +http://purl.obolibrary.org/obo/UBERON_0014521,anterodorsal nucleus of medial geniculate body,anterodorsal nucleus of medial geniculate complex +http://purl.obolibrary.org/obo/UBERON_0014522,dorsolateral oculomotor nucleus,dorsolateral nucleus of oculomotor nuclear complex +http://purl.obolibrary.org/obo/UBERON_0014522,dorsolateral oculomotor nucleus,nucleus dorsalis nervi oculomotorii +http://purl.obolibrary.org/obo/UBERON_0014522,dorsolateral oculomotor nucleus,oculomotor nerve dorsolateral nucleus +http://purl.obolibrary.org/obo/UBERON_0014523,oculomotor division of oculomotor nuclear complex, +http://purl.obolibrary.org/obo/UBERON_0014524,electromotor division of oculomotor nuclear complex, +http://purl.obolibrary.org/obo/UBERON_0014525,limb of internal capsule of telencephalon,internal capsule subdivision +http://purl.obolibrary.org/obo/UBERON_0014525,limb of internal capsule of telencephalon,limb of internal capsule +http://purl.obolibrary.org/obo/UBERON_0014525,limb of internal capsule of telencephalon,subdivision of internal capsule +http://purl.obolibrary.org/obo/UBERON_0014526,anterior limb of internal capsule,"capsula interna, pars anterior" +http://purl.obolibrary.org/obo/UBERON_0014526,anterior limb of internal capsule,crus anterius capsulae internae +http://purl.obolibrary.org/obo/UBERON_0014527,posterior limb of internal capsule,"capsula interna, pars posterior" +http://purl.obolibrary.org/obo/UBERON_0014527,posterior limb of internal capsule,crus posterius capsulae internae +http://purl.obolibrary.org/obo/UBERON_0014528,extreme capsule, +http://purl.obolibrary.org/obo/UBERON_0014529,lenticular fasciculus,dorsal division of ansa lenticularis +http://purl.obolibrary.org/obo/UBERON_0014529,lenticular fasciculus,fasciculus lenticularis +http://purl.obolibrary.org/obo/UBERON_0014529,lenticular fasciculus,fasciculus lenticularis [h2] +http://purl.obolibrary.org/obo/UBERON_0014529,lenticular fasciculus,forel's field h2 +http://purl.obolibrary.org/obo/UBERON_0014529,lenticular fasciculus,lenticular fasciculus +http://purl.obolibrary.org/obo/UBERON_0014529,lenticular fasciculus,lenticular fasciculus [h2] +http://purl.obolibrary.org/obo/UBERON_0014529,lenticular fasciculus,lenticular fasciculus of diencephalon +http://purl.obolibrary.org/obo/UBERON_0014529,lenticular fasciculus,lenticular fasciculus of telencephalon +http://purl.obolibrary.org/obo/UBERON_0014529,lenticular fasciculus,tegmental area h2 +http://purl.obolibrary.org/obo/UBERON_0014530,white matter lamina of neuraxis, +http://purl.obolibrary.org/obo/UBERON_0014531,white matter lamina of diencephalon, +http://purl.obolibrary.org/obo/UBERON_0014532,white matter lamina of cerebral hemisphere, +http://purl.obolibrary.org/obo/UBERON_0014533,medullary lamina of thalamus, +http://purl.obolibrary.org/obo/UBERON_0014534,external medullary lamina of thalamus,external medullary lamina +http://purl.obolibrary.org/obo/UBERON_0014534,external medullary lamina of thalamus,lamella medullaris externa +http://purl.obolibrary.org/obo/UBERON_0014534,external medullary lamina of thalamus,lamina medullaris externa +http://purl.obolibrary.org/obo/UBERON_0014534,external medullary lamina of thalamus,lamina medullaris externa thalami +http://purl.obolibrary.org/obo/UBERON_0014534,external medullary lamina of thalamus,lamina medullaris lateralis thalami +http://purl.obolibrary.org/obo/UBERON_0014534,external medullary lamina of thalamus,lamina medullaris thalami externa +http://purl.obolibrary.org/obo/UBERON_0014537,periamygdaloid cortex,periamygdaloid cortex +http://purl.obolibrary.org/obo/UBERON_0014538,subdivision of spinal cord central canal,regional part of spinal cord central canal +http://purl.obolibrary.org/obo/UBERON_0014539,precommissural fornix of forebrain,fornix precommissuralis +http://purl.obolibrary.org/obo/UBERON_0014539,precommissural fornix of forebrain,precommissural fornix +http://purl.obolibrary.org/obo/UBERON_0014540,white matter lamina of cerebellum,lamina alba of cerebellar cortex +http://purl.obolibrary.org/obo/UBERON_0014540,white matter lamina of cerebellum,laminae albae of cerebellar cortex +http://purl.obolibrary.org/obo/UBERON_0014540,white matter lamina of cerebellum,white lamina of cerebellum +http://purl.obolibrary.org/obo/UBERON_0014540,white matter lamina of cerebellum,white laminae of cerebellum +http://purl.obolibrary.org/obo/UBERON_0014541,thoracic division of spinal cord central canal,thoracic spinal cord central canal +http://purl.obolibrary.org/obo/UBERON_0014542,cervical division of cord spinal central canal,cervical spinal cord central canal +http://purl.obolibrary.org/obo/UBERON_0014543,lumbar division of spinal cord central canal,lumbar spinal cord central canal +http://purl.obolibrary.org/obo/UBERON_0014544,frontomarginal sulcus,frontomarginal sulcus +http://purl.obolibrary.org/obo/UBERON_0014547,sacral division of spinal cord central canal,sacral spinal cord central canal +http://purl.obolibrary.org/obo/UBERON_0014548,pyramidal layer of CA1,CA1 part of stratum pyramidale hippocampi +http://purl.obolibrary.org/obo/UBERON_0014548,pyramidal layer of CA1,CA1 pyramidal cell layer +http://purl.obolibrary.org/obo/UBERON_0014548,pyramidal layer of CA1,CA1 stratum pyramidale +http://purl.obolibrary.org/obo/UBERON_0014548,pyramidal layer of CA1,CA1 stratum pyramidale hippocampi +http://purl.obolibrary.org/obo/UBERON_0014548,pyramidal layer of CA1,"field CA1, pyramidal layer" +http://purl.obolibrary.org/obo/UBERON_0014548,pyramidal layer of CA1,stratum pyramidale of CA1 +http://purl.obolibrary.org/obo/UBERON_0014548,pyramidal layer of CA1,stratum pyramidale of the CA1 field +http://purl.obolibrary.org/obo/UBERON_0014549,pyramidal layer of CA2,CA2 part of stratum pyramidale hippocampi +http://purl.obolibrary.org/obo/UBERON_0014549,pyramidal layer of CA2,CA2 stratum pyramidale hippocampi +http://purl.obolibrary.org/obo/UBERON_0014549,pyramidal layer of CA2,"field CA2, pyramidal layer" +http://purl.obolibrary.org/obo/UBERON_0014549,pyramidal layer of CA2,stratum pyramidale of CA2 +http://purl.obolibrary.org/obo/UBERON_0014549,pyramidal layer of CA2,stratum pyramidale of the CA2 field +http://purl.obolibrary.org/obo/UBERON_0014550,pyramidal layer of CA3,CA3 part of stratum pyramidale hippocampi +http://purl.obolibrary.org/obo/UBERON_0014550,pyramidal layer of CA3,CA3 stratum pyramidale hippocampi +http://purl.obolibrary.org/obo/UBERON_0014550,pyramidal layer of CA3,"field CA3, pyramidal layer" +http://purl.obolibrary.org/obo/UBERON_0014550,pyramidal layer of CA3,stratum pyramidale of CA3 +http://purl.obolibrary.org/obo/UBERON_0014550,pyramidal layer of CA3,stratum pyramidale of the CA3 field +http://purl.obolibrary.org/obo/UBERON_0014551,CA2 stratum oriens,CA2 part of stratum oriens +http://purl.obolibrary.org/obo/UBERON_0014551,CA2 stratum oriens,CA2 stratum oriens +http://purl.obolibrary.org/obo/UBERON_0014551,CA2 stratum oriens,oriens layer of CA2 field +http://purl.obolibrary.org/obo/UBERON_0014551,CA2 stratum oriens,stratum oriens of the CA2 field +http://purl.obolibrary.org/obo/UBERON_0014552,CA1 stratum oriens,CA1 part of stratum oriens +http://purl.obolibrary.org/obo/UBERON_0014552,CA1 stratum oriens,CA1 stratum oriens +http://purl.obolibrary.org/obo/UBERON_0014552,CA1 stratum oriens,oriens layer of CA1 field +http://purl.obolibrary.org/obo/UBERON_0014552,CA1 stratum oriens,stratum oriens of the CA1 field +http://purl.obolibrary.org/obo/UBERON_0014553,CA3 stratum oriens,CA3 part of stratum oriens +http://purl.obolibrary.org/obo/UBERON_0014553,CA3 stratum oriens,CA3 stratum oriens +http://purl.obolibrary.org/obo/UBERON_0014553,CA3 stratum oriens,oriens layer of CA3 field +http://purl.obolibrary.org/obo/UBERON_0014553,CA3 stratum oriens,stratum oriens of the CA3 field +http://purl.obolibrary.org/obo/UBERON_0014554,CA1 stratum radiatum,CA1 part of stratum radiatum +http://purl.obolibrary.org/obo/UBERON_0014554,CA1 stratum radiatum,CA1 stratum radiatum +http://purl.obolibrary.org/obo/UBERON_0014554,CA1 stratum radiatum,radiate layer of CA1 field +http://purl.obolibrary.org/obo/UBERON_0014554,CA1 stratum radiatum,stratum radiatum of the CA1 field +http://purl.obolibrary.org/obo/UBERON_0014555,CA2 stratum radiatum,CA2 part of stratum radiatum +http://purl.obolibrary.org/obo/UBERON_0014555,CA2 stratum radiatum,CA2 stratum radiatum +http://purl.obolibrary.org/obo/UBERON_0014555,CA2 stratum radiatum,radiate layer of CA2 field +http://purl.obolibrary.org/obo/UBERON_0014555,CA2 stratum radiatum,stratum radiatum of the CA2 field +http://purl.obolibrary.org/obo/UBERON_0014556,CA3 stratum radiatum,CA3 part of stratum radiatum +http://purl.obolibrary.org/obo/UBERON_0014556,CA3 stratum radiatum,CA3 stratum radiatum +http://purl.obolibrary.org/obo/UBERON_0014556,CA3 stratum radiatum,radiate layer of CA3 field +http://purl.obolibrary.org/obo/UBERON_0014556,CA3 stratum radiatum,stratum radiatum of the CA3 field +http://purl.obolibrary.org/obo/UBERON_0014557,CA1 stratum lacunosum moleculare,CA1 part of stratum lacunosum moleculare +http://purl.obolibrary.org/obo/UBERON_0014557,CA1 stratum lacunosum moleculare,CA1 stratum lacunosum moleculare +http://purl.obolibrary.org/obo/UBERON_0014557,CA1 stratum lacunosum moleculare,lacunar-molecular layer of CA1 field +http://purl.obolibrary.org/obo/UBERON_0014557,CA1 stratum lacunosum moleculare,stratum lacunosum moleculare of the CA1 field +http://purl.obolibrary.org/obo/UBERON_0014558,CA2 stratum lacunosum moleculare,CA2 part of stratum lacunosum moleculare +http://purl.obolibrary.org/obo/UBERON_0014558,CA2 stratum lacunosum moleculare,CA2 stratum lacunosum moleculare +http://purl.obolibrary.org/obo/UBERON_0014558,CA2 stratum lacunosum moleculare,lacunar-molecular layer of CA2 field +http://purl.obolibrary.org/obo/UBERON_0014558,CA2 stratum lacunosum moleculare,stratum lacunosum moleculare of the CA2 field +http://purl.obolibrary.org/obo/UBERON_0014559,CA3 stratum lacunosum moleculare,CA3 part of stratum lacunosum moleculare +http://purl.obolibrary.org/obo/UBERON_0014559,CA3 stratum lacunosum moleculare,CA3 stratum lacunosum moleculare +http://purl.obolibrary.org/obo/UBERON_0014559,CA3 stratum lacunosum moleculare,lacunar-molecular layer of CA3 field +http://purl.obolibrary.org/obo/UBERON_0014559,CA3 stratum lacunosum moleculare,stratum lacunosum moleculare of the CA3 field +http://purl.obolibrary.org/obo/UBERON_0014560,CA3 stratum lucidum,CA3 stratum lucidum +http://purl.obolibrary.org/obo/UBERON_0014560,CA3 stratum lucidum,stratum lucidum of the CA3 field +http://purl.obolibrary.org/obo/UBERON_0014567,layer of hippocampal field,hippocampal field layer +http://purl.obolibrary.org/obo/UBERON_0014568,dorsal tegmental nucleus pars dorsalis,dorsal tegmental nucleus pars dorsalis +http://purl.obolibrary.org/obo/UBERON_0014569,dorsal tegmental nucleus pars ventralis,dorsal tegmental nucleus pars ventralis +http://purl.obolibrary.org/obo/UBERON_0014570,CA1 alveus,alveus of the CA1 field +http://purl.obolibrary.org/obo/UBERON_0014571,CA3 alveus,alveus of the CA3 field +http://purl.obolibrary.org/obo/UBERON_0014589,anterior nucleus of hypothalamus anterior part,anterior nucleus of hypothalamus anterior part +http://purl.obolibrary.org/obo/UBERON_0014590,anterior nucleus of hypothalamus central part,anterior nucleus of hypothalamus central part +http://purl.obolibrary.org/obo/UBERON_0014591,anterior nucleus of hypothalamus posterior part,anterior nucleus of hypothalamus posterior part +http://purl.obolibrary.org/obo/UBERON_0014592,anterior nucleus of hypothalamus dorsal part,anterior nucleus of hypothalamus dorsal part +http://purl.obolibrary.org/obo/UBERON_0014593,tuberomammillary nucleus dorsal part,tuberomammillary nucleus dorsal part +http://purl.obolibrary.org/obo/UBERON_0014594,tuberomammillary nucleus ventral part,tuberomammillary nucleus ventral part +http://purl.obolibrary.org/obo/UBERON_0014595,"paraventricular nucleus of the hypothalamus descending division - medial parvocellular part, ventral zone","paraventricular nucleus of the hypothalamus descending division - medial parvicellular part, ventral zone" +http://purl.obolibrary.org/obo/UBERON_0014596,paraventricular nucleus of the hypothalamus descending division - dorsal parvocellular part,paraventricular nucleus of the hypothalamus descending division - dorsal parvicellular part +http://purl.obolibrary.org/obo/UBERON_0014597,paraventricular nucleus of the hypothalamus descending division - lateral parvocellular part,paraventricular nucleus of the hypothalamus descending division - lateral parvicellular part +http://purl.obolibrary.org/obo/UBERON_0014598,paraventricular nucleus of the hypothalamus descending division - forniceal part,paraventricular nucleus of the hypothalamus descending division - forniceal part +http://purl.obolibrary.org/obo/UBERON_0014599,paraventricular nucleus of the hypothalamus magnocellular division - anterior magnocellular part,paraventricular nucleus of the hypothalamus magnocellular division - anterior magnocellular part +http://purl.obolibrary.org/obo/UBERON_0014600,paraventricular nucleus of the hypothalamus magnocellular division - medial magnocellular part,paraventricular nucleus of the hypothalamus magnocellular division - medial magnocellular part +http://purl.obolibrary.org/obo/UBERON_0014601,paraventricular nucleus of the hypothalamus magnocellular division - posterior magnocellular part,paraventricular nucleus of the hypothalamus magnocellular division - posterior magnocellular part +http://purl.obolibrary.org/obo/UBERON_0014602,paraventricular nucleus of the hypothalamus descending division,paraventricular nucleus of the hypothalamus descending division +http://purl.obolibrary.org/obo/UBERON_0014603,paraventricular nucleus of the hypothalamus magnocellular division,paraventricular nucleus of the hypothalamus magnocellular division +http://purl.obolibrary.org/obo/UBERON_0014604,paraventricular nucleus of the hypothalamus parvocellular division,paraventricular nucleus of the hypothalamus parvicellular division +http://purl.obolibrary.org/obo/UBERON_0014605,fundus striati,fundus striati +http://purl.obolibrary.org/obo/UBERON_0014607,thoracic spinal cord lateral horn,thoracic spinal cord lateral horn +http://purl.obolibrary.org/obo/UBERON_0014608,inferior occipital gyrus,inferior occipital gyrus +http://purl.obolibrary.org/obo/UBERON_0014609,thoracic spinal cord dorsal horn,thoracic spinal cord dorsal horn +http://purl.obolibrary.org/obo/UBERON_0014610,thoracic spinal cord ventral horn,thoracic spinal cord ventral horn +http://purl.obolibrary.org/obo/UBERON_0014611,apex of thoracic spinal cord dorsal horn,apex of thoracic spinal cord dorsal horn +http://purl.obolibrary.org/obo/UBERON_0014612,substantia gelatinosa of thoracic spinal cord dorsal horn,substantia gelatinosa of thoracic spinal cord dorsal horn +http://purl.obolibrary.org/obo/UBERON_0014613,cervical spinal cord gray matter,cervical spinal cord gray matter +http://purl.obolibrary.org/obo/UBERON_0014614,cervical spinal cord white matter,cervical spinal cord white matter +http://purl.obolibrary.org/obo/UBERON_0014615,accessory nerve root,accessory nerve root +http://purl.obolibrary.org/obo/UBERON_0014615,accessory nerve root,root of accessory nerve +http://purl.obolibrary.org/obo/UBERON_0014616,dorsal nerve root of thoracic spinal cord,dorsal nerve root of thoracic spinal cord +http://purl.obolibrary.org/obo/UBERON_0014617,Ventral nerve root of thoracic spinal cord,anterior nerve root of thoracic spinal cord +http://purl.obolibrary.org/obo/UBERON_0014617,Ventral nerve root of thoracic spinal cord,ventral nerve root of thoracic spinal cord +http://purl.obolibrary.org/obo/UBERON_0014617,ventral nerve root of thoracic spinal cord,anterior nerve root of thoracic spinal cord +http://purl.obolibrary.org/obo/UBERON_0014617,ventral nerve root of thoracic spinal cord,ventral nerve root of thoracic spinal cord +http://purl.obolibrary.org/obo/UBERON_0014618,middle frontal sulcus,middle frontal sulcus +http://purl.obolibrary.org/obo/UBERON_0014619,cervical spinal cord lateral horn,cervical spinal cord lateral horn +http://purl.obolibrary.org/obo/UBERON_0014620,cervical spinal cord dorsal horn,cervical spinal cord dorsal horn +http://purl.obolibrary.org/obo/UBERON_0014621,cervical spinal cord ventral horn,cervical spinal cord ventral horn +http://purl.obolibrary.org/obo/UBERON_0014622,apex of cervical spinal cord dorsal horn,apex of cervical spinal cord dorsal horn +http://purl.obolibrary.org/obo/UBERON_0014623,substantia gelatinosa of cervical spinal cord dorsal horn,substantia gelatinosa of cervical spinal cord dorsal horn +http://purl.obolibrary.org/obo/UBERON_0014624,basis modioli,base of modiolus cochleae +http://purl.obolibrary.org/obo/UBERON_0014624,basis modioli,basis cochleae +http://purl.obolibrary.org/obo/UBERON_0014624,basis modioli,basis modioli +http://purl.obolibrary.org/obo/UBERON_0014626,base of cochlear canal,base of the cochlear canal +http://purl.obolibrary.org/obo/UBERON_0014628,vestibular fissure of the cochlear canal,vestibular fissure of the cochlear canal +http://purl.obolibrary.org/obo/UBERON_0014629,terminal part of the cochlear canal,terminal part of the cochlear canal +http://purl.obolibrary.org/obo/UBERON_0014630,ventral gray commissure of spinal cord,anterior grey commissure of spinal cord +http://purl.obolibrary.org/obo/UBERON_0014630,ventral gray commissure of spinal cord,commissura grisea anterior medullae spinalis +http://purl.obolibrary.org/obo/UBERON_0014630,ventral gray commissure of spinal cord,spinal cord anterior gray commissure +http://purl.obolibrary.org/obo/UBERON_0014630,ventral gray commissure of spinal cord,ventral grey commissure of spinal cord +http://purl.obolibrary.org/obo/UBERON_0014631,Spinal cord posterior gray commissure,commissura grisea posterior medullae spinalis +http://purl.obolibrary.org/obo/UBERON_0014631,Spinal cord posterior gray commissure,dorsal gray commissure +http://purl.obolibrary.org/obo/UBERON_0014631,Spinal cord posterior gray commissure,dorsal grey commissure of spinal cord +http://purl.obolibrary.org/obo/UBERON_0014631,Spinal cord posterior gray commissure,posterior grey commissure of spinal cord +http://purl.obolibrary.org/obo/UBERON_0014631,Spinal cord posterior gray commissure,spinal cord posterior gray commissure +http://purl.obolibrary.org/obo/UBERON_0014631,dorsal gray commissure of spinal cord,commissura grisea posterior medullae spinalis +http://purl.obolibrary.org/obo/UBERON_0014631,dorsal gray commissure of spinal cord,dorsal gray commissure +http://purl.obolibrary.org/obo/UBERON_0014631,dorsal gray commissure of spinal cord,dorsal grey commissure of spinal cord +http://purl.obolibrary.org/obo/UBERON_0014631,dorsal gray commissure of spinal cord,posterior grey commissure of spinal cord +http://purl.obolibrary.org/obo/UBERON_0014631,dorsal gray commissure of spinal cord,spinal cord posterior gray commissure +http://purl.obolibrary.org/obo/UBERON_0014632,apex of lumbar spinal cord dorsal horn,apex of lumbar spinal cord dorsal horn +http://purl.obolibrary.org/obo/UBERON_0014633,substantia gelatinosa of lumbar spinal cord dorsal horn,substantia gelatinosa of lumbar spinal cord dorsal horn +http://purl.obolibrary.org/obo/UBERON_0014634,ventral nerve root of cervical spinal cord,ventral nerve root of cervical spinal cord +http://purl.obolibrary.org/obo/UBERON_0014635,dorsal nerve root of cervical spinal cord,dorsal nerve root of cervical spinal cord +http://purl.obolibrary.org/obo/UBERON_0014636,thoracic spinal cord gray matter,thoracic spinal cord gray matter +http://purl.obolibrary.org/obo/UBERON_0014637,thoracic spinal cord white matter,thoracic spinal cord white matter +http://purl.obolibrary.org/obo/UBERON_0014638,lumbar spinal cord dorsal horn,lumbar spinal cord dorsal horn +http://purl.obolibrary.org/obo/UBERON_0014639,frontal sulcus,frontal lobe sulci +http://purl.obolibrary.org/obo/UBERON_0014639,frontal sulcus,frontal lobe sulcus +http://purl.obolibrary.org/obo/UBERON_0014640,occipital gyrus, +http://purl.obolibrary.org/obo/UBERON_0014641,terminal nerve root,cranial nerve 0 root +http://purl.obolibrary.org/obo/UBERON_0014641,terminal nerve root,root of terminal nerve +http://purl.obolibrary.org/obo/UBERON_0014641,terminal nerve root,terminal nerve root +http://purl.obolibrary.org/obo/UBERON_0014642,vestibulocerebellum,archicerebellum +http://purl.obolibrary.org/obo/UBERON_0014643,spinocerebellum,paleocerebellum +http://purl.obolibrary.org/obo/UBERON_0014644,cerebrocerebellum,cerebellum lateral hemisphere +http://purl.obolibrary.org/obo/UBERON_0014644,cerebrocerebellum,cerebellum lateral zone +http://purl.obolibrary.org/obo/UBERON_0014644,cerebrocerebellum,neocerebellum +http://purl.obolibrary.org/obo/UBERON_0014644,cerebrocerebellum,pontocerebellum +http://purl.obolibrary.org/obo/UBERON_0014645,nucleus H of ventral tegmentum, +http://purl.obolibrary.org/obo/UBERON_0014646,nucleus K of ventral tegmentum, +http://purl.obolibrary.org/obo/UBERON_0014647,hemisphere part of cerebellar anterior lobe,hemisphere of anterior lobe +http://purl.obolibrary.org/obo/UBERON_0014647,hemisphere part of cerebellar anterior lobe,hemisphere of anterior lobe of cerebellum +http://purl.obolibrary.org/obo/UBERON_0014647,hemisphere part of cerebellar anterior lobe,hemispherium lobus anterior +http://purl.obolibrary.org/obo/UBERON_0014648,hemisphere part of cerebellar posterior lobe,hemisphere of posterior lobe +http://purl.obolibrary.org/obo/UBERON_0014648,hemisphere part of cerebellar posterior lobe,hemisphere of posterior lobe of cerebellum +http://purl.obolibrary.org/obo/UBERON_0014648,hemisphere part of cerebellar posterior lobe,hemispherium lobus posterior +http://purl.obolibrary.org/obo/UBERON_0014649,white matter of medulla oblongata,substantia alba medullae oblongatae +http://purl.obolibrary.org/obo/UBERON_0014649,white matter of medulla oblongata,white matter of medulla +http://purl.obolibrary.org/obo/UBERON_0014649,white matter of medulla oblongata,white substance of medulla +http://purl.obolibrary.org/obo/UBERON_0014650,dorsal hypothalamic nucleus,dorsal nucleus of hypothalamus +http://purl.obolibrary.org/obo/UBERON_0014663,nucleus recessus lateralis, +http://purl.obolibrary.org/obo/UBERON_0014664,nucleus recessus posterioris, +http://purl.obolibrary.org/obo/UBERON_0014665,nucleus preopticus, +http://purl.obolibrary.org/obo/UBERON_0014666,nucleus recessus preopticus, +http://purl.obolibrary.org/obo/UBERON_0014667,periventricular nucleus of hypothalamus, +http://purl.obolibrary.org/obo/UBERON_0014668,distal interphalangeal joint of manual digit 2,distal interphalangeal joint of index finger +http://purl.obolibrary.org/obo/UBERON_0014668,distal interphalangeal joint of manual digit 2,distal interphalangeal joint of manual digit II +http://purl.obolibrary.org/obo/UBERON_0014670,distal interphalangeal joint of manual digit 4,distal interphalangeal joint of manual digit IV +http://purl.obolibrary.org/obo/UBERON_0014670,distal interphalangeal joint of manual digit 4,distal interphalangeal joint of ring finger +http://purl.obolibrary.org/obo/UBERON_0014671,distal interphalangeal joint of manural digit 5,distal interphalangeal joint of little finger +http://purl.obolibrary.org/obo/UBERON_0014671,distal interphalangeal joint of manural digit 5,distal interphalangeal joint of manural digit V +http://purl.obolibrary.org/obo/UBERON_0014672,distal interphalangeal joint of pedal digit 2,distal interphalangeal joint of pedal digit II +http://purl.obolibrary.org/obo/UBERON_0014672,distal interphalangeal joint of pedal digit 2,distal interphalangeal joint of second digit of foot +http://purl.obolibrary.org/obo/UBERON_0014672,distal interphalangeal joint of pedal digit 2,distal interphalangeal joint of second toe +http://purl.obolibrary.org/obo/UBERON_0014674,distal interphalangeal joint of pedal digit 4,distal interphalangeal joint of fourth digit of foot +http://purl.obolibrary.org/obo/UBERON_0014674,distal interphalangeal joint of pedal digit 4,distal interphalangeal joint of fourth toe +http://purl.obolibrary.org/obo/UBERON_0014674,distal interphalangeal joint of pedal digit 4,distal interphalangeal joint of pedal digit IV +http://purl.obolibrary.org/obo/UBERON_0014675,distal interphalangeal joint of pedal digit 5,distal interphalangeal joint of fifth digit of foot +http://purl.obolibrary.org/obo/UBERON_0014675,distal interphalangeal joint of pedal digit 5,distal interphalangeal joint of fifth toe +http://purl.obolibrary.org/obo/UBERON_0014675,distal interphalangeal joint of pedal digit 5,distal interphalangeal joint of little toe +http://purl.obolibrary.org/obo/UBERON_0014675,distal interphalangeal joint of pedal digit 5,distal interphalangeal joint of pedal digit V +http://purl.obolibrary.org/obo/UBERON_0014677,distal interphalangeal joint of digit 2,distal interphalangeal joint of digit II +http://purl.obolibrary.org/obo/UBERON_0014679,distal interphalangeal joint of digit 4,distal interphalangeal joint of digit IV +http://purl.obolibrary.org/obo/UBERON_0014680,distal interphalangeal joint of digit 5,distal interphalangeal joint of digit V +http://purl.obolibrary.org/obo/UBERON_0014682,tooth whorl,tooth spiral +http://purl.obolibrary.org/obo/UBERON_0014682,tooth whorl,whorl of teeth +http://purl.obolibrary.org/obo/UBERON_0014683,parasymphisial tooth whorl,parasymphisial tooth spiral +http://purl.obolibrary.org/obo/UBERON_0014683,parasymphisial tooth whorl,parasymphysical tooth spiral +http://purl.obolibrary.org/obo/UBERON_0014684,Helicoprion tooth whorl, +http://purl.obolibrary.org/obo/UBERON_0014685,pterygoid plexus,plexus venosus pterygoideus +http://purl.obolibrary.org/obo/UBERON_0014685,pterygoid plexus,pterygoid venous plexus +http://purl.obolibrary.org/obo/UBERON_0014686,angular vein, +http://purl.obolibrary.org/obo/UBERON_0014687,temporal sulcus,temporal lobe sulci +http://purl.obolibrary.org/obo/UBERON_0014687,temporal sulcus,temporal lobe sulcus +http://purl.obolibrary.org/obo/UBERON_0014689,middle temporal sulcus, +http://purl.obolibrary.org/obo/UBERON_0014690,left gastric vein,vena gastrica sinistra +http://purl.obolibrary.org/obo/UBERON_0014691,right gastric vein,vena gastrica dextra +http://purl.obolibrary.org/obo/UBERON_0014692,superficial epigastric vein, +http://purl.obolibrary.org/obo/UBERON_0014693,inferior alveolar artery, +http://purl.obolibrary.org/obo/UBERON_0014694,posterior auricular artery, +http://purl.obolibrary.org/obo/UBERON_0014695,deep auricular artery, +http://purl.obolibrary.org/obo/UBERON_0014696,anterior choroidal artery, +http://purl.obolibrary.org/obo/UBERON_0014697,posterior choroidal artery, +http://purl.obolibrary.org/obo/UBERON_0014698,lacrimal caruncle,caruncula lacrimalis +http://purl.obolibrary.org/obo/UBERON_0014699,extraembryonic venous system, +http://purl.obolibrary.org/obo/UBERON_0014701,extraembryonic vascular system, +http://purl.obolibrary.org/obo/UBERON_0014702,frontonasal process epithelium, +http://purl.obolibrary.org/obo/UBERON_0014703,anal membrane ectodermal component, +http://purl.obolibrary.org/obo/UBERON_0014704,pleuroperitoneal canal lumen,pleuro-peritoneal canal cavity +http://purl.obolibrary.org/obo/UBERON_0014705,median lingual swelling epithelium, +http://purl.obolibrary.org/obo/UBERON_0014706,primitive renal collecting duct system,metanephros primitive collecting ducts +http://purl.obolibrary.org/obo/UBERON_0014706,primitive renal collecting duct system,primitive collecting duct +http://purl.obolibrary.org/obo/UBERON_0014707,hyoplastron, +http://purl.obolibrary.org/obo/UBERON_0014708,costal plate of carapace, +http://purl.obolibrary.org/obo/UBERON_0014709,carapace primordium, +http://purl.obolibrary.org/obo/UBERON_0014710,carapacial ridge, +http://purl.obolibrary.org/obo/UBERON_0014711,carapacial ridge mesenchyme, +http://purl.obolibrary.org/obo/UBERON_0014712,carapacial ridge ectoderm, +http://purl.obolibrary.org/obo/UBERON_0014716,interlobular duct, +http://purl.obolibrary.org/obo/UBERON_0014717,mucous acinus,acinus of mucuous gland +http://purl.obolibrary.org/obo/UBERON_0014717,mucous acinus,mucus acinus +http://purl.obolibrary.org/obo/UBERON_0014719,intralobular duct, +http://purl.obolibrary.org/obo/UBERON_0014720,interlobar duct, +http://purl.obolibrary.org/obo/UBERON_0014725,intercalated duct, +http://purl.obolibrary.org/obo/UBERON_0014726,intercalated duct of pancreas,ductus intercalatus (pancreas) +http://purl.obolibrary.org/obo/UBERON_0014726,intercalated duct of pancreas,pancreatic ductule +http://purl.obolibrary.org/obo/UBERON_0014727,intercalated duct of salivary gland, +http://purl.obolibrary.org/obo/UBERON_0014729,striated duct of salivary gland, +http://purl.obolibrary.org/obo/UBERON_0014730,osteon,haversian system +http://purl.obolibrary.org/obo/UBERON_0014730,osteon,osteonum +http://purl.obolibrary.org/obo/UBERON_0014731,haversian canal, +http://purl.obolibrary.org/obo/UBERON_0014732,compound cell cluster organ, +http://purl.obolibrary.org/obo/UBERON_0014733,dorsal ventricular ridge of pallium,dorsal ventricular ridge +http://purl.obolibrary.org/obo/UBERON_0014734,allocortex, +http://purl.obolibrary.org/obo/UBERON_0014735,paleocortex,palaeocortex +http://purl.obolibrary.org/obo/UBERON_0014735,paleocortex,paleocortex (semicortex) +http://purl.obolibrary.org/obo/UBERON_0014736,periallocortex,periallocortex +http://purl.obolibrary.org/obo/UBERON_0014738,medial pallium,lateral zone of dorsal telencephalon +http://purl.obolibrary.org/obo/UBERON_0014738,medial pallium,medial zone of dorsal telencephalic area +http://purl.obolibrary.org/obo/UBERON_0014738,medial pallium,medial zone of dorsal telencephalon +http://purl.obolibrary.org/obo/UBERON_0014740,dorsal pallium,"area dorsalis telencephali, zona dorsalis" +http://purl.obolibrary.org/obo/UBERON_0014740,dorsal pallium,dorsal zone of dorsal telencephalic area +http://purl.obolibrary.org/obo/UBERON_0014740,dorsal pallium,dorsal zone of dorsal telencephalon +http://purl.obolibrary.org/obo/UBERON_0014741,lateral pallium,"area dorsalis telencephali, zona lateralis" +http://purl.obolibrary.org/obo/UBERON_0014741,lateral pallium,lateral zone of D +http://purl.obolibrary.org/obo/UBERON_0014741,lateral pallium,lateral zone of dorsal telencephalic area +http://purl.obolibrary.org/obo/UBERON_0014742,central nucleus of pallium, +http://purl.obolibrary.org/obo/UBERON_0014751,P1 area of pallium (Myxiniformes), +http://purl.obolibrary.org/obo/UBERON_0014752,P2 area of pallium (Myxiniformes), +http://purl.obolibrary.org/obo/UBERON_0014753,P3 area of pallium (Myxiniformes), +http://purl.obolibrary.org/obo/UBERON_0014754,P4 area of pallium (Myxiniformes), +http://purl.obolibrary.org/obo/UBERON_0014755,P5 area of pallium (Myxiniformes), +http://purl.obolibrary.org/obo/UBERON_0014756,Wulst, +http://purl.obolibrary.org/obo/UBERON_0014757,hyperpallium apicale, +http://purl.obolibrary.org/obo/UBERON_0014758,interstitial part of hyperpallium apicale, +http://purl.obolibrary.org/obo/UBERON_0014759,entopallium, +http://purl.obolibrary.org/obo/UBERON_0014760,gustatory nucleus, +http://purl.obolibrary.org/obo/UBERON_0014761,spinal trigeminal tract, +http://purl.obolibrary.org/obo/UBERON_0014762,fused metapodial bones 2-4,fused central metapodials +http://purl.obolibrary.org/obo/UBERON_0014762,fused metapodial bones 2-4,fused metapodials 2-4 +http://purl.obolibrary.org/obo/UBERON_0014763,fused metatarsal bones 2-4,fused central metatarsals +http://purl.obolibrary.org/obo/UBERON_0014763,fused metatarsal bones 2-4,fused metatarsals 2-4 +http://purl.obolibrary.org/obo/UBERON_0014764,anatomical line along groove,line delineating groove +http://purl.obolibrary.org/obo/UBERON_0014765,crus of diaphragm,crural diaphragm +http://purl.obolibrary.org/obo/UBERON_0014766,right crus of diaphragm,crus dextrum (Diaphragma) +http://purl.obolibrary.org/obo/UBERON_0014766,right crus of diaphragm,crus dextrum diaphragmatis +http://purl.obolibrary.org/obo/UBERON_0014766,right crus of diaphragm,external sphincter of esophagus +http://purl.obolibrary.org/obo/UBERON_0014766,right crus of diaphragm,right crus of diaphragm +http://purl.obolibrary.org/obo/UBERON_0014766,right crus of diaphragm,right crus of lumbar part of diaphragm +http://purl.obolibrary.org/obo/UBERON_0014767,left crus of diaphragm,crus sinistrum (Diaphragma) +http://purl.obolibrary.org/obo/UBERON_0014767,left crus of diaphragm,crus sinistrum diaphragmatis +http://purl.obolibrary.org/obo/UBERON_0014767,left crus of diaphragm,left crus of diaphragm +http://purl.obolibrary.org/obo/UBERON_0014767,left crus of diaphragm,left crus of lumbar part of diaphragm +http://purl.obolibrary.org/obo/UBERON_0014768,superior palpebral vein, +http://purl.obolibrary.org/obo/UBERON_0014769,palpebral vein, +http://purl.obolibrary.org/obo/UBERON_0014770,palpebral artery, +http://purl.obolibrary.org/obo/UBERON_0014772,lateral palpebral artery,lateral palpebral branch of ophthalmic artery +http://purl.obolibrary.org/obo/UBERON_0014773,medial palpebral artery,medial palpebral branch of ophthalmic artery +http://purl.obolibrary.org/obo/UBERON_0014775,prosomere,forebrain neuromere +http://purl.obolibrary.org/obo/UBERON_0014776,midbrain neuromere,mesomere of nervous system +http://purl.obolibrary.org/obo/UBERON_0014776,midbrain neuromere,neuromere of mesomere group +http://purl.obolibrary.org/obo/UBERON_0014777,spinal neuromere,spinal cord metameric segment +http://purl.obolibrary.org/obo/UBERON_0014777,spinal neuromere,spinal neuromeres +http://purl.obolibrary.org/obo/UBERON_0014778,cell group,group of cells +http://purl.obolibrary.org/obo/UBERON_0014779,liver reticuloendothelial system, +http://purl.obolibrary.org/obo/UBERON_0014780,palatine aponeurosis,aponeurosis of tensor veli palatini +http://purl.obolibrary.org/obo/UBERON_0014780,palatine aponeurosis,aponeurosis palatina +http://purl.obolibrary.org/obo/UBERON_0014781,stomodeal ectoderm, +http://purl.obolibrary.org/obo/UBERON_0014782,allantois of embryonic urinary system, +http://purl.obolibrary.org/obo/UBERON_0014783,cloacal muscle, +http://purl.obolibrary.org/obo/UBERON_0014784,transverse cloacal muscle,m. transversus cloacae +http://purl.obolibrary.org/obo/UBERON_0014784,transverse cloacal muscle,musculus transversus cloacae +http://purl.obolibrary.org/obo/UBERON_0014785,levator cloacae,m. retractor phalli caudalis +http://purl.obolibrary.org/obo/UBERON_0014785,levator cloacae,musculus levator cloacae +http://purl.obolibrary.org/obo/UBERON_0014785,levator cloacae,musculus retractor phalli caudalis +http://purl.obolibrary.org/obo/UBERON_0014786,extraembryonic umbilical vein,extraembryonic umbilical vein +http://purl.obolibrary.org/obo/UBERON_0014787,left extraembryonic umbilical vein,extraembryonic umbilical vein left +http://purl.obolibrary.org/obo/UBERON_0014788,right extraembryonic umbilical vein,extraembryonic umbilical vein right +http://purl.obolibrary.org/obo/UBERON_0014789,embryo portion of umbilical vein,embryonic umbilical vein +http://purl.obolibrary.org/obo/UBERON_0014790,lingual septum,septum of tongue +http://purl.obolibrary.org/obo/UBERON_0014791,musculature of forelimb stylopod, +http://purl.obolibrary.org/obo/UBERON_0014792,musculature of pelvic complex, +http://purl.obolibrary.org/obo/UBERON_0014793,musculature of pectoral complex, +http://purl.obolibrary.org/obo/UBERON_0014794,pectoral appendage muscle, +http://purl.obolibrary.org/obo/UBERON_0014795,pelvic appendage muscle, +http://purl.obolibrary.org/obo/UBERON_0014796,common tendinous ring,anulus of Zinn +http://purl.obolibrary.org/obo/UBERON_0014796,common tendinous ring,anulus tendineus communis +http://purl.obolibrary.org/obo/UBERON_0014796,common tendinous ring,common annular tendon +http://purl.obolibrary.org/obo/UBERON_0014796,common tendinous ring,common anular tendon +http://purl.obolibrary.org/obo/UBERON_0014797,hypobranchial group muscle, +http://purl.obolibrary.org/obo/UBERON_0014798,clavotrapezius muscle,clavotrapezius +http://purl.obolibrary.org/obo/UBERON_0014799,acromiotrapezius muscle,acromiotrapezius +http://purl.obolibrary.org/obo/UBERON_0014800,spinotrapezius muscle,spinotrapezius +http://purl.obolibrary.org/obo/UBERON_0014800,spinotrapezius muscle,thoracic trapezius +http://purl.obolibrary.org/obo/UBERON_0014800,spinotrapezius muscle,thoracic trapezius muscle +http://purl.obolibrary.org/obo/UBERON_0014801,nuchal line attachment site, +http://purl.obolibrary.org/obo/UBERON_0014802,highest nuchal line attachment site, +http://purl.obolibrary.org/obo/UBERON_0014803,superior nuchal line attachment site, +http://purl.obolibrary.org/obo/UBERON_0014804,median nuchal line attachment site, +http://purl.obolibrary.org/obo/UBERON_0014805,inferior nuchal line attachment site, +http://purl.obolibrary.org/obo/UBERON_0014835,serratus muscle, +http://purl.obolibrary.org/obo/UBERON_0014836,levator arcuum muscle,levator arcuum +http://purl.obolibrary.org/obo/UBERON_0014836,levator arcuum muscle,levatores arcuum +http://purl.obolibrary.org/obo/UBERON_0014837,pectoantebrachialis, +http://purl.obolibrary.org/obo/UBERON_0014838,xiphihumeralis, +http://purl.obolibrary.org/obo/UBERON_0014840,supracoracoideus muscle, +http://purl.obolibrary.org/obo/UBERON_0014842,puboischiofemoralis muscle, +http://purl.obolibrary.org/obo/UBERON_0014847,vastus intermedius, +http://purl.obolibrary.org/obo/UBERON_0014848,tendon of quadriceps femoris,common tendon of quadriceps femoris +http://purl.obolibrary.org/obo/UBERON_0014848,tendon of quadriceps femoris,quadriceps femoris tendon +http://purl.obolibrary.org/obo/UBERON_0014848,tendon of quadriceps femoris,quadriceps tendon +http://purl.obolibrary.org/obo/UBERON_0014849,hemotrichorial placental membrane,placenta hemotrichorial membrane +http://purl.obolibrary.org/obo/UBERON_0014850,hemomonochorial placental membrane,placenta hemomonochorial membrane +http://purl.obolibrary.org/obo/UBERON_0014851,chorda tendinea of left ventricle, +http://purl.obolibrary.org/obo/UBERON_0014852,chorda tendinea of right ventricle, +http://purl.obolibrary.org/obo/UBERON_0014853,commissural leaflet of mitral valve,commissural cusp of mitral valve +http://purl.obolibrary.org/obo/UBERON_0014854,anterior leaflet of mitral valve,anterior cusp of mitral valve +http://purl.obolibrary.org/obo/UBERON_0014854,anterior leaflet of mitral valve,anterior mitral leaflet +http://purl.obolibrary.org/obo/UBERON_0014854,anterior leaflet of mitral valve,anteromedial leaflet of mitral valve +http://purl.obolibrary.org/obo/UBERON_0014854,anterior leaflet of mitral valve,aortic leaflet of mitral valve +http://purl.obolibrary.org/obo/UBERON_0014854,anterior leaflet of mitral valve,aortic leaflet of the left-sided mitral valve +http://purl.obolibrary.org/obo/UBERON_0014854,anterior leaflet of mitral valve,cuspis anterior valvae atrioventricularis sinistri +http://purl.obolibrary.org/obo/UBERON_0014854,anterior leaflet of mitral valve,greater leaflet of mitral valve +http://purl.obolibrary.org/obo/UBERON_0014854,anterior leaflet of mitral valve,septal leaflet of mitral valve +http://purl.obolibrary.org/obo/UBERON_0014855,posterior leaflet of mitral valve,cuspis posterior (valva mitralis) +http://purl.obolibrary.org/obo/UBERON_0014855,posterior leaflet of mitral valve,cuspis posterior valvae atrioventricularis sinistri +http://purl.obolibrary.org/obo/UBERON_0014855,posterior leaflet of mitral valve,mural leaflet of mitral valve +http://purl.obolibrary.org/obo/UBERON_0014855,posterior leaflet of mitral valve,posterior cusp of mitral valve +http://purl.obolibrary.org/obo/UBERON_0014855,posterior leaflet of mitral valve,posterior mitral leaflet +http://purl.obolibrary.org/obo/UBERON_0014855,posterior leaflet of mitral valve,posterolateral leaflet of mitral valve +http://purl.obolibrary.org/obo/UBERON_0014855,posterior leaflet of mitral valve,smaller leaflet of mitral valve +http://purl.obolibrary.org/obo/UBERON_0014855,posterior leaflet of mitral valve,ventricular leaflet of mitral valve +http://purl.obolibrary.org/obo/UBERON_0014870,inferior orbital fissure, +http://purl.obolibrary.org/obo/UBERON_0014871,distal epiphysis of distal phalanx of pedal digit 1,distal end of distal phalanx of big toe +http://purl.obolibrary.org/obo/UBERON_0014871,distal epiphysis of distal phalanx of pedal digit 1,distal epiphysis of distal phalanx of big toe +http://purl.obolibrary.org/obo/UBERON_0014871,distal epiphysis of distal phalanx of pedal digit 1,distal epiphysis of distal phalanx of pedal digit I +http://purl.obolibrary.org/obo/UBERON_0014871,distal epiphysis of distal phalanx of pedal digit 1,head of distal phalanx of big toe +http://purl.obolibrary.org/obo/UBERON_0014871,distal epiphysis of distal phalanx of pedal digit 1,head of distal phalanx of first digit of foot +http://purl.obolibrary.org/obo/UBERON_0014871,distal epiphysis of distal phalanx of pedal digit 1,head of distal phalanx of great toe +http://purl.obolibrary.org/obo/UBERON_0014872,distal epiphysis of distal phalanx of pedal digit 2,distal end of distal phalanx of second toe +http://purl.obolibrary.org/obo/UBERON_0014872,distal epiphysis of distal phalanx of pedal digit 2,distal epiphysis of distal phalanx of pedal digit II +http://purl.obolibrary.org/obo/UBERON_0014872,distal epiphysis of distal phalanx of pedal digit 2,distal epiphysis of distal phalanx of second toe +http://purl.obolibrary.org/obo/UBERON_0014872,distal epiphysis of distal phalanx of pedal digit 2,head of distal phalanx of second toe +http://purl.obolibrary.org/obo/UBERON_0014873,distal epiphysis of distal phalanx of pedal digit 3,distal end of distal phalanx of third toe +http://purl.obolibrary.org/obo/UBERON_0014873,distal epiphysis of distal phalanx of pedal digit 3,distal epiphysis of distal phalanx of pedal digit III +http://purl.obolibrary.org/obo/UBERON_0014873,distal epiphysis of distal phalanx of pedal digit 3,distal epiphysis of distal phalanx of third toe +http://purl.obolibrary.org/obo/UBERON_0014873,distal epiphysis of distal phalanx of pedal digit 3,head of distal phalanx of third digit of foot +http://purl.obolibrary.org/obo/UBERON_0014873,distal epiphysis of distal phalanx of pedal digit 3,head of distal phalanx of third toe +http://purl.obolibrary.org/obo/UBERON_0014874,distal epiphysis of distal phalanx of pedal digit 4,distal end of distal phalanx of fourth toe +http://purl.obolibrary.org/obo/UBERON_0014874,distal epiphysis of distal phalanx of pedal digit 4,distal epiphysis of distal phalanx of fourth toe +http://purl.obolibrary.org/obo/UBERON_0014874,distal epiphysis of distal phalanx of pedal digit 4,distal epiphysis of distal phalanx of pedal digit IV +http://purl.obolibrary.org/obo/UBERON_0014874,distal epiphysis of distal phalanx of pedal digit 4,head of distal phalanx of fourth digit of foot +http://purl.obolibrary.org/obo/UBERON_0014874,distal epiphysis of distal phalanx of pedal digit 4,head of distal phalanx of fourth toe +http://purl.obolibrary.org/obo/UBERON_0014875,distal epiphysis of distal phalanx of pedal digit 5,distal end of distal phalanx of little toe +http://purl.obolibrary.org/obo/UBERON_0014875,distal epiphysis of distal phalanx of pedal digit 5,distal epiphysis of distal phalanx of little toe +http://purl.obolibrary.org/obo/UBERON_0014875,distal epiphysis of distal phalanx of pedal digit 5,distal epiphysis of distal phalanx of pedal digit V +http://purl.obolibrary.org/obo/UBERON_0014875,distal epiphysis of distal phalanx of pedal digit 5,head of distal phalanx of fifth digit of foot +http://purl.obolibrary.org/obo/UBERON_0014875,distal epiphysis of distal phalanx of pedal digit 5,head of distal phalanx of fifth toe +http://purl.obolibrary.org/obo/UBERON_0014875,distal epiphysis of distal phalanx of pedal digit 5,head of distal phalanx of little toe +http://purl.obolibrary.org/obo/UBERON_0014876,distal epiphysis of distal phalanx of pedal digit,distal end of distal phalanx of toe +http://purl.obolibrary.org/obo/UBERON_0014876,distal epiphysis of distal phalanx of pedal digit,head of distal phalanx of digit of foot +http://purl.obolibrary.org/obo/UBERON_0014876,distal epiphysis of distal phalanx of pedal digit,head of distal phalanx of digit of pes +http://purl.obolibrary.org/obo/UBERON_0014876,distal epiphysis of distal phalanx of pedal digit,head of distal phalanx of toe +http://purl.obolibrary.org/obo/UBERON_0014881,distal epiphysis of distal phalanx of manual digit 1,distal end of phalanx of right thumb +http://purl.obolibrary.org/obo/UBERON_0014881,distal epiphysis of distal phalanx of manual digit 1,distal epiphysis of distal phalanx of manual digit I +http://purl.obolibrary.org/obo/UBERON_0014881,distal epiphysis of distal phalanx of manual digit 1,distal epiphysis of distal phalanx of thumb +http://purl.obolibrary.org/obo/UBERON_0014881,distal epiphysis of distal phalanx of manual digit 1,head of distal phalanx of first digit of hand +http://purl.obolibrary.org/obo/UBERON_0014881,distal epiphysis of distal phalanx of manual digit 1,head of distal phalanx of thumb +http://purl.obolibrary.org/obo/UBERON_0014882,distal epiphysis of distal phalanx of manual digit 2,distal end of distal phalanx of index finger +http://purl.obolibrary.org/obo/UBERON_0014882,distal epiphysis of distal phalanx of manual digit 2,distal end of distal phalanx of second finger +http://purl.obolibrary.org/obo/UBERON_0014882,distal epiphysis of distal phalanx of manual digit 2,distal epiphysis of distal phalanx of index finger +http://purl.obolibrary.org/obo/UBERON_0014882,distal epiphysis of distal phalanx of manual digit 2,distal epiphysis of distal phalanx of manual digit II +http://purl.obolibrary.org/obo/UBERON_0014882,distal epiphysis of distal phalanx of manual digit 2,head of distal phalanx of index finger +http://purl.obolibrary.org/obo/UBERON_0014882,distal epiphysis of distal phalanx of manual digit 2,head of distal phalanx of second finger +http://purl.obolibrary.org/obo/UBERON_0014883,distal epiphysis of distal phalanx of manual digit 3,distal end of distal phalanx of middle finger +http://purl.obolibrary.org/obo/UBERON_0014883,distal epiphysis of distal phalanx of manual digit 3,distal end of distal phalanx of third finger +http://purl.obolibrary.org/obo/UBERON_0014883,distal epiphysis of distal phalanx of manual digit 3,distal epiphysis of distal phalanx of manual digit III +http://purl.obolibrary.org/obo/UBERON_0014883,distal epiphysis of distal phalanx of manual digit 3,distal epiphysis of distal phalanx of middle finger +http://purl.obolibrary.org/obo/UBERON_0014883,distal epiphysis of distal phalanx of manual digit 3,head of distal phalanx of middle finger +http://purl.obolibrary.org/obo/UBERON_0014883,distal epiphysis of distal phalanx of manual digit 3,head of distal phalanx of third digit of hand +http://purl.obolibrary.org/obo/UBERON_0014883,distal epiphysis of distal phalanx of manual digit 3,head of distal phalanx of third finger +http://purl.obolibrary.org/obo/UBERON_0014884,distal epiphysis of distal phalanx of manual digit 4,distal end of distal phalanx of fourth finger +http://purl.obolibrary.org/obo/UBERON_0014884,distal epiphysis of distal phalanx of manual digit 4,distal end of distal phalanx of ring finger +http://purl.obolibrary.org/obo/UBERON_0014884,distal epiphysis of distal phalanx of manual digit 4,distal epiphysis of distal phalanx of manual digit IV +http://purl.obolibrary.org/obo/UBERON_0014884,distal epiphysis of distal phalanx of manual digit 4,distal epiphysis of distal phalanx of ring finger +http://purl.obolibrary.org/obo/UBERON_0014884,distal epiphysis of distal phalanx of manual digit 4,head of distal phalanx of fourth digit of hand +http://purl.obolibrary.org/obo/UBERON_0014884,distal epiphysis of distal phalanx of manual digit 4,head of distal phalanx of fourth finger +http://purl.obolibrary.org/obo/UBERON_0014884,distal epiphysis of distal phalanx of manual digit 4,head of distal phalanx of ring finger +http://purl.obolibrary.org/obo/UBERON_0014885,distal epiphysis of distal phalanx of manual digit 5,distal end of distal phalanx of fifth finger +http://purl.obolibrary.org/obo/UBERON_0014885,distal epiphysis of distal phalanx of manual digit 5,distal end of distal phalanx of little finger +http://purl.obolibrary.org/obo/UBERON_0014885,distal epiphysis of distal phalanx of manual digit 5,distal epiphysis of distal phalanx of little finger +http://purl.obolibrary.org/obo/UBERON_0014885,distal epiphysis of distal phalanx of manual digit 5,distal epiphysis of distal phalanx of manual digit V +http://purl.obolibrary.org/obo/UBERON_0014885,distal epiphysis of distal phalanx of manual digit 5,head of distal phalanx of fifth digit of hand +http://purl.obolibrary.org/obo/UBERON_0014885,distal epiphysis of distal phalanx of manual digit 5,head of distal phalanx of fifth finger +http://purl.obolibrary.org/obo/UBERON_0014885,distal epiphysis of distal phalanx of manual digit 5,head of distal phalanx of little finger +http://purl.obolibrary.org/obo/UBERON_0014886,distal epiphysis of distal phalanx of manual digit,distal end of distal phalanx of finger +http://purl.obolibrary.org/obo/UBERON_0014886,distal epiphysis of distal phalanx of manual digit,head of distal phalanx of digit of hand +http://purl.obolibrary.org/obo/UBERON_0014886,distal epiphysis of distal phalanx of manual digit,head of distal phalanx of digit of manus +http://purl.obolibrary.org/obo/UBERON_0014886,distal epiphysis of distal phalanx of manual digit,head of distal phalanx of finger +http://purl.obolibrary.org/obo/UBERON_0014887,distal epiphysis of distal phalanx of digit,distal end of distal phalanx of digit +http://purl.obolibrary.org/obo/UBERON_0014887,distal epiphysis of distal phalanx of digit,head of distal phalanx +http://purl.obolibrary.org/obo/UBERON_0014887,distal epiphysis of distal phalanx of digit,head of distal phalanx of digit +http://purl.obolibrary.org/obo/UBERON_0014887,distal epiphysis of distal phalanx of digit,head of distal phalanx of digit of autopod +http://purl.obolibrary.org/obo/UBERON_0014888,iliotibialis muscle,m. iliotibilias +http://purl.obolibrary.org/obo/UBERON_0014889,left hemisphere of cerebellum, +http://purl.obolibrary.org/obo/UBERON_0014890,right hemisphere of cerebellum, +http://purl.obolibrary.org/obo/UBERON_0014891,brainstem white matter,brain stem white matter +http://purl.obolibrary.org/obo/UBERON_0014891,brainstem white matter,brainstem tract/commissure +http://purl.obolibrary.org/obo/UBERON_0014891,brainstem white matter,brainstem tracts +http://purl.obolibrary.org/obo/UBERON_0014891,brainstem white matter,brainstem tracts and commissures +http://purl.obolibrary.org/obo/UBERON_0014892,skeletal muscle organ,skeletal muscle +http://purl.obolibrary.org/obo/UBERON_0014895,somatic muscle, +http://purl.obolibrary.org/obo/UBERON_0014896,transversely striated somatic muscle, +http://purl.obolibrary.org/obo/UBERON_0014897,obliquely striated somatic muscle, +http://purl.obolibrary.org/obo/UBERON_0014898,lamina terminalis of ischium, +http://purl.obolibrary.org/obo/UBERON_0014899,anterolateral ligament of knee,(mid-third) lateral capsular ligament +http://purl.obolibrary.org/obo/UBERON_0014899,anterolateral ligament of knee,ALL +http://purl.obolibrary.org/obo/UBERON_0014899,anterolateral ligament of knee,anterolateral ligament +http://purl.obolibrary.org/obo/UBERON_0014899,anterolateral ligament of knee,capsulo-osseous layer of the iliotibial band +http://purl.obolibrary.org/obo/UBERON_0014899,anterolateral ligament of knee,ligament of Segond +http://purl.obolibrary.org/obo/UBERON_0014903,primordial vasculature, +http://purl.obolibrary.org/obo/UBERON_0014904,intersegmental pulmonary vein,infrasegmental part of pulmonary vein +http://purl.obolibrary.org/obo/UBERON_0014904,intersegmental pulmonary vein,intersegmental part of pulmonary vein +http://purl.obolibrary.org/obo/UBERON_0014904,intersegmental pulmonary vein,partes intersegmentales venarum pulmonum +http://purl.obolibrary.org/obo/UBERON_0014907,intersomitic vessel,intersegmental vessel +http://purl.obolibrary.org/obo/UBERON_0014907,intersomitic vessel,intersegmental vessels +http://purl.obolibrary.org/obo/UBERON_0014907,intersomitic vessel,intersomitic blood vessel +http://purl.obolibrary.org/obo/UBERON_0014907,intersomitic vessel,intersomitic vessels +http://purl.obolibrary.org/obo/UBERON_0014907,intersomitic vessel,segmental vessel +http://purl.obolibrary.org/obo/UBERON_0014908,cerebellopontine angle, +http://purl.obolibrary.org/obo/UBERON_0014912,thalamic eminence,eminentia thalami +http://purl.obolibrary.org/obo/UBERON_0014913,ventral pallium, +http://purl.obolibrary.org/obo/UBERON_0014914,haemolymphatic fluid-testis barrier, +http://purl.obolibrary.org/obo/UBERON_0014915,genu of facial nerve,genu nervi facialis +http://purl.obolibrary.org/obo/UBERON_0014916,velar vocal fold, +http://purl.obolibrary.org/obo/UBERON_0014917,pouch sphincter, +http://purl.obolibrary.org/obo/UBERON_0014918,retrosplenial granular cortex, +http://purl.obolibrary.org/obo/UBERON_0014930,perivascular space,Virchow-Robin space +http://purl.obolibrary.org/obo/UBERON_0014930,perivascular space,perivascular region +http://purl.obolibrary.org/obo/UBERON_0014931,periungual skin, +http://purl.obolibrary.org/obo/UBERON_0014932,periventricular white matter, +http://purl.obolibrary.org/obo/UBERON_0014933,periventricular gray matter,periventricular grey matter +http://purl.obolibrary.org/obo/UBERON_0014935,cerebral cortex marginal layer,cortical marginal layer +http://purl.obolibrary.org/obo/UBERON_0014935,cerebral cortex marginal layer,cortical marginal zone +http://purl.obolibrary.org/obo/UBERON_0014935,cerebral cortex marginal layer,future cortical layer I +http://purl.obolibrary.org/obo/UBERON_0014936,cerebral cortex ventricular layer, +http://purl.obolibrary.org/obo/UBERON_0014940,cerebral cortex subventricular zone, +http://purl.obolibrary.org/obo/UBERON_0014950,layer of developing cerebral cortex, +http://purl.obolibrary.org/obo/UBERON_0014951,proisocortex, +http://purl.obolibrary.org/obo/UBERON_0015001,radius endochondral element,radius element +http://purl.obolibrary.org/obo/UBERON_0015002,radius-ulna endochondral element,radius-ulna element +http://purl.obolibrary.org/obo/UBERON_0015003,ulna endochondral element,ulna element +http://purl.obolibrary.org/obo/UBERON_0015004,tibia endochondral element,tibia element +http://purl.obolibrary.org/obo/UBERON_0015007,cervical vertebra endochondral element,cervical vertebra element +http://purl.obolibrary.org/obo/UBERON_0015008,thoracic vertebra endochondral element,thoracic vertebra element +http://purl.obolibrary.org/obo/UBERON_0015009,lumbar vertebra endochondral element,lumbar vertebra element +http://purl.obolibrary.org/obo/UBERON_0015010,sacral vertebra endochondral element,sacral vertebra element +http://purl.obolibrary.org/obo/UBERON_0015011,tibiotarsus endochondral element,tibiotarsus element +http://purl.obolibrary.org/obo/UBERON_0015012,tarsometatarsus endochondral element,tarsometatarsus element +http://purl.obolibrary.org/obo/UBERON_0015013,fibula endochondral element,fibula element +http://purl.obolibrary.org/obo/UBERON_0015014,calcaneum endochondral element,calcaneum element +http://purl.obolibrary.org/obo/UBERON_0015015,supraoccipital endochondral element,supraoccipital element +http://purl.obolibrary.org/obo/UBERON_0015016,stapes endochondral element,stapes element +http://purl.obolibrary.org/obo/UBERON_0015017,incus endochondral element,incus element +http://purl.obolibrary.org/obo/UBERON_0015018,malleus endochondral element,malleus element +http://purl.obolibrary.org/obo/UBERON_0015019,rib endochondral element,rib element +http://purl.obolibrary.org/obo/UBERON_0015021,forelimb endochondral element, +http://purl.obolibrary.org/obo/UBERON_0015022,hindlimb endochondral element, +http://purl.obolibrary.org/obo/UBERON_0015023,phalanx endochondral element,phalanx element +http://purl.obolibrary.org/obo/UBERON_0015024,manual digit phalanx endochondral element,manual digit phalanx element +http://purl.obolibrary.org/obo/UBERON_0015025,manual digit 1 phalanx endochondral element,manual digit 1 phalanx element +http://purl.obolibrary.org/obo/UBERON_0015025,manual digit 1 phalanx endochondral element,manual digit I phalanx endochondral element +http://purl.obolibrary.org/obo/UBERON_0015026,manual digit 2 phalanx endochondral element,manual digit 2 phalanx element +http://purl.obolibrary.org/obo/UBERON_0015026,manual digit 2 phalanx endochondral element,manual digit II phalanx endochondral element +http://purl.obolibrary.org/obo/UBERON_0015027,manual digit 3 phalanx endochondral element,manual digit 3 phalanx element +http://purl.obolibrary.org/obo/UBERON_0015027,manual digit 3 phalanx endochondral element,manual digit III phalanx endochondral element +http://purl.obolibrary.org/obo/UBERON_0015028,manual digit 4 phalanx endochondral element,manual digit 4 phalanx element +http://purl.obolibrary.org/obo/UBERON_0015028,manual digit 4 phalanx endochondral element,manual digit IV phalanx endochondral element +http://purl.obolibrary.org/obo/UBERON_0015029,manual digit 5 phalanx endochondral element,manual digit 5 phalanx element +http://purl.obolibrary.org/obo/UBERON_0015029,manual digit 5 phalanx endochondral element,manual digit V phalanx endochondral element +http://purl.obolibrary.org/obo/UBERON_0015030,pedal digit phalanx endochondral element,pedal digit phalanx element +http://purl.obolibrary.org/obo/UBERON_0015031,pedal digit 1 phalanx endochondral element,pedal digit 1 phalanx element +http://purl.obolibrary.org/obo/UBERON_0015031,pedal digit 1 phalanx endochondral element,pedal digit I phalanx endochondral element +http://purl.obolibrary.org/obo/UBERON_0015032,pedal digit 2 phalanx endochondral element,pedal digit 2 phalanx element +http://purl.obolibrary.org/obo/UBERON_0015032,pedal digit 2 phalanx endochondral element,pedal digit II phalanx endochondral element +http://purl.obolibrary.org/obo/UBERON_0015033,pedal digit 3 phalanx endochondral element,pedal digit 3 phalanx element +http://purl.obolibrary.org/obo/UBERON_0015033,pedal digit 3 phalanx endochondral element,pedal digit III phalanx endochondral element +http://purl.obolibrary.org/obo/UBERON_0015034,pedal digit 4 phalanx endochondral element,pedal digit 4 phalanx element +http://purl.obolibrary.org/obo/UBERON_0015034,pedal digit 4 phalanx endochondral element,pedal digit IV phalanx endochondral element +http://purl.obolibrary.org/obo/UBERON_0015035,pedal digit 5 phalanx endochondral element,pedal digit 5 phalanx element +http://purl.obolibrary.org/obo/UBERON_0015035,pedal digit 5 phalanx endochondral element,pedal digit V phalanx endochondral element +http://purl.obolibrary.org/obo/UBERON_0015036,pedal digit metatarsal endochondral element,pedal digit metatarsal element +http://purl.obolibrary.org/obo/UBERON_0015037,pedal digit 1 metatarsal endochondral element,pedal digit 1 metatarsal element +http://purl.obolibrary.org/obo/UBERON_0015037,pedal digit 1 metatarsal endochondral element,pedal digit I metatarsal endochondral element +http://purl.obolibrary.org/obo/UBERON_0015038,pedal digit 2 metatarsal endochondral element,pedal digit 2 metatarsal element +http://purl.obolibrary.org/obo/UBERON_0015038,pedal digit 2 metatarsal endochondral element,pedal digit II metatarsal endochondral element +http://purl.obolibrary.org/obo/UBERON_0015039,pedal digit 3 metatarsal endochondral element,pedal digit 3 metatarsal element +http://purl.obolibrary.org/obo/UBERON_0015039,pedal digit 3 metatarsal endochondral element,pedal digit III metatarsal endochondral element +http://purl.obolibrary.org/obo/UBERON_0015040,pedal digit 4 metatarsal endochondral element,pedal digit 4 metatarsal element +http://purl.obolibrary.org/obo/UBERON_0015040,pedal digit 4 metatarsal endochondral element,pedal digit IV metatarsal endochondral element +http://purl.obolibrary.org/obo/UBERON_0015041,pedal digit 5 metatarsal endochondral element,pedal digit 5 metatarsal element +http://purl.obolibrary.org/obo/UBERON_0015041,pedal digit 5 metatarsal endochondral element,pedal digit V metatarsal endochondral element +http://purl.obolibrary.org/obo/UBERON_0015042,manual digit metacarpus endochondral element,manual digit metacarpus element +http://purl.obolibrary.org/obo/UBERON_0015043,manual digit 1 metacarpus endochondral element,manual digit 1 metacarpus element +http://purl.obolibrary.org/obo/UBERON_0015043,manual digit 1 metacarpus endochondral element,manual digit I metacarpus endochondral element +http://purl.obolibrary.org/obo/UBERON_0015044,manual digit 2 metacarpus endochondral element,manual digit 2 metacarpus element +http://purl.obolibrary.org/obo/UBERON_0015044,manual digit 2 metacarpus endochondral element,manual digit II metacarpus endochondral element +http://purl.obolibrary.org/obo/UBERON_0015045,manual digit 3 metacarpus endochondral element,manual digit 3 metacarpus element +http://purl.obolibrary.org/obo/UBERON_0015045,manual digit 3 metacarpus endochondral element,manual digit III metacarpus endochondral element +http://purl.obolibrary.org/obo/UBERON_0015046,manual digit 4 metacarpus endochondral element,manual digit 4 metacarpus element +http://purl.obolibrary.org/obo/UBERON_0015046,manual digit 4 metacarpus endochondral element,manual digit IV metacarpus endochondral element +http://purl.obolibrary.org/obo/UBERON_0015047,manual digit 5 metacarpus endochondral element,manual digit 5 metacarpus element +http://purl.obolibrary.org/obo/UBERON_0015047,manual digit 5 metacarpus endochondral element,manual digit V metacarpus endochondral element +http://purl.obolibrary.org/obo/UBERON_0015048,basioccipital endochondral element,basioccipital element +http://purl.obolibrary.org/obo/UBERON_0015049,carpus endochondral element,carpus element +http://purl.obolibrary.org/obo/UBERON_0015050,tarsus endochondral element,tarsus element +http://purl.obolibrary.org/obo/UBERON_0015051,exoccipital endochondral element,exoccipital element +http://purl.obolibrary.org/obo/UBERON_0015052,femur endochondral element,femur element +http://purl.obolibrary.org/obo/UBERON_0015053,humerus endochondral element,humerus element +http://purl.obolibrary.org/obo/UBERON_0015054,iliac endochondral element,iliac element +http://purl.obolibrary.org/obo/UBERON_0015055,pubic endochondral element,pubic element +http://purl.obolibrary.org/obo/UBERON_0015056,ischial endochondral element,ischial element +http://purl.obolibrary.org/obo/UBERON_0015057,scapula endochondral element,scapula element +http://purl.obolibrary.org/obo/UBERON_0015058,alisphenoid endochondral element,alisphenoid element +http://purl.obolibrary.org/obo/UBERON_0015059,orbitosphenoid endochondral element,orbitosphenoid element +http://purl.obolibrary.org/obo/UBERON_0015060,sphenoid endochondral element,sphenoid element +http://purl.obolibrary.org/obo/UBERON_0015061,limb endochondral element,limb bone endochondral element +http://purl.obolibrary.org/obo/UBERON_0015062,bone condensation, +http://purl.obolibrary.org/obo/UBERON_0015063,autopod endochondral element, +http://purl.obolibrary.org/obo/UBERON_0015064,autopod cartilage, +http://purl.obolibrary.org/obo/UBERON_0015067,centrale endochondral element,central mesopodium element +http://purl.obolibrary.org/obo/UBERON_0015068,distal carpal endochondral element, +http://purl.obolibrary.org/obo/UBERON_0015069,distal carpal cartilage element, +http://purl.obolibrary.org/obo/UBERON_0015077,centrale cartilage, +http://purl.obolibrary.org/obo/UBERON_0015078,proximal carpal endochondral element,proximal carpal element +http://purl.obolibrary.org/obo/UBERON_0015079,proximal carpal cartilage, +http://purl.obolibrary.org/obo/UBERON_0015080,proximal carpal bone pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0015081,proximal tarsal endochondral element, +http://purl.obolibrary.org/obo/UBERON_0015082,proximal tarsal cartilage, +http://purl.obolibrary.org/obo/UBERON_0015083,proximal tarsal bone pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0015084,distal carpal bone 1 endochondral element, +http://purl.obolibrary.org/obo/UBERON_0015085,distal carpal bone 1 cartilage, +http://purl.obolibrary.org/obo/UBERON_0015086,distal carpal bone 1 pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0015087,distal carpal bone 2 endochondral element, +http://purl.obolibrary.org/obo/UBERON_0015088,distal carpal bone 2 cartilage, +http://purl.obolibrary.org/obo/UBERON_0015089,distal carpal bone 2 pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0015090,distal carpal bone 3 endochondral element, +http://purl.obolibrary.org/obo/UBERON_0015091,distal carpal bone 3 cartilage, +http://purl.obolibrary.org/obo/UBERON_0015092,distal carpal bone 3 pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0015093,distal carpal bone 4 endochondral element, +http://purl.obolibrary.org/obo/UBERON_0015094,distal carpal bone 4 cartilage, +http://purl.obolibrary.org/obo/UBERON_0015095,distal carpal bone 4 pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0015096,distal carpal bone 5 endochondral element, +http://purl.obolibrary.org/obo/UBERON_0015097,distal carpal bone 5 cartilage, +http://purl.obolibrary.org/obo/UBERON_0015098,distal carpal bone 5 pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0015099,distal tarsal endochondral element, +http://purl.obolibrary.org/obo/UBERON_0015100,distal tarsal cartilage, +http://purl.obolibrary.org/obo/UBERON_0015101,distal tarsal bone pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0015102,distal tarsal bone 1 endochondral element, +http://purl.obolibrary.org/obo/UBERON_0015103,distal tarsal bone 1 cartilage,distal tarsal 1 cartilage +http://purl.obolibrary.org/obo/UBERON_0015103,distal tarsal bone 1 cartilage,distal tarsal 1 cartilage element +http://purl.obolibrary.org/obo/UBERON_0015104,distal tarsal bone 1 pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0015105,distal tarsal bone 2 endochondral element, +http://purl.obolibrary.org/obo/UBERON_0015106,distal tarsal bone 2 cartilage,distal tarsal 2 cartilage +http://purl.obolibrary.org/obo/UBERON_0015106,distal tarsal bone 2 cartilage,distal tarsal 2 cartilage element +http://purl.obolibrary.org/obo/UBERON_0015107,distal tarsal bone 2 pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0015108,distal tarsal bone 3 endochondral element, +http://purl.obolibrary.org/obo/UBERON_0015109,distal tarsal bone 3 cartilage, +http://purl.obolibrary.org/obo/UBERON_0015110,distal tarsal bone 3 pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0015111,distal tarsal bone 4 endochondral element, +http://purl.obolibrary.org/obo/UBERON_0015112,distal tarsal bone 4 cartilage, +http://purl.obolibrary.org/obo/UBERON_0015113,distal tarsal bone 4 pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0015114,distal tarsal bone 5 endochondral element, +http://purl.obolibrary.org/obo/UBERON_0015115,distal tarsal bone 5 cartilage, +http://purl.obolibrary.org/obo/UBERON_0015116,distal tarsal bone 5 pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0015117,lamina terminalis of cerebral hemisphere, +http://purl.obolibrary.org/obo/UBERON_0015119,scolex, +http://purl.obolibrary.org/obo/UBERON_0015120,right outer canthus,right angle of eye +http://purl.obolibrary.org/obo/UBERON_0015120,right outer canthus,right lateral palpebral commissure +http://purl.obolibrary.org/obo/UBERON_0015121,left outer canthus,left angle of eye +http://purl.obolibrary.org/obo/UBERON_0015121,left outer canthus,left lateral palpebral commissure +http://purl.obolibrary.org/obo/UBERON_0015122,anatomical line between outer canthi,inter lateral canthal line +http://purl.obolibrary.org/obo/UBERON_0015122,anatomical line between outer canthi,inter outer canthal line +http://purl.obolibrary.org/obo/UBERON_0015125,anterior internodal tract,anterior internodal fasciculus +http://purl.obolibrary.org/obo/UBERON_0015125,anterior internodal tract,anterior internodal tract muscle tissue +http://purl.obolibrary.org/obo/UBERON_0015126,middle internodal tract,internodal tract of Wenckebach +http://purl.obolibrary.org/obo/UBERON_0015126,middle internodal tract,middle internodal fasciculus +http://purl.obolibrary.org/obo/UBERON_0015126,middle internodal tract,middle internodal tract muscle tissue +http://purl.obolibrary.org/obo/UBERON_0015127,posterior internodal tract,internodal tract of Thorel +http://purl.obolibrary.org/obo/UBERON_0015127,posterior internodal tract,posterior internodal fasciculus +http://purl.obolibrary.org/obo/UBERON_0015127,posterior internodal tract,posterior internodal tract muscle tissue +http://purl.obolibrary.org/obo/UBERON_0015128,subepicardial layer of epicardium,perimysial connective tissue of subepicardium +http://purl.obolibrary.org/obo/UBERON_0015128,subepicardial layer of epicardium,subepicardial connective tissue +http://purl.obolibrary.org/obo/UBERON_0015129,epicardial fat,epicardial adipose tissue +http://purl.obolibrary.org/obo/UBERON_0015129,epicardial fat,pericardial adipose tissue +http://purl.obolibrary.org/obo/UBERON_0015130,connective tissue of prostate gland,connective tissue of prostate +http://purl.obolibrary.org/obo/UBERON_0015131,subepithelial connective tissue of prostatic gland, +http://purl.obolibrary.org/obo/UBERON_0015132,extralobar lactiferous duct, +http://purl.obolibrary.org/obo/UBERON_0015133,terminal lactiferous duct,branch of lactiferous duct proper +http://purl.obolibrary.org/obo/UBERON_0015133,terminal lactiferous duct,lobular lactiferous duct +http://purl.obolibrary.org/obo/UBERON_0015134,main lactiferous duct, +http://purl.obolibrary.org/obo/UBERON_0015135,primary lactiferous duct, +http://purl.obolibrary.org/obo/UBERON_0015136,secondary lactiferous duct, +http://purl.obolibrary.org/obo/UBERON_0015137,tertiary lactiferous duct, +http://purl.obolibrary.org/obo/UBERON_0015138,quarternary lactiferous duct, +http://purl.obolibrary.org/obo/UBERON_0015139,infundibulum of gallbladder,gallbladder infundibulum +http://purl.obolibrary.org/obo/UBERON_0015139,infundibulum of gallbladder,infundibulum vesicae biliaris +http://purl.obolibrary.org/obo/UBERON_0015142,falciform fat, +http://purl.obolibrary.org/obo/UBERON_0015143,mesenteric fat pad,mesenteric fat depot +http://purl.obolibrary.org/obo/UBERON_0015144,autopod hair,hair of hand/foot +http://purl.obolibrary.org/obo/UBERON_0015144,autopod hair,hand/foot hair +http://purl.obolibrary.org/obo/UBERON_0015145,pes hair,foot hair +http://purl.obolibrary.org/obo/UBERON_0015145,pes hair,hair of foot +http://purl.obolibrary.org/obo/UBERON_0015145,pes hair,hind foot hair +http://purl.obolibrary.org/obo/UBERON_0015146,manus hair,hair of hand +http://purl.obolibrary.org/obo/UBERON_0015146,manus hair,hand hair +http://purl.obolibrary.org/obo/UBERON_0015147,pinna hair, +http://purl.obolibrary.org/obo/UBERON_0015148,tail hair, +http://purl.obolibrary.org/obo/UBERON_0015149,ventral hair, +http://purl.obolibrary.org/obo/UBERON_0015150,dorsal hair, +http://purl.obolibrary.org/obo/UBERON_0015151,Harderian gland duct,duct of Harder's gland +http://purl.obolibrary.org/obo/UBERON_0015151,Harderian gland duct,duct of Harderian gland +http://purl.obolibrary.org/obo/UBERON_0015152,gland of ocular region,ocular gland +http://purl.obolibrary.org/obo/UBERON_0015152,gland of ocular region,orbital gland +http://purl.obolibrary.org/obo/UBERON_0015153,medial gland of ocular region,medial ocular gland +http://purl.obolibrary.org/obo/UBERON_0015153,medial gland of ocular region,medial orbital gland +http://purl.obolibrary.org/obo/UBERON_0015154,lateral gland of orbital region,lateral ocular gland +http://purl.obolibrary.org/obo/UBERON_0015154,lateral gland of orbital region,lateral orbital gland +http://purl.obolibrary.org/obo/UBERON_0015155,conjunctival space,cavity of conjunctival sac +http://purl.obolibrary.org/obo/UBERON_0015155,conjunctival space,conjunctival sac cavity +http://purl.obolibrary.org/obo/UBERON_0015155,conjunctival space,subconjunctival space +http://purl.obolibrary.org/obo/UBERON_0015156,terminal branch of ophthalmic artery, +http://purl.obolibrary.org/obo/UBERON_0015157,zygomatico-orbital artery, +http://purl.obolibrary.org/obo/UBERON_0015158,ophthalmotemporal branch of external ophthalmic artery, +http://purl.obolibrary.org/obo/UBERON_0015160,supraorbital artery,arteria supraorbitalis +http://purl.obolibrary.org/obo/UBERON_0015160,supraorbital artery,supra-orbital artery +http://purl.obolibrary.org/obo/UBERON_0015160,supraorbital artery,supraorbital artery +http://purl.obolibrary.org/obo/UBERON_0015161,inferior branch of oculomotor nerve,inferior ramus of oculomotor nerve +http://purl.obolibrary.org/obo/UBERON_0015161,inferior branch of oculomotor nerve,oculomotor nerve inferior division +http://purl.obolibrary.org/obo/UBERON_0015161,inferior branch of oculomotor nerve,ramus inferior (nervus oculomotorius [III]) +http://purl.obolibrary.org/obo/UBERON_0015161,inferior branch of oculomotor nerve,ramus inferior nervi oculomotorii +http://purl.obolibrary.org/obo/UBERON_0015161,inferior branch of oculomotor nerve,ramus inferior nervus oculomotorii +http://purl.obolibrary.org/obo/UBERON_0015162,superior branch of oculomotor nerve,oculomotor nerve superior division +http://purl.obolibrary.org/obo/UBERON_0015162,superior branch of oculomotor nerve,ramus superior (nervus oculomotorius [III]) +http://purl.obolibrary.org/obo/UBERON_0015162,superior branch of oculomotor nerve,ramus superior nervi oculomotorii +http://purl.obolibrary.org/obo/UBERON_0015162,superior branch of oculomotor nerve,ramus superior nervus oculomotorii +http://purl.obolibrary.org/obo/UBERON_0015162,superior branch of oculomotor nerve,superior ramus of oculomotor nerve +http://purl.obolibrary.org/obo/UBERON_0015165,multi-unit eye, +http://purl.obolibrary.org/obo/UBERON_0015169,tapetum,tapetal layer +http://purl.obolibrary.org/obo/UBERON_0015169,tapetum,tapetum layer +http://purl.obolibrary.org/obo/UBERON_0015170,nauplius eye, +http://purl.obolibrary.org/obo/UBERON_0015171,uterine spiral artery,endometrial spiral arteriole +http://purl.obolibrary.org/obo/UBERON_0015171,uterine spiral artery,endometrial spiral artery +http://purl.obolibrary.org/obo/UBERON_0015172,endometrial blood vessel,blood vessel of endometrium +http://purl.obolibrary.org/obo/UBERON_0015173,helicine branch of uterine artery,arcuate artery of uterus +http://purl.obolibrary.org/obo/UBERON_0015173,helicine branch of uterine artery,helicine artery of uterus +http://purl.obolibrary.org/obo/UBERON_0015173,helicine branch of uterine artery,rami helicini uterinae +http://purl.obolibrary.org/obo/UBERON_0015174,helicine artery of penis,arteriae helicinae penis +http://purl.obolibrary.org/obo/UBERON_0015177,helicine artery,helicine arteries +http://purl.obolibrary.org/obo/UBERON_0015178,somite border, +http://purl.obolibrary.org/obo/UBERON_0015179,somite boundary epithelium,intersomitic epithelium +http://purl.obolibrary.org/obo/UBERON_0015179,somite boundary epithelium,intersomitic membrane +http://purl.obolibrary.org/obo/UBERON_0015180,neck of talus,talar neck +http://purl.obolibrary.org/obo/UBERON_0015180,neck of talus,talus neck +http://purl.obolibrary.org/obo/UBERON_0015181,neck of tooth,cervix dentis +http://purl.obolibrary.org/obo/UBERON_0015181,neck of tooth,cervix of tooth +http://purl.obolibrary.org/obo/UBERON_0015181,neck of tooth,collumn dentis +http://purl.obolibrary.org/obo/UBERON_0015181,neck of tooth,dental neck +http://purl.obolibrary.org/obo/UBERON_0015181,neck of tooth,tooth neck +http://purl.obolibrary.org/obo/UBERON_0015189,perineural vascular plexus,PNVP +http://purl.obolibrary.org/obo/UBERON_0015202,lymph heart, +http://purl.obolibrary.org/obo/UBERON_0015203,non-connected functional system, +http://purl.obolibrary.org/obo/UBERON_0015204,glandular system, +http://purl.obolibrary.org/obo/UBERON_0015212,lateral structure, +http://purl.obolibrary.org/obo/UBERON_0015213,barnacle cement gland, +http://purl.obolibrary.org/obo/UBERON_0015214,arcuate ligament, +http://purl.obolibrary.org/obo/UBERON_0015215,median arcuate ligament, +http://purl.obolibrary.org/obo/UBERON_0015216,nasal meatus, +http://purl.obolibrary.org/obo/UBERON_0015219,middle nasal meatus, +http://purl.obolibrary.org/obo/UBERON_0015220,inferior nasal meatus, +http://purl.obolibrary.org/obo/UBERON_0015221,common nasal meatus, +http://purl.obolibrary.org/obo/UBERON_0015222,ventral nasal meatus, +http://purl.obolibrary.org/obo/UBERON_0015223,dorsal nasal meatus, +http://purl.obolibrary.org/obo/UBERON_0015224,interventricular foramen intermedium,interventricular ostium intermedium +http://purl.obolibrary.org/obo/UBERON_0015225,atrial foramen intermedium,interatrial ostium intermedium +http://purl.obolibrary.org/obo/UBERON_0015226,bulbar spiral septum, +http://purl.obolibrary.org/obo/UBERON_0015227,peristaltic circulatory vessel,peristaltic heart +http://purl.obolibrary.org/obo/UBERON_0015228,circulatory organ,cardiac pump +http://purl.obolibrary.org/obo/UBERON_0015228,circulatory organ,cardiac structure +http://purl.obolibrary.org/obo/UBERON_0015228,circulatory organ,circulatory vessel +http://purl.obolibrary.org/obo/UBERON_0015228,circulatory organ,heart +http://purl.obolibrary.org/obo/UBERON_0015228,circulatory organ,heart or heart like organ +http://purl.obolibrary.org/obo/UBERON_0015229,accessory circulatory organ, +http://purl.obolibrary.org/obo/UBERON_0015230,dorsal vessel heart, +http://purl.obolibrary.org/obo/UBERON_0015231,circulatory system dorsal vessel, +http://purl.obolibrary.org/obo/UBERON_0015232,nematode pharynx, +http://purl.obolibrary.org/obo/UBERON_0015233,nucleus of dorsal thalamus,dorsal thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0015233,nucleus of dorsal thalamus,nucleus of thalamus proper +http://purl.obolibrary.org/obo/UBERON_0015234,nucleus of ventral thalamus,ventral thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0015238,pineal complex, +http://purl.obolibrary.org/obo/UBERON_0015241,parapineal organ, +http://purl.obolibrary.org/obo/UBERON_0015243,lower part of vagina,caudal vagina +http://purl.obolibrary.org/obo/UBERON_0015243,lower part of vagina,perineal part of vagina +http://purl.obolibrary.org/obo/UBERON_0015243,lower part of vagina,vagina lower part +http://purl.obolibrary.org/obo/UBERON_0015244,accessory olfactory bulb granule cell layer,"AOB, granular layer" +http://purl.obolibrary.org/obo/UBERON_0015244,accessory olfactory bulb granule cell layer,"accessory olfactory bulb, granular layer" +http://purl.obolibrary.org/obo/UBERON_0015245,septal olfactory organ, +http://purl.obolibrary.org/obo/UBERON_0015246,septal organ of Masera, +http://purl.obolibrary.org/obo/UBERON_0015247,bifurcation of trachea,bifurcatio tracheae +http://purl.obolibrary.org/obo/UBERON_0015247,bifurcation of trachea,tracheal bifurcation +http://purl.obolibrary.org/obo/UBERON_0015249,digit skin, +http://purl.obolibrary.org/obo/UBERON_0015250,inferior olivary commissure, +http://purl.obolibrary.org/obo/UBERON_0015251,modified sebaceous gland, +http://purl.obolibrary.org/obo/UBERON_0015252,coat hair follicle, +http://purl.obolibrary.org/obo/UBERON_0015280,pancreas left lobe, +http://purl.obolibrary.org/obo/UBERON_0015281,pancreas right lobe, +http://purl.obolibrary.org/obo/UBERON_0015329,respiratory system basement membrane, +http://purl.obolibrary.org/obo/UBERON_0015350,saphenous artery,ramus saphenus (arteria descendentis genus) +http://purl.obolibrary.org/obo/UBERON_0015410,heart plus pericardium,heart/pericardium +http://purl.obolibrary.org/obo/UBERON_0015418,urethra mesenchymal layer, +http://purl.obolibrary.org/obo/UBERON_0015420,ureteral valve,ureteral valve +http://purl.obolibrary.org/obo/UBERON_0015420,ureteral valve,valve or ureter +http://purl.obolibrary.org/obo/UBERON_0015423,hilar portion of hepatic duct,hilar part of hepatic duct +http://purl.obolibrary.org/obo/UBERON_0015430,levator auris longus muscle,levator auris longus +http://purl.obolibrary.org/obo/UBERON_0015432,accessory olfactory bulb mitral cell layer,"accessory olfactory bulb, mitral layer" +http://purl.obolibrary.org/obo/UBERON_0015433,blood vessel external elastic membrane,external elastic lamina +http://purl.obolibrary.org/obo/UBERON_0015433,blood vessel external elastic membrane,external elastic membrane +http://purl.obolibrary.org/obo/UBERON_0015445,anterior lingual gland duct, +http://purl.obolibrary.org/obo/UBERON_0015453,subcutaneous lymph node, +http://purl.obolibrary.org/obo/UBERON_0015454,pancreatic fat pad, +http://purl.obolibrary.org/obo/UBERON_0015455,accessory hepatic vein, +http://purl.obolibrary.org/obo/UBERON_0015458,mediastinal fat pad, +http://purl.obolibrary.org/obo/UBERON_0015469,splenic lymph node, +http://purl.obolibrary.org/obo/UBERON_0015472,tracheobronchial lymph node,nodus tracheobronchiale lymphaticus +http://purl.obolibrary.org/obo/UBERON_0015472,tracheobronchial lymph node,tracheobronchal lymph node +http://purl.obolibrary.org/obo/UBERON_0015472,tracheobronchial lymph node,tracheobronchal node +http://purl.obolibrary.org/obo/UBERON_0015472,tracheobronchial lymph node,tracheobronchial node +http://purl.obolibrary.org/obo/UBERON_0015474,axilla skin,axillary skin +http://purl.obolibrary.org/obo/UBERON_0015474,axilla skin,skin of axilla +http://purl.obolibrary.org/obo/UBERON_0015476,nose skin,external nasal skin +http://purl.obolibrary.org/obo/UBERON_0015476,nose skin,skin of external nose +http://purl.obolibrary.org/obo/UBERON_0015476,nose skin,skin of nose +http://purl.obolibrary.org/obo/UBERON_0015477,axillary fat pad, +http://purl.obolibrary.org/obo/UBERON_0015479,scrotum skin,scrotal skin +http://purl.obolibrary.org/obo/UBERON_0015479,scrotum skin,skin of scrotum +http://purl.obolibrary.org/obo/UBERON_0015480,proper hepatic artery,hepatic artery proper +http://purl.obolibrary.org/obo/UBERON_0015481,left hepatic artery,left branch of hepatic artery +http://purl.obolibrary.org/obo/UBERON_0015481,left hepatic artery,left part of hepatic artery proper +http://purl.obolibrary.org/obo/UBERON_0015481,left hepatic artery,ramus sinister (arteria hepatica propria) +http://purl.obolibrary.org/obo/UBERON_0015482,right hepatic artery,ramus dexter (arteria hepatica propria) +http://purl.obolibrary.org/obo/UBERON_0015482,right hepatic artery,right branch of hepatic artery proper +http://purl.obolibrary.org/obo/UBERON_0015482,right hepatic artery,right part of hepatic artery proper +http://purl.obolibrary.org/obo/UBERON_0015484,epidermis of metapodial pad, +http://purl.obolibrary.org/obo/UBERON_0015485,choledocho-duodenal junction,choledochoduodenal junction +http://purl.obolibrary.org/obo/UBERON_0015488,sural nerve, +http://purl.obolibrary.org/obo/UBERON_0015510,body of corpus callosum,corpus callosum body +http://purl.obolibrary.org/obo/UBERON_0015510,body of corpus callosum,truncus corporis callosi +http://purl.obolibrary.org/obo/UBERON_0015593,frontal gyrus, +http://purl.obolibrary.org/obo/UBERON_0015599,genu of corpus callosum,corpus callosum genu +http://purl.obolibrary.org/obo/UBERON_0015703,rostrum of corpus callosum, +http://purl.obolibrary.org/obo/UBERON_0015704,sagittal sinus, +http://purl.obolibrary.org/obo/UBERON_0015708,splenium of the corpus callosum,corpus callosum splenium +http://purl.obolibrary.org/obo/UBERON_0015708,splenium of the corpus callosum,"corpus callosum, splenium" +http://purl.obolibrary.org/obo/UBERON_0015716,anal canal epithelium,anal canal epithelium +http://purl.obolibrary.org/obo/UBERON_0015716,anal canal epithelium,epithelium of anal canal +http://purl.obolibrary.org/obo/UBERON_0015717,smooth muscle tissue layer of ejaculatory duct,muscle layer of ejaculatory duct +http://purl.obolibrary.org/obo/UBERON_0015751,inferior tarsal muscle, +http://purl.obolibrary.org/obo/UBERON_0015757,heterogeneous tissue,portion of heterogeneous tissue +http://purl.obolibrary.org/obo/UBERON_0015760,mixed stratified cuboidal and columnar epithelium, +http://purl.obolibrary.org/obo/UBERON_0015764,dense regular elastic tissue,dense elastic connective tissue +http://purl.obolibrary.org/obo/UBERON_0015764,dense regular elastic tissue,dense regular elastic connective tissue +http://purl.obolibrary.org/obo/UBERON_0015766,epithelium of duct of salivary gland,epithelium of salivary duct +http://purl.obolibrary.org/obo/UBERON_0015766,epithelium of duct of salivary gland,salivary duct epithelium +http://purl.obolibrary.org/obo/UBERON_0015766,epithelium of duct of salivary gland,salivary ductal epithelium +http://purl.obolibrary.org/obo/UBERON_0015777,transitional epithelium of prostatic urethra, +http://purl.obolibrary.org/obo/UBERON_0015783,smooth muscle layer in fatty layer of subcutaneous tissue,muscle layer in fatty layer of subcutaneous tissue +http://purl.obolibrary.org/obo/UBERON_0015783,smooth muscle layer in fatty layer of subcutaneous tissue,stratum musculosum panniculi adiposi telae subcutaneae +http://purl.obolibrary.org/obo/UBERON_0015784,duct of olfactory gland,olfactory gland duct +http://purl.obolibrary.org/obo/UBERON_0015785,acinus of olfactory gland,acinar part of olfactory gland +http://purl.obolibrary.org/obo/UBERON_0015785,acinus of olfactory gland,olfactory gland acinus +http://purl.obolibrary.org/obo/UBERON_0015786,respiratory segment of nasal mucosa,pars respiratoria tunicae mucosae nasi +http://purl.obolibrary.org/obo/UBERON_0015786,respiratory segment of nasal mucosa,respiratory zone of nasal mucosa +http://purl.obolibrary.org/obo/UBERON_0015787,upper respiratory conduit,respiratory conduit +http://purl.obolibrary.org/obo/UBERON_0015788,olfactory apparatus chamber, +http://purl.obolibrary.org/obo/UBERON_0015789,cranial or facial muscle,cranial/facial muscle +http://purl.obolibrary.org/obo/UBERON_0015790,autopod skin, +http://purl.obolibrary.org/obo/UBERON_0015791,digit connective tissue, +http://purl.obolibrary.org/obo/UBERON_0015792,prostate gland dorsal lobe, +http://purl.obolibrary.org/obo/UBERON_0015793,induseum griseum,gray stria of Lancisi +http://purl.obolibrary.org/obo/UBERON_0015793,induseum griseum,gyrus epicallosus +http://purl.obolibrary.org/obo/UBERON_0015793,induseum griseum,gyrus indusium griseum +http://purl.obolibrary.org/obo/UBERON_0015793,induseum griseum,indusium griseum +http://purl.obolibrary.org/obo/UBERON_0015793,induseum griseum,supracallosal gyrus +http://purl.obolibrary.org/obo/UBERON_0015794,left lung lobar bronchus epithelium, +http://purl.obolibrary.org/obo/UBERON_0015795,right lung lobar bronchus epitheium, +http://purl.obolibrary.org/obo/UBERON_0015796,liver blood vessel, +http://purl.obolibrary.org/obo/UBERON_0015800,taenia tectum of brain,taenia tecta +http://purl.obolibrary.org/obo/UBERON_0015800,taenia tectum of brain,taenia tectum +http://purl.obolibrary.org/obo/UBERON_0015800,taenia tectum of brain,tenia tecta +http://purl.obolibrary.org/obo/UBERON_0015800,taenia tectum of brain,tenia tectum +http://purl.obolibrary.org/obo/UBERON_0015807,ear epithelium, +http://purl.obolibrary.org/obo/UBERON_0015808,eye epithelium, +http://purl.obolibrary.org/obo/UBERON_0015813,middle ear epithelium, +http://purl.obolibrary.org/obo/UBERON_0015814,outer ear epithelium, +http://purl.obolibrary.org/obo/UBERON_0015828,cerebellum ventricular layer, +http://purl.obolibrary.org/obo/UBERON_0015829,forebrain ventricular layer, +http://purl.obolibrary.org/obo/UBERON_0015833,foregut epithelium, +http://purl.obolibrary.org/obo/UBERON_0015834,duodenum lamina propria,duodenal lamina propria +http://purl.obolibrary.org/obo/UBERON_0015834,duodenum lamina propria,lamina propria mucosae of duodenum +http://purl.obolibrary.org/obo/UBERON_0015834,duodenum lamina propria,lamina propria of duodenum +http://purl.obolibrary.org/obo/UBERON_0015837,incisor dental pulp, +http://purl.obolibrary.org/obo/UBERON_0015838,molar dental pulp, +http://purl.obolibrary.org/obo/UBERON_0015839,molar epithelium,epithelium of molar +http://purl.obolibrary.org/obo/UBERON_0015839,molar epithelium,epithelium of molar tooth +http://purl.obolibrary.org/obo/UBERON_0015840,incisor dental lamina, +http://purl.obolibrary.org/obo/UBERON_0015841,molar dental lamina, +http://purl.obolibrary.org/obo/UBERON_0015842,incisor enamel organ, +http://purl.obolibrary.org/obo/UBERON_0015843,molar enamel organ, +http://purl.obolibrary.org/obo/UBERON_0015844,molar dental papilla,molar odontogenic papilla +http://purl.obolibrary.org/obo/UBERON_0015844,molar dental papilla,molar tooth odontogenic papilla +http://purl.obolibrary.org/obo/UBERON_0015846,incisor mesenchyme, +http://purl.obolibrary.org/obo/UBERON_0015847,upper left incisor tooth, +http://purl.obolibrary.org/obo/UBERON_0015848,incisor tusk, +http://purl.obolibrary.org/obo/UBERON_0015849,canine tusk, +http://purl.obolibrary.org/obo/UBERON_0015850,upper left incisor tusk, +http://purl.obolibrary.org/obo/UBERON_0015851,upper right incisor tusk, +http://purl.obolibrary.org/obo/UBERON_0015852,narwhal tusk,median incisor tusk +http://purl.obolibrary.org/obo/UBERON_0015853,dental pulp of median incisor tusk, +http://purl.obolibrary.org/obo/UBERON_0015854,interpedicular line,inter-vertebral-pedicle line +http://purl.obolibrary.org/obo/UBERON_0015855,ventral ectodermal ridge, +http://purl.obolibrary.org/obo/UBERON_0015857,parotid lymph node,parotid node +http://purl.obolibrary.org/obo/UBERON_0015859,hepatic lymph node,hepatic node +http://purl.obolibrary.org/obo/UBERON_0015859,hepatic lymph node,lymphoglandulae hepaticae +http://purl.obolibrary.org/obo/UBERON_0015859,hepatic lymph node,lymphoglandulæ hepaticæ +http://purl.obolibrary.org/obo/UBERON_0015859,hepatic lymph node,nodi lymphoidei hepatici +http://purl.obolibrary.org/obo/UBERON_0015859,hepatic lymph node,portal lymph node +http://purl.obolibrary.org/obo/UBERON_0015860,visceral abdominal lymph node, +http://purl.obolibrary.org/obo/UBERON_0015863,gastric lymph node,gastric node +http://purl.obolibrary.org/obo/UBERON_0015863,gastric lymph node,nodi lymphoidei gastrici +http://purl.obolibrary.org/obo/UBERON_0015865,pancreaticosplenic lymph node,pancreaticosplenic node +http://purl.obolibrary.org/obo/UBERON_0015866,pyloric lymph node,pyloric node +http://purl.obolibrary.org/obo/UBERON_0015867,cystic lymph node,cystic node +http://purl.obolibrary.org/obo/UBERON_0015868,lymph node of epiploic foramen,lymph node of anterior border of epiploic foramen +http://purl.obolibrary.org/obo/UBERON_0015868,lymph node of epiploic foramen,lymph node of anterior border of omental foramen +http://purl.obolibrary.org/obo/UBERON_0015868,lymph node of epiploic foramen,node of anterior border of epiploic foramen +http://purl.obolibrary.org/obo/UBERON_0015868,lymph node of epiploic foramen,node of anterior border of omental foramen +http://purl.obolibrary.org/obo/UBERON_0015868,lymph node of epiploic foramen,nodus foraminalis +http://purl.obolibrary.org/obo/UBERON_0015868,lymph node of epiploic foramen,nodus lymphoideus foraminalis +http://purl.obolibrary.org/obo/UBERON_0015869,retropharyngeal lymph node,retropharyngeal node +http://purl.obolibrary.org/obo/UBERON_0015870,lymph node of head, +http://purl.obolibrary.org/obo/UBERON_0015871,facial lymph node,buccal lymph node +http://purl.obolibrary.org/obo/UBERON_0015872,mandibular lymph node,mandibular node +http://purl.obolibrary.org/obo/UBERON_0015872,mandibular lymph node,nodus mandibularis +http://purl.obolibrary.org/obo/UBERON_0015873,heel skin,skin of heel +http://purl.obolibrary.org/obo/UBERON_0015875,heel,calcaneal region +http://purl.obolibrary.org/obo/UBERON_0015875,heel,heel region +http://purl.obolibrary.org/obo/UBERON_0015875,heel,regio calcanea +http://purl.obolibrary.org/obo/UBERON_0015876,pelvic lymph node,lymph node of pelvis +http://purl.obolibrary.org/obo/UBERON_0015877,parietal pelvic lymph node, +http://purl.obolibrary.org/obo/UBERON_0015878,common iliac lymph node,common iliac node +http://purl.obolibrary.org/obo/UBERON_0015878,common iliac lymph node,iliac lymph node +http://purl.obolibrary.org/obo/UBERON_0015880,external iliac lymph node,external iliac node +http://purl.obolibrary.org/obo/UBERON_0015881,internal iliac lymph node,internal iliac node +http://purl.obolibrary.org/obo/UBERON_0015883,gluteal lymph node,gluteal node +http://purl.obolibrary.org/obo/UBERON_0015884,presymphysial lymph node,presymphysial node +http://purl.obolibrary.org/obo/UBERON_0015885,cymba conchae of pinna,cymba conchae of auricle +http://purl.obolibrary.org/obo/UBERON_0015886,root of nail,nail groove +http://purl.obolibrary.org/obo/UBERON_0015886,root of nail,nail root +http://purl.obolibrary.org/obo/UBERON_0015895,proximal deep inguinal lymph node,nodus inguinales profundi proximalis +http://purl.obolibrary.org/obo/UBERON_0015895,proximal deep inguinal lymph node,nodus lymphoideus inguinales profundi proximalis +http://purl.obolibrary.org/obo/UBERON_0015895,proximal deep inguinal lymph node,proximal deep inguinal node +http://purl.obolibrary.org/obo/UBERON_0015895,proximal deep inguinal lymph node,proximal inguinal lymph node +http://purl.obolibrary.org/obo/UBERON_0015895,proximal deep inguinal lymph node,rosenmuller's gland +http://purl.obolibrary.org/obo/UBERON_0015895,proximal deep inguinal lymph node,rosenmuller's node +http://purl.obolibrary.org/obo/UBERON_0015917,superficial lymph node, +http://purl.obolibrary.org/obo/UBERON_0015918,deep lymph node, +http://purl.obolibrary.org/obo/UBERON_0015922,accessory mandibular lymph node, +http://purl.obolibrary.org/obo/UBERON_0015923,superficial parotid lymph node,superficial parotid node +http://purl.obolibrary.org/obo/UBERON_0015925,superficial intraparotid lymph node,superficial intraparotid node +http://purl.obolibrary.org/obo/UBERON_0015926,cranial deep lymph node,cranial deep node +http://purl.obolibrary.org/obo/UBERON_0016374,sciatic lymph node, +http://purl.obolibrary.org/obo/UBERON_0016378,ileocolic lymph node,nodi lymphoidei ileocolici +http://purl.obolibrary.org/obo/UBERON_0016382,prescapular lymph node, +http://purl.obolibrary.org/obo/UBERON_0016386,paraaortic lymph node,lateral aortic lymph node +http://purl.obolibrary.org/obo/UBERON_0016386,paraaortic lymph node,lateral aortic node +http://purl.obolibrary.org/obo/UBERON_0016386,paraaortic lymph node,para-aortic lymph node +http://purl.obolibrary.org/obo/UBERON_0016390,auricular lymph node, +http://purl.obolibrary.org/obo/UBERON_0016391,thymic lymph node, +http://purl.obolibrary.org/obo/UBERON_0016392,mastoid lymph node,mastoid node +http://purl.obolibrary.org/obo/UBERON_0016392,mastoid lymph node,postauricular lymph node +http://purl.obolibrary.org/obo/UBERON_0016392,mastoid lymph node,retro-auricular lymph node +http://purl.obolibrary.org/obo/UBERON_0016392,mastoid lymph node,retro-auricular node +http://purl.obolibrary.org/obo/UBERON_0016393,deep parotid lymph node,deep parotid node +http://purl.obolibrary.org/obo/UBERON_0016394,anterior auricular lymph node,pre-auricular lymph node +http://purl.obolibrary.org/obo/UBERON_0016394,anterior auricular lymph node,pre-auricular node +http://purl.obolibrary.org/obo/UBERON_0016394,anterior auricular lymph node,preauricular lymph node +http://purl.obolibrary.org/obo/UBERON_0016394,anterior auricular lymph node,preauricular node +http://purl.obolibrary.org/obo/UBERON_0016395,infra-auricular lymph node,infra-auricular deep node +http://purl.obolibrary.org/obo/UBERON_0016395,infra-auricular lymph node,infra-auricular deep parotid lymph node +http://purl.obolibrary.org/obo/UBERON_0016395,infra-auricular lymph node,infra-auricular deep parotid node +http://purl.obolibrary.org/obo/UBERON_0016395,infra-auricular lymph node,infra-auricular node +http://purl.obolibrary.org/obo/UBERON_0016396,intraglandular lymph node,intraglandular node +http://purl.obolibrary.org/obo/UBERON_0016397,submental lymph node,level Ia neck node +http://purl.obolibrary.org/obo/UBERON_0016397,submental lymph node,submental node +http://purl.obolibrary.org/obo/UBERON_0016398,lymph node of lower limb, +http://purl.obolibrary.org/obo/UBERON_0016399,lymph node of upper limb, +http://purl.obolibrary.org/obo/UBERON_0016400,infrapatellar fat pad, +http://purl.obolibrary.org/obo/UBERON_0016401,pancreaticoduodenal lymph node,pancreaticoduodenal node +http://purl.obolibrary.org/obo/UBERON_0016402,mesocolic lymph node, +http://purl.obolibrary.org/obo/UBERON_0016403,thoracic wall, +http://purl.obolibrary.org/obo/UBERON_0016404,cervical vertebral arch joint,cervical facet joint +http://purl.obolibrary.org/obo/UBERON_0016404,cervical vertebral arch joint,joint of cervical vertebral arch +http://purl.obolibrary.org/obo/UBERON_0016404,cervical vertebral arch joint,joint of cervical vertebral articular process +http://purl.obolibrary.org/obo/UBERON_0016404,cervical vertebral arch joint,zygapophyseal joint of cervical vertebrae +http://purl.obolibrary.org/obo/UBERON_0016404,cervical vertebral arch joint,zygapophysial joint of cervical vertebrae +http://purl.obolibrary.org/obo/UBERON_0016405,pulmonary capillary,capillary of lung +http://purl.obolibrary.org/obo/UBERON_0016408,corona of glans penis,corona of penis +http://purl.obolibrary.org/obo/UBERON_0016408,corona of glans penis,glans corona +http://purl.obolibrary.org/obo/UBERON_0016409,base of glans penis,glans penile base +http://purl.obolibrary.org/obo/UBERON_0016410,male breast,mamma masculina +http://purl.obolibrary.org/obo/UBERON_0016412,central part of body of bony vertebral centrum,central part of body of vertebra +http://purl.obolibrary.org/obo/UBERON_0016413,medullary cavity of long bone, +http://purl.obolibrary.org/obo/UBERON_0016416,anterior chest,anterior thoracic region +http://purl.obolibrary.org/obo/UBERON_0016416,anterior chest,front of chest +http://purl.obolibrary.org/obo/UBERON_0016416,anterior chest,ventral chest +http://purl.obolibrary.org/obo/UBERON_0016418,nasion, +http://purl.obolibrary.org/obo/UBERON_0016419,bony part of vertebral arch,bony part of arch of vertebra +http://purl.obolibrary.org/obo/UBERON_0016422,compact bone of long bone, +http://purl.obolibrary.org/obo/UBERON_0016423,compact bone of diaphysis, +http://purl.obolibrary.org/obo/UBERON_0016425,epiphyseal plate of radius, +http://purl.obolibrary.org/obo/UBERON_0016426,proximal interphalangeal joint of little finger, +http://purl.obolibrary.org/obo/UBERON_0016430,palmar branch of median nerve,median nerve palmar branch +http://purl.obolibrary.org/obo/UBERON_0016430,palmar branch of median nerve,palmar branch of anterior interosseous nerve +http://purl.obolibrary.org/obo/UBERON_0016430,palmar branch of median nerve,palmar cutaneous branch of median nerve +http://purl.obolibrary.org/obo/UBERON_0016430,palmar branch of median nerve,ramus palmaris (nervus medianus) +http://purl.obolibrary.org/obo/UBERON_0016430,palmar branch of median nerve,ramus palmaris nervus interossei antebrachii anterior +http://purl.obolibrary.org/obo/UBERON_0016435,chest wall, +http://purl.obolibrary.org/obo/UBERON_0016440,glabella region of bone,glabellar surface of frontal bone +http://purl.obolibrary.org/obo/UBERON_0016442,median palatine suture,median palatine suture of skull +http://purl.obolibrary.org/obo/UBERON_0016442,median palatine suture,middle palatine suture of skull +http://purl.obolibrary.org/obo/UBERON_0016442,median palatine suture,midpalatal suture of skull +http://purl.obolibrary.org/obo/UBERON_0016446,hair of head,head hair +http://purl.obolibrary.org/obo/UBERON_0016447,hair of trunk,trunk hair +http://purl.obolibrary.org/obo/UBERON_0016452,upper secondary premolar tooth,maxillary secondary premolar tooth +http://purl.obolibrary.org/obo/UBERON_0016452,upper secondary premolar tooth,upper permanent premolar tooth +http://purl.obolibrary.org/obo/UBERON_0016453,lower secondary premolar tooth,lower permanent premolar tooth +http://purl.obolibrary.org/obo/UBERON_0016453,lower secondary premolar tooth,mandibular secondary premolar tooth +http://purl.obolibrary.org/obo/UBERON_0016454,upper central secondary incisor tooth,maxillary central permanent incisor tooth +http://purl.obolibrary.org/obo/UBERON_0016454,upper central secondary incisor tooth,maxillary central secondary incisor tooth +http://purl.obolibrary.org/obo/UBERON_0016454,upper central secondary incisor tooth,upper central permanent incisor tooth +http://purl.obolibrary.org/obo/UBERON_0016455,upper lateral secondary incisor tooth,maxillary lateral secondary incisor tooth +http://purl.obolibrary.org/obo/UBERON_0016455,upper lateral secondary incisor tooth,upper lateral permanent incisor tooth +http://purl.obolibrary.org/obo/UBERON_0016458,esophageal hiatus,esophageal hiatus of diaphragm +http://purl.obolibrary.org/obo/UBERON_0016458,esophageal hiatus,oesophageal aperture +http://purl.obolibrary.org/obo/UBERON_0016458,esophageal hiatus,oesophageal hiatus +http://purl.obolibrary.org/obo/UBERON_0016459,posterior pole of lens,polus posterior (lens) +http://purl.obolibrary.org/obo/UBERON_0016459,posterior pole of lens,polus posterior lentis +http://purl.obolibrary.org/obo/UBERON_0016462,periorbital skin,skin of orbital part of face +http://purl.obolibrary.org/obo/UBERON_0016464,dorsum of nose,nasal dorsum +http://purl.obolibrary.org/obo/UBERON_0016466,antihelix,antihelical part of pinna +http://purl.obolibrary.org/obo/UBERON_0016466,antihelix,antihelix (auricula) +http://purl.obolibrary.org/obo/UBERON_0016466,antihelix,antihelix of pinna +http://purl.obolibrary.org/obo/UBERON_0016467,antitragus,antitragal part of pinna +http://purl.obolibrary.org/obo/UBERON_0016475,skin of forehead,forehead skin +http://purl.obolibrary.org/obo/UBERON_0016476,primary incisor tooth,deciduous incisor tooth +http://purl.obolibrary.org/obo/UBERON_0016476,primary incisor tooth,temporary incisor tooth +http://purl.obolibrary.org/obo/UBERON_0016477,zygomatic process of maxilla,malar process of maxilla +http://purl.obolibrary.org/obo/UBERON_0016477,zygomatic process of maxilla,processus zygomaticus (maxilla) +http://purl.obolibrary.org/obo/UBERON_0016477,zygomatic process of maxilla,processus zygomaticus maxillae +http://purl.obolibrary.org/obo/UBERON_0016477,zygomatic process of maxilla,zygomaticoorbital process of maxilla +http://purl.obolibrary.org/obo/UBERON_0016478,liver stroma,hepatic stroma +http://purl.obolibrary.org/obo/UBERON_0016478,liver stroma,stroma of liver +http://purl.obolibrary.org/obo/UBERON_0016479,capsule of liver,capsula fibrosa perivascularis +http://purl.obolibrary.org/obo/UBERON_0016479,capsule of liver,fibrous capsule of liver +http://purl.obolibrary.org/obo/UBERON_0016479,capsule of liver,glisson's capsule +http://purl.obolibrary.org/obo/UBERON_0016479,capsule of liver,hepatic capsule +http://purl.obolibrary.org/obo/UBERON_0016479,capsule of liver,tunica fibrosa (hepar) +http://purl.obolibrary.org/obo/UBERON_0016479,capsule of liver,tunica fibrosa hepatis +http://purl.obolibrary.org/obo/UBERON_0016480,interlobular stroma of liver, +http://purl.obolibrary.org/obo/UBERON_0016481,bronchial lymph node, +http://purl.obolibrary.org/obo/UBERON_0016482,dental plaque, +http://purl.obolibrary.org/obo/UBERON_0016484,subgingival dental plaque, +http://purl.obolibrary.org/obo/UBERON_0016485,supragingival dental plaque, +http://purl.obolibrary.org/obo/UBERON_0016486,posterior fornix of vagina,pars posterior fornicis vaginae +http://purl.obolibrary.org/obo/UBERON_0016486,posterior fornix of vagina,posterior part of fornix of vagina +http://purl.obolibrary.org/obo/UBERON_0016487,anterior fornix of vagina,anterior part of fornix of vagina +http://purl.obolibrary.org/obo/UBERON_0016487,anterior fornix of vagina,pars anterior fornicis vaginae +http://purl.obolibrary.org/obo/UBERON_0016490,auditory system, +http://purl.obolibrary.org/obo/UBERON_0016491,vertebral centrum element,centrum of vertebra +http://purl.obolibrary.org/obo/UBERON_0016492,foramen spinosum of sphenoid bone,foramen spinosum +http://purl.obolibrary.org/obo/UBERON_0016493,palmaris longus muscle,musculus palmaris longus +http://purl.obolibrary.org/obo/UBERON_0016493,palmaris longus muscle,palmaris longus +http://purl.obolibrary.org/obo/UBERON_0016496,tendon of palmaris longus,palmaris longus tendon +http://purl.obolibrary.org/obo/UBERON_0016497,epicondyle of humerus, +http://purl.obolibrary.org/obo/UBERON_0016498,intestinal-cloacal junction,intestinal opening +http://purl.obolibrary.org/obo/UBERON_0016499,esophageal-pneumatic duct sphincter, +http://purl.obolibrary.org/obo/UBERON_0016500,muscularis mucosa of fundus of urinary bladder, +http://purl.obolibrary.org/obo/UBERON_0016501,muscularis mucosae of fundus of stomach, +http://purl.obolibrary.org/obo/UBERON_0016502,stomach fundus lumen,cavity of fundus of stomach +http://purl.obolibrary.org/obo/UBERON_0016502,stomach fundus lumen,lumen of fundus of stomach +http://purl.obolibrary.org/obo/UBERON_0016502,stomach fundus lumen,lumen of stomach fundus +http://purl.obolibrary.org/obo/UBERON_0016504,umbilical ring, +http://purl.obolibrary.org/obo/UBERON_0016505,Mullerian tubercle,Muellerian tubercle +http://purl.obolibrary.org/obo/UBERON_0016505,Mullerian tubercle,Müllerian tubercle +http://purl.obolibrary.org/obo/UBERON_0016505,Mullerian tubercle,mullerian tubercle +http://purl.obolibrary.org/obo/UBERON_0016508,pelvic ganglion,inferior hypogastric ganglion +http://purl.obolibrary.org/obo/UBERON_0016508,pelvic ganglion,pelvic ganglia +http://purl.obolibrary.org/obo/UBERON_0016509,cavity of right ventricle,right ventricle lumen +http://purl.obolibrary.org/obo/UBERON_0016509,cavity of right ventricle,right ventricular cavity +http://purl.obolibrary.org/obo/UBERON_0016510,epithelium of male urethra,male urethral epithelium +http://purl.obolibrary.org/obo/UBERON_0016510,epithelium of male urethra,urethral epithelium of male +http://purl.obolibrary.org/obo/UBERON_0016511,lamina propria of fundus of stomach,lamina propria mucosae of fundus of stomach +http://purl.obolibrary.org/obo/UBERON_0016512,lumen of duodenum,doudenal lumen +http://purl.obolibrary.org/obo/UBERON_0016512,lumen of duodenum,duodenal lumen +http://purl.obolibrary.org/obo/UBERON_0016513,cavity of left atrium,left atrial cavity +http://purl.obolibrary.org/obo/UBERON_0016513,cavity of left atrium,left atrium lumen +http://purl.obolibrary.org/obo/UBERON_0016514,cavity of left ventricle,left ventricular cavity +http://purl.obolibrary.org/obo/UBERON_0016515,muscular layer of prostatic urethra,muscle layer of prostatic part of urethra +http://purl.obolibrary.org/obo/UBERON_0016515,muscular layer of prostatic urethra,muscle layer of prostatic urethra +http://purl.obolibrary.org/obo/UBERON_0016515,muscular layer of prostatic urethra,muscular coat of prostatic urethra +http://purl.obolibrary.org/obo/UBERON_0016516,lamina propria of prostatic urethra,lamina propria of prostatic part of urethra +http://purl.obolibrary.org/obo/UBERON_0016516,lamina propria of prostatic urethra,lamina propria of prostatic urethra +http://purl.obolibrary.org/obo/UBERON_0016517,lumen of jejunum,jejunal lumen +http://purl.obolibrary.org/obo/UBERON_0016517,lumen of jejunum,jejunum lumen +http://purl.obolibrary.org/obo/UBERON_0016519,muscularis mucosae of jejunum, +http://purl.obolibrary.org/obo/UBERON_0016520,epithelium of female urethra,female urethral epithelium +http://purl.obolibrary.org/obo/UBERON_0016520,epithelium of female urethra,urethral epithelium of female +http://purl.obolibrary.org/obo/UBERON_0016522,cavity of right atrium,right atrial cavity +http://purl.obolibrary.org/obo/UBERON_0016524,muscle layer of spongiose part of urethra,muscle layer of penile urethra +http://purl.obolibrary.org/obo/UBERON_0016524,muscle layer of spongiose part of urethra,muscle layer of spongy urethra +http://purl.obolibrary.org/obo/UBERON_0016524,muscle layer of spongiose part of urethra,muscular coat of spongy urethra +http://purl.obolibrary.org/obo/UBERON_0016524,muscle layer of spongiose part of urethra,muscular layer of spongy urethra +http://purl.obolibrary.org/obo/UBERON_0016524,muscle layer of spongiose part of urethra,tunica muscularis urethrae spongiosa +http://purl.obolibrary.org/obo/UBERON_0016525,frontal lobe,lobi frontales +http://purl.obolibrary.org/obo/UBERON_0016525,frontal lobe,lobus frontalis +http://purl.obolibrary.org/obo/UBERON_0016526,lobe of cerebral hemisphere,cerebral cortical segment +http://purl.obolibrary.org/obo/UBERON_0016526,lobe of cerebral hemisphere,cerebral hemisphere lobe +http://purl.obolibrary.org/obo/UBERON_0016526,lobe of cerebral hemisphere,cerebral lobe +http://purl.obolibrary.org/obo/UBERON_0016526,lobe of cerebral hemisphere,lobe of cerebral cortex +http://purl.obolibrary.org/obo/UBERON_0016526,lobe of cerebral hemisphere,lobe parts of cerebral cortex +http://purl.obolibrary.org/obo/UBERON_0016526,lobe of cerebral hemisphere,lobes of the brain +http://purl.obolibrary.org/obo/UBERON_0016526,lobe of cerebral hemisphere,lobi cerebri +http://purl.obolibrary.org/obo/UBERON_0016526,lobe of cerebral hemisphere,regional organ part of cerebral cortex +http://purl.obolibrary.org/obo/UBERON_0016526,lobe of cerebral hemisphere,segment of cerebral cortex +http://purl.obolibrary.org/obo/UBERON_0016527,white matter of cerebral lobe, +http://purl.obolibrary.org/obo/UBERON_0016528,white matter of frontal lobe,frontal lobe white matter +http://purl.obolibrary.org/obo/UBERON_0016529,cortex of cerebral lobe,cortex of cerebral hemisphere lobe +http://purl.obolibrary.org/obo/UBERON_0016529,cortex of cerebral lobe,cortex of lobe of cerebral hemisphere +http://purl.obolibrary.org/obo/UBERON_0016529,cortex of cerebral lobe,gray matter of lobe of cerebral hemisphere +http://purl.obolibrary.org/obo/UBERON_0016529,cortex of cerebral lobe,neocortical part of cerebral hemisphere +http://purl.obolibrary.org/obo/UBERON_0016530,parietal cortex,cortex of parietal lobe +http://purl.obolibrary.org/obo/UBERON_0016530,parietal cortex,gray matter of parietal lobe +http://purl.obolibrary.org/obo/UBERON_0016530,parietal cortex,parietal lobe cortex +http://purl.obolibrary.org/obo/UBERON_0016530,parietal cortex,parietal neocortex +http://purl.obolibrary.org/obo/UBERON_0016531,white matter of parietal lobe, +http://purl.obolibrary.org/obo/UBERON_0016534,white matter of temporal lobe, +http://purl.obolibrary.org/obo/UBERON_0016535,white matter of occipital lobe, +http://purl.obolibrary.org/obo/UBERON_0016536,white matter of limbic lobe, +http://purl.obolibrary.org/obo/UBERON_0016538,temporal cortex,cortex of temporal lobe +http://purl.obolibrary.org/obo/UBERON_0016538,temporal cortex,temporal lobe cortex +http://purl.obolibrary.org/obo/UBERON_0016538,temporal cortex,temporal neocortex +http://purl.obolibrary.org/obo/UBERON_0016540,occipital cortex,cortex of occipital lobe +http://purl.obolibrary.org/obo/UBERON_0016540,occipital cortex,occipital lobe cortex +http://purl.obolibrary.org/obo/UBERON_0016540,occipital cortex,occipital neocortex +http://purl.obolibrary.org/obo/UBERON_0016542,limbic cortex,cortex of limbic lobe +http://purl.obolibrary.org/obo/UBERON_0016542,limbic cortex,limbic lobe cortex +http://purl.obolibrary.org/obo/UBERON_0016545,pharyngeal ectoderm, +http://purl.obolibrary.org/obo/UBERON_0016547,lower foregut region endoderm, +http://purl.obolibrary.org/obo/UBERON_0016548,central nervous system gray matter layer,CNS gray matter layer +http://purl.obolibrary.org/obo/UBERON_0016548,central nervous system gray matter layer,CNS grey matter layer +http://purl.obolibrary.org/obo/UBERON_0016548,central nervous system gray matter layer,gray matter layer of neuraxis +http://purl.obolibrary.org/obo/UBERON_0016548,central nervous system gray matter layer,grey matter layer +http://purl.obolibrary.org/obo/UBERON_0016548,central nervous system gray matter layer,grey matter layer of neuraxis +http://purl.obolibrary.org/obo/UBERON_0016549,central nervous system white matter layer,CNS white matter layer +http://purl.obolibrary.org/obo/UBERON_0016549,central nervous system white matter layer,white matter layer +http://purl.obolibrary.org/obo/UBERON_0016549,central nervous system white matter layer,white matter layer of neuraxis +http://purl.obolibrary.org/obo/UBERON_0016550,spinal cord column, +http://purl.obolibrary.org/obo/UBERON_0016551,subdivision of spinal cord ventral column, +http://purl.obolibrary.org/obo/UBERON_0016552,phlegm, +http://purl.obolibrary.org/obo/UBERON_0016553,respiratory system mucus, +http://purl.obolibrary.org/obo/UBERON_0016554,white matter of midbrain,mesencephalic white matter +http://purl.obolibrary.org/obo/UBERON_0016555,stria of telencephalon,telencephalon stria +http://purl.obolibrary.org/obo/UBERON_0016559,superficial cerebral vein,cortical cerebral vein +http://purl.obolibrary.org/obo/UBERON_0016564,deep cerebral vein, +http://purl.obolibrary.org/obo/UBERON_0016565,cerebral blood vessel, +http://purl.obolibrary.org/obo/UBERON_0016566,pit, +http://purl.obolibrary.org/obo/UBERON_0016567,statoconial membrane,otoconial-statoconial membrane +http://purl.obolibrary.org/obo/UBERON_0016568,gelatinous layer of statoconial membrane, +http://purl.obolibrary.org/obo/UBERON_0016569,subcupular meshwork of statoconial membrane, +http://purl.obolibrary.org/obo/UBERON_0016570,lamina of gray matter of spinal cord,rexed lamina +http://purl.obolibrary.org/obo/UBERON_0016574,lamina III of gray matter of spinal cord,lamina spinale III +http://purl.obolibrary.org/obo/UBERON_0016574,lamina III of gray matter of spinal cord,rexed lamina III +http://purl.obolibrary.org/obo/UBERON_0016574,lamina III of gray matter of spinal cord,spinal lamina III +http://purl.obolibrary.org/obo/UBERON_0016575,lamina IV of gray matter of spinal cord,lamina spinale IV +http://purl.obolibrary.org/obo/UBERON_0016575,lamina IV of gray matter of spinal cord,rexed lamina IV +http://purl.obolibrary.org/obo/UBERON_0016575,lamina IV of gray matter of spinal cord,spinal lamina IV +http://purl.obolibrary.org/obo/UBERON_0016576,lamina V of gray matter of spinal cord,Rexed's lamina V +http://purl.obolibrary.org/obo/UBERON_0016576,lamina V of gray matter of spinal cord,lamina 5 +http://purl.obolibrary.org/obo/UBERON_0016576,lamina V of gray matter of spinal cord,lamina V +http://purl.obolibrary.org/obo/UBERON_0016576,lamina V of gray matter of spinal cord,lamina spinalis V +http://purl.obolibrary.org/obo/UBERON_0016576,lamina V of gray matter of spinal cord,neck of the dorsal horn +http://purl.obolibrary.org/obo/UBERON_0016576,lamina V of gray matter of spinal cord,rexed lamina V +http://purl.obolibrary.org/obo/UBERON_0016576,lamina V of gray matter of spinal cord,spinal lamina V +http://purl.obolibrary.org/obo/UBERON_0016577,lamina VI of gray matter of spinal cord,rexed lamina VI +http://purl.obolibrary.org/obo/UBERON_0016577,lamina VI of gray matter of spinal cord,spinal lamina VI +http://purl.obolibrary.org/obo/UBERON_0016578,lamina VII of gray matter of spinal cord,Rexed's lamina VII +http://purl.obolibrary.org/obo/UBERON_0016578,lamina VII of gray matter of spinal cord,lamina 7 +http://purl.obolibrary.org/obo/UBERON_0016578,lamina VII of gray matter of spinal cord,lamina VII +http://purl.obolibrary.org/obo/UBERON_0016578,lamina VII of gray matter of spinal cord,lamina spinalis VII +http://purl.obolibrary.org/obo/UBERON_0016578,lamina VII of gray matter of spinal cord,rexed lamina VII +http://purl.obolibrary.org/obo/UBERON_0016578,lamina VII of gray matter of spinal cord,spinal lamina VII +http://purl.obolibrary.org/obo/UBERON_0016579,lamina VIII of gray matter of spinal cord,rexed lamina VIII +http://purl.obolibrary.org/obo/UBERON_0016579,lamina VIII of gray matter of spinal cord,spinal lamina VIII +http://purl.obolibrary.org/obo/UBERON_0016580,lamina IX of gray matter of spinal cord,rexed lamina IX +http://purl.obolibrary.org/obo/UBERON_0016580,lamina IX of gray matter of spinal cord,spinal lamina IX +http://purl.obolibrary.org/obo/UBERON_0016610,nucleus proprius of spinal cord,nucleus proprius +http://purl.obolibrary.org/obo/UBERON_0016610,nucleus proprius of spinal cord,nucleus proprius columnae posterioris +http://purl.obolibrary.org/obo/UBERON_0016610,nucleus proprius of spinal cord,nucleus proprius cornu dorsalis +http://purl.obolibrary.org/obo/UBERON_0016610,nucleus proprius of spinal cord,nucleus proprius dorsalis +http://purl.obolibrary.org/obo/UBERON_0016610,nucleus proprius of spinal cord,nucleus proprius medullae spinalis +http://purl.obolibrary.org/obo/UBERON_0016610,nucleus proprius of spinal cord,nucleus proprius of the spinal cord +http://purl.obolibrary.org/obo/UBERON_0016610,nucleus proprius of spinal cord,proper sensory nucleus +http://purl.obolibrary.org/obo/UBERON_0016611,"auditory hillocks, pharyngeal arch 1 derived", +http://purl.obolibrary.org/obo/UBERON_0016612,"auditory hillocks, pharyngeal arch 2 derived", +http://purl.obolibrary.org/obo/UBERON_0016618,baleen feeding system, +http://purl.obolibrary.org/obo/UBERON_0016619,Y-shaped fibrocartilage skeleton of ventral pouch,YSFS +http://purl.obolibrary.org/obo/UBERON_0016620,ventral throat pleat, +http://purl.obolibrary.org/obo/UBERON_0016621,lunge feeding organ, +http://purl.obolibrary.org/obo/UBERON_0016622,lunge feeding organ papilla, +http://purl.obolibrary.org/obo/UBERON_0016624,lunge feeding vibrissa, +http://purl.obolibrary.org/obo/UBERON_0016628,stem of Y-shaped fibrocartilage skeleton of ventral pouch,YSF stem +http://purl.obolibrary.org/obo/UBERON_0016629,branch of Y-shaped fibrocartilage skeleton of ventral pouch,YSF branch +http://purl.obolibrary.org/obo/UBERON_0016630,neurovascular bundle, +http://purl.obolibrary.org/obo/UBERON_0016631,actinopterygian frontal-parietal joint, +http://purl.obolibrary.org/obo/UBERON_0016632,isthmus of fallopian tube,isthmus tubae uterinae +http://purl.obolibrary.org/obo/UBERON_0016633,parvocellular reticular nucleus,nucleus reticularis parvocellularis +http://purl.obolibrary.org/obo/UBERON_0016633,parvocellular reticular nucleus,parvicellular reticular nucleus +http://purl.obolibrary.org/obo/UBERON_0016633,parvocellular reticular nucleus,parvocellular reticular nucleus +http://purl.obolibrary.org/obo/UBERON_0016634,premotor cortex,premotor cortex (area 6) +http://purl.obolibrary.org/obo/UBERON_0016635,paragigantocellular nucleus, +http://purl.obolibrary.org/obo/UBERON_0016636,supplemental motor cortex, +http://purl.obolibrary.org/obo/UBERON_0016637,lateral periolivary nucleus, +http://purl.obolibrary.org/obo/UBERON_0016641,subparafascicular nucleus, +http://purl.obolibrary.org/obo/UBERON_0016824,lateral paragigantocellular nucleus,lateral paragigantocellular reticular nucleus +http://purl.obolibrary.org/obo/UBERON_0016824,lateral paragigantocellular nucleus,"paragigantocellular nucleus, lateral part" +http://purl.obolibrary.org/obo/UBERON_0016825,dorsal paragigantocellular nucleus,dorsal paragigantocellular reticular nucleus +http://purl.obolibrary.org/obo/UBERON_0016825,dorsal paragigantocellular nucleus,"paragigantocellular nucleus, dorsal part" +http://purl.obolibrary.org/obo/UBERON_0016825,dorsal paragigantocellular nucleus,posterior paragigantocellular reticular nucleus +http://purl.obolibrary.org/obo/UBERON_0016826,paramedian medullary reticular complex,paramedian group (medullary reticular formation) +http://purl.obolibrary.org/obo/UBERON_0016826,paramedian medullary reticular complex,paramedian medullary reticular group +http://purl.obolibrary.org/obo/UBERON_0016827,dorsal paramedian reticular nucleus,dorsal paramedian nuclei of raphe +http://purl.obolibrary.org/obo/UBERON_0016827,dorsal paramedian reticular nucleus,dorsal paramedian nucleus +http://purl.obolibrary.org/obo/UBERON_0016827,dorsal paramedian reticular nucleus,posterior paramedian nucleus +http://purl.obolibrary.org/obo/UBERON_0016832,paratrigeminal nucleus, +http://purl.obolibrary.org/obo/UBERON_0016843,lateral nucleus of trapezoid body,LNTB +http://purl.obolibrary.org/obo/UBERON_0016848,retroambiguus nucleus,nucleus retroambigualis +http://purl.obolibrary.org/obo/UBERON_0016848,retroambiguus nucleus,nucleus retroambiguus +http://purl.obolibrary.org/obo/UBERON_0016848,retroambiguus nucleus,retroambiguus nucleus +http://purl.obolibrary.org/obo/UBERON_0016850,nucleus of phrenic nerve,nucleus nervi phrenici +http://purl.obolibrary.org/obo/UBERON_0016850,nucleus of phrenic nerve,nucleus of phrenic nerve +http://purl.obolibrary.org/obo/UBERON_0016850,nucleus of phrenic nerve,nucleus of the phrenic nerve +http://purl.obolibrary.org/obo/UBERON_0016850,nucleus of phrenic nerve,nucleus phrenicus columnae anterioris medullae spinalis +http://purl.obolibrary.org/obo/UBERON_0016850,nucleus of phrenic nerve,phrenic neural nucleus +http://purl.obolibrary.org/obo/UBERON_0016850,nucleus of phrenic nerve,phrenic nucleus +http://purl.obolibrary.org/obo/UBERON_0016850,nucleus of phrenic nerve,phrenic nucleus of anterior column of spinal cord +http://purl.obolibrary.org/obo/UBERON_0016851,renal fascia,fascia of Zuckerkandl +http://purl.obolibrary.org/obo/UBERON_0016851,renal fascia,gerota's capsule +http://purl.obolibrary.org/obo/UBERON_0016851,renal fascia,gerota's fascia +http://purl.obolibrary.org/obo/UBERON_0016852,skin scent gland,cutaneous scent gland +http://purl.obolibrary.org/obo/UBERON_0016853,interdigital gland,interdigital sinus +http://purl.obolibrary.org/obo/UBERON_0016854,dorsal part of optic cup,dorsal optic cup +http://purl.obolibrary.org/obo/UBERON_0016854,dorsal part of optic cup,dorsal region of optic cup +http://purl.obolibrary.org/obo/UBERON_0016855,ventral part of optic cup,ventral optic cup +http://purl.obolibrary.org/obo/UBERON_0016855,ventral part of optic cup,ventral region of optic cup +http://purl.obolibrary.org/obo/UBERON_0016856,digit 6,autopod digit 6 +http://purl.obolibrary.org/obo/UBERON_0016856,digit 6,digit VI +http://purl.obolibrary.org/obo/UBERON_0016856,digit 6,limb digit 6 +http://purl.obolibrary.org/obo/UBERON_0016856,digit 6,sixth digit +http://purl.obolibrary.org/obo/UBERON_0016857,digit 7,autopod digit 7 +http://purl.obolibrary.org/obo/UBERON_0016857,digit 7,digit VII +http://purl.obolibrary.org/obo/UBERON_0016857,digit 7,limb digit 7 +http://purl.obolibrary.org/obo/UBERON_0016857,digit 7,seventh digit +http://purl.obolibrary.org/obo/UBERON_0016858,digit 8,autopod digit 8 +http://purl.obolibrary.org/obo/UBERON_0016858,digit 8,digit VIII +http://purl.obolibrary.org/obo/UBERON_0016858,digit 8,eighth digit +http://purl.obolibrary.org/obo/UBERON_0016858,digit 8,limb digit 8 +http://purl.obolibrary.org/obo/UBERON_0016866,digit 6 plus metapodial segment,digit 6 digitopodial subdivision +http://purl.obolibrary.org/obo/UBERON_0016866,digit 6 plus metapodial segment,digit 6 ray +http://purl.obolibrary.org/obo/UBERON_0016866,digit 6 plus metapodial segment,digit VI plus metapodial segment +http://purl.obolibrary.org/obo/UBERON_0016867,digit 7 plus metapodial segment,digit 7 digitopodial subdivision +http://purl.obolibrary.org/obo/UBERON_0016867,digit 7 plus metapodial segment,digit 7 ray +http://purl.obolibrary.org/obo/UBERON_0016867,digit 7 plus metapodial segment,digit VII plus metapodial segment +http://purl.obolibrary.org/obo/UBERON_0016868,digit 8 plus metapodial segment,digit 8 digitopodial subdivision +http://purl.obolibrary.org/obo/UBERON_0016868,digit 8 plus metapodial segment,digit 8 ray +http://purl.obolibrary.org/obo/UBERON_0016868,digit 8 plus metapodial segment,digit VIII plus metapodial segment +http://purl.obolibrary.org/obo/UBERON_0016876,digit 6 digitopodial skeleton,digit VI digitopodial skeleton +http://purl.obolibrary.org/obo/UBERON_0016877,digit 7 digitopodial skeleton,digit VII digitopodial skeleton +http://purl.obolibrary.org/obo/UBERON_0016878,digit 8 digitopodial skeleton,digit VIII digitopodial skeleton +http://purl.obolibrary.org/obo/UBERON_0016879,future central nervous system,future CNS +http://purl.obolibrary.org/obo/UBERON_0016879,future central nervous system,presumptive central nervous system +http://purl.obolibrary.org/obo/UBERON_0016880,future nervous system,presumptive nervous system +http://purl.obolibrary.org/obo/UBERON_0016881,craniopharyngeal canal, +http://purl.obolibrary.org/obo/UBERON_0016882,intertarsal-type crurotarsal joint, +http://purl.obolibrary.org/obo/UBERON_0016883,ovarian fossa,Claudius fossa +http://purl.obolibrary.org/obo/UBERON_0016883,ovarian fossa,fossa ovarica +http://purl.obolibrary.org/obo/UBERON_0016884,shoulder joint,joint of shoulder region +http://purl.obolibrary.org/obo/UBERON_0016885,epithelium of terminal part of digestive tract, +http://purl.obolibrary.org/obo/UBERON_0016886,muscle tissue of terminal part of digestive tract, +http://purl.obolibrary.org/obo/UBERON_0016887,entire extraembryonic component,extra-embryonic component +http://purl.obolibrary.org/obo/UBERON_0016887,entire extraembryonic component,extraembryonic component +http://purl.obolibrary.org/obo/UBERON_0016888,transitional anatomical structure, +http://purl.obolibrary.org/obo/UBERON_0016890,intrahepatic branch of portal vein,intrahepatic part of portal vein +http://purl.obolibrary.org/obo/UBERON_0016896,periosteum of long bone,long bone periosteum +http://purl.obolibrary.org/obo/UBERON_0016910,frenulum of lip,frenulum labii +http://purl.obolibrary.org/obo/UBERON_0016910,frenulum of lip,labial frenulum +http://purl.obolibrary.org/obo/UBERON_0016910,frenulum of lip,lip frenulum +http://purl.obolibrary.org/obo/UBERON_0016912,frenulum of upper lip,f. labii superioris +http://purl.obolibrary.org/obo/UBERON_0016912,frenulum of upper lip,frenulum labii superioris +http://purl.obolibrary.org/obo/UBERON_0016912,frenulum of upper lip,upper lip frenulum +http://purl.obolibrary.org/obo/UBERON_0016913,frenulum of lower lip,frenulum labii inferioris +http://purl.obolibrary.org/obo/UBERON_0016913,frenulum of lower lip,lower lip frenulum +http://purl.obolibrary.org/obo/UBERON_0016914,lamina lucida,electron-lucent layer of basal lamina of connective tissue +http://purl.obolibrary.org/obo/UBERON_0016914,lamina lucida,lamina rara +http://purl.obolibrary.org/obo/UBERON_0016915,vermilion,vermilion border of lip +http://purl.obolibrary.org/obo/UBERON_0016915,vermilion,vermilion of lip +http://purl.obolibrary.org/obo/UBERON_0016918,upper vermilion,vermilion border of upper lip +http://purl.obolibrary.org/obo/UBERON_0016918,upper vermilion,vermilion of upper lip +http://purl.obolibrary.org/obo/UBERON_0016919,lower vermilion,vermilion border of lower lip +http://purl.obolibrary.org/obo/UBERON_0016919,lower vermilion,vermilion of lower lip +http://purl.obolibrary.org/obo/UBERON_0016920,descending trunk of arch of aorta,descending aortic arch +http://purl.obolibrary.org/obo/UBERON_0016920,descending trunk of arch of aorta,descending limb of arch of aorta +http://purl.obolibrary.org/obo/UBERON_0016920,descending trunk of arch of aorta,descending trunk of aortic arch +http://purl.obolibrary.org/obo/UBERON_0016923,preductal region of aortic arch,preligamental region of aortic arch +http://purl.obolibrary.org/obo/UBERON_0016924,postductal region of aortic arch,postligamental region of aortic arch +http://purl.obolibrary.org/obo/UBERON_0016925,juxtaductal region of aortic arch,isthmus aorta +http://purl.obolibrary.org/obo/UBERON_0016925,juxtaductal region of aortic arch,juxtaligamental region of aortic arch +http://purl.obolibrary.org/obo/UBERON_0016926,mucus body coating, +http://purl.obolibrary.org/obo/UBERON_0016927,mucus cocoon, +http://purl.obolibrary.org/obo/UBERON_0016928,metaphysis of fibula,fibula metaphysis +http://purl.obolibrary.org/obo/UBERON_0016928,metaphysis of fibula,fibular metaphysis +http://purl.obolibrary.org/obo/UBERON_0016929,lingual cusp of tooth,cuspis lingualis +http://purl.obolibrary.org/obo/UBERON_0016929,lingual cusp of tooth,lingual cusp +http://purl.obolibrary.org/obo/UBERON_0016930,ridge of tooth,crista of tooth +http://purl.obolibrary.org/obo/UBERON_0016930,ridge of tooth,tooth ridge +http://purl.obolibrary.org/obo/UBERON_0016931,transverse ridge of tooth,crista transversalis (corona dentis) +http://purl.obolibrary.org/obo/UBERON_0016931,transverse ridge of tooth,crista transversalis dentis +http://purl.obolibrary.org/obo/UBERON_0016931,transverse ridge of tooth,crista transversalis of tooth +http://purl.obolibrary.org/obo/UBERON_0016931,transverse ridge of tooth,transverse ridge of crown of tooth +http://purl.obolibrary.org/obo/UBERON_0016932,triangular ridge of tooth,crista triangularis (corona dentis) +http://purl.obolibrary.org/obo/UBERON_0016932,triangular ridge of tooth,crista triangularis dentis +http://purl.obolibrary.org/obo/UBERON_0016932,triangular ridge of tooth,crista triangularis of tooth +http://purl.obolibrary.org/obo/UBERON_0016932,triangular ridge of tooth,triangular ridge of crown of tooth +http://purl.obolibrary.org/obo/UBERON_0016933,oblique ridge of tooth,crista obliqua (corona dentis) +http://purl.obolibrary.org/obo/UBERON_0016933,oblique ridge of tooth,crista obliqua dentis +http://purl.obolibrary.org/obo/UBERON_0016933,oblique ridge of tooth,oblique ridge of crown of tooth +http://purl.obolibrary.org/obo/UBERON_0016934,marginal ridge of tooth,crista marginalis (dentis) +http://purl.obolibrary.org/obo/UBERON_0016934,marginal ridge of tooth,crista marginalis dentis +http://purl.obolibrary.org/obo/UBERON_0016934,marginal ridge of tooth,crista marginalis of tooth +http://purl.obolibrary.org/obo/UBERON_0016937,transverse marginal ridge of tooth,transverse marginal ridge of tooth +http://purl.obolibrary.org/obo/UBERON_0016938,mesial marginal ridge of tooth,mesial marginal ridge of tooth +http://purl.obolibrary.org/obo/UBERON_0016939,distal marginal ridge of tooth,distal marginal ridge of tooth +http://purl.obolibrary.org/obo/UBERON_0016942,rostral margin of orbit, +http://purl.obolibrary.org/obo/UBERON_0016943,lower premolar tooth,lower premolar tooth +http://purl.obolibrary.org/obo/UBERON_0016943,lower premolar tooth,mandibular premolar tooth +http://purl.obolibrary.org/obo/UBERON_0016944,upper premolar tooth,maxillary premolar tooth +http://purl.obolibrary.org/obo/UBERON_0016944,upper premolar tooth,upper premolar tooth +http://purl.obolibrary.org/obo/UBERON_0017098,retractor lateralis posterior muscle,M. retractor lateralis posterior +http://purl.obolibrary.org/obo/UBERON_0017098,retractor lateralis posterior muscle,posterior retractor lateralis +http://purl.obolibrary.org/obo/UBERON_0017099,retractor lateralis anterior muscle,M. retractor lateralis anterior +http://purl.obolibrary.org/obo/UBERON_0017099,retractor lateralis anterior muscle,anterior retractor lateralis +http://purl.obolibrary.org/obo/UBERON_0017102,flexor cruris lateralis pars accessoria muscle,M. flexor cruris lateralis pars accessoria +http://purl.obolibrary.org/obo/UBERON_0017102,flexor cruris lateralis pars accessoria muscle,pars accessoria of M. flexor cruris lateralis +http://purl.obolibrary.org/obo/UBERON_0017156,flexor cruris lateralis muscle,M. flexor cruris lateralis +http://purl.obolibrary.org/obo/UBERON_0017157,exoccipital-atlas joint,atlanto-exoccipital joint +http://purl.obolibrary.org/obo/UBERON_0017160,lumen of hemipenial sheath,hemipenis sheath lumen +http://purl.obolibrary.org/obo/UBERON_0017161,hemipenial mucuous gland,mucuous gland of hemipenis sheath +http://purl.obolibrary.org/obo/UBERON_0017162,hemipenial holocrine gland,holocrine gland of hemipenis +http://purl.obolibrary.org/obo/UBERON_0017162,hemipenial holocrine gland,holoctine gland of hemipenis sheath +http://purl.obolibrary.org/obo/UBERON_0017163,skin bony tubercle, +http://purl.obolibrary.org/obo/UBERON_0017164,dorsal cloacal gland, +http://purl.obolibrary.org/obo/UBERON_0017180,hemipenis keratinized epithelium, +http://purl.obolibrary.org/obo/UBERON_0017196,retractor lateralis muscle,m. retractor lateralis +http://purl.obolibrary.org/obo/UBERON_0017249,incisive process of premaxilla, +http://purl.obolibrary.org/obo/UBERON_0017258,placentome of cotyledonary placenta,placentome +http://purl.obolibrary.org/obo/UBERON_0017259,placental caruncle, +http://purl.obolibrary.org/obo/UBERON_0017261,intertarsal sesamoid, +http://purl.obolibrary.org/obo/UBERON_0017269,primary premolar tooth,deciduous premolar tooth +http://purl.obolibrary.org/obo/UBERON_0017269,primary premolar tooth,primary premolar +http://purl.obolibrary.org/obo/UBERON_0017270,secondary premolar tooth,permanent premolar tooth +http://purl.obolibrary.org/obo/UBERON_0017270,secondary premolar tooth,secondary premolar +http://purl.obolibrary.org/obo/UBERON_0017271,upper primary premolar tooth,maxillary primary premolar tooth +http://purl.obolibrary.org/obo/UBERON_0017271,upper primary premolar tooth,upper deciduous premolar tooth +http://purl.obolibrary.org/obo/UBERON_0017272,lower primary premolar tooth,lower deciduous premolar tooth +http://purl.obolibrary.org/obo/UBERON_0017272,lower primary premolar tooth,mandibular primary premolar tooth +http://purl.obolibrary.org/obo/UBERON_0017294,horn of hemipenis,hemipenis horn +http://purl.obolibrary.org/obo/UBERON_0017295,cingulum of tooth,cingulum (dentis) +http://purl.obolibrary.org/obo/UBERON_0017295,cingulum of tooth,cingulum dentis +http://purl.obolibrary.org/obo/UBERON_0017295,cingulum of tooth,tooth cingulum +http://purl.obolibrary.org/obo/UBERON_0017296,cingulum of incisor tooth,incisor tooth cingulum +http://purl.obolibrary.org/obo/UBERON_0017297,cingulum of canine tooth,canine tooth cingulum +http://purl.obolibrary.org/obo/UBERON_0017298,cingulum of upper incisor tooth,cingulum of maxillary incisor tooth +http://purl.obolibrary.org/obo/UBERON_0017298,cingulum of upper incisor tooth,upper incisor tooth cingulum +http://purl.obolibrary.org/obo/UBERON_0017299,cingulum of lower incisor tooth,cingulum of mandibular incisor tooth +http://purl.obolibrary.org/obo/UBERON_0017299,cingulum of lower incisor tooth,lower incisor tooth cingulum +http://purl.obolibrary.org/obo/UBERON_0017312,cingulum of upper canine tooth,cingulum of maxillary canine tooth +http://purl.obolibrary.org/obo/UBERON_0017312,cingulum of upper canine tooth,upper canine tooth cingulum +http://purl.obolibrary.org/obo/UBERON_0017313,cingulum of lower canine tooth,cingulum of mandibular canine tooth +http://purl.obolibrary.org/obo/UBERON_0017313,cingulum of lower canine tooth,lower canine tooth cingulum +http://purl.obolibrary.org/obo/UBERON_0017612,cingulum of lower jaw molar,cingulid of molar tooth +http://purl.obolibrary.org/obo/UBERON_0017613,cingulum of upper jaw molar, +http://purl.obolibrary.org/obo/UBERON_0017614,cingulum of molar tooth, +http://purl.obolibrary.org/obo/UBERON_0017615,vomerine dentition, +http://purl.obolibrary.org/obo/UBERON_0017616,afferent spiracular artery, +http://purl.obolibrary.org/obo/UBERON_0017617,efferent spiracular artery, +http://purl.obolibrary.org/obo/UBERON_0017618,extensor pollicis brevis muscle,extensor pollicis brevis +http://purl.obolibrary.org/obo/UBERON_0017620,spine appendage of head, +http://purl.obolibrary.org/obo/UBERON_0017621,cephalic spine, +http://purl.obolibrary.org/obo/UBERON_0017623,prepelvic clasper,pre-pelvic tenaculum +http://purl.obolibrary.org/obo/UBERON_0017623,prepelvic clasper,prepelvic tenaculum +http://purl.obolibrary.org/obo/UBERON_0017624,pseudoclasper, +http://purl.obolibrary.org/obo/UBERON_0017625,pterygopodial gland, +http://purl.obolibrary.org/obo/UBERON_0017626,transverse folds of rectum,Houston's valve (middle of three) +http://purl.obolibrary.org/obo/UBERON_0017626,transverse folds of rectum,Kohlrausch's fold (middle of three) +http://purl.obolibrary.org/obo/UBERON_0017626,transverse folds of rectum,plicae transversae recti +http://purl.obolibrary.org/obo/UBERON_0017626,transverse folds of rectum,set of transverse folds of rectum +http://purl.obolibrary.org/obo/UBERON_0017626,transverse folds of rectum,transverse folds of rectum +http://purl.obolibrary.org/obo/UBERON_0017627,rectal valve, +http://purl.obolibrary.org/obo/UBERON_0017628,swim bladder gas gland,gas gland +http://purl.obolibrary.org/obo/UBERON_0017629,mormyromast organ,mormyromast +http://purl.obolibrary.org/obo/UBERON_0017631,calcified structure of brain, +http://purl.obolibrary.org/obo/UBERON_0017632,pineal corpora arenacea, +http://purl.obolibrary.org/obo/UBERON_0017633,choroid plexus corpora arenacea, +http://purl.obolibrary.org/obo/UBERON_0017634,xenarthrale,xenarthrous articulation +http://purl.obolibrary.org/obo/UBERON_0017634,xenarthrale,xenarthrous joint +http://purl.obolibrary.org/obo/UBERON_0017635,paired venous dural sinus,paired dural venous sinus +http://purl.obolibrary.org/obo/UBERON_0017637,marginal venous sinus,intracranial marginal sinus +http://purl.obolibrary.org/obo/UBERON_0017638,primitive marginal sinus, +http://purl.obolibrary.org/obo/UBERON_0017639,sinus of von Szily,marginal sinus (v. Szily) +http://purl.obolibrary.org/obo/UBERON_0017639,sinus of von Szily,marginal sinus of von Szily +http://purl.obolibrary.org/obo/UBERON_0017640,unpaired venous dural sinus,unpaired dural venous sinus +http://purl.obolibrary.org/obo/UBERON_0017641,meningeal branch of spinal nerve,ramus meningeus nervorum spinales +http://purl.obolibrary.org/obo/UBERON_0017641,meningeal branch of spinal nerve,recurrent meningeal branch of spinal nerve +http://purl.obolibrary.org/obo/UBERON_0017641,meningeal branch of spinal nerve,sinuvertebral branch of spinal nerve +http://purl.obolibrary.org/obo/UBERON_0017642,communicating branch of spinal nerve,rami communicantes +http://purl.obolibrary.org/obo/UBERON_0017642,communicating branch of spinal nerve,rami communicantes of spinal nerve +http://purl.obolibrary.org/obo/UBERON_0017643,external thoracic vein, +http://purl.obolibrary.org/obo/UBERON_0017646,internal mammary vein, +http://purl.obolibrary.org/obo/UBERON_0017647,prevertebral muscle of neck, +http://purl.obolibrary.org/obo/UBERON_0017648,ventral body wall, +http://purl.obolibrary.org/obo/UBERON_0017649,dorsal body wall, +http://purl.obolibrary.org/obo/UBERON_0017650,developing mesenchymal structure, +http://purl.obolibrary.org/obo/UBERON_0017651,salivary gland primordium, +http://purl.obolibrary.org/obo/UBERON_0017652,intermaxillary gland (sensu Osteolepiformes), +http://purl.obolibrary.org/obo/UBERON_0017653,intermaxillary salivary gland, +http://purl.obolibrary.org/obo/UBERON_0017654,buccal gland, +http://purl.obolibrary.org/obo/UBERON_0017659,ventral surface of penis,urethral surface of penis +http://purl.obolibrary.org/obo/UBERON_0017670,bony part of cervical vertebral arch,bony part of arch of cervical vertebra +http://purl.obolibrary.org/obo/UBERON_0017671,bony part of vertebral arch of first sacral vertebra,bony part of vertebral arch of first sacral segment +http://purl.obolibrary.org/obo/UBERON_0017672,abdominal viscera,abdominal viscera +http://purl.obolibrary.org/obo/UBERON_0017672,abdominal viscera,abdominal viscera set +http://purl.obolibrary.org/obo/UBERON_0017672,abdominal viscera,set of abdominal viscera +http://purl.obolibrary.org/obo/UBERON_0017690,internal surface of frontal bone,facies interna (os frontale) +http://purl.obolibrary.org/obo/UBERON_0017690,internal surface of frontal bone,facies interna ossis frontalis +http://purl.obolibrary.org/obo/UBERON_0017692,internal surface of cranial base,basis cranii interna +http://purl.obolibrary.org/obo/UBERON_0017716,thenar eminence,thenar part of palm +http://purl.obolibrary.org/obo/UBERON_0017717,hypothenar eminence,hypothenar part of palm +http://purl.obolibrary.org/obo/UBERON_0017732,raphe of scrotum,scrotal raphe +http://purl.obolibrary.org/obo/UBERON_0017748,lower primary incisor tooth,lower deciduous incisor tooth +http://purl.obolibrary.org/obo/UBERON_0017748,lower primary incisor tooth,primary lower incisor tooth +http://purl.obolibrary.org/obo/UBERON_0017749,withers, +http://purl.obolibrary.org/obo/UBERON_0017750,proximal mesopodial endochondral element, +http://purl.obolibrary.org/obo/UBERON_0017751,proximal mesopodial cartilage element, +http://purl.obolibrary.org/obo/UBERON_0018099,distal mesopodial endochondral element,distal mesopodial +http://purl.obolibrary.org/obo/UBERON_0018100,distal mesopodial cartilage element, +http://purl.obolibrary.org/obo/UBERON_0018101,distal mesopodial pre-cartilage condensation, +http://purl.obolibrary.org/obo/UBERON_0018102,distal mesopodial bone, +http://purl.obolibrary.org/obo/UBERON_0018103,posterior fascicle of palatopharyngeus,fasciculus posterior (musculus palatopharyngeus) +http://purl.obolibrary.org/obo/UBERON_0018103,posterior fascicle of palatopharyngeus,fasciculus posterior musculus palatopharyngei +http://purl.obolibrary.org/obo/UBERON_0018103,posterior fascicle of palatopharyngeus,musculus sphincter palatopharyngeus +http://purl.obolibrary.org/obo/UBERON_0018103,posterior fascicle of palatopharyngeus,palatopharyngeal sphincter +http://purl.obolibrary.org/obo/UBERON_0018103,posterior fascicle of palatopharyngeus,velopharyngeal sphincter +http://purl.obolibrary.org/obo/UBERON_0018104,parafoveal part of retina, +http://purl.obolibrary.org/obo/UBERON_0018105,perifoveal part of retina, +http://purl.obolibrary.org/obo/UBERON_0018107,foveola of retina, +http://purl.obolibrary.org/obo/UBERON_0018108,superior auricular muscle,auricularis superior +http://purl.obolibrary.org/obo/UBERON_0018109,anterior auricular muscle,auricularis anterior +http://purl.obolibrary.org/obo/UBERON_0018110,posterior auricular muscle,auricularis posterior +http://purl.obolibrary.org/obo/UBERON_0018111,muscle layer of rectum,muscular coat of rectum +http://purl.obolibrary.org/obo/UBERON_0018111,muscle layer of rectum,muscularis externa of rectum +http://purl.obolibrary.org/obo/UBERON_0018111,muscle layer of rectum,rectal muscularis propria +http://purl.obolibrary.org/obo/UBERON_0018111,muscle layer of rectum,tunica muscularis (rectum) +http://purl.obolibrary.org/obo/UBERON_0018111,muscle layer of rectum,tunica muscularis recti +http://purl.obolibrary.org/obo/UBERON_0018112,rectum smooth muscle tissue,rectal smooth muscle tissue +http://purl.obolibrary.org/obo/UBERON_0018112,rectum smooth muscle tissue,rectum smooth muscle +http://purl.obolibrary.org/obo/UBERON_0018112,rectum smooth muscle tissue,smooth muscle of rectum +http://purl.obolibrary.org/obo/UBERON_0018113,left kidney interstitium,left renal stroma +http://purl.obolibrary.org/obo/UBERON_0018113,left kidney interstitium,stroma of left kidney +http://purl.obolibrary.org/obo/UBERON_0018114,right kidney interstitium,right renal stroma +http://purl.obolibrary.org/obo/UBERON_0018114,right kidney interstitium,stroma of right kidney +http://purl.obolibrary.org/obo/UBERON_0018115,left renal pelvis,pelvis of left ureter +http://purl.obolibrary.org/obo/UBERON_0018115,left renal pelvis,renal pelvis of left kidney +http://purl.obolibrary.org/obo/UBERON_0018116,right renal pelvis,pelvis of right kidney +http://purl.obolibrary.org/obo/UBERON_0018116,right renal pelvis,pelvis of right ureter +http://purl.obolibrary.org/obo/UBERON_0018117,left renal cortex interstitium,cortical interstitial tissue of left kidney +http://purl.obolibrary.org/obo/UBERON_0018118,right renal cortex interstitium,cortical interstitial tissue of right kidney +http://purl.obolibrary.org/obo/UBERON_0018119,left renal medulla interstitium,medullary interstitial tissue of left kidney +http://purl.obolibrary.org/obo/UBERON_0018120,right renal medulla interstitium,medullary interstitial tissue of right kidney +http://purl.obolibrary.org/obo/UBERON_0018131,periovarian fat pad,periovarian fat depot +http://purl.obolibrary.org/obo/UBERON_0018132,tail fat pad,tail fat depot +http://purl.obolibrary.org/obo/UBERON_0018133,monotreme bill, +http://purl.obolibrary.org/obo/UBERON_0018134,rugal fold of scrotum,folded ridge of skin of scrotum +http://purl.obolibrary.org/obo/UBERON_0018134,rugal fold of scrotum,scrotal rugae +http://purl.obolibrary.org/obo/UBERON_0018135,fibrocollagenous connective tissue, +http://purl.obolibrary.org/obo/UBERON_0018136,maxillary fenestra, +http://purl.obolibrary.org/obo/UBERON_0018137,premaxillary fenestra, +http://purl.obolibrary.org/obo/UBERON_0018140,mammary lobe, +http://purl.obolibrary.org/obo/UBERON_0018141,anterior perforated substance,anterior perforated area +http://purl.obolibrary.org/obo/UBERON_0018141,anterior perforated substance,anterior perforated space +http://purl.obolibrary.org/obo/UBERON_0018141,anterior perforated substance,olfactory area (mai) +http://purl.obolibrary.org/obo/UBERON_0018141,anterior perforated substance,substantia perforata anterior +http://purl.obolibrary.org/obo/UBERON_0018142,caudal vertebra endochondral element,caudal vertebra element +http://purl.obolibrary.org/obo/UBERON_0018142,caudal vertebra endochondral element,tail vertebra element +http://purl.obolibrary.org/obo/UBERON_0018143,transverse process of cervical vertebra, +http://purl.obolibrary.org/obo/UBERON_0018144,cervical rib, +http://purl.obolibrary.org/obo/UBERON_0018145,lumbar rib, +http://purl.obolibrary.org/obo/UBERON_0018146,transverse process of lumbar vertebra,costa lumbalis +http://purl.obolibrary.org/obo/UBERON_0018146,transverse process of lumbar vertebra,lumbar transverse process +http://purl.obolibrary.org/obo/UBERON_0018148,ampullary gland secretion, +http://purl.obolibrary.org/obo/UBERON_0018149,angle of oral opening,angle of mouth +http://purl.obolibrary.org/obo/UBERON_0018149,angle of oral opening,mouth angle +http://purl.obolibrary.org/obo/UBERON_0018150,skin of lower lip,lower lip skin +http://purl.obolibrary.org/obo/UBERON_0018151,skin of upper lip,upper lip skin +http://purl.obolibrary.org/obo/UBERON_0018152,pars flaccida of tympanic membrane,Shrapnell's membrane +http://purl.obolibrary.org/obo/UBERON_0018152,pars flaccida of tympanic membrane,pars flaccida (membrana tympanica) +http://purl.obolibrary.org/obo/UBERON_0018152,pars flaccida of tympanic membrane,pars flaccida membranae tympanicae +http://purl.obolibrary.org/obo/UBERON_0018153,pars tensa of tympanic membrane,pars tensa (membrana tympanica) +http://purl.obolibrary.org/obo/UBERON_0018153,pars tensa of tympanic membrane,pars tensa membranae tympanicae +http://purl.obolibrary.org/obo/UBERON_0018154,ligament of middle ear, +http://purl.obolibrary.org/obo/UBERON_0018155,posterior incudal ligament, +http://purl.obolibrary.org/obo/UBERON_0018156,malleal ligament, +http://purl.obolibrary.org/obo/UBERON_0018157,lateral malleal ligament, +http://purl.obolibrary.org/obo/UBERON_0018158,superior malleal ligament, +http://purl.obolibrary.org/obo/UBERON_0018159,anterior malleal ligament, +http://purl.obolibrary.org/obo/UBERON_0018160,anterior process of malleus,folian process +http://purl.obolibrary.org/obo/UBERON_0018160,anterior process of malleus,processus anterior (malleus) +http://purl.obolibrary.org/obo/UBERON_0018160,anterior process of malleus,processus anterior mallei +http://purl.obolibrary.org/obo/UBERON_0018160,anterior process of malleus,rau's process +http://purl.obolibrary.org/obo/UBERON_0018161,annular ligament of stapes,annular ligament of base of stapes +http://purl.obolibrary.org/obo/UBERON_0018161,annular ligament of stapes,annular stapedial ligament +http://purl.obolibrary.org/obo/UBERON_0018161,annular ligament of stapes,ligamentum anulare stapedis +http://purl.obolibrary.org/obo/UBERON_0018226,pulmonary part of lymphatic system,pulmonary lymphatic chain +http://purl.obolibrary.org/obo/UBERON_0018227,pulmonary lymphatic vessel,lymphatic vessel of lung +http://purl.obolibrary.org/obo/UBERON_0018228,extrahepatic branch of portal vein,extrahepatic part of portal vein +http://purl.obolibrary.org/obo/UBERON_0018229,renin-angiotensin system, +http://purl.obolibrary.org/obo/UBERON_0018230,femoral canal, +http://purl.obolibrary.org/obo/UBERON_0018231,labyrinthine artery,arteria auditiva interna +http://purl.obolibrary.org/obo/UBERON_0018231,labyrinthine artery,arteria labyrinthi +http://purl.obolibrary.org/obo/UBERON_0018231,labyrinthine artery,internal auditory artery +http://purl.obolibrary.org/obo/UBERON_0018232,axillary sweat gland,axillary apocrine sweat gland +http://purl.obolibrary.org/obo/UBERON_0018232,axillary sweat gland,sweat gland of axilla +http://purl.obolibrary.org/obo/UBERON_0018233,gland of Zeis,Zeis gland +http://purl.obolibrary.org/obo/UBERON_0018233,gland of Zeis,ciliary sebaceous gland of eyelid +http://purl.obolibrary.org/obo/UBERON_0018233,gland of Zeis,gland of Zeis +http://purl.obolibrary.org/obo/UBERON_0018233,gland of Zeis,gland of Zeiss +http://purl.obolibrary.org/obo/UBERON_0018234,stroma of pancreas,pancreatic stroma +http://purl.obolibrary.org/obo/UBERON_0018235,capsule of pancreas,pancreatic capsule +http://purl.obolibrary.org/obo/UBERON_0018236,nucleus of Bischoff,nucleus of Bishoff +http://purl.obolibrary.org/obo/UBERON_0018237,dorsal column-medial lemniscus pathway,DCML +http://purl.obolibrary.org/obo/UBERON_0018237,dorsal column-medial lemniscus pathway,DCML pathway +http://purl.obolibrary.org/obo/UBERON_0018237,dorsal column-medial lemniscus pathway,dorsal column +http://purl.obolibrary.org/obo/UBERON_0018237,dorsal column-medial lemniscus pathway,dorsal column tract +http://purl.obolibrary.org/obo/UBERON_0018237,dorsal column-medial lemniscus pathway,dorsal column-medial lemniscus pathway +http://purl.obolibrary.org/obo/UBERON_0018237,dorsal column-medial lemniscus pathway,dorsal column-medial lemniscus system +http://purl.obolibrary.org/obo/UBERON_0018237,dorsal column-medial lemniscus pathway,dorsal column-medial lemniscus tract +http://purl.obolibrary.org/obo/UBERON_0018237,dorsal column-medial lemniscus pathway,medial lemniscus tracts +http://purl.obolibrary.org/obo/UBERON_0018237,dorsal column-medial lemniscus pathway,posterior column pathway +http://purl.obolibrary.org/obo/UBERON_0018237,dorsal column-medial lemniscus pathway,posterior column-medial leminscus pathway +http://purl.obolibrary.org/obo/UBERON_0018237,dorsal column-medial lemniscus pathway,posterior column-medial lemniscus system +http://purl.obolibrary.org/obo/UBERON_0018237,dorsal column-medial lemniscus pathway,posterior column/medial leminscus pathway +http://purl.obolibrary.org/obo/UBERON_0018238,dorsal column nucleus,dorsal column nuclei +http://purl.obolibrary.org/obo/UBERON_0018239,rhombomere boundary,rhombomere junction +http://purl.obolibrary.org/obo/UBERON_0018240,panniculus carnosus muscle,panniculus carnosus +http://purl.obolibrary.org/obo/UBERON_0018240,panniculus carnosus muscle,panniculus carnosus group +http://purl.obolibrary.org/obo/UBERON_0018242,palatine bone horizontal plate,horizontal plate of palatine bone +http://purl.obolibrary.org/obo/UBERON_0018242,palatine bone horizontal plate,lamina horizontalis (os palatinum) +http://purl.obolibrary.org/obo/UBERON_0018242,palatine bone horizontal plate,lamina horizontalis ossis palatini +http://purl.obolibrary.org/obo/UBERON_0018243,thymic artery,thymic branch of internal thoracic artery +http://purl.obolibrary.org/obo/UBERON_0018244,superficial cervical thymus, +http://purl.obolibrary.org/obo/UBERON_0018245,deep cervical thymus, +http://purl.obolibrary.org/obo/UBERON_0018246,thyroid vein, +http://purl.obolibrary.org/obo/UBERON_0018247,cervical thymic artery, +http://purl.obolibrary.org/obo/UBERON_0018248,inferior superficial cervical thymic artery, +http://purl.obolibrary.org/obo/UBERON_0018249,superior superficial cervical thymic artery, +http://purl.obolibrary.org/obo/UBERON_0018250,middle thyroid artery, +http://purl.obolibrary.org/obo/UBERON_0018251,meningeal vein, +http://purl.obolibrary.org/obo/UBERON_0018252,internal pudendal vein,vena pudenda interna +http://purl.obolibrary.org/obo/UBERON_0018253,external pudendal vein,vena pudenda externa +http://purl.obolibrary.org/obo/UBERON_0018254,skeletal musculature, +http://purl.obolibrary.org/obo/UBERON_0018255,jejunal artery, +http://purl.obolibrary.org/obo/UBERON_0018256,lacrimal vein, +http://purl.obolibrary.org/obo/UBERON_0018257,submucosa of digestive tract, +http://purl.obolibrary.org/obo/UBERON_0018260,layer of muscle tissue, +http://purl.obolibrary.org/obo/UBERON_0018261,muscular coat of digestive tract,muscular layer of digestive tract +http://purl.obolibrary.org/obo/UBERON_0018261,muscular coat of digestive tract,muscularis externa of digestive tract +http://purl.obolibrary.org/obo/UBERON_0018261,muscular coat of digestive tract,tunica externa of digestive tract +http://purl.obolibrary.org/obo/UBERON_0018261,muscular coat of digestive tract,tunica muscularis of digestive tract +http://purl.obolibrary.org/obo/UBERON_0018262,dorsal zone of medial entorhinal cortex,"entorhinal area, medial part, dorsal zone" +http://purl.obolibrary.org/obo/UBERON_0018263,ventral zone of medial entorhinal cortex,"entorhinal area, medial part, ventral zone" +http://purl.obolibrary.org/obo/UBERON_0018264,dorsal lateral ganglionic eminence, +http://purl.obolibrary.org/obo/UBERON_0018265,anterior root of zygomatic arch, +http://purl.obolibrary.org/obo/UBERON_0018266,third phalanx, +http://purl.obolibrary.org/obo/UBERON_0018267,atlantal spinal nerve foramen, +http://purl.obolibrary.org/obo/UBERON_0018268,type 1 adrenal tissue, +http://purl.obolibrary.org/obo/UBERON_0018269,type 2 adrenal tissue, +http://purl.obolibrary.org/obo/UBERON_0018270,type 3 adrenal tissue, +http://purl.obolibrary.org/obo/UBERON_0018271,type 4 adrenal tissue, +http://purl.obolibrary.org/obo/UBERON_0018272,apex of paracone, +http://purl.obolibrary.org/obo/UBERON_0018273,caniniform region, +http://purl.obolibrary.org/obo/UBERON_0018274,postcingulum of deciduous premolar 5,dP5 postcingulum +http://purl.obolibrary.org/obo/UBERON_0018275,posthypocrista of deciduous premolar 5,dP5 posthypocrista +http://purl.obolibrary.org/obo/UBERON_0018276,egg tooth, +http://purl.obolibrary.org/obo/UBERON_0018277,calcareous egg tooth, +http://purl.obolibrary.org/obo/UBERON_0018278,epidermal egg tooth, +http://purl.obolibrary.org/obo/UBERON_0018279,hypoconid, +http://purl.obolibrary.org/obo/UBERON_0018281,lower deciduous premolar 5, +http://purl.obolibrary.org/obo/UBERON_0018282,lower molar 3, +http://purl.obolibrary.org/obo/UBERON_0018283,lower pharyngobranchial toothplate,lower pharyngeal toothplate +http://purl.obolibrary.org/obo/UBERON_0018284,lower premolar 1, +http://purl.obolibrary.org/obo/UBERON_0018285,lower premolar 2, +http://purl.obolibrary.org/obo/UBERON_0018286,molar 1 posteroloph,M1 posteroloph +http://purl.obolibrary.org/obo/UBERON_0018287,premolar 1 hypoconoid,p1 hypoconoid +http://purl.obolibrary.org/obo/UBERON_0018288,paracone, +http://purl.obolibrary.org/obo/UBERON_0018289,paracristid, +http://purl.obolibrary.org/obo/UBERON_0018290,postcingulum, +http://purl.obolibrary.org/obo/UBERON_0018291,posteroloph, +http://purl.obolibrary.org/obo/UBERON_0018292,posthypocrista, +http://purl.obolibrary.org/obo/UBERON_0018293,precingulum, +http://purl.obolibrary.org/obo/UBERON_0018294,premolar 1,first premolar tooth +http://purl.obolibrary.org/obo/UBERON_0018295,preprotocrista, +http://purl.obolibrary.org/obo/UBERON_0018296,replacement tooth, +http://purl.obolibrary.org/obo/UBERON_0018297,resorption pit, +http://purl.obolibrary.org/obo/UBERON_0018298,stylocone, +http://purl.obolibrary.org/obo/UBERON_0018299,mandibular symphyseal tooth,lower jaw symphyseal tooth +http://purl.obolibrary.org/obo/UBERON_0018300,upper canine 1,UC1 +http://purl.obolibrary.org/obo/UBERON_0018300,upper canine 1,upper canine UC1 +http://purl.obolibrary.org/obo/UBERON_0018301,upper deciduous premolar 5, +http://purl.obolibrary.org/obo/UBERON_0018302,upper molar 1, +http://purl.obolibrary.org/obo/UBERON_0018303,adrenal tissue,adrenal gland tissue +http://purl.obolibrary.org/obo/UBERON_0018304,post-axial region of pectoral appendage, +http://purl.obolibrary.org/obo/UBERON_0018305,bicipital surface, +http://purl.obolibrary.org/obo/UBERON_0018307,keel, +http://purl.obolibrary.org/obo/UBERON_0018308,caudal melanophore spot, +http://purl.obolibrary.org/obo/UBERON_0018309,central figure of scute,central figure +http://purl.obolibrary.org/obo/UBERON_0018310,cephalic dermal scale, +http://purl.obolibrary.org/obo/UBERON_0018312,cheek scale, +http://purl.obolibrary.org/obo/UBERON_0018313,cheek scale row, +http://purl.obolibrary.org/obo/UBERON_0018314,choanal groove, +http://purl.obolibrary.org/obo/UBERON_0018315,clasper plate, +http://purl.obolibrary.org/obo/UBERON_0018316,cuboid facet of calcaneum, +http://purl.obolibrary.org/obo/UBERON_0018317,dorsal osteoderm, +http://purl.obolibrary.org/obo/UBERON_0018318,entocarotid fossa, +http://purl.obolibrary.org/obo/UBERON_0018319,extramural oviduct, +http://purl.obolibrary.org/obo/UBERON_0018320,flexor sesamoid, +http://purl.obolibrary.org/obo/UBERON_0018321,foramen for glossopharyngeal nerve, +http://purl.obolibrary.org/obo/UBERON_0018322,fourth phalanx, +http://purl.obolibrary.org/obo/UBERON_0018323,hyoid articular area, +http://purl.obolibrary.org/obo/UBERON_0018324,hypochordal radial, +http://purl.obolibrary.org/obo/UBERON_0018325,caudal fin radial element, +http://purl.obolibrary.org/obo/UBERON_0018326,ilioischiadic foramen, +http://purl.obolibrary.org/obo/UBERON_0018328,incisura fossa, +http://purl.obolibrary.org/obo/UBERON_0018329,interpterygoid region, +http://purl.obolibrary.org/obo/UBERON_0018330,interpterygoid vacuity, +http://purl.obolibrary.org/obo/UBERON_0018331,intraramal joint, +http://purl.obolibrary.org/obo/UBERON_0018332,jugal bar,angulus tomialis +http://purl.obolibrary.org/obo/UBERON_0018333,labial cartilage, +http://purl.obolibrary.org/obo/UBERON_0018334,lateral condyle of quadrate, +http://purl.obolibrary.org/obo/UBERON_0018335,lateral dorsal aorta canal, +http://purl.obolibrary.org/obo/UBERON_0018336,maxillary shank, +http://purl.obolibrary.org/obo/UBERON_0018337,medial condyle of quadrate, +http://purl.obolibrary.org/obo/UBERON_0018338,medial cotyla, +http://purl.obolibrary.org/obo/UBERON_0018339,metotic fissure, +http://purl.obolibrary.org/obo/UBERON_0018340,midbody melanophore spot,midbody spot +http://purl.obolibrary.org/obo/UBERON_0018341,nasal process of premaxilla, +http://purl.obolibrary.org/obo/UBERON_0018342,nuchal hump, +http://purl.obolibrary.org/obo/UBERON_0018343,oviduct mucosal fold,endosalpinx +http://purl.obolibrary.org/obo/UBERON_0018344,parastyle, +http://purl.obolibrary.org/obo/UBERON_0018345,stylar shelf, +http://purl.obolibrary.org/obo/UBERON_0018346,parietal notch, +http://purl.obolibrary.org/obo/UBERON_0018347,pars canalicularis of petrosal, +http://purl.obolibrary.org/obo/UBERON_0018348,petrosal bone, +http://purl.obolibrary.org/obo/UBERON_0018349,pharyngeal apophysis,neurocranium apophysis +http://purl.obolibrary.org/obo/UBERON_0018351,precerebral fontanelle, +http://purl.obolibrary.org/obo/UBERON_0018352,prismatic cartilage,prismatic calcified tissue +http://purl.obolibrary.org/obo/UBERON_0018353,quadrate condyle, +http://purl.obolibrary.org/obo/UBERON_0018354,recessus vena jugularis, +http://purl.obolibrary.org/obo/UBERON_0018355,rictal bristle, +http://purl.obolibrary.org/obo/UBERON_0018356,rostral entotympanic element, +http://purl.obolibrary.org/obo/UBERON_0018357,sensory pore,sensory canal pore +http://purl.obolibrary.org/obo/UBERON_0018358,spina externa, +http://purl.obolibrary.org/obo/UBERON_0018359,subolfactory process, +http://purl.obolibrary.org/obo/UBERON_0018360,suborbital foramen, +http://purl.obolibrary.org/obo/UBERON_0018361,suborbital shelf, +http://purl.obolibrary.org/obo/UBERON_0018362,supracondylar tubercle, +http://purl.obolibrary.org/obo/UBERON_0018364,suprameatal foramen, +http://purl.obolibrary.org/obo/UBERON_0018365,supratemporal process, +http://purl.obolibrary.org/obo/UBERON_0018366,supratendinal bridge, +http://purl.obolibrary.org/obo/UBERON_0018367,processus ventralis of thoracic vertebra,"hypapophysis, crista ventralis corporis, crista ventralis, processus latus" +http://purl.obolibrary.org/obo/UBERON_0018367,processus ventralis of thoracic vertebra,processus ventralis +http://purl.obolibrary.org/obo/UBERON_0018368,processus ventrolateralis of thoracic vertebra,"crista ventrolateralis, processus inferolateralis" +http://purl.obolibrary.org/obo/UBERON_0018368,processus ventrolateralis of thoracic vertebra,processus ventrolateralis +http://purl.obolibrary.org/obo/UBERON_0018369,upper lateral line, +http://purl.obolibrary.org/obo/UBERON_0018370,ventral lateral line, +http://purl.obolibrary.org/obo/UBERON_0018371,ventral supracondylar tubercle, +http://purl.obolibrary.org/obo/UBERON_0018372,dorsal supracondylar tubercle, +http://purl.obolibrary.org/obo/UBERON_0018373,vidian canal,pterygoid canal +http://purl.obolibrary.org/obo/UBERON_0018374,sallet, +http://purl.obolibrary.org/obo/UBERON_0018375,deciduous premolar 5,deciduous premolar 5 +http://purl.obolibrary.org/obo/UBERON_0018375,deciduous premolar 5,primary premolar 5 tooth +http://purl.obolibrary.org/obo/UBERON_0018376,molar tooth 1,first molar tooth +http://purl.obolibrary.org/obo/UBERON_0018376,molar tooth 1,molar 1 +http://purl.obolibrary.org/obo/UBERON_0018376,molar tooth 1,molar 1 tooth +http://purl.obolibrary.org/obo/UBERON_0018377,molar tooth 3,molar 3 +http://purl.obolibrary.org/obo/UBERON_0018377,molar tooth 3,molar 3 tooth +http://purl.obolibrary.org/obo/UBERON_0018377,molar tooth 3,third molar tooth +http://purl.obolibrary.org/obo/UBERON_0018379,metacestode, +http://purl.obolibrary.org/obo/UBERON_0018382,second instar larva, +http://purl.obolibrary.org/obo/UBERON_0018385,metacercaria, +http://purl.obolibrary.org/obo/UBERON_0018388,cercaria, +http://purl.obolibrary.org/obo/UBERON_0018389,interoceptor,enteroceptor +http://purl.obolibrary.org/obo/UBERON_0018389,interoceptor,visceroceptor +http://purl.obolibrary.org/obo/UBERON_0018391,chemoreceptor, +http://purl.obolibrary.org/obo/UBERON_0018392,arterial baroreceptor, +http://purl.obolibrary.org/obo/UBERON_0018393,low-pressure baroreceptor, +http://purl.obolibrary.org/obo/UBERON_0018394,vein baroreceptor, +http://purl.obolibrary.org/obo/UBERON_0018395,cardiac baroreceptor, +http://purl.obolibrary.org/obo/UBERON_0018396,pulmonary baroreceptor, +http://purl.obolibrary.org/obo/UBERON_0018397,posterior superior alveolar artery,superior posterior alveolar artery +http://purl.obolibrary.org/obo/UBERON_0018398,superior alveolar nerve,superior dental nerve +http://purl.obolibrary.org/obo/UBERON_0018401,posterior superior alveolar nerve,posterior superior dental nerve +http://purl.obolibrary.org/obo/UBERON_0018405,inferior alveolar nerve,inferior dental nerve +http://purl.obolibrary.org/obo/UBERON_0018406,mental nerve, +http://purl.obolibrary.org/obo/UBERON_0018407,infra-orbital foramen of maxilla,foramen infraorbitale +http://purl.obolibrary.org/obo/UBERON_0018407,infra-orbital foramen of maxilla,infra-orbital foramen +http://purl.obolibrary.org/obo/UBERON_0018407,infra-orbital foramen of maxilla,infraorbital foramen +http://purl.obolibrary.org/obo/UBERON_0018408,infra-orbital nerve,infraorbital nerve +http://purl.obolibrary.org/obo/UBERON_0018409,infra-orbital groove of maxilla,infra-orbital groove +http://purl.obolibrary.org/obo/UBERON_0018409,infra-orbital groove of maxilla,infraorbital groove +http://purl.obolibrary.org/obo/UBERON_0018410,lacteal,lymphatic capillary of small intestine +http://purl.obolibrary.org/obo/UBERON_0018410,lacteal,small intestine lymphatic capillary +http://purl.obolibrary.org/obo/UBERON_0018411,ligament of hip joint,hip joint ligament +http://purl.obolibrary.org/obo/UBERON_0018412,vidian nerve,nerve of pterygoid canal +http://purl.obolibrary.org/obo/UBERON_0018412,vidian nerve,nerve of the pterygoid canal +http://purl.obolibrary.org/obo/UBERON_0018412,vidian nerve,pterygoid canal nerve +http://purl.obolibrary.org/obo/UBERON_0018412,vidian nerve,vidian nerve +http://purl.obolibrary.org/obo/UBERON_0018413,facial nerve canal,canalis nervi facialis +http://purl.obolibrary.org/obo/UBERON_0018413,facial nerve canal,facial canal +http://purl.obolibrary.org/obo/UBERON_0018415,ethmoid foramen,ethmoidal foramen +http://purl.obolibrary.org/obo/UBERON_0018415,ethmoid foramen,foramina ethmoidalia +http://purl.obolibrary.org/obo/UBERON_0018424,petrosal foramen,Foramen petrosum +http://purl.obolibrary.org/obo/UBERON_0018508,foramen of nasal bone,foramina nasalia +http://purl.obolibrary.org/obo/UBERON_0018508,foramen of nasal bone,nasal foramen +http://purl.obolibrary.org/obo/UBERON_0018529,female inguinal ring, +http://purl.obolibrary.org/obo/UBERON_0018530,male inguinal ring, +http://purl.obolibrary.org/obo/UBERON_0018531,female superficial inguinal ring,female external inguinal ring +http://purl.obolibrary.org/obo/UBERON_0018532,female deep inguinal ring,female internal inguinal ring +http://purl.obolibrary.org/obo/UBERON_0018533,crus of penis or clitoris, +http://purl.obolibrary.org/obo/UBERON_0018535,forelimb feather,feather of forelimb +http://purl.obolibrary.org/obo/UBERON_0018536,wing feather,feather of forelimb wing +http://purl.obolibrary.org/obo/UBERON_0018537,tail feather,feather of tail +http://purl.obolibrary.org/obo/UBERON_0018538,breast feather,feather of breast +http://purl.obolibrary.org/obo/UBERON_0018538,breast feather,feather of mammary region +http://purl.obolibrary.org/obo/UBERON_0018538,breast feather,feather of upper chest +http://purl.obolibrary.org/obo/UBERON_0018538,breast feather,feather of upper ventral region +http://purl.obolibrary.org/obo/UBERON_0018539,dorsal feather,feather of back +http://purl.obolibrary.org/obo/UBERON_0018539,dorsal feather,feather of dorsum +http://purl.obolibrary.org/obo/UBERON_0018540,breast feather tract,feather tract of breast +http://purl.obolibrary.org/obo/UBERON_0018540,breast feather tract,feather tract of mammary region +http://purl.obolibrary.org/obo/UBERON_0018540,breast feather tract,feather tract of upper chest +http://purl.obolibrary.org/obo/UBERON_0018540,breast feather tract,feather tract of upper ventral region +http://purl.obolibrary.org/obo/UBERON_0018540,breast feather tract,row of feathers on breast +http://purl.obolibrary.org/obo/UBERON_0018540,breast feather tract,row of feathers on mammary region +http://purl.obolibrary.org/obo/UBERON_0018540,breast feather tract,row of feathers on upper chest +http://purl.obolibrary.org/obo/UBERON_0018540,breast feather tract,row of feathers on upper ventral region +http://purl.obolibrary.org/obo/UBERON_0018542,mandibular symphyseal region, +http://purl.obolibrary.org/obo/UBERON_0018543,lumen of intestine,intestinal lumen +http://purl.obolibrary.org/obo/UBERON_0018543,lumen of intestine,intestine lumen +http://purl.obolibrary.org/obo/UBERON_0018544,trigeminal nerve muscle,muscle innervated by the trigeminal nerve +http://purl.obolibrary.org/obo/UBERON_0018544,trigeminal nerve muscle,muscles innervated by the trigeminal nerve +http://purl.obolibrary.org/obo/UBERON_0018545,nucleus of the bulbocavernosus, +http://purl.obolibrary.org/obo/UBERON_0018549,ventral wall of dorsal aorta,DA-PCV joint +http://purl.obolibrary.org/obo/UBERON_0018549,ventral wall of dorsal aorta,dorsal aorta - posterior cardinal vein joint +http://purl.obolibrary.org/obo/UBERON_0018550,secondary incisor tooth,permanent incisor +http://purl.obolibrary.org/obo/UBERON_0018550,secondary incisor tooth,permanent incisor tooth +http://purl.obolibrary.org/obo/UBERON_0018551,central incisor tooth,central incisor +http://purl.obolibrary.org/obo/UBERON_0018552,lateral incisor tooth,lateral incisor +http://purl.obolibrary.org/obo/UBERON_0018553,primary central incisor tooth,primary central incisor +http://purl.obolibrary.org/obo/UBERON_0018554,primary lateral incisor tooth,primary lateral incisor +http://purl.obolibrary.org/obo/UBERON_0018561,upper secondary canine tooth,maxillary secondary canine tooth +http://purl.obolibrary.org/obo/UBERON_0018561,upper secondary canine tooth,upper permanent canine tooth +http://purl.obolibrary.org/obo/UBERON_0018562,lower secondary canine tooth,lower permanent canine tooth +http://purl.obolibrary.org/obo/UBERON_0018562,lower secondary canine tooth,mandibular secondary canine tooth +http://purl.obolibrary.org/obo/UBERON_0018568,lower central secondary incisor tooth,lower central permanent incisor tooth +http://purl.obolibrary.org/obo/UBERON_0018568,lower central secondary incisor tooth,mandibular central permanent incisor +http://purl.obolibrary.org/obo/UBERON_0018568,lower central secondary incisor tooth,mandibular central secondary incisor tooth +http://purl.obolibrary.org/obo/UBERON_0018570,lower lateral secondary incisor tooth,lower lateral permanent incisor tooth +http://purl.obolibrary.org/obo/UBERON_0018570,lower lateral secondary incisor tooth,mandibular lateral permanent incisor +http://purl.obolibrary.org/obo/UBERON_0018570,lower lateral secondary incisor tooth,mandibular lateral secondary incisor tooth +http://purl.obolibrary.org/obo/UBERON_0018571,upper first secondary premolar tooth,maxillary first secondary premolar tooth +http://purl.obolibrary.org/obo/UBERON_0018571,upper first secondary premolar tooth,upper first permanent premolar tooth +http://purl.obolibrary.org/obo/UBERON_0018572,upper second secondary premolar tooth,maxillary second secondary premolar tooth +http://purl.obolibrary.org/obo/UBERON_0018572,upper second secondary premolar tooth,upper second permanent premolar tooth +http://purl.obolibrary.org/obo/UBERON_0018573,lower first secondary premolar tooth,lower first permanent premolar tooth +http://purl.obolibrary.org/obo/UBERON_0018573,lower first secondary premolar tooth,mandibular first secondary premolar tooth +http://purl.obolibrary.org/obo/UBERON_0018574,lower second secondary premolar tooth,lower second permanent premolar tooth +http://purl.obolibrary.org/obo/UBERON_0018574,lower second secondary premolar tooth,mandibular second secondary premolar tooth +http://purl.obolibrary.org/obo/UBERON_0018575,upper first secondary molar tooth,maxillary first secondary molar tooth +http://purl.obolibrary.org/obo/UBERON_0018575,upper first secondary molar tooth,upper first permanent molar tooth +http://purl.obolibrary.org/obo/UBERON_0018576,upper second secondary molar tooth,maxillary second secondary molar tooth +http://purl.obolibrary.org/obo/UBERON_0018576,upper second secondary molar tooth,upper second permanent tooth +http://purl.obolibrary.org/obo/UBERON_0018577,upper third secondary molar tooth,dens serotinus (upper) +http://purl.obolibrary.org/obo/UBERON_0018577,upper third secondary molar tooth,maxillary third secondary molar tooth +http://purl.obolibrary.org/obo/UBERON_0018577,upper third secondary molar tooth,upper third permanent molar tooth +http://purl.obolibrary.org/obo/UBERON_0018577,upper third secondary molar tooth,upper wisdom tooth +http://purl.obolibrary.org/obo/UBERON_0018578,lower first secondary molar tooth,lower first permanent molar tooth +http://purl.obolibrary.org/obo/UBERON_0018578,lower first secondary molar tooth,mandibular first secondary molar tooth +http://purl.obolibrary.org/obo/UBERON_0018579,lower second secondary molar tooth,lower second permanent molar tooth +http://purl.obolibrary.org/obo/UBERON_0018579,lower second secondary molar tooth,lower secondary molar 2 +http://purl.obolibrary.org/obo/UBERON_0018579,lower second secondary molar tooth,mandibular second secondary molar tooth +http://purl.obolibrary.org/obo/UBERON_0018580,lower third secondary molar tooth,lower secondary molar 3 +http://purl.obolibrary.org/obo/UBERON_0018580,lower third secondary molar tooth,lower third permanent molar tooth +http://purl.obolibrary.org/obo/UBERON_0018580,lower third secondary molar tooth,lower wisdom tooth +http://purl.obolibrary.org/obo/UBERON_0018580,lower third secondary molar tooth,mandibular third secondary molar tooth +http://purl.obolibrary.org/obo/UBERON_0018583,primary canine tooth,deciduous canine tooth +http://purl.obolibrary.org/obo/UBERON_0018583,primary canine tooth,primary tooth C +http://purl.obolibrary.org/obo/UBERON_0018583,primary canine tooth,temporary canine tooth +http://purl.obolibrary.org/obo/UBERON_0018584,secondary canine tooth,permanent canine tooth +http://purl.obolibrary.org/obo/UBERON_0018588,upper first primary molar tooth,upper first deciduous molar tooth +http://purl.obolibrary.org/obo/UBERON_0018588,upper first primary molar tooth,upper primary tooth D +http://purl.obolibrary.org/obo/UBERON_0018589,lower first primary molar tooth,lower first deciduous molar tooth +http://purl.obolibrary.org/obo/UBERON_0018589,lower first primary molar tooth,lower primary molar 1 +http://purl.obolibrary.org/obo/UBERON_0018589,lower first primary molar tooth,lower primary tooth D +http://purl.obolibrary.org/obo/UBERON_0018591,upper primary incisor tooth,upper deciduous incisor tooth +http://purl.obolibrary.org/obo/UBERON_0018593,upper central primary incisor tooth,upper central deciduous incisor tooth +http://purl.obolibrary.org/obo/UBERON_0018593,upper central primary incisor tooth,upper primary tooth A +http://purl.obolibrary.org/obo/UBERON_0018594,upper lateral primary incisor tooth,upper lateral deciduous incisor tooth +http://purl.obolibrary.org/obo/UBERON_0018594,upper lateral primary incisor tooth,upper primary tooth B +http://purl.obolibrary.org/obo/UBERON_0018595,lower central primary incisor tooth,lower central deciduous incisor tooth +http://purl.obolibrary.org/obo/UBERON_0018595,lower central primary incisor tooth,lower primary tooth A +http://purl.obolibrary.org/obo/UBERON_0018596,lower lateral primary incisor tooth,lower lateral deciduous incisor tooth +http://purl.obolibrary.org/obo/UBERON_0018596,lower lateral primary incisor tooth,lower primary tooth B +http://purl.obolibrary.org/obo/UBERON_0018596,lower lateral primary incisor tooth,mandibular lateral primary incisor +http://purl.obolibrary.org/obo/UBERON_0018597,upper primary canine tooth,upper deciduous canine tooth +http://purl.obolibrary.org/obo/UBERON_0018597,upper primary canine tooth,upper primary tooth C +http://purl.obolibrary.org/obo/UBERON_0018598,lower primary canine tooth,lower deciduous canine tooth +http://purl.obolibrary.org/obo/UBERON_0018598,lower primary canine tooth,lower primary tooth C +http://purl.obolibrary.org/obo/UBERON_0018598,lower primary canine tooth,primary lower canine tooth +http://purl.obolibrary.org/obo/UBERON_0018599,upper second primary molar tooth,upper primary tooth E +http://purl.obolibrary.org/obo/UBERON_0018599,upper second primary molar tooth,upper second deciduous molar tooth +http://purl.obolibrary.org/obo/UBERON_0018600,lower second primary molar tooth,lower primary tooth E +http://purl.obolibrary.org/obo/UBERON_0018600,lower second primary molar tooth,lower second deciduous molar tooth +http://purl.obolibrary.org/obo/UBERON_0018601,lower central incisor tooth,lower central incisor +http://purl.obolibrary.org/obo/UBERON_0018601,lower central incisor tooth,mandibular central incisor +http://purl.obolibrary.org/obo/UBERON_0018602,lower lateral incisor tooth,lower lateral incisor +http://purl.obolibrary.org/obo/UBERON_0018602,lower lateral incisor tooth,mandibular lateral incisor +http://purl.obolibrary.org/obo/UBERON_0018603,upper central incisor tooth,maxillary central incisor +http://purl.obolibrary.org/obo/UBERON_0018603,upper central incisor tooth,upper central incisor +http://purl.obolibrary.org/obo/UBERON_0018604,upper lateral incisor tooth,maxillary lateral incisor +http://purl.obolibrary.org/obo/UBERON_0018604,upper lateral incisor tooth,upper lateral incisor +http://purl.obolibrary.org/obo/UBERON_0018606,molar tooth 2,molar 2 +http://purl.obolibrary.org/obo/UBERON_0018606,molar tooth 2,molar 2 tooth +http://purl.obolibrary.org/obo/UBERON_0018606,molar tooth 2,second molar tooth +http://purl.obolibrary.org/obo/UBERON_0018607,permanent molar tooth 2,permanent second molar tooth +http://purl.obolibrary.org/obo/UBERON_0018607,permanent molar tooth 2,second permanent molar +http://purl.obolibrary.org/obo/UBERON_0018607,permanent molar tooth 2,second permanent molar tooth +http://purl.obolibrary.org/obo/UBERON_0018607,permanent molar tooth 2,secondary second molar tooth +http://purl.obolibrary.org/obo/UBERON_0018608,permanent molar tooth 1,first permanent molar +http://purl.obolibrary.org/obo/UBERON_0018608,permanent molar tooth 1,first permanent molar tooth +http://purl.obolibrary.org/obo/UBERON_0018608,permanent molar tooth 1,permanent first molar tooth +http://purl.obolibrary.org/obo/UBERON_0018613,secondary upper tooth,permanent upper tooth +http://purl.obolibrary.org/obo/UBERON_0018614,permanent lower tooth,secondary lower tooth +http://purl.obolibrary.org/obo/UBERON_0018616,primary upper tooth,deciduous upper tooth +http://purl.obolibrary.org/obo/UBERON_0018617,primary lower tooth,deciduous lower tooth +http://purl.obolibrary.org/obo/UBERON_0018621,upper canine tooth,maxillary canine tooth +http://purl.obolibrary.org/obo/UBERON_0018621,upper canine tooth,upper canine +http://purl.obolibrary.org/obo/UBERON_0018621,upper canine tooth,upper cuspid +http://purl.obolibrary.org/obo/UBERON_0018622,lower canine tooth,lower canine +http://purl.obolibrary.org/obo/UBERON_0018622,lower canine tooth,lower cuspid +http://purl.obolibrary.org/obo/UBERON_0018622,lower canine tooth,mandibular canine tooth +http://purl.obolibrary.org/obo/UBERON_0018623,lower secondary incisor tooth,lower permanent incisor tooth +http://purl.obolibrary.org/obo/UBERON_0018623,lower secondary incisor tooth,mandibular secondary incisor tooth +http://purl.obolibrary.org/obo/UBERON_0018640,premolar 2,second premolar tooth +http://purl.obolibrary.org/obo/UBERON_0018643,deciduous molar tooth 2,deciduous second molar tooth +http://purl.obolibrary.org/obo/UBERON_0018644,deciduous molar tooth 1,deciduous first molar tooth +http://purl.obolibrary.org/obo/UBERON_0018644,deciduous molar tooth 1,deciduous molar 1 +http://purl.obolibrary.org/obo/UBERON_0018644,deciduous molar tooth 1,first temporarary molar +http://purl.obolibrary.org/obo/UBERON_0018645,incisor region of dentition, +http://purl.obolibrary.org/obo/UBERON_0018646,premolar tooth 5,premolar 5 +http://purl.obolibrary.org/obo/UBERON_0018647,premolar tooth 4,premolar 4 +http://purl.obolibrary.org/obo/UBERON_0018648,upper premolar 4, +http://purl.obolibrary.org/obo/UBERON_0018649,cardiac muscle tissue of ventricle,ventricular cardiac muscle tissue +http://purl.obolibrary.org/obo/UBERON_0018649,cardiac muscle tissue of ventricle,ventricular heart muscle +http://purl.obolibrary.org/obo/UBERON_0018650,annelid peristomium, +http://purl.obolibrary.org/obo/UBERON_0018651,foramen lacerum, +http://purl.obolibrary.org/obo/UBERON_0018652,maxillary recess,recessus maxillaris +http://purl.obolibrary.org/obo/UBERON_0018653,anterior ethmoidal foramen,foramina ethmoidalia anterius +http://purl.obolibrary.org/obo/UBERON_0018654,posterior ethmoidal foramen,foramina ethmoidalia posterius +http://purl.obolibrary.org/obo/UBERON_0018655,pars endotympanica, +http://purl.obolibrary.org/obo/UBERON_0018656,puparium, +http://purl.obolibrary.org/obo/UBERON_0018657,pupal case, +http://purl.obolibrary.org/obo/UBERON_0018663,recessus basilaris,basilar papillar recess +http://purl.obolibrary.org/obo/UBERON_0018664,neck of bone element,bone neck +http://purl.obolibrary.org/obo/UBERON_0018664,neck of bone element,neck of bone +http://purl.obolibrary.org/obo/UBERON_0018667,neck of scapula,anatomical neck of scapula +http://purl.obolibrary.org/obo/UBERON_0018667,neck of scapula,collum scapulae +http://purl.obolibrary.org/obo/UBERON_0018667,neck of scapula,scapular neck +http://purl.obolibrary.org/obo/UBERON_0018673,neck of fibula,fibula neck +http://purl.obolibrary.org/obo/UBERON_0018673,neck of fibula,fibular neck +http://purl.obolibrary.org/obo/UBERON_0018674,heart vasculature,cardiac vasculature +http://purl.obolibrary.org/obo/UBERON_0018675,pelvic splanchnic nerve,nervi erigentes +http://purl.obolibrary.org/obo/UBERON_0018675,pelvic splanchnic nerve,nervi pelvici splanchnici +http://purl.obolibrary.org/obo/UBERON_0018675,pelvic splanchnic nerve,nervi splanchnici pelvici +http://purl.obolibrary.org/obo/UBERON_0018675,pelvic splanchnic nerve,nn erigentes +http://purl.obolibrary.org/obo/UBERON_0018675,pelvic splanchnic nerve,pelvic splanchnic nerve +http://purl.obolibrary.org/obo/UBERON_0018675,pelvic splanchnic nerve,pelvic splanchnic parasympathetic nerve +http://purl.obolibrary.org/obo/UBERON_0018676,renal nerve plexus,plexus renalis +http://purl.obolibrary.org/obo/UBERON_0018676,renal nerve plexus,renal plexus +http://purl.obolibrary.org/obo/UBERON_0018679,thoracic splanchnic nerve, +http://purl.obolibrary.org/obo/UBERON_0018680,greater splanchnic nerve,greater thoracic splanchnic nerve +http://purl.obolibrary.org/obo/UBERON_0018681,lesser splanchnic nerve,lesser thoracic splanchnic nerve +http://purl.obolibrary.org/obo/UBERON_0018683,lumbar splanchnic nerve,lumbar splanchnic nerve +http://purl.obolibrary.org/obo/UBERON_0018684,sacral splanchnic nerve, +http://purl.obolibrary.org/obo/UBERON_0018687,glial limiting membrane,glia limitans +http://purl.obolibrary.org/obo/UBERON_0018688,hindlimb feather,feather of hindlimb +http://purl.obolibrary.org/obo/UBERON_0018689,crural feather,tibial feather +http://purl.obolibrary.org/obo/UBERON_0018690,feather covering of ventral part of tail, +http://purl.obolibrary.org/obo/UBERON_0018691,ventral side of post-anal tail, +http://purl.obolibrary.org/obo/UBERON_0018692,dorsal side of post-anal tail, +http://purl.obolibrary.org/obo/UBERON_0018707,bladder organ,bladder +http://purl.obolibrary.org/obo/UBERON_0019042,reproductive system mucosa,genital mucosa +http://purl.obolibrary.org/obo/UBERON_0019143,intramuscular adipose tissue, +http://purl.obolibrary.org/obo/UBERON_0019189,carotid artery endothelium, +http://purl.obolibrary.org/obo/UBERON_0019190,mucous gland of lung,bronchial gland +http://purl.obolibrary.org/obo/UBERON_0019190,mucous gland of lung,bronchial mucous gland +http://purl.obolibrary.org/obo/UBERON_0019190,mucous gland of lung,peribronchial gland +http://purl.obolibrary.org/obo/UBERON_0019196,iliac artery endothelium, +http://purl.obolibrary.org/obo/UBERON_0019197,dorsal nerve of penis,nervus dorsalis penis +http://purl.obolibrary.org/obo/UBERON_0019197,dorsal nerve of penis,nervus dorsalis penis +http://purl.obolibrary.org/obo/UBERON_0019198,dorsal nerve of clitoris,nervus dorsalis clitoridis +http://purl.obolibrary.org/obo/UBERON_0019199,lateral side of chest,side of chest +http://purl.obolibrary.org/obo/UBERON_0019200,skin of anterior chest,anterior chest skin +http://purl.obolibrary.org/obo/UBERON_0019200,skin of anterior chest,skin of anterior part of thorax +http://purl.obolibrary.org/obo/UBERON_0019200,skin of anterior chest,skin of ventral chest +http://purl.obolibrary.org/obo/UBERON_0019200,skin of anterior chest,ventral chest skin +http://purl.obolibrary.org/obo/UBERON_0019201,gemellus muscle, +http://purl.obolibrary.org/obo/UBERON_0019202,inferior gemellus muscle,gemellus inferior +http://purl.obolibrary.org/obo/UBERON_0019202,inferior gemellus muscle,inferior gemellus +http://purl.obolibrary.org/obo/UBERON_0019202,inferior gemellus muscle,musculus gemellus inferior +http://purl.obolibrary.org/obo/UBERON_0019203,superior gemellus muscle,gemellus superior +http://purl.obolibrary.org/obo/UBERON_0019203,superior gemellus muscle,musculus gemellus superior +http://purl.obolibrary.org/obo/UBERON_0019203,superior gemellus muscle,superior gemellus +http://purl.obolibrary.org/obo/UBERON_0019204,skin epithelium, +http://purl.obolibrary.org/obo/UBERON_0019206,tongue papilla epithelium, +http://purl.obolibrary.org/obo/UBERON_0019207,chorioretinal region,chorioretina +http://purl.obolibrary.org/obo/UBERON_0019207,chorioretinal region,choroid and retina +http://purl.obolibrary.org/obo/UBERON_0019207,chorioretinal region,retinachoroid +http://purl.obolibrary.org/obo/UBERON_0019207,chorioretinal region,retinachoroidal region +http://purl.obolibrary.org/obo/UBERON_0019208,anterior pole of lens,polus anterior (lens) +http://purl.obolibrary.org/obo/UBERON_0019208,anterior pole of lens,polus anterior lentis +http://purl.obolibrary.org/obo/UBERON_0019210,pole of lens,lens pole +http://purl.obolibrary.org/obo/UBERON_0019210,pole of lens,lens zone +http://purl.obolibrary.org/obo/UBERON_0019211,supcapsular region of anterior region of lens, +http://purl.obolibrary.org/obo/UBERON_0019212,supcapsular region of posterior region of lens, +http://purl.obolibrary.org/obo/UBERON_0019221,digit 1 or 5, +http://purl.obolibrary.org/obo/UBERON_0019222,"digit 2, 3 or 4", +http://purl.obolibrary.org/obo/UBERON_0019231,manual digit 1 or 5, +http://purl.obolibrary.org/obo/UBERON_0019232,"manual digit 2, 3 or 4", +http://purl.obolibrary.org/obo/UBERON_0019241,pedal digit 1 or 5, +http://purl.obolibrary.org/obo/UBERON_0019242,"pedal digit 2, 3 or 4", +http://purl.obolibrary.org/obo/UBERON_0019243,skin crease, +http://purl.obolibrary.org/obo/UBERON_0019246,palmar skin crease,skin crease of palmar part of manus +http://purl.obolibrary.org/obo/UBERON_0019247,plantar skin crease,skin crease of plantar part of pes +http://purl.obolibrary.org/obo/UBERON_0019248,early embryo, +http://purl.obolibrary.org/obo/UBERON_0019249,2-cell stage embryo, +http://purl.obolibrary.org/obo/UBERON_0019250,4-8 cell stage embryo, +http://purl.obolibrary.org/obo/UBERON_0019251,4-cell stage embryo, +http://purl.obolibrary.org/obo/UBERON_0019252,8-cell stage embryo, +http://purl.obolibrary.org/obo/UBERON_0019253,upper secondary incisor tooth,maxillary secondary incisor tooth +http://purl.obolibrary.org/obo/UBERON_0019253,upper secondary incisor tooth,upper permanent incisor +http://purl.obolibrary.org/obo/UBERON_0019253,upper secondary incisor tooth,upper permanent incisor tooth +http://purl.obolibrary.org/obo/UBERON_0019254,upper eyelash,eyelash of upper eyelid +http://purl.obolibrary.org/obo/UBERON_0019254,upper eyelash,upper eyelid cilium +http://purl.obolibrary.org/obo/UBERON_0019254,upper eyelash,upper eyelid eyelash +http://purl.obolibrary.org/obo/UBERON_0019255,lower eyelash,eyelash of lower eyelid +http://purl.obolibrary.org/obo/UBERON_0019255,lower eyelash,lower eyelid cilium +http://purl.obolibrary.org/obo/UBERON_0019255,lower eyelash,lower eyelid eyelash +http://purl.obolibrary.org/obo/UBERON_0019258,white matter of hindbrain, +http://purl.obolibrary.org/obo/UBERON_0019261,white matter of forebrain, +http://purl.obolibrary.org/obo/UBERON_0019262,white matter of myelencephalon,myelencephalic white matter +http://purl.obolibrary.org/obo/UBERON_0019263,gray matter of hindbrain,gray matter of the hindbrain +http://purl.obolibrary.org/obo/UBERON_0019264,gray matter of forebrain, +http://purl.obolibrary.org/obo/UBERON_0019267,gray matter of midbrain, +http://purl.obolibrary.org/obo/UBERON_0019269,gray matter of diencephalon, +http://purl.obolibrary.org/obo/UBERON_0019272,mesomere 1,mesomere M1 +http://purl.obolibrary.org/obo/UBERON_0019274,mesomere 2,mesomere 2 (preisthmus or caudal midbrain) +http://purl.obolibrary.org/obo/UBERON_0019274,mesomere 2,mesomere M2 +http://purl.obolibrary.org/obo/UBERON_0019275,uncinate fasciculus of the forebrain, +http://purl.obolibrary.org/obo/UBERON_0019278,inferior rostral gyrus, +http://purl.obolibrary.org/obo/UBERON_0019279,superior rostral gyrus,superior rostral gyrus +http://purl.obolibrary.org/obo/UBERON_0019280,rostral gyrus, +http://purl.obolibrary.org/obo/UBERON_0019283,lateral longitudinal stria,lateral white stria of lancisi +http://purl.obolibrary.org/obo/UBERON_0019284,rhombomere 9,r9 +http://purl.obolibrary.org/obo/UBERON_0019285,rhombomere 10,r10 +http://purl.obolibrary.org/obo/UBERON_0019286,rhombomere 11,r11 +http://purl.obolibrary.org/obo/UBERON_0019289,accessory olfactory bulb external plexiform layer,"AOB, outer plexiform layer" +http://purl.obolibrary.org/obo/UBERON_0019290,accessory olfactory bulb internal plexiform layer,"AOB, internal plexiform layer" +http://purl.obolibrary.org/obo/UBERON_0019291,white matter of metencephalon, +http://purl.obolibrary.org/obo/UBERON_0019292,white matter of pons, +http://purl.obolibrary.org/obo/UBERON_0019293,white matter of pontine tegmentum,pontine white matter tracts +http://purl.obolibrary.org/obo/UBERON_0019293,white matter of pontine tegmentum,predominantly white regional part of pontine tegmentum +http://purl.obolibrary.org/obo/UBERON_0019293,white matter of pontine tegmentum,substantia alba tegmenti pontis +http://purl.obolibrary.org/obo/UBERON_0019293,white matter of pontine tegmentum,white matter of pontile tegmentum +http://purl.obolibrary.org/obo/UBERON_0019293,white matter of pontine tegmentum,white substance of pontile tegmentum +http://purl.obolibrary.org/obo/UBERON_0019294,commissure of telencephalon,telencephalic commissures +http://purl.obolibrary.org/obo/UBERON_0019295,caudal intralaminar nuclear group,caudal group of intralaminar nuclei +http://purl.obolibrary.org/obo/UBERON_0019295,caudal intralaminar nuclear group,posterior group of intralaminar nuclei +http://purl.obolibrary.org/obo/UBERON_0019303,occipital sulcus,occipital lobe sulcus +http://purl.obolibrary.org/obo/UBERON_0019304,sensory organ epithelium, +http://purl.obolibrary.org/obo/UBERON_0019306,nose epithelium, +http://purl.obolibrary.org/obo/UBERON_0019307,epithelium of external nose,epithelium of skin of external nose +http://purl.obolibrary.org/obo/UBERON_0019308,septohypothalamic nucleus, +http://purl.obolibrary.org/obo/UBERON_0019310,glossopharyngeal nerve root,glossopharyngeal nerve root +http://purl.obolibrary.org/obo/UBERON_0019311,root of olfactory nerve,olfactory nerve root +http://purl.obolibrary.org/obo/UBERON_0019312,ventrolateral nucleus of solitary tract,ventrolateral subnucleus of solitary tract +http://purl.obolibrary.org/obo/UBERON_0019312,ventrolateral nucleus of solitary tract,"ventrolateral subnucleus of solitary tract, left" +http://purl.obolibrary.org/obo/UBERON_0019314,epifascicular nucleus, +http://purl.obolibrary.org/obo/UBERON_0019315,meibum, +http://purl.obolibrary.org/obo/UBERON_0019319,exocrine gland of integumental system,integumental exocrine gland +http://purl.obolibrary.org/obo/UBERON_0019319,exocrine gland of integumental system,integumental system exocrine gland +http://purl.obolibrary.org/obo/UBERON_0019320,precordial region,precordial region +http://purl.obolibrary.org/obo/UBERON_0019320,precordial region,precordium +http://purl.obolibrary.org/obo/UBERON_0019324,intraorbital lacrimal gland, +http://purl.obolibrary.org/obo/UBERON_0019325,exorbital lacrimal gland,exorbital lacrimal gland +http://purl.obolibrary.org/obo/UBERON_0019326,lobe of lacrimal gland,lacrimal gland zone +http://purl.obolibrary.org/obo/UBERON_0019326,lobe of lacrimal gland,zone of lacrimal gland +http://purl.obolibrary.org/obo/UBERON_0019327,orbital lobe of lacrimal gland,orbital part of lacrimal gland +http://purl.obolibrary.org/obo/UBERON_0019327,orbital lobe of lacrimal gland,pars orbitalis (glandula lacrimalis) +http://purl.obolibrary.org/obo/UBERON_0019327,orbital lobe of lacrimal gland,pars orbitalis glandulae lacrimalis +http://purl.obolibrary.org/obo/UBERON_0019328,palpebral lobe of lacrimal gland,palpebral part of lacrimal gland +http://purl.obolibrary.org/obo/UBERON_0019328,palpebral lobe of lacrimal gland,pars palpebralis glandulae lacrimalis +http://purl.obolibrary.org/obo/UBERON_0020358,accessory XI nerve nucleus,accessory neural nucleus +http://purl.obolibrary.org/obo/UBERON_0020550,auricular blood vessel, +http://purl.obolibrary.org/obo/UBERON_0022229,posterior amygdaloid nucleus,posterior amygdalar nucleus +http://purl.obolibrary.org/obo/UBERON_0022230,retrohippocampal region,retrohippocampal cortex +http://purl.obolibrary.org/obo/UBERON_0022232,secondary visual cortex, +http://purl.obolibrary.org/obo/UBERON_0022234,medial longitudinal stria,medial longitudinal stria of lancisi +http://purl.obolibrary.org/obo/UBERON_0022234,medial longitudinal stria,medial stripe of lancisi +http://purl.obolibrary.org/obo/UBERON_0022234,medial longitudinal stria,medial white stria of lancisi +http://purl.obolibrary.org/obo/UBERON_0022234,medial longitudinal stria,stria of lancisi +http://purl.obolibrary.org/obo/UBERON_0022235,peduncle of diencephalon,diencephalon peduncle +http://purl.obolibrary.org/obo/UBERON_0022236,peduncle of thalamus,thalamic peduncle +http://purl.obolibrary.org/obo/UBERON_0022237,anterior thalamic peduncle,anterior peduncle +http://purl.obolibrary.org/obo/UBERON_0022237,anterior thalamic peduncle,frontal peduncle +http://purl.obolibrary.org/obo/UBERON_0022237,anterior thalamic peduncle,frontal thalamic peduncle +http://purl.obolibrary.org/obo/UBERON_0022237,anterior thalamic peduncle,pedunculus rostralis thalami +http://purl.obolibrary.org/obo/UBERON_0022237,anterior thalamic peduncle,rostral peduncle of thalamus +http://purl.obolibrary.org/obo/UBERON_0022241,superior thalamic peduncle,centroparietal peduncle +http://purl.obolibrary.org/obo/UBERON_0022241,superior thalamic peduncle,centroparietal thalamic peduncle +http://purl.obolibrary.org/obo/UBERON_0022241,superior thalamic peduncle,middle thalamic peduncle +http://purl.obolibrary.org/obo/UBERON_0022241,superior thalamic peduncle,pedunculus thalami superior +http://purl.obolibrary.org/obo/UBERON_0022241,superior thalamic peduncle,superior peduncle +http://purl.obolibrary.org/obo/UBERON_0022242,inferior thalamic peduncle,inferior peduncle +http://purl.obolibrary.org/obo/UBERON_0022242,inferior thalamic peduncle,pedunculus inferior thalami +http://purl.obolibrary.org/obo/UBERON_0022242,inferior thalamic peduncle,pedunculus thalami caudalis +http://purl.obolibrary.org/obo/UBERON_0022242,inferior thalamic peduncle,pedunculus thalami inferior +http://purl.obolibrary.org/obo/UBERON_0022242,inferior thalamic peduncle,pedunculus thalamicus inferior +http://purl.obolibrary.org/obo/UBERON_0022242,inferior thalamic peduncle,temporal peduncle +http://purl.obolibrary.org/obo/UBERON_0022242,inferior thalamic peduncle,temporal thalamic peduncle +http://purl.obolibrary.org/obo/UBERON_0022243,posterior thalamic peduncle,occipital peduncle +http://purl.obolibrary.org/obo/UBERON_0022243,posterior thalamic peduncle,occipital thalamic peduncle +http://purl.obolibrary.org/obo/UBERON_0022243,posterior thalamic peduncle,pedunculus ventrocaudalis thalami +http://purl.obolibrary.org/obo/UBERON_0022243,posterior thalamic peduncle,posterior peduncle +http://purl.obolibrary.org/obo/UBERON_0022243,posterior thalamic peduncle,ventrocaudal thalamic peduncle +http://purl.obolibrary.org/obo/UBERON_0022244,anterior orbital gyrus, +http://purl.obolibrary.org/obo/UBERON_0022246,superior longitudinal fasciculus, +http://purl.obolibrary.org/obo/UBERON_0022247,forebrain ipsilateral fiber tracts, +http://purl.obolibrary.org/obo/UBERON_0022248,cerebral nerve fasciculus,cerebral fascicle +http://purl.obolibrary.org/obo/UBERON_0022248,cerebral nerve fasciculus,cerebral fasciculus +http://purl.obolibrary.org/obo/UBERON_0022248,cerebral nerve fasciculus,nerve fascicle of telencephalon +http://purl.obolibrary.org/obo/UBERON_0022248,cerebral nerve fasciculus,telencephalic fascicle +http://purl.obolibrary.org/obo/UBERON_0022248,cerebral nerve fasciculus,telencephalic nerve fascicle +http://purl.obolibrary.org/obo/UBERON_0022250,subcallosal fasciculus,fasciculus occipitofrontalis superior +http://purl.obolibrary.org/obo/UBERON_0022250,subcallosal fasciculus,fasciculus subcallosus +http://purl.obolibrary.org/obo/UBERON_0022250,subcallosal fasciculus,superior occipitofrontal fasciculus +http://purl.obolibrary.org/obo/UBERON_0022252,precentral sulcus, +http://purl.obolibrary.org/obo/UBERON_0022254,ventral thalamic fasciculus,"area subthalamica tegmentalis, pars dorsomedialis" +http://purl.obolibrary.org/obo/UBERON_0022254,ventral thalamic fasciculus,area tegmentalis H1 +http://purl.obolibrary.org/obo/UBERON_0022254,ventral thalamic fasciculus,"area tegmentalis, pars dorsalis" +http://purl.obolibrary.org/obo/UBERON_0022254,ventral thalamic fasciculus,"area tegmentalis, pars dorsalis (Forel)" +http://purl.obolibrary.org/obo/UBERON_0022254,ventral thalamic fasciculus,campus foreli (pars dorsalis) +http://purl.obolibrary.org/obo/UBERON_0022254,ventral thalamic fasciculus,fasciculus thalamicus +http://purl.obolibrary.org/obo/UBERON_0022254,ventral thalamic fasciculus,fasciculus thalamicus [h1] +http://purl.obolibrary.org/obo/UBERON_0022254,ventral thalamic fasciculus,fasciculus thalamicus hypothalami +http://purl.obolibrary.org/obo/UBERON_0022254,ventral thalamic fasciculus,field H1 +http://purl.obolibrary.org/obo/UBERON_0022254,ventral thalamic fasciculus,forel's field h1 +http://purl.obolibrary.org/obo/UBERON_0022254,ventral thalamic fasciculus,forelli campus I +http://purl.obolibrary.org/obo/UBERON_0022254,ventral thalamic fasciculus,h1 bundle of Forel +http://purl.obolibrary.org/obo/UBERON_0022254,ventral thalamic fasciculus,h1 field of Forel +http://purl.obolibrary.org/obo/UBERON_0022254,ventral thalamic fasciculus,tegmental area h1 +http://purl.obolibrary.org/obo/UBERON_0022254,ventral thalamic fasciculus,thalamic fasciculus +http://purl.obolibrary.org/obo/UBERON_0022254,ventral thalamic fasciculus,thalamic fasciculus [h1] +http://purl.obolibrary.org/obo/UBERON_0022256,subthalamic fasciculus, +http://purl.obolibrary.org/obo/UBERON_0022258,endolemniscal nucleus, +http://purl.obolibrary.org/obo/UBERON_0022259,white matter radiation,neuraxis radiation +http://purl.obolibrary.org/obo/UBERON_0022259,white matter radiation,radiation of neuraxis +http://purl.obolibrary.org/obo/UBERON_0022260,radiation of cerebral hemisphere,cerebral hemisphere radiation +http://purl.obolibrary.org/obo/UBERON_0022262,auditory radiation,acoustic radiation +http://purl.obolibrary.org/obo/UBERON_0022262,auditory radiation,geniculotemporal radiation +http://purl.obolibrary.org/obo/UBERON_0022262,auditory radiation,geniculotemporal tract +http://purl.obolibrary.org/obo/UBERON_0022262,auditory radiation,radiatio acustica +http://purl.obolibrary.org/obo/UBERON_0022264,optic radiation,Gratiolet's radiation +http://purl.obolibrary.org/obo/UBERON_0022268,planum temporale, +http://purl.obolibrary.org/obo/UBERON_0022271,corticopontine fibers,cortico-pontine fibers +http://purl.obolibrary.org/obo/UBERON_0022271,corticopontine fibers,"cortico-pontine fibers, pontine part" +http://purl.obolibrary.org/obo/UBERON_0022271,corticopontine fibers,corticopontine fibers +http://purl.obolibrary.org/obo/UBERON_0022271,corticopontine fibers,corticopontine fibers of pons +http://purl.obolibrary.org/obo/UBERON_0022271,corticopontine fibers,corticopontine fibers set +http://purl.obolibrary.org/obo/UBERON_0022271,corticopontine fibers,corticopontine fibres +http://purl.obolibrary.org/obo/UBERON_0022271,corticopontine fibers,fibrae corticopontinae +http://purl.obolibrary.org/obo/UBERON_0022271,corticopontine fibers,tractus corticopontinus +http://purl.obolibrary.org/obo/UBERON_0022272,corticobulbar tract, +http://purl.obolibrary.org/obo/UBERON_0022273,lacrimal lake,lacrymal lake +http://purl.obolibrary.org/obo/UBERON_0022273,lacrimal lake,lacus lacrimalis +http://purl.obolibrary.org/obo/UBERON_0022274,lacrimal papilla,papilla lacrimalis +http://purl.obolibrary.org/obo/UBERON_0022275,colic flexure,flexura coli +http://purl.obolibrary.org/obo/UBERON_0022276,splenic flexure of colon,flexura coli splenica +http://purl.obolibrary.org/obo/UBERON_0022276,splenic flexure of colon,left colic flexure +http://purl.obolibrary.org/obo/UBERON_0022276,splenic flexure of colon,splenic flexure +http://purl.obolibrary.org/obo/UBERON_0022276,splenic flexure of colon,splenic flexure of colon +http://purl.obolibrary.org/obo/UBERON_0022277,hepatic flexure of colon,flexura coli heaptica +http://purl.obolibrary.org/obo/UBERON_0022277,hepatic flexure of colon,hepatic flexure +http://purl.obolibrary.org/obo/UBERON_0022277,hepatic flexure of colon,hepatic flexure of colon +http://purl.obolibrary.org/obo/UBERON_0022277,hepatic flexure of colon,right colic flexure +http://purl.obolibrary.org/obo/UBERON_0022278,nucleus of pudendal nerve,Onuf's nucleus +http://purl.obolibrary.org/obo/UBERON_0022278,nucleus of pudendal nerve,nucleus of Onuf +http://purl.obolibrary.org/obo/UBERON_0022278,nucleus of pudendal nerve,pudendal neural nucleus +http://purl.obolibrary.org/obo/UBERON_0022279,strand of hair on external ear,hair of external ear +http://purl.obolibrary.org/obo/UBERON_0022279,strand of hair on external ear,hair of tragus +http://purl.obolibrary.org/obo/UBERON_0022279,strand of hair on external ear,tragus hair +http://purl.obolibrary.org/obo/UBERON_0022280,epithelium of crypt of Lieberkuhn of small intestine,epithelium of small intestinal crypt of Lieberkuhn +http://purl.obolibrary.org/obo/UBERON_0022281,epithelium of crypt of Lieberkuhn of large intestine, +http://purl.obolibrary.org/obo/UBERON_0022282,secretion of Harderian gland,Harderian gland fluid +http://purl.obolibrary.org/obo/UBERON_0022282,secretion of Harderian gland,Harderian gland secretion +http://purl.obolibrary.org/obo/UBERON_0022283,pineal recess of third ventricle,pineal recess +http://purl.obolibrary.org/obo/UBERON_0022283,pineal recess of third ventricle,pineal recess of 3V +http://purl.obolibrary.org/obo/UBERON_0022283,pineal recess of third ventricle,recessus pinealis +http://purl.obolibrary.org/obo/UBERON_0022284,lacrimal gland bud, +http://purl.obolibrary.org/obo/UBERON_0022285,strand of tylotrich hair, +http://purl.obolibrary.org/obo/UBERON_0022286,secretion of nictitans gland,nictitans gland fluid +http://purl.obolibrary.org/obo/UBERON_0022286,secretion of nictitans gland,nictitans gland secretion +http://purl.obolibrary.org/obo/UBERON_0022287,tear film,precorneal film +http://purl.obolibrary.org/obo/UBERON_0022288,surface of eyeball, +http://purl.obolibrary.org/obo/UBERON_0022292,splenic arteriole, +http://purl.obolibrary.org/obo/UBERON_0022293,reproductive gland secretion, +http://purl.obolibrary.org/obo/UBERON_0022294,morphological boundary, +http://purl.obolibrary.org/obo/UBERON_0022295,integumental surface, +http://purl.obolibrary.org/obo/UBERON_0022296,inferior palpebral branch of infra-orbital nerve,rami palpebrales inferiores nervi infraorbitalis +http://purl.obolibrary.org/obo/UBERON_0022297,palpebral branch of infra-orbital nerve,palpebral branch of maxillary nerve +http://purl.obolibrary.org/obo/UBERON_0022298,lower eyelid nerve, +http://purl.obolibrary.org/obo/UBERON_0022299,upper eyelid nerve, +http://purl.obolibrary.org/obo/UBERON_0022300,nasociliary nerve,nasal nerve +http://purl.obolibrary.org/obo/UBERON_0022300,nasociliary nerve,nasociliary +http://purl.obolibrary.org/obo/UBERON_0022300,nasociliary nerve,nasociliary nerve +http://purl.obolibrary.org/obo/UBERON_0022300,nasociliary nerve,nervus nasociliaris +http://purl.obolibrary.org/obo/UBERON_0022301,long ciliary nerve,long ciliary nerve +http://purl.obolibrary.org/obo/UBERON_0022301,long ciliary nerve,nervi ciliares longi +http://purl.obolibrary.org/obo/UBERON_0022302,short ciliary nerve,lower branch of ciliary ganglion +http://purl.obolibrary.org/obo/UBERON_0022302,short ciliary nerve,nervi ciliares breves +http://purl.obolibrary.org/obo/UBERON_0022302,short ciliary nerve,nervi ciliares brevis +http://purl.obolibrary.org/obo/UBERON_0022302,short ciliary nerve,short ciliary nerve +http://purl.obolibrary.org/obo/UBERON_0022303,nervous system cell part layer,lamina +http://purl.obolibrary.org/obo/UBERON_0022303,nervous system cell part layer,layer +http://purl.obolibrary.org/obo/UBERON_0022314,superior colliculus stratum zonale, +http://purl.obolibrary.org/obo/UBERON_0022315,primary motor cortex layer 5, +http://purl.obolibrary.org/obo/UBERON_0022316,primary motor cortex layer 6, +http://purl.obolibrary.org/obo/UBERON_0022317,olfactory cortex layer 1,layer 1 of olfactory cortex +http://purl.obolibrary.org/obo/UBERON_0022317,olfactory cortex layer 1,olfactory cortex plexiform layer +http://purl.obolibrary.org/obo/UBERON_0022318,olfactory cortex layer 2,layer 2 of olfactory cortex +http://purl.obolibrary.org/obo/UBERON_0022319,lateral geniculate nucleus parvocellular layer,LGN P-cell layer +http://purl.obolibrary.org/obo/UBERON_0022320,dorsal cochlear nucleus pyramidal cell layer, +http://purl.obolibrary.org/obo/UBERON_0022323,entorhinal cortex layer 4, +http://purl.obolibrary.org/obo/UBERON_0022325,entorhinal cortex layer 5,entorhinal cortex layer V +http://purl.obolibrary.org/obo/UBERON_0022326,molecular layer of dorsal cochlear nucleus,MoC +http://purl.obolibrary.org/obo/UBERON_0022326,molecular layer of dorsal cochlear nucleus,dorsal cochlear nucleus molecular layer +http://purl.obolibrary.org/obo/UBERON_0022327,entorhinal cortex layer 3,"entorhinal cortex, pyramidal layer" +http://purl.obolibrary.org/obo/UBERON_0022327,entorhinal cortex layer 3,pyramidal layer of entorhinal cortex +http://purl.obolibrary.org/obo/UBERON_0022329,entorhinal cortex layer 6,entorhinal cortex layer VI +http://purl.obolibrary.org/obo/UBERON_0022336,entorhinal cortex layer 1,molecular layer of entorhinal cortex +http://purl.obolibrary.org/obo/UBERON_0022336,entorhinal cortex layer 1,superficial plexiform layer of entorhinal cortex +http://purl.obolibrary.org/obo/UBERON_0022337,entorhinal cortex layer 2, +http://purl.obolibrary.org/obo/UBERON_0022340,piriform cortex layer 2a, +http://purl.obolibrary.org/obo/UBERON_0022341,piriform cortex layer 2b, +http://purl.obolibrary.org/obo/UBERON_0022346,dentate gyrus molecular layer middle, +http://purl.obolibrary.org/obo/UBERON_0022347,dentate gyrus molecular layer inner,DG inner stratum moleculare +http://purl.obolibrary.org/obo/UBERON_0022347,dentate gyrus molecular layer inner,inner layer of dentate gyrus molecular layer +http://purl.obolibrary.org/obo/UBERON_0022348,dentate gyrus granule cell layer inner blade, +http://purl.obolibrary.org/obo/UBERON_0022349,dentate gyrus granule cell layer outer blade, +http://purl.obolibrary.org/obo/UBERON_0022350,visceral serous membrane,visceral wall of serous membrane +http://purl.obolibrary.org/obo/UBERON_0022351,parietal serous membrane,parietal wall of serous membrane +http://purl.obolibrary.org/obo/UBERON_0022352,medial orbital frontal cortex,medial orbitofrontal cortex +http://purl.obolibrary.org/obo/UBERON_0022353,posterior cingulate cortex, +http://purl.obolibrary.org/obo/UBERON_0022355,basal layer of endometrium,pars basalis of endometrium +http://purl.obolibrary.org/obo/UBERON_0022355,basal layer of endometrium,stratum basalis of endometrium +http://purl.obolibrary.org/obo/UBERON_0022356,outer layer of endometrium,functional layer of endometrium +http://purl.obolibrary.org/obo/UBERON_0022356,outer layer of endometrium,stratum functionalis of endometrium +http://purl.obolibrary.org/obo/UBERON_0022357,mesentery of ileum,ileal mesentery +http://purl.obolibrary.org/obo/UBERON_0022357,mesentery of ileum,ileum mesentery +http://purl.obolibrary.org/obo/UBERON_0022357,mesentery of ileum,mesoileum +http://purl.obolibrary.org/obo/UBERON_0022358,placenta blood vessel, +http://purl.obolibrary.org/obo/UBERON_0022360,male mammary gland duct, +http://purl.obolibrary.org/obo/UBERON_0022361,lung field,lung field +http://purl.obolibrary.org/obo/UBERON_0022364,occipital fusiform gyrus,occipital fusiform gyrus (OF) +http://purl.obolibrary.org/obo/UBERON_0022364,occipital fusiform gyrus,"occipitotemporal (fusiform) gyrus, occipital part" +http://purl.obolibrary.org/obo/UBERON_0022367,inferior lateral occipital cortex,"lateral occipital cortex, inferior division" +http://purl.obolibrary.org/obo/UBERON_0022367,inferior lateral occipital cortex,"lateral occipital cortex, inferior division (OLI)" +http://purl.obolibrary.org/obo/UBERON_0022368,superior lateral occipital cortex,"lateral occipital cortex, superior division" +http://purl.obolibrary.org/obo/UBERON_0022383,anterior parahippocampal gyrus,"parahippocampal gyrus, anterior division" +http://purl.obolibrary.org/obo/UBERON_0022394,posterior parahippocampal white matter, +http://purl.obolibrary.org/obo/UBERON_0022395,temporal fusiform gyrus,"occipitotemporal (fusiform) gyrus, temporal part" +http://purl.obolibrary.org/obo/UBERON_0022396,anterior temporal fusiform gyrus,"occipitotemporal (fusiform) gyrus, anterior division" +http://purl.obolibrary.org/obo/UBERON_0022397,posterior temporal fusiform gyrus,"occipitotemporal (fusiform) gyrus, posterior division" +http://purl.obolibrary.org/obo/UBERON_0022398,paracingulate gyrus,paracingulate gyrus (PAC) +http://purl.obolibrary.org/obo/UBERON_0022420,temporal part of superior longitudinal fasciculus,"superior longitudinal fasciculus, temporal division" +http://purl.obolibrary.org/obo/UBERON_0022421,pontocerebellar tract,fibrae pontocerebellaris +http://purl.obolibrary.org/obo/UBERON_0022421,pontocerebellar tract,pontine crossing tract +http://purl.obolibrary.org/obo/UBERON_0022421,pontocerebellar tract,pontocerebellar fibers +http://purl.obolibrary.org/obo/UBERON_0022421,pontocerebellar tract,tractus pontocerebellaris +http://purl.obolibrary.org/obo/UBERON_0022423,sagulum nucleus,nucleus saguli +http://purl.obolibrary.org/obo/UBERON_0022424,supragenual nucleus of pontine tegmentum,supragenual nucleus +http://purl.obolibrary.org/obo/UBERON_0022425,anterior corona radiata,anterior portion of corona radiata +http://purl.obolibrary.org/obo/UBERON_0022426,superior corona radiata,superior portion of corona radiata +http://purl.obolibrary.org/obo/UBERON_0022427,posterior corona radiata,posterior portion of corona radiata +http://purl.obolibrary.org/obo/UBERON_0022428,cingulate cortex cingulum,cingulum (cingulate gyrus) +http://purl.obolibrary.org/obo/UBERON_0022428,cingulate cortex cingulum,cingulum bundle in cingulate cortex +http://purl.obolibrary.org/obo/UBERON_0022428,cingulate cortex cingulum,cingulum bundle in cingulate gyrus +http://purl.obolibrary.org/obo/UBERON_0022429,temporal cortex cingulum,cingulum (temporal gyrus) +http://purl.obolibrary.org/obo/UBERON_0022429,temporal cortex cingulum,cingulum bundle in temporal cortex +http://purl.obolibrary.org/obo/UBERON_0022429,temporal cortex cingulum,cingulum bundle in temporal gyrus +http://purl.obolibrary.org/obo/UBERON_0022430,hippocampus cortex cingulum,cingulum (Ammon's horn) +http://purl.obolibrary.org/obo/UBERON_0022430,hippocampus cortex cingulum,cingulum (hippocampus) +http://purl.obolibrary.org/obo/UBERON_0022430,hippocampus cortex cingulum,cingulum bundle in hippocampus +http://purl.obolibrary.org/obo/UBERON_0022434,primary superior olive,superior olive +http://purl.obolibrary.org/obo/UBERON_0022437,dorsal periolivary nucleus, +http://purl.obolibrary.org/obo/UBERON_0022438,rostral anterior cingulate cortex,rostral anterior cingulate cortex +http://purl.obolibrary.org/obo/UBERON_0022453,olfactory entorhinal cortex, +http://purl.obolibrary.org/obo/UBERON_0022469,primary olfactory cortex,primary olfactory areas +http://purl.obolibrary.org/obo/UBERON_0022534,pericalcarine cortex,pericalcarine cortex +http://purl.obolibrary.org/obo/UBERON_0022649,habenulo-interpeduncular tract of diencephalon,habenulo-interpeduncular tract of diencephalon +http://purl.obolibrary.org/obo/UBERON_0022695,orbital gyri complex,orbital gyri complex +http://purl.obolibrary.org/obo/UBERON_0022716,lateral orbital frontal cortex,lateral orbital frontal cortex +http://purl.obolibrary.org/obo/UBERON_0022730,transverse frontopolar gyri complex,transverse frontopolar gyri complex +http://purl.obolibrary.org/obo/UBERON_0022776,composite part spanning multiple base regional parts of brain,composite part spanning multiple base regional parts of brain +http://purl.obolibrary.org/obo/UBERON_0022783,paraventricular nucleus of the hypothalamus magnocellular division - posterior magnocellular part medial zone,paraventricular nucleus of the hypothalamus magnocellular division - posterior magnocellular part medial zone +http://purl.obolibrary.org/obo/UBERON_0022791,paraventricular nucleus of the hypothalamus magnocellular division - posterior magnocellular part lateral zone,paraventricular nucleus of the hypothalamus magnocellular division - posterior magnocellular part lateral zone +http://purl.obolibrary.org/obo/UBERON_0022941,dorsal nerve root of sacral spinal cord,dorsal nerve root of sacral spinal cord +http://purl.obolibrary.org/obo/UBERON_0022943,reticulospinal tract,reticulospinal tract +http://purl.obolibrary.org/obo/UBERON_0023094,posterodorsal nucleus of medial geniculate body,posterodorsal nucleus of medial geniculate body +http://purl.obolibrary.org/obo/UBERON_0023255,sub-lobar region,sub-lobar region +http://purl.obolibrary.org/obo/UBERON_0023378,medullary anterior horn,cornu anterius medullaris +http://purl.obolibrary.org/obo/UBERON_0023378,medullary anterior horn,medullary anterior horn +http://purl.obolibrary.org/obo/UBERON_0023390,medial subnucleus of solitary tract,medial subnucleus of solitary tract +http://purl.obolibrary.org/obo/UBERON_0023390,medial subnucleus of solitary tract,medial subnucleus of the solitary tract +http://purl.obolibrary.org/obo/UBERON_0023390,medial subnucleus of solitary tract,"solitary nucleus, left, meidal subnucleus" +http://purl.obolibrary.org/obo/UBERON_0023390,medial subnucleus of solitary tract,"solitary nucleus, medial subnucleus" +http://purl.obolibrary.org/obo/UBERON_0023415,"lateral amygdaloid nucleus, dorsolateral part","lateral amygdaloid nucleus, dorsolateral part" +http://purl.obolibrary.org/obo/UBERON_0023416,"lateral amygdaloid nucleus, ventrolateral part","lateral amygdaloid nucleus, ventrolateral part" +http://purl.obolibrary.org/obo/UBERON_0023417,"lateral amygdaloid nucleus, ventromedial part","lateral amygdaloid nucleus, ventromedial part" +http://purl.obolibrary.org/obo/UBERON_0023443,superficial feature part of forebrain,superficial feature part of forebrain +http://purl.obolibrary.org/obo/UBERON_0023462,superficial feature part of occipital lobe,superficial feature part of occipital lobe +http://purl.obolibrary.org/obo/UBERON_0023541,conical papilla,conical papilla +http://purl.obolibrary.org/obo/UBERON_0023564,cytoarchitectural part of dentate gyrus,cytoarchitectural part of dentate gyrus +http://purl.obolibrary.org/obo/UBERON_0023623,Ventral nerve root of sacral spinal cord,anterior nerve root of sacral spinal cord +http://purl.obolibrary.org/obo/UBERON_0023623,Ventral nerve root of sacral spinal cord,ventral nerve root of sacral spinal cord +http://purl.obolibrary.org/obo/UBERON_0023623,ventral nerve root of sacral spinal cord,anterior nerve root of sacral spinal cord +http://purl.obolibrary.org/obo/UBERON_0023623,ventral nerve root of sacral spinal cord,ventral nerve root of sacral spinal cord +http://purl.obolibrary.org/obo/UBERON_0023740,habenulo-interpeduncular tract of midbrain,habenulo-interpeduncular tract of midbrain +http://purl.obolibrary.org/obo/UBERON_0023752,intermediate part of hypophysis,intermediate part of hypophysis +http://purl.obolibrary.org/obo/UBERON_0023787,subicular complex,subicular complex +http://purl.obolibrary.org/obo/UBERON_0023836,gross anatomical parts of the cerebellum,gross anatomical parts of the cerebellum +http://purl.obolibrary.org/obo/UBERON_0023852,temporoparietal junction,temporoparietal junction +http://purl.obolibrary.org/obo/UBERON_0023855,commissural nucleus of the solitary tract,commissural nucleus of the solitary tract +http://purl.obolibrary.org/obo/UBERON_0023859,primary somatosensory cortex layer 6,primary somatosensory cortex lamina VI +http://purl.obolibrary.org/obo/UBERON_0023861,planum polare,planum polare +http://purl.obolibrary.org/obo/UBERON_0023862,hippocampal formation of GP94,hippocampal formation of gp94 +http://purl.obolibrary.org/obo/UBERON_0023865,medial ventral tegmental area,medial ventral tegmental area +http://purl.obolibrary.org/obo/UBERON_0023867,islands of Calleja of olfactory tubercle,islands of calleja of olfactory tubercle +http://purl.obolibrary.org/obo/UBERON_0023868,isla magna of Calleja,isla magna of calleja +http://purl.obolibrary.org/obo/UBERON_0023868,isla magna of Calleja,major island of Calleja +http://purl.obolibrary.org/obo/UBERON_0023879,neural system,neural system +http://purl.obolibrary.org/obo/UBERON_0023900,piriform cortex layer 1a,piriform cortex layer 1a +http://purl.obolibrary.org/obo/UBERON_0023901,piriform cortex layer 1b,piriform cortex layer 1b +http://purl.obolibrary.org/obo/UBERON_0023920,basal ganglia of rodent,basal ganglia of rodent +http://purl.obolibrary.org/obo/UBERON_0023927,subbrachial nucleus of mouse of Franklin and Paxinos 2008,subbrachial nucleus of mouse of franklin and paxinos 2008 +http://purl.obolibrary.org/obo/UBERON_0023928,postrhinal cortex of rodent of Burwell et al 1995,postrhinal cortex of rodent of burwell et al 1995 +http://purl.obolibrary.org/obo/UBERON_0023932,Sommer's sector,sommer's sector +http://purl.obolibrary.org/obo/UBERON_0023934,olfactory bulb main glomerular layer,olfactory bulb main glomerular layer +http://purl.obolibrary.org/obo/UBERON_0023936,perirhinal cortex of Burwell et al 1995,perirhinal cortex of burwell et al 1995 +http://purl.obolibrary.org/obo/UBERON_0023943,molecular system,molecular system +http://purl.obolibrary.org/obo/UBERON_0023958,bed nuclei of the stria terminalis oval nucleus,bed nuclei of the stria terminalis oval nucleus +http://purl.obolibrary.org/obo/UBERON_0023983,central cervical spinocerebellar tract,central cervical spinocerebellar tract +http://purl.obolibrary.org/obo/UBERON_0023984,rostral spinocerebellar tract,rostral spinocerebellar tract +http://purl.obolibrary.org/obo/UBERON_0023998,cerebellum hemispheric lobule II,hemispheric lobule ii +http://purl.obolibrary.org/obo/UBERON_0023998,cerebellum hemispheric lobule II,lobule H II of Larsell +http://purl.obolibrary.org/obo/UBERON_0023998,cerebellum hemispheric lobule II,lobule II of cerebellar hemisphere +http://purl.obolibrary.org/obo/UBERON_0023998,cerebellum hemispheric lobule II,lobule II of hemisphere of cerebellum +http://purl.obolibrary.org/obo/UBERON_0023999,cerebellum hemispheric lobule III,hemispheric lobule III +http://purl.obolibrary.org/obo/UBERON_0023999,cerebellum hemispheric lobule III,lobule H III of Larsell +http://purl.obolibrary.org/obo/UBERON_0023999,cerebellum hemispheric lobule III,lobule III of cerbellar hemisphere +http://purl.obolibrary.org/obo/UBERON_0023999,cerebellum hemispheric lobule III,lobule III of hemisphere of cerebellum +http://purl.obolibrary.org/obo/UBERON_0024000,cerebellum hemispheric lobule IV,hemispheric lobule IV +http://purl.obolibrary.org/obo/UBERON_0024000,cerebellum hemispheric lobule IV,lobule H IV of Larsell +http://purl.obolibrary.org/obo/UBERON_0024000,cerebellum hemispheric lobule IV,lobule IV of cerebellar hemisphere +http://purl.obolibrary.org/obo/UBERON_0024001,cerebellum hemispheric lobule V,hemispheric lobule V +http://purl.obolibrary.org/obo/UBERON_0024001,cerebellum hemispheric lobule V,lobule H V of Larsell +http://purl.obolibrary.org/obo/UBERON_0024001,cerebellum hemispheric lobule V,lobule V of cerebellar hemisphere +http://purl.obolibrary.org/obo/UBERON_0024003,cerebellum hemispheric lobule VII,hemispheric lobule VII +http://purl.obolibrary.org/obo/UBERON_0024009,cerebellum hemispheric lobule X,hemispheric lobule X +http://purl.obolibrary.org/obo/UBERON_0024037,vermis of the flocculonodular lobe of the cerebellum,flocculonodular vermis +http://purl.obolibrary.org/obo/UBERON_0024037,vermis of the flocculonodular lobe of the cerebellum,vermis of the flocculonodular lobe of the cerebellum +http://purl.obolibrary.org/obo/UBERON_0024043,rostral portion of the medial accessory olive,rostral portion of the medial accessory olive +http://purl.obolibrary.org/obo/UBERON_0024045,white matter of the cerebellar cortex,white matter of the cerebellar cortex +http://purl.obolibrary.org/obo/UBERON_0024046,superficial feature part of the cerebellum,superficial feature part of the cerebellum +http://purl.obolibrary.org/obo/UBERON_0024078,principal anterior division of supraoptic nucleus,principal anterior division of supraoptic nucleus +http://purl.obolibrary.org/obo/UBERON_0024079,tuberal supraoptic nucleus,tuberal supraoptic nucleus +http://purl.obolibrary.org/obo/UBERON_0024090,chemoarchitectural part of brain,chemoarchitectural part +http://purl.obolibrary.org/obo/UBERON_0024110,basis pontis,basis pontis +http://purl.obolibrary.org/obo/UBERON_0024151,tegmentum,tegmentum +http://purl.obolibrary.org/obo/UBERON_0024183,inferior transverse frontopolar gyrus,inferior transverse frontopolar gyrus +http://purl.obolibrary.org/obo/UBERON_0024193,medial transverse frontopolar gyrus,medial transverse frontopolar gyrus +http://purl.obolibrary.org/obo/UBERON_0024201,superior transverse frontopolar gyrus,superior transverse frontopolar gyrus +http://purl.obolibrary.org/obo/UBERON_0024382,Ventral nerve root of lumbar spinal cord,anterior nerve root of lumbar spinal cord +http://purl.obolibrary.org/obo/UBERON_0024382,Ventral nerve root of lumbar spinal cord,ventral nerve root of lumbar spinal cord +http://purl.obolibrary.org/obo/UBERON_0024382,ventral nerve root of lumbar spinal cord,anterior nerve root of lumbar spinal cord +http://purl.obolibrary.org/obo/UBERON_0024382,ventral nerve root of lumbar spinal cord,ventral nerve root of lumbar spinal cord +http://purl.obolibrary.org/obo/UBERON_0024900,left sub-lobar region,left sub-lobar region +http://purl.obolibrary.org/obo/UBERON_0024901,right sub-lobar region,right sub-lobar region +http://purl.obolibrary.org/obo/UBERON_0024914,circuit part of central nervous system,circuit part of central nervous system +http://purl.obolibrary.org/obo/UBERON_0024940,ganglion part of peripheral nervous system,ganglion part of peripheral nervous system +http://purl.obolibrary.org/obo/UBERON_0025096,superior calcarine sulcus,superior calcarine sulcus +http://purl.obolibrary.org/obo/UBERON_0025102,inferior occipital sulcus,inferior occipital sulcus +http://purl.obolibrary.org/obo/UBERON_0025103,inferior calcarine sulcus,inferior calcarine sulcus +http://purl.obolibrary.org/obo/UBERON_0025104,ectocalcarine sulcus,ectocalcarine sulcus +http://purl.obolibrary.org/obo/UBERON_0025261,thalamic fiber tract,thalamic fiber tracts +http://purl.obolibrary.org/obo/UBERON_0025525,motor system,motor system +http://purl.obolibrary.org/obo/UBERON_0025533,proprioceptive system,proprioceptive system +http://purl.obolibrary.org/obo/UBERON_0025534,sensorimotor system, +http://purl.obolibrary.org/obo/UBERON_0025581,perirhinal cortex of primate of Burwell et al 1995,perirhinal cortex of primate of burwell et al 1995 +http://purl.obolibrary.org/obo/UBERON_0025584,perirhinal cortex of rodent of Burwell et al 1995,perirhinal cortex of rodent of burwell et al 1995 +http://purl.obolibrary.org/obo/UBERON_0025588,histaminergic system,histaminergic system +http://purl.obolibrary.org/obo/UBERON_0025589,catecholamine system,catecholamine system +http://purl.obolibrary.org/obo/UBERON_0025591,gABAergic system,gabaergic system +http://purl.obolibrary.org/obo/UBERON_0025592,glutamatergic system,glutamatergic system +http://purl.obolibrary.org/obo/UBERON_0025593,serotonergic system,serotonergic system +http://purl.obolibrary.org/obo/UBERON_0025595,cholinergic system,cholinergic system +http://purl.obolibrary.org/obo/UBERON_0025677,paravermis parts of the cerebellar cortex,paravermis parts of the cerebellar cortex +http://purl.obolibrary.org/obo/UBERON_0025736,chemoarchitectural part of striatum,chemoarchitectural part of neostriatum +http://purl.obolibrary.org/obo/UBERON_0025763,rostral sulcus,rostral sulcus +http://purl.obolibrary.org/obo/UBERON_0025768,posterior middle temporal sulcus,posterior middle temporal sulcus +http://purl.obolibrary.org/obo/UBERON_0025772,spur of arcuate sulcus,spur of arcuate sulcus +http://purl.obolibrary.org/obo/UBERON_0025829,anterior parieto-occipital sulcus,anterior parieto-occipital sulcus +http://purl.obolibrary.org/obo/UBERON_0025883,superior ramus of arcuate sulcus,superior ramus of arcuate sulcus +http://purl.obolibrary.org/obo/UBERON_0025903,principal sulcus,principal sulcus +http://purl.obolibrary.org/obo/UBERON_0026006,dorsal nerve root of lumbar spinal cord,dorsal nerve root of lumbar spinal cord +http://purl.obolibrary.org/obo/UBERON_0026137,annectant gyrus,annectant gyrus +http://purl.obolibrary.org/obo/UBERON_0026246,sacral spinal cord white matter,sacral spinal cord white matter +http://purl.obolibrary.org/obo/UBERON_0026293,thoracic spinal cord gray commissure,thoracic spinal cord gray commissure +http://purl.obolibrary.org/obo/UBERON_0026382,inferior ramus of arcuate sulcus,inferior ramus of arcuate sulcus +http://purl.obolibrary.org/obo/UBERON_0026384,lateral orbital sulcus,lateral orbital sulcus +http://purl.obolibrary.org/obo/UBERON_0026386,lumbar spinal cord white matter,lumbar spinal cord white matter +http://purl.obolibrary.org/obo/UBERON_0026391,medial orbital sulcus,medial orbital sulcus +http://purl.obolibrary.org/obo/UBERON_0026541,dorsomedial subnucleus of solitary tract,dorsomedial subnucleus of solitary tract +http://purl.obolibrary.org/obo/UBERON_0026546,principal neuronal circuit,principal neuronal circuit +http://purl.obolibrary.org/obo/UBERON_0026547,intrinsic neuronal circuit,intrinsic neuronal circuit +http://purl.obolibrary.org/obo/UBERON_0026584,tympanic canal,canaliculus tympanicus +http://purl.obolibrary.org/obo/UBERON_0026584,tympanic canal,jacobson's canaliculus +http://purl.obolibrary.org/obo/UBERON_0026584,tympanic canal,tympanic canal +http://purl.obolibrary.org/obo/UBERON_0026584,tympanic canal,tympanic canaliculus +http://purl.obolibrary.org/obo/UBERON_0026586,vestibular canal,canaliculus vestibuli +http://purl.obolibrary.org/obo/UBERON_0026586,vestibular canal,vestibular canal +http://purl.obolibrary.org/obo/UBERON_0026586,vestibular canal,vestibular canaliculus +http://purl.obolibrary.org/obo/UBERON_0026663,dorsolateral subnucleus of solitary tract,dorsolateral subnucleus of solitary tract +http://purl.obolibrary.org/obo/UBERON_0026666,parvocellular subnucleus of solitary tract,parvicellular subnucleus of solitary tract +http://purl.obolibrary.org/obo/UBERON_0026719,intermediate frontal sulcus,intermediate frontal sulcus +http://purl.obolibrary.org/obo/UBERON_0026721,medial precentral sulcus,medial precentral sulcus +http://purl.obolibrary.org/obo/UBERON_0026722,transverse parietal sulcus,transverse parietal sulcus +http://purl.obolibrary.org/obo/UBERON_0026723,inferior parietal sulcus,inferior parietal sulcus +http://purl.obolibrary.org/obo/UBERON_0026724,superior parietal sulcus,superior parietal sulcus +http://purl.obolibrary.org/obo/UBERON_0026725,angular sulcus,angular sulcus +http://purl.obolibrary.org/obo/UBERON_0026760,inferior sagittal sulcus,inferior sagittal sulcus +http://purl.obolibrary.org/obo/UBERON_0026761,superior sagittal sulcus,superior sagittal sulcus +http://purl.obolibrary.org/obo/UBERON_0026765,Hadjikhani et al. (1998) visuotopic partition scheme region,Hadjikhani et al. (1998) visuotopic partition scheme region +http://purl.obolibrary.org/obo/UBERON_0026775,Tootell and Hadjikhani (2001) LOC/LOP complex,tootell and Hadjikhani (2001) loc/lop complex +http://purl.obolibrary.org/obo/UBERON_0026776,"Press, Brewer, Dougherty, Wade and Wandell (2001) visuotopic area V7","press, brewer, dougherty, wade and wandell (2001) visuotopic area v7" +http://purl.obolibrary.org/obo/UBERON_0026777,"Ongur, Price, and Ferry (2003) prefrontal cortical partition scheme region","ongur, price, and ferry (2003) prefrontal cortical partition scheme region" +http://purl.obolibrary.org/obo/UBERON_0027061,isthmus of cingulate cortex,isthmus of cingulate cortex +http://purl.obolibrary.org/obo/UBERON_0027109,lateral eminence of hypophysis,lateral eminence of hypophysis +http://purl.obolibrary.org/obo/UBERON_0027113,anterior middle temporal sulcus,anterior middle temporal sulcus +http://purl.obolibrary.org/obo/UBERON_0027221,adrenergic system,adrenergic system +http://purl.obolibrary.org/obo/UBERON_0027225,noradrenergic system,noradrenergic system +http://purl.obolibrary.org/obo/UBERON_0027239,dopaminergic system,dopaminergic system +http://purl.obolibrary.org/obo/UBERON_0027244,striosomal part of body of caudate nucleus,striosomal part of body of caudate nucleus +http://purl.obolibrary.org/obo/UBERON_0027245,matrix part of head of caudate nucleus,matrix compartment of head of caudate nucleus +http://purl.obolibrary.org/obo/UBERON_0027245,matrix part of head of caudate nucleus,matrix part of head of caudate nucleus +http://purl.obolibrary.org/obo/UBERON_0027246,matrix part of tail of caudate nucleus,matrix compartment of tail of caudate nucleus +http://purl.obolibrary.org/obo/UBERON_0027246,matrix part of tail of caudate nucleus,matrix part of tail of caudate nucleus +http://purl.obolibrary.org/obo/UBERON_0027285,paravermis lobule area,paravermis of cerebellum +http://purl.obolibrary.org/obo/UBERON_0027285,paravermis lobule area,regional parts of the paravermal lobules +http://purl.obolibrary.org/obo/UBERON_0027309,paravermis of the posterior lobe of the cerebellum,paravermis of the posterior lobe of the cerebellum +http://purl.obolibrary.org/obo/UBERON_0027309,paravermis of the posterior lobe of the cerebellum,"paravermis, posterior lobe portion" +http://purl.obolibrary.org/obo/UBERON_0027310,paravermis of the anterior lobe of the cerebellum,paravermis of the anterior lobe of the cerebellum +http://purl.obolibrary.org/obo/UBERON_0027310,paravermis of the anterior lobe of the cerebellum,"paravermis, anterior lobe portion" +http://purl.obolibrary.org/obo/UBERON_0027331,"flocculonodular lobe, hemisphere portion",hemispheric part of the flocculonodular lobe of the cerebellum +http://purl.obolibrary.org/obo/UBERON_0027333,arbor vitae,arbor vitae +http://purl.obolibrary.org/obo/UBERON_0027368,matrix compartment,matrix compartment +http://purl.obolibrary.org/obo/UBERON_0027371,striosome,striosomal compartment +http://purl.obolibrary.org/obo/UBERON_0027371,striosome,striosome +http://purl.obolibrary.org/obo/UBERON_0027513,posterior superior frontal sulcus,posterior superior frontal sulcus +http://purl.obolibrary.org/obo/UBERON_0027716,anterior superior frontal sulcus,anterior superior frontal sulcus +http://purl.obolibrary.org/obo/UBERON_0027768,suprachiasmatic nucleus dorsomedial part,suprachiasmatic nucleus dorsomedial part +http://purl.obolibrary.org/obo/UBERON_0027771,suprachiasmatic nucleus ventrolateral part,suprachiasmatic nucleus ventrolateral part +http://purl.obolibrary.org/obo/UBERON_0028194,spiral prominence of cochlear duct,prominentia spiralis ductus cochlearis +http://purl.obolibrary.org/obo/UBERON_0028194,spiral prominence of cochlear duct,spiral prominence of cochlea +http://purl.obolibrary.org/obo/UBERON_0028194,spiral prominence of cochlear duct,spiral prominence of cochlear duct +http://purl.obolibrary.org/obo/UBERON_0028395,calcarine sulcus (dorsal),calcarine sulcus (dorsal) +http://purl.obolibrary.org/obo/UBERON_0028396,calcarine sulcus (ventral),calcarine sulcus (ventral) +http://purl.obolibrary.org/obo/UBERON_0028398,Hadjikhani et al. (1998) visuotopic area V1d,Hadjikhani et al. (1998) visuotopic area v1d +http://purl.obolibrary.org/obo/UBERON_0028399,Hadjikhani et al. (1998) visuotopic area V1v,Hadjikhani et al. (1998) visuotopic area v1v +http://purl.obolibrary.org/obo/UBERON_0028401,Hadjikhani et al. (1998) visuotopic area V2v,Hadjikhani et al. (1998) visuotopic area v2v +http://purl.obolibrary.org/obo/UBERON_0028402,Hadjikhani et al. (1998) visuotopic area V3,Hadjikhani et al. (1998) visuotopic area v3 +http://purl.obolibrary.org/obo/UBERON_0028403,Hadjikhani et al. (1998) visuotopic area V3A,Hadjikhani et al. (1998) visuotopic area v3a +http://purl.obolibrary.org/obo/UBERON_0028404,Hadjikhani et al. (1998) visuotopic area VP,Hadjikhani et al. (1998) visuotopic area vp +http://purl.obolibrary.org/obo/UBERON_0028405,Hadjikhani et al. (1998) visuotopic area V4v,Hadjikhani et al. (1998) visuotopic area v4v +http://purl.obolibrary.org/obo/UBERON_0028406,Hadjikhani et al. (1998) visuotopic area V8,Hadjikhani et al. (1998) visuotopic area v8 +http://purl.obolibrary.org/obo/UBERON_0028412,"Ongur, Price, and Ferry (2003) area 10p","ongur, price, and ferry (2003) area 10p" +http://purl.obolibrary.org/obo/UBERON_0028413,"Ongur, Price, and Ferry (2003) area 10r","ongur, price, and ferry (2003) area 10r" +http://purl.obolibrary.org/obo/UBERON_0028414,"Ongur, Price, and Ferry (2003) area 10o","ongur, price, and ferry (2003) area 10o" +http://purl.obolibrary.org/obo/UBERON_0028415,"Ongur, Price, and Ferry (2003) area 10m","ongur, price, and ferry (2003) area 10m" +http://purl.obolibrary.org/obo/UBERON_0028416,"Ongur, Price, and Ferry (2003) area 11m","ongur, price, and ferry (2003) area 11m" +http://purl.obolibrary.org/obo/UBERON_0028417,"Ongur, Price, and Ferry (2003) area 47s","ongur, price, and ferry (2003) area 47s" +http://purl.obolibrary.org/obo/UBERON_0028418,"Ongur, Price, and Ferry (2003) area 13b","ongur, price, and ferry (2003) area 13b" +http://purl.obolibrary.org/obo/UBERON_0028419,"Ongur, Price, and Ferry (2003) area 13a","ongur, price, and ferry (2003) area 13a" +http://purl.obolibrary.org/obo/UBERON_0028420,"Ongur, Price, and Ferry (2003) area 14r","ongur, price, and ferry (2003) area 14r" +http://purl.obolibrary.org/obo/UBERON_0028421,"Ongur, Price, and Ferry (2003) area 14c","ongur, price, and ferry (2003) area 14c" +http://purl.obolibrary.org/obo/UBERON_0028422,"Ongur, Price, and Ferry (2003) area 24","ongur, price, and ferry (2003) area 24" +http://purl.obolibrary.org/obo/UBERON_0028423,"Ongur, Price, and Ferry (2003) area 25","ongur, price, and ferry (2003) area 25" +http://purl.obolibrary.org/obo/UBERON_0028424,"Ongur, Price, and Ferry (2003) area 32","ongur, price, and ferry (2003) area 32" +http://purl.obolibrary.org/obo/UBERON_0028425,"Ongur, Price, and Ferry (2003) area G","ongur, price, and ferry (2003) area g" +http://purl.obolibrary.org/obo/UBERON_0028426,"Ongur, Price, and Ferry (2003) area PrCO","ongur, price, and ferry (2003) area prco" +http://purl.obolibrary.org/obo/UBERON_0028427,"Ongur, Price, and Ferry (2003) area 11l","ongur, price, and ferry (2003) area 11l" +http://purl.obolibrary.org/obo/UBERON_0028428,"Ongur, Price, and Ferry (2003) area 13m","ongur, price, and ferry (2003) area 13m" +http://purl.obolibrary.org/obo/UBERON_0028429,"Ongur, Price, and Ferry (2003) area 13l","ongur, price, and ferry (2003) area 13l" +http://purl.obolibrary.org/obo/UBERON_0028430,"Ongur, Price, and Ferry (2003) area 47l","ongur, price, and ferry (2003) area 47l" +http://purl.obolibrary.org/obo/UBERON_0028431,"Ongur, Price, and Ferry (2003) area 47m","ongur, price, and ferry (2003) area 47m" +http://purl.obolibrary.org/obo/UBERON_0028432,"Ongur, Price, and Ferry (2003) area 47r","ongur, price, and ferry (2003) area 47r" +http://purl.obolibrary.org/obo/UBERON_0028433,"Ongur, Price, and Ferry (2003) area Iam","ongur, price, and ferry (2003) area iam" +http://purl.obolibrary.org/obo/UBERON_0028434,"Ongur, Price, and Ferry (2003) area Ial","ongur, price, and ferry (2003) area ial" +http://purl.obolibrary.org/obo/UBERON_0028435,"Ongur, Price, and Ferry (2003) area Iai","ongur, price, and ferry (2003) area iai" +http://purl.obolibrary.org/obo/UBERON_0028436,"Ongur, Price, and Ferry (2003) area 9","ongur, price, and ferry (2003) area 9" +http://purl.obolibrary.org/obo/UBERON_0028437,"Ongur, Price, and Ferry (2003) area 10l","ongur, price, and ferry (2003) area 10l" +http://purl.obolibrary.org/obo/UBERON_0028439,"Ongur, Price, and Ferry (2003) area Iapm","ongur, price, and ferry (2003) area iapm" +http://purl.obolibrary.org/obo/UBERON_0028440,"Ongur, Price, and Ferry (2003) area AON","ongur, price, and ferry (2003) area aon" +http://purl.obolibrary.org/obo/UBERON_0028622,banks of superior temporal sulcus,banks of superior temporal sulcus +http://purl.obolibrary.org/obo/UBERON_0028715,caudal anterior cingulate cortex,caudal anterior cingulate cortex +http://purl.obolibrary.org/obo/UBERON_0028918,paravermic lobule II,paravermic lobule ii +http://purl.obolibrary.org/obo/UBERON_0028919,paravermic lobule III,paravermic lobule iii +http://purl.obolibrary.org/obo/UBERON_0028920,paravermic lobule IV,paravermic lobule iv +http://purl.obolibrary.org/obo/UBERON_0028921,paravermic lobule IX,paravermic lobule ix +http://purl.obolibrary.org/obo/UBERON_0028922,paravermic lobule V,paravermic lobule v +http://purl.obolibrary.org/obo/UBERON_0028923,paravermic lobule VI,paravermic lobule vi +http://purl.obolibrary.org/obo/UBERON_0028924,paravermic lobule VII,paravermic lobule vii +http://purl.obolibrary.org/obo/UBERON_0028925,paravermic lobule VIII,paravermic lobule viii +http://purl.obolibrary.org/obo/UBERON_0029001,matrix compartment of caudate nucleus,matrix compartment of caudate nucleus +http://purl.obolibrary.org/obo/UBERON_0029002,matrix compartment of putamen,matrix compartment of putamen +http://purl.obolibrary.org/obo/UBERON_0029004,striosomal part of caudate nucleus,striosomal part of caudate nucleus +http://purl.obolibrary.org/obo/UBERON_0029005,striosomal part of putamen,striosomal part of putamen +http://purl.obolibrary.org/obo/UBERON_0029009,granular cell layer of dorsal cochlear nucleus,granular cell layer of dorsal cochlear nucleus +http://purl.obolibrary.org/obo/UBERON_0029503,sacral spinal cord gray matter,sacral spinal cord gray matter +http://purl.obolibrary.org/obo/UBERON_0029538,sacral spinal cord lateral horn,sacral spinal cord lateral horn +http://purl.obolibrary.org/obo/UBERON_0029626,cervical spinal cord gray commissure,cervical spinal cord gray commissure +http://purl.obolibrary.org/obo/UBERON_0029636,lumbar spinal cord gray matter,lumbar spinal cord gray matter +http://purl.obolibrary.org/obo/UBERON_0030276,lumbar spinal cord ventral horn,lumbar spinal cord ventral horn +http://purl.obolibrary.org/obo/UBERON_0030649,cytoarchitecture of entorhinal cortex,cytoarchitecture of entorhinal cortex +http://purl.obolibrary.org/obo/UBERON_0031111,sacral spinal cord gray commissure,sacral spinal cord gray commissure +http://purl.obolibrary.org/obo/UBERON_0031906,lumbar spinal cord lateral horn,lumbar spinal cord lateral horn +http://purl.obolibrary.org/obo/UBERON_0032748,sacral spinal cord ventral horn,sacral spinal cord ventral horn +http://purl.obolibrary.org/obo/UBERON_0033483,lumbar spinal cord gray commissure,lumbar spinal cord gray commissure +http://purl.obolibrary.org/obo/UBERON_0033939,sacral spinal cord dorsal horn,sacral spinal cord dorsal horn +http://purl.obolibrary.org/obo/UBERON_0034670,palatal taste bud,taste bud of palate +http://purl.obolibrary.org/obo/UBERON_0034671,arcuate sulcus, +http://purl.obolibrary.org/obo/UBERON_0034672,lateral eminence of fourth ventricle,lateral eminence of fourth ventricle +http://purl.obolibrary.org/obo/UBERON_0034673,amygdalohippocampal area, +http://purl.obolibrary.org/obo/UBERON_0034674,sulcus of limbic lobe, +http://purl.obolibrary.org/obo/UBERON_0034676,forceps major of corpus callosum,forceps major +http://purl.obolibrary.org/obo/UBERON_0034676,forceps major of corpus callosum,forceps major of corpus callosum +http://purl.obolibrary.org/obo/UBERON_0034676,forceps major of corpus callosum,forceps occipitalis +http://purl.obolibrary.org/obo/UBERON_0034676,forceps major of corpus callosum,major forceps +http://purl.obolibrary.org/obo/UBERON_0034676,forceps major of corpus callosum,occipital forceps +http://purl.obolibrary.org/obo/UBERON_0034676,forceps major of corpus callosum,posterior forceps +http://purl.obolibrary.org/obo/UBERON_0034676,forceps major of corpus callosum,posterior forceps of corpus callosum +http://purl.obolibrary.org/obo/UBERON_0034678,forceps minor of corpus callosum,anterior forceps +http://purl.obolibrary.org/obo/UBERON_0034678,forceps minor of corpus callosum,anterior forceps of corpus callosum +http://purl.obolibrary.org/obo/UBERON_0034678,forceps minor of corpus callosum,forceps frontalis +http://purl.obolibrary.org/obo/UBERON_0034678,forceps minor of corpus callosum,forceps minor +http://purl.obolibrary.org/obo/UBERON_0034678,forceps minor of corpus callosum,frontal forceps +http://purl.obolibrary.org/obo/UBERON_0034678,forceps minor of corpus callosum,minor forceps +http://purl.obolibrary.org/obo/UBERON_0034680,laryngeal prominence,Adam's apple +http://purl.obolibrary.org/obo/UBERON_0034680,laryngeal prominence,Adams apple +http://purl.obolibrary.org/obo/UBERON_0034681,vocal organ, +http://purl.obolibrary.org/obo/UBERON_0034688,spermatic fascia, +http://purl.obolibrary.org/obo/UBERON_0034690,external spermatic fascia, +http://purl.obolibrary.org/obo/UBERON_0034691,internal spermatic fascia, +http://purl.obolibrary.org/obo/UBERON_0034693,cremasteric artery,cremasteric part of inferior epigastric artery +http://purl.obolibrary.org/obo/UBERON_0034694,"gubernacular bulb, intra-abdominal part", +http://purl.obolibrary.org/obo/UBERON_0034695,"gubernacular bulb, extra-abdominal part", +http://purl.obolibrary.org/obo/UBERON_0034696,fold of peritoneum,peritoneal fold +http://purl.obolibrary.org/obo/UBERON_0034697,inflow tract,cardiac inflow tract +http://purl.obolibrary.org/obo/UBERON_0034697,inflow tract,heart inflow tract +http://purl.obolibrary.org/obo/UBERON_0034698,inflow tract of ventricle,ventricular inflow tract +http://purl.obolibrary.org/obo/UBERON_0034699,inflow tract of atrium,inflow tract of atrium +http://purl.obolibrary.org/obo/UBERON_0034703,inflow tract of right ventricle,inflow part of right ventricle +http://purl.obolibrary.org/obo/UBERON_0034703,inflow tract of right ventricle,main part of right ventricle +http://purl.obolibrary.org/obo/UBERON_0034703,inflow tract of right ventricle,right ventricle proper +http://purl.obolibrary.org/obo/UBERON_0034704,inflow tract of left ventricle,inflow part of left ventricle +http://purl.obolibrary.org/obo/UBERON_0034704,inflow tract of left ventricle,left ventricle proper +http://purl.obolibrary.org/obo/UBERON_0034705,developing neuroepithelium,embryonic neuroepithelium +http://purl.obolibrary.org/obo/UBERON_0034705,developing neuroepithelium,neuroepithelium +http://purl.obolibrary.org/obo/UBERON_0034706,proliferating neuroepithelium, +http://purl.obolibrary.org/obo/UBERON_0034707,differentiating neuroepithelium, +http://purl.obolibrary.org/obo/UBERON_0034708,cerebellum marginal layer,marginal zone of cerebellum +http://purl.obolibrary.org/obo/UBERON_0034709,hindbrain marginal layer,marginal zone of hindbrain +http://purl.obolibrary.org/obo/UBERON_0034710,spinal cord ventricular layer,spinal cord lateral wall ventricular layer +http://purl.obolibrary.org/obo/UBERON_0034711,cortical preplate, +http://purl.obolibrary.org/obo/UBERON_0034712,yellow fibrocartilage, +http://purl.obolibrary.org/obo/UBERON_0034713,cranial neuron projection bundle,cranial nerve fiber bundle +http://purl.obolibrary.org/obo/UBERON_0034713,cranial neuron projection bundle,cranial nerve fiber tract +http://purl.obolibrary.org/obo/UBERON_0034713,cranial neuron projection bundle,cranial nerve or tract +http://purl.obolibrary.org/obo/UBERON_0034713,cranial neuron projection bundle,neuron projection bundle from brain +http://purl.obolibrary.org/obo/UBERON_0034714,epiphyseal tract, +http://purl.obolibrary.org/obo/UBERON_0034715,pineal tract, +http://purl.obolibrary.org/obo/UBERON_0034716,rostral epiphyseal tract, +http://purl.obolibrary.org/obo/UBERON_0034717,integumental taste bud, +http://purl.obolibrary.org/obo/UBERON_0034718,barbel taste bud, +http://purl.obolibrary.org/obo/UBERON_0034719,lip taste bud, +http://purl.obolibrary.org/obo/UBERON_0034720,head taste bud, +http://purl.obolibrary.org/obo/UBERON_0034721,pharyngeal taste bud, +http://purl.obolibrary.org/obo/UBERON_0034722,mouth roof taste bud, +http://purl.obolibrary.org/obo/UBERON_0034723,fin taste bud, +http://purl.obolibrary.org/obo/UBERON_0034724,esophageal taste bud, +http://purl.obolibrary.org/obo/UBERON_0034725,pterygopalatine nerve,ganglionic branch of maxillary nerve to pterygopalatine ganglion +http://purl.obolibrary.org/obo/UBERON_0034725,pterygopalatine nerve,pterygopalatine nerve +http://purl.obolibrary.org/obo/UBERON_0034725,pterygopalatine nerve,radix sensoria ganglii pterygopalatini +http://purl.obolibrary.org/obo/UBERON_0034725,pterygopalatine nerve,sensory root of pterygopalatine ganglion +http://purl.obolibrary.org/obo/UBERON_0034726,trunk taste bud, +http://purl.obolibrary.org/obo/UBERON_0034727,vestibular bulb artery,arteria bulbi vestibuli +http://purl.obolibrary.org/obo/UBERON_0034727,vestibular bulb artery,artery of bulb of vestibule +http://purl.obolibrary.org/obo/UBERON_0034728,autonomic nerve,nervus visceralis +http://purl.obolibrary.org/obo/UBERON_0034728,autonomic nerve,visceral nerve +http://purl.obolibrary.org/obo/UBERON_0034729,sympathetic nerve, +http://purl.obolibrary.org/obo/UBERON_0034730,olfactory tract linking bulb to ipsilateral dorsal telencephalon, +http://purl.obolibrary.org/obo/UBERON_0034734,medial olfactory stria,stria olfactoria medialis +http://purl.obolibrary.org/obo/UBERON_0034735,oviduct albumen gland, +http://purl.obolibrary.org/obo/UBERON_0034736,coracoclavicular ligament,accessory ligament of acromioclavicular joint +http://purl.obolibrary.org/obo/UBERON_0034743,inferior longitudinal fasciculus, +http://purl.obolibrary.org/obo/UBERON_0034745,radiation of thalamus,thalamus radiation +http://purl.obolibrary.org/obo/UBERON_0034746,anterior thalamic radiation,anterior radiation of thalamus +http://purl.obolibrary.org/obo/UBERON_0034746,anterior thalamic radiation,anterior thalamic radiation +http://purl.obolibrary.org/obo/UBERON_0034746,anterior thalamic radiation,radiatio thalami anterior +http://purl.obolibrary.org/obo/UBERON_0034747,posterior thalamic radiation,posterior thalamic radiation +http://purl.obolibrary.org/obo/UBERON_0034747,posterior thalamic radiation,radiatio posterior thalami +http://purl.obolibrary.org/obo/UBERON_0034747,posterior thalamic radiation,radiatio thalamica posterior +http://purl.obolibrary.org/obo/UBERON_0034749,retrolenticular part of internal capsule,pars retrolentiformis +http://purl.obolibrary.org/obo/UBERON_0034749,retrolenticular part of internal capsule,postlenticular portion of internal capsule +http://purl.obolibrary.org/obo/UBERON_0034749,retrolenticular part of internal capsule,retrolenticular limb +http://purl.obolibrary.org/obo/UBERON_0034749,retrolenticular part of internal capsule,retrolentiform limb +http://purl.obolibrary.org/obo/UBERON_0034750,visual association cortex, +http://purl.obolibrary.org/obo/UBERON_0034751,primary auditory cortex,primary auditory cortex (core) +http://purl.obolibrary.org/obo/UBERON_0034752,secondary auditory cortex,belt auditory area +http://purl.obolibrary.org/obo/UBERON_0034752,secondary auditory cortex,peripheral auditory cortex +http://purl.obolibrary.org/obo/UBERON_0034752,secondary auditory cortex,second auditory area +http://purl.obolibrary.org/obo/UBERON_0034752,secondary auditory cortex,"secondary auditory cortex (belt, area 42)" +http://purl.obolibrary.org/obo/UBERON_0034753,inferior occipitofrontal fasciculus,inferior occipitofrontal fasciculus +http://purl.obolibrary.org/obo/UBERON_0034754,occipitofrontal fasciculus, +http://purl.obolibrary.org/obo/UBERON_0034762,areolar sweat gland,areolar aprocine sweat gland +http://purl.obolibrary.org/obo/UBERON_0034762,areolar sweat gland,sweat gland of areola +http://purl.obolibrary.org/obo/UBERON_0034763,hindbrain commissure, +http://purl.obolibrary.org/obo/UBERON_0034764,remnant of cardiac valve,vestigial cardiac valve +http://purl.obolibrary.org/obo/UBERON_0034765,glabella skin, +http://purl.obolibrary.org/obo/UBERON_0034766,glabella region, +http://purl.obolibrary.org/obo/UBERON_0034767,buccal vestibule, +http://purl.obolibrary.org/obo/UBERON_0034768,morphological feature, +http://purl.obolibrary.org/obo/UBERON_0034769,lymphomyeloid tissue, +http://purl.obolibrary.org/obo/UBERON_0034770,bulbourethral gland epithelium,epithelium of bulbourethral gland +http://purl.obolibrary.org/obo/UBERON_0034770,bulbourethral gland epithelium,epithelium of bulbourethral gland of male +http://purl.obolibrary.org/obo/UBERON_0034771,ventral commissural nucleus of spinal cord,commissural nucleus of spinal cord +http://purl.obolibrary.org/obo/UBERON_0034772,margin of eyelid,free margin of eyelid +http://purl.obolibrary.org/obo/UBERON_0034773,uncus of parahippocampal gyrus,uncus hippocampi +http://purl.obolibrary.org/obo/UBERON_0034774,uncal CA1, +http://purl.obolibrary.org/obo/UBERON_0034775,uncal CA2, +http://purl.obolibrary.org/obo/UBERON_0034776,uncal CA3, +http://purl.obolibrary.org/obo/UBERON_0034777,rostral CA1, +http://purl.obolibrary.org/obo/UBERON_0034778,rostral CA2, +http://purl.obolibrary.org/obo/UBERON_0034779,rostral CA3, +http://purl.obolibrary.org/obo/UBERON_0034780,caudal CA1, +http://purl.obolibrary.org/obo/UBERON_0034781,caudal CA2, +http://purl.obolibrary.org/obo/UBERON_0034782,caudal CA3, +http://purl.obolibrary.org/obo/UBERON_0034798,stratum lacunosum-moleculare of caudal CA1, +http://purl.obolibrary.org/obo/UBERON_0034799,stratum radiatum of caudal CA1, +http://purl.obolibrary.org/obo/UBERON_0034800,stratum pyramidale of caudal CA1, +http://purl.obolibrary.org/obo/UBERON_0034801,stratum oriens of caudal CA1, +http://purl.obolibrary.org/obo/UBERON_0034803,stratum lacunosum-moleculare of caudal CA2, +http://purl.obolibrary.org/obo/UBERON_0034804,stratum radiatum of caudal CA2, +http://purl.obolibrary.org/obo/UBERON_0034805,stratum pyramidale of caudal CA2, +http://purl.obolibrary.org/obo/UBERON_0034806,stratum oriens of caudal CA2, +http://purl.obolibrary.org/obo/UBERON_0034808,stratum lacunosum-moleculare of caudal CA3, +http://purl.obolibrary.org/obo/UBERON_0034809,stratum radiatum of caudal CA3, +http://purl.obolibrary.org/obo/UBERON_0034810,stratum lucidum of caudal CA3, +http://purl.obolibrary.org/obo/UBERON_0034811,stratum pyramidale of caudal CA3, +http://purl.obolibrary.org/obo/UBERON_0034812,stratum oriens of caudal CA3, +http://purl.obolibrary.org/obo/UBERON_0034828,stratum lacunosum-moleculare of rostral CA1, +http://purl.obolibrary.org/obo/UBERON_0034829,stratum radiatum of rostral CA1, +http://purl.obolibrary.org/obo/UBERON_0034830,stratum pyramidale of rostral CA1, +http://purl.obolibrary.org/obo/UBERON_0034831,stratum oriens of rostral CA1, +http://purl.obolibrary.org/obo/UBERON_0034833,stratum lacunosum-moleculare of rostral CA2, +http://purl.obolibrary.org/obo/UBERON_0034834,stratum radiatum of rostral CA2, +http://purl.obolibrary.org/obo/UBERON_0034835,stratum pyramidale of rostral CA2, +http://purl.obolibrary.org/obo/UBERON_0034836,stratum oriens of rostral CA2, +http://purl.obolibrary.org/obo/UBERON_0034838,stratum lacunosum-moleculare of rostral CA3, +http://purl.obolibrary.org/obo/UBERON_0034839,stratum radiatum of rostral CA3, +http://purl.obolibrary.org/obo/UBERON_0034840,stratum lucidum of rostral CA3, +http://purl.obolibrary.org/obo/UBERON_0034841,stratum pyramidale of rostral CA3, +http://purl.obolibrary.org/obo/UBERON_0034842,stratum oriens of rostral CA3, +http://purl.obolibrary.org/obo/UBERON_0034858,stratum lacunosum-moleculare of uncal CA1, +http://purl.obolibrary.org/obo/UBERON_0034859,stratum radiatum of uncal CA1, +http://purl.obolibrary.org/obo/UBERON_0034860,stratum pyramidale of uncal CA1, +http://purl.obolibrary.org/obo/UBERON_0034861,stratum oriens of uncal CA1, +http://purl.obolibrary.org/obo/UBERON_0034863,stratum lacunosum-moleculare of uncal CA2, +http://purl.obolibrary.org/obo/UBERON_0034864,stratum radiatum of uncal CA2, +http://purl.obolibrary.org/obo/UBERON_0034865,stratum pyramidale of uncal CA2, +http://purl.obolibrary.org/obo/UBERON_0034866,stratum oriens of uncal CA2, +http://purl.obolibrary.org/obo/UBERON_0034868,stratum lacunosum-moleculare of uncal CA3, +http://purl.obolibrary.org/obo/UBERON_0034869,stratum radiatum of uncal CA3, +http://purl.obolibrary.org/obo/UBERON_0034870,stratum lucidum of uncal CA3, +http://purl.obolibrary.org/obo/UBERON_0034871,stratum pyramidale of uncal CA3, +http://purl.obolibrary.org/obo/UBERON_0034872,stratum oriens of uncal CA3, +http://purl.obolibrary.org/obo/UBERON_0034873,bodily gas,gas in anatomical space +http://purl.obolibrary.org/obo/UBERON_0034873,bodily gas,portion of gas in anatomical space +http://purl.obolibrary.org/obo/UBERON_0034874,air in respiratory system,respiratory air +http://purl.obolibrary.org/obo/UBERON_0034874,air in respiratory system,respiratory system air +http://purl.obolibrary.org/obo/UBERON_0034875,future pituitary gland,pituitary primordium +http://purl.obolibrary.org/obo/UBERON_0034876,future neurohypophysis, +http://purl.obolibrary.org/obo/UBERON_0034877,angioblastic cord,angiogenic cell cluster +http://purl.obolibrary.org/obo/UBERON_0034878,prechordal mesoderm,prechordal mesenchyme +http://purl.obolibrary.org/obo/UBERON_0034884,juxtaglomerular arteriole, +http://purl.obolibrary.org/obo/UBERON_0034885,viscerocranial mucosa, +http://purl.obolibrary.org/obo/UBERON_0034888,primary motor cortex layer 1, +http://purl.obolibrary.org/obo/UBERON_0034889,posterior parietal cortex, +http://purl.obolibrary.org/obo/UBERON_0034891,insular cortex,cortex of insula +http://purl.obolibrary.org/obo/UBERON_0034891,insular cortex,insular neocortex +http://purl.obolibrary.org/obo/UBERON_0034892,granular insular cortex,granular insula +http://purl.obolibrary.org/obo/UBERON_0034893,agranular insular cortex,dysgranular insular cortex +http://purl.obolibrary.org/obo/UBERON_0034894,lateral nucleus of stria terminalis,lateral subdivision of BNST +http://purl.obolibrary.org/obo/UBERON_0034895,medial nucleus of stria terminalis,medial subdivision of BNST +http://purl.obolibrary.org/obo/UBERON_0034896,ansa peduncularis,ansa peduncularis in thalamo +http://purl.obolibrary.org/obo/UBERON_0034896,ansa peduncularis,ansa peduncularis in thalamus +http://purl.obolibrary.org/obo/UBERON_0034896,ansa peduncularis,peduncular loop +http://purl.obolibrary.org/obo/UBERON_0034898,alveolar ridge of premaxilla,pars dentalis of premaxilla +http://purl.obolibrary.org/obo/UBERON_0034900,palatine process of premaxilla,pars palatina of premaxilla +http://purl.obolibrary.org/obo/UBERON_0034901,cervical sympathetic nerve trunk,cervical part of sympathetic trunk +http://purl.obolibrary.org/obo/UBERON_0034901,cervical sympathetic nerve trunk,cervical sympathetic chain +http://purl.obolibrary.org/obo/UBERON_0034901,cervical sympathetic nerve trunk,cervical sympathetic trunk +http://purl.obolibrary.org/obo/UBERON_0034902,sacral sympathetic nerve trunk,sacral part of sympathetic trunk +http://purl.obolibrary.org/obo/UBERON_0034902,sacral sympathetic nerve trunk,sacral sympathetic chain +http://purl.obolibrary.org/obo/UBERON_0034902,sacral sympathetic nerve trunk,sacral sympathetic trunk +http://purl.obolibrary.org/obo/UBERON_0034903,left atrium endocardium,endocardium of left atrium +http://purl.obolibrary.org/obo/UBERON_0034903,left atrium endocardium,left atrial endocardium +http://purl.obolibrary.org/obo/UBERON_0034905,gland lumen,lumen of gland +http://purl.obolibrary.org/obo/UBERON_0034907,pineal parenchyma, +http://purl.obolibrary.org/obo/UBERON_0034908,scapular muscle, +http://purl.obolibrary.org/obo/UBERON_0034909,intermaxillary suture,intermaxillary suture of skull +http://purl.obolibrary.org/obo/UBERON_0034910,medial pretectal nucleus, +http://purl.obolibrary.org/obo/UBERON_0034918,anterior pretectal nucleus,anterior (ventral /principal) pretectal nucleus +http://purl.obolibrary.org/obo/UBERON_0034921,multi organ part structure,anatomical cluster +http://purl.obolibrary.org/obo/UBERON_0034922,cell cluster, +http://purl.obolibrary.org/obo/UBERON_0034923,disconnected anatomical group, +http://purl.obolibrary.org/obo/UBERON_0034924,aligned anatomical group, +http://purl.obolibrary.org/obo/UBERON_0034925,anatomical collection, +http://purl.obolibrary.org/obo/UBERON_0034926,anatomical row, +http://purl.obolibrary.org/obo/UBERON_0034927,arcuate artery of foot, +http://purl.obolibrary.org/obo/UBERON_0034928,dorsal surface of penis,dorsum of penis +http://purl.obolibrary.org/obo/UBERON_0034928,dorsal surface of penis,dorsum penis +http://purl.obolibrary.org/obo/UBERON_0034929,external soft tissue zone, +http://purl.obolibrary.org/obo/UBERON_0034930,auricular feather, +http://purl.obolibrary.org/obo/UBERON_0034931,perforant path, +http://purl.obolibrary.org/obo/UBERON_0034932,epithelium of biliary system,biliary system epithelium +http://purl.obolibrary.org/obo/UBERON_0034933,layer of smooth muscle tissue, +http://purl.obolibrary.org/obo/UBERON_0034934,Weber's gland,gland of Weber +http://purl.obolibrary.org/obo/UBERON_0034934,Weber's gland,posterior superficial lingual gland +http://purl.obolibrary.org/obo/UBERON_0034935,pars plicata of ciliary body,ciliary crown +http://purl.obolibrary.org/obo/UBERON_0034935,pars plicata of ciliary body,corona ciliaris +http://purl.obolibrary.org/obo/UBERON_0034936,pars plana of ciliary body,ciliary ring +http://purl.obolibrary.org/obo/UBERON_0034936,pars plana of ciliary body,orbiculus ciliaris +http://purl.obolibrary.org/obo/UBERON_0034937,pharyngeal bar, +http://purl.obolibrary.org/obo/UBERON_0034938,mucocartilage tissue,mucocartilage +http://purl.obolibrary.org/obo/UBERON_0034938,mucocartilage tissue,mucocartilaginous tissue +http://purl.obolibrary.org/obo/UBERON_0034939,future piston,future lingual cartilage +http://purl.obolibrary.org/obo/UBERON_0034940,venous sinus cavity,blood sinus cavity +http://purl.obolibrary.org/obo/UBERON_0034940,venous sinus cavity,blood sinus lumen +http://purl.obolibrary.org/obo/UBERON_0034941,blood sinus of vibrissa,sinus of vibrissa +http://purl.obolibrary.org/obo/UBERON_0034941,blood sinus of vibrissa,vibrissa sinus +http://purl.obolibrary.org/obo/UBERON_0034942,vibrissal follicle-sinus complex, +http://purl.obolibrary.org/obo/UBERON_0034943,saccus vasculosus, +http://purl.obolibrary.org/obo/UBERON_0034944,zone of organ,organ region with floating fiat boundary +http://purl.obolibrary.org/obo/UBERON_0034944,zone of organ,organ sector +http://purl.obolibrary.org/obo/UBERON_0034944,zone of organ,organ zonal region +http://purl.obolibrary.org/obo/UBERON_0034944,zone of organ,organ zone +http://purl.obolibrary.org/obo/UBERON_0034945,excreted gas, +http://purl.obolibrary.org/obo/UBERON_0034946,gas excreted from digestive tract, +http://purl.obolibrary.org/obo/UBERON_0034947,gas in respiratory system,respiratory gas +http://purl.obolibrary.org/obo/UBERON_0034947,gas in respiratory system,respiratory system gas +http://purl.obolibrary.org/obo/UBERON_0034948,carbon dioxide in respiratory system,respiratory CO2 +http://purl.obolibrary.org/obo/UBERON_0034948,carbon dioxide in respiratory system,respiratory system CO2 +http://purl.obolibrary.org/obo/UBERON_0034949,lymphatic valve,lymphatic vessel valve +http://purl.obolibrary.org/obo/UBERON_0034950,lymph sac of lymph heart, +http://purl.obolibrary.org/obo/UBERON_0034951,subcutaneous lymph sac, +http://purl.obolibrary.org/obo/UBERON_0034952,intrapleuroperitoneal lymph sac, +http://purl.obolibrary.org/obo/UBERON_0034953,embryonic lymph sac, +http://purl.obolibrary.org/obo/UBERON_0034958,retroperitoneal embryonic lymph sac, +http://purl.obolibrary.org/obo/UBERON_0034959,right lymph heart, +http://purl.obolibrary.org/obo/UBERON_0034960,left lymph heart, +http://purl.obolibrary.org/obo/UBERON_0034961,embryonic lymph heart, +http://purl.obolibrary.org/obo/UBERON_0034962,copulatory lymph heart, +http://purl.obolibrary.org/obo/UBERON_0034963,lateral fornix of vagina,lateral part of fornix of vagina +http://purl.obolibrary.org/obo/UBERON_0034963,lateral fornix of vagina,pars lateralis fornicis vaginae +http://purl.obolibrary.org/obo/UBERON_0034964,superficial epigastric artery, +http://purl.obolibrary.org/obo/UBERON_0034965,middle thyroid vein, +http://purl.obolibrary.org/obo/UBERON_0034968,sagittal sulcus, +http://purl.obolibrary.org/obo/UBERON_0034969,epithelial layer of duct,duct epithelium +http://purl.obolibrary.org/obo/UBERON_0034969,epithelial layer of duct,ductal epithelium +http://purl.obolibrary.org/obo/UBERON_0034971,aortic body, +http://purl.obolibrary.org/obo/UBERON_0034972,jugular body,glomus jugulare +http://purl.obolibrary.org/obo/UBERON_0034972,jugular body,glomus tympanicum +http://purl.obolibrary.org/obo/UBERON_0034972,jugular body,jugulotympanic body +http://purl.obolibrary.org/obo/UBERON_0034972,jugular body,tympanic body +http://purl.obolibrary.org/obo/UBERON_0034978,paraganglion (generic),paraganglia +http://purl.obolibrary.org/obo/UBERON_0034979,nonchromaffin paraganglion, +http://purl.obolibrary.org/obo/UBERON_0034980,jugular bulb,bulb of jugular vein +http://purl.obolibrary.org/obo/UBERON_0034981,superior bulb of internal jugular vein,bulbus superior venae jugularis +http://purl.obolibrary.org/obo/UBERON_0034981,superior bulb of internal jugular vein,superior bulb of jugular vein +http://purl.obolibrary.org/obo/UBERON_0034982,inferior bulb of internal jugular vein,bulbus inferior venae jugularis +http://purl.obolibrary.org/obo/UBERON_0034982,inferior bulb of internal jugular vein,inferior bulb of jugular vein +http://purl.obolibrary.org/obo/UBERON_0034983,ischial tuberosity,tuber ischiale +http://purl.obolibrary.org/obo/UBERON_0034984,nerve to quadratus femoris, +http://purl.obolibrary.org/obo/UBERON_0034986,sacral nerve plexus,plexus sacralis +http://purl.obolibrary.org/obo/UBERON_0034986,sacral nerve plexus,sacral plexus +http://purl.obolibrary.org/obo/UBERON_0034987,lumbar nerve plexus,lumbar plexus +http://purl.obolibrary.org/obo/UBERON_0034987,lumbar nerve plexus,plexus lumbalis +http://purl.obolibrary.org/obo/UBERON_0034988,tendon of obturator internus,obturator internus tendon +http://purl.obolibrary.org/obo/UBERON_0034989,amygdalopiriform transition area,postpiriform transition area +http://purl.obolibrary.org/obo/UBERON_0034991,anterior cortical amygdaloid nucleus, +http://purl.obolibrary.org/obo/UBERON_0034993,basal ventral medial nucleus of thalamus,basal ventral medial thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_0034994,hindbrain cortical intermediate zone,hindbrain mantle layer +http://purl.obolibrary.org/obo/UBERON_0034995,jaw mesenchyme, +http://purl.obolibrary.org/obo/UBERON_0034996,outer renal medulla loop of Henle,"loop of Henle, outer medullary portion" +http://purl.obolibrary.org/obo/UBERON_0034997,renal medulla loop of Henle,loop of Henle of renal medulla +http://purl.obolibrary.org/obo/UBERON_0034997,renal medulla loop of Henle,"loop of Henle, medullary portion" +http://purl.obolibrary.org/obo/UBERON_0034999,posterolateral cortical amygdaloid nucleus,posterolateral cortical amygdaloid area +http://purl.obolibrary.org/obo/UBERON_0035001,posteromedial cortical amygdaloid nucleus, +http://purl.obolibrary.org/obo/UBERON_0035004,preputial swelling, +http://purl.obolibrary.org/obo/UBERON_0035005,preputial swelling of male, +http://purl.obolibrary.org/obo/UBERON_0035006,preputial swelling of female, +http://purl.obolibrary.org/obo/UBERON_0035007,nasal concha cartilage,turbinal cartilage +http://purl.obolibrary.org/obo/UBERON_0035007,nasal concha cartilage,turbinate bone primordium +http://purl.obolibrary.org/obo/UBERON_0035007,nasal concha cartilage,turbinate cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0035007,nasal concha cartilage,unossified nasal turbinal +http://purl.obolibrary.org/obo/UBERON_0035007,nasal concha cartilage,unossified nasal turbinate +http://purl.obolibrary.org/obo/UBERON_0035007,nasal concha cartilage,unossified turbinate +http://purl.obolibrary.org/obo/UBERON_0035011,central gray substance,central gray +http://purl.obolibrary.org/obo/UBERON_0035011,central gray substance,central gray substance +http://purl.obolibrary.org/obo/UBERON_0035011,central gray substance,central grey +http://purl.obolibrary.org/obo/UBERON_0035011,central gray substance,central grey substance +http://purl.obolibrary.org/obo/UBERON_0035011,central gray substance,griseum centrale +http://purl.obolibrary.org/obo/UBERON_0035011,central gray substance,griseum periventriculare +http://purl.obolibrary.org/obo/UBERON_0035011,central gray substance,stratum griseum centrale +http://purl.obolibrary.org/obo/UBERON_0035011,central gray substance,substantia grisea centralis +http://purl.obolibrary.org/obo/UBERON_0035013,temporal cortex association area, +http://purl.obolibrary.org/obo/UBERON_0035014,functional part of brain, +http://purl.obolibrary.org/obo/UBERON_0035015,association cortex, +http://purl.obolibrary.org/obo/UBERON_0035016,tactile mechanoreceptor,contact receptor +http://purl.obolibrary.org/obo/UBERON_0035017,nociceptor, +http://purl.obolibrary.org/obo/UBERON_0035018,thermoreceptor, +http://purl.obolibrary.org/obo/UBERON_0035019,"inferior olive, beta nucleus",inferior olive beta subnucleus +http://purl.obolibrary.org/obo/UBERON_0035020,left vagus X nerve trunk,left vagus neural trunk +http://purl.obolibrary.org/obo/UBERON_0035020,left vagus X nerve trunk,trunk of left vagus +http://purl.obolibrary.org/obo/UBERON_0035021,right vagus X nerve trunk,right vagus neural trunk +http://purl.obolibrary.org/obo/UBERON_0035021,right vagus X nerve trunk,trunk of right vagus +http://purl.obolibrary.org/obo/UBERON_0035022,trunk of segmental spinal nerve,segmental spinal nerve trunk +http://purl.obolibrary.org/obo/UBERON_0035024,lateral spinal nucleus, +http://purl.obolibrary.org/obo/UBERON_0035026,amygdalohippocampal transition area, +http://purl.obolibrary.org/obo/UBERON_0035027,"amygdalohippocampal area, magnocellular division", +http://purl.obolibrary.org/obo/UBERON_0035028,"amygdalohippocampal area, parvocellular division", +http://purl.obolibrary.org/obo/UBERON_0035032,abdominal oblique muscle,oblique abdominal muscle +http://purl.obolibrary.org/obo/UBERON_0035034,eyelid epithelium, +http://purl.obolibrary.org/obo/UBERON_0035036,naris epithelium, +http://purl.obolibrary.org/obo/UBERON_0035037,jaw epithelium, +http://purl.obolibrary.org/obo/UBERON_0035038,carpal tunnel,carpal canal +http://purl.obolibrary.org/obo/UBERON_0035039,rectal artery,hemorrhoidal artery +http://purl.obolibrary.org/obo/UBERON_0035040,superior rectal artery,superior hemorrhoidal artery +http://purl.obolibrary.org/obo/UBERON_0035041,deep temporal artery, +http://purl.obolibrary.org/obo/UBERON_0035042,middle temporal artery, +http://purl.obolibrary.org/obo/UBERON_0035043,temporal branch of lateral pretrosal artery, +http://purl.obolibrary.org/obo/UBERON_0035044,olfactory cortex layer 3, +http://purl.obolibrary.org/obo/UBERON_0035045,parotid gland intralobular duct, +http://purl.obolibrary.org/obo/UBERON_0035046,parotid gland intercalated duct, +http://purl.obolibrary.org/obo/UBERON_0035047,parotid gland striated duct, +http://purl.obolibrary.org/obo/UBERON_0035048,parotid gland excretory duct, +http://purl.obolibrary.org/obo/UBERON_0035049,excretory duct of salivary gland, +http://purl.obolibrary.org/obo/UBERON_0035050,excretory duct, +http://purl.obolibrary.org/obo/UBERON_0035053,interlobular duct of salivary gland, +http://purl.obolibrary.org/obo/UBERON_0035073,duct of eccrine sweat gland,ductal part of eccrine sweat gland +http://purl.obolibrary.org/obo/UBERON_0035074,duct of apocrine sweat gland,ductal part of apocrine sweat gland +http://purl.obolibrary.org/obo/UBERON_0035075,thymus subunit, +http://purl.obolibrary.org/obo/UBERON_0035076,parotid gland myoepithelium, +http://purl.obolibrary.org/obo/UBERON_0035077,lateral nasal gland,Steno gland +http://purl.obolibrary.org/obo/UBERON_0035077,lateral nasal gland,Steno's gland +http://purl.obolibrary.org/obo/UBERON_0035077,lateral nasal gland,glandula nasalis lateralis +http://purl.obolibrary.org/obo/UBERON_0035078,parotid gland interlobular duct, +http://purl.obolibrary.org/obo/UBERON_0035079,deep intraparotid lymph node,deep intraparotid node +http://purl.obolibrary.org/obo/UBERON_0035079,deep intraparotid lymph node,intraglandular deep parotid lymph nodes +http://purl.obolibrary.org/obo/UBERON_0035080,intraparotid lymph node,intraparotid node +http://purl.obolibrary.org/obo/UBERON_0035081,caudofemoralis longus,M. caudofemoralis longus +http://purl.obolibrary.org/obo/UBERON_0035081,caudofemoralis longus,caudofemoralis longus muscle +http://purl.obolibrary.org/obo/UBERON_0035082,caudofemoralis brevis,M. caudofemoralis brevis +http://purl.obolibrary.org/obo/UBERON_0035082,caudofemoralis brevis,caudofemoralis brevis muscle +http://purl.obolibrary.org/obo/UBERON_0035083,transverse process-bearing vertebra, +http://purl.obolibrary.org/obo/UBERON_0035084,non-transverse process-bearing vertebra, +http://purl.obolibrary.org/obo/UBERON_0035085,anatomical plane, +http://purl.obolibrary.org/obo/UBERON_0035086,plane of autotomy, +http://purl.obolibrary.org/obo/UBERON_0035087,fracture plane,plane of autotomy bisecting bone +http://purl.obolibrary.org/obo/UBERON_0035088,vertebral fracture plane,plane of autotomy bisecting vertebral bone +http://purl.obolibrary.org/obo/UBERON_0035089,plane of autotomy bisecting joint, +http://purl.obolibrary.org/obo/UBERON_0035090,plane of autotomy bisecting intervertebral joint, +http://purl.obolibrary.org/obo/UBERON_0035091,extrinsic post-anal tail muscle, +http://purl.obolibrary.org/obo/UBERON_0035092,spinalis caudalis muscle,M. spinalis caudalis +http://purl.obolibrary.org/obo/UBERON_0035092,spinalis caudalis muscle,spinalis caudalis +http://purl.obolibrary.org/obo/UBERON_0035093,extensor caudae muscle,caudal extensor muscle +http://purl.obolibrary.org/obo/UBERON_0035094,extensor caudae medialis muscle,M. externsor caudae medialis +http://purl.obolibrary.org/obo/UBERON_0035094,extensor caudae medialis muscle,extensor caudae medialis +http://purl.obolibrary.org/obo/UBERON_0035095,extensor caudae lateralis muscle,M. externsor caudae lateralis +http://purl.obolibrary.org/obo/UBERON_0035095,extensor caudae lateralis muscle,extensor caudae lateralis +http://purl.obolibrary.org/obo/UBERON_0035096,fascia of tail, +http://purl.obolibrary.org/obo/UBERON_0035097,iliocaudalis muscle,M. iliocaudalis +http://purl.obolibrary.org/obo/UBERON_0035097,iliocaudalis muscle,iliocaudalis +http://purl.obolibrary.org/obo/UBERON_0035098,hemipenis transversus muscle, +http://purl.obolibrary.org/obo/UBERON_0035099,transversus perinei muscle, +http://purl.obolibrary.org/obo/UBERON_0035100,retractor penis magnus muscle, +http://purl.obolibrary.org/obo/UBERON_0035102,transverse process of caudal vertebra, +http://purl.obolibrary.org/obo/UBERON_0035103,perineal body smooth muscle muscle tissue,perineal body muscle +http://purl.obolibrary.org/obo/UBERON_0035104,raphe of penis,penile raphe +http://purl.obolibrary.org/obo/UBERON_0035104,raphe of penis,raphe penis +http://purl.obolibrary.org/obo/UBERON_0035105,sac of scrotum,scrotal comartment +http://purl.obolibrary.org/obo/UBERON_0035105,sac of scrotum,scrotal sac +http://purl.obolibrary.org/obo/UBERON_0035105,sac of scrotum,testis comartment +http://purl.obolibrary.org/obo/UBERON_0035106,raphe of perineum,perineal raphe +http://purl.obolibrary.org/obo/UBERON_0035106,raphe of perineum,raphe perinealis +http://purl.obolibrary.org/obo/UBERON_0035106,raphe of perineum,raphe perinei +http://purl.obolibrary.org/obo/UBERON_0035108,temporalis fascia,fascia of temporalis +http://purl.obolibrary.org/obo/UBERON_0035108,temporalis fascia,temporal fascia +http://purl.obolibrary.org/obo/UBERON_0035108,temporalis fascia,temporalis fascia +http://purl.obolibrary.org/obo/UBERON_0035109,plantar nerve, +http://purl.obolibrary.org/obo/UBERON_0035110,lateral plantar nerve,external plantar nerve +http://purl.obolibrary.org/obo/UBERON_0035110,lateral plantar nerve,nervus plantaris lateralis +http://purl.obolibrary.org/obo/UBERON_0035111,medial plantar nerve,internal plantar nerve +http://purl.obolibrary.org/obo/UBERON_0035111,medial plantar nerve,nervus plantaris medialis +http://purl.obolibrary.org/obo/UBERON_0035112,intrinsic muscle, +http://purl.obolibrary.org/obo/UBERON_0035113,central part of mediodorsal nucleus of the thalamus,"mediodorsal nucleus of the thalamus, central part" +http://purl.obolibrary.org/obo/UBERON_0035114,lateral part of mediodorsal nucleus of the thalamus,"mediodorsal nucleus of the thalamus, lateral part" +http://purl.obolibrary.org/obo/UBERON_0035115,diastema between central incisors,"interdental space, central incisors" +http://purl.obolibrary.org/obo/UBERON_0035115,diastema between central incisors,midline diastema +http://purl.obolibrary.org/obo/UBERON_0035116,diastema between upper central incisors,interdental space between maxillary central incisors +http://purl.obolibrary.org/obo/UBERON_0035116,diastema between upper central incisors,"interdental space, upper central incisors" +http://purl.obolibrary.org/obo/UBERON_0035116,diastema between upper central incisors,midline maxillary diastema +http://purl.obolibrary.org/obo/UBERON_0035117,diastema between lower central incisors,interdental space between mandibular central incisors +http://purl.obolibrary.org/obo/UBERON_0035117,diastema between lower central incisors,"interdental space, lower central incisors" +http://purl.obolibrary.org/obo/UBERON_0035117,diastema between lower central incisors,midline mandibular diastema +http://purl.obolibrary.org/obo/UBERON_0035118,material entity in digestive tract,digestive tract contents +http://purl.obolibrary.org/obo/UBERON_0035119,diastema between incisors,incisor diastema +http://purl.obolibrary.org/obo/UBERON_0035119,diastema between incisors,"interdental space, incisors" +http://purl.obolibrary.org/obo/UBERON_0035120,fauces, +http://purl.obolibrary.org/obo/UBERON_0035122,interincisive suture, +http://purl.obolibrary.org/obo/UBERON_0035123,palatomaxillary suture,palatomaxillary suture of skull +http://purl.obolibrary.org/obo/UBERON_0035124,palatoethmoidal suture,palato-ethmoidal suture +http://purl.obolibrary.org/obo/UBERON_0035124,palatoethmoidal suture,palatoethmoidal suture of skull +http://purl.obolibrary.org/obo/UBERON_0035124,palatoethmoidal suture,sutura palatoethmoidalis +http://purl.obolibrary.org/obo/UBERON_0035126,transverse palatine suture,transverse palatine suture of skull +http://purl.obolibrary.org/obo/UBERON_0035127,suture of hard palate,palatine suture +http://purl.obolibrary.org/obo/UBERON_0035128,manus cartilage element,hand cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0035129,pes cartilage element,foot cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0035130,auditory ossicle endochondral element,auditory skeletal element +http://purl.obolibrary.org/obo/UBERON_0035130,auditory ossicle endochondral element,middle ear ossicle element +http://purl.obolibrary.org/obo/UBERON_0035131,auditory ossicle cartilage element,ossicle cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0035132,auditory ossicle pre-cartilage element,ossicle pre-cartilage condensation +http://purl.obolibrary.org/obo/UBERON_0035133,longitudinal arch of pes,longitudinal arch of foot +http://purl.obolibrary.org/obo/UBERON_0035139,anterior nasal spine of maxilla,spina nasalis anterior corporis maxillae +http://purl.obolibrary.org/obo/UBERON_0035142,preputial space of male, +http://purl.obolibrary.org/obo/UBERON_0035143,preputial space of female, +http://purl.obolibrary.org/obo/UBERON_0035144,preputial space,preputial cavity +http://purl.obolibrary.org/obo/UBERON_0035145,nucleus sacci vasculosi, +http://purl.obolibrary.org/obo/UBERON_0035146,tractus sacci vasculosi, +http://purl.obolibrary.org/obo/UBERON_0035147,axochord, +http://purl.obolibrary.org/obo/UBERON_0035148,presumptive axochord,axochord pre-muscle mass +http://purl.obolibrary.org/obo/UBERON_0035149,gingival epithelial attachment, +http://purl.obolibrary.org/obo/UBERON_0035150,superior cerebral vein, +http://purl.obolibrary.org/obo/UBERON_0035151,dorsal cerebral vein, +http://purl.obolibrary.org/obo/UBERON_0035152,internal cerebral vein, +http://purl.obolibrary.org/obo/UBERON_0035153,dorsolateral prefrontal cortex layer 1,layer I of dorsolateral prefrontal cortex +http://purl.obolibrary.org/obo/UBERON_0035154,dorsolateral prefrontal cortex layer 2,layer II of dorsolateral prefrontal cortex +http://purl.obolibrary.org/obo/UBERON_0035155,dorsolateral prefrontal cortex layer 3,layer III of dorsolateral prefrontal cortex +http://purl.obolibrary.org/obo/UBERON_0035156,dorsolateral prefrontal cortex layer 4,granular layer IV of dorsolateral prefrontal cortex +http://purl.obolibrary.org/obo/UBERON_0035157,dorsolateral prefrontal cortex layer 5,layer V of dorsolateral prefrontal cortex +http://purl.obolibrary.org/obo/UBERON_0035158,dorsolateral prefrontal cortex layer 6,layer VI of dorsolateral prefrontal cortex +http://purl.obolibrary.org/obo/UBERON_0035159,entire surface of organism,surface of body +http://purl.obolibrary.org/obo/UBERON_0035162,infraclavicular lymph node,deltopectoral lymph node +http://purl.obolibrary.org/obo/UBERON_0035162,infraclavicular lymph node,deltopectoral node +http://purl.obolibrary.org/obo/UBERON_0035162,infraclavicular lymph node,infraclavicular node +http://purl.obolibrary.org/obo/UBERON_0035162,infraclavicular lymph node,nodus lymphaticus infraclavicularis axillae +http://purl.obolibrary.org/obo/UBERON_0035165,posterior surface of prostate,facies posterior (prostatae) +http://purl.obolibrary.org/obo/UBERON_0035165,posterior surface of prostate,facies posterior prostatae +http://purl.obolibrary.org/obo/UBERON_0035165,posterior surface of prostate,posterior surface of prostate gland +http://purl.obolibrary.org/obo/UBERON_0035168,infraclavicular region,infraclavicular part of chest +http://purl.obolibrary.org/obo/UBERON_0035168,infraclavicular region,infraclavicular region +http://purl.obolibrary.org/obo/UBERON_0035171,obturator lymph node,obturator node +http://purl.obolibrary.org/obo/UBERON_0035174,right ear, +http://purl.obolibrary.org/obo/UBERON_0035177,abdominal part of esophagus,T11 part of esophagus +http://purl.obolibrary.org/obo/UBERON_0035177,abdominal part of esophagus,abdominal esophagus +http://purl.obolibrary.org/obo/UBERON_0035177,abdominal part of esophagus,abdominal part of oesophagus +http://purl.obolibrary.org/obo/UBERON_0035177,abdominal part of esophagus,pars abdominalis (oesophagus) +http://purl.obolibrary.org/obo/UBERON_0035177,abdominal part of esophagus,pars abdominalis oesophageae +http://purl.obolibrary.org/obo/UBERON_0035180,sigmoid artery,inferior left colic artery +http://purl.obolibrary.org/obo/UBERON_0035183,calcarine artery,calcarine branch of medial occipital artery +http://purl.obolibrary.org/obo/UBERON_0035183,calcarine artery,ramus calcarinus (arteria occipitalis medialis) +http://purl.obolibrary.org/obo/UBERON_0035186,valve of foramen ovale,foramen ovale valve +http://purl.obolibrary.org/obo/UBERON_0035195,plantar metatarsal artery,plantar metatarsal branch of plantar arch +http://purl.obolibrary.org/obo/UBERON_0035198,superficial lymphatic vessel,superficial lymph vessel +http://purl.obolibrary.org/obo/UBERON_0035201,gastrocolic ligament, +http://purl.obolibrary.org/obo/UBERON_0035204,occipital lymph node,occipital node +http://purl.obolibrary.org/obo/UBERON_0035207,deep fibular nerve,deep peroneal nerve +http://purl.obolibrary.org/obo/UBERON_0035210,paracolic gutter,paracolic sulcus +http://purl.obolibrary.org/obo/UBERON_0035213,basal zone of heart,anatomical base of heart +http://purl.obolibrary.org/obo/UBERON_0035213,basal zone of heart,base of heart +http://purl.obolibrary.org/obo/UBERON_0035213,basal zone of heart,basis cordis +http://purl.obolibrary.org/obo/UBERON_0035216,thoracic part of esophagus,pars thoracica (oesophagus) +http://purl.obolibrary.org/obo/UBERON_0035216,thoracic part of esophagus,pars thoracica oesophageae +http://purl.obolibrary.org/obo/UBERON_0035216,thoracic part of esophagus,thoracic esophagus +http://purl.obolibrary.org/obo/UBERON_0035216,thoracic part of esophagus,thoracic part of oesophagus +http://purl.obolibrary.org/obo/UBERON_0035219,parasternal lymph node,internal mammary lymph node +http://purl.obolibrary.org/obo/UBERON_0035219,parasternal lymph node,nodus parasternale +http://purl.obolibrary.org/obo/UBERON_0035219,parasternal lymph node,parasternal node +http://purl.obolibrary.org/obo/UBERON_0035222,posterior parietal artery, +http://purl.obolibrary.org/obo/UBERON_0035225,anterior temporal artery, +http://purl.obolibrary.org/obo/UBERON_0035228,tonsillar fossa,tonsillar bed +http://purl.obolibrary.org/obo/UBERON_0035228,tonsillar fossa,tonsillar sinus +http://purl.obolibrary.org/obo/UBERON_0035231,superficial middle cerebral vein,Sylvian vein +http://purl.obolibrary.org/obo/UBERON_0035231,superficial middle cerebral vein,vein of Labbe +http://purl.obolibrary.org/obo/UBERON_0035234,medial circumflex femoral vein, +http://purl.obolibrary.org/obo/UBERON_0035237,branch of internal carotid artery,internal carotid arterial subdivision +http://purl.obolibrary.org/obo/UBERON_0035237,branch of internal carotid artery,subdivision of internal carotid artery +http://purl.obolibrary.org/obo/UBERON_0035240,posterior wall of oropharynx, +http://purl.obolibrary.org/obo/UBERON_0035243,anal sinus,anal crypt +http://purl.obolibrary.org/obo/UBERON_0035246,posterior longitudinal ligament, +http://purl.obolibrary.org/obo/UBERON_0035249,posterior external jugular vein, +http://purl.obolibrary.org/obo/UBERON_0035252,left subcostal vein,vena subcostalis sinistra +http://purl.obolibrary.org/obo/UBERON_0035258,mons pubis,mons veneris +http://purl.obolibrary.org/obo/UBERON_0035258,mons pubis,public mound +http://purl.obolibrary.org/obo/UBERON_0035261,posterior temporal artery, +http://purl.obolibrary.org/obo/UBERON_0035267,neck of gallbladder,cervix of gallbladder +http://purl.obolibrary.org/obo/UBERON_0035267,neck of gallbladder,gallbladder neck +http://purl.obolibrary.org/obo/UBERON_0035270,roof of nasopharynx,nasopharynx roof +http://purl.obolibrary.org/obo/UBERON_0035270,roof of nasopharynx,pharyngeal fornix +http://purl.obolibrary.org/obo/UBERON_0035270,roof of nasopharynx,roof of nasal part of pharynx +http://purl.obolibrary.org/obo/UBERON_0035270,roof of nasopharynx,superior nasopharynx +http://purl.obolibrary.org/obo/UBERON_0035270,roof of nasopharynx,superior wall of nasopharynx +http://purl.obolibrary.org/obo/UBERON_0035270,roof of nasopharynx,vault of pharynx +http://purl.obolibrary.org/obo/UBERON_0035273,superior thoracic artery, +http://purl.obolibrary.org/obo/UBERON_0035276,epigastrium,epigastric fossa +http://purl.obolibrary.org/obo/UBERON_0035276,epigastrium,epigastric part of abdomen +http://purl.obolibrary.org/obo/UBERON_0035276,epigastrium,epigastric region +http://purl.obolibrary.org/obo/UBERON_0035279,supraclavicular lymph node,nodus lymphaticus supraclavicularis axillae +http://purl.obolibrary.org/obo/UBERON_0035279,supraclavicular lymph node,supraclavicular node +http://purl.obolibrary.org/obo/UBERON_0035286,lateral wall of oropharynx, +http://purl.obolibrary.org/obo/UBERON_0035289,axillary tail of breast,axillary process +http://purl.obolibrary.org/obo/UBERON_0035289,axillary tail of breast,axillary tail +http://purl.obolibrary.org/obo/UBERON_0035289,axillary tail of breast,axillary tail of Spence +http://purl.obolibrary.org/obo/UBERON_0035289,axillary tail of breast,processus axillaris (glandula mammaria) +http://purl.obolibrary.org/obo/UBERON_0035289,axillary tail of breast,tail of Spence +http://purl.obolibrary.org/obo/UBERON_0035292,branch of posterior tibial artery,posterior tibial arterial branch +http://purl.obolibrary.org/obo/UBERON_0035295,left ear, +http://purl.obolibrary.org/obo/UBERON_0035298,tuberculum sellae, +http://purl.obolibrary.org/obo/UBERON_0035304,branch of ulnar artery,ulnar arterial branch +http://purl.obolibrary.org/obo/UBERON_0035307,branch of vertebral artery,vertebral arterial branch +http://purl.obolibrary.org/obo/UBERON_0035310,inferolateral surface of prostate,facies inferolaterales (prostatae) +http://purl.obolibrary.org/obo/UBERON_0035310,inferolateral surface of prostate,facies inferolateralis prostatae +http://purl.obolibrary.org/obo/UBERON_0035310,inferolateral surface of prostate,inferolateral surface of prostate gland +http://purl.obolibrary.org/obo/UBERON_0035313,posterior wall of laryngopharynx,posterior wall of hypopharynx +http://purl.obolibrary.org/obo/UBERON_0035316,prostatic capsule,capsule of prostate +http://purl.obolibrary.org/obo/UBERON_0035316,prostatic capsule,capsule of prostate gland +http://purl.obolibrary.org/obo/UBERON_0035319,anterior median fissure of spinal cord,fissura mediana anterior medullae spinalis +http://purl.obolibrary.org/obo/UBERON_0035319,anterior median fissure of spinal cord,ventral median fissure of spinal cord +http://purl.obolibrary.org/obo/UBERON_0035322,right common iliac artery,trunk of right common iliac arterial tree +http://purl.obolibrary.org/obo/UBERON_0035328,upper outer quadrant of breast,upper outer quadrant of female breast +http://purl.obolibrary.org/obo/UBERON_0035331,base of prostate,base of prostate gland +http://purl.obolibrary.org/obo/UBERON_0035331,base of prostate,prostatic base +http://purl.obolibrary.org/obo/UBERON_0035338,sphenoparietal sinus, +http://purl.obolibrary.org/obo/UBERON_0035341,posterior lobe of prostate,posterior lobe of prostate gland +http://purl.obolibrary.org/obo/UBERON_0035341,posterior lobe of prostate,posterior peripheral zone +http://purl.obolibrary.org/obo/UBERON_0035350,branch of middle cerebral artery,middle cerebral arterial branch +http://purl.obolibrary.org/obo/UBERON_0035359,branch of brachial artery,brachial arterial branch +http://purl.obolibrary.org/obo/UBERON_0035365,lower outer quadrant of breast,lower outer quadrant of female breast +http://purl.obolibrary.org/obo/UBERON_0035368,anterior surface of kidney,facies anterior (Ren) +http://purl.obolibrary.org/obo/UBERON_0035368,anterior surface of kidney,facies anterior renis +http://purl.obolibrary.org/obo/UBERON_0035371,retroperitoneal lymph node,retroperitoneal node +http://purl.obolibrary.org/obo/UBERON_0035374,small cardiac vein,right cardiac vein +http://purl.obolibrary.org/obo/UBERON_0035377,transverse fold of rectum,horizontal fold of rectum +http://purl.obolibrary.org/obo/UBERON_0035377,transverse fold of rectum,transverse rectal fold +http://purl.obolibrary.org/obo/UBERON_0035380,branch of anterior cerebral artery,anterior cerebral arterial branch +http://purl.obolibrary.org/obo/UBERON_0035383,lateral wall of nasopharynx,lateral nasopharynx +http://purl.obolibrary.org/obo/UBERON_0035386,space of Mall,mall space +http://purl.obolibrary.org/obo/UBERON_0035392,cystic vein,cholecystic vein +http://purl.obolibrary.org/obo/UBERON_0035395,branch of left coronary artery,left coronary arterial branch +http://purl.obolibrary.org/obo/UBERON_0035398,branch of external carotid artery,external carotid arterial subdivision +http://purl.obolibrary.org/obo/UBERON_0035398,branch of external carotid artery,subdivision of external carotid artery +http://purl.obolibrary.org/obo/UBERON_0035401,posterior wall of nasopharynx,posterior nasopharynx +http://purl.obolibrary.org/obo/UBERON_0035403,hypophysial artery, +http://purl.obolibrary.org/obo/UBERON_0035404,superior hypophysial artery,superior hypophyseal artery +http://purl.obolibrary.org/obo/UBERON_0035410,left inguinal part of abdomen,left iliac fossa viewed surgically +http://purl.obolibrary.org/obo/UBERON_0035410,left inguinal part of abdomen,left iliac region +http://purl.obolibrary.org/obo/UBERON_0035410,left inguinal part of abdomen,left inguinal region +http://purl.obolibrary.org/obo/UBERON_0035416,diaphragma sellae,sellar diaphragm +http://purl.obolibrary.org/obo/UBERON_0035419,anterior longitudinal ligament, +http://purl.obolibrary.org/obo/UBERON_0035422,circumflex branch of left coronary artery,circumflex coronary artery +http://purl.obolibrary.org/obo/UBERON_0035422,circumflex branch of left coronary artery,left circumflex branch of left coronary artery +http://purl.obolibrary.org/obo/UBERON_0035422,circumflex branch of left coronary artery,ramus circumflexus (arteria coronaria sinistra) +http://purl.obolibrary.org/obo/UBERON_0035425,falx cerebelli,cerebellar falx +http://purl.obolibrary.org/obo/UBERON_0035428,postcapillary venule, +http://purl.obolibrary.org/obo/UBERON_0035431,mediastinal pleura,mediastinal part of parietal pleura +http://purl.obolibrary.org/obo/UBERON_0035431,mediastinal pleura,pars mediastinalis (pleurae) +http://purl.obolibrary.org/obo/UBERON_0035431,mediastinal pleura,pars mediastinalis pleurae parietalis +http://purl.obolibrary.org/obo/UBERON_0035435,right suprarenal vein,vena suprarenalis (adrenalis) dextra +http://purl.obolibrary.org/obo/UBERON_0035438,mucoid tissue,mucous connective tissue +http://purl.obolibrary.org/obo/UBERON_0035438,mucoid tissue,mucous tissue +http://purl.obolibrary.org/obo/UBERON_0035441,apex of prostate,apex of prostate gland +http://purl.obolibrary.org/obo/UBERON_0035441,apex of prostate,prostatic apex +http://purl.obolibrary.org/obo/UBERON_0035444,triangular ligament of liver, +http://purl.obolibrary.org/obo/UBERON_0035445,urogenital diaphragm, +http://purl.obolibrary.org/obo/UBERON_0035450,cervical part of esophagus,cervical esophagus +http://purl.obolibrary.org/obo/UBERON_0035450,cervical part of esophagus,cervical part of oesophagus +http://purl.obolibrary.org/obo/UBERON_0035450,cervical part of esophagus,pars cervicalis (oesophagus) +http://purl.obolibrary.org/obo/UBERON_0035450,cervical part of esophagus,pars cervicalis oesophageae +http://purl.obolibrary.org/obo/UBERON_0035450,cervical part of esophagus,pars colli oesophageae +http://purl.obolibrary.org/obo/UBERON_0035453,laryngeal ventricle,ventricle of Morgagni +http://purl.obolibrary.org/obo/UBERON_0035453,laryngeal ventricle,ventricle of larynx +http://purl.obolibrary.org/obo/UBERON_0035462,anterior parietal artery, +http://purl.obolibrary.org/obo/UBERON_0035465,endometrial cavity,cavity of body of uterus +http://purl.obolibrary.org/obo/UBERON_0035465,endometrial cavity,endometrial cavity +http://purl.obolibrary.org/obo/UBERON_0035465,endometrial cavity,endometrial lumen +http://purl.obolibrary.org/obo/UBERON_0035465,endometrial cavity,intrauterine cavity +http://purl.obolibrary.org/obo/UBERON_0035468,costodiaphragmatic recess,costophrenic angle +http://purl.obolibrary.org/obo/UBERON_0035471,posterior surface of kidney,facies posterior (Ren) +http://purl.obolibrary.org/obo/UBERON_0035471,posterior surface of kidney,facies posterior renis +http://purl.obolibrary.org/obo/UBERON_0035474,right subcostal vein,vena subcostalis dextra +http://purl.obolibrary.org/obo/UBERON_0035477,lower inner quadrant of breast,lower inner quadrant of female breast +http://purl.obolibrary.org/obo/UBERON_0035480,surface of prostate,prostatic surface +http://purl.obolibrary.org/obo/UBERON_0035480,surface of prostate,surface of prostate gland +http://purl.obolibrary.org/obo/UBERON_0035483,left suprarenal vein, +http://purl.obolibrary.org/obo/UBERON_0035489,branch of basilar artery,basilar arterial branch +http://purl.obolibrary.org/obo/UBERON_0035492,inferior hypophysial artery,inferior hypophyseal artery +http://purl.obolibrary.org/obo/UBERON_0035495,hilum of lymph node,hilum nodi lymphoidei +http://purl.obolibrary.org/obo/UBERON_0035495,hilum of lymph node,lymph node hilum +http://purl.obolibrary.org/obo/UBERON_0035498,gastrophrenic ligament, +http://purl.obolibrary.org/obo/UBERON_0035501,unencapsulated tactile receptor,free nerve ending +http://purl.obolibrary.org/obo/UBERON_0035501,unencapsulated tactile receptor,unencapsulated nerve ending +http://purl.obolibrary.org/obo/UBERON_0035505,right inguinal part of abdomen,right iliac fossa viewed surgically +http://purl.obolibrary.org/obo/UBERON_0035505,right inguinal part of abdomen,right iliac region +http://purl.obolibrary.org/obo/UBERON_0035505,right inguinal part of abdomen,right inguinal region +http://purl.obolibrary.org/obo/UBERON_0035508,branch of posterior cerebral artery,posterior cerebral arterial branch +http://purl.obolibrary.org/obo/UBERON_0035514,special sense organ system, +http://purl.obolibrary.org/obo/UBERON_0035520,anterior mediastinal lymph node,anterior mediastinal node +http://purl.obolibrary.org/obo/UBERON_0035523,anterior surface of prostate,anterior surface of prostate gland +http://purl.obolibrary.org/obo/UBERON_0035523,anterior surface of prostate,facies anterior (prostatae) +http://purl.obolibrary.org/obo/UBERON_0035523,anterior surface of prostate,facies anterior prostatae +http://purl.obolibrary.org/obo/UBERON_0035526,superficial fibular nerve,superficial peroneal nerve +http://purl.obolibrary.org/obo/UBERON_0035529,left common iliac artery,trunk of left common iliac arterial tree +http://purl.obolibrary.org/obo/UBERON_0035530,basal vein,basal vein of rosenthal +http://purl.obolibrary.org/obo/UBERON_0035530,basal vein,rosenthal's vein +http://purl.obolibrary.org/obo/UBERON_0035532,deep middle cerebral vein, +http://purl.obolibrary.org/obo/UBERON_0035536,body of gallbladder,gallbladder body +http://purl.obolibrary.org/obo/UBERON_0035539,esophageal artery,aortic esophageal artery +http://purl.obolibrary.org/obo/UBERON_0035539,esophageal artery,oesophageal artery +http://purl.obolibrary.org/obo/UBERON_0035542,upper inner quadrant of breast,upper inner quadrant of female breast +http://purl.obolibrary.org/obo/UBERON_0035545,deep lymphatic vessel,deep lymph vessel +http://purl.obolibrary.org/obo/UBERON_0035546,uveal vein,ciliary vein +http://purl.obolibrary.org/obo/UBERON_0035547,posterior ciliary vein,vorticose vein +http://purl.obolibrary.org/obo/UBERON_0035548,colic artery, +http://purl.obolibrary.org/obo/UBERON_0035549,vasculature of integument,superficial part of circulatory system +http://purl.obolibrary.org/obo/UBERON_0035549,vasculature of integument,superficial vasculature +http://purl.obolibrary.org/obo/UBERON_0035550,superficial vein, +http://purl.obolibrary.org/obo/UBERON_0035551,deep vasculature,deep part of circulatory system +http://purl.obolibrary.org/obo/UBERON_0035552,deep vein, +http://purl.obolibrary.org/obo/UBERON_0035553,left cardiac chamber, +http://purl.obolibrary.org/obo/UBERON_0035554,right cardiac chamber, +http://purl.obolibrary.org/obo/UBERON_0035555,lateral line sense organ, +http://purl.obolibrary.org/obo/UBERON_0035561,styliform element, +http://purl.obolibrary.org/obo/UBERON_0035562,intermediate pretectal nucleus, +http://purl.obolibrary.org/obo/UBERON_0035563,magnocellular superficial pretectal nucleus,magnocellular superficial pretectal nuclei +http://purl.obolibrary.org/obo/UBERON_0035564,parvocellular superficial pretectal nucleus,parvocellular superficial pretectal nuclei +http://purl.obolibrary.org/obo/UBERON_0035565,caudal pretectal nucleus,caudal pretectal nuclei +http://purl.obolibrary.org/obo/UBERON_0035566,central pretectal nucleus,nucleus praetectalis centralis +http://purl.obolibrary.org/obo/UBERON_0035567,accessory pretectal nucleus,APN +http://purl.obolibrary.org/obo/UBERON_0035567,accessory pretectal nucleus,nucleus praetectalis accessorius +http://purl.obolibrary.org/obo/UBERON_0035568,superficial pretectal nucleus, +http://purl.obolibrary.org/obo/UBERON_0035569,periventricular pretectal nucleus,periventricular pretectum +http://purl.obolibrary.org/obo/UBERON_0035569,periventricular pretectal nucleus,pretectal periventricular nuclei +http://purl.obolibrary.org/obo/UBERON_0035569,periventricular pretectal nucleus,pretectal periventricular nucleus +http://purl.obolibrary.org/obo/UBERON_0035570,tectothalamic tract,tectothalamic fibers +http://purl.obolibrary.org/obo/UBERON_0035572,nucleus praetectalis profundus,nucleus pratectalis profundus +http://purl.obolibrary.org/obo/UBERON_0035572,nucleus praetectalis profundus,profundal pretectal nucleus +http://purl.obolibrary.org/obo/UBERON_0035573,dorsal pretectal periventricular nucleus, +http://purl.obolibrary.org/obo/UBERON_0035574,ventral pretectal periventricular nucleus, +http://purl.obolibrary.org/obo/UBERON_0035575,paracommissural nucleus of solitary tract, +http://purl.obolibrary.org/obo/UBERON_0035577,paracommissural periventricular pretectal nucleus,paracommissural nucleus +http://purl.obolibrary.org/obo/UBERON_0035580,nucleus geniculatus of pretectum,nucleus geniculatus pretectalis +http://purl.obolibrary.org/obo/UBERON_0035581,nucleus lentiformis of pretectum,nucleus lentiformis mesencephali +http://purl.obolibrary.org/obo/UBERON_0035582,nucleus posteriodorsalis of pretectum,nucleus posteriodorsalis +http://purl.obolibrary.org/obo/UBERON_0035583,nucleus lentiformis thalamus, +http://purl.obolibrary.org/obo/UBERON_0035584,ventral pretectal nucleus (sauropsida), +http://purl.obolibrary.org/obo/UBERON_0035585,tectal gray nucleus (Testudines),griseum tectalis +http://purl.obolibrary.org/obo/UBERON_0035586,nucleus lentiformis mesencephali (Aves), +http://purl.obolibrary.org/obo/UBERON_0035587,nucleus pretectalis diffusus, +http://purl.obolibrary.org/obo/UBERON_0035588,subpretectal complex of Aves, +http://purl.obolibrary.org/obo/UBERON_0035589,nucleus subpretectalis, +http://purl.obolibrary.org/obo/UBERON_0035590,nucleus interstitio-pretectalis-subpretectalis, +http://purl.obolibrary.org/obo/UBERON_0035591,lateral spiriform nucleus, +http://purl.obolibrary.org/obo/UBERON_0035592,medial spiriform nucleus, +http://purl.obolibrary.org/obo/UBERON_0035593,nucleus circularis of pretectum, +http://purl.obolibrary.org/obo/UBERON_0035594,accessory optic system, +http://purl.obolibrary.org/obo/UBERON_0035595,accessory optic tract, +http://purl.obolibrary.org/obo/UBERON_0035596,circular nucleus of antherior hypothalamic nucleus, +http://purl.obolibrary.org/obo/UBERON_0035597,profundal placode,ophthalmic lobe of trigeminal placode +http://purl.obolibrary.org/obo/UBERON_0035597,profundal placode,ophthalmic lobe of trigeminal placode complex +http://purl.obolibrary.org/obo/UBERON_0035597,profundal placode,ophthalmic placode +http://purl.obolibrary.org/obo/UBERON_0035597,profundal placode,profundus placode +http://purl.obolibrary.org/obo/UBERON_0035598,maxillomandibular placode,maxillomandibular lobe of trigeminal placode complex +http://purl.obolibrary.org/obo/UBERON_0035599,profundal part of trigeminal ganglion complex, +http://purl.obolibrary.org/obo/UBERON_0035601,maxillomandibular part of trigeminal ganglion complex, +http://purl.obolibrary.org/obo/UBERON_0035602,collar nerve cord, +http://purl.obolibrary.org/obo/UBERON_0035603,enteropneust proboscis, +http://purl.obolibrary.org/obo/UBERON_0035604,enteropneust collar, +http://purl.obolibrary.org/obo/UBERON_0035605,enteropneust trunk, +http://purl.obolibrary.org/obo/UBERON_0035606,cartilage of external acoustic meatus,cartilage of acoustic meatus +http://purl.obolibrary.org/obo/UBERON_0035606,cartilage of external acoustic meatus,cartilage of auditory canal +http://purl.obolibrary.org/obo/UBERON_0035606,cartilage of external acoustic meatus,cartilago meatus acustici +http://purl.obolibrary.org/obo/UBERON_0035606,cartilage of external acoustic meatus,external acoustic meatus cartilage +http://purl.obolibrary.org/obo/UBERON_0035607,accessory nerve cord of dorsal region, +http://purl.obolibrary.org/obo/UBERON_0035608,dura mater lymph vessel,dural lymph vessel +http://purl.obolibrary.org/obo/UBERON_0035609,outer root sheath companion layer, +http://purl.obolibrary.org/obo/UBERON_0035610,hair canal, +http://purl.obolibrary.org/obo/UBERON_0035611,hair peg, +http://purl.obolibrary.org/obo/UBERON_0035612,nasal turbinal,nasal turbinal +http://purl.obolibrary.org/obo/UBERON_0035612,nasal turbinal,nasal turbinal element +http://purl.obolibrary.org/obo/UBERON_0035612,nasal turbinal,nasal turbinate +http://purl.obolibrary.org/obo/UBERON_0035612,nasal turbinal,turbinal +http://purl.obolibrary.org/obo/UBERON_0035612,nasal turbinal,turbinate +http://purl.obolibrary.org/obo/UBERON_0035617,peripharyngeal space, +http://purl.obolibrary.org/obo/UBERON_0035618,parapharyngeal space,lateral pharyngeal space +http://purl.obolibrary.org/obo/UBERON_0035618,parapharyngeal space,parapharyngeal space +http://purl.obolibrary.org/obo/UBERON_0035618,parapharyngeal space,spatium parapharyngeum +http://purl.obolibrary.org/obo/UBERON_0035619,retropharyngeal space,Henke's space +http://purl.obolibrary.org/obo/UBERON_0035619,retropharyngeal space,postpharyngeal space +http://purl.obolibrary.org/obo/UBERON_0035619,retropharyngeal space,spatium retropharyngeum +http://purl.obolibrary.org/obo/UBERON_0035634,quadrant of breast,breast quadrant +http://purl.obolibrary.org/obo/UBERON_0035635,upper quadrant of breast, +http://purl.obolibrary.org/obo/UBERON_0035636,lower quadrant of breast, +http://purl.obolibrary.org/obo/UBERON_0035637,inner quadrant of breast, +http://purl.obolibrary.org/obo/UBERON_0035638,outer quadrant of breast, +http://purl.obolibrary.org/obo/UBERON_0035639,ocular adnexa,accessory parts of orbital region +http://purl.obolibrary.org/obo/UBERON_0035639,ocular adnexa,accessory visual structures +http://purl.obolibrary.org/obo/UBERON_0035639,ocular adnexa,accessory visual structures set +http://purl.obolibrary.org/obo/UBERON_0035639,ocular adnexa,adnexa oculi +http://purl.obolibrary.org/obo/UBERON_0035639,ocular adnexa,adnexal parts of orbital region +http://purl.obolibrary.org/obo/UBERON_0035639,ocular adnexa,appendage of eye +http://purl.obolibrary.org/obo/UBERON_0035639,ocular adnexa,appendages of the eye +http://purl.obolibrary.org/obo/UBERON_0035639,ocular adnexa,eye adnexa +http://purl.obolibrary.org/obo/UBERON_0035639,ocular adnexa,set of accessory visual structures +http://purl.obolibrary.org/obo/UBERON_0035639,ocular adnexa,structurae oculi accessoriae +http://purl.obolibrary.org/obo/UBERON_0035640,middle vesical artery, +http://purl.obolibrary.org/obo/UBERON_0035642,laryngeal nerve, +http://purl.obolibrary.org/obo/UBERON_0035646,anterior superior alveolar nerve,anterior superior dental nerve +http://purl.obolibrary.org/obo/UBERON_0035647,posterior auricular nerve,auricularis posterior branch of facial nerve +http://purl.obolibrary.org/obo/UBERON_0035648,nerve innervating pinna,auricular nerve +http://purl.obolibrary.org/obo/UBERON_0035649,nerve of penis,penile nerve +http://purl.obolibrary.org/obo/UBERON_0035649,nerve of penis,penis nerve +http://purl.obolibrary.org/obo/UBERON_0035650,nerve of clitoris,clitoral nerve +http://purl.obolibrary.org/obo/UBERON_0035650,nerve of clitoris,clitoris nerve +http://purl.obolibrary.org/obo/UBERON_0035651,glans, +http://purl.obolibrary.org/obo/UBERON_0035652,fibular nerve,peroneal nerve +http://purl.obolibrary.org/obo/UBERON_0035655,paraumbilical vein,venae paraumbilicales +http://purl.obolibrary.org/obo/UBERON_0035659,deep facial vein, +http://purl.obolibrary.org/obo/UBERON_0035662,parotid vein,anterior parotid vein +http://purl.obolibrary.org/obo/UBERON_0035662,parotid vein,parotid branch of facial vein +http://purl.obolibrary.org/obo/UBERON_0035675,anterior facial vein, +http://purl.obolibrary.org/obo/UBERON_0035676,secondary yolk sac cavity,cavity of definitive yolk sac +http://purl.obolibrary.org/obo/UBERON_0035676,secondary yolk sac cavity,cavity of secondary yolk sac +http://purl.obolibrary.org/obo/UBERON_0035676,secondary yolk sac cavity,definitive yolk sac cavity +http://purl.obolibrary.org/obo/UBERON_0035676,secondary yolk sac cavity,secondary yolk sac cavity +http://purl.obolibrary.org/obo/UBERON_0035676,secondary yolk sac cavity,secondary yolk sac space +http://purl.obolibrary.org/obo/UBERON_0035677,primary yolk sac cavity,cavity of primary yolk sac +http://purl.obolibrary.org/obo/UBERON_0035677,primary yolk sac cavity,primary yolk sac cavity +http://purl.obolibrary.org/obo/UBERON_0035677,primary yolk sac cavity,primary yolk sac space +http://purl.obolibrary.org/obo/UBERON_0035753,capillary plexus,capillary network +http://purl.obolibrary.org/obo/UBERON_0035754,pulmonary capillary plexus,capillary network of lung +http://purl.obolibrary.org/obo/UBERON_0035754,pulmonary capillary plexus,pulmonary capillary network +http://purl.obolibrary.org/obo/UBERON_0035755,systemic capillary plexus,systemic capillary network +http://purl.obolibrary.org/obo/UBERON_0035756,capillary network of liver,capillary plexus of liver +http://purl.obolibrary.org/obo/UBERON_0035756,capillary network of liver,hepatic capillary network +http://purl.obolibrary.org/obo/UBERON_0035756,capillary network of liver,hepatic capillary plexus +http://purl.obolibrary.org/obo/UBERON_0035757,embryonic capillary plexus,embryonic venous capillary plexus +http://purl.obolibrary.org/obo/UBERON_0035758,peritubular capillary plexus of kidney,peritubular capillary network of kidney +http://purl.obolibrary.org/obo/UBERON_0035758,peritubular capillary plexus of kidney,peritubular capillary plexus +http://purl.obolibrary.org/obo/UBERON_0035762,capillary network of kidney,capillary plexus of kidney +http://purl.obolibrary.org/obo/UBERON_0035763,cavity of cardiac chamber,cardiac chamber cavity +http://purl.obolibrary.org/obo/UBERON_0035763,cavity of cardiac chamber,heart cavity +http://purl.obolibrary.org/obo/UBERON_0035763,cavity of cardiac chamber,heart lumen +http://purl.obolibrary.org/obo/UBERON_0035764,pulmonary lymph node,intrapulmonary lymph node +http://purl.obolibrary.org/obo/UBERON_0035764,pulmonary lymph node,pulmonary node +http://purl.obolibrary.org/obo/UBERON_0035765,subsegmental lymph node, +http://purl.obolibrary.org/obo/UBERON_0035766,median lobe of prostate,Albarran's gland +http://purl.obolibrary.org/obo/UBERON_0035766,median lobe of prostate,cranial part of prostate +http://purl.obolibrary.org/obo/UBERON_0035766,median lobe of prostate,lobus medius prostatae +http://purl.obolibrary.org/obo/UBERON_0035766,median lobe of prostate,middle lobe of prostate +http://purl.obolibrary.org/obo/UBERON_0035766,median lobe of prostate,pars proximalis (prostata) +http://purl.obolibrary.org/obo/UBERON_0035766,median lobe of prostate,pars proximalis prostatae +http://purl.obolibrary.org/obo/UBERON_0035766,median lobe of prostate,proximal part of prostate +http://purl.obolibrary.org/obo/UBERON_0035766,median lobe of prostate,proximal part of prostate gland +http://purl.obolibrary.org/obo/UBERON_0035767,intrapulmonary bronchus, +http://purl.obolibrary.org/obo/UBERON_0035768,coccygeal nerve plexus,coccygeal plexus +http://purl.obolibrary.org/obo/UBERON_0035768,coccygeal nerve plexus,plexus coccygeus +http://purl.obolibrary.org/obo/UBERON_0035769,mesenteric ganglion, +http://purl.obolibrary.org/obo/UBERON_0035770,inferior mesenteric nerve plexus,inferior mesenteric plexus +http://purl.obolibrary.org/obo/UBERON_0035770,inferior mesenteric nerve plexus,plexus mesentericus inferior +http://purl.obolibrary.org/obo/UBERON_0035770,inferior mesenteric nerve plexus,plexus nervosus mesentericus inferior +http://purl.obolibrary.org/obo/UBERON_0035771,mesenteric plexus, +http://purl.obolibrary.org/obo/UBERON_0035772,aortic plexus, +http://purl.obolibrary.org/obo/UBERON_0035773,abdominal nerve plexus,abdominal aortic nerve plexus +http://purl.obolibrary.org/obo/UBERON_0035773,abdominal nerve plexus,abdominal aortic plexus +http://purl.obolibrary.org/obo/UBERON_0035773,abdominal nerve plexus,plexus aorticus abdominalis +http://purl.obolibrary.org/obo/UBERON_0035773,abdominal nerve plexus,plexus nervosus aorticus abdominalis +http://purl.obolibrary.org/obo/UBERON_0035773,abdominal nerve plexus,preaortic nerve plexus +http://purl.obolibrary.org/obo/UBERON_0035774,thoracic aortic plexus,plexus aorticus thoracicus +http://purl.obolibrary.org/obo/UBERON_0035774,thoracic aortic plexus,plexus nervosus aorticus thoracicus +http://purl.obolibrary.org/obo/UBERON_0035774,thoracic aortic plexus,thoracic aortic nerve plexus +http://purl.obolibrary.org/obo/UBERON_0035775,submandibular region, +http://purl.obolibrary.org/obo/UBERON_0035776,accessory ciliary ganglion, +http://purl.obolibrary.org/obo/UBERON_0035783,ganglion of ciliary nerve, +http://purl.obolibrary.org/obo/UBERON_0035784,seminal clot,seminal coagulum +http://purl.obolibrary.org/obo/UBERON_0035785,telencephalic song nucleus HVC,HVC (avian brain region) +http://purl.obolibrary.org/obo/UBERON_0035785,telencephalic song nucleus HVC,pars caudalis (HVc) +http://purl.obolibrary.org/obo/UBERON_0035785,telencephalic song nucleus HVC,telencephalic song nucleus HVC +http://purl.obolibrary.org/obo/UBERON_0035786,layer of CA1 field, +http://purl.obolibrary.org/obo/UBERON_0035787,layer of CA2 field, +http://purl.obolibrary.org/obo/UBERON_0035788,layer of CA3 field, +http://purl.obolibrary.org/obo/UBERON_0035802,alveus of CA2 field, +http://purl.obolibrary.org/obo/UBERON_0035803,extrapyramidal tract system, +http://purl.obolibrary.org/obo/UBERON_0035804,future mouth,primitive mouth +http://purl.obolibrary.org/obo/UBERON_0035804,future mouth,primordial mouth +http://purl.obolibrary.org/obo/UBERON_0035805,muscle layer of sigmoid colon,muscularis externa of sigmoid colon +http://purl.obolibrary.org/obo/UBERON_0035805,muscle layer of sigmoid colon,muscularis propria of sigmoid colon +http://purl.obolibrary.org/obo/UBERON_0035805,muscle layer of sigmoid colon,sigmoid colon muscularis propria +http://purl.obolibrary.org/obo/UBERON_0035806,Hensen stripe,Hensen's stripe +http://purl.obolibrary.org/obo/UBERON_0035807,area X of basal ganglion, +http://purl.obolibrary.org/obo/UBERON_0035808,robust nucleus of arcopallium, +http://purl.obolibrary.org/obo/UBERON_0035809,serous cavity, +http://purl.obolibrary.org/obo/UBERON_0035814,pericardial fat, +http://purl.obolibrary.org/obo/UBERON_0035815,paracardial fat,intrathoracic fat +http://purl.obolibrary.org/obo/UBERON_0035818,visceral fat, +http://purl.obolibrary.org/obo/UBERON_0035819,abdominopelvic cavity,cavitas abdominis et pelvis +http://purl.obolibrary.org/obo/UBERON_0035820,peritoneal sac, +http://purl.obolibrary.org/obo/UBERON_0035825,left adrenal gland cortex,cortex of left adrenal gland +http://purl.obolibrary.org/obo/UBERON_0035825,left adrenal gland cortex,cortex of left suprarenal gland +http://purl.obolibrary.org/obo/UBERON_0035825,left adrenal gland cortex,left adrenal cortex +http://purl.obolibrary.org/obo/UBERON_0035826,left adrenal gland medulla,left adrenal medulla +http://purl.obolibrary.org/obo/UBERON_0035826,left adrenal gland medulla,medulla of left adrenal gland +http://purl.obolibrary.org/obo/UBERON_0035826,left adrenal gland medulla,medulla of left suprarenal gland +http://purl.obolibrary.org/obo/UBERON_0035827,right adrenal gland cortex,cortex of right adrenal gland +http://purl.obolibrary.org/obo/UBERON_0035827,right adrenal gland cortex,cortex of right suprarenal gland +http://purl.obolibrary.org/obo/UBERON_0035827,right adrenal gland cortex,right adrenal cortex +http://purl.obolibrary.org/obo/UBERON_0035828,right adrenal gland medulla,medulla of right adrenal gland +http://purl.obolibrary.org/obo/UBERON_0035828,right adrenal gland medulla,medulla of right suprarenal gland +http://purl.obolibrary.org/obo/UBERON_0035828,right adrenal gland medulla,right adrenal medulla +http://purl.obolibrary.org/obo/UBERON_0035829,right gastroepiploic artery,arteria gastro-omentalis dextra +http://purl.obolibrary.org/obo/UBERON_0035829,right gastroepiploic artery,arteria gastroepiploica dextra +http://purl.obolibrary.org/obo/UBERON_0035829,right gastroepiploic artery,arteria gastroomentalis dextra +http://purl.obolibrary.org/obo/UBERON_0035829,right gastroepiploic artery,right gastro-epiploic artery +http://purl.obolibrary.org/obo/UBERON_0035829,right gastroepiploic artery,right gastro-omental artery +http://purl.obolibrary.org/obo/UBERON_0035829,right gastroepiploic artery,right gastroomental artery +http://purl.obolibrary.org/obo/UBERON_0035830,left gastroepiploic artery,arteria gastro-omentalis sinistra +http://purl.obolibrary.org/obo/UBERON_0035830,left gastroepiploic artery,arteria gastroepiploica sinistra +http://purl.obolibrary.org/obo/UBERON_0035830,left gastroepiploic artery,arteria gastroomentalis sinistra +http://purl.obolibrary.org/obo/UBERON_0035830,left gastroepiploic artery,left gastro-epiploic artery +http://purl.obolibrary.org/obo/UBERON_0035830,left gastroepiploic artery,left gastro-omental artery +http://purl.obolibrary.org/obo/UBERON_0035830,left gastroepiploic artery,left gastroomental artery +http://purl.obolibrary.org/obo/UBERON_0035830,left gastroepiploic artery,left inferior gastric artery +http://purl.obolibrary.org/obo/UBERON_0035831,costal diaphragm,costal part of diaphragm +http://purl.obolibrary.org/obo/UBERON_0035831,costal diaphragm,pars costalis diaphragmatis +http://purl.obolibrary.org/obo/UBERON_0035832,caval sphincter,vena cava sphincter +http://purl.obolibrary.org/obo/UBERON_0035833,lower esophagus muscularis layer,lower esophagus muscularis propria +http://purl.obolibrary.org/obo/UBERON_0035833,lower esophagus muscularis layer,muscle coat of lower esophagus +http://purl.obolibrary.org/obo/UBERON_0035834,lower esophagus mucosa, +http://purl.obolibrary.org/obo/UBERON_0035835,apical region of left ventricle,apical zone of left ventricle +http://purl.obolibrary.org/obo/UBERON_0035836,apical region of right ventricle,apical zone of right ventricle +http://purl.obolibrary.org/obo/UBERON_0035837,apical region of heart ventricle,apical region of cardiac ventricle +http://purl.obolibrary.org/obo/UBERON_0035838,esophagogastric junction mucosa,gastro-esophageal junction mucosa +http://purl.obolibrary.org/obo/UBERON_0035839,esophagogastric junction submucosa,gastro-esophageal junction submucosa +http://purl.obolibrary.org/obo/UBERON_0035840,esophagogastric junction muscularis mucosa,gastro-esophageal junction muscularis mucosa +http://purl.obolibrary.org/obo/UBERON_0035841,esophagogastric junction muscularis propria,gastro-esophageal junction muscularis propria +http://purl.obolibrary.org/obo/UBERON_0035842,extensor digitorum brevis manus,extensor brevis digitorum manus +http://purl.obolibrary.org/obo/UBERON_0035842,extensor digitorum brevis manus,extensor digitorum brevis manus muscle +http://purl.obolibrary.org/obo/UBERON_0035843,lower esophagus submucosa, +http://purl.obolibrary.org/obo/UBERON_0035844,lower esophagus muscularis mucosa,lamina muscularis of lower esophagus +http://purl.obolibrary.org/obo/UBERON_0035845,enthesis, +http://purl.obolibrary.org/obo/UBERON_0035846,fibrous enthesis, +http://purl.obolibrary.org/obo/UBERON_0035847,fibrocartilage enthesis, +http://purl.obolibrary.org/obo/UBERON_0035848,infraorbital margin,inferior orbital rim +http://purl.obolibrary.org/obo/UBERON_0035848,infraorbital margin,infra-orbital margin +http://purl.obolibrary.org/obo/UBERON_0035848,infraorbital margin,margo infraorbitalis +http://purl.obolibrary.org/obo/UBERON_0035849,orbital margin,margin of orbit +http://purl.obolibrary.org/obo/UBERON_0035849,orbital margin,margo orbitalis +http://purl.obolibrary.org/obo/UBERON_0035849,orbital margin,orbital rim +http://purl.obolibrary.org/obo/UBERON_0035850,infraorbital bridge,infra-orbital bridge +http://purl.obolibrary.org/obo/UBERON_0035872,primary somatosensory area barrel field layer 5, +http://purl.obolibrary.org/obo/UBERON_0035873,primary somatosensory area barrel field layer 1, +http://purl.obolibrary.org/obo/UBERON_0035874,primary somatosensory area barrel field layer 2/3, +http://purl.obolibrary.org/obo/UBERON_0035875,primary somatosensory area barrel field layer 6b, +http://purl.obolibrary.org/obo/UBERON_0035876,primary somatosensory area barrel field layer 6a, +http://purl.obolibrary.org/obo/UBERON_0035877,primary somatosensory area barrel field layer 4, +http://purl.obolibrary.org/obo/UBERON_0035878,subchondral region of epiphysis,subchondral bone +http://purl.obolibrary.org/obo/UBERON_0035879,frontomaxillary suture,frontomaxillary suture of skull +http://purl.obolibrary.org/obo/UBERON_0035879,frontomaxillary suture,sutura frontomaxillaris +http://purl.obolibrary.org/obo/UBERON_0035880,zygomaticomaxillary suture,sutura infraorbitalis +http://purl.obolibrary.org/obo/UBERON_0035880,zygomaticomaxillary suture,sutura zygomaticomaxillaris +http://purl.obolibrary.org/obo/UBERON_0035880,zygomaticomaxillary suture,zygomaticomaxillary suture of skull +http://purl.obolibrary.org/obo/UBERON_0035881,ethmoidomaxillary suture,ethmoidomaxillary suture of skull +http://purl.obolibrary.org/obo/UBERON_0035881,ethmoidomaxillary suture,sutura ethmoidomaxillaris +http://purl.obolibrary.org/obo/UBERON_0035882,sphenomaxillary suture,sphenomaxillary suture of skull +http://purl.obolibrary.org/obo/UBERON_0035882,sphenomaxillary suture,sutura sphenomaxillaris +http://purl.obolibrary.org/obo/UBERON_0035883,lacrimomaxillary suture,lacrimomaxillary suture of skull +http://purl.obolibrary.org/obo/UBERON_0035883,lacrimomaxillary suture,sutura lacrimomaxillaris +http://purl.obolibrary.org/obo/UBERON_0035884,maxillary-premaxillary suture,maxillary-premaxillary incisive suture +http://purl.obolibrary.org/obo/UBERON_0035885,dorsal auditory area, +http://purl.obolibrary.org/obo/UBERON_0035886,posterior parietal association areas, +http://purl.obolibrary.org/obo/UBERON_0035890,postrhinal area, +http://purl.obolibrary.org/obo/UBERON_0035892,"primary visual area, layer 6a", +http://purl.obolibrary.org/obo/UBERON_0035893,anteromedial visual area, +http://purl.obolibrary.org/obo/UBERON_0035894,anterolateral visual area, +http://purl.obolibrary.org/obo/UBERON_0035895,lateral visual area, +http://purl.obolibrary.org/obo/UBERON_0035897,posterolateral visual area, +http://purl.obolibrary.org/obo/UBERON_0035900,posteromedial visual area, +http://purl.obolibrary.org/obo/UBERON_0035904,"primary visual area, layer 4", +http://purl.obolibrary.org/obo/UBERON_0035906,"primary visual area, layer 5", +http://purl.obolibrary.org/obo/UBERON_0035907,"primary visual area, layer 2/3", +http://purl.obolibrary.org/obo/UBERON_0035908,"anterolateral visual area, layer 5", +http://purl.obolibrary.org/obo/UBERON_0035909,"posteromedial visual area, layer 6a", +http://purl.obolibrary.org/obo/UBERON_0035911,"postrhinal area, layer 4", +http://purl.obolibrary.org/obo/UBERON_0035912,rostrolateral visual area, +http://purl.obolibrary.org/obo/UBERON_0035913,"anteromedial visual area, layer 5", +http://purl.obolibrary.org/obo/UBERON_0035914,"posteromedial visual area, layer 4", +http://purl.obolibrary.org/obo/UBERON_0035915,"lateral visual area, layer 4", +http://purl.obolibrary.org/obo/UBERON_0035916,"lateral visual area, layer 5", +http://purl.obolibrary.org/obo/UBERON_0035917,"dorsal auditory area, layer 4", +http://purl.obolibrary.org/obo/UBERON_0035918,"lateral visual area, layer 6a", +http://purl.obolibrary.org/obo/UBERON_0035919,"posterolateral visual area, layer 4", +http://purl.obolibrary.org/obo/UBERON_0035920,"rostrolateral area, layer 5", +http://purl.obolibrary.org/obo/UBERON_0035922,intraculminate fissure of cerebellum,fissura intraculminalis +http://purl.obolibrary.org/obo/UBERON_0035922,intraculminate fissure of cerebellum,intraculminate fissure +http://purl.obolibrary.org/obo/UBERON_0035924,radiation of corpus callosum,corpus callosum radiation +http://purl.obolibrary.org/obo/UBERON_0035924,radiation of corpus callosum,radiatio corporis callosi +http://purl.obolibrary.org/obo/UBERON_0035925,central sulcus of insula,central fissure of insula +http://purl.obolibrary.org/obo/UBERON_0035925,central sulcus of insula,central fissure of island +http://purl.obolibrary.org/obo/UBERON_0035925,central sulcus of insula,central insula sulcus +http://purl.obolibrary.org/obo/UBERON_0035925,central sulcus of insula,central insular sulcus +http://purl.obolibrary.org/obo/UBERON_0035925,central sulcus of insula,central sulcus of insula +http://purl.obolibrary.org/obo/UBERON_0035925,central sulcus of insula,fissura centralis insulae +http://purl.obolibrary.org/obo/UBERON_0035925,central sulcus of insula,sulcus centralis insulae +http://purl.obolibrary.org/obo/UBERON_0035926,preculminate fissure of cerebellum,fissura preculminalis +http://purl.obolibrary.org/obo/UBERON_0035926,preculminate fissure of cerebellum,preculminate fissure +http://purl.obolibrary.org/obo/UBERON_0035927,sulcus of parietal lobe,parietal lobe sulci +http://purl.obolibrary.org/obo/UBERON_0035927,sulcus of parietal lobe,parietal lobe sulcus +http://purl.obolibrary.org/obo/UBERON_0035928,dorsolateral part of supraoptic nucleus,pars dorsolateralis nuclei supraoptici +http://purl.obolibrary.org/obo/UBERON_0035930,retro-olivary nucleus,nucleus retro-olivaris +http://purl.obolibrary.org/obo/UBERON_0035930,retro-olivary nucleus,retro-olivary cell group +http://purl.obolibrary.org/obo/UBERON_0035931,sagittal stratum, +http://purl.obolibrary.org/obo/UBERON_0035932,anterior segment of paracentral lobule,anterior part of paracentral lobule +http://purl.obolibrary.org/obo/UBERON_0035932,anterior segment of paracentral lobule,medial segment of precentral gyrus +http://purl.obolibrary.org/obo/UBERON_0035932,anterior segment of paracentral lobule,"paracentral lobule, anterior part" +http://purl.obolibrary.org/obo/UBERON_0035933,paracentral lobule,lobulus paracentralis +http://purl.obolibrary.org/obo/UBERON_0035934,posterior segment of paracentral lobule,posterior part of paracentral lobule +http://purl.obolibrary.org/obo/UBERON_0035935,Meyer's loop of optic radiation,Meyer's loop +http://purl.obolibrary.org/obo/UBERON_0035935,Meyer's loop of optic radiation,inferior optic radiation +http://purl.obolibrary.org/obo/UBERON_0035937,arcuate fasciculus,arcuate fascicle +http://purl.obolibrary.org/obo/UBERON_0035937,arcuate fasciculus,cerebral arcuate fasciculus +http://purl.obolibrary.org/obo/UBERON_0035937,arcuate fasciculus,fasciculus arcuatus +http://purl.obolibrary.org/obo/UBERON_0035938,amiculum of inferior olive,amiculum of olive +http://purl.obolibrary.org/obo/UBERON_0035938,amiculum of inferior olive,amiculum of the olive +http://purl.obolibrary.org/obo/UBERON_0035938,amiculum of inferior olive,amiculum olivae +http://purl.obolibrary.org/obo/UBERON_0035938,amiculum of inferior olive,amiculum olivare +http://purl.obolibrary.org/obo/UBERON_0035938,amiculum of inferior olive,inferior olive amiculum +http://purl.obolibrary.org/obo/UBERON_0035939,amiculum, +http://purl.obolibrary.org/obo/UBERON_0035940,central medullary reticular nuclear complex,central group (medullary reticular formation) +http://purl.obolibrary.org/obo/UBERON_0035940,central medullary reticular nuclear complex,central medullary reticular complex +http://purl.obolibrary.org/obo/UBERON_0035940,central medullary reticular nuclear complex,central medullary reticular group +http://purl.obolibrary.org/obo/UBERON_0035940,central medullary reticular nuclear complex,nuclei centrales myelencephali +http://purl.obolibrary.org/obo/UBERON_0035941,Kimura membrane, +http://purl.obolibrary.org/obo/UBERON_0035942,space between upper and lower jaws, +http://purl.obolibrary.org/obo/UBERON_0035956,epididymal lumen,epididymis lumen +http://purl.obolibrary.org/obo/UBERON_0035956,epididymal lumen,lumen of epididymis +http://purl.obolibrary.org/obo/UBERON_0035957,antotic pillar, +http://purl.obolibrary.org/obo/UBERON_0035958,preoptic pillar, +http://purl.obolibrary.org/obo/UBERON_0035959,orbital pillar, +http://purl.obolibrary.org/obo/UBERON_0035960,velum feeding organ,velum +http://purl.obolibrary.org/obo/UBERON_0035962,supravaginal part of cervix,portio supravaginalis cervicis +http://purl.obolibrary.org/obo/UBERON_0035963,epithelial lining fluid, +http://purl.obolibrary.org/obo/UBERON_0035964,promontory of tympanic cavity,promontorium tympani +http://purl.obolibrary.org/obo/UBERON_0035964,promontory of tympanic cavity,tympanic cavity promontory +http://purl.obolibrary.org/obo/UBERON_0035965,wall of blood vessel,blood vessel wall +http://purl.obolibrary.org/obo/UBERON_0035965,wall of blood vessel,vascular wall +http://purl.obolibrary.org/obo/UBERON_0035966,scleral lamina cribrosa,lamina cribrosa of sclera +http://purl.obolibrary.org/obo/UBERON_0035966,scleral lamina cribrosa,lamina cribrosa sclerae +http://purl.obolibrary.org/obo/UBERON_0035967,alveolar mucosa, +http://purl.obolibrary.org/obo/UBERON_0035968,bulboid corpuscle, +http://purl.obolibrary.org/obo/UBERON_0035969,encapsulated tactile receptor,encapsulated nerve ending +http://purl.obolibrary.org/obo/UBERON_0035970,calcar avis of the lateral ventricle,hippocampus minor +http://purl.obolibrary.org/obo/UBERON_0035971,postsubiculum, +http://purl.obolibrary.org/obo/UBERON_0035972,interanterodorsal nucleus of the thalamus, +http://purl.obolibrary.org/obo/UBERON_0035973,nucleus incertus,Inc +http://purl.obolibrary.org/obo/UBERON_0035973,nucleus incertus,NI +http://purl.obolibrary.org/obo/UBERON_0035973,nucleus incertus,"NI, CG0, CGalpha, CGbeta" +http://purl.obolibrary.org/obo/UBERON_0035973,nucleus incertus,central Gray pars 0 +http://purl.obolibrary.org/obo/UBERON_0035973,nucleus incertus,central Gray part alpha +http://purl.obolibrary.org/obo/UBERON_0035973,nucleus incertus,charles Watson. - 5th ed.) +http://purl.obolibrary.org/obo/UBERON_0035973,nucleus incertus,nucleus incertus (Streeter) +http://purl.obolibrary.org/obo/UBERON_0035974,anteroventral preoptic nucleus, +http://purl.obolibrary.org/obo/UBERON_0035975,intergeniculate leaflet of the lateral geniculate complex, +http://purl.obolibrary.org/obo/UBERON_0035976,accessory abducens nucleus, +http://purl.obolibrary.org/obo/UBERON_0035977,bed nucleus of the accessory olfactory tract, +http://purl.obolibrary.org/obo/UBERON_0035999,dopaminergic cell groups, +http://purl.obolibrary.org/obo/UBERON_0036000,A8 dopaminergic cell group, +http://purl.obolibrary.org/obo/UBERON_0036001,A14 dopaminergic cell group, +http://purl.obolibrary.org/obo/UBERON_0036002,A15 dopaminergic cell group, +http://purl.obolibrary.org/obo/UBERON_0036003,A9 dopaminergic cell group, +http://purl.obolibrary.org/obo/UBERON_0036004,A17 dopaminergic cell group, +http://purl.obolibrary.org/obo/UBERON_0036005,A10 dopaminergic cell group, +http://purl.obolibrary.org/obo/UBERON_0036006,A11 dopaminergic cell group, +http://purl.obolibrary.org/obo/UBERON_0036007,A13 dopaminergic cell group, +http://purl.obolibrary.org/obo/UBERON_0036008,A16 dopaminergic cell group, +http://purl.obolibrary.org/obo/UBERON_0036009,A12 dopaminergic cell group, +http://purl.obolibrary.org/obo/UBERON_0036010,Aaq dopaminergic cell group, +http://purl.obolibrary.org/obo/UBERON_0036011,telencephalic dopaminergic cell group, +http://purl.obolibrary.org/obo/UBERON_0036012,nucleus of the brachium of the inferior colliculus, +http://purl.obolibrary.org/obo/UBERON_0036013,intergluteal cleft,anal cleft +http://purl.obolibrary.org/obo/UBERON_0036013,intergluteal cleft,crena analis +http://purl.obolibrary.org/obo/UBERON_0036013,intergluteal cleft,crena ani +http://purl.obolibrary.org/obo/UBERON_0036013,intergluteal cleft,crena interglutealis +http://purl.obolibrary.org/obo/UBERON_0036013,intergluteal cleft,intergluteal crease +http://purl.obolibrary.org/obo/UBERON_0036013,intergluteal cleft,natal cleft +http://purl.obolibrary.org/obo/UBERON_0036014,gluteal sulcus,gluteal fold +http://purl.obolibrary.org/obo/UBERON_0036014,gluteal sulcus,sulcus glutealis +http://purl.obolibrary.org/obo/UBERON_0036015,castoreum, +http://purl.obolibrary.org/obo/UBERON_0036016,honey, +http://purl.obolibrary.org/obo/UBERON_0036017,regurgitated substance, +http://purl.obolibrary.org/obo/UBERON_0036018,regurgitated pellet, +http://purl.obolibrary.org/obo/UBERON_0036019,castor sac, +http://purl.obolibrary.org/obo/UBERON_0036043,paravermic lobule X, +http://purl.obolibrary.org/obo/UBERON_0036044,cerebellum vermis lobule VIIAf,VIIAf +http://purl.obolibrary.org/obo/UBERON_0036044,cerebellum vermis lobule VIIAf,lobule VIIAf/crus I (folium and superior semilunar lobule) +http://purl.obolibrary.org/obo/UBERON_0036063,quadrangular lobule, +http://purl.obolibrary.org/obo/UBERON_0036065,cerebellum vermis lobule VIIAt,VIIAt +http://purl.obolibrary.org/obo/UBERON_0036065,cerebellum vermis lobule VIIAt,lobule VIIAt/crus II (tuber and inferior semilunar lobule) +http://purl.obolibrary.org/obo/UBERON_0036066,inferior endocardial cushion,ventral endocardial cushion +http://purl.obolibrary.org/obo/UBERON_0036067,superior endocardial cushion,dorsal endocardial cushion +http://purl.obolibrary.org/obo/UBERON_0036068,subglottis,infraglottic part of larynx +http://purl.obolibrary.org/obo/UBERON_0036068,subglottis,subglottic larynx +http://purl.obolibrary.org/obo/UBERON_0036068,subglottis,subglottic region +http://purl.obolibrary.org/obo/UBERON_0036069,tracheoesophageal fold,esophagotracheal fold +http://purl.obolibrary.org/obo/UBERON_0036070,tracheoesophageal septum,esophagotracheal septum +http://purl.obolibrary.org/obo/UBERON_0036071,diaphragmaticus muscle, +http://purl.obolibrary.org/obo/UBERON_0036072,respiratory primordium epithelium, +http://purl.obolibrary.org/obo/UBERON_0036073,respiratory primordium mesenchyme,respiratory primordium associated mesenchyme +http://purl.obolibrary.org/obo/UBERON_0036074,vein of vestibular aqueduct,vena aqueductus vestibuli +http://purl.obolibrary.org/obo/UBERON_0036074,vein of vestibular aqueduct,vestibular aqueduct vein +http://purl.obolibrary.org/obo/UBERON_0036143,meningeal branch of mandibular nerve,nervus spinosus +http://purl.obolibrary.org/obo/UBERON_0036143,meningeal branch of mandibular nerve,ramus meningeus (Nervus mandibularis) +http://purl.obolibrary.org/obo/UBERON_0036143,meningeal branch of mandibular nerve,ramus meningeus nervus mandibularis +http://purl.obolibrary.org/obo/UBERON_0036144,incisive duct,ductus incisivus +http://purl.obolibrary.org/obo/UBERON_0036145,glymphatic system, +http://purl.obolibrary.org/obo/UBERON_0036146,cardiopharyngeal field, +http://purl.obolibrary.org/obo/UBERON_0036147,oral siphon muscle,buccal siphon muscle +http://purl.obolibrary.org/obo/UBERON_0036148,orovelar muscle, +http://purl.obolibrary.org/obo/UBERON_0036149,suprapubic skin, +http://purl.obolibrary.org/obo/UBERON_0036150,skin appendage follicle,cutaneous appendage follicle +http://purl.obolibrary.org/obo/UBERON_0036150,skin appendage follicle,skin follicle +http://purl.obolibrary.org/obo/UBERON_0036151,diffuse placenta, +http://purl.obolibrary.org/obo/UBERON_0036152,cotyledonary placenta, +http://purl.obolibrary.org/obo/UBERON_0036153,zonary placenta, +http://purl.obolibrary.org/obo/UBERON_0036154,discoid placenta, +http://purl.obolibrary.org/obo/UBERON_0036161,epitheliochorial placenta, +http://purl.obolibrary.org/obo/UBERON_0036162,endotheliochorial placenta, +http://purl.obolibrary.org/obo/UBERON_0036163,hemochorial placenta, +http://purl.obolibrary.org/obo/UBERON_0036164,ambient gyrus,ambiens gyrus +http://purl.obolibrary.org/obo/UBERON_0036164,ambient gyrus,gyrus ambiens +http://purl.obolibrary.org/obo/UBERON_0036167,Sattler's layer, +http://purl.obolibrary.org/obo/UBERON_0036168,Haller's layer, +http://purl.obolibrary.org/obo/UBERON_0036172,palmaris brevis,musculus palmaris brevis +http://purl.obolibrary.org/obo/UBERON_0036172,palmaris brevis,palmaris brevis muscle +http://purl.obolibrary.org/obo/UBERON_0036173,abductor digiti minimi of hand,abductor digiti minimi muscle of hand +http://purl.obolibrary.org/obo/UBERON_0036173,abductor digiti minimi of hand,musculus abductor digiti minimi +http://purl.obolibrary.org/obo/UBERON_0036174,flexor digiti minimi brevis of hand,flexor digiti minimi brevis muscle of hand +http://purl.obolibrary.org/obo/UBERON_0036174,flexor digiti minimi brevis of hand,musculus flexor digiti minimi brevis (manus) +http://purl.obolibrary.org/obo/UBERON_0036176,opponens digiti minimi of hand,musculus opponens digiti minimi (Manus) +http://purl.obolibrary.org/obo/UBERON_0036176,opponens digiti minimi of hand,opponens digiti minimi muscle of hand +http://purl.obolibrary.org/obo/UBERON_0036177,nucleus recessus, +http://purl.obolibrary.org/obo/UBERON_0036185,Sertoli cell barrier, +http://purl.obolibrary.org/obo/UBERON_0036186,fibroelastic connective tissue, +http://purl.obolibrary.org/obo/UBERON_0036212,intertragic incisure,incisura intertragica +http://purl.obolibrary.org/obo/UBERON_0036212,intertragic incisure,intertragal incisure +http://purl.obolibrary.org/obo/UBERON_0036212,intertragic incisure,intertragic incisure +http://purl.obolibrary.org/obo/UBERON_0036212,intertragic incisure,intertragic notch +http://purl.obolibrary.org/obo/UBERON_0036214,rectosigmoid junction, +http://purl.obolibrary.org/obo/UBERON_0036215,anatomical surface region, +http://purl.obolibrary.org/obo/UBERON_0036216,tympanic nerve,jacobson%27s nerve +http://purl.obolibrary.org/obo/UBERON_0036216,tympanic nerve,nerve of jacobson +http://purl.obolibrary.org/obo/UBERON_0036216,tympanic nerve,tympanic +http://purl.obolibrary.org/obo/UBERON_0036216,tympanic nerve,tympanic branch +http://purl.obolibrary.org/obo/UBERON_0036216,tympanic nerve,tympanic branch of the glossopharyngeal +http://purl.obolibrary.org/obo/UBERON_0036217,coelomic fluid, +http://purl.obolibrary.org/obo/UBERON_0036218,secondary prosencephalon, +http://purl.obolibrary.org/obo/UBERON_0036219,ungulate coronary band,corium coronae +http://purl.obolibrary.org/obo/UBERON_0036219,ungulate coronary band,coronary band +http://purl.obolibrary.org/obo/UBERON_0036224,corticobulbar and corticospinal tracts, +http://purl.obolibrary.org/obo/UBERON_0036225,respiratory system gland, +http://purl.obolibrary.org/obo/UBERON_0036242,post-embryonic notochord, +http://purl.obolibrary.org/obo/UBERON_0036243,vaginal fluid, +http://purl.obolibrary.org/obo/UBERON_0036244,secretion of serous membrane,serous sac fluid +http://purl.obolibrary.org/obo/UBERON_0036245,parenchyma of mammary gland,lactiferous gland parenchyma +http://purl.obolibrary.org/obo/UBERON_0036245,parenchyma of mammary gland,mammary gland parenchyma +http://purl.obolibrary.org/obo/UBERON_0036245,parenchyma of mammary gland,parenchyma of lactiferous gland +http://purl.obolibrary.org/obo/UBERON_0036246,incudostapedial joint,articulatio incudostapedialis +http://purl.obolibrary.org/obo/UBERON_0036246,incudostapedial joint,incudostapedial articulation +http://purl.obolibrary.org/obo/UBERON_0036247,incudomallear joint,articulatio incudomallearis +http://purl.obolibrary.org/obo/UBERON_0036247,incudomallear joint,incudomallear articulation +http://purl.obolibrary.org/obo/UBERON_0036247,incudomallear joint,incudomalleolar joint +http://purl.obolibrary.org/obo/UBERON_0036248,joint of auditory ossicle,auditory ossicle joint +http://purl.obolibrary.org/obo/UBERON_0036248,joint of auditory ossicle,auditory ossicles joint +http://purl.obolibrary.org/obo/UBERON_0036248,joint of auditory ossicle,joint of auditory ossicles +http://purl.obolibrary.org/obo/UBERON_0036249,zona pectinata of basilar membrane of cochlea,pectinate zone of basilar membrane +http://purl.obolibrary.org/obo/UBERON_0036249,zona pectinata of basilar membrane of cochlea,pectinate zone of organ of corti +http://purl.obolibrary.org/obo/UBERON_0036250,zone of basilar membrane of cochlea, +http://purl.obolibrary.org/obo/UBERON_0036252,interdigital space, +http://purl.obolibrary.org/obo/UBERON_0036253,orifice of skull,cranial orifice +http://purl.obolibrary.org/obo/UBERON_0036253,orifice of skull,skull orifice +http://purl.obolibrary.org/obo/UBERON_0036254,piriform aperture,apertura piriformis +http://purl.obolibrary.org/obo/UBERON_0036255,interoceptive system, +http://purl.obolibrary.org/obo/UBERON_0036256,iliac lymph sac, +http://purl.obolibrary.org/obo/UBERON_0036259,cardial lymph propulsor, +http://purl.obolibrary.org/obo/UBERON_0036260,embryonic cisterna chyli, +http://purl.obolibrary.org/obo/UBERON_0036261,accessory lymph sac, +http://purl.obolibrary.org/obo/UBERON_0036262,uterine ligament, +http://purl.obolibrary.org/obo/UBERON_0036263,supraglottic part of larynx,supraglottic larynx +http://purl.obolibrary.org/obo/UBERON_0036263,supraglottic part of larynx,supraglottis +http://purl.obolibrary.org/obo/UBERON_0036264,zygomaticotemporal nerve,ramus zygomaticotemporalis (Nervus zygomaticus) +http://purl.obolibrary.org/obo/UBERON_0036264,zygomaticotemporal nerve,ramus zygomaticotemporalis nervus zygomatici +http://purl.obolibrary.org/obo/UBERON_0036264,zygomaticotemporal nerve,zygomaticotemporal +http://purl.obolibrary.org/obo/UBERON_0036264,zygomaticotemporal nerve,zygomaticotemporal branch +http://purl.obolibrary.org/obo/UBERON_0036264,zygomaticotemporal nerve,zygomaticotemporal branch of zygomatic nerve +http://purl.obolibrary.org/obo/UBERON_0036265,conjunctival papilla,conjunctival papillae +http://purl.obolibrary.org/obo/UBERON_0036266,pars interarticularis of vertebra,pars interarticularis +http://purl.obolibrary.org/obo/UBERON_0036267,vulval vein, +http://purl.obolibrary.org/obo/UBERON_0036268,pelvic vein, +http://purl.obolibrary.org/obo/UBERON_0036269,penis blood vessel, +http://purl.obolibrary.org/obo/UBERON_0036270,epihyoideum, +http://purl.obolibrary.org/obo/UBERON_0036271,omphalopleure, +http://purl.obolibrary.org/obo/UBERON_0036272,bilaminar omphalopleure,non-vascular bilaminar omphalopleure +http://purl.obolibrary.org/obo/UBERON_0036273,trilaminar omphalopleure,choriovitelline membrane +http://purl.obolibrary.org/obo/UBERON_0036273,trilaminar omphalopleure,vascular TOM +http://purl.obolibrary.org/obo/UBERON_0036273,trilaminar omphalopleure,vascular trilaminar omphalopleure +http://purl.obolibrary.org/obo/UBERON_0036274,tonsillar pillar, +http://purl.obolibrary.org/obo/UBERON_0036285,wall of left ventricle,left ventricular wall +http://purl.obolibrary.org/obo/UBERON_0036286,wall of right ventricle,right ventricular wall +http://purl.obolibrary.org/obo/UBERON_0036288,anterior wall of left ventricle, +http://purl.obolibrary.org/obo/UBERON_0036289,anterior wall of right ventricle, +http://purl.obolibrary.org/obo/UBERON_0036290,myocardium of anterior wall of left ventricle, +http://purl.obolibrary.org/obo/UBERON_0036291,myocardium of anterior wall of right ventricle, +http://purl.obolibrary.org/obo/UBERON_0036292,adnexa of uterus,uterine adnexa +http://purl.obolibrary.org/obo/UBERON_0036293,oral frenulum,oral frenula +http://purl.obolibrary.org/obo/UBERON_0036293,oral frenulum,oral frenulum +http://purl.obolibrary.org/obo/UBERON_0036294,mucosa of lip,labial mucosa +http://purl.obolibrary.org/obo/UBERON_0036295,renal pelvis/ureter,renal pelvis and ureter +http://purl.obolibrary.org/obo/UBERON_0036295,renal pelvis/ureter,renal pelvis plus ureter +http://purl.obolibrary.org/obo/UBERON_0036300,tributary of central retinal vein,central retinal venous tributary +http://purl.obolibrary.org/obo/UBERON_0036301,vasculature of spleen, +http://purl.obolibrary.org/obo/UBERON_0036302,vasculature of central nervous system plus retina, +http://purl.obolibrary.org/obo/UBERON_0036303,vasculature of central nervous system, +http://purl.obolibrary.org/obo/UBERON_0036304,anatomical border, +http://purl.obolibrary.org/obo/UBERON_0036328,wall of coronary artery,coronary arterial wall +http://purl.obolibrary.org/obo/UBERON_0036337,wall of appendix,appendix wall +http://purl.obolibrary.org/obo/UBERON_0036337,wall of appendix,wall of vermiform appendix +http://purl.obolibrary.org/obo/UBERON_0036343,wall of gallbladder,gallbladder wall +http://purl.obolibrary.org/obo/UBERON_0036351,wall of brachiocephalic artery,brachiocephalic arterial wall +http://purl.obolibrary.org/obo/UBERON_0036352,wall of subclavian artery,subclavian arterial wall +http://purl.obolibrary.org/obo/UBERON_0036362,wall of anal canal,anal canal wall +http://purl.obolibrary.org/obo/UBERON_0036375,wall of right ureter,right ureteral wall +http://purl.obolibrary.org/obo/UBERON_0036376,wall of left ureter,left ureteral wall +http://purl.obolibrary.org/obo/UBERON_0036422,wall of pulmonary artery,pulmonary arterial wall +http://purl.obolibrary.org/obo/UBERON_0036441,wall of uterine tube,uterine tube wall +http://purl.obolibrary.org/obo/UBERON_0036441,wall of uterine tube,wall of fallopian tube +http://purl.obolibrary.org/obo/UBERON_0036441,wall of uterine tube,wall of oviduct +http://purl.obolibrary.org/obo/UBERON_0036521,wall of urethra,urethral wall +http://purl.obolibrary.org/obo/UBERON_0036523,wall of vagina,vaginal wall +http://purl.obolibrary.org/obo/UBERON_0036553,wall of synovial tendon sheath, +http://purl.obolibrary.org/obo/UBERON_0036654,wall of lateral ventricle, +http://purl.obolibrary.org/obo/UBERON_0036655,wall of cerebral aqueduct, +http://purl.obolibrary.org/obo/UBERON_0036656,wall of third ventricle, +http://purl.obolibrary.org/obo/UBERON_0036657,wall of fourth ventricle, +http://purl.obolibrary.org/obo/UBERON_0036658,wall of central canal of spinal cord,wall of central canal +http://purl.obolibrary.org/obo/UBERON_0036661,wall of ventricular system of brain, +http://purl.obolibrary.org/obo/UBERON_0036925,wall of eyeball,eyeball wall +http://purl.obolibrary.org/obo/UBERON_0036990,wall of pharyngotympanic tube,pharyngotympanic tube wall +http://purl.obolibrary.org/obo/UBERON_0037089,wall of orbit,orbit wall +http://purl.obolibrary.org/obo/UBERON_0037094,wall of common carotid artery,common carotid arterial wall +http://purl.obolibrary.org/obo/UBERON_0037144,wall of heart,cardiac wall +http://purl.obolibrary.org/obo/UBERON_0037191,wall of membranous labyrinth,membranous labyrinth wall +http://purl.obolibrary.org/obo/UBERON_0037237,wall of lacrimal duct,lacrimal ductal wall +http://purl.obolibrary.org/obo/UBERON_0037447,wall of male urethra,male urethral wall +http://purl.obolibrary.org/obo/UBERON_0037455,wall of female urethra,female urethral wall +http://purl.obolibrary.org/obo/UBERON_0037458,hair of neck,neck hair +http://purl.obolibrary.org/obo/UBERON_0037459,hair of limb,limb hair +http://purl.obolibrary.org/obo/UBERON_0037461,primary hair,downy hair +http://purl.obolibrary.org/obo/UBERON_0037461,primary hair,lanugo +http://purl.obolibrary.org/obo/UBERON_0037462,vellus hair, +http://purl.obolibrary.org/obo/UBERON_0037463,terminal hair, +http://purl.obolibrary.org/obo/UBERON_0037464,androgenic hair, +http://purl.obolibrary.org/obo/UBERON_0037465,catagen hair, +http://purl.obolibrary.org/obo/UBERON_0037466,telogen hair, +http://purl.obolibrary.org/obo/UBERON_0037467,anagen hair, +http://purl.obolibrary.org/obo/UBERON_0037468,waist, +http://purl.obolibrary.org/obo/UBERON_0037480,supramammary lymph node,supramammary node +http://purl.obolibrary.org/obo/UBERON_0037494,paracardial gastric lymph node,aJCC level 16 +http://purl.obolibrary.org/obo/UBERON_0037494,paracardial gastric lymph node,lymph node ring of cardia of stomach +http://purl.obolibrary.org/obo/UBERON_0037494,paracardial gastric lymph node,paracardial gastric node +http://purl.obolibrary.org/obo/UBERON_0037494,paracardial gastric lymph node,paracardial lymph node +http://purl.obolibrary.org/obo/UBERON_0037500,subscapular axillary lymph node,nodus lymphaticus subscapularis axillae +http://purl.obolibrary.org/obo/UBERON_0037500,subscapular axillary lymph node,posterior axillary node +http://purl.obolibrary.org/obo/UBERON_0037500,subscapular axillary lymph node,subcapsular node +http://purl.obolibrary.org/obo/UBERON_0037501,pectoral axillary lymph node,anterior axillary lymph node +http://purl.obolibrary.org/obo/UBERON_0037501,pectoral axillary lymph node,nodus lymphaticus pectoralis axillae +http://purl.obolibrary.org/obo/UBERON_0037501,pectoral axillary lymph node,pectoral lymph node +http://purl.obolibrary.org/obo/UBERON_0037502,central axillary lymph node,central node +http://purl.obolibrary.org/obo/UBERON_0037502,central axillary lymph node,nodus lymphaticus centralis axillae +http://purl.obolibrary.org/obo/UBERON_0037503,apical axillary lymph node,nodus lymphaticus apicalis axillae +http://purl.obolibrary.org/obo/UBERON_0037514,intermediate mesenteric lymph node,central mesenteric lymph node +http://purl.obolibrary.org/obo/UBERON_0037514,intermediate mesenteric lymph node,central superior mesenteric lymph node +http://purl.obolibrary.org/obo/UBERON_0037514,intermediate mesenteric lymph node,intermediate lymph node of small intestine +http://purl.obolibrary.org/obo/UBERON_0037514,intermediate mesenteric lymph node,intermediate mesenteric node +http://purl.obolibrary.org/obo/UBERON_0037515,juxta-arterial mesenteric lymph node,juxta-arterial mesenteric node +http://purl.obolibrary.org/obo/UBERON_0037518,epicolic lymph node,epicolic node +http://purl.obolibrary.org/obo/UBERON_0037521,preterminal colic lymph node,preterminal colic node +http://purl.obolibrary.org/obo/UBERON_0037522,ileal lymph node,ileal mesentary lymph node +http://purl.obolibrary.org/obo/UBERON_0037522,ileal lymph node,ileal node +http://purl.obolibrary.org/obo/UBERON_0037527,superior pancreaticoduodenal lymph node,superior pancreaticoduodenal node +http://purl.obolibrary.org/obo/UBERON_0037528,inferior pancreaticoduodenal lymph node,inferior pancreaticoduodenal node +http://purl.obolibrary.org/obo/UBERON_0037530,inferior pancreatic lymph node,inferior pancreatic node +http://purl.obolibrary.org/obo/UBERON_0037530,inferior pancreatic lymph node,inferior pancreatiosplenic lymph node +http://purl.obolibrary.org/obo/UBERON_0037530,inferior pancreatic lymph node,jPS 18 node +http://purl.obolibrary.org/obo/UBERON_0037530,inferior pancreatic lymph node,jPS no. 18 node +http://purl.obolibrary.org/obo/UBERON_0037530,inferior pancreatic lymph node,no. 18 pancreatic lymph node +http://purl.obolibrary.org/obo/UBERON_0037530,inferior pancreatic lymph node,no. 18 pancreaticoduodenal lymph node +http://purl.obolibrary.org/obo/UBERON_0037531,intestinal lymph node,intestinal node +http://purl.obolibrary.org/obo/UBERON_0037531,intestinal lymph node,visceral lumbar lymph node +http://purl.obolibrary.org/obo/UBERON_0037532,medial common iliac lymph node,medial common iliac node +http://purl.obolibrary.org/obo/UBERON_0037533,intermediate common iliac lymph node,intermediate common iliac node +http://purl.obolibrary.org/obo/UBERON_0037534,lateral common iliac lymph node,lateral common iliac node +http://purl.obolibrary.org/obo/UBERON_0037535,subaortic common iliac lymph node,subaortic common iliac node +http://purl.obolibrary.org/obo/UBERON_0037535,subaortic common iliac lymph node,subaortic lymph node +http://purl.obolibrary.org/obo/UBERON_0037536,promontory lymph node,promontory node +http://purl.obolibrary.org/obo/UBERON_0037538,medial external iliac lymph node,medial external iliac node +http://purl.obolibrary.org/obo/UBERON_0037539,intermediate external iliac lymph node,intermediate external iliac node +http://purl.obolibrary.org/obo/UBERON_0037540,lateral external iliac lymph node,lateral external iliac node +http://purl.obolibrary.org/obo/UBERON_0037541,interiliac lymph node,interiliac node +http://purl.obolibrary.org/obo/UBERON_0037548,superior gluteal lymph node,superior gluteal node +http://purl.obolibrary.org/obo/UBERON_0037549,inferior gluteal lymph node,inferior gluteal node +http://purl.obolibrary.org/obo/UBERON_0037559,anorectal lymph node, +http://purl.obolibrary.org/obo/UBERON_0037560,superficial axillary lymph node, +http://purl.obolibrary.org/obo/UBERON_0037566,diaphragmatic lymph node,diaphragmatic node +http://purl.obolibrary.org/obo/UBERON_0037580,left gastric lymph node,aJCC level 17L node +http://purl.obolibrary.org/obo/UBERON_0037580,left gastric lymph node,left gastric node +http://purl.obolibrary.org/obo/UBERON_0037590,lateral axillary lymph node,brachial axillary node +http://purl.obolibrary.org/obo/UBERON_0037590,lateral axillary lymph node,humeral node +http://purl.obolibrary.org/obo/UBERON_0037590,lateral axillary lymph node,nodus lymphaticus brachialis axillae +http://purl.obolibrary.org/obo/UBERON_0037601,left parietal lumbar lymph node,left parietal lumbar node +http://purl.obolibrary.org/obo/UBERON_0037614,appendicular lymph node,appendicular node +http://purl.obolibrary.org/obo/UBERON_0037615,pararectal lymph node,pararectal node +http://purl.obolibrary.org/obo/UBERON_0037615,pararectal lymph node,perirectal lymph node +http://purl.obolibrary.org/obo/UBERON_0037615,pararectal lymph node,rectal lymph node +http://purl.obolibrary.org/obo/UBERON_0037722,right retropharyngeal lymph node, +http://purl.obolibrary.org/obo/UBERON_0037723,left retropharyngeal lymph node, +http://purl.obolibrary.org/obo/UBERON_0037763,lateral superior deep cervical lymph node, +http://purl.obolibrary.org/obo/UBERON_0037764,anterior superior deep cervical lymph node, +http://purl.obolibrary.org/obo/UBERON_0037765,lateral inferior deep cervical lymph node, +http://purl.obolibrary.org/obo/UBERON_0037766,anterior inferior deep cervical lymph node, +http://purl.obolibrary.org/obo/UBERON_0037787,right occipital lymph node, +http://purl.obolibrary.org/obo/UBERON_0037788,left occipital lymph node, +http://purl.obolibrary.org/obo/UBERON_0037789,right apical axillary lymph node, +http://purl.obolibrary.org/obo/UBERON_0037790,left apical axillary lymph node, +http://purl.obolibrary.org/obo/UBERON_0037793,right subscapular axillary lymph node, +http://purl.obolibrary.org/obo/UBERON_0037794,left subscapular axillary lymph node, +http://purl.obolibrary.org/obo/UBERON_0037795,right pectoral axillary lymph node, +http://purl.obolibrary.org/obo/UBERON_0037796,left pectoral axillary lymph node, +http://purl.obolibrary.org/obo/UBERON_0037797,right central axillary lymph node, +http://purl.obolibrary.org/obo/UBERON_0037798,left central axillary lymph node, +http://purl.obolibrary.org/obo/UBERON_0037865,jugular lymph node, +http://purl.obolibrary.org/obo/UBERON_0037995,supramandibular lymph node, +http://purl.obolibrary.org/obo/UBERON_0037998,external jugular lymph node, +http://purl.obolibrary.org/obo/UBERON_0038001,sternal lymph node, +http://purl.obolibrary.org/obo/UBERON_0038002,upper intercostal lymph node, +http://purl.obolibrary.org/obo/UBERON_0038003,lower intercostal lymph node, +http://purl.obolibrary.org/obo/UBERON_0038037,subclavian lymph node, +http://purl.obolibrary.org/obo/UBERON_0038048,antebrachial lymph node, +http://purl.obolibrary.org/obo/UBERON_0038053,cardiophrenic angle lymph node,cardiophrenic angle node +http://purl.obolibrary.org/obo/UBERON_0038054,retrocrural lymph node,retrocrural node +http://purl.obolibrary.org/obo/UBERON_0038093,jejunal lymph node,jejunal mesentary lymph node +http://purl.obolibrary.org/obo/UBERON_0038094,inferior rectal lymph node, +http://purl.obolibrary.org/obo/UBERON_0038124,medial diaphragmatic lymph node,medial diaphragmatic node +http://purl.obolibrary.org/obo/UBERON_0038124,medial diaphragmatic lymph node,middle diaphragmatic lymph node +http://purl.obolibrary.org/obo/UBERON_0038137,parietal pre-aortic lymph node,parietal pre-aortic node +http://purl.obolibrary.org/obo/UBERON_0038137,parietal pre-aortic lymph node,parietal preaortic node +http://purl.obolibrary.org/obo/UBERON_0038139,retro-aortic lymph node,post-aortic lymph node +http://purl.obolibrary.org/obo/UBERON_0038139,retro-aortic lymph node,postaortic lymph node +http://purl.obolibrary.org/obo/UBERON_0038139,retro-aortic lymph node,retro-aortic node +http://purl.obolibrary.org/obo/UBERON_0038139,retro-aortic lymph node,retroaortic lymph node +http://purl.obolibrary.org/obo/UBERON_0038587,paracardiac lymph node,paracardiac node +http://purl.obolibrary.org/obo/UBERON_0038632,pericardial lymph node, +http://purl.obolibrary.org/obo/UBERON_0038633,aortopulmonary lymph node,5 thoracic lymph node +http://purl.obolibrary.org/obo/UBERON_0038633,aortopulmonary lymph node,aortopulmonary window lymph node +http://purl.obolibrary.org/obo/UBERON_0038633,aortopulmonary lymph node,mediastinal lymph node station # 5 +http://purl.obolibrary.org/obo/UBERON_0038633,aortopulmonary lymph node,station 5 N2 lymph node +http://purl.obolibrary.org/obo/UBERON_0038633,aortopulmonary lymph node,station 5 lymph node +http://purl.obolibrary.org/obo/UBERON_0038634,para-aortic thoracic lymph node,6 thoracic lymph node +http://purl.obolibrary.org/obo/UBERON_0038634,para-aortic thoracic lymph node,pre-aortic No. 6 lymph node +http://purl.obolibrary.org/obo/UBERON_0038634,para-aortic thoracic lymph node,station 6 N2 lymph node +http://purl.obolibrary.org/obo/UBERON_0038634,para-aortic thoracic lymph node,station 6 lymph node +http://purl.obolibrary.org/obo/UBERON_0038635,interlobar lymph node,11 R+L thoracic +http://purl.obolibrary.org/obo/UBERON_0038635,interlobar lymph node,11 thoracic lymph node +http://purl.obolibrary.org/obo/UBERON_0038635,interlobar lymph node,station 11 N1 lymph node +http://purl.obolibrary.org/obo/UBERON_0038635,interlobar lymph node,station 11 lymph node +http://purl.obolibrary.org/obo/UBERON_0038638,lobar lymph node,12R+L thoracic lymph node +http://purl.obolibrary.org/obo/UBERON_0038638,lobar lymph node,station 12 N1 lymph node +http://purl.obolibrary.org/obo/UBERON_0038638,lobar lymph node,station 12 lymph node +http://purl.obolibrary.org/obo/UBERON_0038641,segmental lymph node,13R+L thoracic lymph node +http://purl.obolibrary.org/obo/UBERON_0038641,segmental lymph node,station 13 N1 lymph node +http://purl.obolibrary.org/obo/UBERON_0038641,segmental lymph node,station 13 lymph node +http://purl.obolibrary.org/obo/UBERON_0038647,lymph node of inferior pulmonary ligament,9R+L thoracic lymph node +http://purl.obolibrary.org/obo/UBERON_0038647,lymph node of inferior pulmonary ligament,inferior pulmonary ligament lymph node +http://purl.obolibrary.org/obo/UBERON_0038647,lymph node of inferior pulmonary ligament,node of inferior pulmonary ligament +http://purl.obolibrary.org/obo/UBERON_0038647,lymph node of inferior pulmonary ligament,pulmonary ligament lymph node +http://purl.obolibrary.org/obo/UBERON_0038647,lymph node of inferior pulmonary ligament,station 9 N2 lymph node +http://purl.obolibrary.org/obo/UBERON_0038647,lymph node of inferior pulmonary ligament,station 9 lymph node +http://purl.obolibrary.org/obo/UBERON_0038651,superior mediastinal lymph node, +http://purl.obolibrary.org/obo/UBERON_0038684,superior left gastric lymph node,jPS 7 node +http://purl.obolibrary.org/obo/UBERON_0038684,superior left gastric lymph node,jPS no. 7 node +http://purl.obolibrary.org/obo/UBERON_0038684,superior left gastric lymph node,no. 7 left gastric lymph node +http://purl.obolibrary.org/obo/UBERON_0038684,superior left gastric lymph node,superior left gastric node +http://purl.obolibrary.org/obo/UBERON_0038685,inferior left gastric lymph node,inferior left gastric node +http://purl.obolibrary.org/obo/UBERON_0038685,inferior left gastric lymph node,jPS 3 node +http://purl.obolibrary.org/obo/UBERON_0038685,inferior left gastric lymph node,jPS No. 3 node +http://purl.obolibrary.org/obo/UBERON_0038687,visceral lymph node of abdomen, +http://purl.obolibrary.org/obo/UBERON_0038691,common hepatic lymph node, +http://purl.obolibrary.org/obo/UBERON_0038694,hepatoportal lymph node,jPS 12p node +http://purl.obolibrary.org/obo/UBERON_0038694,hepatoportal lymph node,jPS No. 12p node +http://purl.obolibrary.org/obo/UBERON_0038694,hepatoportal lymph node,no. 12p hepatic lymph node +http://purl.obolibrary.org/obo/UBERON_0038694,hepatoportal lymph node,periportal lymph node +http://purl.obolibrary.org/obo/UBERON_0038694,hepatoportal lymph node,porta hepatis lymph node +http://purl.obolibrary.org/obo/UBERON_0038694,hepatoportal lymph node,portahepatic lymph node +http://purl.obolibrary.org/obo/UBERON_0038695,proximal superior pancreatic lymph node,jPS 11p node +http://purl.obolibrary.org/obo/UBERON_0038695,proximal superior pancreatic lymph node,jPS no. 11p node +http://purl.obolibrary.org/obo/UBERON_0038695,proximal superior pancreatic lymph node,no. 11p superior pancreatic lymph node +http://purl.obolibrary.org/obo/UBERON_0038695,proximal superior pancreatic lymph node,proximal superior pancreaticosplenic lymph node +http://purl.obolibrary.org/obo/UBERON_0038696,distal superior pancreatic lymph node,distal superior pancreaticosplenic lymph node +http://purl.obolibrary.org/obo/UBERON_0038696,distal superior pancreatic lymph node,jPS 11d node +http://purl.obolibrary.org/obo/UBERON_0038696,distal superior pancreatic lymph node,jPS no. 11d node +http://purl.obolibrary.org/obo/UBERON_0038696,distal superior pancreatic lymph node,no. 11d superior pancreatic lymph node +http://purl.obolibrary.org/obo/UBERON_0038697,anterior superior pancreaticoduodenal lymph node,anterosuperior pancreaticoduodenal lymph node +http://purl.obolibrary.org/obo/UBERON_0038697,anterior superior pancreaticoduodenal lymph node,jPS 17a node +http://purl.obolibrary.org/obo/UBERON_0038697,anterior superior pancreaticoduodenal lymph node,jPS no. 17a node +http://purl.obolibrary.org/obo/UBERON_0038697,anterior superior pancreaticoduodenal lymph node,no. 17a pancreaticoduodenal lymph node +http://purl.obolibrary.org/obo/UBERON_0038698,posterior superior pancreaticoduodenal lymph node,jPS 13a node +http://purl.obolibrary.org/obo/UBERON_0038698,posterior superior pancreaticoduodenal lymph node,jPS no. 13a node +http://purl.obolibrary.org/obo/UBERON_0038698,posterior superior pancreaticoduodenal lymph node,no. 13a pancreaticoduodenal lymph node +http://purl.obolibrary.org/obo/UBERON_0038698,posterior superior pancreaticoduodenal lymph node,posterosuperior pancreaticoduodenal lymph node +http://purl.obolibrary.org/obo/UBERON_0038699,anterior inferior pancreaticoduodenal lymph node,anteroinferior pancreaticoduodenal lymph node +http://purl.obolibrary.org/obo/UBERON_0038699,anterior inferior pancreaticoduodenal lymph node,jPS 17b node +http://purl.obolibrary.org/obo/UBERON_0038699,anterior inferior pancreaticoduodenal lymph node,jPS no. 17b node +http://purl.obolibrary.org/obo/UBERON_0038699,anterior inferior pancreaticoduodenal lymph node,no. 17b pancreaticoduodenal lymph node +http://purl.obolibrary.org/obo/UBERON_0038700,posterior inferior pancreaticoduodenal lymph node,jPS 13b node +http://purl.obolibrary.org/obo/UBERON_0038700,posterior inferior pancreaticoduodenal lymph node,jPS no. 13b node +http://purl.obolibrary.org/obo/UBERON_0038700,posterior inferior pancreaticoduodenal lymph node,no. 13b pancreaticoduodenal lymph node +http://purl.obolibrary.org/obo/UBERON_0038700,posterior inferior pancreaticoduodenal lymph node,posteroinferior pancreaticoduodenal lymph node +http://purl.obolibrary.org/obo/UBERON_0038707,anterior pancreaticoduodenal lymph node,jPS 17 node +http://purl.obolibrary.org/obo/UBERON_0038707,anterior pancreaticoduodenal lymph node,no. 17 pancreaticoduodenal lymph node +http://purl.obolibrary.org/obo/UBERON_0038727,juxta-intestinal mesenteric lymph node,mural mesenteric lymph node +http://purl.obolibrary.org/obo/UBERON_0038727,juxta-intestinal mesenteric lymph node,para-intestinal mesenteric lymph node +http://purl.obolibrary.org/obo/UBERON_0038734,visceral pre-aortic lymph node,visceral para-aortic lymph node +http://purl.obolibrary.org/obo/UBERON_0038734,visceral pre-aortic lymph node,visceral pre-aortic node +http://purl.obolibrary.org/obo/UBERON_0038734,visceral pre-aortic lymph node,visceral preaortic lymph node +http://purl.obolibrary.org/obo/UBERON_0038735,juxta-arterial jejunal lymph node, +http://purl.obolibrary.org/obo/UBERON_0038736,juxta-arterial ileal lymph node, +http://purl.obolibrary.org/obo/UBERON_0038737,intermediate jejunal lymph node, +http://purl.obolibrary.org/obo/UBERON_0038738,intermediate ileal lymph node, +http://purl.obolibrary.org/obo/UBERON_0038746,gastro-epiploic lymph node,gastro-epiploic node +http://purl.obolibrary.org/obo/UBERON_0038746,gastro-epiploic lymph node,gastro-omental lymph node +http://purl.obolibrary.org/obo/UBERON_0038746,gastro-epiploic lymph node,gastro-omental node +http://purl.obolibrary.org/obo/UBERON_0038746,gastro-epiploic lymph node,jPS 4 node +http://purl.obolibrary.org/obo/UBERON_0038746,gastro-epiploic lymph node,jPS No. 4 node +http://purl.obolibrary.org/obo/UBERON_0038746,gastro-epiploic lymph node,lymph node of greater curvature of stomach +http://purl.obolibrary.org/obo/UBERON_0038784,pararectal lymph node of pelvis, +http://purl.obolibrary.org/obo/UBERON_0038787,superior ileocolic lymph node, +http://purl.obolibrary.org/obo/UBERON_0038796,lymph node along bile duct,biliary lymph node +http://purl.obolibrary.org/obo/UBERON_0038796,lymph node along bile duct,jPS 12b node +http://purl.obolibrary.org/obo/UBERON_0038796,lymph node along bile duct,jPS No. 12b node +http://purl.obolibrary.org/obo/UBERON_0038796,lymph node along bile duct,no. 12b hepatic lymph node +http://purl.obolibrary.org/obo/UBERON_0038818,posterior ancreaticoduodenal lymph node,jPS 13 node +http://purl.obolibrary.org/obo/UBERON_0038818,posterior ancreaticoduodenal lymph node,no. 13 pancreaticoduodenal lymph node +http://purl.obolibrary.org/obo/UBERON_0038849,craniocervical lymph node,head and neck lymph node +http://purl.obolibrary.org/obo/UBERON_0038849,craniocervical lymph node,lymph node of head and neck +http://purl.obolibrary.org/obo/UBERON_0038853,superficial popliteal lymph node, +http://purl.obolibrary.org/obo/UBERON_0038854,deep popliteal lymph node, +http://purl.obolibrary.org/obo/UBERON_0038855,superior medial inguinal lymph node,superomedial node +http://purl.obolibrary.org/obo/UBERON_0038856,superior lateral inguinal lymph node,superolateral node +http://purl.obolibrary.org/obo/UBERON_0038857,inferior inguinal lymph node,inferior inguinal node +http://purl.obolibrary.org/obo/UBERON_0038857,inferior inguinal lymph node,subinguinal lymph node +http://purl.obolibrary.org/obo/UBERON_0038859,intermediate deep inguinal lymph node,cloquet's gland +http://purl.obolibrary.org/obo/UBERON_0038859,intermediate deep inguinal lymph node,cloquet's node +http://purl.obolibrary.org/obo/UBERON_0038859,intermediate deep inguinal lymph node,intermediate deep inguinal node +http://purl.obolibrary.org/obo/UBERON_0038859,intermediate deep inguinal lymph node,intermediate inguinal lymph node +http://purl.obolibrary.org/obo/UBERON_0038859,intermediate deep inguinal lymph node,middle inguinal node +http://purl.obolibrary.org/obo/UBERON_0038859,intermediate deep inguinal lymph node,nodus inguinales profundi intermedius +http://purl.obolibrary.org/obo/UBERON_0038859,intermediate deep inguinal lymph node,nodus lymphoideus inguinales profundi intermedius +http://purl.obolibrary.org/obo/UBERON_0038860,distal deep inguinal lymph node,distal deep inguinal node +http://purl.obolibrary.org/obo/UBERON_0038860,distal deep inguinal lymph node,distal inguinal lymph node +http://purl.obolibrary.org/obo/UBERON_0038860,distal deep inguinal lymph node,nodus inguinales profundi distalis +http://purl.obolibrary.org/obo/UBERON_0038860,distal deep inguinal lymph node,nodus lymphoideus inguinales profundi distalis +http://purl.obolibrary.org/obo/UBERON_0038861,tibial lymph node,tIbial node +http://purl.obolibrary.org/obo/UBERON_0038864,fibular lymph node,fibular node +http://purl.obolibrary.org/obo/UBERON_0038864,fibular lymph node,nodus fibularis +http://purl.obolibrary.org/obo/UBERON_0038864,fibular lymph node,nodus lymphoideus fibularis +http://purl.obolibrary.org/obo/UBERON_0038864,fibular lymph node,peroneal lymph node +http://purl.obolibrary.org/obo/UBERON_0038864,fibular lymph node,peroneal node +http://purl.obolibrary.org/obo/UBERON_0038867,interpectoral lymph node,interpectoral node +http://purl.obolibrary.org/obo/UBERON_0038868,paramammary lymph node,paramammary node +http://purl.obolibrary.org/obo/UBERON_0038870,cubital lymph node,cubital node +http://purl.obolibrary.org/obo/UBERON_0038871,supratrochlear lymph node,supra-epicondylar lymph node +http://purl.obolibrary.org/obo/UBERON_0038871,supratrochlear lymph node,supratrochlear node +http://purl.obolibrary.org/obo/UBERON_0038878,lateral diaphragmatic lymph node,lateral diaphragmatic node +http://purl.obolibrary.org/obo/UBERON_0038879,anterior diaphragmatic lymph node,anterior diaphragmatic node +http://purl.obolibrary.org/obo/UBERON_0038882,posterior diaphragmatic lymph node,posterior diaphragmatic node +http://purl.obolibrary.org/obo/UBERON_0038885,brachiocephalic lymph node,brachiocephalic node +http://purl.obolibrary.org/obo/UBERON_0038885,brachiocephalic lymph node,innominate lymph node +http://purl.obolibrary.org/obo/UBERON_0038888,posterior mediastinal lymph node,nodus mediastinale posteriore lymphaticus +http://purl.obolibrary.org/obo/UBERON_0038888,posterior mediastinal lymph node,posterior mediastinal node +http://purl.obolibrary.org/obo/UBERON_0038894,paratracheal lymph node,cervical paratracheal lymph node +http://purl.obolibrary.org/obo/UBERON_0038894,paratracheal lymph node,nodus paratracheale lymphaticus +http://purl.obolibrary.org/obo/UBERON_0038894,paratracheal lymph node,paratracheal node +http://purl.obolibrary.org/obo/UBERON_0038894,paratracheal lymph node,tracheal lymph node +http://purl.obolibrary.org/obo/UBERON_0038897,superior tracheobronchial lymph node,4 thoracic lymph node +http://purl.obolibrary.org/obo/UBERON_0038897,superior tracheobronchial lymph node,4R+L thoracic lymph node +http://purl.obolibrary.org/obo/UBERON_0038897,superior tracheobronchial lymph node,lower paratracheal lymph node +http://purl.obolibrary.org/obo/UBERON_0038897,superior tracheobronchial lymph node,nodus tracheobronchiale superiore lymphaticus +http://purl.obolibrary.org/obo/UBERON_0038897,superior tracheobronchial lymph node,station 4 N2 lymph node +http://purl.obolibrary.org/obo/UBERON_0038897,superior tracheobronchial lymph node,station 4 lymph node +http://purl.obolibrary.org/obo/UBERON_0038900,inferior tracheobronchial lymph node,carinate lymph node +http://purl.obolibrary.org/obo/UBERON_0038900,inferior tracheobronchial lymph node,nodus tracheobronchialis inferioris lymphaticus +http://purl.obolibrary.org/obo/UBERON_0038920,buccinator lymph node,buccinator node +http://purl.obolibrary.org/obo/UBERON_0038920,buccinator lymph node,nodus buccinatorius +http://purl.obolibrary.org/obo/UBERON_0038920,buccinator lymph node,nodus lymphoideus buccinatorius +http://purl.obolibrary.org/obo/UBERON_0038922,nasolabial lymph node,nasolabial node +http://purl.obolibrary.org/obo/UBERON_0038922,nasolabial lymph node,nodus lymphoideus nasolabialis +http://purl.obolibrary.org/obo/UBERON_0038922,nasolabial lymph node,nodus nasolabialis +http://purl.obolibrary.org/obo/UBERON_0038923,malar lymph node,malar node +http://purl.obolibrary.org/obo/UBERON_0038923,malar lymph node,nodus lymphoideus malaris +http://purl.obolibrary.org/obo/UBERON_0038923,malar lymph node,nodus malaris +http://purl.obolibrary.org/obo/UBERON_0038925,lingual lymph node, +http://purl.obolibrary.org/obo/UBERON_0038929,infrahyoid lymph node,infrahyoid node +http://purl.obolibrary.org/obo/UBERON_0038930,prelaryngeal lymph node,prelaryngeal node +http://purl.obolibrary.org/obo/UBERON_0038931,thyroid lymph node,thyroid node +http://purl.obolibrary.org/obo/UBERON_0038932,pretracheal lymph node,pretracheal node +http://purl.obolibrary.org/obo/UBERON_0038934,superior deep lateral cervical lymph node, +http://purl.obolibrary.org/obo/UBERON_0038935,inferior deep lateral cervical lymph node, +http://purl.obolibrary.org/obo/UBERON_0038936,jugulodigastric lymph node,jugulodigastric node +http://purl.obolibrary.org/obo/UBERON_0038936,jugulodigastric lymph node,nodus jugulodigastricus +http://purl.obolibrary.org/obo/UBERON_0038936,jugulodigastric lymph node,nodus lymphoideus jugulodigastricus +http://purl.obolibrary.org/obo/UBERON_0038938,accessory cervical lymph node, +http://purl.obolibrary.org/obo/UBERON_0038943,superior diaphragmatic lymph node,superior diaphragmatic node +http://purl.obolibrary.org/obo/UBERON_0038951,suprapyloric lymph node,jPS 5 node +http://purl.obolibrary.org/obo/UBERON_0038951,suprapyloric lymph node,jPS no.5 node +http://purl.obolibrary.org/obo/UBERON_0038951,suprapyloric lymph node,no. 5 station pyloric lymph node +http://purl.obolibrary.org/obo/UBERON_0038951,suprapyloric lymph node,nodus lymphoideus suprapyloricus +http://purl.obolibrary.org/obo/UBERON_0038951,suprapyloric lymph node,nodus suprapyloricus +http://purl.obolibrary.org/obo/UBERON_0038951,suprapyloric lymph node,suprapyloric node +http://purl.obolibrary.org/obo/UBERON_0038952,subpyloric lymph node,infrapyloric lymph node +http://purl.obolibrary.org/obo/UBERON_0038952,subpyloric lymph node,infrapyloric node +http://purl.obolibrary.org/obo/UBERON_0038952,subpyloric lymph node,jPS 6 node +http://purl.obolibrary.org/obo/UBERON_0038952,subpyloric lymph node,jPS no. 6 node +http://purl.obolibrary.org/obo/UBERON_0038952,subpyloric lymph node,no. 6 station pyloric lymph node +http://purl.obolibrary.org/obo/UBERON_0038952,subpyloric lymph node,subpyloric node +http://purl.obolibrary.org/obo/UBERON_0038953,retropyloric lymph node,retropyloric node +http://purl.obolibrary.org/obo/UBERON_0039162,inferior ileocolic lymph node, +http://purl.obolibrary.org/obo/UBERON_0039163,lateral sacral lymph node, +http://purl.obolibrary.org/obo/UBERON_0039164,medial sacral lymph node, +http://purl.obolibrary.org/obo/UBERON_0039167,bronchopulmonary lymph node,10 R+L thoracic +http://purl.obolibrary.org/obo/UBERON_0039167,bronchopulmonary lymph node,bronchopulmonary node +http://purl.obolibrary.org/obo/UBERON_0039167,bronchopulmonary lymph node,hilar lymph node +http://purl.obolibrary.org/obo/UBERON_0039167,bronchopulmonary lymph node,station 10 N1 lymph node +http://purl.obolibrary.org/obo/UBERON_0039167,bronchopulmonary lymph node,station 10 lymph node +http://purl.obolibrary.org/obo/UBERON_0039168,colic lymph node,colic node +http://purl.obolibrary.org/obo/UBERON_0039168,colic lymph node,pericolic lymph node +http://purl.obolibrary.org/obo/UBERON_0039168,colic lymph node,pericolonic lymph node +http://purl.obolibrary.org/obo/UBERON_0039169,anterior intercostal artery,intercostal branch of internal thoracic artery +http://purl.obolibrary.org/obo/UBERON_0039170,mammary branch of internal thoracic artery,medial mammary branch of perforating branch of internal thoracic artery +http://purl.obolibrary.org/obo/UBERON_0039175,subarachnoid space of brain, +http://purl.obolibrary.org/obo/UBERON_0039176,subarachnoid space of spinal cord, +http://purl.obolibrary.org/obo/UBERON_0039185,accessory vertebral vein, +http://purl.obolibrary.org/obo/UBERON_0039186,anterior vertebral vein, +http://purl.obolibrary.org/obo/UBERON_0039187,suprascapular vein, +http://purl.obolibrary.org/obo/UBERON_0039188,superior laryngeal vein, +http://purl.obolibrary.org/obo/UBERON_0039215,appendicular artery,appendiceal artery +http://purl.obolibrary.org/obo/UBERON_0039222,cystic artery,cholecystic artery +http://purl.obolibrary.org/obo/UBERON_0039228,sigmoid vein, +http://purl.obolibrary.org/obo/UBERON_0039230,prepyloric vein,Mayo's vein +http://purl.obolibrary.org/obo/UBERON_0039232,conus artery,second right coronary artery +http://purl.obolibrary.org/obo/UBERON_0039232,conus artery,third coronary artery +http://purl.obolibrary.org/obo/UBERON_0039256,pubic vein,accessory obturator vein +http://purl.obolibrary.org/obo/UBERON_0039256,pubic vein,pubic branch +http://purl.obolibrary.org/obo/UBERON_0039256,pubic vein,pubic branch of inferior epigastric vein +http://purl.obolibrary.org/obo/UBERON_0039258,external vertebral venous plexus,plexus venosus vertebralis externus +http://purl.obolibrary.org/obo/UBERON_0039259,vertebral venous plexus, +http://purl.obolibrary.org/obo/UBERON_0039260,thyrocervical artery, +http://purl.obolibrary.org/obo/UBERON_0039261,pancreatic artery, +http://purl.obolibrary.org/obo/UBERON_0039262,segmental pulmonary artery,segmental pulmonary arterial tree +http://purl.obolibrary.org/obo/UBERON_0039288,rima vulvae,pudendal cleft +http://purl.obolibrary.org/obo/UBERON_0039288,rima vulvae,rima pudendi +http://purl.obolibrary.org/obo/UBERON_0039288,rima vulvae,vulvar slit +http://purl.obolibrary.org/obo/UBERON_0039351,posterior labial artery,posterior labial branch of internal pudendal artery +http://purl.obolibrary.org/obo/UBERON_0039355,urethral artery,arteria urethralis +http://purl.obolibrary.org/obo/UBERON_0039376,penile bulb vein,bulb of penis vein +http://purl.obolibrary.org/obo/UBERON_0039376,penile bulb vein,vena bulbi penis +http://purl.obolibrary.org/obo/UBERON_0039377,urethral vein, +http://purl.obolibrary.org/obo/UBERON_0039379,vestibular bulb vein,vena bulbi vestibuli +http://purl.obolibrary.org/obo/UBERON_0039418,Alcock's canal,canalis pudendalis +http://purl.obolibrary.org/obo/UBERON_0039418,Alcock's canal,pudendal canal +http://purl.obolibrary.org/obo/UBERON_0039421,superficial dorsal vein of penis, +http://purl.obolibrary.org/obo/UBERON_0039422,dorsal vein of penis, +http://purl.obolibrary.org/obo/UBERON_0039835,posterior intercostal artery, +http://purl.obolibrary.org/obo/UBERON_0039838,seventh anterior intercostal artery, +http://purl.obolibrary.org/obo/UBERON_0039839,eighth anterior intercostal artery, +http://purl.obolibrary.org/obo/UBERON_0039840,ninth anterior intercostal artery, +http://purl.obolibrary.org/obo/UBERON_0039841,first anterior intercostal artery,first intercostal branch of internal thoracic artery +http://purl.obolibrary.org/obo/UBERON_0039842,second anterior intercostal artery,second intercostal branch of internal thoracic artery +http://purl.obolibrary.org/obo/UBERON_0039843,third anterior intercostal artery,third intercostal branch of internal thoracic artery +http://purl.obolibrary.org/obo/UBERON_0039844,fourth anterior intercostal artery,fourth intercostal branch of internal thoracic artery +http://purl.obolibrary.org/obo/UBERON_0039845,fifth anterior intercostal artery,fifth intercostal branch of internal thoracic artery +http://purl.obolibrary.org/obo/UBERON_0039846,sixth anterior intercostal artery,sixth intercostal branch of internal thoracic artery +http://purl.obolibrary.org/obo/UBERON_0039847,suprascapular artery,transverse scapular artery +http://purl.obolibrary.org/obo/UBERON_0039848,anterior external vertebral venous plexus, +http://purl.obolibrary.org/obo/UBERON_0039849,posterior external vertebral venous plexus, +http://purl.obolibrary.org/obo/UBERON_0039850,left anterior segmental artery,anterior bronchopulmonary segment of left pulmonary artery +http://purl.obolibrary.org/obo/UBERON_0039850,left anterior segmental artery,anterior segmental artery of left lung +http://purl.obolibrary.org/obo/UBERON_0039850,left anterior segmental artery,anterior segmental artery of left upper lobe +http://purl.obolibrary.org/obo/UBERON_0039851,apicoposterior segmental artery,apicoposterior artery of left lung +http://purl.obolibrary.org/obo/UBERON_0039851,apicoposterior segmental artery,apicoposterior bronchopulmonary segment of left pulmonary artery +http://purl.obolibrary.org/obo/UBERON_0039851,apicoposterior segmental artery,left apicoposterior pulmonary artery +http://purl.obolibrary.org/obo/UBERON_0039856,right ovarian vein, +http://purl.obolibrary.org/obo/UBERON_0039857,left ovarian vein, +http://purl.obolibrary.org/obo/UBERON_0700019,parallel fiber, +http://purl.obolibrary.org/obo/UBERON_0700020,"parallel fiber, bifurcated", +http://purl.obolibrary.org/obo/UBERON_1000000,chin ventral margin, +http://purl.obolibrary.org/obo/UBERON_1000001,collection of hairs on vertex, +http://purl.obolibrary.org/obo/UBERON_1000002,cranial midline area, +http://purl.obolibrary.org/obo/UBERON_1000003,dewlap, +http://purl.obolibrary.org/obo/UBERON_1000004,collection of hair on external ear, +http://purl.obolibrary.org/obo/UBERON_1000005,external ear margin, +http://purl.obolibrary.org/obo/UBERON_1000006,collection of hair on forehead, +http://purl.obolibrary.org/obo/UBERON_1000007,forehead protuberance, +http://purl.obolibrary.org/obo/UBERON_1000008,left part of face, +http://purl.obolibrary.org/obo/UBERON_1000009,midline crest, +http://purl.obolibrary.org/obo/UBERON_1000010,mole,naevus +http://purl.obolibrary.org/obo/UBERON_1000010,mole,nevus +http://purl.obolibrary.org/obo/UBERON_1000011,labial commissure, +http://purl.obolibrary.org/obo/UBERON_1000012,nose anterior margin, +http://purl.obolibrary.org/obo/UBERON_1000013,nose vertex, +http://purl.obolibrary.org/obo/UBERON_1000014,right part of face, +http://purl.obolibrary.org/obo/UBERON_1000015,skin of snout,snout skin +http://purl.obolibrary.org/obo/UBERON_1000016,tip of snout, +http://purl.obolibrary.org/obo/UBERON_1000017,tip of external ear, +http://purl.obolibrary.org/obo/UBERON_1000018,cluster of hairs, +http://purl.obolibrary.org/obo/UBERON_1000019,top of head,vertex of head +http://purl.obolibrary.org/obo/UBERON_1000020,collection of hair on snout, +http://purl.obolibrary.org/obo/UBERON_1000021,skin of face,face skin +http://purl.obolibrary.org/obo/UBERON_1000022,Zymbal's gland, +http://purl.obolibrary.org/obo/UBERON_1000023,spleen pulp,Malpighian corpuscles +http://purl.obolibrary.org/obo/UBERON_1000023,spleen pulp,pulp of spleen +http://purl.obolibrary.org/obo/UBERON_1000023,spleen pulp,splenic pulp +http://purl.obolibrary.org/obo/UBERON_1000024,parenchyma of spleen,splenic parenchyma +http://purl.obolibrary.org/obo/UBERON_1100000,digestive tract junction, +http://purl.obolibrary.org/obo/UBERON_1500000,scapular blade, +http://purl.obolibrary.org/obo/UBERON_1500003,lateral line canal lumen, +http://purl.obolibrary.org/obo/UBERON_1500005,ischial cartilage, +http://purl.obolibrary.org/obo/UBERON_1500006,paired fin radial bone, +http://purl.obolibrary.org/obo/UBERON_1500007,mesopterygium cartilage, +http://purl.obolibrary.org/obo/UBERON_1500008,pelvic fin distal radial bone, +http://purl.obolibrary.org/obo/UBERON_1500009,pelvic fin basipterygial radial, +http://purl.obolibrary.org/obo/UBERON_1500010,pelvic fin middle radial bone, +http://purl.obolibrary.org/obo/UBERON_1600006,paired fin radial element, +http://purl.obolibrary.org/obo/UBERON_1600008,pelvic fin distal radial element, +http://purl.obolibrary.org/obo/UBERON_1600010,pelvic fin middle radial element, +http://purl.obolibrary.org/obo/UBERON_1700006,paired fin radial cartilage, +http://purl.obolibrary.org/obo/UBERON_2000000,Brachet's cleft, +http://purl.obolibrary.org/obo/UBERON_2000001,Kupffer's vesicle, +http://purl.obolibrary.org/obo/UBERON_2000004,anterior axial hypoblast,pre-polster +http://purl.obolibrary.org/obo/UBERON_2000006,ball,yolk ball +http://purl.obolibrary.org/obo/UBERON_2000033,intermediate cell mass of mesoderm,ICM +http://purl.obolibrary.org/obo/UBERON_2000033,intermediate cell mass of mesoderm,intermediate cell mass of Oellacher +http://purl.obolibrary.org/obo/UBERON_2000033,intermediate cell mass of mesoderm,posterior intermediate cell mass +http://purl.obolibrary.org/obo/UBERON_2000039,median axial vein, +http://purl.obolibrary.org/obo/UBERON_2000040,median fin fold, +http://purl.obolibrary.org/obo/UBERON_2000044,myotome somite 14, +http://purl.obolibrary.org/obo/UBERON_2000052,dorsal actinotrichium,dorsal actinotrichia +http://purl.obolibrary.org/obo/UBERON_2000058,polster,pillow +http://purl.obolibrary.org/obo/UBERON_2000068,neural plate proneural cluster,neural plate proneural clusters +http://purl.obolibrary.org/obo/UBERON_2000072,somite 1, +http://purl.obolibrary.org/obo/UBERON_2000073,somite 5, +http://purl.obolibrary.org/obo/UBERON_2000074,somite 26, +http://purl.obolibrary.org/obo/UBERON_2000078,ventral actinotrichium,ventral actinotrichia +http://purl.obolibrary.org/obo/UBERON_2000083,ventral mesoderm, +http://purl.obolibrary.org/obo/UBERON_2000084,yolk, +http://purl.obolibrary.org/obo/UBERON_2000088,yolk syncytial layer,YSL +http://purl.obolibrary.org/obo/UBERON_2000088,yolk syncytial layer,periblast +http://purl.obolibrary.org/obo/UBERON_2000089,actinotrichium,actinotrichia +http://purl.obolibrary.org/obo/UBERON_2000090,apical ectodermal ridge dorsal fin, +http://purl.obolibrary.org/obo/UBERON_2000096,cardinal system, +http://purl.obolibrary.org/obo/UBERON_2000098,proliferative region, +http://purl.obolibrary.org/obo/UBERON_2000102,dorsal fin fold,dorsal fin-fold +http://purl.obolibrary.org/obo/UBERON_2000103,supramaxilla, +http://purl.obolibrary.org/obo/UBERON_2000104,suprapreopercle,supraopercle +http://purl.obolibrary.org/obo/UBERON_2000104,suprapreopercle,supraopercular bone +http://purl.obolibrary.org/obo/UBERON_2000104,suprapreopercle,suprapreopercles +http://purl.obolibrary.org/obo/UBERON_2000106,extension,yolk extension +http://purl.obolibrary.org/obo/UBERON_2000116,macula lagena, +http://purl.obolibrary.org/obo/UBERON_2000120,lateral line ganglion,LLG +http://purl.obolibrary.org/obo/UBERON_2000120,lateral line ganglion,lateral line ganglia +http://purl.obolibrary.org/obo/UBERON_2000125,mandibular lateral line neuromast,neuromast mandibular +http://purl.obolibrary.org/obo/UBERON_2000125,mandibular lateral line neuromast,neuromasts mandibular +http://purl.obolibrary.org/obo/UBERON_2000127,antorbital,adnasal +http://purl.obolibrary.org/obo/UBERON_2000127,antorbital,lateral rostral +http://purl.obolibrary.org/obo/UBERON_2000127,antorbital,periorbital +http://purl.obolibrary.org/obo/UBERON_2000136,otic lateral line neuromast,neuromast otic +http://purl.obolibrary.org/obo/UBERON_2000136,otic lateral line neuromast,neuromasts otic +http://purl.obolibrary.org/obo/UBERON_2000139,immature otolith,immature otoliths +http://purl.obolibrary.org/obo/UBERON_2000156,somite 20, +http://purl.obolibrary.org/obo/UBERON_2000157,somite 30, +http://purl.obolibrary.org/obo/UBERON_2000164,ventral mesenchyme, +http://purl.obolibrary.org/obo/UBERON_2000165,inferior lobe,inferior lobes +http://purl.obolibrary.org/obo/UBERON_2000168,anterior macula,am +http://purl.obolibrary.org/obo/UBERON_2000171,interhyal bone,stylohyal bone +http://purl.obolibrary.org/obo/UBERON_2000174,caudal cerebellar tract, +http://purl.obolibrary.org/obo/UBERON_2000175,posterior lateral line nerve,caudal lateral line nerve +http://purl.obolibrary.org/obo/UBERON_2000176,lateral entopeduncular nucleus, +http://purl.obolibrary.org/obo/UBERON_2000177,caudal oblique, +http://purl.obolibrary.org/obo/UBERON_2000178,caudal peduncle, +http://purl.obolibrary.org/obo/UBERON_2000182,central caudal thalamic nucleus,central posterior thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_2000183,central pretectum, +http://purl.obolibrary.org/obo/UBERON_2000185,"commissura rostral, pars ventralis", +http://purl.obolibrary.org/obo/UBERON_2000187,lateral granular eminence, +http://purl.obolibrary.org/obo/UBERON_2000188,corpus cerebelli,cerebellar corpus +http://purl.obolibrary.org/obo/UBERON_2000188,corpus cerebelli,corpus cerebellum +http://purl.obolibrary.org/obo/UBERON_2000193,diffuse nuclei, +http://purl.obolibrary.org/obo/UBERON_2000194,dorsal accessory optic nucleus, +http://purl.obolibrary.org/obo/UBERON_2000195,dorsal depressor muscle, +http://purl.obolibrary.org/obo/UBERON_2000196,dorsal hypohyal bone,dorsal hypohyals +http://purl.obolibrary.org/obo/UBERON_2000196,dorsal hypohyal bone,dorsohyal +http://purl.obolibrary.org/obo/UBERON_2000196,dorsal hypohyal bone,upper hypohyal +http://purl.obolibrary.org/obo/UBERON_2000199,dorsal periventricular hypothalamus, +http://purl.obolibrary.org/obo/UBERON_2000201,dorsal transverse,transversus dorsalis +http://purl.obolibrary.org/obo/UBERON_2000202,efferent portion of pharyngeal arch artery,efferent branchial artery +http://purl.obolibrary.org/obo/UBERON_2000202,efferent portion of pharyngeal arch artery,efferent portion of branchial artery +http://purl.obolibrary.org/obo/UBERON_2000203,rhinosphenoid, +http://purl.obolibrary.org/obo/UBERON_2000205,external ventral flexor, +http://purl.obolibrary.org/obo/UBERON_2000209,lateral preglomerular nucleus, +http://purl.obolibrary.org/obo/UBERON_2000210,gigantocellular part of magnocellular preoptic nucleus, +http://purl.obolibrary.org/obo/UBERON_2000211,gill lamella,gill lamellae +http://purl.obolibrary.org/obo/UBERON_2000212,granular eminence, +http://purl.obolibrary.org/obo/UBERON_2000214,hypobranchial vessel,hypobranchial vessels +http://purl.obolibrary.org/obo/UBERON_2000216,infracarinalis, +http://purl.obolibrary.org/obo/UBERON_2000221,internal levator, +http://purl.obolibrary.org/obo/UBERON_2000222,isthmic primary nucleus, +http://purl.obolibrary.org/obo/UBERON_2000223,infraorbital 1,lachrymal +http://purl.obolibrary.org/obo/UBERON_2000223,infraorbital 1,lacrymal +http://purl.obolibrary.org/obo/UBERON_2000223,infraorbital 1,suborbital +http://purl.obolibrary.org/obo/UBERON_2000224,quadrate ventral process, +http://purl.obolibrary.org/obo/UBERON_2000225,lateral crista primordium,lateral crista primordia +http://purl.obolibrary.org/obo/UBERON_2000226,lateral ethmoid bone,lateral ethmoids +http://purl.obolibrary.org/obo/UBERON_2000226,lateral ethmoid bone,parethmoïde +http://purl.obolibrary.org/obo/UBERON_2000226,lateral ethmoid bone,pleurethmoïde +http://purl.obolibrary.org/obo/UBERON_2000226,lateral ethmoid bone,éthmoïde latéral +http://purl.obolibrary.org/obo/UBERON_2000228,lateral line primordium,lateral line primordia +http://purl.obolibrary.org/obo/UBERON_2000228,lateral line primordium,llp +http://purl.obolibrary.org/obo/UBERON_2000230,longitudinal hypochordal,hypochordal longitudinalis +http://purl.obolibrary.org/obo/UBERON_2000232,lateral semicircular canal primordium,lateral semicircular canal primordia +http://purl.obolibrary.org/obo/UBERON_2000233,lower oral valve, +http://purl.obolibrary.org/obo/UBERON_2000234,macula neglecta, +http://purl.obolibrary.org/obo/UBERON_2000238,olfactory tract linking bulb to ipsilateral ventral telencephalon, +http://purl.obolibrary.org/obo/UBERON_2000239,mesocoracoid bone, +http://purl.obolibrary.org/obo/UBERON_2000240,metapterygoid,metapterygoids +http://purl.obolibrary.org/obo/UBERON_2000241,midline column, +http://purl.obolibrary.org/obo/UBERON_2000245,nucleus of the descending root, +http://purl.obolibrary.org/obo/UBERON_2000248,magnocellular preoptic nucleus, +http://purl.obolibrary.org/obo/UBERON_2000250,opercle,opercles +http://purl.obolibrary.org/obo/UBERON_2000250,opercle,operculare +http://purl.obolibrary.org/obo/UBERON_2000250,opercle,operculum +http://purl.obolibrary.org/obo/UBERON_2000251,adipose fin, +http://purl.obolibrary.org/obo/UBERON_2000259,mandibular lateral line, +http://purl.obolibrary.org/obo/UBERON_2000261,pharyngohyoid, +http://purl.obolibrary.org/obo/UBERON_2000264,preopercle,preopercles +http://purl.obolibrary.org/obo/UBERON_2000264,preopercle,preoperculum +http://purl.obolibrary.org/obo/UBERON_2000267,primary olfactory fiber layer, +http://purl.obolibrary.org/obo/UBERON_2000268,anal fin proximal radial bone,basal radial of anal fin +http://purl.obolibrary.org/obo/UBERON_2000268,anal fin proximal radial bone,proximal anal-fin radial +http://purl.obolibrary.org/obo/UBERON_2000269,inferior ventral flexor, +http://purl.obolibrary.org/obo/UBERON_2000271,radial bone,radials +http://purl.obolibrary.org/obo/UBERON_2000274,rostral octaval nerve sensory nucleus, +http://purl.obolibrary.org/obo/UBERON_2000276,rostrolateral thalamic nucleus of Butler & Saidel, +http://purl.obolibrary.org/obo/UBERON_2000278,secondary gustatory nucleus medulla oblongata, +http://purl.obolibrary.org/obo/UBERON_2000280,medial division, +http://purl.obolibrary.org/obo/UBERON_2000284,subopercle,subopercles +http://purl.obolibrary.org/obo/UBERON_2000285,superficial adductor, +http://purl.obolibrary.org/obo/UBERON_2000286,superficial lateralis (teleost), +http://purl.obolibrary.org/obo/UBERON_2000287,superior dorsal flexor, +http://purl.obolibrary.org/obo/UBERON_2000288,supracarinalis, +http://purl.obolibrary.org/obo/UBERON_2000289,preopercle horizontal limb,preopercle horizontal arm +http://purl.obolibrary.org/obo/UBERON_2000289,preopercle horizontal limb,preopercle lower limb +http://purl.obolibrary.org/obo/UBERON_2000291,medial octavolateralis nucleus, +http://purl.obolibrary.org/obo/UBERON_2000293,synencephalon, +http://purl.obolibrary.org/obo/UBERON_2000294,torus lateralis, +http://purl.obolibrary.org/obo/UBERON_2000296,uncrossed tecto-bulbar tract, +http://purl.obolibrary.org/obo/UBERON_2000297,vagal lobe, +http://purl.obolibrary.org/obo/UBERON_2000298,vent, +http://purl.obolibrary.org/obo/UBERON_2000300,ventral hypohyal bone,lower hypohyal +http://purl.obolibrary.org/obo/UBERON_2000300,ventral hypohyal bone,ventral hypohyals +http://purl.obolibrary.org/obo/UBERON_2000300,ventral hypohyal bone,ventrohyal +http://purl.obolibrary.org/obo/UBERON_2000305,ventral sulcus, +http://purl.obolibrary.org/obo/UBERON_2000307,vestibulolateralis lobe, +http://purl.obolibrary.org/obo/UBERON_2000309,external yolk syncytial layer,E-YSL +http://purl.obolibrary.org/obo/UBERON_2000311,adductor mandibulae complex, +http://purl.obolibrary.org/obo/UBERON_2000313,anal inclinator, +http://purl.obolibrary.org/obo/UBERON_2000315,asteriscus,lagenar otolith +http://purl.obolibrary.org/obo/UBERON_2000315,asteriscus,lagenolith +http://purl.obolibrary.org/obo/UBERON_2000318,brainstem and spinal white matter,brain stem/spinal tracts and commissures +http://purl.obolibrary.org/obo/UBERON_2000319,branchiostegal membrane, +http://purl.obolibrary.org/obo/UBERON_2000321,caudal levator, +http://purl.obolibrary.org/obo/UBERON_2000322,caudal octaval nerve sensory nucleus, +http://purl.obolibrary.org/obo/UBERON_2000324,caudal periventricular hypothalamus, +http://purl.obolibrary.org/obo/UBERON_2000335,crossed tecto-bulbar tract, +http://purl.obolibrary.org/obo/UBERON_2000336,preopercle vertical limb,ascending arm of preopercle +http://purl.obolibrary.org/obo/UBERON_2000336,preopercle vertical limb,preopercle upper limb +http://purl.obolibrary.org/obo/UBERON_2000336,preopercle vertical limb,preopercle vertical arm +http://purl.obolibrary.org/obo/UBERON_2000337,basioccipital posterodorsal region, +http://purl.obolibrary.org/obo/UBERON_2000341,dorsal flexor, +http://purl.obolibrary.org/obo/UBERON_2000342,dorsal inclinator muscle, +http://purl.obolibrary.org/obo/UBERON_2000347,dorsal zone of median tuberal portion of hypothalamus, +http://purl.obolibrary.org/obo/UBERON_2000348,exoccipital posteroventral region, +http://purl.obolibrary.org/obo/UBERON_2000349,epaxialis, +http://purl.obolibrary.org/obo/UBERON_2000350,epipleural,epipleurals +http://purl.obolibrary.org/obo/UBERON_2000350,epipleural,pleuroïde +http://purl.obolibrary.org/obo/UBERON_2000350,epipleural,épipleural +http://purl.obolibrary.org/obo/UBERON_2000350,epipleural,épipleure +http://purl.obolibrary.org/obo/UBERON_2000352,external cellular layer, +http://purl.obolibrary.org/obo/UBERON_2000356,gill raker,branchiocténie +http://purl.obolibrary.org/obo/UBERON_2000356,gill raker,branchiospine +http://purl.obolibrary.org/obo/UBERON_2000356,gill raker,gill rakers +http://purl.obolibrary.org/obo/UBERON_2000356,gill raker,gill-raker +http://purl.obolibrary.org/obo/UBERON_2000356,gill raker,gillraker +http://purl.obolibrary.org/obo/UBERON_2000358,granular layer corpus cerebelli, +http://purl.obolibrary.org/obo/UBERON_2000362,hypaxialis, +http://purl.obolibrary.org/obo/UBERON_2000363,hypobranchial bone, +http://purl.obolibrary.org/obo/UBERON_2000364,hypural,hyp +http://purl.obolibrary.org/obo/UBERON_2000364,hypural,hypuralia +http://purl.obolibrary.org/obo/UBERON_2000364,hypural,hypurals +http://purl.obolibrary.org/obo/UBERON_2000371,internal pharyngoclavicularis, +http://purl.obolibrary.org/obo/UBERON_2000372,interpeduncular nucleus medulla oblongata, +http://purl.obolibrary.org/obo/UBERON_2000373,dorsal fin actinotrichium, +http://purl.obolibrary.org/obo/UBERON_2000375,anal fin actinotrichium, +http://purl.obolibrary.org/obo/UBERON_2000376,infraorbital,circumorbital series +http://purl.obolibrary.org/obo/UBERON_2000376,infraorbital,circumorbitals +http://purl.obolibrary.org/obo/UBERON_2000376,infraorbital,infraorbitals +http://purl.obolibrary.org/obo/UBERON_2000381,lateral line sensory nucleus, +http://purl.obolibrary.org/obo/UBERON_2000384,levator arcus palatini, +http://purl.obolibrary.org/obo/UBERON_2000388,medial caudal lobe, +http://purl.obolibrary.org/obo/UBERON_2000389,medial funicular nucleus medulla oblongata, +http://purl.obolibrary.org/obo/UBERON_2000390,medial preglomerular nucleus, +http://purl.obolibrary.org/obo/UBERON_2000392,median tuberal portion, +http://purl.obolibrary.org/obo/UBERON_2000394,molecular layer corpus cerebelli, +http://purl.obolibrary.org/obo/UBERON_2000397,nucleus subglomerulosis, +http://purl.obolibrary.org/obo/UBERON_2000398,nucleus isthmi, +http://purl.obolibrary.org/obo/UBERON_2000399,secondary gustatory nucleus trigeminal nuclei, +http://purl.obolibrary.org/obo/UBERON_2000401,octaval nerve sensory nucleus, +http://purl.obolibrary.org/obo/UBERON_2000408,periventricular nucleus of caudal tuberculum, +http://purl.obolibrary.org/obo/UBERON_2000410,postcleithrum,métacleithrum +http://purl.obolibrary.org/obo/UBERON_2000410,postcleithrum,métaclithrum +http://purl.obolibrary.org/obo/UBERON_2000410,postcleithrum,paraclithrum +http://purl.obolibrary.org/obo/UBERON_2000410,postcleithrum,postclavicle +http://purl.obolibrary.org/obo/UBERON_2000410,postcleithrum,postcleithra +http://purl.obolibrary.org/obo/UBERON_2000410,postcleithrum,postcleithrum +http://purl.obolibrary.org/obo/UBERON_2000411,posterior crista primordium,posterior crista primordia +http://purl.obolibrary.org/obo/UBERON_2000412,posterior semicircular canal primordium,posterior semicircular canal primordia +http://purl.obolibrary.org/obo/UBERON_2000414,presumptive cephalic mesoderm, +http://purl.obolibrary.org/obo/UBERON_2000419,pterosphenoid,alisphenoid +http://purl.obolibrary.org/obo/UBERON_2000419,pterosphenoid,pterosphenoids +http://purl.obolibrary.org/obo/UBERON_2000422,retroarticular, +http://purl.obolibrary.org/obo/UBERON_2000424,opercular lateral line, +http://purl.obolibrary.org/obo/UBERON_2000425,anterior lateral line nerve,rostral lateral line nerve +http://purl.obolibrary.org/obo/UBERON_2000426,rostral parvocellular preoptic nucleus, +http://purl.obolibrary.org/obo/UBERON_2000429,scaphium,Weberian ossicle 2 +http://purl.obolibrary.org/obo/UBERON_2000429,scaphium,second Weberian ossicle +http://purl.obolibrary.org/obo/UBERON_2000430,secondary gustatory tract, +http://purl.obolibrary.org/obo/UBERON_2000437,caudal fin actinotrichium, +http://purl.obolibrary.org/obo/UBERON_2000438,parhypural,hemal spine of preural centrum 1 +http://purl.obolibrary.org/obo/UBERON_2000438,parhypural,parahypural +http://purl.obolibrary.org/obo/UBERON_2000438,parhypural,parhypural +http://purl.obolibrary.org/obo/UBERON_2000438,parhypural,parhypural hypaxonal +http://purl.obolibrary.org/obo/UBERON_2000438,parhypural,parhyural +http://purl.obolibrary.org/obo/UBERON_2000438,parhypural,phy +http://purl.obolibrary.org/obo/UBERON_2000438,parhypural,prohypural +http://purl.obolibrary.org/obo/UBERON_2000439,superficial pelvic abductor, +http://purl.obolibrary.org/obo/UBERON_2000440,superior raphe nucleus,anterior raphe nucleus +http://purl.obolibrary.org/obo/UBERON_2000442,supraneural bone,axonoste libre +http://purl.obolibrary.org/obo/UBERON_2000442,supraneural bone,predorsal +http://purl.obolibrary.org/obo/UBERON_2000442,supraneural bone,predorsal bone +http://purl.obolibrary.org/obo/UBERON_2000442,supraneural bone,pseudaxonoste +http://purl.obolibrary.org/obo/UBERON_2000442,supraneural bone,sn +http://purl.obolibrary.org/obo/UBERON_2000442,supraneural bone,supraneural +http://purl.obolibrary.org/obo/UBERON_2000442,supraneural bone,supraneurals +http://purl.obolibrary.org/obo/UBERON_2000448,tertiary gustatory nucleus, +http://purl.obolibrary.org/obo/UBERON_2000449,torus longitudinalis, +http://purl.obolibrary.org/obo/UBERON_2000451,upper oral valve, +http://purl.obolibrary.org/obo/UBERON_2000452,urohyal,clidoste +http://purl.obolibrary.org/obo/UBERON_2000452,urohyal,interclaviculaire +http://purl.obolibrary.org/obo/UBERON_2000452,urohyal,jugulaire +http://purl.obolibrary.org/obo/UBERON_2000452,urohyal,parurohyal +http://purl.obolibrary.org/obo/UBERON_2000452,urohyal,urohyal +http://purl.obolibrary.org/obo/UBERON_2000454,ventral accessory optic nucleus, +http://purl.obolibrary.org/obo/UBERON_2000455,ventral flexor, +http://purl.obolibrary.org/obo/UBERON_2000459,ventromedial thalamic nucleus, +http://purl.obolibrary.org/obo/UBERON_2000460,adipose fin actinotrichium, +http://purl.obolibrary.org/obo/UBERON_2000461,Weberian ossicle,Weberian ossicles +http://purl.obolibrary.org/obo/UBERON_2000462,abductor hyohyoid, +http://purl.obolibrary.org/obo/UBERON_2000464,otic lateral line, +http://purl.obolibrary.org/obo/UBERON_2000465,adductor operculi, +http://purl.obolibrary.org/obo/UBERON_2000466,anal depressor, +http://purl.obolibrary.org/obo/UBERON_2000468,anterior crista primordium,anterior crista primordia +http://purl.obolibrary.org/obo/UBERON_2000469,anterior semicircular canal primordium,anterior semicircular canal primordia +http://purl.obolibrary.org/obo/UBERON_2000474,intercalar, +http://purl.obolibrary.org/obo/UBERON_2000475,paraventricular organ, +http://purl.obolibrary.org/obo/UBERON_2000476,branchiostegal ray,branchiostegal rays +http://purl.obolibrary.org/obo/UBERON_2000479,caudal mesencephalo-cerebellar tract, +http://purl.obolibrary.org/obo/UBERON_2000480,caudal octavolateralis nucleus, +http://purl.obolibrary.org/obo/UBERON_2000481,caudal preglomerular nucleus, +http://purl.obolibrary.org/obo/UBERON_2000482,caudal tuberal nucleus,posterior tuberal nucleus +http://purl.obolibrary.org/obo/UBERON_2000484,celiacomesenteric artery, +http://purl.obolibrary.org/obo/UBERON_2000485,central nucleus inferior lobe,central nucleus inferior lobes +http://purl.obolibrary.org/obo/UBERON_2000488,ceratobranchial bone,ceratobranchials +http://purl.obolibrary.org/obo/UBERON_2000492,coracoradialis, +http://purl.obolibrary.org/obo/UBERON_2000495,infraorbital 5, +http://purl.obolibrary.org/obo/UBERON_2000497,pelvic adductor profundus, +http://purl.obolibrary.org/obo/UBERON_2000498,dilatator operculi, +http://purl.obolibrary.org/obo/UBERON_2000499,dorsal arrector, +http://purl.obolibrary.org/obo/UBERON_2000500,dorsal erector muscle, +http://purl.obolibrary.org/obo/UBERON_2000502,dorsal motor nucleus trigeminal nerve, +http://purl.obolibrary.org/obo/UBERON_2000503,dorsal oblique branchial muscle,dorsal oblique branchial muscles +http://purl.obolibrary.org/obo/UBERON_2000503,dorsal oblique branchial muscle,obliquues dorsalis +http://purl.obolibrary.org/obo/UBERON_2000503,dorsal oblique branchial muscle,obliquus dorsalis +http://purl.obolibrary.org/obo/UBERON_2000504,dorsal retractor, +http://purl.obolibrary.org/obo/UBERON_2000507,epineural, +http://purl.obolibrary.org/obo/UBERON_2000508,pelvic fin radial bone,pelvic actinost +http://purl.obolibrary.org/obo/UBERON_2000508,pelvic fin radial bone,pelvic radial +http://purl.obolibrary.org/obo/UBERON_2000510,external levatores, +http://purl.obolibrary.org/obo/UBERON_2000512,facial lobe, +http://purl.obolibrary.org/obo/UBERON_2000516,periventricular grey zone, +http://purl.obolibrary.org/obo/UBERON_2000517,glossopharyngeal lobe, +http://purl.obolibrary.org/obo/UBERON_2000522,inferior hyohyoid, +http://purl.obolibrary.org/obo/UBERON_2000523,inferior reticular formation, +http://purl.obolibrary.org/obo/UBERON_2000525,intercalarium,Weberian ossicle 3 +http://purl.obolibrary.org/obo/UBERON_2000525,intercalarium,third Weberian ossicle +http://purl.obolibrary.org/obo/UBERON_2000526,intermuscular bone,métamyoste +http://purl.obolibrary.org/obo/UBERON_2000526,intermuscular bone,métaxymyoste +http://purl.obolibrary.org/obo/UBERON_2000526,intermuscular bone,os intermusculaire +http://purl.obolibrary.org/obo/UBERON_2000527,pharyngobranchial bone,infrapharyngobranchial +http://purl.obolibrary.org/obo/UBERON_2000527,pharyngobranchial bone,infrapharyngobranchial bone +http://purl.obolibrary.org/obo/UBERON_2000527,pharyngobranchial bone,pharyngobranchials +http://purl.obolibrary.org/obo/UBERON_2000528,interradialis, +http://purl.obolibrary.org/obo/UBERON_2000530,lapillus,utricular otolith +http://purl.obolibrary.org/obo/UBERON_2000530,lapillus,utriculith +http://purl.obolibrary.org/obo/UBERON_2000532,lateral division, +http://purl.obolibrary.org/obo/UBERON_2000540,magnocellular octaval nucleus, +http://purl.obolibrary.org/obo/UBERON_2000542,medial column, +http://purl.obolibrary.org/obo/UBERON_2000544,pectoral fin actinotrichium, +http://purl.obolibrary.org/obo/UBERON_2000549,posttemporal,post-temporal +http://purl.obolibrary.org/obo/UBERON_2000549,posttemporal,postemporal +http://purl.obolibrary.org/obo/UBERON_2000549,posttemporal,posttemporale +http://purl.obolibrary.org/obo/UBERON_2000551,nucleus lateralis valvulae, +http://purl.obolibrary.org/obo/UBERON_2000555,opercular flap,gill cover +http://purl.obolibrary.org/obo/UBERON_2000555,opercular flap,opercular apparatus +http://purl.obolibrary.org/obo/UBERON_2000557,preural 1 vertebra,penultimate vertebra +http://purl.obolibrary.org/obo/UBERON_2000557,preural 1 vertebra,preural centrum 1 +http://purl.obolibrary.org/obo/UBERON_2000557,preural 1 vertebra,pu1 +http://purl.obolibrary.org/obo/UBERON_2000557,preural 1 vertebra,second last vertebra +http://purl.obolibrary.org/obo/UBERON_2000558,posterior macula,pm +http://purl.obolibrary.org/obo/UBERON_2000558,posterior macula,posteromedial macula +http://purl.obolibrary.org/obo/UBERON_2000564,pelvic abductor profundus, +http://purl.obolibrary.org/obo/UBERON_2000573,internal cellular layer, +http://purl.obolibrary.org/obo/UBERON_2000576,pterotic,autopterotic +http://purl.obolibrary.org/obo/UBERON_2000579,rostral mesencephalo-cerebellar tract, +http://purl.obolibrary.org/obo/UBERON_2000580,rostral preglomerular nucleus, +http://purl.obolibrary.org/obo/UBERON_2000581,rostral tuberal nucleus,anterior tuberal nucleus +http://purl.obolibrary.org/obo/UBERON_2000582,saccus dorsalis, +http://purl.obolibrary.org/obo/UBERON_2000585,kinethmoid cartilage,kinethmoideum cartilage +http://purl.obolibrary.org/obo/UBERON_2000586,preural 2 vertebra,antepenultimate vertebra +http://purl.obolibrary.org/obo/UBERON_2000586,preural 2 vertebra,preural centrum 2 +http://purl.obolibrary.org/obo/UBERON_2000586,preural 2 vertebra,pu2 +http://purl.obolibrary.org/obo/UBERON_2000586,preural 2 vertebra,third last vertebra +http://purl.obolibrary.org/obo/UBERON_2000587,sphenotic,autosphenotic +http://purl.obolibrary.org/obo/UBERON_2000587,sphenotic,sphenotics +http://purl.obolibrary.org/obo/UBERON_2000589,sulcus ypsiloniformis, +http://purl.obolibrary.org/obo/UBERON_2000592,superficial pelvic adductor, +http://purl.obolibrary.org/obo/UBERON_2000593,superior reticular formation medial column, +http://purl.obolibrary.org/obo/UBERON_2000594,supracleithrum,hypercleithrum +http://purl.obolibrary.org/obo/UBERON_2000594,supracleithrum,supracleithra +http://purl.obolibrary.org/obo/UBERON_2000594,supracleithrum,supracleithrum +http://purl.obolibrary.org/obo/UBERON_2000594,supracleithrum,épiclithrum +http://purl.obolibrary.org/obo/UBERON_2000596,pelvic fin actinotrichium, +http://purl.obolibrary.org/obo/UBERON_2000597,telencephalic tracts, +http://purl.obolibrary.org/obo/UBERON_2000599,torus semicircularis, +http://purl.obolibrary.org/obo/UBERON_2000602,uroneural,uroneurals +http://purl.obolibrary.org/obo/UBERON_2000603,valvula cerebelli,valvula cerebellum +http://purl.obolibrary.org/obo/UBERON_2000608,ventral transverse, +http://purl.obolibrary.org/obo/UBERON_2000609,ventrolateral nucleus, +http://purl.obolibrary.org/obo/UBERON_2000610,vertical myoseptum,transverse myoseptum +http://purl.obolibrary.org/obo/UBERON_2000611,visceromotor column, +http://purl.obolibrary.org/obo/UBERON_2000614,abductor profundus, +http://purl.obolibrary.org/obo/UBERON_2000615,adductor arcus palatini, +http://purl.obolibrary.org/obo/UBERON_2000616,adductor profundus, +http://purl.obolibrary.org/obo/UBERON_2000617,anal erector, +http://purl.obolibrary.org/obo/UBERON_2000620,autopalatine,palatines +http://purl.obolibrary.org/obo/UBERON_2000622,barbel,barbels +http://purl.obolibrary.org/obo/UBERON_2000622,barbel,barble +http://purl.obolibrary.org/obo/UBERON_2000623,basipterygium bone,basipterygia +http://purl.obolibrary.org/obo/UBERON_2000623,basipterygium bone,basipterygium ischiatique +http://purl.obolibrary.org/obo/UBERON_2000623,basipterygium bone,os pelvien +http://purl.obolibrary.org/obo/UBERON_2000623,basipterygium bone,pelvic plate +http://purl.obolibrary.org/obo/UBERON_2000623,basipterygium bone,pubic plate +http://purl.obolibrary.org/obo/UBERON_2000627,posterior ceratohyal,caudal ceratohyal +http://purl.obolibrary.org/obo/UBERON_2000627,posterior ceratohyal,epihyal +http://purl.obolibrary.org/obo/UBERON_2000627,posterior ceratohyal,posterohyal +http://purl.obolibrary.org/obo/UBERON_2000628,caudal fin musculature, +http://purl.obolibrary.org/obo/UBERON_2000629,caudal motor nucleus of abducens, +http://purl.obolibrary.org/obo/UBERON_2000630,caudal parvocellular preoptic nucleus, +http://purl.obolibrary.org/obo/UBERON_2000633,caudal tuberculum,posterior tubercle +http://purl.obolibrary.org/obo/UBERON_2000633,caudal tuberculum,posterior tuberculum +http://purl.obolibrary.org/obo/UBERON_2000634,caudal zone of median tuberal portion of hypothalamus, +http://purl.obolibrary.org/obo/UBERON_2000636,cerebellar crest, +http://purl.obolibrary.org/obo/UBERON_2000637,claustrum cartilage, +http://purl.obolibrary.org/obo/UBERON_2000638,"commissura rostral, pars dorsalis", +http://purl.obolibrary.org/obo/UBERON_2000639,commissure of the secondary gustatory nuclei, +http://purl.obolibrary.org/obo/UBERON_2000643,rostral cerebellar tract, +http://purl.obolibrary.org/obo/UBERON_2000645,descending octaval nucleus, +http://purl.obolibrary.org/obo/UBERON_2000646,anal fin distal radial bone,distal anal fin radial +http://purl.obolibrary.org/obo/UBERON_2000647,dorsal caudal thalamic nucleus,dorsal posterior thalamic nucleus +http://purl.obolibrary.org/obo/UBERON_2000648,dorsal fin musculature, +http://purl.obolibrary.org/obo/UBERON_2000651,dorsal pelvic arrector, +http://purl.obolibrary.org/obo/UBERON_2000654,rostral motor nucleus of abducens, +http://purl.obolibrary.org/obo/UBERON_2000657,entopterygoid,endopterygoid bone +http://purl.obolibrary.org/obo/UBERON_2000657,entopterygoid,mesopterygoid +http://purl.obolibrary.org/obo/UBERON_2000658,epibranchial bone,epibranchial bones +http://purl.obolibrary.org/obo/UBERON_2000660,epural,epiural +http://purl.obolibrary.org/obo/UBERON_2000660,epural,epiural apophysis +http://purl.obolibrary.org/obo/UBERON_2000660,epural,epurals +http://purl.obolibrary.org/obo/UBERON_2000660,epural,éphural +http://purl.obolibrary.org/obo/UBERON_2000660,epural,épural +http://purl.obolibrary.org/obo/UBERON_2000662,external pharyngoclavicularis, +http://purl.obolibrary.org/obo/UBERON_2000663,extrascapula,extrascapular +http://purl.obolibrary.org/obo/UBERON_2000663,extrascapula,extrascapular bone +http://purl.obolibrary.org/obo/UBERON_2000663,extrascapula,scale bone +http://purl.obolibrary.org/obo/UBERON_2000666,filamental artery,filamental arteries +http://purl.obolibrary.org/obo/UBERON_2000673,hypobranchial artery,HA +http://purl.obolibrary.org/obo/UBERON_2000674,interopercle,interopercles +http://purl.obolibrary.org/obo/UBERON_2000676,sagitta,saccular otolith +http://purl.obolibrary.org/obo/UBERON_2000676,sagitta,sacculith +http://purl.obolibrary.org/obo/UBERON_2000677,segmental intercostal artery,segmental intercostal arteries +http://purl.obolibrary.org/obo/UBERON_2000685,superficial abductor, +http://purl.obolibrary.org/obo/UBERON_2000687,superficial pretectum, +http://purl.obolibrary.org/obo/UBERON_2000691,supraorbital bone, +http://purl.obolibrary.org/obo/UBERON_2000692,symplectic, +http://purl.obolibrary.org/obo/UBERON_2000693,tangential nucleus, +http://purl.obolibrary.org/obo/UBERON_2000694,ceratobranchial 5 tooth,pharyngeal teeth +http://purl.obolibrary.org/obo/UBERON_2000695,labial cavities, +http://purl.obolibrary.org/obo/UBERON_2000698,tripus,Weberian ossicle 4 +http://purl.obolibrary.org/obo/UBERON_2000698,tripus,fourth Weberian ossicle +http://purl.obolibrary.org/obo/UBERON_2000699,entopterygoid vertical strut,endopterygoid vertical strut +http://purl.obolibrary.org/obo/UBERON_2000699,entopterygoid vertical strut,mesopterygoid vertical strut +http://purl.obolibrary.org/obo/UBERON_2000701,ventral arrector, +http://purl.obolibrary.org/obo/UBERON_2000703,ventral motor nucleus trigeminal nerve, +http://purl.obolibrary.org/obo/UBERON_2000704,ventral pelvic arrector, +http://purl.obolibrary.org/obo/UBERON_2000707,ventral zone, +http://purl.obolibrary.org/obo/UBERON_2000710,viscerosensory commissural nucleus of Cajal, +http://purl.obolibrary.org/obo/UBERON_2000711,deep cell layer (gastrulation),DEL +http://purl.obolibrary.org/obo/UBERON_2000711,deep cell layer (gastrulation),DEL cells +http://purl.obolibrary.org/obo/UBERON_2000712,internal yolk syncytial layer,I-YSL +http://purl.obolibrary.org/obo/UBERON_2000715,adductor hyohyoid, +http://purl.obolibrary.org/obo/UBERON_2000716,afferent portion of pharyngeal arch artery,afferent branchial artery +http://purl.obolibrary.org/obo/UBERON_2000716,afferent portion of pharyngeal arch artery,afferent portion of branchial artery +http://purl.obolibrary.org/obo/UBERON_2000717,apical ectodermal ridge median fin fold,apical ectodermal ridge median fin-fold +http://purl.obolibrary.org/obo/UBERON_2000718,epaxial region somite 27, +http://purl.obolibrary.org/obo/UBERON_2000725,somite 11, +http://purl.obolibrary.org/obo/UBERON_2000726,somite 14, +http://purl.obolibrary.org/obo/UBERON_2000727,somite 17, +http://purl.obolibrary.org/obo/UBERON_2000728,somite 2, +http://purl.obolibrary.org/obo/UBERON_2000729,epaxial region somite 3, +http://purl.obolibrary.org/obo/UBERON_2000730,somite 23, +http://purl.obolibrary.org/obo/UBERON_2000731,somite 27, +http://purl.obolibrary.org/obo/UBERON_2000732,somite 3, +http://purl.obolibrary.org/obo/UBERON_2000733,somite 7, +http://purl.obolibrary.org/obo/UBERON_2000734,preural vertebra,caudal fin vertebra +http://purl.obolibrary.org/obo/UBERON_2000734,preural vertebra,specialized centra/vertebrae +http://purl.obolibrary.org/obo/UBERON_2000735,hemal postzygapophysis,haemal postzygapophysis +http://purl.obolibrary.org/obo/UBERON_2000735,hemal postzygapophysis,hemal postygopophysis +http://purl.obolibrary.org/obo/UBERON_2000735,hemal postzygapophysis,hemal postzygapophyses +http://purl.obolibrary.org/obo/UBERON_2000739,epaxial region somite 11, +http://purl.obolibrary.org/obo/UBERON_2000740,epaxial region somite 5, +http://purl.obolibrary.org/obo/UBERON_2000741,epaxial region somite 14, +http://purl.obolibrary.org/obo/UBERON_2000742,epaxial region somite 17, +http://purl.obolibrary.org/obo/UBERON_2000743,epaxial region somite 2, +http://purl.obolibrary.org/obo/UBERON_2000744,epaxial region somite 22, +http://purl.obolibrary.org/obo/UBERON_2000745,epaxial region somite 25, +http://purl.obolibrary.org/obo/UBERON_2000746,epaxial region somite 28, +http://purl.obolibrary.org/obo/UBERON_2000747,epaxial region somite 30, +http://purl.obolibrary.org/obo/UBERON_2000748,epaxial region somite 6, +http://purl.obolibrary.org/obo/UBERON_2000749,epaxial region somite 9, +http://purl.obolibrary.org/obo/UBERON_2000751,epaxial region somite 8, +http://purl.obolibrary.org/obo/UBERON_2000766,granular layer valvula cerebelli, +http://purl.obolibrary.org/obo/UBERON_2000767,hypaxial region somite 11, +http://purl.obolibrary.org/obo/UBERON_2000768,hypaxial region somite 14, +http://purl.obolibrary.org/obo/UBERON_2000769,hypaxial region somite 17, +http://purl.obolibrary.org/obo/UBERON_2000770,hypaxial region somite 2, +http://purl.obolibrary.org/obo/UBERON_2000771,hypaxial region somite 22, +http://purl.obolibrary.org/obo/UBERON_2000772,hypaxial region somite 25, +http://purl.obolibrary.org/obo/UBERON_2000774,hypaxial region somite 28, +http://purl.obolibrary.org/obo/UBERON_2000775,hypaxial region somite 30, +http://purl.obolibrary.org/obo/UBERON_2000776,hypaxial region somite 6, +http://purl.obolibrary.org/obo/UBERON_2000777,hypaxial region somite 9, +http://purl.obolibrary.org/obo/UBERON_2000779,lateral forebrain bundle telencephalon, +http://purl.obolibrary.org/obo/UBERON_2000788,mesenchyme dorsal fin, +http://purl.obolibrary.org/obo/UBERON_2000801,myotome somite 11, +http://purl.obolibrary.org/obo/UBERON_2000802,myotome somite 15, +http://purl.obolibrary.org/obo/UBERON_2000803,myotome somite 18, +http://purl.obolibrary.org/obo/UBERON_2000804,myotome somite 20, +http://purl.obolibrary.org/obo/UBERON_2000805,myotome somite 23, +http://purl.obolibrary.org/obo/UBERON_2000807,myotome somite 26, +http://purl.obolibrary.org/obo/UBERON_2000808,myotome somite 29, +http://purl.obolibrary.org/obo/UBERON_2000809,myotome somite 4, +http://purl.obolibrary.org/obo/UBERON_2000810,myotome somite 7, +http://purl.obolibrary.org/obo/UBERON_2000813,infraorbital lateral line neuromast,neuromast infraorbital +http://purl.obolibrary.org/obo/UBERON_2000813,infraorbital lateral line neuromast,neuromasts infraorbital +http://purl.obolibrary.org/obo/UBERON_2000814,opercular lateral line neuromast,neuromast opercular +http://purl.obolibrary.org/obo/UBERON_2000814,opercular lateral line neuromast,neuromasts opercular +http://purl.obolibrary.org/obo/UBERON_2000815,nucleus of medial longitudinal fasciculus of medulla,nucleus of MLF medulla +http://purl.obolibrary.org/obo/UBERON_2000815,nucleus of medial longitudinal fasciculus of medulla,nucleus of the medial longitudinal fasciculus medulla oblongata +http://purl.obolibrary.org/obo/UBERON_2000820,presumptive neuron neural tube,presumptive neurons neural tube +http://purl.obolibrary.org/obo/UBERON_2000826,central nucleus torus semicircularis, +http://purl.obolibrary.org/obo/UBERON_2000829,sclerotome somite 11, +http://purl.obolibrary.org/obo/UBERON_2000830,sclerotome somite 14, +http://purl.obolibrary.org/obo/UBERON_2000831,sclerotome somite 17, +http://purl.obolibrary.org/obo/UBERON_2000832,sclerotome somite 2, +http://purl.obolibrary.org/obo/UBERON_2000833,sclerotome somite 22, +http://purl.obolibrary.org/obo/UBERON_2000834,sclerotome somite 25, +http://purl.obolibrary.org/obo/UBERON_2000835,sclerotome somite 28, +http://purl.obolibrary.org/obo/UBERON_2000836,sclerotome somite 30, +http://purl.obolibrary.org/obo/UBERON_2000837,sclerotome somite 6, +http://purl.obolibrary.org/obo/UBERON_2000839,sclerotome somite 9, +http://purl.obolibrary.org/obo/UBERON_2000851,somite 12, +http://purl.obolibrary.org/obo/UBERON_2000852,somite 15, +http://purl.obolibrary.org/obo/UBERON_2000853,somite 18, +http://purl.obolibrary.org/obo/UBERON_2000854,somite 21, +http://purl.obolibrary.org/obo/UBERON_2000855,somite 24, +http://purl.obolibrary.org/obo/UBERON_2000856,somite 28, +http://purl.obolibrary.org/obo/UBERON_2000857,somite 4, +http://purl.obolibrary.org/obo/UBERON_2000858,somite 8, +http://purl.obolibrary.org/obo/UBERON_2000859,specialized hemal arch and spine,ha(pu) +http://purl.obolibrary.org/obo/UBERON_2000859,specialized hemal arch and spine,hemal arches (preural) +http://purl.obolibrary.org/obo/UBERON_2000859,specialized hemal arch and spine,specialized haemal arch and spine +http://purl.obolibrary.org/obo/UBERON_2000859,specialized hemal arch and spine,specialized hemal arches and spines +http://purl.obolibrary.org/obo/UBERON_2000864,epaxial region somite 1, +http://purl.obolibrary.org/obo/UBERON_2000865,epaxial region somite 12, +http://purl.obolibrary.org/obo/UBERON_2000866,epaxial region somite 15, +http://purl.obolibrary.org/obo/UBERON_2000867,epaxial region somite 18, +http://purl.obolibrary.org/obo/UBERON_2000868,epaxial region somite 20, +http://purl.obolibrary.org/obo/UBERON_2000869,epaxial region somite 23, +http://purl.obolibrary.org/obo/UBERON_2000870,epaxial region somite 26, +http://purl.obolibrary.org/obo/UBERON_2000872,epaxial region somite 29, +http://purl.obolibrary.org/obo/UBERON_2000873,epaxial region somite 4, +http://purl.obolibrary.org/obo/UBERON_2000874,epaxial region somite 7, +http://purl.obolibrary.org/obo/UBERON_2000887,floor plate neural rod,floorplate neural rod +http://purl.obolibrary.org/obo/UBERON_2000891,hypaxial region somite 1, +http://purl.obolibrary.org/obo/UBERON_2000892,hypaxial region somite 12, +http://purl.obolibrary.org/obo/UBERON_2000894,hypaxial region somite 15, +http://purl.obolibrary.org/obo/UBERON_2000895,hypaxial region somite 18, +http://purl.obolibrary.org/obo/UBERON_2000896,hypaxial region somite 20, +http://purl.obolibrary.org/obo/UBERON_2000897,hypaxial region somite 23, +http://purl.obolibrary.org/obo/UBERON_2000898,hypaxial region somite 26, +http://purl.obolibrary.org/obo/UBERON_2000899,hypaxial region somite 29, +http://purl.obolibrary.org/obo/UBERON_2000900,hypaxial region somite 4, +http://purl.obolibrary.org/obo/UBERON_2000901,hypaxial region somite 7, +http://purl.obolibrary.org/obo/UBERON_2000902,hypural musculature,hypural muscles +http://purl.obolibrary.org/obo/UBERON_2000910,medial forebrain bundle telencephalon, +http://purl.obolibrary.org/obo/UBERON_2000911,transverse process of neural arch 3,anterodorsal process of neural arch 3 +http://purl.obolibrary.org/obo/UBERON_2000911,transverse process of neural arch 3,transverse process of the third vertebra +http://purl.obolibrary.org/obo/UBERON_2000912,mesenchyme median fin fold,mesenchyme median fin-fold +http://purl.obolibrary.org/obo/UBERON_2000913,molecular layer valvula cerebelli, +http://purl.obolibrary.org/obo/UBERON_2000924,myotome somite 1, +http://purl.obolibrary.org/obo/UBERON_2000925,hypaxial region somite 10, +http://purl.obolibrary.org/obo/UBERON_2000926,myotome somite 12, +http://purl.obolibrary.org/obo/UBERON_2000927,myotome somite 16, +http://purl.obolibrary.org/obo/UBERON_2000928,myotome somite 19, +http://purl.obolibrary.org/obo/UBERON_2000929,myotome somite 21, +http://purl.obolibrary.org/obo/UBERON_2000930,myotome somite 24, +http://purl.obolibrary.org/obo/UBERON_2000931,myotome somite 27, +http://purl.obolibrary.org/obo/UBERON_2000932,myotome somite 3, +http://purl.obolibrary.org/obo/UBERON_2000933,myotome somite 5, +http://purl.obolibrary.org/obo/UBERON_2000934,myotome somite 8, +http://purl.obolibrary.org/obo/UBERON_2000936,dorsal fin distal radial bone, +http://purl.obolibrary.org/obo/UBERON_2000937,hypaxial region somite 13, +http://purl.obolibrary.org/obo/UBERON_2000939,middle lateral line neuromast,neuromast middle +http://purl.obolibrary.org/obo/UBERON_2000939,middle lateral line neuromast,neuromasts middle +http://purl.obolibrary.org/obo/UBERON_2000940,posterior lateral line neuromast,neuromast posterior +http://purl.obolibrary.org/obo/UBERON_2000940,posterior lateral line neuromast,neuromasts posterior +http://purl.obolibrary.org/obo/UBERON_2000941,nucleus of the medial longitudinal fasciculus synencephalon, +http://purl.obolibrary.org/obo/UBERON_2000946,hypaxial region somite 16, +http://purl.obolibrary.org/obo/UBERON_2000947,dorsal fin proximal radial bone,basal radial of dorsal fin +http://purl.obolibrary.org/obo/UBERON_2000952,sclerotome somite 1, +http://purl.obolibrary.org/obo/UBERON_2000953,sclerotome somite 12, +http://purl.obolibrary.org/obo/UBERON_2000954,sclerotome somite 15, +http://purl.obolibrary.org/obo/UBERON_2000955,sclerotome somite 18, +http://purl.obolibrary.org/obo/UBERON_2000956,sclerotome somite 20, +http://purl.obolibrary.org/obo/UBERON_2000957,hypaxial region somite 19, +http://purl.obolibrary.org/obo/UBERON_2000958,sclerotome somite 23, +http://purl.obolibrary.org/obo/UBERON_2000959,sclerotome somite 26, +http://purl.obolibrary.org/obo/UBERON_2000960,sclerotome somite 29, +http://purl.obolibrary.org/obo/UBERON_2000961,sclerotome somite 4, +http://purl.obolibrary.org/obo/UBERON_2000962,sclerotome somite 7, +http://purl.obolibrary.org/obo/UBERON_2000968,hypaxial region somite 21, +http://purl.obolibrary.org/obo/UBERON_2000974,somite 10, +http://purl.obolibrary.org/obo/UBERON_2000975,somite 13, +http://purl.obolibrary.org/obo/UBERON_2000976,somite 16, +http://purl.obolibrary.org/obo/UBERON_2000977,somite 19, +http://purl.obolibrary.org/obo/UBERON_2000978,somite 22, +http://purl.obolibrary.org/obo/UBERON_2000979,hypaxial region somite 24, +http://purl.obolibrary.org/obo/UBERON_2000980,somite 25, +http://purl.obolibrary.org/obo/UBERON_2000981,somite 29, +http://purl.obolibrary.org/obo/UBERON_2000982,somite 6, +http://purl.obolibrary.org/obo/UBERON_2000983,somite 9, +http://purl.obolibrary.org/obo/UBERON_2000984,superior reticular formation tegmentum, +http://purl.obolibrary.org/obo/UBERON_2000985,ventral rhombencephalic commissure medulla oblongata, +http://purl.obolibrary.org/obo/UBERON_2000986,hypaxial region somite 27, +http://purl.obolibrary.org/obo/UBERON_2000987,hypaxial region somite 3, +http://purl.obolibrary.org/obo/UBERON_2000988,hypaxial region somite 5, +http://purl.obolibrary.org/obo/UBERON_2000989,hypaxial region somite 8, +http://purl.obolibrary.org/obo/UBERON_2000991,epaxial region somite 10, +http://purl.obolibrary.org/obo/UBERON_2000993,lateral wall neural rod, +http://purl.obolibrary.org/obo/UBERON_2000997,medial funicular nucleus trigeminal nuclei, +http://purl.obolibrary.org/obo/UBERON_2001001,epaxial region somite 13, +http://purl.obolibrary.org/obo/UBERON_2001012,epaxial region somite 16, +http://purl.obolibrary.org/obo/UBERON_2001013,myotome somite 10, +http://purl.obolibrary.org/obo/UBERON_2001014,myotome somite 13, +http://purl.obolibrary.org/obo/UBERON_2001015,myotome somite 17, +http://purl.obolibrary.org/obo/UBERON_2001016,myotome somite 2, +http://purl.obolibrary.org/obo/UBERON_2001017,myotome somite 22, +http://purl.obolibrary.org/obo/UBERON_2001018,myotome somite 25, +http://purl.obolibrary.org/obo/UBERON_2001019,myotome somite 28, +http://purl.obolibrary.org/obo/UBERON_2001020,myotome somite 30, +http://purl.obolibrary.org/obo/UBERON_2001021,myotome somite 6, +http://purl.obolibrary.org/obo/UBERON_2001022,myotome somite 9, +http://purl.obolibrary.org/obo/UBERON_2001023,epaxial region somite 19, +http://purl.obolibrary.org/obo/UBERON_2001025,occipital lateral line neuromast,neuromast occipital +http://purl.obolibrary.org/obo/UBERON_2001025,occipital lateral line neuromast,neuromasts occipital +http://purl.obolibrary.org/obo/UBERON_2001026,supraorbital lateral line neuromast,neuromast supraorbital +http://purl.obolibrary.org/obo/UBERON_2001026,supraorbital lateral line neuromast,neuromasts supraorbital +http://purl.obolibrary.org/obo/UBERON_2001028,hypurapophysis,hypurapophyses +http://purl.obolibrary.org/obo/UBERON_2001028,hypurapophysis,parhypurapophyses +http://purl.obolibrary.org/obo/UBERON_2001028,hypurapophysis,parhypurapophyses processes +http://purl.obolibrary.org/obo/UBERON_2001030,epaxial region somite 21, +http://purl.obolibrary.org/obo/UBERON_2001036,sclerotome somite 10, +http://purl.obolibrary.org/obo/UBERON_2001037,sclerotome somite 13, +http://purl.obolibrary.org/obo/UBERON_2001038,sclerotome somite 16, +http://purl.obolibrary.org/obo/UBERON_2001039,sclerotome somite 19, +http://purl.obolibrary.org/obo/UBERON_2001040,epaxial region somite 24, +http://purl.obolibrary.org/obo/UBERON_2001041,sclerotome somite 21, +http://purl.obolibrary.org/obo/UBERON_2001042,sclerotome somite 24, +http://purl.obolibrary.org/obo/UBERON_2001043,sclerotome somite 27, +http://purl.obolibrary.org/obo/UBERON_2001044,sclerotome somite 3, +http://purl.obolibrary.org/obo/UBERON_2001045,sclerotome somite 5, +http://purl.obolibrary.org/obo/UBERON_2001046,sclerotome somite 8, +http://purl.obolibrary.org/obo/UBERON_2001051,caudal division of the internal carotid artery,CaDI +http://purl.obolibrary.org/obo/UBERON_2001052,primordial hindbrain channel,PHCB +http://purl.obolibrary.org/obo/UBERON_2001052,primordial hindbrain channel,medial head vein +http://purl.obolibrary.org/obo/UBERON_2001053,future internal carotid artery,PICA +http://purl.obolibrary.org/obo/UBERON_2001053,future internal carotid artery,primitive internal carotid artery +http://purl.obolibrary.org/obo/UBERON_2001054,lateral dorsal aorta,LDA +http://purl.obolibrary.org/obo/UBERON_2001055,pronephric duct opening, +http://purl.obolibrary.org/obo/UBERON_2001059,cranial division of the internal carotid artery,CrDI +http://purl.obolibrary.org/obo/UBERON_2001059,cranial division of the internal carotid artery,rostral division of the internal carotid artery +http://purl.obolibrary.org/obo/UBERON_2001060,basidorsal,arcualia +http://purl.obolibrary.org/obo/UBERON_2001062,presumptive mesencephalic artery,PMsA +http://purl.obolibrary.org/obo/UBERON_2001062,presumptive mesencephalic artery,primitive mesencephalic artery +http://purl.obolibrary.org/obo/UBERON_2001063,posterior caudal vein, +http://purl.obolibrary.org/obo/UBERON_2001069,ventral fin fold,anal fin fold +http://purl.obolibrary.org/obo/UBERON_2001069,ventral fin fold,anal fin-fold +http://purl.obolibrary.org/obo/UBERON_2001069,ventral fin fold,tail fin fold +http://purl.obolibrary.org/obo/UBERON_2001069,ventral fin fold,tail fin-fold +http://purl.obolibrary.org/obo/UBERON_2001069,ventral fin fold,ventral fin +http://purl.obolibrary.org/obo/UBERON_2001069,ventral fin fold,ventral fin-fold +http://purl.obolibrary.org/obo/UBERON_2001073,axial vasculature, +http://purl.obolibrary.org/obo/UBERON_2001076,intestinal bulb,anterior intestine +http://purl.obolibrary.org/obo/UBERON_2001089,myoseptum, +http://purl.obolibrary.org/obo/UBERON_2001095,immature macula,immature maculae +http://purl.obolibrary.org/obo/UBERON_2001095,immature macula,immature sensory patch +http://purl.obolibrary.org/obo/UBERON_2001095,immature macula,immature sensory patches +http://purl.obolibrary.org/obo/UBERON_2001096,immature anterior macula, +http://purl.obolibrary.org/obo/UBERON_2001097,immature posterior macula, +http://purl.obolibrary.org/obo/UBERON_2001102,immature anterior otolith, +http://purl.obolibrary.org/obo/UBERON_2001103,immature posterior otolith, +http://purl.obolibrary.org/obo/UBERON_2001118,urogenital papilla,UGP +http://purl.obolibrary.org/obo/UBERON_2001118,urogenital papilla,anal papilla +http://purl.obolibrary.org/obo/UBERON_2001118,urogenital papilla,anal papillae +http://purl.obolibrary.org/obo/UBERON_2001118,urogenital papilla,genital papilla +http://purl.obolibrary.org/obo/UBERON_2001118,urogenital papilla,urogenital papillae +http://purl.obolibrary.org/obo/UBERON_2001125,organizer inducing center,Nieuwkoop center +http://purl.obolibrary.org/obo/UBERON_2001126,noninvoluting endocytic marginal cell cluster,NEM +http://purl.obolibrary.org/obo/UBERON_2001126,noninvoluting endocytic marginal cell cluster,noninvoluting endocytic marginal cells +http://purl.obolibrary.org/obo/UBERON_2001129,pharyngeal pouches 2-6, +http://purl.obolibrary.org/obo/UBERON_2001137,ventral tooth row, +http://purl.obolibrary.org/obo/UBERON_2001139,mediodorsal tooth row, +http://purl.obolibrary.org/obo/UBERON_2001140,dorsal tooth row, +http://purl.obolibrary.org/obo/UBERON_2001141,tooth 1V, +http://purl.obolibrary.org/obo/UBERON_2001142,tooth 5V, +http://purl.obolibrary.org/obo/UBERON_2001143,tooth 4V, +http://purl.obolibrary.org/obo/UBERON_2001144,tooth 2V, +http://purl.obolibrary.org/obo/UBERON_2001145,tooth 3V, +http://purl.obolibrary.org/obo/UBERON_2001146,tooth 1MD, +http://purl.obolibrary.org/obo/UBERON_2001147,tooth 2MD, +http://purl.obolibrary.org/obo/UBERON_2001148,tooth 1D, +http://purl.obolibrary.org/obo/UBERON_2001150,tooth 2D, +http://purl.obolibrary.org/obo/UBERON_2001151,tooth 4MD, +http://purl.obolibrary.org/obo/UBERON_2001152,tooth 3MD, +http://purl.obolibrary.org/obo/UBERON_2001154,anal fin musculature, +http://purl.obolibrary.org/obo/UBERON_2001156,posterior lateral line placode, +http://purl.obolibrary.org/obo/UBERON_2001157,posterior lateral line primordium,posterior lateral line primordia +http://purl.obolibrary.org/obo/UBERON_2001160,dorsal scute, +http://purl.obolibrary.org/obo/UBERON_2001163,supraneural 7 bone, +http://purl.obolibrary.org/obo/UBERON_2001164,supraneural 6 bone,sn6 +http://purl.obolibrary.org/obo/UBERON_2001165,supraneural 5 bone,sn5 +http://purl.obolibrary.org/obo/UBERON_2001166,supraneural 9 bone, +http://purl.obolibrary.org/obo/UBERON_2001167,vertebral element 1, +http://purl.obolibrary.org/obo/UBERON_2001168,vertebral element 2, +http://purl.obolibrary.org/obo/UBERON_2001169,vertebral element 3, +http://purl.obolibrary.org/obo/UBERON_2001170,vertebral element 4, +http://purl.obolibrary.org/obo/UBERON_2001171,os suspensorium,Weberian ossicle 5 +http://purl.obolibrary.org/obo/UBERON_2001171,os suspensorium,fifth Weberian ossicle +http://purl.obolibrary.org/obo/UBERON_2001172,roofing cartilage, +http://purl.obolibrary.org/obo/UBERON_2001179,epidermal superficial stratum, +http://purl.obolibrary.org/obo/UBERON_2001181,epidermal intermediate stratum, +http://purl.obolibrary.org/obo/UBERON_2001183,dermal superficial region,stratum laxum +http://purl.obolibrary.org/obo/UBERON_2001186,collagenous dermal stroma,primary dermal stroma +http://purl.obolibrary.org/obo/UBERON_2001188,Weberian apparatus, +http://purl.obolibrary.org/obo/UBERON_2001190,Weberian vertebra,Weberian vertebrae +http://purl.obolibrary.org/obo/UBERON_2001191,supraneural 2 bone,small supraneural +http://purl.obolibrary.org/obo/UBERON_2001191,supraneural 2 bone,sn2 +http://purl.obolibrary.org/obo/UBERON_2001192,supraneural 3 bone,large supraneural +http://purl.obolibrary.org/obo/UBERON_2001192,supraneural 3 bone,sn3 +http://purl.obolibrary.org/obo/UBERON_2001193,supraneural 8 bone, +http://purl.obolibrary.org/obo/UBERON_2001200,corpuscles of Stannius, +http://purl.obolibrary.org/obo/UBERON_2001201,ventral lateral mesoderm, +http://purl.obolibrary.org/obo/UBERON_2001220,basibranchial copula, +http://purl.obolibrary.org/obo/UBERON_2001221,anterior copula,anterior basibranchial copula +http://purl.obolibrary.org/obo/UBERON_2001222,posterior copula,copula 2 +http://purl.obolibrary.org/obo/UBERON_2001222,posterior copula,posterior basibranchial copula +http://purl.obolibrary.org/obo/UBERON_2001222,posterior copula,posterior copula +http://purl.obolibrary.org/obo/UBERON_2001223,basibranchial 1 bone, +http://purl.obolibrary.org/obo/UBERON_2001224,basibranchial 2 bone, +http://purl.obolibrary.org/obo/UBERON_2001225,basibranchial 3 bone, +http://purl.obolibrary.org/obo/UBERON_2001226,basibranchial 4 bone, +http://purl.obolibrary.org/obo/UBERON_2001228,pharyngeal arch 3 skeleton,branchial arch 1 skeleton +http://purl.obolibrary.org/obo/UBERON_2001228,pharyngeal arch 3 skeleton,gill arch 1 skeleton +http://purl.obolibrary.org/obo/UBERON_2001228,pharyngeal arch 3 skeleton,visceral arch 3 skeleton +http://purl.obolibrary.org/obo/UBERON_2001229,pharyngeal arch 7 skeleton,branchial arch 5 skeleton +http://purl.obolibrary.org/obo/UBERON_2001229,pharyngeal arch 7 skeleton,gill arch 5 skeleton +http://purl.obolibrary.org/obo/UBERON_2001229,pharyngeal arch 7 skeleton,visceral arch 7 skeleton +http://purl.obolibrary.org/obo/UBERON_2001230,pharyngeal arch 6 skeleton,branchial arch 4 skeleton +http://purl.obolibrary.org/obo/UBERON_2001230,pharyngeal arch 6 skeleton,gill arch 4 skeleton +http://purl.obolibrary.org/obo/UBERON_2001230,pharyngeal arch 6 skeleton,visceral arch 6 skeleton +http://purl.obolibrary.org/obo/UBERON_2001231,pharyngeal arch 4 skeleton,branchial arch 2 skeleton +http://purl.obolibrary.org/obo/UBERON_2001231,pharyngeal arch 4 skeleton,gill arch 2 skeleton +http://purl.obolibrary.org/obo/UBERON_2001231,pharyngeal arch 4 skeleton,visceral arch 4 skeleton +http://purl.obolibrary.org/obo/UBERON_2001232,pharyngeal arch 5 skeleton,branchial arch 3 skeleton +http://purl.obolibrary.org/obo/UBERON_2001232,pharyngeal arch 5 skeleton,gill arch 3 skeleton +http://purl.obolibrary.org/obo/UBERON_2001232,pharyngeal arch 5 skeleton,visceral arch 5 skeleton +http://purl.obolibrary.org/obo/UBERON_2001233,hypobranchial 1 bone, +http://purl.obolibrary.org/obo/UBERON_2001234,hypobranchial 4 bone, +http://purl.obolibrary.org/obo/UBERON_2001235,hypobranchial 3 bone, +http://purl.obolibrary.org/obo/UBERON_2001236,hypobranchial 2 bone, +http://purl.obolibrary.org/obo/UBERON_2001237,ceratobranchial 1 bone, +http://purl.obolibrary.org/obo/UBERON_2001239,ceratobranchial 5 bone,inferior pharyngeal bone +http://purl.obolibrary.org/obo/UBERON_2001239,ceratobranchial 5 bone,lower pharyngeal +http://purl.obolibrary.org/obo/UBERON_2001240,ceratobranchial 4 bone, +http://purl.obolibrary.org/obo/UBERON_2001241,ceratobranchial 3 bone, +http://purl.obolibrary.org/obo/UBERON_2001242,ceratobranchial 2 bone, +http://purl.obolibrary.org/obo/UBERON_2001243,epibranchial 1 bone, +http://purl.obolibrary.org/obo/UBERON_2001244,epibranchial 5 cartilage,accessory cartilage +http://purl.obolibrary.org/obo/UBERON_2001244,epibranchial 5 cartilage,interbranchial +http://purl.obolibrary.org/obo/UBERON_2001244,epibranchial 5 cartilage,interbranchial IV +http://purl.obolibrary.org/obo/UBERON_2001245,epibranchial 4 bone, +http://purl.obolibrary.org/obo/UBERON_2001246,epibranchial 2 bone, +http://purl.obolibrary.org/obo/UBERON_2001247,epibranchial 3 bone, +http://purl.obolibrary.org/obo/UBERON_2001248,dorsal scute series, +http://purl.obolibrary.org/obo/UBERON_2001250,pharyngobranchial 2 bone,infrapharyngobranchial 2 +http://purl.obolibrary.org/obo/UBERON_2001251,pharyngobranchial 4 cartilage,infrapharyngobranchial 4 cartilage +http://purl.obolibrary.org/obo/UBERON_2001251,pharyngobranchial 4 cartilage,infrapharyngobranchials +http://purl.obolibrary.org/obo/UBERON_2001252,pharyngobranchial 3 bone,infrapharyngobranchial 3 +http://purl.obolibrary.org/obo/UBERON_2001253,neural arch 2, +http://purl.obolibrary.org/obo/UBERON_2001254,abdominal scute series,abdominal scutes +http://purl.obolibrary.org/obo/UBERON_2001256,lateral floor plate, +http://purl.obolibrary.org/obo/UBERON_2001257,medial floor plate, +http://purl.obolibrary.org/obo/UBERON_2001263,ovarian follicle stage I,previtillogenic ovarian follicle +http://purl.obolibrary.org/obo/UBERON_2001265,ovarian follicle stage II, +http://purl.obolibrary.org/obo/UBERON_2001266,ovarian follicle stage III, +http://purl.obolibrary.org/obo/UBERON_2001269,regenerating fin/limb, +http://purl.obolibrary.org/obo/UBERON_2001274,coronomeckelian,sesamoid articular +http://purl.obolibrary.org/obo/UBERON_2001274,coronomeckelian,sesamoid coronoid +http://purl.obolibrary.org/obo/UBERON_2001275,sublingual bone, +http://purl.obolibrary.org/obo/UBERON_2001277,anterior chamber swim bladder, +http://purl.obolibrary.org/obo/UBERON_2001278,posterior chamber swim bladder, +http://purl.obolibrary.org/obo/UBERON_2001279,branchiostegal ray 1, +http://purl.obolibrary.org/obo/UBERON_2001280,branchiostegal ray 3, +http://purl.obolibrary.org/obo/UBERON_2001281,branchiostegal ray 2, +http://purl.obolibrary.org/obo/UBERON_2001286,caudal vein plexus, +http://purl.obolibrary.org/obo/UBERON_2001293,posterior kidney, +http://purl.obolibrary.org/obo/UBERON_2001297,vagal placode 1, +http://purl.obolibrary.org/obo/UBERON_2001298,vagal placode 2, +http://purl.obolibrary.org/obo/UBERON_2001299,vagal placode 3, +http://purl.obolibrary.org/obo/UBERON_2001300,vagal placode 4, +http://purl.obolibrary.org/obo/UBERON_2001302,vagal ganglion 1,gX1 +http://purl.obolibrary.org/obo/UBERON_2001302,vagal ganglion 1,nodose ganglion 1 +http://purl.obolibrary.org/obo/UBERON_2001303,vagal ganglion 2,gX2 +http://purl.obolibrary.org/obo/UBERON_2001303,vagal ganglion 2,nodose ganglion 2 +http://purl.obolibrary.org/obo/UBERON_2001304,vagal ganglion 3,gX3 +http://purl.obolibrary.org/obo/UBERON_2001304,vagal ganglion 3,nodose ganglion 3 +http://purl.obolibrary.org/obo/UBERON_2001305,vagal ganglion 4,gX4 +http://purl.obolibrary.org/obo/UBERON_2001305,vagal ganglion 4,nodose ganglion 4 +http://purl.obolibrary.org/obo/UBERON_2001312,dorsal anterior lateral line ganglion,anterodorsal lateral line ganglion +http://purl.obolibrary.org/obo/UBERON_2001313,ventral anterior lateral line ganglion,anteroventral lateral line ganglion +http://purl.obolibrary.org/obo/UBERON_2001314,posterior lateral line ganglion, +http://purl.obolibrary.org/obo/UBERON_2001316,anterior lateral line placode, +http://purl.obolibrary.org/obo/UBERON_2001324,enteric musculature, +http://purl.obolibrary.org/obo/UBERON_2001333,sublingual dorsal and ventral fused, +http://purl.obolibrary.org/obo/UBERON_2001335,supradorsal, +http://purl.obolibrary.org/obo/UBERON_2001340,nucleus of the tract of the postoptic commissure,ntPOC +http://purl.obolibrary.org/obo/UBERON_2001341,intervening zone,IZ +http://purl.obolibrary.org/obo/UBERON_2001342,presumptive intervening zone, +http://purl.obolibrary.org/obo/UBERON_2001343,telencephalon diencephalon boundary, +http://purl.obolibrary.org/obo/UBERON_2001347,stratum fibrosum et griseum superficiale, +http://purl.obolibrary.org/obo/UBERON_2001348,stratum marginale, +http://purl.obolibrary.org/obo/UBERON_2001349,stratum opticum, +http://purl.obolibrary.org/obo/UBERON_2001352,stratum periventriculare, +http://purl.obolibrary.org/obo/UBERON_2001357,alar plate midbrain, +http://purl.obolibrary.org/obo/UBERON_2001361,basiventral, +http://purl.obolibrary.org/obo/UBERON_2001363,neural complex of Weberian apparatus,Weberian supraneural +http://purl.obolibrary.org/obo/UBERON_2001364,hemal spine,haemacanthe +http://purl.obolibrary.org/obo/UBERON_2001364,hemal spine,haemal spine +http://purl.obolibrary.org/obo/UBERON_2001364,hemal spine,hémacanthe +http://purl.obolibrary.org/obo/UBERON_2001364,hemal spine,épine hémale +http://purl.obolibrary.org/obo/UBERON_2001366,tract of the postoptic commissure,TPOC +http://purl.obolibrary.org/obo/UBERON_2001371,pancreatic system, +http://purl.obolibrary.org/obo/UBERON_2001378,axial hypoblast, +http://purl.obolibrary.org/obo/UBERON_2001382,epibranchial bone uncinate process, +http://purl.obolibrary.org/obo/UBERON_2001388,epithelial mesenchymal boundary of regenerating fin/limb, +http://purl.obolibrary.org/obo/UBERON_2001389,regeneration epithelium of fin/limb,epidermal cap of fin +http://purl.obolibrary.org/obo/UBERON_2001389,regeneration epithelium of fin/limb,wound epidermis of fin +http://purl.obolibrary.org/obo/UBERON_2001389,regeneration epithelium of fin/limb,wound epithelium of fin +http://purl.obolibrary.org/obo/UBERON_2001391,anterior lateral line ganglion, +http://purl.obolibrary.org/obo/UBERON_2001392,parapophysis 1,basipophysis 1 +http://purl.obolibrary.org/obo/UBERON_2001392,parapophysis 1,lateral process 1 +http://purl.obolibrary.org/obo/UBERON_2001393,parapophysis 2,basipophysis +http://purl.obolibrary.org/obo/UBERON_2001393,parapophysis 2,lateral process 2 +http://purl.obolibrary.org/obo/UBERON_2001394,neural arch 3, +http://purl.obolibrary.org/obo/UBERON_2001395,neural arch 4, +http://purl.obolibrary.org/obo/UBERON_2001396,parapophysis + rib of vertebra 4,fourth pleural rib plus parapophysis +http://purl.obolibrary.org/obo/UBERON_2001396,parapophysis + rib of vertebra 4,fourth rib plus parapophysis +http://purl.obolibrary.org/obo/UBERON_2001396,parapophysis + rib of vertebra 4,parapophysis/rib +http://purl.obolibrary.org/obo/UBERON_2001397,post-Weberian supraneural, +http://purl.obolibrary.org/obo/UBERON_2001403,supraethmoid, +http://purl.obolibrary.org/obo/UBERON_2001404,preethmoid bone, +http://purl.obolibrary.org/obo/UBERON_2001406,kinethmoid bone,kinethmoideum bone +http://purl.obolibrary.org/obo/UBERON_2001407,infraorbital 2, +http://purl.obolibrary.org/obo/UBERON_2001408,infraorbital 3, +http://purl.obolibrary.org/obo/UBERON_2001409,infraorbital 4, +http://purl.obolibrary.org/obo/UBERON_2001412,epiotic,epioccipital +http://purl.obolibrary.org/obo/UBERON_2001412,epiotic,epioccipitals +http://purl.obolibrary.org/obo/UBERON_2001415,pelvic fin distal radial bone 2, +http://purl.obolibrary.org/obo/UBERON_2001416,pelvic fin distal radial bone 3, +http://purl.obolibrary.org/obo/UBERON_2001417,pelvic fin distal radial bone 1, +http://purl.obolibrary.org/obo/UBERON_2001419,dorsal fin pterygiophore,dorsal fin pterygiophores +http://purl.obolibrary.org/obo/UBERON_2001419,dorsal fin pterygiophore,dorsal fin support +http://purl.obolibrary.org/obo/UBERON_2001420,anal fin pterygiophore,anal fin pterygiophores +http://purl.obolibrary.org/obo/UBERON_2001425,basal plate cartilage, +http://purl.obolibrary.org/obo/UBERON_2001426,posterior naris,posterior nostril +http://purl.obolibrary.org/obo/UBERON_2001427,anterior naris,anterior nostril +http://purl.obolibrary.org/obo/UBERON_2001428,olfactory rosette,nasal rosette +http://purl.obolibrary.org/obo/UBERON_2001430,pneumatic duct, +http://purl.obolibrary.org/obo/UBERON_2001431,primitive olfactory epithelium, +http://purl.obolibrary.org/obo/UBERON_2001432,anterior sclerotic bone, +http://purl.obolibrary.org/obo/UBERON_2001433,posterior sclerotic bone, +http://purl.obolibrary.org/obo/UBERON_2001437,ductus communicans, +http://purl.obolibrary.org/obo/UBERON_2001450,apical ectodermal ridge pelvic fin, +http://purl.obolibrary.org/obo/UBERON_2001456,pectoral fin endoskeletal disc,fin plate cartilage +http://purl.obolibrary.org/obo/UBERON_2001457,postcranial axial cartilage, +http://purl.obolibrary.org/obo/UBERON_2001463,melanophore stripe,bar +http://purl.obolibrary.org/obo/UBERON_2001463,melanophore stripe,melanophore bar +http://purl.obolibrary.org/obo/UBERON_2001463,melanophore stripe,stripe +http://purl.obolibrary.org/obo/UBERON_2001463,melanophore stripe,stripes +http://purl.obolibrary.org/obo/UBERON_2001467,pharyngeal mesoderm, +http://purl.obolibrary.org/obo/UBERON_2001468,anterior lateral line system, +http://purl.obolibrary.org/obo/UBERON_2001470,anterior lateral line, +http://purl.obolibrary.org/obo/UBERON_2001471,posterior lateral line system, +http://purl.obolibrary.org/obo/UBERON_2001472,anterior lateral line neuromast,neuromast anterior +http://purl.obolibrary.org/obo/UBERON_2001474,sublingual dorsal and ventral separate, +http://purl.obolibrary.org/obo/UBERON_2001475,sublingual dorsal ossification, +http://purl.obolibrary.org/obo/UBERON_2001476,sublingual ventral ossification, +http://purl.obolibrary.org/obo/UBERON_2001480,dorsal anterior lateral line nerve, +http://purl.obolibrary.org/obo/UBERON_2001481,ventral anterior lateral line nerve, +http://purl.obolibrary.org/obo/UBERON_2001482,middle lateral line nerve, +http://purl.obolibrary.org/obo/UBERON_2001483,middle lateral line ganglion, +http://purl.obolibrary.org/obo/UBERON_2001502,epiphyseal bar, +http://purl.obolibrary.org/obo/UBERON_2001504,occipital arch cartilage, +http://purl.obolibrary.org/obo/UBERON_2001505,taenia marginalis anterior, +http://purl.obolibrary.org/obo/UBERON_2001508,trabecula communis, +http://purl.obolibrary.org/obo/UBERON_2001511,interhyal cartilage,stylohyal cartilage +http://purl.obolibrary.org/obo/UBERON_2001515,taenia marginalis posterior, +http://purl.obolibrary.org/obo/UBERON_2001516,ceratobranchial cartilage, +http://purl.obolibrary.org/obo/UBERON_2001517,ceratobranchial 2 cartilage, +http://purl.obolibrary.org/obo/UBERON_2001518,ceratobranchial 3 cartilage, +http://purl.obolibrary.org/obo/UBERON_2001519,ceratobranchial 4 cartilage, +http://purl.obolibrary.org/obo/UBERON_2001520,ceratobranchial 1 cartilage, +http://purl.obolibrary.org/obo/UBERON_2001521,ceratobranchial 5 cartilage, +http://purl.obolibrary.org/obo/UBERON_2001522,hypobranchial cartilage, +http://purl.obolibrary.org/obo/UBERON_2001523,hypobranchial 4 cartilage, +http://purl.obolibrary.org/obo/UBERON_2001524,hypobranchial 1 cartilage, +http://purl.obolibrary.org/obo/UBERON_2001525,hypobranchial 2 cartilage, +http://purl.obolibrary.org/obo/UBERON_2001526,hypobranchial 3 cartilage, +http://purl.obolibrary.org/obo/UBERON_2001527,epibranchial cartilage, +http://purl.obolibrary.org/obo/UBERON_2001528,epibranchial 1 cartilage, +http://purl.obolibrary.org/obo/UBERON_2001529,epibranchial 3 cartilage, +http://purl.obolibrary.org/obo/UBERON_2001530,epibranchial 2 cartilage, +http://purl.obolibrary.org/obo/UBERON_2001531,epibranchial 4 cartilage, +http://purl.obolibrary.org/obo/UBERON_2001532,sublingual dorsal cartilage, +http://purl.obolibrary.org/obo/UBERON_2001533,pharyngobranchial cartilage,infrapharyngobranchial cartilage +http://purl.obolibrary.org/obo/UBERON_2001534,pharyngobranchial 3 cartilage, +http://purl.obolibrary.org/obo/UBERON_2001535,median fin cartilage, +http://purl.obolibrary.org/obo/UBERON_2001536,pharyngobranchial 2 cartilage, +http://purl.obolibrary.org/obo/UBERON_2001537,mesocoracoid cartilage, +http://purl.obolibrary.org/obo/UBERON_2001538,pelvic radial cartilage,pelvic fin radial cartilage +http://purl.obolibrary.org/obo/UBERON_2001539,basipterygium cartilage, +http://purl.obolibrary.org/obo/UBERON_2001540,pelvic radial 3 cartilage, +http://purl.obolibrary.org/obo/UBERON_2001541,pelvic radial 2 cartilage, +http://purl.obolibrary.org/obo/UBERON_2001542,pelvic radial 1 cartilage, +http://purl.obolibrary.org/obo/UBERON_2001544,sublingual cartilage, +http://purl.obolibrary.org/obo/UBERON_2001545,sublingual ventral cartilage, +http://purl.obolibrary.org/obo/UBERON_2001546,neural spine 4, +http://purl.obolibrary.org/obo/UBERON_2001547,abdominal scute, +http://purl.obolibrary.org/obo/UBERON_2001548,intercalarium ascending process, +http://purl.obolibrary.org/obo/UBERON_2001553,manubrium,intercalarium anterior process +http://purl.obolibrary.org/obo/UBERON_2001553,manubrium,intercalarium horizontal process +http://purl.obolibrary.org/obo/UBERON_2001553,manubrium,manubrium incudus +http://purl.obolibrary.org/obo/UBERON_2001560,hypural 1, +http://purl.obolibrary.org/obo/UBERON_2001561,hypural 2, +http://purl.obolibrary.org/obo/UBERON_2001562,hypural 3, +http://purl.obolibrary.org/obo/UBERON_2001563,hypural 4, +http://purl.obolibrary.org/obo/UBERON_2001564,hypural 5, +http://purl.obolibrary.org/obo/UBERON_2001571,postovulatory follicle, +http://purl.obolibrary.org/obo/UBERON_2001577,premaxilla ascending process, +http://purl.obolibrary.org/obo/UBERON_2001578,anterior dorsomedial process of autopalatine, +http://purl.obolibrary.org/obo/UBERON_2001579,ural vertebra 2, +http://purl.obolibrary.org/obo/UBERON_2001581,ural centrum 2, +http://purl.obolibrary.org/obo/UBERON_2001582,non-Weberian precaudal vertebra, +http://purl.obolibrary.org/obo/UBERON_2001583,preural centrum 1+ ural centrum 1, +http://purl.obolibrary.org/obo/UBERON_2001584,caudal procurrent ray,caudal precurrent ray +http://purl.obolibrary.org/obo/UBERON_2001584,caudal procurrent ray,caudal procurrent lepidotrichium +http://purl.obolibrary.org/obo/UBERON_2001584,caudal procurrent ray,caudal spiny ray +http://purl.obolibrary.org/obo/UBERON_2001584,caudal procurrent ray,rudimentary ray +http://purl.obolibrary.org/obo/UBERON_2001585,caudal principal ray,caudal fin principal ray +http://purl.obolibrary.org/obo/UBERON_2001585,caudal principal ray,caudal principal lepidotrichium +http://purl.obolibrary.org/obo/UBERON_2001586,pectoral fin radial bone,pectoral actinost +http://purl.obolibrary.org/obo/UBERON_2001587,pectoral fin proximal radial bone, +http://purl.obolibrary.org/obo/UBERON_2001588,pectoral fin distal radial bone, +http://purl.obolibrary.org/obo/UBERON_2001589,propterygium cartilage,pectoral propterygium +http://purl.obolibrary.org/obo/UBERON_2001592,claustrum bone,first Weberian ossicle +http://purl.obolibrary.org/obo/UBERON_2001593,caudal fin upper lobe,caudal fin dorsal lobe +http://purl.obolibrary.org/obo/UBERON_2001594,caudal fin lower lobe,caudal fin ventral lobe +http://purl.obolibrary.org/obo/UBERON_2001603,maxilla ascending process,maxilla ascending arm +http://purl.obolibrary.org/obo/UBERON_2001603,maxilla ascending process,maxilla upper arm +http://purl.obolibrary.org/obo/UBERON_2001604,lateral ethmoid palatine process, +http://purl.obolibrary.org/obo/UBERON_2001605,caudal scute series, +http://purl.obolibrary.org/obo/UBERON_2001606,caudal scute, +http://purl.obolibrary.org/obo/UBERON_2001607,basipterygoid process of parasphenoid,basipterygoid process +http://purl.obolibrary.org/obo/UBERON_2001608,autopalatine-lateral ethmoid joint, +http://purl.obolibrary.org/obo/UBERON_2001609,pharyngobranchial 2 bone uncinate process, +http://purl.obolibrary.org/obo/UBERON_2001610,quadrate dorsal process,quadrate superior arm +http://purl.obolibrary.org/obo/UBERON_2001611,quadrate posterodorsal process, +http://purl.obolibrary.org/obo/UBERON_2001612,sensory canal,lateral line canal +http://purl.obolibrary.org/obo/UBERON_2001612,sensory canal,lateral-line canal +http://purl.obolibrary.org/obo/UBERON_2001613,dorsal fin middle radial bone,dorsal fin medial radial +http://purl.obolibrary.org/obo/UBERON_2001614,anal fin middle radial bone,anal fin medial radial +http://purl.obolibrary.org/obo/UBERON_2001614,anal fin middle radial bone,medial anal-fin radial +http://purl.obolibrary.org/obo/UBERON_2001615,sphenotic spine,sphenotic process +http://purl.obolibrary.org/obo/UBERON_2001616,lateral ethmoid wing,lateral ethmoid ventral wing +http://purl.obolibrary.org/obo/UBERON_2001617,trunk sensory canal,trunk lateral line canal +http://purl.obolibrary.org/obo/UBERON_2001619,post-otic sensory canal,post-temporal canal +http://purl.obolibrary.org/obo/UBERON_2001620,lagenar capsule, +http://purl.obolibrary.org/obo/UBERON_2001622,odontode,odontodes +http://purl.obolibrary.org/obo/UBERON_2001623,type 1 odontode, +http://purl.obolibrary.org/obo/UBERON_2001624,type 2 odontode, +http://purl.obolibrary.org/obo/UBERON_2001626,premaxillary tooth, +http://purl.obolibrary.org/obo/UBERON_2001629,otic sensory canal, +http://purl.obolibrary.org/obo/UBERON_2001630,supratemporal sensory canal,occipital canal +http://purl.obolibrary.org/obo/UBERON_2001630,supratemporal sensory canal,occipital sensory canal +http://purl.obolibrary.org/obo/UBERON_2001630,supratemporal sensory canal,supratemporal canal +http://purl.obolibrary.org/obo/UBERON_2001632,ectopterygoid tooth, +http://purl.obolibrary.org/obo/UBERON_2001633,entopterygoid tooth,mesopterygoid tooth +http://purl.obolibrary.org/obo/UBERON_2001634,pharyngobranchial 1 cartilage,infrapharyngobranchial 1 cartilage +http://purl.obolibrary.org/obo/UBERON_2001635,pharyngobranchial 1 bone,infrapharyngobranchial 1 bone +http://purl.obolibrary.org/obo/UBERON_2001636,pharyngobranchial 4 bone,infrapharyngobranchial 4 bone +http://purl.obolibrary.org/obo/UBERON_2001640,notochordal ossification, +http://purl.obolibrary.org/obo/UBERON_2001647,pharyngeal tooth plate,pharyngeal toothplate +http://purl.obolibrary.org/obo/UBERON_2001647,pharyngeal tooth plate,tooth plate +http://purl.obolibrary.org/obo/UBERON_2001647,pharyngeal tooth plate,toothplate +http://purl.obolibrary.org/obo/UBERON_2001648,basihyal tooth plate,basihyal toothplate +http://purl.obolibrary.org/obo/UBERON_2001649,basihyal tooth, +http://purl.obolibrary.org/obo/UBERON_2001650,pharyngobranchial 2 tooth plate,pharyngobranchial 2 toothplate +http://purl.obolibrary.org/obo/UBERON_2001651,pharyngobranchial 2 tooth, +http://purl.obolibrary.org/obo/UBERON_2001652,pharyngobranchial 3 tooth plate,pharyngobranchial 3 toothplate +http://purl.obolibrary.org/obo/UBERON_2001653,pharyngobranchial 3 tooth, +http://purl.obolibrary.org/obo/UBERON_2001654,upper pharyngeal 4 tooth plate,upper pharyngeal 4 toothplate +http://purl.obolibrary.org/obo/UBERON_2001655,upper pharyngeal 4 tooth, +http://purl.obolibrary.org/obo/UBERON_2001656,upper pharyngeal 5 tooth plate,upper pharyngeal 5 toothplate +http://purl.obolibrary.org/obo/UBERON_2001657,upper pharyngeal 5 tooth, +http://purl.obolibrary.org/obo/UBERON_2001658,upper pharyngeal tooth plate,upper pharyngeal toothplate +http://purl.obolibrary.org/obo/UBERON_2001659,upper pharyngeal tooth, +http://purl.obolibrary.org/obo/UBERON_2001660,basibranchial tooth, +http://purl.obolibrary.org/obo/UBERON_2001661,basibranchial tooth plate,basibranchial 1-3 toothplates +http://purl.obolibrary.org/obo/UBERON_2001661,basibranchial tooth plate,basibranchial toothplate +http://purl.obolibrary.org/obo/UBERON_2001662,basibranchial 4 tooth plate,basibranchial 4 toothplate +http://purl.obolibrary.org/obo/UBERON_2001663,basibranchial 4 tooth, +http://purl.obolibrary.org/obo/UBERON_2001664,basibranchial 2 tooth plate,basibranchial 2 toothplate +http://purl.obolibrary.org/obo/UBERON_2001665,basibranchial 2 tooth, +http://purl.obolibrary.org/obo/UBERON_2001666,rudimentary neural arch, +http://purl.obolibrary.org/obo/UBERON_2001671,anal fin radial bone, +http://purl.obolibrary.org/obo/UBERON_2001672,dorsal fin radial bone, +http://purl.obolibrary.org/obo/UBERON_2001674,infraorbital 6, +http://purl.obolibrary.org/obo/UBERON_2001675,mesethmoid cornu,cornu +http://purl.obolibrary.org/obo/UBERON_2001675,mesethmoid cornu,cornua +http://purl.obolibrary.org/obo/UBERON_2001675,mesethmoid cornu,cornuae +http://purl.obolibrary.org/obo/UBERON_2001676,mesethmoid-premaxillary joint, +http://purl.obolibrary.org/obo/UBERON_2001677,mesethmoid-nasal joint, +http://purl.obolibrary.org/obo/UBERON_2001678,mesethmoid-frontal joint, +http://purl.obolibrary.org/obo/UBERON_2001679,mesethmoid-lateral ethmoid joint, +http://purl.obolibrary.org/obo/UBERON_2001680,mesethmoid-vomer joint,mesethmoid-prevomer joint +http://purl.obolibrary.org/obo/UBERON_2001681,cornu mesial process, +http://purl.obolibrary.org/obo/UBERON_2001683,transcapular ligament,Baudelot's ligament +http://purl.obolibrary.org/obo/UBERON_2001683,transcapular ligament,transscapular ligament +http://purl.obolibrary.org/obo/UBERON_2001684,ossified transcapular ligament,ossified Baudelot's ligament +http://purl.obolibrary.org/obo/UBERON_2001684,ossified transcapular ligament,ossified transscapular ligament +http://purl.obolibrary.org/obo/UBERON_2001685,lateral ethmoid-ectopterygoid ligament, +http://purl.obolibrary.org/obo/UBERON_2001686,bony shelf above orbit, +http://purl.obolibrary.org/obo/UBERON_2001687,interopercular-mandibular ligament,interopercular-retroarticular ligament +http://purl.obolibrary.org/obo/UBERON_2001687,interopercular-mandibular ligament,interoperculo-mandibular ligament +http://purl.obolibrary.org/obo/UBERON_2001687,interopercular-mandibular ligament,interoperculomandibular ligament +http://purl.obolibrary.org/obo/UBERON_2001688,palatine cartilage, +http://purl.obolibrary.org/obo/UBERON_2001689,pterygoquadrate cartilage, +http://purl.obolibrary.org/obo/UBERON_2001690,anterior cartilage of palatine, +http://purl.obolibrary.org/obo/UBERON_2001691,posterior cartilage of palatine, +http://purl.obolibrary.org/obo/UBERON_2001692,median premaxilla, +http://purl.obolibrary.org/obo/UBERON_2001693,protractor operculi, +http://purl.obolibrary.org/obo/UBERON_2001694,humerovertebral ligament, +http://purl.obolibrary.org/obo/UBERON_2001695,mediopharyngobranchial, +http://purl.obolibrary.org/obo/UBERON_2001696,gongyloid cartilage, +http://purl.obolibrary.org/obo/UBERON_2001697,transverse radial, +http://purl.obolibrary.org/obo/UBERON_2001698,anal-fin stay,anal fin stay +http://purl.obolibrary.org/obo/UBERON_2001699,dorsal-fin stay,dorsal fin stay +http://purl.obolibrary.org/obo/UBERON_2001700,caudal-fin stay,caudal fin stay +http://purl.obolibrary.org/obo/UBERON_2001701,basibranchial 5 bone, +http://purl.obolibrary.org/obo/UBERON_2001702,infraorbital 7, +http://purl.obolibrary.org/obo/UBERON_2001703,infraorbital 8, +http://purl.obolibrary.org/obo/UBERON_2001704,infraorbital 9, +http://purl.obolibrary.org/obo/UBERON_2001705,infraorbital 10, +http://purl.obolibrary.org/obo/UBERON_2001706,infraorbital 11, +http://purl.obolibrary.org/obo/UBERON_2001707,infraorbital 12, +http://purl.obolibrary.org/obo/UBERON_2001708,dermosphenotic, +http://purl.obolibrary.org/obo/UBERON_2001709,infraorbital series, +http://purl.obolibrary.org/obo/UBERON_2001710,opercle-interopercle joint, +http://purl.obolibrary.org/obo/UBERON_2001711,frontal-pterotic joint, +http://purl.obolibrary.org/obo/UBERON_2001713,caudal principal ray 1, +http://purl.obolibrary.org/obo/UBERON_2001714,caudal principal ray 2, +http://purl.obolibrary.org/obo/UBERON_2001715,caudal principal ray 3, +http://purl.obolibrary.org/obo/UBERON_2001716,caudal principal ray 4, +http://purl.obolibrary.org/obo/UBERON_2001717,caudal principal ray 5, +http://purl.obolibrary.org/obo/UBERON_2001718,caudal principal ray 6, +http://purl.obolibrary.org/obo/UBERON_2001719,caudal principal ray 7, +http://purl.obolibrary.org/obo/UBERON_2001720,caudal principal ray 8, +http://purl.obolibrary.org/obo/UBERON_2001721,caudal principal ray 9, +http://purl.obolibrary.org/obo/UBERON_2001722,caudal principal ray 10, +http://purl.obolibrary.org/obo/UBERON_2001723,caudal principal ray 11, +http://purl.obolibrary.org/obo/UBERON_2001724,caudal principal ray 12, +http://purl.obolibrary.org/obo/UBERON_2001725,caudal principal ray 13, +http://purl.obolibrary.org/obo/UBERON_2001726,caudal principal ray 14, +http://purl.obolibrary.org/obo/UBERON_2001727,caudal principal ray 15, +http://purl.obolibrary.org/obo/UBERON_2001728,caudal principal ray 16, +http://purl.obolibrary.org/obo/UBERON_2001729,caudal principal ray 17, +http://purl.obolibrary.org/obo/UBERON_2001730,caudal principal ray 18, +http://purl.obolibrary.org/obo/UBERON_2001731,caudal principal ray 19, +http://purl.obolibrary.org/obo/UBERON_2001732,vertebral element 5, +http://purl.obolibrary.org/obo/UBERON_2001733,mesethmoid ventral diverging lamella, +http://purl.obolibrary.org/obo/UBERON_2001734,posterior process of basipterygium,ischiac process +http://purl.obolibrary.org/obo/UBERON_2001734,posterior process of basipterygium,ischiatic process +http://purl.obolibrary.org/obo/UBERON_2001734,posterior process of basipterygium,posterior pelvic process +http://purl.obolibrary.org/obo/UBERON_2001735,scapular foramen, +http://purl.obolibrary.org/obo/UBERON_2001737,coracoid foramen, +http://purl.obolibrary.org/obo/UBERON_2001739,anterior cranial fontanel,frontal fontanel +http://purl.obolibrary.org/obo/UBERON_2001739,anterior cranial fontanel,frontal fontanelle +http://purl.obolibrary.org/obo/UBERON_2001740,posterior cranial fontanel,parietal fontanel +http://purl.obolibrary.org/obo/UBERON_2001741,trigeminofacial foramen,trigemino-facialis foramen +http://purl.obolibrary.org/obo/UBERON_2001741,trigeminofacial foramen,trigeminofacial nerve foramen +http://purl.obolibrary.org/obo/UBERON_2001741,trigeminofacial foramen,trigeminofacialis foramen +http://purl.obolibrary.org/obo/UBERON_2001742,auditory foramen, +http://purl.obolibrary.org/obo/UBERON_2001744,replacement tooth trench,replacement tooth crypt +http://purl.obolibrary.org/obo/UBERON_2001744,replacement tooth trench,replacement tooth crypts +http://purl.obolibrary.org/obo/UBERON_2001745,premaxilla replacement tooth trench, +http://purl.obolibrary.org/obo/UBERON_2001746,dentary replacement tooth trench, +http://purl.obolibrary.org/obo/UBERON_2001747,lateral mesethmoid wing,mesethmoid lateral wing +http://purl.obolibrary.org/obo/UBERON_2001747,lateral mesethmoid wing,premaxillary articular process +http://purl.obolibrary.org/obo/UBERON_2001748,superficial ophthalmic nerve foramen, +http://purl.obolibrary.org/obo/UBERON_2001749,dentary-anguloarticular joint, +http://purl.obolibrary.org/obo/UBERON_2001750,rib of vertebra 6,sixth pleural rib +http://purl.obolibrary.org/obo/UBERON_2001751,rib of vertebra 5,fifth pleural rib +http://purl.obolibrary.org/obo/UBERON_2001752,pre-narial cartilage, +http://purl.obolibrary.org/obo/UBERON_2001753,posttemporal fossa,temporal groove +http://purl.obolibrary.org/obo/UBERON_2001754,dorsal fin ray 1,dorsal fin lepidotrichium 1 +http://purl.obolibrary.org/obo/UBERON_2001755,dorsal fin ray 2,dorsal fin lepidotrichium 2 +http://purl.obolibrary.org/obo/UBERON_2001756,dorsal fin ray 3,dorsal fin lepidotrichium 3 +http://purl.obolibrary.org/obo/UBERON_2001757,dorsal fin ray 4,dorsal fin lepidotrichium 4 +http://purl.obolibrary.org/obo/UBERON_2001758,dorsal fin ray 5,dorsal fin lepidotrichium 5 +http://purl.obolibrary.org/obo/UBERON_2001759,dorsal fin ray 6,dorsal fin lepidotrichium 6 +http://purl.obolibrary.org/obo/UBERON_2001760,dorsal fin ray 7,dorsal fin lepidotrichium 7 +http://purl.obolibrary.org/obo/UBERON_2001761,pectoral fin ray 1,pectoral fin lepidotrichium 1 +http://purl.obolibrary.org/obo/UBERON_2001761,pectoral fin ray 1,pectoral fin ray 1 +http://purl.obolibrary.org/obo/UBERON_2001762,pectoral fin ray 2,pectoral fin lepidotrichium 2 +http://purl.obolibrary.org/obo/UBERON_2001762,pectoral fin ray 2,pectoral fin ray 2 +http://purl.obolibrary.org/obo/UBERON_2001763,pectoral fin ray 3,pectoral fin lepidotrichium 3 +http://purl.obolibrary.org/obo/UBERON_2001763,pectoral fin ray 3,pectoral fin ray 3 +http://purl.obolibrary.org/obo/UBERON_2001764,pectoral fin ray 4,pectoral fin lepidotrichium 4 +http://purl.obolibrary.org/obo/UBERON_2001764,pectoral fin ray 4,pectoral fin ray 4 +http://purl.obolibrary.org/obo/UBERON_2001765,pectoral fin ray 5,pectoral fin lepidotrichium 5 +http://purl.obolibrary.org/obo/UBERON_2001765,pectoral fin ray 5,pectoral fin ray 5 +http://purl.obolibrary.org/obo/UBERON_2001766,pectoral fin ray 6,pectoral fin lepidotrichium 6 +http://purl.obolibrary.org/obo/UBERON_2001766,pectoral fin ray 6,pectoral fin ray 6 +http://purl.obolibrary.org/obo/UBERON_2001767,pectoral fin ray 7,pectoral fin lepidotrichium 7 +http://purl.obolibrary.org/obo/UBERON_2001767,pectoral fin ray 7,pectoral fin ray 7 +http://purl.obolibrary.org/obo/UBERON_2001768,retractor tentaculi, +http://purl.obolibrary.org/obo/UBERON_2001769,anal fin ray 1,anal fin lepidotrichium 1 +http://purl.obolibrary.org/obo/UBERON_2001770,anal fin ray 2,anal fin lepidotrichium 2 +http://purl.obolibrary.org/obo/UBERON_2001771,anal fin ray 3,anal fin lepidotrichium 3 +http://purl.obolibrary.org/obo/UBERON_2001772,anal fin ray 4,anal fin lepidotrichium 4 +http://purl.obolibrary.org/obo/UBERON_2001773,anal fin ray 5,anal fin lepidotrichium 5 +http://purl.obolibrary.org/obo/UBERON_2001774,anal fin ray 6,anal fin lepidotrichium 6 +http://purl.obolibrary.org/obo/UBERON_2001775,anal fin ray 7,anal fin lepidotrichium 7 +http://purl.obolibrary.org/obo/UBERON_2001776,pelvic fin ray 1,pelvic fin lepidotrichium 1 +http://purl.obolibrary.org/obo/UBERON_2001777,pelvic fin ray 2,pelvic fin lepidotrichium 2 +http://purl.obolibrary.org/obo/UBERON_2001778,pelvic fin ray 3,pelvic fin lepidotrichium 3 +http://purl.obolibrary.org/obo/UBERON_2001779,pelvic fin ray 4,pelvic fin lepidotrichium 4 +http://purl.obolibrary.org/obo/UBERON_2001780,pelvic fin ray 5,pelvic fin lepidotrichium 5 +http://purl.obolibrary.org/obo/UBERON_2001781,pelvic fin ray 6,pelvic fin lepidotrichium 6 +http://purl.obolibrary.org/obo/UBERON_2001782,pelvic fin ray 7,pelvic fin lepidotrichium 7 +http://purl.obolibrary.org/obo/UBERON_2001783,supraoccipital crest,supraoccipital process +http://purl.obolibrary.org/obo/UBERON_2001783,supraoccipital crest,supraoccipital spine +http://purl.obolibrary.org/obo/UBERON_2001784,autopalatine-vomer joint, +http://purl.obolibrary.org/obo/UBERON_2001785,branched dorsal fin ray, +http://purl.obolibrary.org/obo/UBERON_2001786,unbranched dorsal fin ray,dorsal fin unbranched ray +http://purl.obolibrary.org/obo/UBERON_2001787,pectoral fin spine,pectoral spine +http://purl.obolibrary.org/obo/UBERON_2001788,pelvic splint, +http://purl.obolibrary.org/obo/UBERON_2001789,dorsal fin spine 1,dorsal spine 1 +http://purl.obolibrary.org/obo/UBERON_2001790,dorsal fin spine 2,dorsal spine 2 +http://purl.obolibrary.org/obo/UBERON_2001792,pharyngobranchial 3 bone uncinate process, +http://purl.obolibrary.org/obo/UBERON_2001793,pharyngobranchial 4 bone uncinate process,infrapharyngobranchial 4 bone uncinate process +http://purl.obolibrary.org/obo/UBERON_2001794,orbitosphenoid-prootic joint, +http://purl.obolibrary.org/obo/UBERON_2001795,ceratohyal foramen,bericiform foramen +http://purl.obolibrary.org/obo/UBERON_2001795,ceratohyal foramen,beryciform foramen +http://purl.obolibrary.org/obo/UBERON_2001796,epibranchial 2 bone uncinate process, +http://purl.obolibrary.org/obo/UBERON_2001797,epibranchial 1 bone uncinate process, +http://purl.obolibrary.org/obo/UBERON_2001798,epicentral bone,diépipleural +http://purl.obolibrary.org/obo/UBERON_2001798,epicentral bone,neoneural +http://purl.obolibrary.org/obo/UBERON_2001799,recessus lateralis, +http://purl.obolibrary.org/obo/UBERON_2001800,cephalic rib, +http://purl.obolibrary.org/obo/UBERON_2001801,quadrate-hyomandibula joint, +http://purl.obolibrary.org/obo/UBERON_2001803,quadrate-metapterygoid joint, +http://purl.obolibrary.org/obo/UBERON_2001804,olfactory nerve foramen, +http://purl.obolibrary.org/obo/UBERON_2001805,articular bone,articular +http://purl.obolibrary.org/obo/UBERON_2001806,intracranial diverticulum of swimbladder, +http://purl.obolibrary.org/obo/UBERON_2001807,preepiotic fossa,preepioccipital fossa +http://purl.obolibrary.org/obo/UBERON_2001808,facial foramen,anterior opening trigeminofacialis chamber +http://purl.obolibrary.org/obo/UBERON_2001809,trigeminal foramen,posterior opening of trigeminofacialis chamber +http://purl.obolibrary.org/obo/UBERON_2001810,supraorbital sensory canal,supraorbital canal +http://purl.obolibrary.org/obo/UBERON_2001811,infraorbital sensory canal,infraorbital canal +http://purl.obolibrary.org/obo/UBERON_2001812,preoperculo-mandibular sensory canal,preoperculo-mandibular canal +http://purl.obolibrary.org/obo/UBERON_2001813,preopercular sensory canal, +http://purl.obolibrary.org/obo/UBERON_2001814,mandibular sensory canal, +http://purl.obolibrary.org/obo/UBERON_2001815,nuchal plate, +http://purl.obolibrary.org/obo/UBERON_2001816,anterior nuchal plate,first nuchal plate +http://purl.obolibrary.org/obo/UBERON_2001817,middle nuchal plate,median nuchal plate +http://purl.obolibrary.org/obo/UBERON_2001817,middle nuchal plate,second nuchal plate +http://purl.obolibrary.org/obo/UBERON_2001818,dorsal fin proximal radial bone 1, +http://purl.obolibrary.org/obo/UBERON_2001819,dorsal fin proximal radial bone 2, +http://purl.obolibrary.org/obo/UBERON_2001820,posterior nuchal plate,third nuchal plate +http://purl.obolibrary.org/obo/UBERON_2001821,notochord posterior region, +http://purl.obolibrary.org/obo/UBERON_2001822,epibranchial 3 bone uncinate process, +http://purl.obolibrary.org/obo/UBERON_2001823,epibranchial 4 bone uncinate process, +http://purl.obolibrary.org/obo/UBERON_2001824,lateral line scale, +http://purl.obolibrary.org/obo/UBERON_2001825,urohyal lateral process,branche ventrale de l'urohyal +http://purl.obolibrary.org/obo/UBERON_2001825,urohyal lateral process,processus hyo-pelvien +http://purl.obolibrary.org/obo/UBERON_2001825,urohyal lateral process,urohyal lateral lamella +http://purl.obolibrary.org/obo/UBERON_2001825,urohyal lateral process,urohyal ventral wing +http://purl.obolibrary.org/obo/UBERON_2001826,urohyal median process, +http://purl.obolibrary.org/obo/UBERON_2001827,premaxillary-maxillary ligament, +http://purl.obolibrary.org/obo/UBERON_2001828,primordial ligament,articular-maxillary ligament +http://purl.obolibrary.org/obo/UBERON_2001828,primordial ligament,ligamentum primordiale +http://purl.obolibrary.org/obo/UBERON_2001828,primordial ligament,maxillo-mandibular ligament +http://purl.obolibrary.org/obo/UBERON_2001829,caudal fin dorsal procurrent ray,dorsal caudal procurrent ray +http://purl.obolibrary.org/obo/UBERON_2001829,caudal fin dorsal procurrent ray,dorsal procurrent caudal-fin ray +http://purl.obolibrary.org/obo/UBERON_2001830,caudal fin ventral procurrent ray,precurrent ray +http://purl.obolibrary.org/obo/UBERON_2001830,caudal fin ventral procurrent ray,ventral caudal procurrent ray +http://purl.obolibrary.org/obo/UBERON_2001830,caudal fin ventral procurrent ray,ventral procurrent caudal-fin ray +http://purl.obolibrary.org/obo/UBERON_2001830,caudal fin ventral procurrent ray,ventral procurrent ray +http://purl.obolibrary.org/obo/UBERON_2001831,pterosphenoid-orbitosphenoid joint, +http://purl.obolibrary.org/obo/UBERON_2001832,parasphenoid-basioccipital joint, +http://purl.obolibrary.org/obo/UBERON_2001833,premaxillary tooth row, +http://purl.obolibrary.org/obo/UBERON_2001840,tip,tips +http://purl.obolibrary.org/obo/UBERON_2001841,interhyal-epihyal joint, +http://purl.obolibrary.org/obo/UBERON_2001842,epihyal-ceratohyal joint, +http://purl.obolibrary.org/obo/UBERON_2001843,ceratohyal-dorsal hypohyal joint, +http://purl.obolibrary.org/obo/UBERON_2001844,ceratohyal-ventral hypohyal joint, +http://purl.obolibrary.org/obo/UBERON_2001845,dorsal hypohyal-ventral hypohyal joint, +http://purl.obolibrary.org/obo/UBERON_2001846,inter-ventral hypohyal joint, +http://purl.obolibrary.org/obo/UBERON_2001847,dorsal hypohyal-urohyal joint, +http://purl.obolibrary.org/obo/UBERON_2001848,ventral hypohyal-urohyal joint, +http://purl.obolibrary.org/obo/UBERON_2001849,epihyal-branchiostegal ray joint, +http://purl.obolibrary.org/obo/UBERON_2001850,ceratohyal-branchiostegal ray joint, +http://purl.obolibrary.org/obo/UBERON_2001852,postcleithrum 1, +http://purl.obolibrary.org/obo/UBERON_2001853,postcleithrum 2, +http://purl.obolibrary.org/obo/UBERON_2001854,postcleithrum 3, +http://purl.obolibrary.org/obo/UBERON_2001855,hyomandibular condyle for the opercle,opercular process of hyomandibular +http://purl.obolibrary.org/obo/UBERON_2001856,gill ray, +http://purl.obolibrary.org/obo/UBERON_2001857,hyoidean artery, +http://purl.obolibrary.org/obo/UBERON_2001858,suprapharyngobranchial,branchial spiracle +http://purl.obolibrary.org/obo/UBERON_2001859,pharyngobranchial 1 tooth plate,pharyngobranchial 1 toothplate +http://purl.obolibrary.org/obo/UBERON_2001860,epibranchial 4-upper pharyngeal toothplate joint, +http://purl.obolibrary.org/obo/UBERON_2001861,epibranchial 3-pharyngobranchial 3 joint, +http://purl.obolibrary.org/obo/UBERON_2001862,epibranchial 3-pharyngobranchial 4 joint, +http://purl.obolibrary.org/obo/UBERON_2001863,inter-hypobranchial 3 joint, +http://purl.obolibrary.org/obo/UBERON_2001864,basibranchial 1 cartilage, +http://purl.obolibrary.org/obo/UBERON_2001865,basibranchial 4 cartilage, +http://purl.obolibrary.org/obo/UBERON_2001866,basibranchial 5 cartilage, +http://purl.obolibrary.org/obo/UBERON_2001867,post-ceratobranchial cartilage,basibranchial 6 +http://purl.obolibrary.org/obo/UBERON_2001867,post-ceratobranchial cartilage,copula 4 +http://purl.obolibrary.org/obo/UBERON_2001867,post-ceratobranchial cartilage,pericardial cartilage +http://purl.obolibrary.org/obo/UBERON_2001869,supraneural 2 cartilage, +http://purl.obolibrary.org/obo/UBERON_2001870,supraneural 3 cartilage, +http://purl.obolibrary.org/obo/UBERON_2001871,Weberian ossicle set, +http://purl.obolibrary.org/obo/UBERON_2001872,trunk sensory canal system, +http://purl.obolibrary.org/obo/UBERON_2001873,head sensory canal system,cephalic sensory canal system +http://purl.obolibrary.org/obo/UBERON_2001874,basibranchial 2 cartilage, +http://purl.obolibrary.org/obo/UBERON_2001875,opercular series, +http://purl.obolibrary.org/obo/UBERON_2001876,basibranchial 3 cartilage, +http://purl.obolibrary.org/obo/UBERON_2001877,neural arch 1, +http://purl.obolibrary.org/obo/UBERON_2001878,rib of vertebra 2, +http://purl.obolibrary.org/obo/UBERON_2001879,rib of vertebra 1, +http://purl.obolibrary.org/obo/UBERON_2001880,rib of vertebra 3, +http://purl.obolibrary.org/obo/UBERON_2001881,rib of vertebra 4, +http://purl.obolibrary.org/obo/UBERON_2001882,parapophysis + rib of vertebra 3, +http://purl.obolibrary.org/obo/UBERON_2001883,parapophysis + rib of vertebra 3 + rib of vertebra 4, +http://purl.obolibrary.org/obo/UBERON_2001884,accessory neural arch, +http://purl.obolibrary.org/obo/UBERON_2001885,neural spine 1, +http://purl.obolibrary.org/obo/UBERON_2001886,neural spine 2, +http://purl.obolibrary.org/obo/UBERON_2001887,neural spine 3, +http://purl.obolibrary.org/obo/UBERON_2001888,supraneural 1 bone, +http://purl.obolibrary.org/obo/UBERON_2001889,supraneural 1 cartilage, +http://purl.obolibrary.org/obo/UBERON_2001892,interhyal element,stylohyal element +http://purl.obolibrary.org/obo/UBERON_2001893,hypobranchial element, +http://purl.obolibrary.org/obo/UBERON_2001894,hypobranchial 1 element, +http://purl.obolibrary.org/obo/UBERON_2001895,hypobranchial 2 element, +http://purl.obolibrary.org/obo/UBERON_2001896,hypobranchial 3 element, +http://purl.obolibrary.org/obo/UBERON_2001897,hypobranchial 4 element, +http://purl.obolibrary.org/obo/UBERON_2001898,ceratobranchial element, +http://purl.obolibrary.org/obo/UBERON_2001899,ceratobranchial 1 element, +http://purl.obolibrary.org/obo/UBERON_2001900,ceratobranchial 2 element, +http://purl.obolibrary.org/obo/UBERON_2001901,ceratobranchial 3 element, +http://purl.obolibrary.org/obo/UBERON_2001902,ceratobranchial 4 element, +http://purl.obolibrary.org/obo/UBERON_2001903,ceratobranchial 5 element, +http://purl.obolibrary.org/obo/UBERON_2001904,epibranchial element,epibranchial elements +http://purl.obolibrary.org/obo/UBERON_2001905,epibranchial 1 element, +http://purl.obolibrary.org/obo/UBERON_2001906,epibranchial 2 element, +http://purl.obolibrary.org/obo/UBERON_2001907,epibranchial 3 element, +http://purl.obolibrary.org/obo/UBERON_2001908,epibranchial 4 element, +http://purl.obolibrary.org/obo/UBERON_2001909,pharyngobranchial element,infrapharyngobranchial element +http://purl.obolibrary.org/obo/UBERON_2001910,pharyngobranchial 1 element,infrapharyngobranchial 1 element +http://purl.obolibrary.org/obo/UBERON_2001911,pharyngobranchial 2 element,infrapharyngobranchial 2 element +http://purl.obolibrary.org/obo/UBERON_2001912,pharyngobranchial 3 element,infrapharyngobranchial 3 element +http://purl.obolibrary.org/obo/UBERON_2001913,pharyngobranchial 4 element,infrapharyngobranchial 4 element +http://purl.obolibrary.org/obo/UBERON_2001915,basibranchial 1 element, +http://purl.obolibrary.org/obo/UBERON_2001916,basibranchial 2 element, +http://purl.obolibrary.org/obo/UBERON_2001917,basibranchial 3 element, +http://purl.obolibrary.org/obo/UBERON_2001918,basibranchial 4 element, +http://purl.obolibrary.org/obo/UBERON_2001919,basibranchial 5 element, +http://purl.obolibrary.org/obo/UBERON_2001920,pseudotympanum,humeral hiatus +http://purl.obolibrary.org/obo/UBERON_2001921,adipose eyelid, +http://purl.obolibrary.org/obo/UBERON_2001922,inter-frontal joint,interfrontal suture +http://purl.obolibrary.org/obo/UBERON_2001923,aortic canal, +http://purl.obolibrary.org/obo/UBERON_2001924,occipital artery foramen, +http://purl.obolibrary.org/obo/UBERON_2001925,spiracular canal, +http://purl.obolibrary.org/obo/UBERON_2001926,posterior myodome, +http://purl.obolibrary.org/obo/UBERON_2001927,anterior myodome, +http://purl.obolibrary.org/obo/UBERON_2001928,articular fossa of opercle, +http://purl.obolibrary.org/obo/UBERON_2001929,epioccipital posterior process, +http://purl.obolibrary.org/obo/UBERON_2001930,accessory vomerine tooth plate, +http://purl.obolibrary.org/obo/UBERON_2001931,infranuchal scute, +http://purl.obolibrary.org/obo/UBERON_2001932,sensory canal tubular ossicle, +http://purl.obolibrary.org/obo/UBERON_2001933,sensory canal tubule, +http://purl.obolibrary.org/obo/UBERON_2001934,rostral plate, +http://purl.obolibrary.org/obo/UBERON_2001935,oral disk, +http://purl.obolibrary.org/obo/UBERON_2001936,posterior nasal barbel, +http://purl.obolibrary.org/obo/UBERON_2001937,anterior nasal barbel, +http://purl.obolibrary.org/obo/UBERON_2001938,maxillary barbel, +http://purl.obolibrary.org/obo/UBERON_2001939,inter-basipterygium joint,pelvic girdle symphysis +http://purl.obolibrary.org/obo/UBERON_2001939,inter-basipterygium joint,pelvic symphysis +http://purl.obolibrary.org/obo/UBERON_2001940,vertebra 4-vertebra 5 joint, +http://purl.obolibrary.org/obo/UBERON_2001941,orbitosphenoid-lateral ethmoid joint, +http://purl.obolibrary.org/obo/UBERON_2001942,autopalatine-maxillary joint, +http://purl.obolibrary.org/obo/UBERON_2001943,metapterygoid-autopalatine ligament, +http://purl.obolibrary.org/obo/UBERON_2001944,lateral ethmoid-autopalatine ligament, +http://purl.obolibrary.org/obo/UBERON_2001945,mesethmoid-premaxillary ligament, +http://purl.obolibrary.org/obo/UBERON_2001946,mesethmoid-maxillary ligament, +http://purl.obolibrary.org/obo/UBERON_2001947,hyomandibular-otic region joint, +http://purl.obolibrary.org/obo/UBERON_2001948,anal fin hook,anal-fin hook +http://purl.obolibrary.org/obo/UBERON_2001949,caudal fin hook,caudal-fin hook +http://purl.obolibrary.org/obo/UBERON_2001950,inter-premaxillary joint, +http://purl.obolibrary.org/obo/UBERON_2001951,skin flap, +http://purl.obolibrary.org/obo/UBERON_2001952,dentary tooth row, +http://purl.obolibrary.org/obo/UBERON_2001956,epibranchial 1 bone proximal cartilage,epibranchial 1 anterior cartilage +http://purl.obolibrary.org/obo/UBERON_2001956,epibranchial 1 bone proximal cartilage,epibranchial 1 mesial cartilage +http://purl.obolibrary.org/obo/UBERON_2001957,epibranchial 2 bone proximal cartilage,epibranchial 2 anterior cartilage +http://purl.obolibrary.org/obo/UBERON_2001957,epibranchial 2 bone proximal cartilage,epibranchial 2 mesial cartilage +http://purl.obolibrary.org/obo/UBERON_2001958,ceratobranchial 3 bone distal cartilage,ceratobranchial 3 bone lateral cartilage +http://purl.obolibrary.org/obo/UBERON_2001958,ceratobranchial 3 bone distal cartilage,ceratobranchial 3 bone posterior cartilage +http://purl.obolibrary.org/obo/UBERON_2001959,ceratobranchial 4 bone proximal cartilage,ceratobranchial 4 bone anterior cartilage +http://purl.obolibrary.org/obo/UBERON_2001959,ceratobranchial 4 bone proximal cartilage,ceratobranchial 4 bone mesial cartilage +http://purl.obolibrary.org/obo/UBERON_2001960,ceratobranchial 4 bone distal cartilage,ceratobranchial 4 bone lateral cartilage +http://purl.obolibrary.org/obo/UBERON_2001960,ceratobranchial 4 bone distal cartilage,ceratobranchial 4 bone posterior cartilage +http://purl.obolibrary.org/obo/UBERON_2001961,ceratobranchial 5 bone distal cartilage,ceratobranchial 5 bone lateral cartilage +http://purl.obolibrary.org/obo/UBERON_2001961,ceratobranchial 5 bone distal cartilage,ceratobranchial 5 bone posterior cartilage +http://purl.obolibrary.org/obo/UBERON_2001962,hypobranchial 1 bone distal cartilage,hypobranchial 1 bone lateral cartilage +http://purl.obolibrary.org/obo/UBERON_2001962,hypobranchial 1 bone distal cartilage,hypobranchial 1 bone posterior cartilage +http://purl.obolibrary.org/obo/UBERON_2001963,hypobranchial 2 bone distal cartilage,hypobranchial 2 bone lateral cartilage +http://purl.obolibrary.org/obo/UBERON_2001963,hypobranchial 2 bone distal cartilage,hypobranchial 2 bone posterior cartilage +http://purl.obolibrary.org/obo/UBERON_2001964,epibranchial 3 bone uncinate process cartilage, +http://purl.obolibrary.org/obo/UBERON_2001965,epibranchial 4 bone uncinate process cartilage, +http://purl.obolibrary.org/obo/UBERON_2001966,epibranchial 5 element, +http://purl.obolibrary.org/obo/UBERON_2001968,outer mental barbel, +http://purl.obolibrary.org/obo/UBERON_2001969,inner mental barbel, +http://purl.obolibrary.org/obo/UBERON_2001971,parapophysis 4, +http://purl.obolibrary.org/obo/UBERON_2001972,intercostal ligament, +http://purl.obolibrary.org/obo/UBERON_2001974,subtemporal fossa, +http://purl.obolibrary.org/obo/UBERON_2001975,suprabranchial artery, +http://purl.obolibrary.org/obo/UBERON_2001976,interorbital septum, +http://purl.obolibrary.org/obo/UBERON_2001977,pad,pads +http://purl.obolibrary.org/obo/UBERON_2001978,maxillary tooth row, +http://purl.obolibrary.org/obo/UBERON_2001979,hyomandibula-metapterygoid joint, +http://purl.obolibrary.org/obo/UBERON_2001980,vertebral element 6, +http://purl.obolibrary.org/obo/UBERON_2001981,vertebral element 7, +http://purl.obolibrary.org/obo/UBERON_2001982,vertebral element 8, +http://purl.obolibrary.org/obo/UBERON_2001983,centrum 1, +http://purl.obolibrary.org/obo/UBERON_2001984,centrum 2, +http://purl.obolibrary.org/obo/UBERON_2001985,centrum 3, +http://purl.obolibrary.org/obo/UBERON_2001986,centrum 4, +http://purl.obolibrary.org/obo/UBERON_2001987,centrum 5, +http://purl.obolibrary.org/obo/UBERON_2001988,centrum 6, +http://purl.obolibrary.org/obo/UBERON_2001989,mandibular-hyoid median cartilage,hyomandibular cartilage sensu Schaefer (1990) +http://purl.obolibrary.org/obo/UBERON_2001990,epibranchial arborescent organ,suprabranchial organ +http://purl.obolibrary.org/obo/UBERON_2001991,lateral bone, +http://purl.obolibrary.org/obo/UBERON_2001992,branched anal fin ray,anal fin branched ray +http://purl.obolibrary.org/obo/UBERON_2001993,branched pectoral fin ray,pectoral fin branched ray +http://purl.obolibrary.org/obo/UBERON_2001994,gill raker row, +http://purl.obolibrary.org/obo/UBERON_2001995,papilla,papillae +http://purl.obolibrary.org/obo/UBERON_2001996,maxillary canal, +http://purl.obolibrary.org/obo/UBERON_2001997,parietal-supraoccipital,parieto-supraoccipital +http://purl.obolibrary.org/obo/UBERON_2001998,posttemporal-supracleithrum,postemporo-supracleithrum +http://purl.obolibrary.org/obo/UBERON_2001998,posttemporal-supracleithrum,posttemporo-supracleithrum +http://purl.obolibrary.org/obo/UBERON_2001999,posterior cleithral process,humeral process +http://purl.obolibrary.org/obo/UBERON_2001999,posterior cleithral process,postcleithral process +http://purl.obolibrary.org/obo/UBERON_2002000,posterior dentation of pectoral fin spine,pectoral fin spine posterior dentation +http://purl.obolibrary.org/obo/UBERON_2002000,posterior dentation of pectoral fin spine,posterior denticle of pectoral fin spine +http://purl.obolibrary.org/obo/UBERON_2002000,posterior dentation of pectoral fin spine,posterior serration of pectoral fin spine +http://purl.obolibrary.org/obo/UBERON_2002000,posterior dentation of pectoral fin spine,posterior thorn of pectoral fin spine +http://purl.obolibrary.org/obo/UBERON_2002000,posterior dentation of pectoral fin spine,posterior tooth of pectoral fin spine +http://purl.obolibrary.org/obo/UBERON_2002001,anterior dentation of pectoral fin spine, +http://purl.obolibrary.org/obo/UBERON_2002002,anterior distal serration of pectoral fin spine, +http://purl.obolibrary.org/obo/UBERON_2002003,posterior dentation of dorsal fin spine 2,dorsal fin spine 2 posterior dentation +http://purl.obolibrary.org/obo/UBERON_2002003,posterior dentation of dorsal fin spine 2,posterior denticle of dorsal fin spine 2 +http://purl.obolibrary.org/obo/UBERON_2002003,posterior dentation of dorsal fin spine 2,posterior serration of dorsal fin spine 2 +http://purl.obolibrary.org/obo/UBERON_2002003,posterior dentation of dorsal fin spine 2,posterior thorn of dorsal fin spine 2 +http://purl.obolibrary.org/obo/UBERON_2002003,posterior dentation of dorsal fin spine 2,posterior tooth of dorsal fin spine 2 +http://purl.obolibrary.org/obo/UBERON_2002004,anterior dentation of dorsal fin spine 2,anterior denticle of dorsal fin spine 2 +http://purl.obolibrary.org/obo/UBERON_2002004,anterior dentation of dorsal fin spine 2,anterior serration of dorsal fin spine 2 +http://purl.obolibrary.org/obo/UBERON_2002004,anterior dentation of dorsal fin spine 2,anterior thorn of dorsal fin spine 2 +http://purl.obolibrary.org/obo/UBERON_2002004,anterior dentation of dorsal fin spine 2,anterior tooth of dorsal fin spine 2 +http://purl.obolibrary.org/obo/UBERON_2002004,anterior dentation of dorsal fin spine 2,dorsal fin spine 2 anterior dentation +http://purl.obolibrary.org/obo/UBERON_2002005,canal plate, +http://purl.obolibrary.org/obo/UBERON_2002006,axillary pore, +http://purl.obolibrary.org/obo/UBERON_2002007,supraneural 4 bone, +http://purl.obolibrary.org/obo/UBERON_2002008,neural lamina, +http://purl.obolibrary.org/obo/UBERON_2002009,medial cartilage of palatine, +http://purl.obolibrary.org/obo/UBERON_2002010,hyoideomandibular nerve, +http://purl.obolibrary.org/obo/UBERON_2002011,lateral fontanel of frontal, +http://purl.obolibrary.org/obo/UBERON_2002012,dentary foramen, +http://purl.obolibrary.org/obo/UBERON_2002013,ascending limb of ceratobranchial 5 bone, +http://purl.obolibrary.org/obo/UBERON_2002014,ascending limb of ceratobranchial 5 cartilage, +http://purl.obolibrary.org/obo/UBERON_2002015,pharyngobranchial tooth plate,pharyngobranchial toothplate +http://purl.obolibrary.org/obo/UBERON_2002016,pharyngobranchial 4 tooth plate,pharyngobranchial 4 toothplate +http://purl.obolibrary.org/obo/UBERON_2002017,anterior limb of ceratobranchial 5 bone, +http://purl.obolibrary.org/obo/UBERON_2002018,anterior limb of ceratobranchial 5 cartilage, +http://purl.obolibrary.org/obo/UBERON_2002019,pterotic-posttemporal-supracleithrum,pterotic-supracleithrum +http://purl.obolibrary.org/obo/UBERON_2002020,hypomaxilla, +http://purl.obolibrary.org/obo/UBERON_2002021,ascending process of the parasphenoid,ascending ramus of the parasphenoid +http://purl.obolibrary.org/obo/UBERON_2002022,dermethmoid, +http://purl.obolibrary.org/obo/UBERON_2002023,second preethmoid bone, +http://purl.obolibrary.org/obo/UBERON_2002024,mental barbel, +http://purl.obolibrary.org/obo/UBERON_2002026,pectoral fin proximal radial bone 1,first pectoral basal radial +http://purl.obolibrary.org/obo/UBERON_2002027,pectoral fin proximal radial bone 2,second pectoral basal radial +http://purl.obolibrary.org/obo/UBERON_2002028,pectoral fin proximal radial bone 3,third pectoral basal radial +http://purl.obolibrary.org/obo/UBERON_2002029,pectoral fin proximal radial bone 4,fourth pectoral basal radial +http://purl.obolibrary.org/obo/UBERON_2002030,ventral keel of coracoid, +http://purl.obolibrary.org/obo/UBERON_2002031,orbital foramen, +http://purl.obolibrary.org/obo/UBERON_2002032,lateral ethmoid-frontal joint, +http://purl.obolibrary.org/obo/UBERON_2002033,prootic-pterosphenoid joint, +http://purl.obolibrary.org/obo/UBERON_2002034,prootic-exoccipital joint, +http://purl.obolibrary.org/obo/UBERON_2002038,basioccipital-exoccipital joint, +http://purl.obolibrary.org/obo/UBERON_2002039,dilatator fossa, +http://purl.obolibrary.org/obo/UBERON_2002040,inter-coracoid joint, +http://purl.obolibrary.org/obo/UBERON_2002041,parapophysis 6, +http://purl.obolibrary.org/obo/UBERON_2002042,parapophysis 5, +http://purl.obolibrary.org/obo/UBERON_2002043,posterior limb of parapophysis 4,posterior branch of parapophysis 4 +http://purl.obolibrary.org/obo/UBERON_2002043,posterior limb of parapophysis 4,posterior wing of parapophysis 4 +http://purl.obolibrary.org/obo/UBERON_2002044,anterior limb of parapophysis 4,Mullerian ramus +http://purl.obolibrary.org/obo/UBERON_2002044,anterior limb of parapophysis 4,Müllerian ramus +http://purl.obolibrary.org/obo/UBERON_2002044,anterior limb of parapophysis 4,anterior branch of parapophysis 4 +http://purl.obolibrary.org/obo/UBERON_2002044,anterior limb of parapophysis 4,anterior wing of parapophysis 4 +http://purl.obolibrary.org/obo/UBERON_2002051,scale circulus,circuli +http://purl.obolibrary.org/obo/UBERON_2002051,scale circulus,crétule +http://purl.obolibrary.org/obo/UBERON_2002052,prootic depression, +http://purl.obolibrary.org/obo/UBERON_2002053,bony plate,armor +http://purl.obolibrary.org/obo/UBERON_2002053,bony plate,armor plate +http://purl.obolibrary.org/obo/UBERON_2002053,bony plate,osteoderms +http://purl.obolibrary.org/obo/UBERON_2002054,vertebra 5-vertebra 6 joint, +http://purl.obolibrary.org/obo/UBERON_2002055,vertebra 6 - vertebra 7 joint, +http://purl.obolibrary.org/obo/UBERON_2002056,hypural 6, +http://purl.obolibrary.org/obo/UBERON_2002057,gill opening,branchial aperture +http://purl.obolibrary.org/obo/UBERON_2002057,gill opening,branchial opening +http://purl.obolibrary.org/obo/UBERON_2002057,gill opening,gill aperture +http://purl.obolibrary.org/obo/UBERON_2002057,gill opening,opercular opening +http://purl.obolibrary.org/obo/UBERON_2002058,Weberian complex centrum, +http://purl.obolibrary.org/obo/UBERON_2002059,posttemporal-parietal joint, +http://purl.obolibrary.org/obo/UBERON_2002061,predorsal vertebra, +http://purl.obolibrary.org/obo/UBERON_2002062,branched caudal fin ray, +http://purl.obolibrary.org/obo/UBERON_2002063,nuchal plate series, +http://purl.obolibrary.org/obo/UBERON_2002064,uroneural 1, +http://purl.obolibrary.org/obo/UBERON_2002065,ural centrum 1, +http://purl.obolibrary.org/obo/UBERON_2002066,auditory fenestra, +http://purl.obolibrary.org/obo/UBERON_2002067,upper hypural set,upper hypurals +http://purl.obolibrary.org/obo/UBERON_2002068,lower hypural set,lower hypurals +http://purl.obolibrary.org/obo/UBERON_2002069,distal cartilage of posterior process of basipterygium, +http://purl.obolibrary.org/obo/UBERON_2002070,internal anterior process of basipterygium,internal anterior arm of basipterygium +http://purl.obolibrary.org/obo/UBERON_2002070,internal anterior process of basipterygium,internal arm of the basipterygium +http://purl.obolibrary.org/obo/UBERON_2002070,internal anterior process of basipterygium,mesial anterior arm of basipterygium +http://purl.obolibrary.org/obo/UBERON_2002070,internal anterior process of basipterygium,mesial anterior process of basipterygium +http://purl.obolibrary.org/obo/UBERON_2002071,distal cartilage of internal anterior process of basipterygium, +http://purl.obolibrary.org/obo/UBERON_2002072,middle anterior process of basipterygium,middle anterior arm of basipterygium +http://purl.obolibrary.org/obo/UBERON_2002073,distal cartilage of middle anterior process of basipterygium, +http://purl.obolibrary.org/obo/UBERON_2002074,external anterior process of basipterygium,external anterior arm of basipterygium +http://purl.obolibrary.org/obo/UBERON_2002074,external anterior process of basipterygium,external arm of basipterygium +http://purl.obolibrary.org/obo/UBERON_2002074,external anterior process of basipterygium,lateral anterior process of basipterygium +http://purl.obolibrary.org/obo/UBERON_2002074,external anterior process of basipterygium,lateral pelvic process +http://purl.obolibrary.org/obo/UBERON_2002075,distal cartilage of external anterior process of basipterygium, +http://purl.obolibrary.org/obo/UBERON_2002076,lateral process of basipterygium,posterolateral process of basipterygium +http://purl.obolibrary.org/obo/UBERON_2002077,lateropterygium, +http://purl.obolibrary.org/obo/UBERON_2002078,hypural plate, +http://purl.obolibrary.org/obo/UBERON_2002079,leptocephalous larva, +http://purl.obolibrary.org/obo/UBERON_2002080,spina occipitalis, +http://purl.obolibrary.org/obo/UBERON_2002082,basal fulcrum,basal fulcra +http://purl.obolibrary.org/obo/UBERON_2002083,fringing fulcrum,fringing fulcra +http://purl.obolibrary.org/obo/UBERON_2002084,pleurostyle, +http://purl.obolibrary.org/obo/UBERON_2002085,ural centrum, +http://purl.obolibrary.org/obo/UBERON_2002086,pelvic axillary process, +http://purl.obolibrary.org/obo/UBERON_2002087,pectoral axillary process, +http://purl.obolibrary.org/obo/UBERON_2002088,interhaemal bone, +http://purl.obolibrary.org/obo/UBERON_2002089,gular plate,median gular +http://purl.obolibrary.org/obo/UBERON_2002089,gular plate,median gular plate +http://purl.obolibrary.org/obo/UBERON_2002090,pro-otic fossa,prootic fossa +http://purl.obolibrary.org/obo/UBERON_2002091,median caudal cartilage, +http://purl.obolibrary.org/obo/UBERON_2002092,rostral cartilage, +http://purl.obolibrary.org/obo/UBERON_2002094,dorsal fin pterygiophore 1, +http://purl.obolibrary.org/obo/UBERON_2002095,ventromedial opening of posttemporal fossa,third posttemporal fossa +http://purl.obolibrary.org/obo/UBERON_2002096,bony plate series,armor plate series +http://purl.obolibrary.org/obo/UBERON_2002097,sensory canal pore series, +http://purl.obolibrary.org/obo/UBERON_2002098,hemal spine series, +http://purl.obolibrary.org/obo/UBERON_2002099,lateral line scale series, +http://purl.obolibrary.org/obo/UBERON_2002101,branchiostegal ray series, +http://purl.obolibrary.org/obo/UBERON_2002102,epibranchial series,epibranchials +http://purl.obolibrary.org/obo/UBERON_2002103,ceratobranchial series, +http://purl.obolibrary.org/obo/UBERON_2002105,electrosensory lateral line lobe,ELL +http://purl.obolibrary.org/obo/UBERON_2002106,eminentia granularis,EG +http://purl.obolibrary.org/obo/UBERON_2002107,medullary command nucleus,MCN +http://purl.obolibrary.org/obo/UBERON_2002107,medullary command nucleus,medullary pacemaker nucleus +http://purl.obolibrary.org/obo/UBERON_2002107,medullary command nucleus,pacemaker nucleus +http://purl.obolibrary.org/obo/UBERON_2002108,buccal papilla, +http://purl.obolibrary.org/obo/UBERON_2002109,uroneural 2, +http://purl.obolibrary.org/obo/UBERON_2002110,metapterygoid-quadrate fenestra, +http://purl.obolibrary.org/obo/UBERON_2002111,prootic bulla, +http://purl.obolibrary.org/obo/UBERON_2002112,preural 3 vertebra,preural centrum 3 +http://purl.obolibrary.org/obo/UBERON_2002112,preural 3 vertebra,pu3 +http://purl.obolibrary.org/obo/UBERON_2002114,cotylephore,cotylephores +http://purl.obolibrary.org/obo/UBERON_2002115,uroneural 3, +http://purl.obolibrary.org/obo/UBERON_2002116,epibranchial organ, +http://purl.obolibrary.org/obo/UBERON_2002117,ovipositor, +http://purl.obolibrary.org/obo/UBERON_2002118,scale radius,radii +http://purl.obolibrary.org/obo/UBERON_2002119,dermal scale focus, +http://purl.obolibrary.org/obo/UBERON_2002120,orbitosphenoid septum, +http://purl.obolibrary.org/obo/UBERON_2002122,pouch scale, +http://purl.obolibrary.org/obo/UBERON_2002123,neural arch 5, +http://purl.obolibrary.org/obo/UBERON_2002124,nuptial tubercle,breeding tubercle +http://purl.obolibrary.org/obo/UBERON_2002124,nuptial tubercle,contact organ +http://purl.obolibrary.org/obo/UBERON_2002125,caudal-fin organ,caudal fin organ +http://purl.obolibrary.org/obo/UBERON_2002125,caudal-fin organ,caudal sac +http://purl.obolibrary.org/obo/UBERON_2002126,caudal-fin ray pump, +http://purl.obolibrary.org/obo/UBERON_2002127,myorhabdoid bone,myorhabdoi +http://purl.obolibrary.org/obo/UBERON_2002128,cavum sinus imparis,cavum sinus impar +http://purl.obolibrary.org/obo/UBERON_2002129,caudal rod,hypural-opisthural rod +http://purl.obolibrary.org/obo/UBERON_2002130,caudal appendage,caudal filament +http://purl.obolibrary.org/obo/UBERON_2002132,hypural 7, +http://purl.obolibrary.org/obo/UBERON_2002133,dorsal organ, +http://purl.obolibrary.org/obo/UBERON_2002141,annular ligament, +http://purl.obolibrary.org/obo/UBERON_2002145,anterior swim bladder bud, +http://purl.obolibrary.org/obo/UBERON_2002147,arrector muscle, +http://purl.obolibrary.org/obo/UBERON_2002149,vertebral element 9, +http://purl.obolibrary.org/obo/UBERON_2002150,vertebral element 10, +http://purl.obolibrary.org/obo/UBERON_2002151,vertebral element 11, +http://purl.obolibrary.org/obo/UBERON_2002152,vertebral element 12, +http://purl.obolibrary.org/obo/UBERON_2002154,opercular cavity, +http://purl.obolibrary.org/obo/UBERON_2002159,caudal basal fulcrum,caudal basal fulcra +http://purl.obolibrary.org/obo/UBERON_2002160,ural centrum 3, +http://purl.obolibrary.org/obo/UBERON_2002161,ural centrum 4, +http://purl.obolibrary.org/obo/UBERON_2002162,ural vertebra, +http://purl.obolibrary.org/obo/UBERON_2002163,ural vertebra 1, +http://purl.obolibrary.org/obo/UBERON_2002164,caudal principal ray set,branched caudal rays +http://purl.obolibrary.org/obo/UBERON_2002164,caudal principal ray set,caudal principal lepidotrichia +http://purl.obolibrary.org/obo/UBERON_2002165,caudal procurrent ray set,caudal precurrent rays +http://purl.obolibrary.org/obo/UBERON_2002165,caudal procurrent ray set,caudal spiny rays +http://purl.obolibrary.org/obo/UBERON_2002165,caudal procurrent ray set,rudimentary rays +http://purl.obolibrary.org/obo/UBERON_2002166,pseudourostyle, +http://purl.obolibrary.org/obo/UBERON_2002167,stegural, +http://purl.obolibrary.org/obo/UBERON_2002168,preural centrum 1 + ural centrum 1 + ural centrum 2, +http://purl.obolibrary.org/obo/UBERON_2002172,branchial mesenchyme, +http://purl.obolibrary.org/obo/UBERON_2002174,octaval nerve motor nucleus, +http://purl.obolibrary.org/obo/UBERON_2002175,rostral octaval nerve motor nucleus,ROLE +http://purl.obolibrary.org/obo/UBERON_2002175,rostral octaval nerve motor nucleus,rostral cranial nerve VIII motor nucleus +http://purl.obolibrary.org/obo/UBERON_2002176,caudal octaval nerve motor nucleus, +http://purl.obolibrary.org/obo/UBERON_2002185,climbing fiber, +http://purl.obolibrary.org/obo/UBERON_2002192,dorsolateral motor nucleus of vagal nerve,dlX +http://purl.obolibrary.org/obo/UBERON_2002193,dorsolateral septum, +http://purl.obolibrary.org/obo/UBERON_2002195,epidermal placode, +http://purl.obolibrary.org/obo/UBERON_2002200,hypobranchial muscle, +http://purl.obolibrary.org/obo/UBERON_2002202,intermediate nucleus, +http://purl.obolibrary.org/obo/UBERON_2002206,macula communis, +http://purl.obolibrary.org/obo/UBERON_2002207,medial motor nucleus of vagal nerve,mmX +http://purl.obolibrary.org/obo/UBERON_2002210,mossy fiber, +http://purl.obolibrary.org/obo/UBERON_2002214,os suspensorium medial flange, +http://purl.obolibrary.org/obo/UBERON_2002215,otic vesicle protrusion, +http://purl.obolibrary.org/obo/UBERON_2002216,otic vesicle ventral protrusion, +http://purl.obolibrary.org/obo/UBERON_2002217,parasphenoid-pterosphenoid joint, +http://purl.obolibrary.org/obo/UBERON_2002218,"parallel fiber, teleost",parallel fibers +http://purl.obolibrary.org/obo/UBERON_2002219,parvocellular preoptic nucleus, +http://purl.obolibrary.org/obo/UBERON_2002221,pericardial muscle, +http://purl.obolibrary.org/obo/UBERON_2002223,pillar of the semicircular canal, +http://purl.obolibrary.org/obo/UBERON_2002224,pleuroperitoneal cavity, +http://purl.obolibrary.org/obo/UBERON_2002225,posterior pronephric duct,posterior pronephric ducts +http://purl.obolibrary.org/obo/UBERON_2002226,preglomerular nucleus, +http://purl.obolibrary.org/obo/UBERON_2002229,presumptive atrium primitive heart tube, +http://purl.obolibrary.org/obo/UBERON_2002232,presumptive cardiac ventricle primitive heart tube, +http://purl.obolibrary.org/obo/UBERON_2002235,presumptive ventral mesoderm, +http://purl.obolibrary.org/obo/UBERON_2002240,Purkinje cell layer corpus cerebelli, +http://purl.obolibrary.org/obo/UBERON_2002241,Purkinje cell layer valvula cerebelli, +http://purl.obolibrary.org/obo/UBERON_2002242,scale primordium, +http://purl.obolibrary.org/obo/UBERON_2002244,supraoptic tract,SOT +http://purl.obolibrary.org/obo/UBERON_2002248,supratemporal commissure, +http://purl.obolibrary.org/obo/UBERON_2002249,ctenius,ctenii +http://purl.obolibrary.org/obo/UBERON_2002250,epural 2, +http://purl.obolibrary.org/obo/UBERON_2002251,epural 3, +http://purl.obolibrary.org/obo/UBERON_2002252,epural 1, +http://purl.obolibrary.org/obo/UBERON_2002255,ocular side,eyed side +http://purl.obolibrary.org/obo/UBERON_2002256,blind side, +http://purl.obolibrary.org/obo/UBERON_2002257,premaxilla dentigerous process,premaxilla alveolar process +http://purl.obolibrary.org/obo/UBERON_2002258,trituration tooth, +http://purl.obolibrary.org/obo/UBERON_2002260,premaxillary-maxillary joint, +http://purl.obolibrary.org/obo/UBERON_2002261,dorsal fin spine, +http://purl.obolibrary.org/obo/UBERON_2002262,anal fin spine, +http://purl.obolibrary.org/obo/UBERON_2002263,epineural 1, +http://purl.obolibrary.org/obo/UBERON_2002264,epineural 2, +http://purl.obolibrary.org/obo/UBERON_2002265,epineural 3, +http://purl.obolibrary.org/obo/UBERON_2002266,epineural 4, +http://purl.obolibrary.org/obo/UBERON_2002267,epineural 5, +http://purl.obolibrary.org/obo/UBERON_2002268,epineural 6, +http://purl.obolibrary.org/obo/UBERON_2002269,interarcual cartilage,IAC +http://purl.obolibrary.org/obo/UBERON_2002270,pelvic fin spine,pelvic spine +http://purl.obolibrary.org/obo/UBERON_2002271,ventral caudal procurrent ray 2, +http://purl.obolibrary.org/obo/UBERON_2002272,ventral caudal procurrent ray 1, +http://purl.obolibrary.org/obo/UBERON_2002273,ctenoid scale, +http://purl.obolibrary.org/obo/UBERON_2002274,transforming ctenoid scale, +http://purl.obolibrary.org/obo/UBERON_2002275,Jakubowski's organ, +http://purl.obolibrary.org/obo/UBERON_2002277,pectoral fin distal radial bone 1, +http://purl.obolibrary.org/obo/UBERON_2002279,pectoral fin distal radial bone 2, +http://purl.obolibrary.org/obo/UBERON_2002280,pectoral fin distal radial bone 3, +http://purl.obolibrary.org/obo/UBERON_2002281,retractor posttemporalis, +http://purl.obolibrary.org/obo/UBERON_2002282,preopercle-opercle joint, +http://purl.obolibrary.org/obo/UBERON_2002283,melanophore spot,spot +http://purl.obolibrary.org/obo/UBERON_2002283,melanophore spot,spots +http://purl.obolibrary.org/obo/UBERON_2002284,body marking,markings +http://purl.obolibrary.org/obo/UBERON_2002285,cycloid scale, +http://purl.obolibrary.org/obo/UBERON_2002291,fulcrum, +http://purl.obolibrary.org/obo/UBERON_2002292,epaxial basal fulcrum,dorsal basal fulcrum +http://purl.obolibrary.org/obo/UBERON_2002293,hypaxial basal fulcrum,hypaxial basal fulcra +http://purl.obolibrary.org/obo/UBERON_2002293,hypaxial basal fulcrum,ventral basal fulcra +http://purl.obolibrary.org/obo/UBERON_2002293,hypaxial basal fulcrum,ventral basal fulcrum +http://purl.obolibrary.org/obo/UBERON_2002294,fish scute,ridge scale +http://purl.obolibrary.org/obo/UBERON_2005000,basal communicating artery,BCA +http://purl.obolibrary.org/obo/UBERON_2005010,mid cerebral vein,MCeV +http://purl.obolibrary.org/obo/UBERON_2005010,mid cerebral vein,mid-cerebral vein +http://purl.obolibrary.org/obo/UBERON_2005010,mid cerebral vein,middle cerebral vein +http://purl.obolibrary.org/obo/UBERON_2005011,pseudobranchial artery, +http://purl.obolibrary.org/obo/UBERON_2005012,afferent filamental artery,AFA +http://purl.obolibrary.org/obo/UBERON_2005012,afferent filamental artery,afferent filamental arteries +http://purl.obolibrary.org/obo/UBERON_2005013,concurrent branch afferent branchial artery,CCB +http://purl.obolibrary.org/obo/UBERON_2005014,recurrent branch afferent branchial artery,RCB +http://purl.obolibrary.org/obo/UBERON_2005014,recurrent branch afferent branchial artery,recurrent branch afferent branchial arteries +http://purl.obolibrary.org/obo/UBERON_2005015,afferent lamellar arteriole,AFL +http://purl.obolibrary.org/obo/UBERON_2005015,afferent lamellar arteriole,afferent lamellar arterioles +http://purl.obolibrary.org/obo/UBERON_2005017,primordial midbrain channel,PMBC +http://purl.obolibrary.org/obo/UBERON_2005018,efferent filamental artery,EFA +http://purl.obolibrary.org/obo/UBERON_2005019,efferent lamellar arteriole,ELA +http://purl.obolibrary.org/obo/UBERON_2005019,efferent lamellar arteriole,efferent lamellar arterioles +http://purl.obolibrary.org/obo/UBERON_2005020,central artery,CtA +http://purl.obolibrary.org/obo/UBERON_2005021,cerebellar central artery,CCtA +http://purl.obolibrary.org/obo/UBERON_2005022,opercular artery,ORA +http://purl.obolibrary.org/obo/UBERON_2005025,dorsal longitudinal anastomotic vessel,DLAV +http://purl.obolibrary.org/obo/UBERON_2005026,primary head sinus,PHS +http://purl.obolibrary.org/obo/UBERON_2005026,primary head sinus,lateral head vein +http://purl.obolibrary.org/obo/UBERON_2005027,posterior cerebral vein,PCeV +http://purl.obolibrary.org/obo/UBERON_2005027,posterior cerebral vein,caudal cerebral vein +http://purl.obolibrary.org/obo/UBERON_2005029,rostral blood island,RBI +http://purl.obolibrary.org/obo/UBERON_2005030,dorsal ciliary vein,DCV +http://purl.obolibrary.org/obo/UBERON_2005031,dorsal longitudinal vein,DLV +http://purl.obolibrary.org/obo/UBERON_2005032,optic vein,OV +http://purl.obolibrary.org/obo/UBERON_2005034,parachordal vessel,PAV +http://purl.obolibrary.org/obo/UBERON_2005036,supraintestinal artery,SIA +http://purl.obolibrary.org/obo/UBERON_2005038,supraintestinal vein, +http://purl.obolibrary.org/obo/UBERON_2005039,anterior lateral mesoderm, +http://purl.obolibrary.org/obo/UBERON_2005044,optic artery, +http://purl.obolibrary.org/obo/UBERON_2005048,primitive prosencephalic artery,PPrA +http://purl.obolibrary.org/obo/UBERON_2005049,prosencephalic artery,PrA +http://purl.obolibrary.org/obo/UBERON_2005050,palatocerebral artery,PLA +http://purl.obolibrary.org/obo/UBERON_2005051,communicating vessel palatocerebral artery,CMV +http://purl.obolibrary.org/obo/UBERON_2005051,communicating vessel palatocerebral artery,communicating vessels +http://purl.obolibrary.org/obo/UBERON_2005052,anterior mesencephalic central artery,AMCtA +http://purl.obolibrary.org/obo/UBERON_2005052,anterior mesencephalic central artery,rostral mesencephalic central artery +http://purl.obolibrary.org/obo/UBERON_2005053,nasal ciliary artery,NCA +http://purl.obolibrary.org/obo/UBERON_2005054,inner optic circle,IOC +http://purl.obolibrary.org/obo/UBERON_2005055,median palatocerebral vein,MPLV +http://purl.obolibrary.org/obo/UBERON_2005056,palatocerebral vein,PLV +http://purl.obolibrary.org/obo/UBERON_2005066,bulbus arteriosus outer layer,bulbus arteriosus externa +http://purl.obolibrary.org/obo/UBERON_2005067,bulbus arteriosus middle layer,bulbus arteriosus media +http://purl.obolibrary.org/obo/UBERON_2005068,bulbus arteriosus inner layer,bulbus arteriosus intima +http://purl.obolibrary.org/obo/UBERON_2005072,endocardial ring, +http://purl.obolibrary.org/obo/UBERON_2005073,atrioventricular ring,AV ring +http://purl.obolibrary.org/obo/UBERON_2005074,central cardiac conduction system, +http://purl.obolibrary.org/obo/UBERON_2005075,peripheral cardiac conduction system, +http://purl.obolibrary.org/obo/UBERON_2005078,middle mesencephalic central artery,MMCtA +http://purl.obolibrary.org/obo/UBERON_2005079,posterior mesencephalic central artery,PMCtA +http://purl.obolibrary.org/obo/UBERON_2005079,posterior mesencephalic central artery,caudal mesencephalic central artery +http://purl.obolibrary.org/obo/UBERON_2005080,anterior mesenteric artery,AMA +http://purl.obolibrary.org/obo/UBERON_2005080,anterior mesenteric artery,rostral mesenteric artery +http://purl.obolibrary.org/obo/UBERON_2005082,dorsal branch nasal ciliary artery, +http://purl.obolibrary.org/obo/UBERON_2005083,ventral branch nasal ciliary artery, +http://purl.obolibrary.org/obo/UBERON_2005084,metencephalic artery, +http://purl.obolibrary.org/obo/UBERON_2005085,nasal artery,NA +http://purl.obolibrary.org/obo/UBERON_2005087,pectoral vein,PV +http://purl.obolibrary.org/obo/UBERON_2005088,posterior mesenteric artery,PMA +http://purl.obolibrary.org/obo/UBERON_2005088,posterior mesenteric artery,caudal mesenteric artery +http://purl.obolibrary.org/obo/UBERON_2005089,swim bladder artery,SBA +http://purl.obolibrary.org/obo/UBERON_2005093,nasal vein,NV +http://purl.obolibrary.org/obo/UBERON_2005097,caudal fin vasculature, +http://purl.obolibrary.org/obo/UBERON_2005098,central ray artery, +http://purl.obolibrary.org/obo/UBERON_2005099,ray vein, +http://purl.obolibrary.org/obo/UBERON_2005100,intervessel commissure,intervessel comisures +http://purl.obolibrary.org/obo/UBERON_2005101,interray vessel,interray vessels +http://purl.obolibrary.org/obo/UBERON_2005102,presumptive median fin fold,presumptive median fin-fold +http://purl.obolibrary.org/obo/UBERON_2005103,presumptive ventral fin fold,presumptive ventral fin-fold +http://purl.obolibrary.org/obo/UBERON_2005104,presumptive dorsal fin fold,presumptive dorsal fin-fold +http://purl.obolibrary.org/obo/UBERON_2005106,longitudinal lateral lymphatic vessel,LLL +http://purl.obolibrary.org/obo/UBERON_2005113,dorsal lateral line neuromast,neuromast dorsal +http://purl.obolibrary.org/obo/UBERON_2005114,middle lateral line system, +http://purl.obolibrary.org/obo/UBERON_2005115,primary posterior lateral line primordium,primI +http://purl.obolibrary.org/obo/UBERON_2005115,primary posterior lateral line primordium,primary posterior lateral line primordia +http://purl.obolibrary.org/obo/UBERON_2005116,secondary posterior lateral line primordium,secondary posterior lateral line primordia +http://purl.obolibrary.org/obo/UBERON_2005117,anterior lateral line primordium,anterior lateral line primordia +http://purl.obolibrary.org/obo/UBERON_2005118,middle lateral line primordium,middle lateral line primordia +http://purl.obolibrary.org/obo/UBERON_2005119,barbel primordium,barbel primordia +http://purl.obolibrary.org/obo/UBERON_2005121,middle lateral line placode, +http://purl.obolibrary.org/obo/UBERON_2005122,dorsal axial hypoblast, +http://purl.obolibrary.org/obo/UBERON_2005126,intestinal bulb epithelium, +http://purl.obolibrary.org/obo/UBERON_2005135,primary dental epithelium,pharyngeal tooth epithelium +http://purl.obolibrary.org/obo/UBERON_2005135,primary dental epithelium,primary tooth epithelium +http://purl.obolibrary.org/obo/UBERON_2005144,ampullary nerve, +http://purl.obolibrary.org/obo/UBERON_2005149,distal epidermal cap of regenerating fin/limb, +http://purl.obolibrary.org/obo/UBERON_2005150,basal regeneration epithelium of regenerating fin/limb,basal wound epidermis +http://purl.obolibrary.org/obo/UBERON_2005170,extrahepatic duct, +http://purl.obolibrary.org/obo/UBERON_2005174,ventral liver lobe,3rd lobe +http://purl.obolibrary.org/obo/UBERON_2005174,ventral liver lobe,third lobe +http://purl.obolibrary.org/obo/UBERON_2005219,choroid plexus vascular circuit,CVC +http://purl.obolibrary.org/obo/UBERON_2005220,larval melanophore stripe, +http://purl.obolibrary.org/obo/UBERON_2005221,dorsal larval melanophore stripe, +http://purl.obolibrary.org/obo/UBERON_2005222,ventral larval melanophore stripe, +http://purl.obolibrary.org/obo/UBERON_2005223,lateral larval melanophore stripe, +http://purl.obolibrary.org/obo/UBERON_2005224,yolk larval melanophore stripe, +http://purl.obolibrary.org/obo/UBERON_2005225,median fin radial bone,actinophore +http://purl.obolibrary.org/obo/UBERON_2005225,median fin radial bone,actinoste +http://purl.obolibrary.org/obo/UBERON_2005225,median fin radial bone,axonoste +http://purl.obolibrary.org/obo/UBERON_2005225,median fin radial bone,ptrygiophore +http://purl.obolibrary.org/obo/UBERON_2005226,median fin proximal radial bone,basoste +http://purl.obolibrary.org/obo/UBERON_2005226,median fin proximal radial bone,ptrygiophore proximal +http://purl.obolibrary.org/obo/UBERON_2005227,protoneuromast, +http://purl.obolibrary.org/obo/UBERON_2005245,inter-parietal joint, +http://purl.obolibrary.org/obo/UBERON_2005248,trans-choroid plexus branch,TCB +http://purl.obolibrary.org/obo/UBERON_2005256,intervillus pockets, +http://purl.obolibrary.org/obo/UBERON_2005259,continuous capillary,continuous blood vessel endothelium +http://purl.obolibrary.org/obo/UBERON_2005259,continuous capillary,continuous capillary vessel +http://purl.obolibrary.org/obo/UBERON_2005260,fenestrated capillary,fenestrated capillary vessel +http://purl.obolibrary.org/obo/UBERON_2005264,supraoccipital-parietal joint, +http://purl.obolibrary.org/obo/UBERON_2005265,hyomandibula-opercle joint, +http://purl.obolibrary.org/obo/UBERON_2005266,pterotic fossa, +http://purl.obolibrary.org/obo/UBERON_2005267,erector muscle, +http://purl.obolibrary.org/obo/UBERON_2005268,preopercle horizontal limb-symplectic joint, +http://purl.obolibrary.org/obo/UBERON_2005269,hypophyseal fenestra, +http://purl.obolibrary.org/obo/UBERON_2005270,depressor muscle, +http://purl.obolibrary.org/obo/UBERON_2005272,immature gonad,juvenile gonad +http://purl.obolibrary.org/obo/UBERON_2005273,intestinal mucosal muscle, +http://purl.obolibrary.org/obo/UBERON_2005275,hyomandibular foramen, +http://purl.obolibrary.org/obo/UBERON_2005276,inclinator muscle, +http://purl.obolibrary.org/obo/UBERON_2005278,preopercle vertical limb-hyomandibula joint, +http://purl.obolibrary.org/obo/UBERON_2005279,enteric circular muscle, +http://purl.obolibrary.org/obo/UBERON_2005292,distal late tubule, +http://purl.obolibrary.org/obo/UBERON_2005295,axial blood vessel, +http://purl.obolibrary.org/obo/UBERON_2005303,caudal fin lymph vessel, +http://purl.obolibrary.org/obo/UBERON_2005304,caudal fin blood vessel, +http://purl.obolibrary.org/obo/UBERON_2005311,pronephric glomerular capsule epithelium,pronephric parietal epithelial layer +http://purl.obolibrary.org/obo/UBERON_2005316,fin fold pectoral fin bud,fin-fold pectoral fin bud +http://purl.obolibrary.org/obo/UBERON_2005317,pectoral fin fold,pectoral fin-fold +http://purl.obolibrary.org/obo/UBERON_2005319,intersegmental lymph vessel,islv +http://purl.obolibrary.org/obo/UBERON_2005320,dorsal longitudinal lymphatic vessel,dllv +http://purl.obolibrary.org/obo/UBERON_2005338,posterior recess,posterior recess of diencephalic ventricle +http://purl.obolibrary.org/obo/UBERON_2005339,nucleus of the lateral recess, +http://purl.obolibrary.org/obo/UBERON_2005340,nucleus of the posterior recess, +http://purl.obolibrary.org/obo/UBERON_2005341,medial longitudinal catecholaminergic tract,mlct +http://purl.obolibrary.org/obo/UBERON_2005343,endohypothalamic tract, +http://purl.obolibrary.org/obo/UBERON_2005344,preopticohypothalamic tract, +http://purl.obolibrary.org/obo/UBERON_2005346,extrapancreatic duct, +http://purl.obolibrary.org/obo/UBERON_2005365,dorsal fin pterygiophore 2, +http://purl.obolibrary.org/obo/UBERON_2005366,dorsal fin pterygiophore 3, +http://purl.obolibrary.org/obo/UBERON_2005367,dorsal fin pterygiophore 4, +http://purl.obolibrary.org/obo/UBERON_2005368,dorsal fin pterygiophore 5, +http://purl.obolibrary.org/obo/UBERON_2005369,dorsal fin pterygiophore 6, +http://purl.obolibrary.org/obo/UBERON_2005370,dorsal fin pterygiophore 7, +http://purl.obolibrary.org/obo/UBERON_2005371,dorsal fin pterygiophore 8, +http://purl.obolibrary.org/obo/UBERON_2005372,dorsal fin distal radial bone 1, +http://purl.obolibrary.org/obo/UBERON_2005373,dorsal fin distal radial bone 2, +http://purl.obolibrary.org/obo/UBERON_2005374,dorsal fin distal radial bone 3, +http://purl.obolibrary.org/obo/UBERON_2005375,dorsal fin distal radial bone 4, +http://purl.obolibrary.org/obo/UBERON_2005376,dorsal fin distal radial bone 5, +http://purl.obolibrary.org/obo/UBERON_2005377,dorsal fin distal radial bone 6, +http://purl.obolibrary.org/obo/UBERON_2005378,dorsal fin distal radial bone 7, +http://purl.obolibrary.org/obo/UBERON_2005379,dorsal fin distal radial bone 8, +http://purl.obolibrary.org/obo/UBERON_2005380,dorsal fin proximal radial bone 3, +http://purl.obolibrary.org/obo/UBERON_2005381,dorsal fin proximal radial bone 4, +http://purl.obolibrary.org/obo/UBERON_2005382,dorsal fin proximal radial bone 5, +http://purl.obolibrary.org/obo/UBERON_2005383,dorsal fin proximal radial bone 6, +http://purl.obolibrary.org/obo/UBERON_2005384,dorsal fin proximal radial bone 7, +http://purl.obolibrary.org/obo/UBERON_2005385,dorsal fin proximal radial bone 8, +http://purl.obolibrary.org/obo/UBERON_2005409,pars superior ear, +http://purl.obolibrary.org/obo/UBERON_2005410,pars inferior ear, +http://purl.obolibrary.org/obo/UBERON_2005411,common crus, +http://purl.obolibrary.org/obo/UBERON_2005412,transverse canal, +http://purl.obolibrary.org/obo/UBERON_2005415,inner ear foramen, +http://purl.obolibrary.org/obo/UBERON_2005416,sacculoagenar foramen, +http://purl.obolibrary.org/obo/UBERON_2007001,dorso-rostral cluster,dorsorostral cluster +http://purl.obolibrary.org/obo/UBERON_2007001,dorso-rostral cluster,drc +http://purl.obolibrary.org/obo/UBERON_2007002,ventro-rostral cluster,ventrorostral cluster +http://purl.obolibrary.org/obo/UBERON_2007002,ventro-rostral cluster,vrc +http://purl.obolibrary.org/obo/UBERON_2007003,ventro-caudal cluster,vcc +http://purl.obolibrary.org/obo/UBERON_2007003,ventro-caudal cluster,ventrocaudal cluster +http://purl.obolibrary.org/obo/UBERON_2007004,epiphysial cluster,ec +http://purl.obolibrary.org/obo/UBERON_2007005,hemal prezygapophysis,haemal prezygapophysis +http://purl.obolibrary.org/obo/UBERON_2007005,hemal prezygapophysis,hemal prezygopophysis +http://purl.obolibrary.org/obo/UBERON_2007008,ventral intermandibularis anterior,ventral intermandibulari anterior +http://purl.obolibrary.org/obo/UBERON_2007012,lateral forebrain bundle, +http://purl.obolibrary.org/obo/UBERON_2007013,preplacodal ectoderm, +http://purl.obolibrary.org/obo/UBERON_2007014,anterior presumptive neural plate, +http://purl.obolibrary.org/obo/UBERON_2007015,posterior presumptive neural plate, +http://purl.obolibrary.org/obo/UBERON_2007023,posterior neural keel, +http://purl.obolibrary.org/obo/UBERON_2007024,anterior neural keel, +http://purl.obolibrary.org/obo/UBERON_2007025,midbrain neural keel, +http://purl.obolibrary.org/obo/UBERON_2007026,forebrain neural keel, +http://purl.obolibrary.org/obo/UBERON_2007027,forebrain midbrain boundary neural keel, +http://purl.obolibrary.org/obo/UBERON_2007028,spinal cord neural keel, +http://purl.obolibrary.org/obo/UBERON_2007029,hindbrain neural keel, +http://purl.obolibrary.org/obo/UBERON_2007030,posterior neural rod, +http://purl.obolibrary.org/obo/UBERON_2007031,anterior neural rod, +http://purl.obolibrary.org/obo/UBERON_2007032,midbrain neural rod, +http://purl.obolibrary.org/obo/UBERON_2007033,forebrain midbrain boundary neural rod, +http://purl.obolibrary.org/obo/UBERON_2007034,forebrain neural rod, +http://purl.obolibrary.org/obo/UBERON_2007035,spinal cord neural rod, +http://purl.obolibrary.org/obo/UBERON_2007036,hindbrain neural rod, +http://purl.obolibrary.org/obo/UBERON_2007040,forebrain midbrain boundary neural tube, +http://purl.obolibrary.org/obo/UBERON_2007041,forebrain neural tube, +http://purl.obolibrary.org/obo/UBERON_2007042,spinal cord neural tube, +http://purl.obolibrary.org/obo/UBERON_2007043,hindbrain neural tube, +http://purl.obolibrary.org/obo/UBERON_2007045,midbrain hindbrain boundary neural keel, +http://purl.obolibrary.org/obo/UBERON_2007046,midbrain hindbrain boundary neural rod, +http://purl.obolibrary.org/obo/UBERON_2007047,midbrain hindbrain boundary neural tube, +http://purl.obolibrary.org/obo/UBERON_2007048,ventral intermandibularis posterior,ventral intermandibulari posterior +http://purl.obolibrary.org/obo/UBERON_2007050,constrictor dorsalis, +http://purl.obolibrary.org/obo/UBERON_2007051,ventral interhyoideus,ventral interhyoidei +http://purl.obolibrary.org/obo/UBERON_2007052,hyohyoideus,hyohyoidei +http://purl.obolibrary.org/obo/UBERON_2007053,dorsal adductor hyomandibulae, +http://purl.obolibrary.org/obo/UBERON_2007054,pillar of the anterior semicircular canal,anterior hub of the semicircular canal +http://purl.obolibrary.org/obo/UBERON_2007054,pillar of the anterior semicircular canal,anterior pillar +http://purl.obolibrary.org/obo/UBERON_2007054,pillar of the anterior semicircular canal,anterior pillar of the semicircular canal +http://purl.obolibrary.org/obo/UBERON_2007055,pillar of the lateral semicircular canal,lateral hub of the semicircular canal +http://purl.obolibrary.org/obo/UBERON_2007055,pillar of the lateral semicircular canal,ventral bar +http://purl.obolibrary.org/obo/UBERON_2007055,pillar of the lateral semicircular canal,ventral pillar +http://purl.obolibrary.org/obo/UBERON_2007055,pillar of the lateral semicircular canal,ventral piller of the semicircular canal +http://purl.obolibrary.org/obo/UBERON_2007059,neurogenic field, +http://purl.obolibrary.org/obo/UBERON_2007060,dorsolateral field, +http://purl.obolibrary.org/obo/UBERON_2007061,epibranchial field, +http://purl.obolibrary.org/obo/UBERON_2007062,olfactory field,olfactory fields +http://purl.obolibrary.org/obo/UBERON_2100268,anal fin proximal radial element, +http://purl.obolibrary.org/obo/UBERON_2100271,radial element, +http://purl.obolibrary.org/obo/UBERON_2100508,pelvic fin radial element, +http://purl.obolibrary.org/obo/UBERON_2100623,basipterygium element, +http://purl.obolibrary.org/obo/UBERON_2100646,anal fin distal radial element, +http://purl.obolibrary.org/obo/UBERON_2100936,dorsal fin distal radial element, +http://purl.obolibrary.org/obo/UBERON_2100947,dorsal fin proximal radial element, +http://purl.obolibrary.org/obo/UBERON_2101415,pelvic fin distal radial element 2, +http://purl.obolibrary.org/obo/UBERON_2101416,pelvic fin distal radial element 3, +http://purl.obolibrary.org/obo/UBERON_2101417,pelvic fin distal radial element 1, +http://purl.obolibrary.org/obo/UBERON_2101586,pectoral fin radial element, +http://purl.obolibrary.org/obo/UBERON_2101587,pectoral fin proximal radial element, +http://purl.obolibrary.org/obo/UBERON_2101588,pectoral fin distal radial element, +http://purl.obolibrary.org/obo/UBERON_2101613,dorsal fin middle radial element, +http://purl.obolibrary.org/obo/UBERON_2101614,anal fin middle radial element, +http://purl.obolibrary.org/obo/UBERON_2101671,anal fin radial element, +http://purl.obolibrary.org/obo/UBERON_2101672,dorsal fin radial element, +http://purl.obolibrary.org/obo/UBERON_2101818,dorsal fin proximal radial element 1, +http://purl.obolibrary.org/obo/UBERON_2101819,dorsal fin proximal radial element 2, +http://purl.obolibrary.org/obo/UBERON_2102026,pectoral fin proximal radial element 1, +http://purl.obolibrary.org/obo/UBERON_2102027,pectoral fin proximal radial element 2, +http://purl.obolibrary.org/obo/UBERON_2102028,pectoral fin proximal radial element 3, +http://purl.obolibrary.org/obo/UBERON_2102029,pectoral fin proximal radial element 4, +http://purl.obolibrary.org/obo/UBERON_2102277,pectoral fin distal radial element 1, +http://purl.obolibrary.org/obo/UBERON_2102279,pectoral fin distal radial element 2, +http://purl.obolibrary.org/obo/UBERON_2102280,pectoral fin distal radial element 3, +http://purl.obolibrary.org/obo/UBERON_2105225,median fin radial element, +http://purl.obolibrary.org/obo/UBERON_2105226,median fin proximal radial element, +http://purl.obolibrary.org/obo/UBERON_2105372,dorsal fin distal radial element 1, +http://purl.obolibrary.org/obo/UBERON_2105373,dorsal fin distal radial element 2, +http://purl.obolibrary.org/obo/UBERON_2105374,dorsal fin distal radial element 3, +http://purl.obolibrary.org/obo/UBERON_2105375,dorsal fin distal radial element 4, +http://purl.obolibrary.org/obo/UBERON_2105376,dorsal fin distal radial element 5, +http://purl.obolibrary.org/obo/UBERON_2105377,dorsal fin distal radial element 6, +http://purl.obolibrary.org/obo/UBERON_2105378,dorsal fin distal radial element 7, +http://purl.obolibrary.org/obo/UBERON_2105379,dorsal fin distal radial element 8, +http://purl.obolibrary.org/obo/UBERON_2105380,dorsal fin proximal radial element 3, +http://purl.obolibrary.org/obo/UBERON_2105381,dorsal fin proximal radial element 4, +http://purl.obolibrary.org/obo/UBERON_2105382,dorsal fin proximal radial element 5, +http://purl.obolibrary.org/obo/UBERON_2105383,dorsal fin proximal radial element 6, +http://purl.obolibrary.org/obo/UBERON_2105384,dorsal fin proximal radial element 7, +http://purl.obolibrary.org/obo/UBERON_2105385,dorsal fin proximal radial element 8, +http://purl.obolibrary.org/obo/UBERON_2200268,anal fin proximal radial cartilage,basal radial of anal fin cartilage +http://purl.obolibrary.org/obo/UBERON_2200268,anal fin proximal radial cartilage,proximal anal-fin radial cartilage +http://purl.obolibrary.org/obo/UBERON_2200271,radial cartilage, +http://purl.obolibrary.org/obo/UBERON_2200646,anal fin distal radial cartilage, +http://purl.obolibrary.org/obo/UBERON_2200936,dorsal fin distal radial cartilage, +http://purl.obolibrary.org/obo/UBERON_2200947,dorsal fin proximal radial cartilage,basal radial cartilage of dorsal fin +http://purl.obolibrary.org/obo/UBERON_2201415,pelvic fin distal radial cartilage 2, +http://purl.obolibrary.org/obo/UBERON_2201416,pelvic fin distal radial cartilage 3, +http://purl.obolibrary.org/obo/UBERON_2201417,pelvic fin distal radial cartilage 1, +http://purl.obolibrary.org/obo/UBERON_2201586,pectoral fin radial cartilage, +http://purl.obolibrary.org/obo/UBERON_2201587,pectoral fin proximal radial cartilage, +http://purl.obolibrary.org/obo/UBERON_2201588,pectoral fin distal radial cartilage, +http://purl.obolibrary.org/obo/UBERON_2201613,dorsal fin middle radial cartilage,dorsal fin medial radial cartilage +http://purl.obolibrary.org/obo/UBERON_2201614,anal fin middle radial cartilage,anal fin medial radial cartilage +http://purl.obolibrary.org/obo/UBERON_2201614,anal fin middle radial cartilage,medial anal-fin radial cartilage +http://purl.obolibrary.org/obo/UBERON_2201671,anal fin radial cartilage, +http://purl.obolibrary.org/obo/UBERON_2201672,dorsal fin radial cartilage, +http://purl.obolibrary.org/obo/UBERON_2201818,dorsal fin proximal radial cartilage 1, +http://purl.obolibrary.org/obo/UBERON_2201819,dorsal fin proximal radial cartilage 2, +http://purl.obolibrary.org/obo/UBERON_2202026,pectoral fin proximal radial cartilage 1,first pectoral basal radial cartilage +http://purl.obolibrary.org/obo/UBERON_2202027,pectoral fin proximal radial cartilage 2,second pectoral basal radial cartilage +http://purl.obolibrary.org/obo/UBERON_2202028,pectoral fin proximal radial cartilage 3,third pectoral basal radial cartilage +http://purl.obolibrary.org/obo/UBERON_2202029,pectoral fin proximal radial cartilage 4,fourth pectoral basal radial cartilage +http://purl.obolibrary.org/obo/UBERON_2202277,pectoral fin distal radial cartilage 1, +http://purl.obolibrary.org/obo/UBERON_2202279,pectoral fin distal radial cartilage 2, +http://purl.obolibrary.org/obo/UBERON_2202280,pectoral fin distal radial cartilage 3, +http://purl.obolibrary.org/obo/UBERON_2205225,median fin radial cartilage, +http://purl.obolibrary.org/obo/UBERON_2205226,median fin proximal radial cartilage,ptrygiophore proximal cartilage +http://purl.obolibrary.org/obo/UBERON_2205372,dorsal fin distal radial cartilage 1, +http://purl.obolibrary.org/obo/UBERON_2205373,dorsal fin distal radial cartilage 2, +http://purl.obolibrary.org/obo/UBERON_2205374,dorsal fin distal radial cartilage 3, +http://purl.obolibrary.org/obo/UBERON_2205375,dorsal fin distal radial cartilage 4, +http://purl.obolibrary.org/obo/UBERON_2205376,dorsal fin distal radial cartilage 5, +http://purl.obolibrary.org/obo/UBERON_2205377,dorsal fin distal radial cartilage 6, +http://purl.obolibrary.org/obo/UBERON_2205378,dorsal fin distal radial cartilage 7, +http://purl.obolibrary.org/obo/UBERON_2205379,dorsal fin distal radial cartilage 8, +http://purl.obolibrary.org/obo/UBERON_2205380,dorsal fin proximal radial cartilage 3, +http://purl.obolibrary.org/obo/UBERON_2205381,dorsal fin proximal radial cartilage 4, +http://purl.obolibrary.org/obo/UBERON_2205382,dorsal fin proximal radial cartilage 5, +http://purl.obolibrary.org/obo/UBERON_2205383,dorsal fin proximal radial cartilage 6, +http://purl.obolibrary.org/obo/UBERON_2205384,dorsal fin proximal radial cartilage 7, +http://purl.obolibrary.org/obo/UBERON_2205385,dorsal fin proximal radial cartilage 8, +http://purl.obolibrary.org/obo/UBERON_3000002,alary cartilage, +http://purl.obolibrary.org/obo/UBERON_3000003,alary process of premaxilla, +http://purl.obolibrary.org/obo/UBERON_3000006,alveolar foramen, +http://purl.obolibrary.org/obo/UBERON_3000012,angulosplenial coronoid process, +http://purl.obolibrary.org/obo/UBERON_3000015,anterior maxillary process, +http://purl.obolibrary.org/obo/UBERON_3000016,anterior nasal wall, +http://purl.obolibrary.org/obo/UBERON_3000017,anterior process of pars palatina of maxilla, +http://purl.obolibrary.org/obo/UBERON_3000018,anterior ramus of pterygoid, +http://purl.obolibrary.org/obo/UBERON_3000020,anterolateral process of frontoparietal, +http://purl.obolibrary.org/obo/UBERON_3000022,antorbital process, +http://purl.obolibrary.org/obo/UBERON_3000031,ascending process of palatoquadrate, +http://purl.obolibrary.org/obo/UBERON_3000032,auditory muscles, +http://purl.obolibrary.org/obo/UBERON_3000036,basal process of palatoquadrate, +http://purl.obolibrary.org/obo/UBERON_3000037,basicranial fenestra, +http://purl.obolibrary.org/obo/UBERON_3000038,basimandibulare, +http://purl.obolibrary.org/obo/UBERON_3000041,Bidder's organ, +http://purl.obolibrary.org/obo/UBERON_3000050,braincase and auditory apparatus, +http://purl.obolibrary.org/obo/UBERON_3000051,braincase and otic capsule opening, +http://purl.obolibrary.org/obo/UBERON_3000052,braincase and otic capsule skeleton, +http://purl.obolibrary.org/obo/UBERON_3000057,canalis semicircularis anterior, +http://purl.obolibrary.org/obo/UBERON_3000059,capsular process, +http://purl.obolibrary.org/obo/UBERON_3000068,cartilago ectochoanalis, +http://purl.obolibrary.org/obo/UBERON_3000069,cartilago infranarina, +http://purl.obolibrary.org/obo/UBERON_3000074,cartilago orbitalis, +http://purl.obolibrary.org/obo/UBERON_3000078,cartilago prootico-occipitalis, +http://purl.obolibrary.org/obo/UBERON_3000079,cartilago retronarina, +http://purl.obolibrary.org/obo/UBERON_3000085,cavum inferius, +http://purl.obolibrary.org/obo/UBERON_3000086,cavum internasale, +http://purl.obolibrary.org/obo/UBERON_3000087,cavum medius, +http://purl.obolibrary.org/obo/UBERON_3000088,cavum praenasale, +http://purl.obolibrary.org/obo/UBERON_3000089,cavum principale, +http://purl.obolibrary.org/obo/UBERON_3000101,hyale,anterior cornua +http://purl.obolibrary.org/obo/UBERON_3000110,crista contacta, +http://purl.obolibrary.org/obo/UBERON_3000111,crista dentalis of maxilla, +http://purl.obolibrary.org/obo/UBERON_3000112,crista dentalis of premaxilla, +http://purl.obolibrary.org/obo/UBERON_3000113,crista intermedia, +http://purl.obolibrary.org/obo/UBERON_3000115,crista lateralis of premaxilla, +http://purl.obolibrary.org/obo/UBERON_3000117,crista subnasalis, +http://purl.obolibrary.org/obo/UBERON_3000118,crista supraorbitalis, +http://purl.obolibrary.org/obo/UBERON_3000131,dilatatio alaris, +http://purl.obolibrary.org/obo/UBERON_3000141,endolymphatic system, +http://purl.obolibrary.org/obo/UBERON_3000155,extremitas anterior, +http://purl.obolibrary.org/obo/UBERON_3000160,fenestra dorsalis nasi, +http://purl.obolibrary.org/obo/UBERON_3000161,fenestra endochoanalis, +http://purl.obolibrary.org/obo/UBERON_3000162,fenestra endonarina communis, +http://purl.obolibrary.org/obo/UBERON_3000164,fenestra lateralis nasi, +http://purl.obolibrary.org/obo/UBERON_3000166,fenestra nasobasalis, +http://purl.obolibrary.org/obo/UBERON_3000167,fenestra nasolateralis, +http://purl.obolibrary.org/obo/UBERON_3000170,fenestra precerebralis, +http://purl.obolibrary.org/obo/UBERON_3000171,fenestra prechoanalis, +http://purl.obolibrary.org/obo/UBERON_3000177,flange of quadratojugal, +http://purl.obolibrary.org/obo/UBERON_3000178,footplate of pars media plectri, +http://purl.obolibrary.org/obo/UBERON_3000179,foramen acusticum, +http://purl.obolibrary.org/obo/UBERON_3000180,foramen acusticum anterius, +http://purl.obolibrary.org/obo/UBERON_3000181,foramen acusticum maius, +http://purl.obolibrary.org/obo/UBERON_3000182,foramen acusticum minus, +http://purl.obolibrary.org/obo/UBERON_3000183,foramen acusticum posterius, +http://purl.obolibrary.org/obo/UBERON_3000185,foramen endolymphaticum, +http://purl.obolibrary.org/obo/UBERON_3000189,foramen orbitonasale laterale, +http://purl.obolibrary.org/obo/UBERON_3000190,foramen orbitonasale mediale, +http://purl.obolibrary.org/obo/UBERON_3000192,foramen perilymphaticum, +http://purl.obolibrary.org/obo/UBERON_3000193,foramen perilymphaticum accessorium, +http://purl.obolibrary.org/obo/UBERON_3000195,foramen perilymphaticus inferius, +http://purl.obolibrary.org/obo/UBERON_3000209,frontoparietal fontanelle, +http://purl.obolibrary.org/obo/UBERON_3000224,hyobranchial muscle, +http://purl.obolibrary.org/obo/UBERON_3000226,hyolaryngeal complex, +http://purl.obolibrary.org/obo/UBERON_3000234,inferior prenasal cartilage, +http://purl.obolibrary.org/obo/UBERON_3000237,infrarostral cartilage, +http://purl.obolibrary.org/obo/UBERON_3000254,lamella alaris, +http://purl.obolibrary.org/obo/UBERON_3000255,lamina anterior of pars facialis, +http://purl.obolibrary.org/obo/UBERON_3000259,lamina inferior, +http://purl.obolibrary.org/obo/UBERON_3000260,lamina nariochoanalis, +http://purl.obolibrary.org/obo/UBERON_3000263,lamina precerebralis, +http://purl.obolibrary.org/obo/UBERON_3000264,lamina superior, +http://purl.obolibrary.org/obo/UBERON_3000280,margo mandibularis of pterygoid, +http://purl.obolibrary.org/obo/UBERON_3000281,margo orbitalis of maxilla, +http://purl.obolibrary.org/obo/UBERON_3000282,margo orbitalis of pterygoid, +http://purl.obolibrary.org/obo/UBERON_3000283,margo orbitalis of squamosal, +http://purl.obolibrary.org/obo/UBERON_3000284,margo tympanicus of pterygoid, +http://purl.obolibrary.org/obo/UBERON_3000288,maxillopalatine, +http://purl.obolibrary.org/obo/UBERON_3000290,medial inferior prenasal cartilage, +http://purl.obolibrary.org/obo/UBERON_3000291,medial orbitonasal foramen, +http://purl.obolibrary.org/obo/UBERON_3000292,medial ramus of pterygoid, +http://purl.obolibrary.org/obo/UBERON_3000294,median prenasal process, +http://purl.obolibrary.org/obo/UBERON_3000295,median symphysis, +http://purl.obolibrary.org/obo/UBERON_3000309,narial muscles, +http://purl.obolibrary.org/obo/UBERON_3000316,nasal opening, +http://purl.obolibrary.org/obo/UBERON_3000323,nasopremaxilla, +http://purl.obolibrary.org/obo/UBERON_3000329,oblique cartilage, +http://purl.obolibrary.org/obo/UBERON_3000332,oculomotor foramen,nerve foramen III +http://purl.obolibrary.org/obo/UBERON_3000333,olfactory foramen, +http://purl.obolibrary.org/obo/UBERON_3000341,optic fenestra, +http://purl.obolibrary.org/obo/UBERON_3000344,orbitonasal foramen, +http://purl.obolibrary.org/obo/UBERON_3000348,os basale, +http://purl.obolibrary.org/obo/UBERON_3000363,otic ligament, +http://purl.obolibrary.org/obo/UBERON_3000364,otic plate of pterygoid, +http://purl.obolibrary.org/obo/UBERON_3000365,otic process, +http://purl.obolibrary.org/obo/UBERON_3000367,otic ramus of squamosal, +http://purl.obolibrary.org/obo/UBERON_3000368,otoccipital,otooccipital +http://purl.obolibrary.org/obo/UBERON_3000375,palatine process of the pars facialis of the maxilla, +http://purl.obolibrary.org/obo/UBERON_3000380,palatoquadrate articular process, +http://purl.obolibrary.org/obo/UBERON_3000381,paranasal commissure, +http://purl.obolibrary.org/obo/UBERON_3000384,parasagittal crest, +http://purl.obolibrary.org/obo/UBERON_3000386,cultriform process, +http://purl.obolibrary.org/obo/UBERON_3000387,subotic alae, +http://purl.obolibrary.org/obo/UBERON_3000388,parasphenoid tooth, +http://purl.obolibrary.org/obo/UBERON_3000389,paries nasi, +http://purl.obolibrary.org/obo/UBERON_3000393,pars amphibiorum, +http://purl.obolibrary.org/obo/UBERON_3000394,pars articularis of mandibular arch, +http://purl.obolibrary.org/obo/UBERON_3000395,pars basilaris, +http://purl.obolibrary.org/obo/UBERON_3000399,pars externa plectri, +http://purl.obolibrary.org/obo/UBERON_3000400,pars facialis of maxilla, +http://purl.obolibrary.org/obo/UBERON_3000401,pars facialis of maxillopalatine, +http://purl.obolibrary.org/obo/UBERON_3000405,pars inferior of labyrinth, +http://purl.obolibrary.org/obo/UBERON_3000406,pars interna plectri, +http://purl.obolibrary.org/obo/UBERON_3000408,pars media plectri, +http://purl.obolibrary.org/obo/UBERON_3000428,perilymphatic system, +http://purl.obolibrary.org/obo/UBERON_3000431,pila antoptica, +http://purl.obolibrary.org/obo/UBERON_3000432,pila metoptica, +http://purl.obolibrary.org/obo/UBERON_3000433,pineal foramen, +http://purl.obolibrary.org/obo/UBERON_3000434,planum antorbitale, +http://purl.obolibrary.org/obo/UBERON_3000437,planum conchale, +http://purl.obolibrary.org/obo/UBERON_3000438,planum internasale, +http://purl.obolibrary.org/obo/UBERON_3000440,planum terminale, +http://purl.obolibrary.org/obo/UBERON_3000441,planum triangulare, +http://purl.obolibrary.org/obo/UBERON_3000443,plectral apparatus, +http://purl.obolibrary.org/obo/UBERON_3000446,posterior condyle, +http://purl.obolibrary.org/obo/UBERON_3000448,posterior maxillary process, +http://purl.obolibrary.org/obo/UBERON_3000449,posterior maxillary process dorsal process, +http://purl.obolibrary.org/obo/UBERON_3000450,posterior mental process, +http://purl.obolibrary.org/obo/UBERON_3000451,posterior ramus of pterygoid, +http://purl.obolibrary.org/obo/UBERON_3000453,posterolateral vomerine process, +http://purl.obolibrary.org/obo/UBERON_3000454,postnasal wall, +http://purl.obolibrary.org/obo/UBERON_3000459,prearticular coronoid process, +http://purl.obolibrary.org/obo/UBERON_3000467,preorbital process of the pars facialis of the maxilla,preorbital process +http://purl.obolibrary.org/obo/UBERON_3000486,processus ascendens plectri, +http://purl.obolibrary.org/obo/UBERON_3000492,processus infrafenestralis, +http://purl.obolibrary.org/obo/UBERON_3000493,processus internus of pseudoangular, +http://purl.obolibrary.org/obo/UBERON_3000494,processus lingualis of pterygoid, +http://purl.obolibrary.org/obo/UBERON_3000500,processus posterior of maxilla, +http://purl.obolibrary.org/obo/UBERON_3000505,processus pterygoideus of maxilla, +http://purl.obolibrary.org/obo/UBERON_3000509,processus suprafenestralis, +http://purl.obolibrary.org/obo/UBERON_3000512,processus zygomatico-maxillaris, +http://purl.obolibrary.org/obo/UBERON_3000515,pseudoangular, +http://purl.obolibrary.org/obo/UBERON_3000516,pseudobasal process, +http://purl.obolibrary.org/obo/UBERON_3000518,pseudodentary, +http://purl.obolibrary.org/obo/UBERON_3000519,pseudodentary tooth, +http://purl.obolibrary.org/obo/UBERON_3000523,pterygoid process of palatoquadrate, +http://purl.obolibrary.org/obo/UBERON_3000524,pterygoquadrate, +http://purl.obolibrary.org/obo/UBERON_3000527,quadrate process of palatoquadrate, +http://purl.obolibrary.org/obo/UBERON_3000538,recessus fenestrae ovalis, +http://purl.obolibrary.org/obo/UBERON_3000539,recessus marsupiatus of premaxilla, +http://purl.obolibrary.org/obo/UBERON_3000540,recessus vaginiformis, +http://purl.obolibrary.org/obo/UBERON_3000543,retroarticular process, +http://purl.obolibrary.org/obo/UBERON_3000547,rostral process, +http://purl.obolibrary.org/obo/UBERON_3000560,septum semicircularium anterior, +http://purl.obolibrary.org/obo/UBERON_3000561,septum semicircularium laterale, +http://purl.obolibrary.org/obo/UBERON_3000562,septum semircularium posterior, +http://purl.obolibrary.org/obo/UBERON_3000563,seydels palatal process, +http://purl.obolibrary.org/obo/UBERON_3000565,skeletal support for eminentia olfactoria, +http://purl.obolibrary.org/obo/UBERON_3000569,solum nasi, +http://purl.obolibrary.org/obo/UBERON_3000570,spatium sacculare, +http://purl.obolibrary.org/obo/UBERON_3000571,specialized connective tissue, +http://purl.obolibrary.org/obo/UBERON_3000572,sphenethmoid, +http://purl.obolibrary.org/obo/UBERON_3000580,stylus of pars media plectri, +http://purl.obolibrary.org/obo/UBERON_3000581,sulcus dentalis of maxilla, +http://purl.obolibrary.org/obo/UBERON_3000582,sulcus dentalis of premaxilla, +http://purl.obolibrary.org/obo/UBERON_3000583,sulcus for Meckels cartilage, +http://purl.obolibrary.org/obo/UBERON_3000586,superior prenasal cartilage, +http://purl.obolibrary.org/obo/UBERON_3000590,supraorbital flange, +http://purl.obolibrary.org/obo/UBERON_3000591,suprasphenoid, +http://purl.obolibrary.org/obo/UBERON_3000597,symphysis maxillaris, +http://purl.obolibrary.org/obo/UBERON_3000599,taenia tecti marginalis, +http://purl.obolibrary.org/obo/UBERON_3000601,tectum nasi, +http://purl.obolibrary.org/obo/UBERON_3000605,tentacular foramen, +http://purl.obolibrary.org/obo/UBERON_3000610,trochlear foramen,nerve foramen IV +http://purl.obolibrary.org/obo/UBERON_3000619,tympanosquamosal, +http://purl.obolibrary.org/obo/UBERON_3000628,ventral ramus of squamosal, +http://purl.obolibrary.org/obo/UBERON_3000634,vomerine canal, +http://purl.obolibrary.org/obo/UBERON_3000639,zygomatic ramus of squamosal, +http://purl.obolibrary.org/obo/UBERON_3000640,arcus praeoccipitalis, +http://purl.obolibrary.org/obo/UBERON_3000642,maxillopalatine tooth, +http://purl.obolibrary.org/obo/UBERON_3000644,processus lingularis of nasal skeleton, +http://purl.obolibrary.org/obo/UBERON_3000645,corpus, +http://purl.obolibrary.org/obo/UBERON_3000646,margo libera, +http://purl.obolibrary.org/obo/UBERON_3000647,crista interna, +http://purl.obolibrary.org/obo/UBERON_3000648,crista praeopercularis, +http://purl.obolibrary.org/obo/UBERON_3000649,anterior process of vomer, +http://purl.obolibrary.org/obo/UBERON_3000650,processus frontalis of maxilla, +http://purl.obolibrary.org/obo/UBERON_3000651,lamina anterior of maxilla, +http://purl.obolibrary.org/obo/UBERON_3000652,fossa maxillaris,maxillary saddle +http://purl.obolibrary.org/obo/UBERON_3000653,pars glenoidalis of quadratojugal, +http://purl.obolibrary.org/obo/UBERON_3000654,pars jugalis, +http://purl.obolibrary.org/obo/UBERON_3000655,processus dorsalis of lamella alaris, +http://purl.obolibrary.org/obo/UBERON_3000656,processus posterodorsalis of lamella alaris, +http://purl.obolibrary.org/obo/UBERON_3000657,dentigerous process, +http://purl.obolibrary.org/obo/UBERON_3000658,prechoanal process, +http://purl.obolibrary.org/obo/UBERON_3000659,postchoanal process, +http://purl.obolibrary.org/obo/UBERON_3000660,margo choanalis, +http://purl.obolibrary.org/obo/UBERON_3000661,crista vomeri, +http://purl.obolibrary.org/obo/UBERON_3000662,processus posterior of parasphenoid, +http://purl.obolibrary.org/obo/UBERON_3000663,parahyoid, +http://purl.obolibrary.org/obo/UBERON_3000664,hyoid plate, +http://purl.obolibrary.org/obo/UBERON_3000667,pars reuniens, +http://purl.obolibrary.org/obo/UBERON_3000668,hyoglossal sinus, +http://purl.obolibrary.org/obo/UBERON_3000670,anterior process of hyoid apparatus, +http://purl.obolibrary.org/obo/UBERON_3000671,anterolateral process of hyoid plate, +http://purl.obolibrary.org/obo/UBERON_3000672,posterolateral process, +http://purl.obolibrary.org/obo/UBERON_3000673,posteromedial process, +http://purl.obolibrary.org/obo/UBERON_3000676,bronchial process, +http://purl.obolibrary.org/obo/UBERON_3000677,lateral process of cricoid cartilage, +http://purl.obolibrary.org/obo/UBERON_3000678,esophageal process, +http://purl.obolibrary.org/obo/UBERON_3000680,manubrium of hyale, +http://purl.obolibrary.org/obo/UBERON_3000681,hyoid apparatus opening, +http://purl.obolibrary.org/obo/UBERON_3000683,sinus nervi hypoglossi, +http://purl.obolibrary.org/obo/UBERON_3000685,foramen nervi hypoglossi, +http://purl.obolibrary.org/obo/UBERON_3000687,processus confluens, +http://purl.obolibrary.org/obo/UBERON_3000688,prominentia apicalis dorsalis, +http://purl.obolibrary.org/obo/UBERON_3000689,prominentia apicalis ventralis, +http://purl.obolibrary.org/obo/UBERON_3000692,pedicel, +http://purl.obolibrary.org/obo/UBERON_3000694,atlantal cotyle, +http://purl.obolibrary.org/obo/UBERON_3000696,posterior intervertebral notch, +http://purl.obolibrary.org/obo/UBERON_3000701,intervertebral space, +http://purl.obolibrary.org/obo/UBERON_3000704,anterior intervertebral notch, +http://purl.obolibrary.org/obo/UBERON_3000707,pleurapophysis, +http://purl.obolibrary.org/obo/UBERON_3000711,procoelous, +http://purl.obolibrary.org/obo/UBERON_3000712,opisthocoelous, +http://purl.obolibrary.org/obo/UBERON_3000713,epichordal, +http://purl.obolibrary.org/obo/UBERON_3000714,perichordal, +http://purl.obolibrary.org/obo/UBERON_3000715,heterocoelous, +http://purl.obolibrary.org/obo/UBERON_3000716,acoelous, +http://purl.obolibrary.org/obo/UBERON_3000717,amphicoelous, +http://purl.obolibrary.org/obo/UBERON_3000718,ectochordal, +http://purl.obolibrary.org/obo/UBERON_3000719,holochordal, +http://purl.obolibrary.org/obo/UBERON_3000720,stegochordal, +http://purl.obolibrary.org/obo/UBERON_3000727,haemal arch lamina, +http://purl.obolibrary.org/obo/UBERON_3000728,nucal keel, +http://purl.obolibrary.org/obo/UBERON_3000730,foramen nutritium, +http://purl.obolibrary.org/obo/UBERON_3000735,mid-dorsal keel, +http://purl.obolibrary.org/obo/UBERON_3000743,sacral condyle, +http://purl.obolibrary.org/obo/UBERON_3000744,urostyle cotyle, +http://purl.obolibrary.org/obo/UBERON_3000745,webbing of bone in vertebral column, +http://purl.obolibrary.org/obo/UBERON_3000746,urostyle ridge, +http://purl.obolibrary.org/obo/UBERON_3000748,suprascapula, +http://purl.obolibrary.org/obo/UBERON_3000752,pars acromialis, +http://purl.obolibrary.org/obo/UBERON_3000753,pars glenoidalis of scapula,glenoid head of scapula +http://purl.obolibrary.org/obo/UBERON_3000755,pectoral girdle opening, +http://purl.obolibrary.org/obo/UBERON_3000756,crista dorsalis humeri, +http://purl.obolibrary.org/obo/UBERON_3000757,zonal area, +http://purl.obolibrary.org/obo/UBERON_3000759,omosternum, +http://purl.obolibrary.org/obo/UBERON_3000762,epicoracoid, +http://purl.obolibrary.org/obo/UBERON_3000763,epicoracoid bridge, +http://purl.obolibrary.org/obo/UBERON_3000767,pelvic girdle opening, +http://purl.obolibrary.org/obo/UBERON_3000771,acetabular depression, +http://purl.obolibrary.org/obo/UBERON_3000773,ilial ridge, +http://purl.obolibrary.org/obo/UBERON_3000774,ilial shaft, +http://purl.obolibrary.org/obo/UBERON_3000776,glenoid foramen, +http://purl.obolibrary.org/obo/UBERON_3000777,epicoracoid horn, +http://purl.obolibrary.org/obo/UBERON_3000778,supracoracoid foramen, +http://purl.obolibrary.org/obo/UBERON_3000779,pectoral fenestra, +http://purl.obolibrary.org/obo/UBERON_3000780,incisura coracoidea, +http://purl.obolibrary.org/obo/UBERON_3000783,fovea capitis of humerus, +http://purl.obolibrary.org/obo/UBERON_3000784,ulnar condyle, +http://purl.obolibrary.org/obo/UBERON_3000785,trochlear groove of humerus,trochlear sulcus of humerus +http://purl.obolibrary.org/obo/UBERON_3000786,fossa cubitalis ventralis, +http://purl.obolibrary.org/obo/UBERON_3000787,collum antibrachii, +http://purl.obolibrary.org/obo/UBERON_3000792,anterior ramus of cleithrum, +http://purl.obolibrary.org/obo/UBERON_3000793,anomocoelous, +http://purl.obolibrary.org/obo/UBERON_3000794,displasiocoelous, +http://purl.obolibrary.org/obo/UBERON_3000796,imbricate neural arch, +http://purl.obolibrary.org/obo/UBERON_3000797,non-imbricate neural arch, +http://purl.obolibrary.org/obo/UBERON_3000798,presacral shield, +http://purl.obolibrary.org/obo/UBERON_3000799,cartilago paraglenoidalis, +http://purl.obolibrary.org/obo/UBERON_3000800,intercotylar space, +http://purl.obolibrary.org/obo/UBERON_3000801,caput glenoidale, +http://purl.obolibrary.org/obo/UBERON_3000802,fossa glenoidalis, +http://purl.obolibrary.org/obo/UBERON_3000803,sulcus articularis lateralis, +http://purl.obolibrary.org/obo/UBERON_3000804,sulcus articularis medialis, +http://purl.obolibrary.org/obo/UBERON_3000805,carina proximalis, +http://purl.obolibrary.org/obo/UBERON_3000806,carina medialis, +http://purl.obolibrary.org/obo/UBERON_3000807,carina distalis, +http://purl.obolibrary.org/obo/UBERON_3000808,parasagittal processes, +http://purl.obolibrary.org/obo/UBERON_3000809,accessory articulation, +http://purl.obolibrary.org/obo/UBERON_3000810,fissura sagittalis, +http://purl.obolibrary.org/obo/UBERON_3000811,glenoid end of clavicle, +http://purl.obolibrary.org/obo/UBERON_3000813,sulcus pro cartilagine praecoracoidealis, +http://purl.obolibrary.org/obo/UBERON_3000814,glenoid head of coracoid, +http://purl.obolibrary.org/obo/UBERON_3000815,sternal head of coracoid, +http://purl.obolibrary.org/obo/UBERON_3000816,margo fenestralis, +http://purl.obolibrary.org/obo/UBERON_3000817,margo posterior, +http://purl.obolibrary.org/obo/UBERON_3000818,margo anterior of scapula, +http://purl.obolibrary.org/obo/UBERON_3000819,margo clavicularis, +http://purl.obolibrary.org/obo/UBERON_3000820,margo posterior of scapula, +http://purl.obolibrary.org/obo/UBERON_3000821,margo suprascapularis, +http://purl.obolibrary.org/obo/UBERON_3000822,pars suprascapularis, +http://purl.obolibrary.org/obo/UBERON_3000823,sinus interglenoidalis, +http://purl.obolibrary.org/obo/UBERON_3000824,tenuitas cristaeformis, +http://purl.obolibrary.org/obo/UBERON_3000825,crista longitudinalis scapula, +http://purl.obolibrary.org/obo/UBERON_3000827,margo anterior of cleithrum, +http://purl.obolibrary.org/obo/UBERON_3000828,margo posterior of cleithrum, +http://purl.obolibrary.org/obo/UBERON_3000829,margo scapularis, +http://purl.obolibrary.org/obo/UBERON_3000830,margo vertebralis, +http://purl.obolibrary.org/obo/UBERON_3000831,spina acromioidea, +http://purl.obolibrary.org/obo/UBERON_3000832,anterior lamina recurvata, +http://purl.obolibrary.org/obo/UBERON_3000833,sinus dorsalis, +http://purl.obolibrary.org/obo/UBERON_3000834,posterior lamina recurvata, +http://purl.obolibrary.org/obo/UBERON_3000836,crista lateralis humeri, +http://purl.obolibrary.org/obo/UBERON_3000837,crista medialis humeri, +http://purl.obolibrary.org/obo/UBERON_3000839,crista radii, +http://purl.obolibrary.org/obo/UBERON_3000840,capitulum of radius, +http://purl.obolibrary.org/obo/UBERON_3000842,capitulum ulnae, +http://purl.obolibrary.org/obo/UBERON_3000844,sulcus longitudinalis, +http://purl.obolibrary.org/obo/UBERON_3000846,element Y of fore mesopodium, +http://purl.obolibrary.org/obo/UBERON_3000856,intercalary element of fore digit, +http://purl.obolibrary.org/obo/UBERON_3000859,foramen perforans carpi, +http://purl.obolibrary.org/obo/UBERON_3000862,pubo-ischium, +http://purl.obolibrary.org/obo/UBERON_3000865,epileon, +http://purl.obolibrary.org/obo/UBERON_3000866,agger limitans anterior of ilium, +http://purl.obolibrary.org/obo/UBERON_3000867,agger limitans anterior of ischium, +http://purl.obolibrary.org/obo/UBERON_3000869,ilial protuberance, +http://purl.obolibrary.org/obo/UBERON_3000870,preacetabular expansion, +http://purl.obolibrary.org/obo/UBERON_3000871,fossula tuberis superioris, +http://purl.obolibrary.org/obo/UBERON_3000872,collum ilei, +http://purl.obolibrary.org/obo/UBERON_3000873,pars cylindriformis ilei, +http://purl.obolibrary.org/obo/UBERON_3000874,crista ischii, +http://purl.obolibrary.org/obo/UBERON_3000875,spina pelvis posterior, +http://purl.obolibrary.org/obo/UBERON_3000876,spina pelvis anterior, +http://purl.obolibrary.org/obo/UBERON_3000877,intumescentia bilateralis inferior, +http://purl.obolibrary.org/obo/UBERON_3000878,intumescentia bilateralis superior, +http://purl.obolibrary.org/obo/UBERON_3000879,incisura terminalis, +http://purl.obolibrary.org/obo/UBERON_3000880,crista hypertrophica ischium, +http://purl.obolibrary.org/obo/UBERON_3000882,interilial region, +http://purl.obolibrary.org/obo/UBERON_3000883,recessus coccygealis, +http://purl.obolibrary.org/obo/UBERON_3000884,epipubis, +http://purl.obolibrary.org/obo/UBERON_3000886,ypsiloid cartilage, +http://purl.obolibrary.org/obo/UBERON_3000894,femoral ridge, +http://purl.obolibrary.org/obo/UBERON_3000896,foveal depression, +http://purl.obolibrary.org/obo/UBERON_3000898,trochanteric crest, +http://purl.obolibrary.org/obo/UBERON_3000903,tibial crest, +http://purl.obolibrary.org/obo/UBERON_3000904,apophysis distalis of tibiofibula, +http://purl.obolibrary.org/obo/UBERON_3000905,caput ossis cruris, +http://purl.obolibrary.org/obo/UBERON_3000906,sulcus pro musculo extensori cruris brevis, +http://purl.obolibrary.org/obo/UBERON_3000907,eminentia arcuata, +http://purl.obolibrary.org/obo/UBERON_3000908,sulcus distalis ossis cruris, +http://purl.obolibrary.org/obo/UBERON_3000909,sulcus proximalis ossis cruris, +http://purl.obolibrary.org/obo/UBERON_3000911,foramen nutritium exterius, +http://purl.obolibrary.org/obo/UBERON_3000915,spatium intertarsale, +http://purl.obolibrary.org/obo/UBERON_3000916,apophysis proximalis, +http://purl.obolibrary.org/obo/UBERON_3000917,apophysis distalis of tibiale fibulare, +http://purl.obolibrary.org/obo/UBERON_3000921,element Y of hind mesopodium, +http://purl.obolibrary.org/obo/UBERON_3000922,prehallux skeleton, +http://purl.obolibrary.org/obo/UBERON_3000931,intercalary element of hind digit, +http://purl.obolibrary.org/obo/UBERON_3000934,foramen perforans tarsi, +http://purl.obolibrary.org/obo/UBERON_3000936,zonal element, +http://purl.obolibrary.org/obo/UBERON_3000937,prezonal element, +http://purl.obolibrary.org/obo/UBERON_3000938,postzonal element, +http://purl.obolibrary.org/obo/UBERON_3000941,arciferal girdle, +http://purl.obolibrary.org/obo/UBERON_3000942,firmisternal girdle, +http://purl.obolibrary.org/obo/UBERON_3000943,pseudofirmisternal girdle, +http://purl.obolibrary.org/obo/UBERON_3000944,pseudoarciferal girdle, +http://purl.obolibrary.org/obo/UBERON_3000945,inscriptional rib, +http://purl.obolibrary.org/obo/UBERON_3000948,articular process, +http://purl.obolibrary.org/obo/UBERON_3000949,posterior ramus of cleithrum, +http://purl.obolibrary.org/obo/UBERON_3000950,os triangulare, +http://purl.obolibrary.org/obo/UBERON_3000951,anterior radial, +http://purl.obolibrary.org/obo/UBERON_3000952,posterior radial, +http://purl.obolibrary.org/obo/UBERON_3000953,ceratobranchials II--IV, +http://purl.obolibrary.org/obo/UBERON_3000954,hypobranchial I, +http://purl.obolibrary.org/obo/UBERON_3000955,ceratobranchial I, +http://purl.obolibrary.org/obo/UBERON_3000956,hypobranchial II, +http://purl.obolibrary.org/obo/UBERON_3000961,external integument structure, +http://purl.obolibrary.org/obo/UBERON_3000965,basale commune (carpal), +http://purl.obolibrary.org/obo/UBERON_3000966,angulosplenial, +http://purl.obolibrary.org/obo/UBERON_3000972,head external integument structure, +http://purl.obolibrary.org/obo/UBERON_3000977,body external integument structure, +http://purl.obolibrary.org/obo/UBERON_3000981,limb external integument structure, +http://purl.obolibrary.org/obo/UBERON_3000982,tail external integument structure, +http://purl.obolibrary.org/obo/UBERON_3000989,pectoral fold, +http://purl.obolibrary.org/obo/UBERON_3000991,dorsal folds, +http://purl.obolibrary.org/obo/UBERON_3000993,otic and occipital, +http://purl.obolibrary.org/obo/UBERON_3000994,longitudinal dorsal folds, +http://purl.obolibrary.org/obo/UBERON_3000995,transversal dorsal folds, +http://purl.obolibrary.org/obo/UBERON_3000998,suprarostral cartilage, +http://purl.obolibrary.org/obo/UBERON_3000999,dorsal pouch, +http://purl.obolibrary.org/obo/UBERON_3001002,basale commune (tarsal), +http://purl.obolibrary.org/obo/UBERON_3001003,cloacal fold, +http://purl.obolibrary.org/obo/UBERON_3001005,dorsolateral fold, +http://purl.obolibrary.org/obo/UBERON_3001007,body granules, +http://purl.obolibrary.org/obo/UBERON_3001008,body wart, +http://purl.obolibrary.org/obo/UBERON_3001009,body spicule, +http://purl.obolibrary.org/obo/UBERON_3001010,body tubercle, +http://purl.obolibrary.org/obo/UBERON_3010006,dorsal skin texture, +http://purl.obolibrary.org/obo/UBERON_3010007,pit organ, +http://purl.obolibrary.org/obo/UBERON_3010010,ventral skin texture, +http://purl.obolibrary.org/obo/UBERON_3010011,axillary glands, +http://purl.obolibrary.org/obo/UBERON_3010013,larval chondrocranium, +http://purl.obolibrary.org/obo/UBERON_3010014,inguinal glands, +http://purl.obolibrary.org/obo/UBERON_3010018,M. glutaeus magnus, +http://purl.obolibrary.org/obo/UBERON_3010021,dorsal glands, +http://purl.obolibrary.org/obo/UBERON_3010022,M. tensor fasciae latae, +http://purl.obolibrary.org/obo/UBERON_3010027,M. sartorius, +http://purl.obolibrary.org/obo/UBERON_3010031,ventral glands, +http://purl.obolibrary.org/obo/UBERON_3010032,M. semitendinosus, +http://purl.obolibrary.org/obo/UBERON_3010039,protandrous hermaphroditic organism, +http://purl.obolibrary.org/obo/UBERON_3010042,protogynous hermaphroditic organism, +http://purl.obolibrary.org/obo/UBERON_3010044,dorsal crest, +http://purl.obolibrary.org/obo/UBERON_3010045,centrale 1, +http://purl.obolibrary.org/obo/UBERON_3010047,M. quadratus femoris, +http://purl.obolibrary.org/obo/UBERON_3010049,M. gemellus, +http://purl.obolibrary.org/obo/UBERON_3010058,dermal annular fold,caecilian annulus +http://purl.obolibrary.org/obo/UBERON_3010060,centrale (fore), +http://purl.obolibrary.org/obo/UBERON_3010061,anterior quadratocranial commissure, +http://purl.obolibrary.org/obo/UBERON_3010065,M. gracilis major, +http://purl.obolibrary.org/obo/UBERON_3010067,M. gracilis minor, +http://purl.obolibrary.org/obo/UBERON_3010068,M. semimembranosus, +http://purl.obolibrary.org/obo/UBERON_3010069,intermedium (fore), +http://purl.obolibrary.org/obo/UBERON_3010070,M. ileo-fibularis, +http://purl.obolibrary.org/obo/UBERON_3010071,cranial crest, +http://purl.obolibrary.org/obo/UBERON_3010072,M. pyriformis, +http://purl.obolibrary.org/obo/UBERON_3010073,centrale 2, +http://purl.obolibrary.org/obo/UBERON_3010074,M. ileo-femoralis, +http://purl.obolibrary.org/obo/UBERON_3010075,tympanic fold, +http://purl.obolibrary.org/obo/UBERON_3010076,M. iliacus internus, +http://purl.obolibrary.org/obo/UBERON_3010078,M. iliacus externus, +http://purl.obolibrary.org/obo/UBERON_3010079,upper eyelid protuberances, +http://purl.obolibrary.org/obo/UBERON_3010080,snout protuberances, +http://purl.obolibrary.org/obo/UBERON_3010081,interorbital fold, +http://purl.obolibrary.org/obo/UBERON_3010082,M. pulmonum proprius, +http://purl.obolibrary.org/obo/UBERON_3010084,M. tibialis posticus, +http://purl.obolibrary.org/obo/UBERON_3010085,postrictal protuberances, +http://purl.obolibrary.org/obo/UBERON_3010087,M. tibialis anticus longus, +http://purl.obolibrary.org/obo/UBERON_3010089,M. extensor cruris brevis, +http://purl.obolibrary.org/obo/UBERON_3010090,M. tibialis anticus brevis, +http://purl.obolibrary.org/obo/UBERON_3010091,upper lip protuberances, +http://purl.obolibrary.org/obo/UBERON_3010092,basitrabecular process, +http://purl.obolibrary.org/obo/UBERON_3010093,villosities, +http://purl.obolibrary.org/obo/UBERON_3010094,quadratoethmoid process, +http://purl.obolibrary.org/obo/UBERON_3010096,vocal sac, +http://purl.obolibrary.org/obo/UBERON_3010097,M. tarsalis posticus, +http://purl.obolibrary.org/obo/UBERON_3010098,M. plantaris profundus, +http://purl.obolibrary.org/obo/UBERON_3010100,mental gland, +http://purl.obolibrary.org/obo/UBERON_3010103,vocal sac glands, +http://purl.obolibrary.org/obo/UBERON_3010104,pectoral glands, +http://purl.obolibrary.org/obo/UBERON_3010105,anterodorsal lateral line nerve (ADLLN), +http://purl.obolibrary.org/obo/UBERON_3010106,tympanic papilla, +http://purl.obolibrary.org/obo/UBERON_3010109,anteroventral lateral line nerve (AVLLN), +http://purl.obolibrary.org/obo/UBERON_3010115,posterior lateral line nerve (PLLN), +http://purl.obolibrary.org/obo/UBERON_3010118,quadrato-orbital commissure, +http://purl.obolibrary.org/obo/UBERON_3010123,finger fringes, +http://purl.obolibrary.org/obo/UBERON_3010124,toe fringes, +http://purl.obolibrary.org/obo/UBERON_3010125,musculus levator bulbi, +http://purl.obolibrary.org/obo/UBERON_3010126,middle lateral line nerve (MLLN), +http://purl.obolibrary.org/obo/UBERON_3010127,fringe on postaxial edge of finger IV, +http://purl.obolibrary.org/obo/UBERON_3010128,taeniae tecti marginalis, +http://purl.obolibrary.org/obo/UBERON_3010130,taenia tecti transversalis, +http://purl.obolibrary.org/obo/UBERON_3010131,orbital cartilages, +http://purl.obolibrary.org/obo/UBERON_3010132,taenia tecti medialis, +http://purl.obolibrary.org/obo/UBERON_3010136,M. cruralis, +http://purl.obolibrary.org/obo/UBERON_3010138,trabecular horn, +http://purl.obolibrary.org/obo/UBERON_3010142,occipital arch, +http://purl.obolibrary.org/obo/UBERON_3010144,odontoids, +http://purl.obolibrary.org/obo/UBERON_3010146,lacrimal, +http://purl.obolibrary.org/obo/UBERON_3010163,metacarpal fold, +http://purl.obolibrary.org/obo/UBERON_3010164,ulnar fold, +http://purl.obolibrary.org/obo/UBERON_3010166,fringe on postaxial edge of toe V, +http://purl.obolibrary.org/obo/UBERON_3010167,metatarsal fold, +http://purl.obolibrary.org/obo/UBERON_3010168,tarsal fringe, +http://purl.obolibrary.org/obo/UBERON_3010170,ungual flap, +http://purl.obolibrary.org/obo/UBERON_3010172,subarticular tubercles, +http://purl.obolibrary.org/obo/UBERON_3010173,supernumerary tubercles, +http://purl.obolibrary.org/obo/UBERON_3010175,circumferential groove, +http://purl.obolibrary.org/obo/UBERON_3010178,finger glands, +http://purl.obolibrary.org/obo/UBERON_3010179,web glands, +http://purl.obolibrary.org/obo/UBERON_3010181,humeral glands, +http://purl.obolibrary.org/obo/UBERON_3010182,tibial glands, +http://purl.obolibrary.org/obo/UBERON_3010183,femoral glands, +http://purl.obolibrary.org/obo/UBERON_3010184,inner metatarsal tubercle, +http://purl.obolibrary.org/obo/UBERON_3010186,outer metatarsal tubercle, +http://purl.obolibrary.org/obo/UBERON_3010187,inner metacarpal tubercle, +http://purl.obolibrary.org/obo/UBERON_3010188,outer metacarpal tubercle, +http://purl.obolibrary.org/obo/UBERON_3010189,ulnar protuberances, +http://purl.obolibrary.org/obo/UBERON_3010190,tibial protuberances, +http://purl.obolibrary.org/obo/UBERON_3010191,calcar anterior, +http://purl.obolibrary.org/obo/UBERON_3010192,calcar posterior, +http://purl.obolibrary.org/obo/UBERON_3010193,prepollical protuberances, +http://purl.obolibrary.org/obo/UBERON_3010194,mediale, +http://purl.obolibrary.org/obo/UBERON_3010195,lateral appendix, +http://purl.obolibrary.org/obo/UBERON_3010197,lateral recess, +http://purl.obolibrary.org/obo/UBERON_3010200,vasculature of respiratory integument, +http://purl.obolibrary.org/obo/UBERON_3010201,dorsal tail tubercle, +http://purl.obolibrary.org/obo/UBERON_3010202,tail base gland, +http://purl.obolibrary.org/obo/UBERON_3010203,dorsal tail fin, +http://purl.obolibrary.org/obo/UBERON_3010204,ventral tail fin, +http://purl.obolibrary.org/obo/UBERON_3010205,postminimus, +http://purl.obolibrary.org/obo/UBERON_3010209,keratinous claw, +http://purl.obolibrary.org/obo/UBERON_3010226,postiliac glands, +http://purl.obolibrary.org/obo/UBERON_3010227,costal protuberances, +http://purl.obolibrary.org/obo/UBERON_3010229,costal grooves, +http://purl.obolibrary.org/obo/UBERON_3010231,costal folds, +http://purl.obolibrary.org/obo/UBERON_3010235,nuchal groove, +http://purl.obolibrary.org/obo/UBERON_3010239,subocular groove, +http://purl.obolibrary.org/obo/UBERON_3010240,Nobelian rod, +http://purl.obolibrary.org/obo/UBERON_3010241,labial fold, +http://purl.obolibrary.org/obo/UBERON_3010242,nasolabial groove, +http://purl.obolibrary.org/obo/UBERON_3010243,ventricular musculature, +http://purl.obolibrary.org/obo/UBERON_3010259,phallodeum, +http://purl.obolibrary.org/obo/UBERON_3010260,intromittent organ (Ascaphus type), +http://purl.obolibrary.org/obo/UBERON_3010262,capitulum of radio-ulna, +http://purl.obolibrary.org/obo/UBERON_3010303,fasciculated network of fibrils, +http://purl.obolibrary.org/obo/UBERON_3010328,equatorial belt, +http://purl.obolibrary.org/obo/UBERON_3010377,unicellular gland, +http://purl.obolibrary.org/obo/UBERON_3010379,inner fin tissue, +http://purl.obolibrary.org/obo/UBERON_3010380,outer fin tissue, +http://purl.obolibrary.org/obo/UBERON_3010392,mesonephric early proximal tubule, +http://purl.obolibrary.org/obo/UBERON_3010393,mesonephric late distal segment,DT1 +http://purl.obolibrary.org/obo/UBERON_3010394,mesonephric late proximal tubule,PT3 +http://purl.obolibrary.org/obo/UBERON_3010394,mesonephric late proximal tubule,late proximal segment +http://purl.obolibrary.org/obo/UBERON_3010394,mesonephric late proximal tubule,proximal tubule 3 +http://purl.obolibrary.org/obo/UBERON_3010404,capillary system of liver,liver capillary +http://purl.obolibrary.org/obo/UBERON_3010413,left channel of ventral aorta, +http://purl.obolibrary.org/obo/UBERON_3010417,posterior palatine artery, +http://purl.obolibrary.org/obo/UBERON_3010423,larval aorta, +http://purl.obolibrary.org/obo/UBERON_3010424,right channel of ventral aorta, +http://purl.obolibrary.org/obo/UBERON_3010431,archenteron floor, +http://purl.obolibrary.org/obo/UBERON_3010432,archenteron roof,gastrocoel roof +http://purl.obolibrary.org/obo/UBERON_3010436,blastocoel roof, +http://purl.obolibrary.org/obo/UBERON_3010437,post-anal gut, +http://purl.obolibrary.org/obo/UBERON_3010447,M. extensor digitorum communis longus, +http://purl.obolibrary.org/obo/UBERON_3010449,dorsal marginal zone,DMZ +http://purl.obolibrary.org/obo/UBERON_3010450,dorso-lateral marginal zone, +http://purl.obolibrary.org/obo/UBERON_3010451,involuting marginal zone, +http://purl.obolibrary.org/obo/UBERON_3010452,non-involuting marginal zone, +http://purl.obolibrary.org/obo/UBERON_3010453,ventral marginal zone,VMZ +http://purl.obolibrary.org/obo/UBERON_3010454,ventro-lateral marginal zone, +http://purl.obolibrary.org/obo/UBERON_3010455,blastopore lip, +http://purl.obolibrary.org/obo/UBERON_3010456,lower blastopore lip, +http://purl.obolibrary.org/obo/UBERON_3010457,upper blastopore lip, +http://purl.obolibrary.org/obo/UBERON_3010458,suprarostral ala, +http://purl.obolibrary.org/obo/UBERON_3010463,animal cap, +http://purl.obolibrary.org/obo/UBERON_3010464,animal cap inner layer, +http://purl.obolibrary.org/obo/UBERON_3010465,animal cap outer layer, +http://purl.obolibrary.org/obo/UBERON_3010489,muscular artery, +http://purl.obolibrary.org/obo/UBERON_3010494,lateral pretrosal artery, +http://purl.obolibrary.org/obo/UBERON_3010496,mandibular artery, +http://purl.obolibrary.org/obo/UBERON_3010498,cutaneus artery, +http://purl.obolibrary.org/obo/UBERON_3010499,coeliaco-mesenteric artery, +http://purl.obolibrary.org/obo/UBERON_3010500,gastrico-linealis, +http://purl.obolibrary.org/obo/UBERON_3010501,duodeno-pancreatic artery, +http://purl.obolibrary.org/obo/UBERON_3010502,duodeno-hepatic artery, +http://purl.obolibrary.org/obo/UBERON_3010503,oviduct artery, +http://purl.obolibrary.org/obo/UBERON_3010506,postcaval vein, +http://purl.obolibrary.org/obo/UBERON_3010507,precaval vein, +http://purl.obolibrary.org/obo/UBERON_3010515,lateral vein, +http://purl.obolibrary.org/obo/UBERON_3010516,cutaneus magnus, +http://purl.obolibrary.org/obo/UBERON_3010517,ventral abdominal vein, +http://purl.obolibrary.org/obo/UBERON_3010519,Jacobson's vein, +http://purl.obolibrary.org/obo/UBERON_3010520,oviducal vein, +http://purl.obolibrary.org/obo/UBERON_3010523,M. plantaris longus, +http://purl.obolibrary.org/obo/UBERON_3010524,bronchial tube, +http://purl.obolibrary.org/obo/UBERON_3010525,frontoparietal fenestra, +http://purl.obolibrary.org/obo/UBERON_3010528,articular process of palatoquadrate, +http://purl.obolibrary.org/obo/UBERON_3010529,ovisac, +http://purl.obolibrary.org/obo/UBERON_3010541,median pars intermedia, +http://purl.obolibrary.org/obo/UBERON_3010557,triangular process, +http://purl.obolibrary.org/obo/UBERON_3010558,quadrato-ethmoid ligament, +http://purl.obolibrary.org/obo/UBERON_3010559,retroarticular process of the palatoquadrate, +http://purl.obolibrary.org/obo/UBERON_3010560,anterior process of the palatoquadrate, +http://purl.obolibrary.org/obo/UBERON_3010562,suboccular foramen, +http://purl.obolibrary.org/obo/UBERON_3010563,craniopalatine foramen, +http://purl.obolibrary.org/obo/UBERON_3010564,carotid foramen, +http://purl.obolibrary.org/obo/UBERON_3010565,pila preoptica, +http://purl.obolibrary.org/obo/UBERON_3010566,prootic foramen, +http://purl.obolibrary.org/obo/UBERON_3010576,prenasal (amphibians), +http://purl.obolibrary.org/obo/UBERON_3010583,basibranchial I, +http://purl.obolibrary.org/obo/UBERON_3010584,mandibular arch neural crest, +http://purl.obolibrary.org/obo/UBERON_3010585,basibranchial II, +http://purl.obolibrary.org/obo/UBERON_3010586,vasa efferentia, +http://purl.obolibrary.org/obo/UBERON_3010587,hyoid arch neural crest, +http://purl.obolibrary.org/obo/UBERON_3010589,cloacal papilla, +http://purl.obolibrary.org/obo/UBERON_3010590,amphibian cloacal gland, +http://purl.obolibrary.org/obo/UBERON_3010599,stratum spongiosum, +http://purl.obolibrary.org/obo/UBERON_3010602,granular gland, +http://purl.obolibrary.org/obo/UBERON_3010603,body gland, +http://purl.obolibrary.org/obo/UBERON_3010604,cranial glands, +http://purl.obolibrary.org/obo/UBERON_3010606,limb gland, +http://purl.obolibrary.org/obo/UBERON_3010613,laryngo-tracheal chamber, +http://purl.obolibrary.org/obo/UBERON_3010614,cartilago lateralis of aryngo-tracheal chamber, +http://purl.obolibrary.org/obo/UBERON_3010618,constrictor laryngis externus, +http://purl.obolibrary.org/obo/UBERON_3010620,dilatator laryngis, +http://purl.obolibrary.org/obo/UBERON_3010621,constrictor laryngis anterior, +http://purl.obolibrary.org/obo/UBERON_3010624,subarticular sesamoid, +http://purl.obolibrary.org/obo/UBERON_3010636,egg capsule, +http://purl.obolibrary.org/obo/UBERON_3010650,cephalodorsosubpharyngeus, +http://purl.obolibrary.org/obo/UBERON_3010651,levator bulbi, +http://purl.obolibrary.org/obo/UBERON_3010652,ramus nasalis lateralis, +http://purl.obolibrary.org/obo/UBERON_3010653,ramus nasalis medialis, +http://purl.obolibrary.org/obo/UBERON_3010654,rectus cervicis, +http://purl.obolibrary.org/obo/UBERON_3010657,subhyoideus, +http://purl.obolibrary.org/obo/UBERON_3010659,subarcualis rectus I, +http://purl.obolibrary.org/obo/UBERON_3010661,ramus nasalis internus, +http://purl.obolibrary.org/obo/UBERON_3010664,m. intertransversarius capitus superior, +http://purl.obolibrary.org/obo/UBERON_3010665,ramule palatinus, +http://purl.obolibrary.org/obo/UBERON_3010667,m. intertransversarius capitis inferior, +http://purl.obolibrary.org/obo/UBERON_3010668,ramules cutaneous, +http://purl.obolibrary.org/obo/UBERON_3010669,trunk maxillary-mandibularis, +http://purl.obolibrary.org/obo/UBERON_3010671,ramule palatonasalis, +http://purl.obolibrary.org/obo/UBERON_3010673,m. rhomboideus anterior, +http://purl.obolibrary.org/obo/UBERON_3010675,bony nodule of terminal phalanx of hind digit, +http://purl.obolibrary.org/obo/UBERON_3010682,proximal-most prepollical element, +http://purl.obolibrary.org/obo/UBERON_3010683,distal-most prepollical element, +http://purl.obolibrary.org/obo/UBERON_3010684,proximal-most prehallical element, +http://purl.obolibrary.org/obo/UBERON_3010685,distal-most prehallical element, +http://purl.obolibrary.org/obo/UBERON_3010690,fetal tooth,fetal teeth +http://purl.obolibrary.org/obo/UBERON_3010691,m. opercularis, +http://purl.obolibrary.org/obo/UBERON_3010692,m. cucullaris, +http://purl.obolibrary.org/obo/UBERON_3010693,ramus posterior profundus of V3, +http://purl.obolibrary.org/obo/UBERON_3010694,m. rhomboideus posterior, +http://purl.obolibrary.org/obo/UBERON_3010695,m. serratus superior, +http://purl.obolibrary.org/obo/UBERON_3010698,m. serratus medius, +http://purl.obolibrary.org/obo/UBERON_3010699,m. serratus inferior, +http://purl.obolibrary.org/obo/UBERON_3010700,levator mandibulae externus, +http://purl.obolibrary.org/obo/UBERON_3010701,m. latissimus dorsi, +http://purl.obolibrary.org/obo/UBERON_3010704,levator mandibulae longus, +http://purl.obolibrary.org/obo/UBERON_3010706,lateral line nucleus, +http://purl.obolibrary.org/obo/UBERON_3010707,m. dorsalis scapulae, +http://purl.obolibrary.org/obo/UBERON_3010708,levator mandibulae articularis, +http://purl.obolibrary.org/obo/UBERON_3010709,levator mandibulae lateralis, +http://purl.obolibrary.org/obo/UBERON_3010710,m. interscapularis, +http://purl.obolibrary.org/obo/UBERON_3010711,levator mandibulae externus superficialis, +http://purl.obolibrary.org/obo/UBERON_3010712,levator mandibulae externus profundus, +http://purl.obolibrary.org/obo/UBERON_3010713,m. sternoepicoracoideus, +http://purl.obolibrary.org/obo/UBERON_3010719,dilated medial process of metacarpal IV, +http://purl.obolibrary.org/obo/UBERON_3010720,ramus hyomandibularis, +http://purl.obolibrary.org/obo/UBERON_3010721,limb villosities, +http://purl.obolibrary.org/obo/UBERON_3010722,ramus palatinus, +http://purl.obolibrary.org/obo/UBERON_3010724,levator quadrati, +http://purl.obolibrary.org/obo/UBERON_3010725,M. coracoradialis, +http://purl.obolibrary.org/obo/UBERON_3010726,ramus muscularis of glossopharyngeus nerve, +http://purl.obolibrary.org/obo/UBERON_3010728,otic opercular element,otic operculum +http://purl.obolibrary.org/obo/UBERON_3010729,M. coracobrachialis longus, +http://purl.obolibrary.org/obo/UBERON_3010731,M. coracobrachialis brevis, +http://purl.obolibrary.org/obo/UBERON_3010734,M. flexor carpi ulnaris, +http://purl.obolibrary.org/obo/UBERON_3010735,ramus anterior of CN VIII, +http://purl.obolibrary.org/obo/UBERON_3010736,ramus posterior of CN VIII, +http://purl.obolibrary.org/obo/UBERON_3010737,M. palmaris longus, +http://purl.obolibrary.org/obo/UBERON_3010738,M. palmaris profundis, +http://purl.obolibrary.org/obo/UBERON_3010739,M. flexor antibrachii medialis, +http://purl.obolibrary.org/obo/UBERON_3010740,ramus auricularis of the vagus nerve, +http://purl.obolibrary.org/obo/UBERON_3010741,M. ulnocarpalis, +http://purl.obolibrary.org/obo/UBERON_3010742,interhyoideus posterior, +http://purl.obolibrary.org/obo/UBERON_3010743,M. flexor antibrachii lateralis superficialis, +http://purl.obolibrary.org/obo/UBERON_3010744,M. flexor antibrachii lateralis profundus, +http://purl.obolibrary.org/obo/UBERON_3010745,M. coccygeosacralis, +http://purl.obolibrary.org/obo/UBERON_3010746,T-shaped terminal phalanx, +http://purl.obolibrary.org/obo/UBERON_3010747,submentalis, +http://purl.obolibrary.org/obo/UBERON_3010748,M. coccygeoiliacus, +http://purl.obolibrary.org/obo/UBERON_3010749,M. iliolumbaris, +http://purl.obolibrary.org/obo/UBERON_3010750,descending branch of the vagus nerve, +http://purl.obolibrary.org/obo/UBERON_3010751,ramus muscularis of vagus nerve, +http://purl.obolibrary.org/obo/UBERON_3010754,ramus recurrens, +http://purl.obolibrary.org/obo/UBERON_3010757,ramus superficial ophthalmic, +http://purl.obolibrary.org/obo/UBERON_3010758,M. coccygeocutaneus, +http://purl.obolibrary.org/obo/UBERON_3010759,ramus buccal, +http://purl.obolibrary.org/obo/UBERON_3010764,laryngeus ventralis, +http://purl.obolibrary.org/obo/UBERON_3010765,ramus mandibularis externus, +http://purl.obolibrary.org/obo/UBERON_3010770,dorsal sympathetic chain, +http://purl.obolibrary.org/obo/UBERON_3010771,ventral sympathetic chain, +http://purl.obolibrary.org/obo/UBERON_3010772,M. dorsalis trunci, +http://purl.obolibrary.org/obo/UBERON_3010778,jugal ramule, +http://purl.obolibrary.org/obo/UBERON_3010780,pars recta, +http://purl.obolibrary.org/obo/UBERON_3010781,pars convoluta of oviduct, +http://purl.obolibrary.org/obo/UBERON_3010783,m. oblique externus, +http://purl.obolibrary.org/obo/UBERON_3010784,m. oblique internus, +http://purl.obolibrary.org/obo/UBERON_3010785,m. transversus, +http://purl.obolibrary.org/obo/UBERON_3010786,pars subvertebralis, +http://purl.obolibrary.org/obo/UBERON_3010787,pars transversalis, +http://purl.obolibrary.org/obo/UBERON_3010790,muscle rectus abdominis superficialis, +http://purl.obolibrary.org/obo/UBERON_3010792,musculus rectus abdominis profundus, +http://purl.obolibrary.org/obo/UBERON_3010793,m. ypsiloideus anterior, +http://purl.obolibrary.org/obo/UBERON_3010794,oral ramule, +http://purl.obolibrary.org/obo/UBERON_3010795,preopercular ramule, +http://purl.obolibrary.org/obo/UBERON_3010796,ramus supraotic, +http://purl.obolibrary.org/obo/UBERON_3010797,m. ypsiloideus posterior, +http://purl.obolibrary.org/obo/UBERON_3010798,ramulus suprabranchialis anterior, +http://purl.obolibrary.org/obo/UBERON_3010799,ramulus suprabranchialis posterior, +http://purl.obolibrary.org/obo/UBERON_3010801,ramus lateral, +http://purl.obolibrary.org/obo/UBERON_3010802,courtship gland, +http://purl.obolibrary.org/obo/UBERON_3010804,ramus ventral, +http://purl.obolibrary.org/obo/UBERON_3010813,vent glands, +http://purl.obolibrary.org/obo/UBERON_3010815,m. flexor indicis superficialis proprius, +http://purl.obolibrary.org/obo/UBERON_3010818,hepatic peritoneum, +http://purl.obolibrary.org/obo/UBERON_3010819,gastrointestinal peritoneum, +http://purl.obolibrary.org/obo/UBERON_3010820,suboccular arch, +http://purl.obolibrary.org/obo/UBERON_3010821,hyoquadrate process, +http://purl.obolibrary.org/obo/UBERON_3010824,processus triangularis of palatoquadrate cartilage, +http://purl.obolibrary.org/obo/UBERON_3010827,anterior prenasal cartilage, +http://purl.obolibrary.org/obo/UBERON_3010828,commissura terminales of hyoid apparatus, +http://purl.obolibrary.org/obo/UBERON_3010829,sulcus intermedius, +http://purl.obolibrary.org/obo/UBERON_3010830,spicule, +http://purl.obolibrary.org/obo/UBERON_3010831,occipito-petrosal,occipital-petrosal +http://purl.obolibrary.org/obo/UBERON_3010832,occipital segment, +http://purl.obolibrary.org/obo/UBERON_3010836,posterolateral supplementary element, +http://purl.obolibrary.org/obo/UBERON_3010837,apical supplementary element, +http://purl.obolibrary.org/obo/UBERON_3010838,anterolateral supplementary element, +http://purl.obolibrary.org/obo/UBERON_3011040,first pancreatic bud, +http://purl.obolibrary.org/obo/UBERON_3011120,early proximal tubule,PT2 +http://purl.obolibrary.org/obo/UBERON_3011121,late distal segment, +http://purl.obolibrary.org/obo/UBERON_4000003,permanent cartilage, +http://purl.obolibrary.org/obo/UBERON_4000013,mineralized skeletal tissue, +http://purl.obolibrary.org/obo/UBERON_4000020,mineralized extracellular matrix, +http://purl.obolibrary.org/obo/UBERON_4000028,integumentary papilla,scale papilla +http://purl.obolibrary.org/obo/UBERON_4000030,oropharyngeal papilla,oropharyngeal dental papilla +http://purl.obolibrary.org/obo/UBERON_4000051,lepidosteoid scale, +http://purl.obolibrary.org/obo/UBERON_4000052,ganoid scale, +http://purl.obolibrary.org/obo/UBERON_4000053,vacuolated notochordal tissue,notochord proper +http://purl.obolibrary.org/obo/UBERON_4000055,polypteroid scale,polypterid scale +http://purl.obolibrary.org/obo/UBERON_4000059,avascular GAG-rich matrix,avascular glycosaminoglycan-rich matrix +http://purl.obolibrary.org/obo/UBERON_4000059,avascular GAG-rich matrix,cartilage matrix +http://purl.obolibrary.org/obo/UBERON_4000059,avascular GAG-rich matrix,cartilage-like matrix +http://purl.obolibrary.org/obo/UBERON_4000070,elasmoid scale, +http://purl.obolibrary.org/obo/UBERON_4000074,palaeoniscoid scale,Palaeoniscus-type scale +http://purl.obolibrary.org/obo/UBERON_4000077,non-mineralized chondroid tissue, +http://purl.obolibrary.org/obo/UBERON_4000078,chondroid tissue,chondroid bone tissue +http://purl.obolibrary.org/obo/UBERON_4000080,keratin-based scale, +http://purl.obolibrary.org/obo/UBERON_4000081,cosmoid scale, +http://purl.obolibrary.org/obo/UBERON_4000086,secondary cartilage tissue, +http://purl.obolibrary.org/obo/UBERON_4000087,cosmine,cosmoid scale tissue +http://purl.obolibrary.org/obo/UBERON_4000088,mineralized cartilage tissue, +http://purl.obolibrary.org/obo/UBERON_4000090,integumentary skeleton, +http://purl.obolibrary.org/obo/UBERON_4000097,orthodentine, +http://purl.obolibrary.org/obo/UBERON_4000102,osteodentine, +http://purl.obolibrary.org/obo/UBERON_4000104,ganoine, +http://purl.obolibrary.org/obo/UBERON_4000105,limiting layer of elasmoid scale, +http://purl.obolibrary.org/obo/UBERON_4000106,vasodentine,vascular dentine +http://purl.obolibrary.org/obo/UBERON_4000107,elasmodine, +http://purl.obolibrary.org/obo/UBERON_4000108,non-mineralized hyaline cartilage tissue, +http://purl.obolibrary.org/obo/UBERON_4000109,mineralized hyaline cartilage tissue, +http://purl.obolibrary.org/obo/UBERON_4000115,mineralized bone tissue, +http://purl.obolibrary.org/obo/UBERON_4000118,cellular bone tissue, +http://purl.obolibrary.org/obo/UBERON_4000119,non-mineralized avascular GAG-rich matrix,non-mineralized cartilage +http://purl.obolibrary.org/obo/UBERON_4000120,mineralized avascular GAG-rich matrix, +http://purl.obolibrary.org/obo/UBERON_4000122,acellular bone tissue, +http://purl.obolibrary.org/obo/UBERON_4000123,odontode tissue, +http://purl.obolibrary.org/obo/UBERON_4000134,ossified tendon, +http://purl.obolibrary.org/obo/UBERON_4000138,ligamentous replacement element, +http://purl.obolibrary.org/obo/UBERON_4000146,transient cartilaginous element,endochondral replacement cartilage +http://purl.obolibrary.org/obo/UBERON_4000159,ossified ligament, +http://purl.obolibrary.org/obo/UBERON_4000160,anocleithrum,anocleithra +http://purl.obolibrary.org/obo/UBERON_4000162,median fin,nageoire impaire +http://purl.obolibrary.org/obo/UBERON_4000162,median fin,périssoptérygie +http://purl.obolibrary.org/obo/UBERON_4000163,anal fin,nageoire anale +http://purl.obolibrary.org/obo/UBERON_4000163,anal fin,proctoptère +http://purl.obolibrary.org/obo/UBERON_4000163,anal fin,proctoptérygie +http://purl.obolibrary.org/obo/UBERON_4000164,caudal fin,nageoire caudale +http://purl.obolibrary.org/obo/UBERON_4000164,caudal fin,uroptère +http://purl.obolibrary.org/obo/UBERON_4000164,caudal fin,uroptérygie +http://purl.obolibrary.org/obo/UBERON_4000166,anal fin skeleton, +http://purl.obolibrary.org/obo/UBERON_4000167,caudal fin skeleton, +http://purl.obolibrary.org/obo/UBERON_4000168,dorsal fin skeleton, +http://purl.obolibrary.org/obo/UBERON_4000170,median fin skeleton,axial fin skeleton +http://purl.obolibrary.org/obo/UBERON_4000170,median fin skeleton,unpaired fin skeleton +http://purl.obolibrary.org/obo/UBERON_4000171,scapular complex, +http://purl.obolibrary.org/obo/UBERON_4000172,lepidotrichium, +http://purl.obolibrary.org/obo/UBERON_4000173,pelvic fin lepidotrichium,pelvic fin lepidotrichia +http://purl.obolibrary.org/obo/UBERON_4000174,caudal fin lepidotrichium, +http://purl.obolibrary.org/obo/UBERON_4000175,pectoral fin lepidotrichium,pectoral fin lepidotrichia +http://purl.obolibrary.org/obo/UBERON_4000176,anal fin lepidotrichium,anal fin lepidotrichia +http://purl.obolibrary.org/obo/UBERON_4000177,dorsal fin lepidotrichium,dorsal fin lepidotrichia +http://purl.obolibrary.org/obo/UBERON_4000182,suprabranchial fin, +http://purl.obolibrary.org/obo/UBERON_4100000,skeletal element projection, +http://purl.obolibrary.org/obo/UBERON_4100003,articular surface, +http://purl.obolibrary.org/obo/UBERON_4100004,ischial peduncle, +http://purl.obolibrary.org/obo/UBERON_4100005,second phalanx, +http://purl.obolibrary.org/obo/UBERON_4100006,parasternal process,posterior stalk of intercalvicle +http://purl.obolibrary.org/obo/UBERON_4100006,parasternal process,posterior stem of interclavicle +http://purl.obolibrary.org/obo/UBERON_4100007,pectoral articular facet, +http://purl.obolibrary.org/obo/UBERON_4100009,pedal digit 7 phalanx, +http://purl.obolibrary.org/obo/UBERON_4100010,post-glenoid process, +http://purl.obolibrary.org/obo/UBERON_4100011,postacetabular buttress, +http://purl.obolibrary.org/obo/UBERON_4100012,postacetabular zone, +http://purl.obolibrary.org/obo/UBERON_4100013,postcoracoid, +http://purl.obolibrary.org/obo/UBERON_4100014,posterior dorsal fin, +http://purl.obolibrary.org/obo/UBERON_4100016,posterior process of ilium, +http://purl.obolibrary.org/obo/UBERON_4100100,parasphenoid flange, +http://purl.obolibrary.org/obo/UBERON_4100111,hemipenal sheath,hemipenial sheath +http://purl.obolibrary.org/obo/UBERON_4100111,hemipenal sheath,sheath of hemipenis +http://purl.obolibrary.org/obo/UBERON_4100112,radial facet, +http://purl.obolibrary.org/obo/UBERON_4100113,dermal intracranial joint, +http://purl.obolibrary.org/obo/UBERON_4100114,anterior distal condyle of femur, +http://purl.obolibrary.org/obo/UBERON_4100115,spiracular notch, +http://purl.obolibrary.org/obo/UBERON_4100116,posterior distal condyle of femur, +http://purl.obolibrary.org/obo/UBERON_4100117,presacral rib, +http://purl.obolibrary.org/obo/UBERON_4100118,trunk rib, +http://purl.obolibrary.org/obo/UBERON_4100119,extratemporal bone,postspiracular +http://purl.obolibrary.org/obo/UBERON_4100121,thagomizer, +http://purl.obolibrary.org/obo/UBERON_4200000,medial blade of ilium, +http://purl.obolibrary.org/obo/UBERON_4200001,postpubis, +http://purl.obolibrary.org/obo/UBERON_4200002,coracoid plate, +http://purl.obolibrary.org/obo/UBERON_4200003,archipterygial fin, +http://purl.obolibrary.org/obo/UBERON_4200004,intertrochanteric fossa, +http://purl.obolibrary.org/obo/UBERON_4200006,infraglenoid buttress, +http://purl.obolibrary.org/obo/UBERON_4200007,transverse pelvic ridge, +http://purl.obolibrary.org/obo/UBERON_4200008,inter-clavicle joint,interclavicle joint +http://purl.obolibrary.org/obo/UBERON_4200009,hypochordal lepidotrichium, +http://purl.obolibrary.org/obo/UBERON_4200010,ventral humeral ridge, +http://purl.obolibrary.org/obo/UBERON_4200011,pedal centrale, +http://purl.obolibrary.org/obo/UBERON_4200012,ectepicondylar flange, +http://purl.obolibrary.org/obo/UBERON_4200013,flexor surface, +http://purl.obolibrary.org/obo/UBERON_4200014,lateral tuber of ulna, +http://purl.obolibrary.org/obo/UBERON_4200015,inner digits of foot, +http://purl.obolibrary.org/obo/UBERON_4200016,postbranchial lamina, +http://purl.obolibrary.org/obo/UBERON_4200018,calcaneal tuber, +http://purl.obolibrary.org/obo/UBERON_4200019,preacetabular process, +http://purl.obolibrary.org/obo/UBERON_4200020,suprascapular fossa, +http://purl.obolibrary.org/obo/UBERON_4200021,astragalus-calcaneum unit, +http://purl.obolibrary.org/obo/UBERON_4200022,extracleithrum, +http://purl.obolibrary.org/obo/UBERON_4200023,anterior dorsal fin, +http://purl.obolibrary.org/obo/UBERON_4200025,ascending process of the astragalus, +http://purl.obolibrary.org/obo/UBERON_4200026,supraglenoid foramen, +http://purl.obolibrary.org/obo/UBERON_4200027,supraglenoid buttress, +http://purl.obolibrary.org/obo/UBERON_4200028,adductor blade, +http://purl.obolibrary.org/obo/UBERON_4200029,adductor crest, +http://purl.obolibrary.org/obo/UBERON_4200030,antitrochanter, +http://purl.obolibrary.org/obo/UBERON_4200031,caudalipuboischiotibialis, +http://purl.obolibrary.org/obo/UBERON_4200032,clavicle blade, +http://purl.obolibrary.org/obo/UBERON_4200033,cleithrum head, +http://purl.obolibrary.org/obo/UBERON_4200034,cnemial crest, +http://purl.obolibrary.org/obo/UBERON_4200036,internal trochanter, +http://purl.obolibrary.org/obo/UBERON_4200037,supinator process, +http://purl.obolibrary.org/obo/UBERON_4200038,subscapular fossa, +http://purl.obolibrary.org/obo/UBERON_4200039,supraacetabular buttress, +http://purl.obolibrary.org/obo/UBERON_4200040,acrocoracoid process, +http://purl.obolibrary.org/obo/UBERON_4200041,aponeurosis palmaris, +http://purl.obolibrary.org/obo/UBERON_4200042,brevis shelf, +http://purl.obolibrary.org/obo/UBERON_4200043,brevis fossa, +http://purl.obolibrary.org/obo/UBERON_4200044,articular surface for the calcaneum on the astragalus, +http://purl.obolibrary.org/obo/UBERON_4200045,articular surface for the astragalus on the calcaneum, +http://purl.obolibrary.org/obo/UBERON_4200046,astragalo-calcaneal canal, +http://purl.obolibrary.org/obo/UBERON_4200047,attachment site, +http://purl.obolibrary.org/obo/UBERON_4200048,bicipital crest,crista bicipitalis +http://purl.obolibrary.org/obo/UBERON_4200048,bicipital crest,crista tuberculi majoris +http://purl.obolibrary.org/obo/UBERON_4200049,cartilago sesamoides, +http://purl.obolibrary.org/obo/UBERON_4200050,cotyla, +http://purl.obolibrary.org/obo/UBERON_4200051,cotyloid notch, +http://purl.obolibrary.org/obo/UBERON_4200052,crista tibiofibularis, +http://purl.obolibrary.org/obo/UBERON_4200053,diphycercal tail,isocercal tail +http://purl.obolibrary.org/obo/UBERON_4200054,heterocercal tail, +http://purl.obolibrary.org/obo/UBERON_4200055,homocercal tail, +http://purl.obolibrary.org/obo/UBERON_4200056,hypocercal tail, +http://purl.obolibrary.org/obo/UBERON_4200060,ectepicondylar foramen, +http://purl.obolibrary.org/obo/UBERON_4200061,epicercal tail, +http://purl.obolibrary.org/obo/UBERON_4200062,epichordal lepidotrichium, +http://purl.obolibrary.org/obo/UBERON_4200063,ectocondylar tubercle, +http://purl.obolibrary.org/obo/UBERON_4200068,prepubic element, +http://purl.obolibrary.org/obo/UBERON_4200069,sternal keel,carina +http://purl.obolibrary.org/obo/UBERON_4200069,sternal keel,carina sterni +http://purl.obolibrary.org/obo/UBERON_4200069,sternal keel,crista sterni +http://purl.obolibrary.org/obo/UBERON_4200070,median fin spine, +http://purl.obolibrary.org/obo/UBERON_4200075,fin spine, +http://purl.obolibrary.org/obo/UBERON_4200076,trunk armor pectoral fenestra,trunk armour pectoral fenestra +http://purl.obolibrary.org/obo/UBERON_4200078,clavicular facet, +http://purl.obolibrary.org/obo/UBERON_4200079,dorsal iliac process, +http://purl.obolibrary.org/obo/UBERON_4200080,fibular crest, +http://purl.obolibrary.org/obo/UBERON_4200081,hypocleideum, +http://purl.obolibrary.org/obo/UBERON_4200083,postaxial centrale, +http://purl.obolibrary.org/obo/UBERON_4200084,preaxial centrale, +http://purl.obolibrary.org/obo/UBERON_4200086,iliac neck,neck of ilium +http://purl.obolibrary.org/obo/UBERON_4200087,iliac peduncle, +http://purl.obolibrary.org/obo/UBERON_4200088,iliac peduncle of the pubis, +http://purl.obolibrary.org/obo/UBERON_4200089,fibular facet of the calcaneum, +http://purl.obolibrary.org/obo/UBERON_4200090,fibular facet of the astragalus, +http://purl.obolibrary.org/obo/UBERON_4200091,ethomosphenoid region, +http://purl.obolibrary.org/obo/UBERON_4200092,flexor tubercle of ungual, +http://purl.obolibrary.org/obo/UBERON_4200093,guard scale, +http://purl.obolibrary.org/obo/UBERON_4200094,inner digits of hand, +http://purl.obolibrary.org/obo/UBERON_4200095,infraspinous process, +http://purl.obolibrary.org/obo/UBERON_4200096,intercondylar fossa,femoral groove +http://purl.obolibrary.org/obo/UBERON_4200096,intercondylar fossa,femoral sulcus +http://purl.obolibrary.org/obo/UBERON_4200096,intercondylar fossa,femoropatellar groove +http://purl.obolibrary.org/obo/UBERON_4200096,intercondylar fossa,patellar groove +http://purl.obolibrary.org/obo/UBERON_4200096,intercondylar fossa,patellar sulcus +http://purl.obolibrary.org/obo/UBERON_4200096,intercondylar fossa,patellar surface of femur +http://purl.obolibrary.org/obo/UBERON_4200096,intercondylar fossa,patellofemoral groove +http://purl.obolibrary.org/obo/UBERON_4200096,intercondylar fossa,trochlea of femur +http://purl.obolibrary.org/obo/UBERON_4200096,intercondylar fossa,trochlear groove of femur +http://purl.obolibrary.org/obo/UBERON_4200096,intercondylar fossa,trochlear sulcus of femur +http://purl.obolibrary.org/obo/UBERON_4200096,intercondylar fossa,trochlear surface of femur +http://purl.obolibrary.org/obo/UBERON_4200097,intermediate spine, +http://purl.obolibrary.org/obo/UBERON_4200098,ischial foot, +http://purl.obolibrary.org/obo/UBERON_4200099,lateral extrascapular, +http://purl.obolibrary.org/obo/UBERON_4200100,latissimus dorsi process, +http://purl.obolibrary.org/obo/UBERON_4200101,m.scapulotriceps, +http://purl.obolibrary.org/obo/UBERON_4200102,median dorsal plate, +http://purl.obolibrary.org/obo/UBERON_4200103,median extrascapular, +http://purl.obolibrary.org/obo/UBERON_4200104,metacarpal extensor pit, +http://purl.obolibrary.org/obo/UBERON_4200105,nerve foramen, +http://purl.obolibrary.org/obo/UBERON_4200106,muscle scar, +http://purl.obolibrary.org/obo/UBERON_4200107,obturator process of ischium, +http://purl.obolibrary.org/obo/UBERON_4200108,outer digit of hand, +http://purl.obolibrary.org/obo/UBERON_4200109,outer digits of pes, +http://purl.obolibrary.org/obo/UBERON_4200110,prepectoral spine, +http://purl.obolibrary.org/obo/UBERON_4200111,prepelvic fin spine, +http://purl.obolibrary.org/obo/UBERON_4200112,prepectoral space, +http://purl.obolibrary.org/obo/UBERON_4200113,predorsal scute, +http://purl.obolibrary.org/obo/UBERON_4200114,prepubic process, +http://purl.obolibrary.org/obo/UBERON_4200115,presupracleithrum, +http://purl.obolibrary.org/obo/UBERON_4200116,pteroid, +http://purl.obolibrary.org/obo/UBERON_4200117,pubic boot, +http://purl.obolibrary.org/obo/UBERON_4200118,pubic peduncle, +http://purl.obolibrary.org/obo/UBERON_4200119,pubis-ischium contact, +http://purl.obolibrary.org/obo/UBERON_4200120,puboischiadic plate, +http://purl.obolibrary.org/obo/UBERON_4200121,puboischiotibialis muscle,M. puboischiotibialis +http://purl.obolibrary.org/obo/UBERON_4200121,puboischiotibialis muscle,puboischiotibialis +http://purl.obolibrary.org/obo/UBERON_4200122,pubotibialis, +http://purl.obolibrary.org/obo/UBERON_4200123,scapular process, +http://purl.obolibrary.org/obo/UBERON_4200124,sternal trabecula, +http://purl.obolibrary.org/obo/UBERON_4200125,supraacetabular crest, +http://purl.obolibrary.org/obo/UBERON_4200126,supraacetabular rim, +http://purl.obolibrary.org/obo/UBERON_4200127,suprascapula foramen, +http://purl.obolibrary.org/obo/UBERON_4200128,synarcual region of vertebral column,synarcuum +http://purl.obolibrary.org/obo/UBERON_4200129,synarcual region, +http://purl.obolibrary.org/obo/UBERON_4200130,tibial facet of astragalus, +http://purl.obolibrary.org/obo/UBERON_4200131,trochanteric shelf, +http://purl.obolibrary.org/obo/UBERON_4200133,crest, +http://purl.obolibrary.org/obo/UBERON_4200134,antimere, +http://purl.obolibrary.org/obo/UBERON_4200135,puboischiadic bar, +http://purl.obolibrary.org/obo/UBERON_4200136,triphycercal tail, +http://purl.obolibrary.org/obo/UBERON_4200139,palatoquadrate element, +http://purl.obolibrary.org/obo/UBERON_4200140,prepollical element, +http://purl.obolibrary.org/obo/UBERON_4200141,prehallical element, +http://purl.obolibrary.org/obo/UBERON_4200150,accessory foramen, +http://purl.obolibrary.org/obo/UBERON_4200151,toe disc, +http://purl.obolibrary.org/obo/UBERON_4200152,intertarsale sesamoid, +http://purl.obolibrary.org/obo/UBERON_4200153,metatarsal bone of digit 6, +http://purl.obolibrary.org/obo/UBERON_4200154,metapodium bone 6, +http://purl.obolibrary.org/obo/UBERON_4200155,metapodium bone 7, +http://purl.obolibrary.org/obo/UBERON_4200156,metapodium bone 8, +http://purl.obolibrary.org/obo/UBERON_4200157,metatarsal bone of digit 7, +http://purl.obolibrary.org/obo/UBERON_4200158,metatarsal bone of digit 8, +http://purl.obolibrary.org/obo/UBERON_4200159,ventral ridge system, +http://purl.obolibrary.org/obo/UBERON_4200160,mesomere (fin), +http://purl.obolibrary.org/obo/UBERON_4200161,mesomere 5, +http://purl.obolibrary.org/obo/UBERON_4200162,mesomere 4, +http://purl.obolibrary.org/obo/UBERON_4200165,basal scute, +http://purl.obolibrary.org/obo/UBERON_4200166,hindlimb interepipodial space, +http://purl.obolibrary.org/obo/UBERON_4200167,mesial pelvic ridge, +http://purl.obolibrary.org/obo/UBERON_4200169,process 2 of entepicondyle, +http://purl.obolibrary.org/obo/UBERON_4200170,process 3 of entepicondyle, +http://purl.obolibrary.org/obo/UBERON_4200171,process 4 of entepicondyle, +http://purl.obolibrary.org/obo/UBERON_4200172,neck of humerus,collum anatomicum (Humerus) +http://purl.obolibrary.org/obo/UBERON_4200172,neck of humerus,collum anatomicum humeri +http://purl.obolibrary.org/obo/UBERON_4200172,neck of humerus,humeral neck +http://purl.obolibrary.org/obo/UBERON_4200173,dorsal ridge, +http://purl.obolibrary.org/obo/UBERON_4200174,distal condyle of humerus, +http://purl.obolibrary.org/obo/UBERON_4200175,supraglenoid region, +http://purl.obolibrary.org/obo/UBERON_4200176,ascending process of clavicle, +http://purl.obolibrary.org/obo/UBERON_4200177,supracondyle tubercle, +http://purl.obolibrary.org/obo/UBERON_4200178,proximal mesomere, +http://purl.obolibrary.org/obo/UBERON_4200180,semilunate carpal, +http://purl.obolibrary.org/obo/UBERON_4200181,astragalus head,talus head +http://purl.obolibrary.org/obo/UBERON_4200182,lateral tubercle of astragalus, +http://purl.obolibrary.org/obo/UBERON_4200183,bicipital tuberosity, +http://purl.obolibrary.org/obo/UBERON_4200184,ulnar tuberosity, +http://purl.obolibrary.org/obo/UBERON_4200185,entepicondyle fossa, +http://purl.obolibrary.org/obo/UBERON_4200186,distal keel of metacarpal III, +http://purl.obolibrary.org/obo/UBERON_4200188,manual toe disc, +http://purl.obolibrary.org/obo/UBERON_4200189,pedal toe disc, +http://purl.obolibrary.org/obo/UBERON_4200190,zygosphene, +http://purl.obolibrary.org/obo/UBERON_4200192,ulnar facet of the humerus, +http://purl.obolibrary.org/obo/UBERON_4200193,posterodorsal process of ilium, +http://purl.obolibrary.org/obo/UBERON_4200194,intercentrum, +http://purl.obolibrary.org/obo/UBERON_4200195,pleurocentrum, +http://purl.obolibrary.org/obo/UBERON_4200196,atlas intercentrum, +http://purl.obolibrary.org/obo/UBERON_4200197,anterior humeral ridge, +http://purl.obolibrary.org/obo/UBERON_4200198,incisor process, +http://purl.obolibrary.org/obo/UBERON_4200199,sallet sensory system,sallet restraint system +http://purl.obolibrary.org/obo/UBERON_4200203,humeral facet on the ulna, +http://purl.obolibrary.org/obo/UBERON_4200204,humeral facet on radius,proximal articular surface of radius +http://purl.obolibrary.org/obo/UBERON_4200206,internal rim of coracoid foramen, +http://purl.obolibrary.org/obo/UBERON_4200207,external rim of the coracoid foramen, +http://purl.obolibrary.org/obo/UBERON_4200208,pectoral fin intermediate radial bone, +http://purl.obolibrary.org/obo/UBERON_4200209,postaxial process of the ulnare, +http://purl.obolibrary.org/obo/UBERON_4200210,postaxial process of the femur, +http://purl.obolibrary.org/obo/UBERON_4200211,postaxial process of the fibula, +http://purl.obolibrary.org/obo/UBERON_4200212,pectoral process of humerus, +http://purl.obolibrary.org/obo/UBERON_4200213,deltoid process, +http://purl.obolibrary.org/obo/UBERON_4200214,epipodial facet, +http://purl.obolibrary.org/obo/UBERON_4200215,suture, +http://purl.obolibrary.org/obo/UBERON_4200216,fibula facet of femur, +http://purl.obolibrary.org/obo/UBERON_4200217,tibial facet of femur, +http://purl.obolibrary.org/obo/UBERON_4200218,musculotendinous bundle, +http://purl.obolibrary.org/obo/UBERON_4200219,middle phalanx of manual digit 1, +http://purl.obolibrary.org/obo/UBERON_4200220,iliac ramus, +http://purl.obolibrary.org/obo/UBERON_4200221,growth line, +http://purl.obolibrary.org/obo/UBERON_4200222,distal groove of humerus, +http://purl.obolibrary.org/obo/UBERON_4200223,foramen C, +http://purl.obolibrary.org/obo/UBERON_4200224,columnar area, +http://purl.obolibrary.org/obo/UBERON_4200225,scapulohumeralis muscle, +http://purl.obolibrary.org/obo/UBERON_4200226,anteroventral process of cleithrum, +http://purl.obolibrary.org/obo/UBERON_4200228,excurrent foramen of ectepicondylar foramen, +http://purl.obolibrary.org/obo/UBERON_4200229,incurrent foramen of ectepicondylar foramen, +http://purl.obolibrary.org/obo/UBERON_4200230,surface of bone,bone surface +http://purl.obolibrary.org/obo/UBERON_4200231,unfinished bone surface, +http://purl.obolibrary.org/obo/UBERON_4200232,finished bone surface, +http://purl.obolibrary.org/obo/UBERON_4200233,dorsal clavicular process,ascending dorsal clavicular process +http://purl.obolibrary.org/obo/UBERON_4200234,precoronoid bone, +http://purl.obolibrary.org/obo/UBERON_4200235,postcoronoid bone, +http://purl.obolibrary.org/obo/UBERON_4200236,anterior coronoid bone, +http://purl.obolibrary.org/obo/UBERON_4200237,posterior coronoid bone, +http://purl.obolibrary.org/obo/UBERON_4200238,coronoid fang, +http://purl.obolibrary.org/obo/UBERON_4200239,shagreen tooth field, +http://purl.obolibrary.org/obo/UBERON_4200240,fronto-ethmoidal shield, +http://purl.obolibrary.org/obo/UBERON_4200241,postrostral bone, +http://purl.obolibrary.org/obo/UBERON_4200242,median postrostral bone, +http://purl.obolibrary.org/obo/UBERON_4200243,surangular pit line, +http://purl.obolibrary.org/obo/UBERON_4200244,anterior supraorbital bone, +http://purl.obolibrary.org/obo/UBERON_4200245,parasymphysial plate, +http://purl.obolibrary.org/obo/UBERON_4200246,mesial parasymphysial foramen, +http://purl.obolibrary.org/obo/UBERON_4200247,lateral parasymphysial foramen, +http://purl.obolibrary.org/obo/UBERON_4200248,hypophysial region,hypophyseal region +http://purl.obolibrary.org/obo/UBERON_4200250,meckelian bone, +http://purl.obolibrary.org/obo/UBERON_4200251,meckelian foramen, +http://purl.obolibrary.org/obo/UBERON_4300002,palatine prong, +http://purl.obolibrary.org/obo/UBERON_4300003,urodermal bone, +http://purl.obolibrary.org/obo/UBERON_4300004,scale pocket, +http://purl.obolibrary.org/obo/UBERON_4300005,aphakic space, +http://purl.obolibrary.org/obo/UBERON_4300006,scale row, +http://purl.obolibrary.org/obo/UBERON_4300007,medial pelvic process, +http://purl.obolibrary.org/obo/UBERON_4300008,epipleural series, +http://purl.obolibrary.org/obo/UBERON_4300012,clavus,pseudo-caudal fin +http://purl.obolibrary.org/obo/UBERON_4300012,clavus,pseudocaudal fin +http://purl.obolibrary.org/obo/UBERON_4300013,paired fin radial skeleton,paired fin radial series +http://purl.obolibrary.org/obo/UBERON_4300014,dorsal cleithrum, +http://purl.obolibrary.org/obo/UBERON_4300015,ventral cleithrum, +http://purl.obolibrary.org/obo/UBERON_4300016,pelvic cartilage, +http://purl.obolibrary.org/obo/UBERON_4300017,rostrodermethmoid, +http://purl.obolibrary.org/obo/UBERON_4300018,ventral marginal cartilage, +http://purl.obolibrary.org/obo/UBERON_4300019,dorsal fin basal cartilage (elasmobranchs),dorsal fin basal plate +http://purl.obolibrary.org/obo/UBERON_4300020,anal fin basal cartilage,anal fin basal plate +http://purl.obolibrary.org/obo/UBERON_4300021,anterolateral plate,AL +http://purl.obolibrary.org/obo/UBERON_4300022,anteroventral plate,AV +http://purl.obolibrary.org/obo/UBERON_4300022,anteroventral plate,anterior ventral plate +http://purl.obolibrary.org/obo/UBERON_4300023,interolateral plate,IL +http://purl.obolibrary.org/obo/UBERON_4300024,spinal plate,Sp +http://purl.obolibrary.org/obo/UBERON_4300025,posterior dorsolateral plate,PDL +http://purl.obolibrary.org/obo/UBERON_4300026,anterior ventrolateral plate,AVL +http://purl.obolibrary.org/obo/UBERON_4300028,posterior ventrolateral plate,PVL +http://purl.obolibrary.org/obo/UBERON_4300029,dermal neck joint,cervical neck joint +http://purl.obolibrary.org/obo/UBERON_4300030,flexor caudalis muscle, +http://purl.obolibrary.org/obo/UBERON_4300031,fin web,fin membrane +http://purl.obolibrary.org/obo/UBERON_4300032,posterior dorsal fin basal cartilage (elasmobranchs),posterior dorsal fin base plate +http://purl.obolibrary.org/obo/UBERON_4300033,anterior dorsal fin basal cartilage (elasmobranchs),anterior dorsal fin base plate +http://purl.obolibrary.org/obo/UBERON_4300034,antorbital cartilage, +http://purl.obolibrary.org/obo/UBERON_4300035,supraneural element, +http://purl.obolibrary.org/obo/UBERON_4300036,supraneural cartilage, +http://purl.obolibrary.org/obo/UBERON_4300037,bony fin ray, +http://purl.obolibrary.org/obo/UBERON_4300038,facet, +http://purl.obolibrary.org/obo/UBERON_4300081,mesopterygium element, +http://purl.obolibrary.org/obo/UBERON_4300082,metapterygium element, +http://purl.obolibrary.org/obo/UBERON_4300083,propterygium element, +http://purl.obolibrary.org/obo/UBERON_4300087,mesopterygium bone, +http://purl.obolibrary.org/obo/UBERON_4300088,metapterygium bone, +http://purl.obolibrary.org/obo/UBERON_4300089,propterygium bone, +http://purl.obolibrary.org/obo/UBERON_4300090,X bone, +http://purl.obolibrary.org/obo/UBERON_4300091,Y bone, +http://purl.obolibrary.org/obo/UBERON_4300092,mesocoracoid element, +http://purl.obolibrary.org/obo/UBERON_4300096,anal fin pterygiophore 1, +http://purl.obolibrary.org/obo/UBERON_4300097,anal fin spine 1, +http://purl.obolibrary.org/obo/UBERON_4300098,anal fin spine 2, +http://purl.obolibrary.org/obo/UBERON_4300101,dorsal fin ceratotrichial spine (elasmobranchs), +http://purl.obolibrary.org/obo/UBERON_4300102,postcleithral scale, +http://purl.obolibrary.org/obo/UBERON_4300103,rudimentary pectoral fin ray, +http://purl.obolibrary.org/obo/UBERON_4300104,ectocoracoid bone, +http://purl.obolibrary.org/obo/UBERON_4300105,caudal vertebra 1, +http://purl.obolibrary.org/obo/UBERON_4300106,ventral limb of posttemporal, +http://purl.obolibrary.org/obo/UBERON_4300108,lepidotrichial segment,segment of fin ray +http://purl.obolibrary.org/obo/UBERON_4300109,proximal segment of caudal ray, +http://purl.obolibrary.org/obo/UBERON_4300110,lateral ethmoid cartilage, +http://purl.obolibrary.org/obo/UBERON_4300111,lateral ethmoid element, +http://purl.obolibrary.org/obo/UBERON_4300112,distal segment of caudal ray, +http://purl.obolibrary.org/obo/UBERON_4300114,pelvic sucking disc,adhesive disc +http://purl.obolibrary.org/obo/UBERON_4300114,pelvic sucking disc,pelvic fin sucking disc +http://purl.obolibrary.org/obo/UBERON_4300114,pelvic sucking disc,ventral sucking disc +http://purl.obolibrary.org/obo/UBERON_4300115,sucking disc,sucking disk +http://purl.obolibrary.org/obo/UBERON_4300116,dorsal fin ray,dorsal fin soft ray +http://purl.obolibrary.org/obo/UBERON_4300117,pelvic fin ray,pelvic fin soft ray +http://purl.obolibrary.org/obo/UBERON_4300119,glenoid region, +http://purl.obolibrary.org/obo/UBERON_4300120,spinous region of dorsal fin, +http://purl.obolibrary.org/obo/UBERON_4300121,zygantrum, +http://purl.obolibrary.org/obo/UBERON_4300123,pre-axial region, +http://purl.obolibrary.org/obo/UBERON_4300124,axis intercentrum, +http://purl.obolibrary.org/obo/UBERON_4300125,dorsal iliac ridge, +http://purl.obolibrary.org/obo/UBERON_4300126,tectorial restraint system, +http://purl.obolibrary.org/obo/UBERON_4300127,nuchal crest, +http://purl.obolibrary.org/obo/UBERON_4300128,sacral rib, +http://purl.obolibrary.org/obo/UBERON_4300129,dorsal pelvic gland, +http://purl.obolibrary.org/obo/UBERON_4300130,lateral pelvic gland, +http://purl.obolibrary.org/obo/UBERON_4300132,glossopharyngeal nerve foramen,nerve foramen IX +http://purl.obolibrary.org/obo/UBERON_4300133,upper jaw symphyseal region,upper jaw symphysial region +http://purl.obolibrary.org/obo/UBERON_4300134,lateral commissure, +http://purl.obolibrary.org/obo/UBERON_4300135,upper jaw symphyseal tooth,upper jaw symphysial tooth +http://purl.obolibrary.org/obo/UBERON_4300137,lingual region, +http://purl.obolibrary.org/obo/UBERON_4300138,labial region, +http://purl.obolibrary.org/obo/UBERON_4300139,posterolingual region, +http://purl.obolibrary.org/obo/UBERON_4300140,mesial region, +http://purl.obolibrary.org/obo/UBERON_4300142,internal carotid foramen, +http://purl.obolibrary.org/obo/UBERON_4300143,anal fin radial skeleton,anal fin radial series +http://purl.obolibrary.org/obo/UBERON_4300144,profundus foramen, +http://purl.obolibrary.org/obo/UBERON_4300147,pectoral fin base, +http://purl.obolibrary.org/obo/UBERON_4300150,gill membrane, +http://purl.obolibrary.org/obo/UBERON_4300151,pelvic intercleithral cartilage, +http://purl.obolibrary.org/obo/UBERON_4300152,accessory nasal sac, +http://purl.obolibrary.org/obo/UBERON_4300153,Sharpey's fiber, +http://purl.obolibrary.org/obo/UBERON_4300154,procurrent spur, +http://purl.obolibrary.org/obo/UBERON_4300155,pectoral splint, +http://purl.obolibrary.org/obo/UBERON_4300156,anterodorsal crest, +http://purl.obolibrary.org/obo/UBERON_4300157,midshaft, +http://purl.obolibrary.org/obo/UBERON_4300158,ectepicondylar depression, +http://purl.obolibrary.org/obo/UBERON_4300172,pectoral fin bud, +http://purl.obolibrary.org/obo/UBERON_4300173,pelvic fin bud, +http://purl.obolibrary.org/obo/UBERON_4300174,actinopterygian pyloric caecum,pyloric appendage +http://purl.obolibrary.org/obo/UBERON_4300174,actinopterygian pyloric caecum,pyloric caeca +http://purl.obolibrary.org/obo/UBERON_4300174,actinopterygian pyloric caecum,pyloric caecum +http://purl.obolibrary.org/obo/UBERON_4300175,procumbent dorsal fin spine, +http://purl.obolibrary.org/obo/UBERON_4300176,parietal branch of the supraorbital canal, +http://purl.obolibrary.org/obo/UBERON_4300177,replacement tooth row, +http://purl.obolibrary.org/obo/UBERON_4300178,inner tooth row of dentary, +http://purl.obolibrary.org/obo/UBERON_4300179,inner tooth row of premaxilla, +http://purl.obolibrary.org/obo/UBERON_4300180,isthmus, +http://purl.obolibrary.org/obo/UBERON_4300181,posterior sclerotic cartilage, +http://purl.obolibrary.org/obo/UBERON_4300182,anterior sclerotic cartilage, +http://purl.obolibrary.org/obo/UBERON_4300184,neural spine 5, +http://purl.obolibrary.org/obo/UBERON_4300185,neural spine 6, +http://purl.obolibrary.org/obo/UBERON_4300186,neural spine 7, +http://purl.obolibrary.org/obo/UBERON_4300188,terminal scale, +http://purl.obolibrary.org/obo/UBERON_4300189,parapophysis 3, +http://purl.obolibrary.org/obo/UBERON_4300190,claustrum element, +http://purl.obolibrary.org/obo/UBERON_4300192,branched pelvic fin ray, +http://purl.obolibrary.org/obo/UBERON_4300193,unbranched anal fin ray, +http://purl.obolibrary.org/obo/UBERON_4300194,photophore, +http://purl.obolibrary.org/obo/UBERON_4300195,rostral tubule,rostral tubuli +http://purl.obolibrary.org/obo/UBERON_4300196,processus descendens of sphenoid,otico-sphenoid bridge +http://purl.obolibrary.org/obo/UBERON_4300197,Westoll line,Westoll lines +http://purl.obolibrary.org/obo/UBERON_4300198,epichordal radial, +http://purl.obolibrary.org/obo/UBERON_4300199,postsplenial, +http://purl.obolibrary.org/obo/UBERON_4300200,postparietal shield,parietal shield +http://purl.obolibrary.org/obo/UBERON_4300201,subepiotic fossa, +http://purl.obolibrary.org/obo/UBERON_4300202,endoskeletal cranial joint,endoskeletal intracranial joint +http://purl.obolibrary.org/obo/UBERON_4300203,tectum orbitale, +http://purl.obolibrary.org/obo/UBERON_4300205,palato-maxillary ligament, +http://purl.obolibrary.org/obo/UBERON_4300206,mandibulo-lacrimal ligament, +http://purl.obolibrary.org/obo/UBERON_4300207,submandibular bone, +http://purl.obolibrary.org/obo/UBERON_4300208,submandibular series, +http://purl.obolibrary.org/obo/UBERON_4300209,palato-vomerine ligament,palatovomerine ligament +http://purl.obolibrary.org/obo/UBERON_4300210,transversus epibranchialis 2, +http://purl.obolibrary.org/obo/UBERON_4300211,lateral plate, +http://purl.obolibrary.org/obo/UBERON_4300212,acrodin, +http://purl.obolibrary.org/obo/UBERON_4300213,supraneural 1 element, +http://purl.obolibrary.org/obo/UBERON_4300214,supraneural 2 element, +http://purl.obolibrary.org/obo/UBERON_4300215,supraneural 3 element, +http://purl.obolibrary.org/obo/UBERON_4300216,supraneural 4 element, +http://purl.obolibrary.org/obo/UBERON_4300217,supraneural 5 element, +http://purl.obolibrary.org/obo/UBERON_4300218,supraneural 6 element, +http://purl.obolibrary.org/obo/UBERON_4300219,supraneural 7 element, +http://purl.obolibrary.org/obo/UBERON_4300220,supraneural 8 element, +http://purl.obolibrary.org/obo/UBERON_4300221,supraneural 9 element, +http://purl.obolibrary.org/obo/UBERON_4300222,axilar scale, +http://purl.obolibrary.org/obo/UBERON_4300223,precaudal vertebra, +http://purl.obolibrary.org/obo/UBERON_4300224,precaudal vertebra endochondral element, +http://purl.obolibrary.org/obo/UBERON_4300225,precaudal vertebra cartilage element, +http://purl.obolibrary.org/obo/UBERON_4300226,forelimb bud mesenchyme, +http://purl.obolibrary.org/obo/UBERON_4300227,hindlimb bud mesenchyme, +http://purl.obolibrary.org/obo/UBERON_4300228,pectoral fin bud mesenchyme, +http://purl.obolibrary.org/obo/UBERON_4300229,pelvic fin bud mesenchyme, +http://purl.obolibrary.org/obo/UBERON_4300230,forelimb wing bud, +http://purl.obolibrary.org/obo/UBERON_4300231,forelimb wing bud mesenchyme, +http://purl.obolibrary.org/obo/UBERON_4300233,mammiliform tooth, +http://purl.obolibrary.org/obo/UBERON_4300234,scale sheath, +http://purl.obolibrary.org/obo/UBERON_4300235,spinoid scale, +http://purl.obolibrary.org/obo/UBERON_4300236,rib of vertebra 7, +http://purl.obolibrary.org/obo/UBERON_4300237,rib of vertebra 8, +http://purl.obolibrary.org/obo/UBERON_4300238,pored lateral line scale, +http://purl.obolibrary.org/obo/UBERON_4300239,hind flipper,hindflipper +http://purl.obolibrary.org/obo/UBERON_4300240,rostral ossicle, +http://purl.obolibrary.org/obo/UBERON_4300241,ethmoid commissure,ethmoid lateral line commissure +http://purl.obolibrary.org/obo/UBERON_4300242,lateral line scale 6, +http://purl.obolibrary.org/obo/UBERON_4300243,premaxillary tooth 2, +http://purl.obolibrary.org/obo/UBERON_4300244,premaxillary tooth 3, +http://purl.obolibrary.org/obo/UBERON_4300246,dentary tooth 2, +http://purl.obolibrary.org/obo/UBERON_4300247,dentary tooth 3, +http://purl.obolibrary.org/obo/UBERON_4300248,fused hypural 1 and 2, +http://purl.obolibrary.org/obo/UBERON_4300249,lateral occipital foramen, +http://purl.obolibrary.org/obo/UBERON_4300250,ventral caudal procurrent ray 3, +http://purl.obolibrary.org/obo/UBERON_4300251,ventral caudal procurrent ray 4, +http://purl.obolibrary.org/obo/UBERON_4300252,ethmo-palatine cartilage, +http://purl.obolibrary.org/obo/UBERON_4300261,pectoral fin hook, +http://purl.obolibrary.org/obo/UBERON_4300262,pelvic fin hook, +http://purl.obolibrary.org/obo/UBERON_4300263,supraneural 4 cartilage, +http://purl.obolibrary.org/obo/UBERON_4300264,supraneural 5 cartilage, +http://purl.obolibrary.org/obo/UBERON_4300265,supraneural 6 cartilage, +http://purl.obolibrary.org/obo/UBERON_4300266,supraneural 7 cartilage, +http://purl.obolibrary.org/obo/UBERON_4300267,supraneural 8 cartilage, +http://purl.obolibrary.org/obo/UBERON_4300268,supraneural 9 cartilage, +http://purl.obolibrary.org/obo/UBERON_4300269,epioccipital bridge,epiotic bridge +http://purl.obolibrary.org/obo/UBERON_4300270,outer tooth row of premaxilla, +http://purl.obolibrary.org/obo/UBERON_4300271,interneural spine cartilage,CINPU +http://purl.obolibrary.org/obo/UBERON_4300272,interhaemal spine cartilage,CIHPU +http://purl.obolibrary.org/obo/UBERON_4300274,adipose fin ray, +http://purl.obolibrary.org/obo/UBERON_4300275,suborbital stay, +http://purl.obolibrary.org/obo/UBERON_4300279,outer tooth row of dentary, +http://purl.obolibrary.org/obo/UBERON_4300280,metapterygoid tooth, +http://purl.obolibrary.org/obo/UBERON_4300281,dorsal fin hook,dorsal-fin hook +http://purl.obolibrary.org/obo/UBERON_4300282,dorsal myorhabdoid bone, +http://purl.obolibrary.org/obo/UBERON_4300283,ventral myorhabdoid bone, +http://purl.obolibrary.org/obo/UBERON_4300284,fin hook, +http://purl.obolibrary.org/obo/UBERON_4300285,second preethmoid cartilage, +http://purl.obolibrary.org/obo/UBERON_4300286,second preethmoid element, +http://purl.obolibrary.org/obo/UBERON_4300287,nasal barbel, +http://purl.obolibrary.org/obo/UBERON_4300288,rictal barbel, +http://purl.obolibrary.org/obo/UBERON_4400000,metapterygium cartilage, +http://purl.obolibrary.org/obo/UBERON_4400001,ceratotrichium, +http://purl.obolibrary.org/obo/UBERON_4400005,fin ray, +http://purl.obolibrary.org/obo/UBERON_4400006,elastoidin fin ray, +http://purl.obolibrary.org/obo/UBERON_4400007,camptotrichium, +http://purl.obolibrary.org/obo/UBERON_4440008,fin radial skeleton,fin radial series +http://purl.obolibrary.org/obo/UBERON_4440009,pectoral fin radial skeleton,pectoral fin radial series +http://purl.obolibrary.org/obo/UBERON_4440010,pelvic fin radial skeleton,pelvic fin radial series +http://purl.obolibrary.org/obo/UBERON_4440011,paired fin lepidotrichium, +http://purl.obolibrary.org/obo/UBERON_4500002,upper uroneural, +http://purl.obolibrary.org/obo/UBERON_4500003,predorsal scale, +http://purl.obolibrary.org/obo/UBERON_4500004,adipose fin skeleton, +http://purl.obolibrary.org/obo/UBERON_4500005,prenasal ossicle, +http://purl.obolibrary.org/obo/UBERON_4500006,anal fin ray,anal fin soft ray +http://purl.obolibrary.org/obo/UBERON_4500007,pectoral fin ray,pectoral fin soft ray +http://purl.obolibrary.org/obo/UBERON_4500008,median fin lepidotrichium, +http://purl.obolibrary.org/obo/UBERON_4500009,paired fin spine, +http://purl.obolibrary.org/obo/UBERON_4500010,unbranched pectoral fin ray,pectoral fin unbranched ray +http://purl.obolibrary.org/obo/UBERON_4500011,unbranched pelvic fin ray,pelvic fin unbranched ray +http://purl.obolibrary.org/obo/UBERON_4500012,hypobranchial series, +http://purl.obolibrary.org/obo/UBERON_4500013,pharyngobranchial series, +http://purl.obolibrary.org/obo/UBERON_4500014,basibranchial series, +http://purl.obolibrary.org/obo/UBERON_4500016,premaxilla articular process,articular process of the premaxilla +http://purl.obolibrary.org/obo/UBERON_4500017,interarcual bone, +http://purl.obolibrary.org/obo/UBERON_4500018,premaxilla maxillary process,postmaxillary process +http://purl.obolibrary.org/obo/UBERON_4500020,pelvic fin distal radial cartilage, +http://purl.obolibrary.org/obo/UBERON_5001463,manual digit 1 plus metapodial segment,manual digit 1 digitopodial subdivision +http://purl.obolibrary.org/obo/UBERON_5001463,manual digit 1 plus metapodial segment,manual digit 1 ray +http://purl.obolibrary.org/obo/UBERON_5001463,manual digit 1 plus metapodial segment,manual digit I plus metapodial segment +http://purl.obolibrary.org/obo/UBERON_5001466,pedal digit plus metapodial segment,pedal digit digitopodial subdivision +http://purl.obolibrary.org/obo/UBERON_5001466,pedal digit plus metapodial segment,pedal digit ray +http://purl.obolibrary.org/obo/UBERON_5002389,manual digit plus metapodial segment,manual digit digitopodial subdivision +http://purl.obolibrary.org/obo/UBERON_5002389,manual digit plus metapodial segment,manual digit ray +http://purl.obolibrary.org/obo/UBERON_5002544,digit plus metapodial segment,digit digitopodial subdivision +http://purl.obolibrary.org/obo/UBERON_5002544,digit plus metapodial segment,digit ray +http://purl.obolibrary.org/obo/UBERON_5003622,manual digit 2 plus metapodial segment,manual digit 2 digitopodial subdivision +http://purl.obolibrary.org/obo/UBERON_5003622,manual digit 2 plus metapodial segment,manual digit 2 ray +http://purl.obolibrary.org/obo/UBERON_5003622,manual digit 2 plus metapodial segment,manual digit II plus metapodial segment +http://purl.obolibrary.org/obo/UBERON_5003623,manual digit 3 plus metapodial segment,manual digit 3 digitopodial subdivision +http://purl.obolibrary.org/obo/UBERON_5003623,manual digit 3 plus metapodial segment,manual digit 3 ray +http://purl.obolibrary.org/obo/UBERON_5003623,manual digit 3 plus metapodial segment,manual digit III plus metapodial segment +http://purl.obolibrary.org/obo/UBERON_5003624,manual digit 4 plus metapodial segment,manual digit 4 digitopodial subdivision +http://purl.obolibrary.org/obo/UBERON_5003624,manual digit 4 plus metapodial segment,manual digit 4 ray +http://purl.obolibrary.org/obo/UBERON_5003624,manual digit 4 plus metapodial segment,manual digit IV plus metapodial segment +http://purl.obolibrary.org/obo/UBERON_5003625,manual digit 5 plus metapodial segment,manual digit 5 digitopodial subdivision +http://purl.obolibrary.org/obo/UBERON_5003625,manual digit 5 plus metapodial segment,manual digit 5 ray +http://purl.obolibrary.org/obo/UBERON_5003625,manual digit 5 plus metapodial segment,manual digit V plus metapodial segment +http://purl.obolibrary.org/obo/UBERON_5003631,pedal digit 1 plus metapodial segment,pedal digit 1 digitopodial subdivision +http://purl.obolibrary.org/obo/UBERON_5003631,pedal digit 1 plus metapodial segment,pedal digit 1 ray +http://purl.obolibrary.org/obo/UBERON_5003631,pedal digit 1 plus metapodial segment,pedal digit I plus metapodial segment +http://purl.obolibrary.org/obo/UBERON_5003632,pedal digit 2 plus metapodial segment,pedal digit 2 digitopodial subdivision +http://purl.obolibrary.org/obo/UBERON_5003632,pedal digit 2 plus metapodial segment,pedal digit 2 ray +http://purl.obolibrary.org/obo/UBERON_5003632,pedal digit 2 plus metapodial segment,pedal digit II plus metapodial segment +http://purl.obolibrary.org/obo/UBERON_5003633,pedal digit 3 plus metapodial segment,pedal digit 3 digitopodial subdivision +http://purl.obolibrary.org/obo/UBERON_5003633,pedal digit 3 plus metapodial segment,pedal digit 3 ray +http://purl.obolibrary.org/obo/UBERON_5003633,pedal digit 3 plus metapodial segment,pedal digit III plus metapodial segment +http://purl.obolibrary.org/obo/UBERON_5003634,pedal digit 4 plus metapodial segment,pedal digit 4 digitopodial subdivision +http://purl.obolibrary.org/obo/UBERON_5003634,pedal digit 4 plus metapodial segment,pedal digit 4 ray +http://purl.obolibrary.org/obo/UBERON_5003634,pedal digit 4 plus metapodial segment,pedal digit IV plus metapodial segment +http://purl.obolibrary.org/obo/UBERON_5003635,pedal digit 5 plus metapodial segment,pedal digit 5 digitopodial subdivision +http://purl.obolibrary.org/obo/UBERON_5003635,pedal digit 5 plus metapodial segment,pedal digit 5 ray +http://purl.obolibrary.org/obo/UBERON_5003635,pedal digit 5 plus metapodial segment,pedal digit V plus metapodial segment +http://purl.obolibrary.org/obo/UBERON_5006048,digit 1 plus metapodial segment,digit 1 digitopodial subdivision +http://purl.obolibrary.org/obo/UBERON_5006048,digit 1 plus metapodial segment,digit 1 ray +http://purl.obolibrary.org/obo/UBERON_5006048,digit 1 plus metapodial segment,digit I plus metapodial segment +http://purl.obolibrary.org/obo/UBERON_5006049,digit 2 plus metapodial segment,digit 2 digitopodial subdivision +http://purl.obolibrary.org/obo/UBERON_5006049,digit 2 plus metapodial segment,digit 2 ray +http://purl.obolibrary.org/obo/UBERON_5006049,digit 2 plus metapodial segment,digit II plus metapodial segment +http://purl.obolibrary.org/obo/UBERON_5006050,digit 3 plus metapodial segment,digit 3 digitopodial subdivision +http://purl.obolibrary.org/obo/UBERON_5006050,digit 3 plus metapodial segment,digit 3 ray +http://purl.obolibrary.org/obo/UBERON_5006050,digit 3 plus metapodial segment,digit III plus metapodial segment +http://purl.obolibrary.org/obo/UBERON_5006051,digit 4 plus metapodial segment,digit 4 digitopodial subdivision +http://purl.obolibrary.org/obo/UBERON_5006051,digit 4 plus metapodial segment,digit 4 ray +http://purl.obolibrary.org/obo/UBERON_5006051,digit 4 plus metapodial segment,digit IV plus metapodial segment +http://purl.obolibrary.org/obo/UBERON_5006052,digit 5 plus metapodial segment,digit 5 digitopodial subdivision +http://purl.obolibrary.org/obo/UBERON_5006052,digit 5 plus metapodial segment,digit 5 ray +http://purl.obolibrary.org/obo/UBERON_5006052,digit 5 plus metapodial segment,digit V plus metapodial segment +http://purl.obolibrary.org/obo/UBERON_5011981,manual digit 6 plus metapodial segment,manual digit 6 digitopodial subdivision +http://purl.obolibrary.org/obo/UBERON_5011981,manual digit 6 plus metapodial segment,manual digit 6 ray +http://purl.obolibrary.org/obo/UBERON_5011981,manual digit 6 plus metapodial segment,manual digit VI plus metapodial segment +http://purl.obolibrary.org/obo/UBERON_5011982,manual digit 7 plus metapodial segment,manual digit 7 digitopodial subdivision +http://purl.obolibrary.org/obo/UBERON_5011982,manual digit 7 plus metapodial segment,manual digit 7 ray +http://purl.obolibrary.org/obo/UBERON_5011982,manual digit 7 plus metapodial segment,manual digit VII plus metapodial segment +http://purl.obolibrary.org/obo/UBERON_5011983,manual digit 8 plus metapodial segment,manual digit 8 digitopodial subdivision +http://purl.obolibrary.org/obo/UBERON_5011983,manual digit 8 plus metapodial segment,manual digit 8 ray +http://purl.obolibrary.org/obo/UBERON_5011983,manual digit 8 plus metapodial segment,manual digit VIII plus metapodial segment +http://purl.obolibrary.org/obo/UBERON_5011984,pedal digit 6 plus metapodial segment,pedal digit 6 digitopodial subdivision +http://purl.obolibrary.org/obo/UBERON_5011984,pedal digit 6 plus metapodial segment,pedal digit 6 ray +http://purl.obolibrary.org/obo/UBERON_5011984,pedal digit 6 plus metapodial segment,pedal digit VI plus metapodial segment +http://purl.obolibrary.org/obo/UBERON_5012137,pedal digit 7 plus metapodial segment,pedal digit 7 digitopodial subdivision +http://purl.obolibrary.org/obo/UBERON_5012137,pedal digit 7 plus metapodial segment,pedal digit 7 ray +http://purl.obolibrary.org/obo/UBERON_5012137,pedal digit 7 plus metapodial segment,pedal digit VII plus metapodial segment +http://purl.obolibrary.org/obo/UBERON_5012138,pedal digit 8 plus metapodial segment,pedal digit 8 digitopodial subdivision +http://purl.obolibrary.org/obo/UBERON_5012138,pedal digit 8 plus metapodial segment,pedal digit 8 ray +http://purl.obolibrary.org/obo/UBERON_5012138,pedal digit 8 plus metapodial segment,pedal digit VIII plus metapodial segment +http://purl.obolibrary.org/obo/UBERON_5012260,alular digit plus metapodial segment,alular digit digitopodial subdivision +http://purl.obolibrary.org/obo/UBERON_5012260,alular digit plus metapodial segment,alular digit ray +http://purl.obolibrary.org/obo/UBERON_5012261,manual major digit (Aves) plus metapodial segment,manual major digit (Aves) digitopodial subdivision +http://purl.obolibrary.org/obo/UBERON_5012261,manual major digit (Aves) plus metapodial segment,manual major digit (Aves) ray +http://purl.obolibrary.org/obo/UBERON_5012262,manual minor digit (Aves) plus metapodial segment,manual minor digit (Aves) digitopodial subdivision +http://purl.obolibrary.org/obo/UBERON_5012262,manual minor digit (Aves) plus metapodial segment,manual minor digit (Aves) ray +http://purl.obolibrary.org/obo/UBERON_5101463,manual digit 1 digitopodial skeleton,manual digit I digitopodial skeleton +http://purl.obolibrary.org/obo/UBERON_5101466,pedal digit digitopodial skeleton, +http://purl.obolibrary.org/obo/UBERON_5102389,manual digit digitopodial skeleton, +http://purl.obolibrary.org/obo/UBERON_5102544,individual digit of digitopodial skeleton, +http://purl.obolibrary.org/obo/UBERON_5103622,manual digit 2 digitopodial skeleton,manual digit II digitopodial skeleton +http://purl.obolibrary.org/obo/UBERON_5103623,manual digit 3 digitopodial skeleton,manual digit III digitopodial skeleton +http://purl.obolibrary.org/obo/UBERON_5103624,manual digit 4 digitopodial skeleton,manual digit IV digitopodial skeleton +http://purl.obolibrary.org/obo/UBERON_5103625,manual digit 5 digitopodial skeleton,manual digit V digitopodial skeleton +http://purl.obolibrary.org/obo/UBERON_5103631,pedal digit 1 digitopodial skeleton,pedal digit I digitopodial skeleton +http://purl.obolibrary.org/obo/UBERON_5103632,pedal digit 2 digitopodial skeleton,pedal digit II digitopodial skeleton +http://purl.obolibrary.org/obo/UBERON_5103633,pedal digit 3 digitopodial skeleton,pedal digit III digitopodial skeleton +http://purl.obolibrary.org/obo/UBERON_5103634,pedal digit 4 digitopodial skeleton,pedal digit IV digitopodial skeleton +http://purl.obolibrary.org/obo/UBERON_5103635,pedal digit 5 digitopodial skeleton,pedal digit V digitopodial skeleton +http://purl.obolibrary.org/obo/UBERON_5106048,digit 1 digitopodial skeleton,digit I digitopodial skeleton +http://purl.obolibrary.org/obo/UBERON_5106049,digit 2 digitopodial skeleton,digit II digitopodial skeleton +http://purl.obolibrary.org/obo/UBERON_5106050,digit 3 digitopodial skeleton,digit III digitopodial skeleton +http://purl.obolibrary.org/obo/UBERON_5106051,digit 4 digitopodial skeleton,digit IV digitopodial skeleton +http://purl.obolibrary.org/obo/UBERON_5106052,digit 5 digitopodial skeleton,digit V digitopodial skeleton +http://purl.obolibrary.org/obo/UBERON_5111981,manual digit 6 digitopodial skeleton,manual digit VI digitopodial skeleton +http://purl.obolibrary.org/obo/UBERON_5111982,manual digit 7 digitopodial skeleton,manual digit VII digitopodial skeleton +http://purl.obolibrary.org/obo/UBERON_5111983,manual digit 8 digitopodial skeleton,manual digit VIII digitopodial skeleton +http://purl.obolibrary.org/obo/UBERON_5111984,pedal digit 6 digitopodial skeleton,pedal digit VI digitopodial skeleton +http://purl.obolibrary.org/obo/UBERON_5112137,pedal digit 7 digitopodial skeleton,pedal digit VII digitopodial skeleton +http://purl.obolibrary.org/obo/UBERON_5112138,pedal digit 8 digitopodial skeleton,pedal digit VIII digitopodial skeleton +http://purl.obolibrary.org/obo/UBERON_5112260,alular digit digitopodial skeleton, +http://purl.obolibrary.org/obo/UBERON_5112261,manual major digit (Aves) digitopodial skeleton, +http://purl.obolibrary.org/obo/UBERON_5112262,manual minor digit (Aves) digitopodial skeleton, +http://purl.obolibrary.org/obo/UBERON_6000002,arthropod tagma, +http://purl.obolibrary.org/obo/UBERON_6000004,panarthropod head, +http://purl.obolibrary.org/obo/UBERON_6000005,insect ocular segment, +http://purl.obolibrary.org/obo/UBERON_6000006,insect head segment, +http://purl.obolibrary.org/obo/UBERON_6000007,procephalic segment,pregnathal segment +http://purl.obolibrary.org/obo/UBERON_6000007,procephalic segment,preoral segment +http://purl.obolibrary.org/obo/UBERON_6000008,labral segment, +http://purl.obolibrary.org/obo/UBERON_6000009,antennal segment, +http://purl.obolibrary.org/obo/UBERON_6000011,insect gnathal segment, +http://purl.obolibrary.org/obo/UBERON_6000014,insect labial segment, +http://purl.obolibrary.org/obo/UBERON_6000015,insect thorax, +http://purl.obolibrary.org/obo/UBERON_6000016,insect thoracic segment, +http://purl.obolibrary.org/obo/UBERON_6000017,insect prothoracic segment, +http://purl.obolibrary.org/obo/UBERON_6000018,insect mesothoracic segment, +http://purl.obolibrary.org/obo/UBERON_6000019,insect metathoracic segment, +http://purl.obolibrary.org/obo/UBERON_6000020,insect abdomen, +http://purl.obolibrary.org/obo/UBERON_6000021,insect abdominal segment, +http://purl.obolibrary.org/obo/UBERON_6000029,insect abdominal segment 8, +http://purl.obolibrary.org/obo/UBERON_6000030,insect abdominal segment 9, +http://purl.obolibrary.org/obo/UBERON_6000046,insect dorsal appendage,chorionic appendage +http://purl.obolibrary.org/obo/UBERON_6000096,insect ventral furrow, +http://purl.obolibrary.org/obo/UBERON_6000097,insect cephalic furrow, +http://purl.obolibrary.org/obo/UBERON_6000104,insect mesoderm anlage, +http://purl.obolibrary.org/obo/UBERON_6000112,insect dorsal ectoderm, +http://purl.obolibrary.org/obo/UBERON_6000119,insect anterior ectoderm, +http://purl.obolibrary.org/obo/UBERON_6000128,insect trunk mesoderm, +http://purl.obolibrary.org/obo/UBERON_6000130,insect visceral mesoderm, +http://purl.obolibrary.org/obo/UBERON_6000131,insect mesodermal crest, +http://purl.obolibrary.org/obo/UBERON_6000132,insect mesodermal crest of segment T3, +http://purl.obolibrary.org/obo/UBERON_6000137,embryonic tagma, +http://purl.obolibrary.org/obo/UBERON_6000154,insect embryonic segment, +http://purl.obolibrary.org/obo/UBERON_6000157,insect embryonic head segment, +http://purl.obolibrary.org/obo/UBERON_6000158,insect embryonic procephalic segment, +http://purl.obolibrary.org/obo/UBERON_6000160,insect embryonic antennal segment, +http://purl.obolibrary.org/obo/UBERON_6000162,insect embryonic gnathal segment, +http://purl.obolibrary.org/obo/UBERON_6000165,insect embryonic labial segment, +http://purl.obolibrary.org/obo/UBERON_6000166,insect embryonic thorax, +http://purl.obolibrary.org/obo/UBERON_6000167,insect embryonic thoracic segment, +http://purl.obolibrary.org/obo/UBERON_6000168,insect embryonic prothoracic segment, +http://purl.obolibrary.org/obo/UBERON_6000169,insect embryonic mesothoracic segment, +http://purl.obolibrary.org/obo/UBERON_6000170,insect embryonic metathoracic segment, +http://purl.obolibrary.org/obo/UBERON_6000171,insect embryonic abdomen, +http://purl.obolibrary.org/obo/UBERON_6000172,insect embryonic abdominal segment, +http://purl.obolibrary.org/obo/UBERON_6000180,insect embryonic abdominal segment 8, +http://purl.obolibrary.org/obo/UBERON_6000181,insect embryonic abdominal segment 9, +http://purl.obolibrary.org/obo/UBERON_6000186,insect embryonic optic lobe primordium, +http://purl.obolibrary.org/obo/UBERON_60005380,insect pharynx, +http://purl.obolibrary.org/obo/UBERON_6001055,insect presumptive embryonic/larval nervous system, +http://purl.obolibrary.org/obo/UBERON_6001056,insect presumptive embryonic/larval central nervous system, +http://purl.obolibrary.org/obo/UBERON_6001057,insect neurogenic region, +http://purl.obolibrary.org/obo/UBERON_6001059,insect visual primordium, +http://purl.obolibrary.org/obo/UBERON_6001060,insect embryonic brain, +http://purl.obolibrary.org/obo/UBERON_6001135,insect proneural cluster, +http://purl.obolibrary.org/obo/UBERON_6001648,insect embryonic imaginal precursor, +http://purl.obolibrary.org/obo/UBERON_6001649,insect imaginal disc primordium, +http://purl.obolibrary.org/obo/UBERON_6001650,insect labial disc primordium, +http://purl.obolibrary.org/obo/UBERON_6001652,insect eye-antennal disc primordium, +http://purl.obolibrary.org/obo/UBERON_6001653,insect dorsal thoracic disc primordium, +http://purl.obolibrary.org/obo/UBERON_6001655,insect dorsal mesothoracic disc primordium, +http://purl.obolibrary.org/obo/UBERON_6001656,insect dorsal metathoracic disc primordium, +http://purl.obolibrary.org/obo/UBERON_6001657,insect ventral thoracic disc primordium, +http://purl.obolibrary.org/obo/UBERON_6001658,insect ventral prothoracic disc primordium, +http://purl.obolibrary.org/obo/UBERON_6001661,insect genital disc primordium, +http://purl.obolibrary.org/obo/UBERON_6001662,insect male genital disc primordium, +http://purl.obolibrary.org/obo/UBERON_6001663,insect female genital disc primordium, +http://purl.obolibrary.org/obo/UBERON_6001664,insect embryonic/larval circulatory system,larval circulatory system +http://purl.obolibrary.org/obo/UBERON_6001668,insect embryonic/larval lymph gland,embryonic/larval hematopoietic organ +http://purl.obolibrary.org/obo/UBERON_6001668,insect embryonic/larval lymph gland,hematopoietic organ +http://purl.obolibrary.org/obo/UBERON_6001722,insect ring gland, +http://purl.obolibrary.org/obo/UBERON_6001728,insect larval tagma, +http://purl.obolibrary.org/obo/UBERON_6001729,insect larval segment, +http://purl.obolibrary.org/obo/UBERON_6001730,insect larval head, +http://purl.obolibrary.org/obo/UBERON_6001731,insect larval ocular segment, +http://purl.obolibrary.org/obo/UBERON_6001732,insect larval head segment, +http://purl.obolibrary.org/obo/UBERON_6001733,insect larval procephalic segment, +http://purl.obolibrary.org/obo/UBERON_6001734,insect larval labral segment, +http://purl.obolibrary.org/obo/UBERON_6001735,insect larval antennal segment, +http://purl.obolibrary.org/obo/UBERON_6001737,insect larval gnathal segment, +http://purl.obolibrary.org/obo/UBERON_6001740,insect larval labial segment, +http://purl.obolibrary.org/obo/UBERON_6001741,insect larval thorax, +http://purl.obolibrary.org/obo/UBERON_6001742,insect larval thoracic segment, +http://purl.obolibrary.org/obo/UBERON_6001743,insect larval prothoracic segment, +http://purl.obolibrary.org/obo/UBERON_6001744,insect larval mesothoracic segment, +http://purl.obolibrary.org/obo/UBERON_6001745,insect larval metathoracic segment, +http://purl.obolibrary.org/obo/UBERON_6001746,insect larval abdomen, +http://purl.obolibrary.org/obo/UBERON_6001747,insect larval abdominal segment, +http://purl.obolibrary.org/obo/UBERON_6001755,insect larval abdominal segment 8, +http://purl.obolibrary.org/obo/UBERON_6001756,insect larval abdominal segment 9, +http://purl.obolibrary.org/obo/UBERON_6001760,insect embryonic/larval imaginal precursor,larval imaginal precursor +http://purl.obolibrary.org/obo/UBERON_6001764,insect labial disc, +http://purl.obolibrary.org/obo/UBERON_6001765,insect clypeo-labral disc,clypeolabral disc +http://purl.obolibrary.org/obo/UBERON_6001766,insect eye-antennal disc, +http://purl.obolibrary.org/obo/UBERON_6001767,insect antennal disc, +http://purl.obolibrary.org/obo/UBERON_6001776,insect dorsal thoracic disc,dorsal thoracic disk +http://purl.obolibrary.org/obo/UBERON_6001778,insect wing disc,dorsal mesothoracic disc +http://purl.obolibrary.org/obo/UBERON_6001779,insect haltere disc,dorsal metathoracic disc +http://purl.obolibrary.org/obo/UBERON_6001780,insect ventral thoracic disc,ventral thoracic disk +http://purl.obolibrary.org/obo/UBERON_6001781,insect prothoracic leg disc,1st leg disc +http://purl.obolibrary.org/obo/UBERON_6001781,insect prothoracic leg disc,T1 leg disc +http://purl.obolibrary.org/obo/UBERON_6001781,insect prothoracic leg disc,ventral prothoracic disc +http://purl.obolibrary.org/obo/UBERON_6001784,insect genital disc, +http://purl.obolibrary.org/obo/UBERON_6001785,insect male genital disc, +http://purl.obolibrary.org/obo/UBERON_6001787,insect female genital disc, +http://purl.obolibrary.org/obo/UBERON_6001790,insect histoblast nest, +http://purl.obolibrary.org/obo/UBERON_6001842,insect embryonic/larval digestive system,larval digestive system +http://purl.obolibrary.org/obo/UBERON_6001845,insect cephalopharyngeal skeleton,cephalo-pharyngeal skeleton +http://purl.obolibrary.org/obo/UBERON_6001845,insect cephalopharyngeal skeleton,larval head skeleton +http://purl.obolibrary.org/obo/UBERON_6001845,insect cephalopharyngeal skeleton,mouth parts +http://purl.obolibrary.org/obo/UBERON_6001848,insect epipharyngeal sclerite,epistomal sclerite +http://purl.obolibrary.org/obo/UBERON_6001911,insect embryonic/larval nervous system,larval nervous system +http://purl.obolibrary.org/obo/UBERON_6001919,insect embryonic/larval central nervous system,larval central nervous system +http://purl.obolibrary.org/obo/UBERON_6001920,insect embryonic/larval brain, +http://purl.obolibrary.org/obo/UBERON_6001925,insect embryonic/larval protocerebrum, +http://purl.obolibrary.org/obo/UBERON_6002639,insect larval sense organ,larval sense organ +http://purl.obolibrary.org/obo/UBERON_6002642,insect embryonic/larval ocular segment sensillum,larval ocular segment sensillum +http://purl.obolibrary.org/obo/UBERON_6003005,insect adult tagma, +http://purl.obolibrary.org/obo/UBERON_6003006,insect adult segment, +http://purl.obolibrary.org/obo/UBERON_6003007,insect adult head, +http://purl.obolibrary.org/obo/UBERON_6003009,insect adult head segment, +http://purl.obolibrary.org/obo/UBERON_6003010,insect adult procephalic segment, +http://purl.obolibrary.org/obo/UBERON_6003011,insect adult labral segment, +http://purl.obolibrary.org/obo/UBERON_6003012,insect adult antennal segment,adult antennal structure +http://purl.obolibrary.org/obo/UBERON_6003018,insect adult thorax, +http://purl.obolibrary.org/obo/UBERON_6003019,insect adult thoracic segment, +http://purl.obolibrary.org/obo/UBERON_6003020,insect adult prothoracic segment,prothorax +http://purl.obolibrary.org/obo/UBERON_6003020,insect adult prothoracic segment,t1 +http://purl.obolibrary.org/obo/UBERON_6003020,insect adult prothoracic segment,thoracic segment 1 +http://purl.obolibrary.org/obo/UBERON_6003021,insect adult mesothoracic segment,mesothorax +http://purl.obolibrary.org/obo/UBERON_6003021,insect adult mesothoracic segment,t2 +http://purl.obolibrary.org/obo/UBERON_6003021,insect adult mesothoracic segment,thoracic segment 2 +http://purl.obolibrary.org/obo/UBERON_6003023,insect adult abdomen, +http://purl.obolibrary.org/obo/UBERON_6003024,insect adult abdominal segment, +http://purl.obolibrary.org/obo/UBERON_6003039,dorsal trunk of insect trachea, +http://purl.obolibrary.org/obo/UBERON_6003218,insect adult muscle system, +http://purl.obolibrary.org/obo/UBERON_6003259,insect adult somatic muscle, +http://purl.obolibrary.org/obo/UBERON_6003559,insect adult nervous system, +http://purl.obolibrary.org/obo/UBERON_6003623,insect adult central nervous system, +http://purl.obolibrary.org/obo/UBERON_6003624,insect adult brain, +http://purl.obolibrary.org/obo/UBERON_6003626,insect supraesophageal ganglion, +http://purl.obolibrary.org/obo/UBERON_6003627,insect protocerebrum,protocerebral neuromere +http://purl.obolibrary.org/obo/UBERON_6003632,insect adult central complex,CX +http://purl.obolibrary.org/obo/UBERON_6003632,insect adult central complex,adult central body complex +http://purl.obolibrary.org/obo/UBERON_6004203,insect adult clypeo-labral anlage, +http://purl.obolibrary.org/obo/UBERON_6004296,insect sex comb,ctenidium +http://purl.obolibrary.org/obo/UBERON_6004296,insect sex comb,metatarsal comb +http://purl.obolibrary.org/obo/UBERON_6004340,insect wing hair, +http://purl.obolibrary.org/obo/UBERON_6004475,insect sclerite,integumentary plate +http://purl.obolibrary.org/obo/UBERON_6004476,insect tergite,abdominal tergite +http://purl.obolibrary.org/obo/UBERON_6004477,insect sternite,abdominal sternite +http://purl.obolibrary.org/obo/UBERON_6004481,insect adult external head, +http://purl.obolibrary.org/obo/UBERON_6004519,insect arista,segment 6 +http://purl.obolibrary.org/obo/UBERON_6004520,insect mouthpart, +http://purl.obolibrary.org/obo/UBERON_6004521,insect clypeus, +http://purl.obolibrary.org/obo/UBERON_6004535,insect proboscis, +http://purl.obolibrary.org/obo/UBERON_6004540,insect basiproboscis, +http://purl.obolibrary.org/obo/UBERON_6004551,insect adult external thorax, +http://purl.obolibrary.org/obo/UBERON_6004552,insect tergum, +http://purl.obolibrary.org/obo/UBERON_6004578,insect adult external mesothorax, +http://purl.obolibrary.org/obo/UBERON_6004579,insect dorsal mesothorax, +http://purl.obolibrary.org/obo/UBERON_6004580,insect mesothoracic tergum,alinotum +http://purl.obolibrary.org/obo/UBERON_6004580,insect mesothoracic tergum,mesonotum +http://purl.obolibrary.org/obo/UBERON_6004646,insect tarsal segment,tarsomere +http://purl.obolibrary.org/obo/UBERON_6004648,insect metatarsus,1st tarsal segment +http://purl.obolibrary.org/obo/UBERON_6004648,insect metatarsus,basitarsus +http://purl.obolibrary.org/obo/UBERON_6004648,insect metatarsus,first segment of the tarsus +http://purl.obolibrary.org/obo/UBERON_6004648,insect metatarsus,first tarsal segment +http://purl.obolibrary.org/obo/UBERON_6004648,insect metatarsus,tarsal segment 1 +http://purl.obolibrary.org/obo/UBERON_6004663,insect prothoracic leg,T1 leg +http://purl.obolibrary.org/obo/UBERON_6004663,insect prothoracic leg,first leg +http://purl.obolibrary.org/obo/UBERON_6004668,insect prothoracic tarsal segment, +http://purl.obolibrary.org/obo/UBERON_6004670,insect prothoracic metatarsus,T1 Ts1 +http://purl.obolibrary.org/obo/UBERON_6004670,insect prothoracic metatarsus,T1 tarsal segment 1 +http://purl.obolibrary.org/obo/UBERON_6004670,insect prothoracic metatarsus,prothoracic basitarsus +http://purl.obolibrary.org/obo/UBERON_6004670,insect prothoracic metatarsus,prothoracic tarsal segment 1 +http://purl.obolibrary.org/obo/UBERON_6004788,insect adult external abdomen, +http://purl.obolibrary.org/obo/UBERON_6004823,insect analia, +http://purl.obolibrary.org/obo/UBERON_6004824,insect female analia, +http://purl.obolibrary.org/obo/UBERON_6004825,insect male analia, +http://purl.obolibrary.org/obo/UBERON_6004979,insect trichome, +http://purl.obolibrary.org/obo/UBERON_6004983,insect embryonic/larval cuticle,larval cuticle +http://purl.obolibrary.org/obo/UBERON_6004986,insect third instar larval cuticle, +http://purl.obolibrary.org/obo/UBERON_6005023,insect imaginal precursor, +http://purl.obolibrary.org/obo/UBERON_6005036,insect tracheal pit,embryonic tracheal pit +http://purl.obolibrary.org/obo/UBERON_6005036,insect tracheal pit,tracheal sac +http://purl.obolibrary.org/obo/UBERON_6005037,insect tracheal primordium,P2 TrachP +http://purl.obolibrary.org/obo/UBERON_6005043,insect trachea, +http://purl.obolibrary.org/obo/UBERON_6005054,insect spiracle, +http://purl.obolibrary.org/obo/UBERON_6005096,insect stomatogastric nervous system, +http://purl.obolibrary.org/obo/UBERON_6005168,insect external sensory organ, +http://purl.obolibrary.org/obo/UBERON_6005177,insect chaeta,sensillum chaeticum +http://purl.obolibrary.org/obo/UBERON_6005378,insect wing margin, +http://purl.obolibrary.org/obo/UBERON_6005393,insect embryonic/larval integumentary system, +http://purl.obolibrary.org/obo/UBERON_6005396,insect adult integumentary system,adult integument +http://purl.obolibrary.org/obo/UBERON_6005413,insect anlage in statu nascendi, +http://purl.obolibrary.org/obo/UBERON_6005427,insect ectoderm anlage, +http://purl.obolibrary.org/obo/UBERON_6005428,insect dorsal ectoderm anlage, +http://purl.obolibrary.org/obo/UBERON_6005434,insect visual anlage, +http://purl.obolibrary.org/obo/UBERON_6005436,insect trunk mesoderm anlage, +http://purl.obolibrary.org/obo/UBERON_6005439,insect clypeo-labral anlage, +http://purl.obolibrary.org/obo/UBERON_6005461,insect circulatory system primordium, +http://purl.obolibrary.org/obo/UBERON_6005467,insect lymph gland primordium, +http://purl.obolibrary.org/obo/UBERON_6005514,insect adult clypeo-labral primordium, +http://purl.obolibrary.org/obo/UBERON_6005526,insect dorsal epidermis primordium, +http://purl.obolibrary.org/obo/UBERON_6005533,insect ventral epidermis primordium, +http://purl.obolibrary.org/obo/UBERON_6005538,insect clypeo-labral primordium, +http://purl.obolibrary.org/obo/UBERON_6005541,insect cardiogenic mesoderm,CardMes +http://purl.obolibrary.org/obo/UBERON_6005541,insect cardiogenic mesoderm,CardMesP2 +http://purl.obolibrary.org/obo/UBERON_6005541,insect cardiogenic mesoderm,P2 CardMes +http://purl.obolibrary.org/obo/UBERON_6005541,insect cardiogenic mesoderm,cardiac mesoderm +http://purl.obolibrary.org/obo/UBERON_6005558,insect ventral ectoderm, +http://purl.obolibrary.org/obo/UBERON_6005569,insect presumptive embryonic/larval tracheal system, +http://purl.obolibrary.org/obo/UBERON_6005805,insect Bolwig organ,Bolwig's organ +http://purl.obolibrary.org/obo/UBERON_6005805,insect Bolwig organ,embryonic Bolwig's organ +http://purl.obolibrary.org/obo/UBERON_6005805,insect Bolwig organ,embryonic visual system +http://purl.obolibrary.org/obo/UBERON_6005805,insect Bolwig organ,larval Bolwig's organ +http://purl.obolibrary.org/obo/UBERON_6005830,insect Bolwig organ primordium,Bolwig's organ primordium +http://purl.obolibrary.org/obo/UBERON_6005831,insect dorsal imaginal precursor, +http://purl.obolibrary.org/obo/UBERON_6005913,insect arista lateral, +http://purl.obolibrary.org/obo/UBERON_6006011,insect pharate adult, +http://purl.obolibrary.org/obo/UBERON_6006032,insect mesothoracic tergum primordium, +http://purl.obolibrary.org/obo/UBERON_6007020,insect metatarsus of male prothoracic leg, +http://purl.obolibrary.org/obo/UBERON_6007045,insect trunk ectoderm, +http://purl.obolibrary.org/obo/UBERON_6007046,insect dorsal ectoderm derivative, +http://purl.obolibrary.org/obo/UBERON_6007070,insect centro-posterior medial synaptic neuropil domain,centro-posterior medial neuropil +http://purl.obolibrary.org/obo/UBERON_6007070,insect centro-posterior medial synaptic neuropil domain,centro-posterior medial synaptic neuropil domain +http://purl.obolibrary.org/obo/UBERON_6007070,insect centro-posterior medial synaptic neuropil domain,larval central complex +http://purl.obolibrary.org/obo/UBERON_6007116,insect presumptive embryonic/larval system, +http://purl.obolibrary.org/obo/UBERON_6007145,insect adult protocerebrum, +http://purl.obolibrary.org/obo/UBERON_6007149,segment of antenna, +http://purl.obolibrary.org/obo/UBERON_6007150,insect segment of leg, +http://purl.obolibrary.org/obo/UBERON_6007231,insect external sensillum, +http://purl.obolibrary.org/obo/UBERON_6007232,insect eo-type sensillum, +http://purl.obolibrary.org/obo/UBERON_6007233,insect internal sensillum, +http://purl.obolibrary.org/obo/UBERON_6007240,insect embryonic/larval sensillum,larval sensillum +http://purl.obolibrary.org/obo/UBERON_6007242,insect embryonic/larval head sensillum, +http://purl.obolibrary.org/obo/UBERON_6007245,insect cuticular specialization, +http://purl.obolibrary.org/obo/UBERON_6007248,insect chorionic specialization, +http://purl.obolibrary.org/obo/UBERON_6007280,insect embryonic/larval head sense organ,larval head sense organ +http://purl.obolibrary.org/obo/UBERON_6007284,insect region of integument, +http://purl.obolibrary.org/obo/UBERON_6007285,insect segmental subdivision of integument, +http://purl.obolibrary.org/obo/UBERON_6007288,insect integumentary specialisation, +http://purl.obolibrary.org/obo/UBERON_6007289,insect tagmatic subdivision of integument, +http://purl.obolibrary.org/obo/UBERON_6007331,insect segmental subdivision of organ system, +http://purl.obolibrary.org/obo/UBERON_6007373,insect internal sense organ, +http://purl.obolibrary.org/obo/UBERON_6007424,insect epithelial furrow, +http://purl.obolibrary.org/obo/UBERON_6016022,insect abdominal histoblast primordium, +http://purl.obolibrary.org/obo/UBERON_6017021,insect abdominal histoblast anlage, +http://purl.obolibrary.org/obo/UBERON_6025991,insect anterior ectoderm derivative, +http://purl.obolibrary.org/obo/UBERON_6025993,insect ventral ectoderm derivative, +http://purl.obolibrary.org/obo/UBERON_6026000,insect trunk mesoderm derivative, +http://purl.obolibrary.org/obo/UBERON_6026002,insect visceral mesoderm derivative, +http://purl.obolibrary.org/obo/UBERON_6040003,insect non-connected developing system, +http://purl.obolibrary.org/obo/UBERON_6040005,insect synaptic neuropil, +http://purl.obolibrary.org/obo/UBERON_6040007,insect synaptic neuropil domain, +http://purl.obolibrary.org/obo/UBERON_6041000,insect synaptic neuropil block,level 1 neuropil +http://purl.obolibrary.org/obo/UBERON_6100153,insect sensilla row, +http://purl.obolibrary.org/obo/UBERON_6110636,insect adult cerebral ganglion,CRG +http://purl.obolibrary.org/obo/UBERON_6110746,insect presumptive prothoracic metatarsus, +http://purl.obolibrary.org/obo/UBERON_6110811,insect presumptive arista, +http://purl.obolibrary.org/obo/UBERON_7500046,proximal-most point of head of femur, +http://purl.obolibrary.org/obo/UBERON_7500047,proximal-most point of head of humerus, +http://purl.obolibrary.org/obo/UBERON_7500048,proximal-most point of ventral tubercle of humerus, +http://purl.obolibrary.org/obo/UBERON_7500049,proximal-most point of greater trochanter of femur, +http://purl.obolibrary.org/obo/UBERON_7500052,lower fourth secondary molar tooth,lower fourth permanent molar tooth +http://purl.obolibrary.org/obo/UBERON_7500053,lower fourth secondary premolar tooth,lower fourth permanent premolar tooth +http://purl.obolibrary.org/obo/UBERON_7500054,lower third secondary premolar tooth,lower third permanent premolar tooth +http://purl.obolibrary.org/obo/UBERON_7500055,molar tooth 4,fourth molar tooth +http://purl.obolibrary.org/obo/UBERON_7500055,molar tooth 4,molar 4 +http://purl.obolibrary.org/obo/UBERON_7500055,molar tooth 4,molar 4 tooth +http://purl.obolibrary.org/obo/UBERON_7500056,premolar 3,premolar tooth 3 +http://purl.obolibrary.org/obo/UBERON_7500056,premolar 3,third premolar tooth +http://purl.obolibrary.org/obo/UBERON_7500057,upper fourth secondary molar tooth,upper fourth permanent molar tooth +http://purl.obolibrary.org/obo/UBERON_7500058,upper fourth secondary premolar tooth,upper fourth permanent premolar tooth +http://purl.obolibrary.org/obo/UBERON_7500059,upper third secondary premolar tooth,upper third permanent premolar tooth +http://purl.obolibrary.org/obo/UBERON_7500061,trochlear ridge of humerus, +http://purl.obolibrary.org/obo/UBERON_7500062,tibial tuberosity,fossa digitalis +http://purl.obolibrary.org/obo/UBERON_7500063,trochlea of talus,trochlea for tibia +http://purl.obolibrary.org/obo/UBERON_7500063,trochlea of talus,trochlea of astragalus +http://purl.obolibrary.org/obo/UBERON_7500063,trochlea of talus,trochlea tali +http://purl.obolibrary.org/obo/UBERON_7500064,trochlear groove of talus,trochlear groove of astragalus +http://purl.obolibrary.org/obo/UBERON_7500065,condyle of talus,condyle of astragalus +http://purl.obolibrary.org/obo/UBERON_7500066,medial condyle of talus,medial condyle of astragalus +http://purl.obolibrary.org/obo/UBERON_7500067,lateral condyle of talus,lateral condyle of astragalus +http://purl.obolibrary.org/obo/UBERON_7500068,ridge of medial condyle of talus,ridge of medial condyle of astragalus +http://purl.obolibrary.org/obo/UBERON_7500069,ridge of lateral condyle of talus,ridge of lateral condyle of astragalus +http://purl.obolibrary.org/obo/UBERON_7500070,sulcus tali,sulcus for flexor hallucis longus tendon +http://purl.obolibrary.org/obo/UBERON_7500071,rostrum, +http://purl.obolibrary.org/obo/UBERON_7500073,left nasal bone, +http://purl.obolibrary.org/obo/UBERON_7500074,right nasal bone, +http://purl.obolibrary.org/obo/UBERON_7500075,left zygomatic arch, +http://purl.obolibrary.org/obo/UBERON_7500076,right zygomatic arch, +http://purl.obolibrary.org/obo/UBERON_7500078,styloid process of radius,radial condyle +http://purl.obolibrary.org/obo/UBERON_7500078,styloid process of radius,radial styloid process +http://purl.obolibrary.org/obo/UBERON_7500079,ulnar notch of radius,sigmoid cavity +http://purl.obolibrary.org/obo/UBERON_7500079,ulnar notch of radius,ulnar condyle of radius +http://purl.obolibrary.org/obo/UBERON_7500080,articular surface for carpals,distal articular surface of radius +http://purl.obolibrary.org/obo/UBERON_7500081,articular surface for the tibia on the talus, +http://purl.obolibrary.org/obo/UBERON_7500083,greater palatine foramen, +http://purl.obolibrary.org/obo/UBERON_7500084,lesser palatine foramen, +http://purl.obolibrary.org/obo/UBERON_7500085,endodontium,endodont +http://purl.obolibrary.org/obo/UBERON_7500085,endodontium,pulp-dentin complex +http://purl.obolibrary.org/obo/UBERON_7500089,posterior articular facet for talus of calcaneus,proximal facet of calcaneum +http://purl.obolibrary.org/obo/UBERON_7500091,middle articular facet for talus of calcaneus, +http://purl.obolibrary.org/obo/UBERON_7500092,anterior articular facet for talus of calcaneus,distal facet of calcaneum +http://purl.obolibrary.org/obo/UBERON_7500093,calcaneal body,corpus calcanei +http://purl.obolibrary.org/obo/UBERON_7500094,tubercle of calcaneus,calcaneal tubercle +http://purl.obolibrary.org/obo/UBERON_7500094,tubercle of calcaneus,calcaneal tuberosity +http://purl.obolibrary.org/obo/UBERON_7500094,tubercle of calcaneus,tuberosity of calcaneus +http://purl.obolibrary.org/obo/UBERON_7500095,lateral tubercle of calcaneus,lateral tuberosity of calcaneus +http://purl.obolibrary.org/obo/UBERON_7500096,medial tubercle of calcaneus,medial tuberosity of calcaneus +http://purl.obolibrary.org/obo/UBERON_7500101,antorbital notch, +http://purl.obolibrary.org/obo/UBERON_7500102,preorbital bone region, +http://purl.obolibrary.org/obo/UBERON_7500103,preorbital fossa, +http://purl.obolibrary.org/obo/UBERON_7500105,coracoid process of calcaneus,processus coracoideus of calcaneus +http://purl.obolibrary.org/obo/UBERON_7500106,hormion, +http://purl.obolibrary.org/obo/UBERON_7500107,sphenovomerine suture, +http://purl.obolibrary.org/obo/UBERON_7500108,cheek tooth,cheektooth +http://purl.obolibrary.org/obo/UBERON_7500109,basion, +http://purl.obolibrary.org/obo/UBERON_7500110,synsphenion, +http://purl.obolibrary.org/obo/UBERON_7500111,intersphenoid suture,intersphenoidal synchondrosis +http://purl.obolibrary.org/obo/UBERON_7500112,prosthion,alveolar point +http://purl.obolibrary.org/obo/UBERON_7500112,prosthion,prostheon +http://purl.obolibrary.org/obo/UBERON_7500113,akrokranion, +http://purl.obolibrary.org/obo/UBERON_7500114,cheek tooth row,cheektooth row +http://purl.obolibrary.org/obo/UBERON_7500115,sagittal crest,sagittal ridge +http://purl.obolibrary.org/obo/UBERON_7500117,opisthocranion,opisthokranion +http://purl.obolibrary.org/obo/UBERON_7500118,opisthion, +http://purl.obolibrary.org/obo/UBERON_7500119,ectorbitale, +http://purl.obolibrary.org/obo/UBERON_7500120,zygion, +http://purl.obolibrary.org/obo/UBERON_7500121,paroccipital process,estiloid process +http://purl.obolibrary.org/obo/UBERON_7500121,paroccipital process,paracondylar +http://purl.obolibrary.org/obo/UBERON_7500121,paroccipital process,parajugular +http://purl.obolibrary.org/obo/UBERON_7500121,paroccipital process,paramastoid process +http://purl.obolibrary.org/obo/UBERON_7500121,paroccipital process,paraoccipital +http://purl.obolibrary.org/obo/UBERON_7500123,incisor tooth 3,third incisor tooth +http://purl.obolibrary.org/obo/UBERON_7500124,incisor tooth 4,fourth incisor tooth +http://purl.obolibrary.org/obo/UBERON_7500125,incisor tooth 5,fifth incisor tooth +http://purl.obolibrary.org/obo/UBERON_7500126,molar tooth 5,fifth molar tooth +http://purl.obolibrary.org/obo/UBERON_7500127,otion, +http://purl.obolibrary.org/obo/UBERON_7500128,cranial temporal crest, +http://purl.obolibrary.org/obo/UBERON_8000004,central retina, +http://purl.obolibrary.org/obo/UBERON_8000005,Henle's fiber layer,HFL +http://purl.obolibrary.org/obo/UBERON_8000005,Henle's fiber layer,Henle fiber layer +http://purl.obolibrary.org/obo/UBERON_8000005,Henle's fiber layer,nerve fiber layer of Henle +http://purl.obolibrary.org/obo/UBERON_8000006,left side of back, +http://purl.obolibrary.org/obo/UBERON_8000007,right side of back, +http://purl.obolibrary.org/obo/UBERON_8000008,cementocyte lacuna, +http://purl.obolibrary.org/obo/UBERON_8000009,Purkinje fiber network,Purkinje fibre network +http://purl.obolibrary.org/obo/UBERON_8300000,skin of scalp,adult scalp zone of skin +http://purl.obolibrary.org/obo/UBERON_8300000,skin of scalp,scalp skin +http://purl.obolibrary.org/obo/UBERON_8300000,skin of scalp,scalp zone of skin +http://purl.obolibrary.org/obo/UBERON_8300000,skin of scalp,zone of skin of adult scalp +http://purl.obolibrary.org/obo/UBERON_8300000,skin of scalp,zone of skin of scalp +http://purl.obolibrary.org/obo/UBERON_8300001,right forelimb, +http://purl.obolibrary.org/obo/UBERON_8300002,left forelimb, +http://purl.obolibrary.org/obo/UBERON_8300003,right hindlimb, +http://purl.obolibrary.org/obo/UBERON_8300004,left hindlimb, +http://purl.obolibrary.org/obo/UBERON_8400001,hepatic acinus zone 1,hepatic acinus periportal zone +http://purl.obolibrary.org/obo/UBERON_8400002,hepatic acinus zone 3,hepatic acinus centrilobular zone +http://purl.obolibrary.org/obo/UBERON_8400002,hepatic acinus zone 3,hepatic acinus pericentral zone +http://purl.obolibrary.org/obo/UBERON_8400002,hepatic acinus zone 3,hepatic acinus perivenous zone +http://purl.obolibrary.org/obo/UBERON_8400003,hepatic acinus zone 2,hepatic acinus intermediary zone +http://purl.obolibrary.org/obo/UBERON_8400005,metabolic zone of liver,hepatic acinus metabolic zone +http://purl.obolibrary.org/obo/UBERON_8400006,liver lobule periportal region, +http://purl.obolibrary.org/obo/UBERON_8400007,liver lobule centrilobular region, +http://purl.obolibrary.org/obo/UBERON_8400008,liver lobule midzonal region, +http://purl.obolibrary.org/obo/UBERON_8400021,liver serosa,serosa of liver +http://purl.obolibrary.org/obo/UBERON_8400021,liver serosa,tunica serosa hepatis +http://purl.obolibrary.org/obo/UBERON_8400023,liver subserosa,hepatic subserosa +http://purl.obolibrary.org/obo/UBERON_8400023,liver subserosa,subserosal tissue of liver +http://purl.obolibrary.org/obo/UBERON_8400023,liver subserosa,subserous layer of liver +http://purl.obolibrary.org/obo/UBERON_8400023,liver subserosa,tela subserosa (hepar) +http://purl.obolibrary.org/obo/UBERON_8400023,liver subserosa,tela subserosa hepatis +http://purl.obolibrary.org/obo/UBERON_8400024,subcapsular region of liver,liver subcapsular region +http://purl.obolibrary.org/obo/UBERON_8400024,subcapsular region of liver,liver subcapsular tissue +http://purl.obolibrary.org/obo/UBERON_8400024,subcapsular region of liver,subcapsular tissue of liver +http://purl.obolibrary.org/obo/UBERON_8410000,duodeno-jejunal junction,duodeno-jejunal flexure +http://purl.obolibrary.org/obo/UBERON_8410000,duodeno-jejunal junction,duodenojejunal flexure +http://purl.obolibrary.org/obo/UBERON_8410000,duodeno-jejunal junction,duodenojejunal junction +http://purl.obolibrary.org/obo/UBERON_8410000,duodeno-jejunal junction,flexura duodenojejunalis +http://purl.obolibrary.org/obo/UBERON_8410001,small intestine venule,venule of small intestine +http://purl.obolibrary.org/obo/UBERON_8410002,small intestine lymphatic vessel,lymphatic vessel of small intestine +http://purl.obolibrary.org/obo/UBERON_8410003,ductal plate, +http://purl.obolibrary.org/obo/UBERON_8410004,small intestine arteriole,arteriole of small intestine +http://purl.obolibrary.org/obo/UBERON_8410004,small intestine arteriole,arteriole of villus of small intestine +http://purl.obolibrary.org/obo/UBERON_8410004,small intestine arteriole,small intestine villus arteriole +http://purl.obolibrary.org/obo/UBERON_8410005,transitional glandular epithelium of anorectum,anorectum transitional glandular epithelium +http://purl.obolibrary.org/obo/UBERON_8410005,transitional glandular epithelium of anorectum,glandular epithelium of anal transition zone +http://purl.obolibrary.org/obo/UBERON_8410005,transitional glandular epithelium of anorectum,glandular epithelium of the anal transition zone +http://purl.obolibrary.org/obo/UBERON_8410006,submucous nerve plexus of anorectum,anorectum submucous nerve plexus +http://purl.obolibrary.org/obo/UBERON_8410007,myenteric nerve plexus of anorectum,anorectum myenteric nerve plexus +http://purl.obolibrary.org/obo/UBERON_8410008,venule of anorectum,anorectum venule +http://purl.obolibrary.org/obo/UBERON_8410009,arteriole of anorectum,anorectum arteriole +http://purl.obolibrary.org/obo/UBERON_8410010,fimbria of uterine tube,fimbria of fallopian tube +http://purl.obolibrary.org/obo/UBERON_8410010,fimbria of uterine tube,fimbriae of fallopian tube +http://purl.obolibrary.org/obo/UBERON_8410010,fimbria of uterine tube,fimbriae of uterine tube +http://purl.obolibrary.org/obo/UBERON_8410011,myenteric nerve plexus of appendix,myenteric nerve plexus of appendix vermiformis +http://purl.obolibrary.org/obo/UBERON_8410011,myenteric nerve plexus of appendix,myenteric nerve plexus of vermiform appendix +http://purl.obolibrary.org/obo/UBERON_8410012,submucous nerve plexus of appendix,submucous nerve plexus of appendix vermiformis +http://purl.obolibrary.org/obo/UBERON_8410012,submucous nerve plexus of appendix,submucous nerve plexus of vermiform appendix +http://purl.obolibrary.org/obo/UBERON_8410013,afferent lymphatic vessel valve,valve of afferent lymphatic vessel +http://purl.obolibrary.org/obo/UBERON_8410014,efferent lymphatic vessel valve,valve of efferent lymphatic vessel +http://purl.obolibrary.org/obo/UBERON_8410015,arteriole of colon, +http://purl.obolibrary.org/obo/UBERON_8410016,descending sigmoid junction,descending-sigmoid colon junction +http://purl.obolibrary.org/obo/UBERON_8410016,descending sigmoid junction,descending-sigmoid junction +http://purl.obolibrary.org/obo/UBERON_8410017,left colic vein, +http://purl.obolibrary.org/obo/UBERON_8410018,right colic vein, +http://purl.obolibrary.org/obo/UBERON_8410019,jejuno-ileal junction,jejunoileal junction +http://purl.obolibrary.org/obo/UBERON_8410020,venule of appendix,venule of vermiform appendix +http://purl.obolibrary.org/obo/UBERON_8410020,venule of appendix,vermiform appendix venule +http://purl.obolibrary.org/obo/UBERON_8410021,inguinal region skin,groin skin +http://purl.obolibrary.org/obo/UBERON_8410021,inguinal region skin,inguinal skin +http://purl.obolibrary.org/obo/UBERON_8410021,inguinal region skin,skin of groin +http://purl.obolibrary.org/obo/UBERON_8410021,inguinal region skin,skin of inguinal region +http://purl.obolibrary.org/obo/UBERON_8410021,inguinal region skin,zone of skin of groin +http://purl.obolibrary.org/obo/UBERON_8410021,inguinal region skin,zone of skin of inguinal region +http://purl.obolibrary.org/obo/UBERON_8410022,left colic artery, +http://purl.obolibrary.org/obo/UBERON_8410023,right colic artery, +http://purl.obolibrary.org/obo/UBERON_8410024,intestinal junction,junction of intestine +http://purl.obolibrary.org/obo/UBERON_8410025,transition zone of prostate,prostate transition zone +http://purl.obolibrary.org/obo/UBERON_8410026,peripheral zone of prostate,prostate peripheral zone +http://purl.obolibrary.org/obo/UBERON_8410027,central zone of prostate,prostate central zone +http://purl.obolibrary.org/obo/UBERON_8410028,arteriole of appendix,appendix vermiformis arteriole +http://purl.obolibrary.org/obo/UBERON_8410028,arteriole of appendix,arteriole of appendix vermiformis +http://purl.obolibrary.org/obo/UBERON_8410028,arteriole of appendix,arteriole of vermiform appendix +http://purl.obolibrary.org/obo/UBERON_8410028,arteriole of appendix,vermiform appendix arteriole +http://purl.obolibrary.org/obo/UBERON_8410029,lymphatic capillary of appendix,lymphatic capillary of appendix vermiformis +http://purl.obolibrary.org/obo/UBERON_8410029,lymphatic capillary of appendix,lymphatic capillary of vermiform appendix +http://purl.obolibrary.org/obo/UBERON_8410030,lymphatic vessel of appendix,lymphatic vessel of appendix vermiformis +http://purl.obolibrary.org/obo/UBERON_8410030,lymphatic vessel of appendix,lymphatic vessel of vermiform appendix +http://purl.obolibrary.org/obo/UBERON_8410031,muscularis mucosae of appendix,muscularis mucosae of appendix vermiformis +http://purl.obolibrary.org/obo/UBERON_8410031,muscularis mucosae of appendix,muscularis mucosae of vermiform appendix +http://purl.obolibrary.org/obo/UBERON_8410032,trabecular sinus of lymph node,lymph node trabecular sinus +http://purl.obolibrary.org/obo/UBERON_8410033,lymph node vein,hilar vein of lymph node +http://purl.obolibrary.org/obo/UBERON_8410033,lymph node vein,vein of lymph node +http://purl.obolibrary.org/obo/UBERON_8410034,lymph node artery,artery of lymph node +http://purl.obolibrary.org/obo/UBERON_8410034,lymph node artery,hilar artery of lymph node +http://purl.obolibrary.org/obo/UBERON_8410035,medullary arteriole of lymph node,arteriole of medulla of lymph node +http://purl.obolibrary.org/obo/UBERON_8410036,medullary venule of lymph node,venule of medulla of lymph node +http://purl.obolibrary.org/obo/UBERON_8410037,high endothelial venule, +http://purl.obolibrary.org/obo/UBERON_8410038,high endothelial venule of lymph node,lymph node high endothelial venule +http://purl.obolibrary.org/obo/UBERON_8410039,high endothelial venule of appendix,appendix high endothelial venule +http://purl.obolibrary.org/obo/UBERON_8410039,high endothelial venule of appendix,high endothelial venule of appendix vermiformis +http://purl.obolibrary.org/obo/UBERON_8410039,high endothelial venule of appendix,high endothelial venule of vermiform appendix +http://purl.obolibrary.org/obo/UBERON_8410040,high endothelial venule of small intestine Peyer's patch,high endothelial venule of Peyer's patch of small intestine +http://purl.obolibrary.org/obo/UBERON_8410041,venule of lymph node,lymph node venule +http://purl.obolibrary.org/obo/UBERON_8410042,arteriole of lymph node,lymph node arteriole +http://purl.obolibrary.org/obo/UBERON_8410043,bronchus submucosal gland,bronchial submucosal gland +http://purl.obolibrary.org/obo/UBERON_8410043,bronchus submucosal gland,submucosal bronchial gland +http://purl.obolibrary.org/obo/UBERON_8410043,bronchus submucosal gland,submucosal bronchus gland +http://purl.obolibrary.org/obo/UBERON_8410044,vein of appendix,vein of appendix vermiformis +http://purl.obolibrary.org/obo/UBERON_8410044,vein of appendix,vein of vermiform appendix +http://purl.obolibrary.org/obo/UBERON_8410045,artery of appendix,artery of appendix vermiformis +http://purl.obolibrary.org/obo/UBERON_8410045,artery of appendix,artery of vermiform appendix +http://purl.obolibrary.org/obo/UBERON_8410046,appendix smooth muscle circular layer,smooth muscle circular layer of appendix +http://purl.obolibrary.org/obo/UBERON_8410046,appendix smooth muscle circular layer,smooth muscle circular layer of appendix vermiformis +http://purl.obolibrary.org/obo/UBERON_8410046,appendix smooth muscle circular layer,smooth muscle circular layer of vermiform appendix +http://purl.obolibrary.org/obo/UBERON_8410047,appendix smooth muscle longitudinal layer,smooth muscle longitudinal layer of appendix +http://purl.obolibrary.org/obo/UBERON_8410047,appendix smooth muscle longitudinal layer,smooth muscle longitudinal layer of appendix vermiformis +http://purl.obolibrary.org/obo/UBERON_8410047,appendix smooth muscle longitudinal layer,smooth muscle longitudinal layer of vermiform appendix +http://purl.obolibrary.org/obo/UBERON_8410048,venule of colon, +http://purl.obolibrary.org/obo/UBERON_8410049,serosal nerve fiber of appendix,nerve fiber of serosa of appendix +http://purl.obolibrary.org/obo/UBERON_8410049,serosal nerve fiber of appendix,nerve fibre of serosa of appendix +http://purl.obolibrary.org/obo/UBERON_8410049,serosal nerve fiber of appendix,serosal nerve fiber of appendix vermiformis +http://purl.obolibrary.org/obo/UBERON_8410049,serosal nerve fiber of appendix,serosal nerve fiber of vermiform appendix +http://purl.obolibrary.org/obo/UBERON_8410049,serosal nerve fiber of appendix,serosal nerve fibre of appendix +http://purl.obolibrary.org/obo/UBERON_8410049,serosal nerve fiber of appendix,serosal nerve fibre of appendix vermiformis +http://purl.obolibrary.org/obo/UBERON_8410049,serosal nerve fiber of appendix,serosal nerve fibre of vermiform appendix +http://purl.obolibrary.org/obo/UBERON_8410050,anorectum, +http://purl.obolibrary.org/obo/UBERON_8410051,lymphatic vessel of colon, +http://purl.obolibrary.org/obo/UBERON_8410052,lymph node germinal center light zone,light zone of lymph node germinal center +http://purl.obolibrary.org/obo/UBERON_8410053,lymph node germinal center dark zone,dark zone of lymph node germinal center +http://purl.obolibrary.org/obo/UBERON_8410054,lymphatic capillary of colon, +http://purl.obolibrary.org/obo/UBERON_8410055,lymphatic capillary of anorectum, +http://purl.obolibrary.org/obo/UBERON_8410056,capillary of anorectum,blood vessel capillary of anorectum +http://purl.obolibrary.org/obo/UBERON_8410057,capillary of colon,blood vessel capillary of colon +http://purl.obolibrary.org/obo/UBERON_8410058,Myenteric nerve plexus of colon, +http://purl.obolibrary.org/obo/UBERON_8410058,myenteric nerve plexus of colon, +http://purl.obolibrary.org/obo/UBERON_8410059,Submucous nerve plexus of colon, +http://purl.obolibrary.org/obo/UBERON_8410059,submucous nerve plexus of colon, +http://purl.obolibrary.org/obo/UBERON_8410060,colon smooth muscle circular layer,smooth muscle circular layer of colon +http://purl.obolibrary.org/obo/UBERON_8410061,Longitudinal muscle layer of colon,smooth muscle longitudinal layer of colon +http://purl.obolibrary.org/obo/UBERON_8410061,colon smooth muscle longitudinal layer,smooth muscle longitudinal layer of colon +http://purl.obolibrary.org/obo/UBERON_8410062,parasympathetic cholinergic nerve, +http://purl.obolibrary.org/obo/UBERON_8410063,myenteric nerve plexus of small intestine, +http://purl.obolibrary.org/obo/UBERON_8410064,submucous nerve plexus of small intestine, +http://purl.obolibrary.org/obo/UBERON_8410065,lymph node follicle marginal zone,marginal zone of lymph node follicle +http://purl.obolibrary.org/obo/UBERON_8410066,lymph node paracortex, +http://purl.obolibrary.org/obo/UBERON_8410067,lymph node interfollicular cortex,interfollicular cortex of lymph node +http://purl.obolibrary.org/obo/UBERON_8410068,capillary of small intestine,blood vessel capillary of small intestine +http://purl.obolibrary.org/obo/UBERON_8410068,capillary of small intestine,small intestine capillary +http://purl.obolibrary.org/obo/UBERON_8410069,lymphoid nodule,avian lymphoid nodule +http://purl.obolibrary.org/obo/UBERON_8410070,levator costarum,levator costarum muscle +http://purl.obolibrary.org/obo/UBERON_8410070,levator costarum,levatores costarum +http://purl.obolibrary.org/obo/UBERON_8410070,levator costarum,levatores costarum muscles +http://purl.obolibrary.org/obo/UBERON_8410070,levator costarum,musculi levatores costarum +http://purl.obolibrary.org/obo/UBERON_8410071,subcapsular sinus ceiling,ceiling of subcapsular sinus of lymph node +http://purl.obolibrary.org/obo/UBERON_8410071,subcapsular sinus ceiling,floor of capsule of lymph node +http://purl.obolibrary.org/obo/UBERON_8410071,subcapsular sinus ceiling,subcapsular sinus of lymph node ceiling +http://purl.obolibrary.org/obo/UBERON_8410072,subcapsular sinus floor,ceiling of cortex of lymph node +http://purl.obolibrary.org/obo/UBERON_8410072,subcapsular sinus floor,floor of subcapsular sinus of lymph node +http://purl.obolibrary.org/obo/UBERON_8410072,subcapsular sinus floor,subcapsular sinus of lymph node floor +http://purl.obolibrary.org/obo/UBERON_8410073,medullary region of kidney,kidney medullary region +http://purl.obolibrary.org/obo/UBERON_8410074,lymph node paracortical sinus, +http://purl.obolibrary.org/obo/UBERON_8410075,lymph node paracortical cord, +http://purl.obolibrary.org/obo/UBERON_8410076,glomus coccygeum,Luschka's gland +http://purl.obolibrary.org/obo/UBERON_8410076,glomus coccygeum,coccygeal body +http://purl.obolibrary.org/obo/UBERON_8410076,glomus coccygeum,coccygeal gland +http://purl.obolibrary.org/obo/UBERON_8410076,glomus coccygeum,coccygeal glomus +http://purl.obolibrary.org/obo/UBERON_8410076,glomus coccygeum,gland of Luschka +http://purl.obolibrary.org/obo/UBERON_8410076,glomus coccygeum,glands of Luschka +http://purl.obolibrary.org/obo/UBERON_8410076,glomus coccygeum,glomus body +http://purl.obolibrary.org/obo/UBERON_8410077,airway submucosal gland,respiratory tract submucosal gland +http://purl.obolibrary.org/obo/UBERON_8410077,airway submucosal gland,submucosal gland of respiratory tract +http://purl.obolibrary.org/obo/UBERON_8410078,right lymphatic duct,ductus lymphaticus dexter +http://purl.obolibrary.org/obo/UBERON_8410079,red bone marrow of iliac crest,iliac crest red bone marrow +http://purl.obolibrary.org/obo/UBERON_8410080,red bone marrow of sternum,sternum red bone marrow +http://purl.obolibrary.org/obo/UBERON_8410081,blood microvessel,microvasculature +http://purl.obolibrary.org/obo/UBERON_8410081,blood microvessel,microvessel +http://purl.obolibrary.org/obo/UBERON_8420000,hair of scalp, +http://purl.obolibrary.org/obo/UBERON_8440000,cortical layer II/III,cerebral cortex layer 2/3 +http://purl.obolibrary.org/obo/UBERON_8440000,cortical layer II/III,neocortex layer 2/3 +http://purl.obolibrary.org/obo/UBERON_8440001,cortical layer IV/V,cerebral cortex layer 4/5 +http://purl.obolibrary.org/obo/UBERON_8440001,cortical layer IV/V,neocortex layer 4/5 +http://purl.obolibrary.org/obo/UBERON_8440002,cortical layer V/VI,cerebral cortex layer 5/6 +http://purl.obolibrary.org/obo/UBERON_8440002,cortical layer V/VI,neocortex layer 5/6 +http://purl.obolibrary.org/obo/UBERON_8440003,cortical layer VIb,cerebral cortex layer 6b +http://purl.obolibrary.org/obo/UBERON_8440003,cortical layer VIb,neocortex layer 6b +http://purl.obolibrary.org/obo/UBERON_8440004,laminar subdivision of the cortex, +http://purl.obolibrary.org/obo/UBERON_8440005,rostral periventricular region of the third ventricle,RP3V +http://purl.obolibrary.org/obo/UBERON_8440007,"periventricular hypothalamic nucleus, anterior part",PVa +http://purl.obolibrary.org/obo/UBERON_8440008,"periventricular hypothalamic nucleus, intermediate part",PVi +http://purl.obolibrary.org/obo/UBERON_8440010,Brodmann (1909) area 17,BA17 +http://purl.obolibrary.org/obo/UBERON_8440010,Brodmann (1909) area 17,Brodmann area 17 +http://purl.obolibrary.org/obo/UBERON_8440010,Brodmann (1909) area 17,"Brodmann area 17, striate" +http://purl.obolibrary.org/obo/UBERON_8440010,Brodmann (1909) area 17,area 17 of Brodmann-1909 +http://purl.obolibrary.org/obo/UBERON_8440010,Brodmann (1909) area 17,b09-17 +http://purl.obolibrary.org/obo/UBERON_8440010,Brodmann (1909) area 17,primate striate cortex +http://purl.obolibrary.org/obo/UBERON_8440011,cortical visual area, +http://purl.obolibrary.org/obo/UBERON_8440012,cerebral nuclei,CNU +http://purl.obolibrary.org/obo/UBERON_8440013,fasciola cinerea,FC +http://purl.obolibrary.org/obo/UBERON_8440014,ventrolateral preoptic nucleus,VLPO +http://purl.obolibrary.org/obo/UBERON_8440014,ventrolateral preoptic nucleus,intermediate nucleus of the preoptic area (IPA) +http://purl.obolibrary.org/obo/UBERON_8440015,noradrenergic cell groups, +http://purl.obolibrary.org/obo/UBERON_8440016,noradrenergic cell group A1, +http://purl.obolibrary.org/obo/UBERON_8440017,noradrenergiccell group A2, +http://purl.obolibrary.org/obo/UBERON_8440018,noradrenergic cell group A4, +http://purl.obolibrary.org/obo/UBERON_8440019,noradrenergic cell group A5, +http://purl.obolibrary.org/obo/UBERON_8440021,noradrenergic cell group A7, +http://purl.obolibrary.org/obo/UBERON_8440022,noradrenergic cell group A6sc, +http://purl.obolibrary.org/obo/UBERON_8440023,noradrenergic cell group Acg, +http://purl.obolibrary.org/obo/UBERON_8440024,visceral area,VISC +http://purl.obolibrary.org/obo/UBERON_8440025,parapyramidal nucleus,PPY +http://purl.obolibrary.org/obo/UBERON_8440026,"parapyramidal nucleus, deep part",PPYd +http://purl.obolibrary.org/obo/UBERON_8440027,"parapyramidal nucleus, superficial part",PPYs +http://purl.obolibrary.org/obo/UBERON_8440028,Perihypoglossal nuclei,PHY +http://purl.obolibrary.org/obo/UBERON_8440028,Perihypoglossal nuclei,nuclei perihypoglossales +http://purl.obolibrary.org/obo/UBERON_8440028,Perihypoglossal nuclei,perihypoglossal complex +http://purl.obolibrary.org/obo/UBERON_8440028,Perihypoglossal nuclei,perihypoglossal nuclear complex +http://purl.obolibrary.org/obo/UBERON_8440028,Perihypoglossal nuclei,satellite nuclei +http://purl.obolibrary.org/obo/UBERON_8440029,rubroreticular tract, +http://purl.obolibrary.org/obo/UBERON_8440030,striatum-like amygdalar nuclei,sAMY +http://purl.obolibrary.org/obo/UBERON_8440031,medial corticohypothalmic tract,mct +http://purl.obolibrary.org/obo/UBERON_8440032,prelimbic area,PL +http://purl.obolibrary.org/obo/UBERON_8440032,prelimbic area,PrL +http://purl.obolibrary.org/obo/UBERON_8440032,prelimbic area,prelimbic cortex +http://purl.obolibrary.org/obo/UBERON_8440033,infralimbic area,IL (brain) +http://purl.obolibrary.org/obo/UBERON_8440033,infralimbic area,ILA +http://purl.obolibrary.org/obo/UBERON_8440033,infralimbic area,infralimbic cortex +http://purl.obolibrary.org/obo/UBERON_8440034,bulbocerebellar tract,bct +http://purl.obolibrary.org/obo/UBERON_8440035,sublaterodorsal nucleus,SLD +http://purl.obolibrary.org/obo/UBERON_8440035,sublaterodorsal nucleus,sublaterodorsal tegmental nucleus +http://purl.obolibrary.org/obo/UBERON_8440036,supratrigeminal nucleus,SUT +http://purl.obolibrary.org/obo/UBERON_8440036,supratrigeminal nucleus,Vsup +http://purl.obolibrary.org/obo/UBERON_8440037,accessory facial motor nucleus,ACVII +http://purl.obolibrary.org/obo/UBERON_8440038,efferent vestibular nucleus,EV +http://purl.obolibrary.org/obo/UBERON_8440039,piriform-amygdalar area,PAA (brain) +http://purl.obolibrary.org/obo/UBERON_8440040,dorsal peduncular area,DP +http://purl.obolibrary.org/obo/UBERON_8440041,tuberal nucleus (sensu Rodentia),lateral tuberal nucleus (sensu Rodentia) +http://purl.obolibrary.org/obo/UBERON_8440042,nucleus lateralis tuberis system (sensu Teleostei),NLT system (sensu Teleostei) +http://purl.obolibrary.org/obo/UBERON_8440043,superior paraolivary nucleus,SPON +http://purl.obolibrary.org/obo/UBERON_8440044,upper layers of the cortex, +http://purl.obolibrary.org/obo/UBERON_8440045,second visual cortical area (sensu Mustela putorius furo),area 18 (sensu Mustela putorius furo) +http://purl.obolibrary.org/obo/UBERON_8440046,third visual cortical area (sensu Mustela putorius furo),area 19 (sensu Mustela putorius furo) +http://purl.obolibrary.org/obo/UBERON_8440047,fourth visual cortical area (sensu Mustela putorius furo),area 21 (sensu Mustela putorius furo) +http://purl.obolibrary.org/obo/UBERON_8440048,temporal visual area a (sensu Mustela putorius furo),area 20a (sensu Mustela putorius furo) +http://purl.obolibrary.org/obo/UBERON_8440049,temporal visual area b (sensu Mustela putorius furo),area 20b (sensu Mustela putorius furo) +http://purl.obolibrary.org/obo/UBERON_8440050,posterior parietal rostral cortical area (sensu Mustela putorius furo),PPr (sensu Mustela putorius furo) +http://purl.obolibrary.org/obo/UBERON_8440050,posterior parietal rostral cortical area (sensu Mustela putorius furo),"posterior parietal cortex, rostral part (sensu Mustela putorius furo)" +http://purl.obolibrary.org/obo/UBERON_8440051,lower layers of the cortex, +http://purl.obolibrary.org/obo/UBERON_8440052,posterior parietal caudal cortical area (sensu Mustela putorius furo),PPc (sensu Mustela putorius furo) +http://purl.obolibrary.org/obo/UBERON_8440052,posterior parietal caudal cortical area (sensu Mustela putorius furo),"posterior parietal cortex, caudal part (sensu Mustela putorius furo)" +http://purl.obolibrary.org/obo/UBERON_8440054,anteromedial lateral suprasylvian visual area (sensu Mustela putorius furo),AMLS (sensu Mustela putorius furo) +http://purl.obolibrary.org/obo/UBERON_8440055,anterolateral lateral suprasylvian visual area (sensu Mustela putorius furo),ALLS (sensu Mustela putorius furo) +http://purl.obolibrary.org/obo/UBERON_8440056,posteromedial lateral suprasylvian visual area (sensu Mustela putorius furo),PMLS (sensu Mustela putorius furo) +http://purl.obolibrary.org/obo/UBERON_8440056,posteromedial lateral suprasylvian visual area (sensu Mustela putorius furo),PPS (sensu Mustela putorius furo) +http://purl.obolibrary.org/obo/UBERON_8440056,posteromedial lateral suprasylvian visual area (sensu Mustela putorius furo),PSS (sensu Mustela putorius furo) +http://purl.obolibrary.org/obo/UBERON_8440056,posteromedial lateral suprasylvian visual area (sensu Mustela putorius furo),SSY (sensu Mustela putorius furo) +http://purl.obolibrary.org/obo/UBERON_8440056,posteromedial lateral suprasylvian visual area (sensu Mustela putorius furo),Ssy (sensu Mustela putorius furo) +http://purl.obolibrary.org/obo/UBERON_8440056,posteromedial lateral suprasylvian visual area (sensu Mustela putorius furo),suprasylvian sulcal visual area (sensu Mustela putorius furo) +http://purl.obolibrary.org/obo/UBERON_8440059,posterolateral lateral suprasylvian visual area (sensu Mustela putorius furo),PLLS (sensu Mustela putorius furo) +http://purl.obolibrary.org/obo/UBERON_8440060,dorsal lateral suprasylvian visual cortical area (sensu Mustela putorius furo),DLS (sensu Mustela putorius furo) +http://purl.obolibrary.org/obo/UBERON_8440061,ventral lateral suprasylvian visual area (sensu Mustela putorius furo),VLS (sensu Mustela putorius furo) +http://purl.obolibrary.org/obo/UBERON_8440062,posterior suprasylvian visual cortical area (sensu Mustela putorius furo),PS (sensu Mustela putorius furo) +http://purl.obolibrary.org/obo/UBERON_8440063,anterior ectosylvian visual area (sensu Mustela putorius furo),AEV (sensu Mustela putorius furo) +http://purl.obolibrary.org/obo/UBERON_8440064,spenial visual area (sensu Mustela putorius furo),SPLC (sensu Mustela putorius furo) +http://purl.obolibrary.org/obo/UBERON_8440064,spenial visual area (sensu Mustela putorius furo),SVA (sensu Mustela putorius furo) +http://purl.obolibrary.org/obo/UBERON_8440064,spenial visual area (sensu Mustela putorius furo),splenial sulcal cortex (sensu Mustela putorius furo) +http://purl.obolibrary.org/obo/UBERON_8440066,cingulate visual area (sensu Mustela putorius furo),CVA (sensu Mustela putorius furo) +http://purl.obolibrary.org/obo/UBERON_8440067,A lamina of the lateral geniculate nucleus (sensu Mustela putorius furo),A (sensu Mustela putorius furo) +http://purl.obolibrary.org/obo/UBERON_8440068,A1 lamina of the lateral geniculate nucleus (sensu Mustela putorius furo),A1(sensu Mustela putorius furo) +http://purl.obolibrary.org/obo/UBERON_8440069,C lamina of the lateral geniculate nucleus (sensu Mustela putorius furo),C (sensu Mustela putorius furo) +http://purl.obolibrary.org/obo/UBERON_8440070,Perigeniculate lamina of the lateral geniculate nucleus (sensu Mustela putorius furo),P (sensu Mustela putorius furo) +http://purl.obolibrary.org/obo/UBERON_8440072,lateral tegmental nucleus,LTN +http://purl.obolibrary.org/obo/UBERON_8440073,magnocellular reticular nucleus,MARN +http://purl.obolibrary.org/obo/UBERON_8440074,interstitial nucleus of the vestibular nerve,INV +http://purl.obolibrary.org/obo/UBERON_8440074,interstitial nucleus of the vestibular nerve,ISVe +http://purl.obolibrary.org/obo/UBERON_8440075,gustatory cortex,gustatory area +http://purl.obolibrary.org/obo/UBERON_8440076,somatomotor area, +http://purl.obolibrary.org/obo/UBERON_8440077,rhinal incisure, +http://purl.obolibrary.org/obo/UBERON_8450001,egg follicle, +http://purl.obolibrary.org/obo/UBERON_8450002,excretory system, +http://purl.obolibrary.org/obo/UBERON_8470000,placental blood, +http://purl.obolibrary.org/obo/UBERON_8470001,sublumbar lymph node, +http://purl.obolibrary.org/obo/UBERON_8470002,moderator band,septomarginal trabecula +http://purl.obolibrary.org/obo/UBERON_8480000,iliac vein smooth muscle tissue, +http://purl.obolibrary.org/obo/UBERON_8480001,capillary of brain, +http://purl.obolibrary.org/obo/UBERON_8480002,thoracic aorta smooth muscle tissue, +http://purl.obolibrary.org/obo/UBERON_8480003,iliac artery smooth muscle tissue, +http://purl.obolibrary.org/obo/UBERON_8480004,iliac vein endothelium, +http://purl.obolibrary.org/obo/UBERON_8480005,placental artery endothelium, +http://purl.obolibrary.org/obo/UBERON_8480006,mesenteric lymphatic vessel, +http://purl.obolibrary.org/obo/UBERON_8480007,placental artery, +http://purl.obolibrary.org/obo/UBERON_8480008,placental vein, +http://purl.obolibrary.org/obo/UBERON_8480009,tendon of semitendinosus,semitendinosus tendon +http://purl.obolibrary.org/obo/UBERON_8480010,perianal space, +http://purl.obolibrary.org/obo/UBERON_8480011,deep post-anal space, +http://purl.obolibrary.org/obo/UBERON_8480012,intersphincteric space, +http://purl.obolibrary.org/obo/UBERON_8480013,ischiorectal space,ischioanal space +http://purl.obolibrary.org/obo/UBERON_8480014,skin of buttock, +http://purl.obolibrary.org/obo/UBERON_8480015,supra levator space,pelvic-rectal space +http://purl.obolibrary.org/obo/UBERON_8480016,perirenal space,perinephric space +http://purl.obolibrary.org/obo/UBERON_8480017,anterior pararenal space, +http://purl.obolibrary.org/obo/UBERON_8480018,posterior pararenal space, +http://purl.obolibrary.org/obo/UBERON_8480019,perirectal space, +http://purl.obolibrary.org/obo/UBERON_8480020,perivesical space, +http://purl.obolibrary.org/obo/UBERON_8480021,prevesical space, +http://purl.obolibrary.org/obo/UBERON_8480022,piriform sinus,piriform fossa +http://purl.obolibrary.org/obo/UBERON_8480022,piriform sinus,piriform recess +http://purl.obolibrary.org/obo/UBERON_8480022,piriform sinus,pyriform fossa +http://purl.obolibrary.org/obo/UBERON_8480022,piriform sinus,pyriform recess +http://purl.obolibrary.org/obo/UBERON_8480022,piriform sinus,pyriform sinus +http://purl.obolibrary.org/obo/UBERON_8480022,piriform sinus,smuggler's fossa +http://purl.obolibrary.org/obo/UBERON_8480023,skin of lateral lumbar region of abdomen,skin of flank +http://purl.obolibrary.org/obo/UBERON_8480024,skin of sacral region, +http://purl.obolibrary.org/obo/UBERON_8480025,skin of clavicle region, +http://purl.obolibrary.org/obo/UBERON_8480026,skin of iliac crest region, +http://purl.obolibrary.org/obo/UBERON_8480027,temple,temple region +http://purl.obolibrary.org/obo/UBERON_8480028,skin of temple, +http://purl.obolibrary.org/obo/UBERON_8480029,skin of external genitalia, +http://purl.obolibrary.org/obo/UBERON_8480030,skin of breast, +http://purl.obolibrary.org/obo/UBERON_8480033,interlobular stroma of mammary gland, +http://purl.obolibrary.org/obo/UBERON_8480034,intralobular stroma of mammary gland, +http://purl.obolibrary.org/obo/UBERON_8480035,cervical transformation zone epithelium, +http://purl.obolibrary.org/obo/UBERON_8480036,posterior wall of the glottis,posterior end of the glottis +http://purl.obolibrary.org/obo/UBERON_8480036,posterior wall of the glottis,posterior glottis +http://purl.obolibrary.org/obo/UBERON_8480036,posterior wall of the glottis,posterior portion of the glottis +http://purl.obolibrary.org/obo/UBERON_8480037,subserosa of uterine tube,subserosa of fallopian tube +http://purl.obolibrary.org/obo/UBERON_8480037,subserosa of uterine tube,subserosa of oviduct +http://purl.obolibrary.org/obo/UBERON_8480038,meningeal myeloid tissue, +http://purl.obolibrary.org/obo/UBERON_8480039,Oka organ,Oka (lymphoid) organ +http://purl.obolibrary.org/obo/UBERON_8480040,ovarian fluid, +http://purl.obolibrary.org/obo/UBERON_8480041,testicular sheath,testis sheath +http://purl.obolibrary.org/obo/UBERON_8480042,menstrual fluid, +http://purl.obolibrary.org/obo/UBERON_8480043,pelvic wall, +http://purl.obolibrary.org/obo/UBERON_8480044,long bone cartilage element,long bone cartilage +http://purl.obolibrary.org/obo/UBERON_8480045,subiliac lymph node, +http://purl.obolibrary.org/obo/UBERON_8480046,mucosa of rumen,rumen mucosa +http://purl.obolibrary.org/obo/UBERON_8480047,retroauricular region,retro-auricular area +http://purl.obolibrary.org/obo/UBERON_8480047,retroauricular region,retro-auricular part of head +http://purl.obolibrary.org/obo/UBERON_8480047,retroauricular region,retro-auricular region +http://purl.obolibrary.org/obo/UBERON_8480047,retroauricular region,retroauricular area +http://purl.obolibrary.org/obo/UBERON_8480048,calf,calf of leg +http://purl.obolibrary.org/obo/UBERON_8480048,calf,posterior curral region +http://purl.obolibrary.org/obo/UBERON_8480048,calf,posterior leg region +http://purl.obolibrary.org/obo/UBERON_8480048,calf,posterior part of leg +http://purl.obolibrary.org/obo/UBERON_8480048,calf,posterior region of leg +http://purl.obolibrary.org/obo/UBERON_8480048,calf,regio cruris posterior +http://purl.obolibrary.org/obo/UBERON_8480048,calf,regio surae +http://purl.obolibrary.org/obo/UBERON_8480048,calf,sura +http://purl.obolibrary.org/obo/UBERON_8480048,calf,sural region +http://purl.obolibrary.org/obo/UBERON_8480049,front hindlimb zeugopod,anterior crural region +http://purl.obolibrary.org/obo/UBERON_8480049,front hindlimb zeugopod,anterior leg region +http://purl.obolibrary.org/obo/UBERON_8480049,front hindlimb zeugopod,anterior region of leg +http://purl.obolibrary.org/obo/UBERON_8480049,front hindlimb zeugopod,front of the lower leg +http://purl.obolibrary.org/obo/UBERON_8480049,front hindlimb zeugopod,shin +http://purl.obolibrary.org/obo/UBERON_8480050,skin of calf,skin of posterior part of leg +http://purl.obolibrary.org/obo/UBERON_8480051,thoracolumbar junction,thora-columbar junction +http://purl.obolibrary.org/obo/UBERON_8480052,skin of thoracolumbar junction, +http://purl.obolibrary.org/obo/UBERON_8480053,skin of umbilical area, +http://purl.obolibrary.org/obo/UBERON_8480054,ileocecal lymph node,ileocaecal lymph node +http://purl.obolibrary.org/obo/UBERON_8480055,subcarinal lymph node,subcarinal node +http://purl.obolibrary.org/obo/UBERON_8480056,left supraclavicular lymph node, +http://purl.obolibrary.org/obo/UBERON_8480057,right supraclavicular lymph node, +http://purl.obolibrary.org/obo/UBERON_8480058,Virchow's lymph node,Virchow's node +http://purl.obolibrary.org/obo/UBERON_8480059,perigastric lymph node,peri-gastric lymph node +http://purl.obolibrary.org/obo/UBERON_8480059,perigastric lymph node,peri-gastric node +http://purl.obolibrary.org/obo/UBERON_8480059,perigastric lymph node,perigastric node +http://purl.obolibrary.org/obo/UBERON_8480060,paraspinal region,paraspinal +http://purl.obolibrary.org/obo/UBERON_8480061,pericardial region, +http://purl.obolibrary.org/obo/UBERON_8480062,femoral head cartilage, +http://purl.obolibrary.org/obo/UBERON_8480063,dorsal iris,dorsal rim of the iris +http://purl.obolibrary.org/obo/UBERON_8480065,labial gland,labial minor salivary gland +http://purl.obolibrary.org/obo/UBERON_8480065,labial gland,labial salivary gland +http://purl.obolibrary.org/obo/UBERON_8480066,interscapular region, +http://purl.obolibrary.org/obo/UBERON_8480067,bone marrow microvessel, +http://purl.obolibrary.org/obo/UBERON_8490000,right upper third secondary molar tooth,ADA tooth 1 +http://purl.obolibrary.org/obo/UBERON_8490000,right upper third secondary molar tooth,FDI tooth 18 +http://purl.obolibrary.org/obo/UBERON_8490000,right upper third secondary molar tooth,right upper third secondary molar tooth +http://purl.obolibrary.org/obo/UBERON_8490001,right upper second secondary molar tooth,ADA tooth 2 +http://purl.obolibrary.org/obo/UBERON_8490001,right upper second secondary molar tooth,FDI tooth 17 +http://purl.obolibrary.org/obo/UBERON_8490001,right upper second secondary molar tooth,right upper second secondary molar tooth +http://purl.obolibrary.org/obo/UBERON_8490002,right upper first secondary molar tooth,ADA tooth 3 +http://purl.obolibrary.org/obo/UBERON_8490002,right upper first secondary molar tooth,FDI tooth 16 +http://purl.obolibrary.org/obo/UBERON_8490002,right upper first secondary molar tooth,right upper first secondary molar tooth +http://purl.obolibrary.org/obo/UBERON_8490003,right upper second secondary premolar tooth,ADA tooth 4 +http://purl.obolibrary.org/obo/UBERON_8490003,right upper second secondary premolar tooth,FDI tooth 15 +http://purl.obolibrary.org/obo/UBERON_8490003,right upper second secondary premolar tooth,right upper second secondary premolar tooth +http://purl.obolibrary.org/obo/UBERON_8490004,right upper first secondary premolar tooth,ADA tooth 5 +http://purl.obolibrary.org/obo/UBERON_8490004,right upper first secondary premolar tooth,FDI tooth 14 +http://purl.obolibrary.org/obo/UBERON_8490004,right upper first secondary premolar tooth,right upper first secondary premolar tooth +http://purl.obolibrary.org/obo/UBERON_8490005,right upper secondary canine tooth,ADA tooth 6 +http://purl.obolibrary.org/obo/UBERON_8490005,right upper secondary canine tooth,FDI tooth 13 +http://purl.obolibrary.org/obo/UBERON_8490005,right upper secondary canine tooth,right upper secondary canine tooth +http://purl.obolibrary.org/obo/UBERON_8490006,right upper lateral secondary incisor tooth,ADA tooth 7 +http://purl.obolibrary.org/obo/UBERON_8490006,right upper lateral secondary incisor tooth,FDI tooth 12 +http://purl.obolibrary.org/obo/UBERON_8490006,right upper lateral secondary incisor tooth,right upper lateral secondary incisor tooth +http://purl.obolibrary.org/obo/UBERON_8490007,right upper central secondary incisor tooth,ADA tooth 8 +http://purl.obolibrary.org/obo/UBERON_8490007,right upper central secondary incisor tooth,FDI tooth 11 +http://purl.obolibrary.org/obo/UBERON_8490007,right upper central secondary incisor tooth,right upper central secondary incisor tooth +http://purl.obolibrary.org/obo/UBERON_8490008,right lower third secondary molar tooth,ADA tooth 32 +http://purl.obolibrary.org/obo/UBERON_8490008,right lower third secondary molar tooth,FDI tooth 48 +http://purl.obolibrary.org/obo/UBERON_8490008,right lower third secondary molar tooth,right lower third secondary molar tooth +http://purl.obolibrary.org/obo/UBERON_8490009,right lower second secondary molar tooth,ADA tooth 31 +http://purl.obolibrary.org/obo/UBERON_8490009,right lower second secondary molar tooth,FDI tooth 47 +http://purl.obolibrary.org/obo/UBERON_8490009,right lower second secondary molar tooth,right lower second secondary molar tooth +http://purl.obolibrary.org/obo/UBERON_8490010,right lower first secondary molar tooth,ADA tooth 30 +http://purl.obolibrary.org/obo/UBERON_8490010,right lower first secondary molar tooth,FDI tooth 46 +http://purl.obolibrary.org/obo/UBERON_8490010,right lower first secondary molar tooth,right lower first secondary molar tooth +http://purl.obolibrary.org/obo/UBERON_8490011,right lower second secondary premolar tooth,ADA tooth 29 +http://purl.obolibrary.org/obo/UBERON_8490011,right lower second secondary premolar tooth,FDI tooth 45 +http://purl.obolibrary.org/obo/UBERON_8490011,right lower second secondary premolar tooth,right lower second secondary premolar tooth +http://purl.obolibrary.org/obo/UBERON_8490012,right lower first secondary premolar tooth,ADA tooth 28 +http://purl.obolibrary.org/obo/UBERON_8490012,right lower first secondary premolar tooth,FDI tooth 44 +http://purl.obolibrary.org/obo/UBERON_8490012,right lower first secondary premolar tooth,right lower first secondary premolar tooth +http://purl.obolibrary.org/obo/UBERON_8490013,right lower secondary canine tooth,ADA tooth 27 +http://purl.obolibrary.org/obo/UBERON_8490013,right lower secondary canine tooth,FDI tooth 43 +http://purl.obolibrary.org/obo/UBERON_8490013,right lower secondary canine tooth,right lower secondary canine tooth +http://purl.obolibrary.org/obo/UBERON_8490014,right lower lateral secondary incisor tooth,ADA tooth 26 +http://purl.obolibrary.org/obo/UBERON_8490014,right lower lateral secondary incisor tooth,FDI tooth 42 +http://purl.obolibrary.org/obo/UBERON_8490014,right lower lateral secondary incisor tooth,right lower lateral secondary incisor tooth +http://purl.obolibrary.org/obo/UBERON_8490015,right lower central secondary incisor tooth,ADA tooth 25 +http://purl.obolibrary.org/obo/UBERON_8490015,right lower central secondary incisor tooth,FDI tooth 41 +http://purl.obolibrary.org/obo/UBERON_8490015,right lower central secondary incisor tooth,right lower central secondary incisor tooth +http://purl.obolibrary.org/obo/UBERON_8490016,right upper second primary molar tooth,ADA tooth A +http://purl.obolibrary.org/obo/UBERON_8490016,right upper second primary molar tooth,FDI tooth 55 +http://purl.obolibrary.org/obo/UBERON_8490016,right upper second primary molar tooth,right upper second primary molar tooth +http://purl.obolibrary.org/obo/UBERON_8490017,right upper first primary molar tooth,ADA tooth B +http://purl.obolibrary.org/obo/UBERON_8490017,right upper first primary molar tooth,FDI tooth 54 +http://purl.obolibrary.org/obo/UBERON_8490017,right upper first primary molar tooth,right upper first primary molar tooth +http://purl.obolibrary.org/obo/UBERON_8490018,right upper primary canine tooth,ADA tooth C +http://purl.obolibrary.org/obo/UBERON_8490018,right upper primary canine tooth,FDI tooth 53 +http://purl.obolibrary.org/obo/UBERON_8490018,right upper primary canine tooth,right upper primary canine tooth +http://purl.obolibrary.org/obo/UBERON_8490019,right upper lateral primary incisor tooth,ADA tooth D +http://purl.obolibrary.org/obo/UBERON_8490019,right upper lateral primary incisor tooth,FDI tooth 52 +http://purl.obolibrary.org/obo/UBERON_8490019,right upper lateral primary incisor tooth,right upper lateral primary incisor tooth +http://purl.obolibrary.org/obo/UBERON_8490020,right upper central primary incisor tooth,ADA tooth E +http://purl.obolibrary.org/obo/UBERON_8490020,right upper central primary incisor tooth,FDI tooth 51 +http://purl.obolibrary.org/obo/UBERON_8490020,right upper central primary incisor tooth,right upper central primary incisor tooth +http://purl.obolibrary.org/obo/UBERON_8490021,right lower second primary molar tooth,ADA tooth T +http://purl.obolibrary.org/obo/UBERON_8490021,right lower second primary molar tooth,FDI tooth 85 +http://purl.obolibrary.org/obo/UBERON_8490021,right lower second primary molar tooth,right lower second primary molar tooth +http://purl.obolibrary.org/obo/UBERON_8490022,right lower first primary molar tooth,ADA tooth S +http://purl.obolibrary.org/obo/UBERON_8490022,right lower first primary molar tooth,FDI tooth 84 +http://purl.obolibrary.org/obo/UBERON_8490022,right lower first primary molar tooth,right lower first primary molar tooth +http://purl.obolibrary.org/obo/UBERON_8490023,right lower primary canine tooth,ADA tooth R +http://purl.obolibrary.org/obo/UBERON_8490023,right lower primary canine tooth,FDI tooth 83 +http://purl.obolibrary.org/obo/UBERON_8490023,right lower primary canine tooth,right lower primary canine tooth +http://purl.obolibrary.org/obo/UBERON_8490024,right lower lateral primary incisor tooth,ADA tooth Q +http://purl.obolibrary.org/obo/UBERON_8490024,right lower lateral primary incisor tooth,FDI tooth 82 +http://purl.obolibrary.org/obo/UBERON_8490024,right lower lateral primary incisor tooth,right lower lateral primary incisor tooth +http://purl.obolibrary.org/obo/UBERON_8490025,right lower central primary incisor tooth,ADA tooth P +http://purl.obolibrary.org/obo/UBERON_8490025,right lower central primary incisor tooth,FDI tooth 81 +http://purl.obolibrary.org/obo/UBERON_8490025,right lower central primary incisor tooth,right lower central primary incisor tooth +http://purl.obolibrary.org/obo/UBERON_8490026,left upper third secondary molar tooth,ADA tooth 16 +http://purl.obolibrary.org/obo/UBERON_8490026,left upper third secondary molar tooth,FDI tooth 28 +http://purl.obolibrary.org/obo/UBERON_8490026,left upper third secondary molar tooth,left upper third secondary molar tooth +http://purl.obolibrary.org/obo/UBERON_8490027,left upper second secondary molar tooth,ADA tooth 15 +http://purl.obolibrary.org/obo/UBERON_8490027,left upper second secondary molar tooth,FDI tooth 27 +http://purl.obolibrary.org/obo/UBERON_8490027,left upper second secondary molar tooth,left upper second secondary molar tooth +http://purl.obolibrary.org/obo/UBERON_8490028,left upper first secondary molar tooth,ADA tooth 14 +http://purl.obolibrary.org/obo/UBERON_8490028,left upper first secondary molar tooth,FDI tooth 26 +http://purl.obolibrary.org/obo/UBERON_8490028,left upper first secondary molar tooth,left upper first secondary molar tooth +http://purl.obolibrary.org/obo/UBERON_8490029,left upper second secondary premolar tooth,ADA tooth 13 +http://purl.obolibrary.org/obo/UBERON_8490029,left upper second secondary premolar tooth,FDI tooth 25 +http://purl.obolibrary.org/obo/UBERON_8490029,left upper second secondary premolar tooth,left upper second secondary premolar tooth +http://purl.obolibrary.org/obo/UBERON_8490030,left upper first secondary premolar tooth,ADA tooth 12 +http://purl.obolibrary.org/obo/UBERON_8490030,left upper first secondary premolar tooth,FDI tooth 24 +http://purl.obolibrary.org/obo/UBERON_8490030,left upper first secondary premolar tooth,left upper first secondary premolar tooth +http://purl.obolibrary.org/obo/UBERON_8490031,left upper secondary canine tooth,ADA tooth 11 +http://purl.obolibrary.org/obo/UBERON_8490031,left upper secondary canine tooth,FDI tooth 23 +http://purl.obolibrary.org/obo/UBERON_8490031,left upper secondary canine tooth,left upper secondary canine tooth +http://purl.obolibrary.org/obo/UBERON_8490032,left upper lateral secondary incisor tooth,ADA tooth 10 +http://purl.obolibrary.org/obo/UBERON_8490032,left upper lateral secondary incisor tooth,FDI tooth 22 +http://purl.obolibrary.org/obo/UBERON_8490032,left upper lateral secondary incisor tooth,left upper lateral secondary incisor tooth +http://purl.obolibrary.org/obo/UBERON_8490033,left upper central secondary incisor tooth,ADA tooth 9 +http://purl.obolibrary.org/obo/UBERON_8490033,left upper central secondary incisor tooth,FDI tooth 21 +http://purl.obolibrary.org/obo/UBERON_8490033,left upper central secondary incisor tooth,left upper central secondary incisor tooth +http://purl.obolibrary.org/obo/UBERON_8490034,left lower third secondary molar tooth,ADA tooth 17 +http://purl.obolibrary.org/obo/UBERON_8490034,left lower third secondary molar tooth,FDI tooth 38 +http://purl.obolibrary.org/obo/UBERON_8490034,left lower third secondary molar tooth,left lower third secondary molar tooth +http://purl.obolibrary.org/obo/UBERON_8490035,left lower second secondary molar tooth,ADA tooth 18 +http://purl.obolibrary.org/obo/UBERON_8490035,left lower second secondary molar tooth,FDI tooth 37 +http://purl.obolibrary.org/obo/UBERON_8490035,left lower second secondary molar tooth,left lower second secondary molar tooth +http://purl.obolibrary.org/obo/UBERON_8490036,left lower first secondary molar tooth,ADA tooth 19 +http://purl.obolibrary.org/obo/UBERON_8490036,left lower first secondary molar tooth,FDI tooth 36 +http://purl.obolibrary.org/obo/UBERON_8490036,left lower first secondary molar tooth,left lower first secondary molar tooth +http://purl.obolibrary.org/obo/UBERON_8490037,left lower second secondary premolar tooth,ADA tooth 20 +http://purl.obolibrary.org/obo/UBERON_8490037,left lower second secondary premolar tooth,FDI tooth 35 +http://purl.obolibrary.org/obo/UBERON_8490037,left lower second secondary premolar tooth,left lower second secondary premolar tooth +http://purl.obolibrary.org/obo/UBERON_8490038,left lower first secondary premolar tooth,ADA tooth 21 +http://purl.obolibrary.org/obo/UBERON_8490038,left lower first secondary premolar tooth,FDI tooth 34 +http://purl.obolibrary.org/obo/UBERON_8490038,left lower first secondary premolar tooth,left lower first secondary premolar tooth +http://purl.obolibrary.org/obo/UBERON_8490039,left lower secondary canine tooth,ADA tooth 22 +http://purl.obolibrary.org/obo/UBERON_8490039,left lower secondary canine tooth,FDI tooth 33 +http://purl.obolibrary.org/obo/UBERON_8490039,left lower secondary canine tooth,left lower secondary canine tooth +http://purl.obolibrary.org/obo/UBERON_8490040,left lower lateral secondary incisor tooth,ADA tooth 23 +http://purl.obolibrary.org/obo/UBERON_8490040,left lower lateral secondary incisor tooth,FDI tooth 32 +http://purl.obolibrary.org/obo/UBERON_8490040,left lower lateral secondary incisor tooth,left lower lateral secondary incisor tooth +http://purl.obolibrary.org/obo/UBERON_8490041,left lower central secondary incisor tooth,ADA tooth 24 +http://purl.obolibrary.org/obo/UBERON_8490041,left lower central secondary incisor tooth,FDI tooth 31 +http://purl.obolibrary.org/obo/UBERON_8490041,left lower central secondary incisor tooth,left lower central secondary incisor tooth +http://purl.obolibrary.org/obo/UBERON_8490042,left upper second primary molar tooth,ADA tooth J +http://purl.obolibrary.org/obo/UBERON_8490042,left upper second primary molar tooth,FDI tooth 65 +http://purl.obolibrary.org/obo/UBERON_8490042,left upper second primary molar tooth,left upper second primary molar tooth +http://purl.obolibrary.org/obo/UBERON_8490043,left upper first primary molar tooth,ADA tooth I +http://purl.obolibrary.org/obo/UBERON_8490043,left upper first primary molar tooth,FDI tooth 64 +http://purl.obolibrary.org/obo/UBERON_8490043,left upper first primary molar tooth,left upper first primary molar tooth +http://purl.obolibrary.org/obo/UBERON_8490044,left upper primary canine tooth,ADA tooth H +http://purl.obolibrary.org/obo/UBERON_8490044,left upper primary canine tooth,FDI tooth 63 +http://purl.obolibrary.org/obo/UBERON_8490044,left upper primary canine tooth,left upper primary canine tooth +http://purl.obolibrary.org/obo/UBERON_8490045,left upper lateral primary incisor tooth,ADA tooth G +http://purl.obolibrary.org/obo/UBERON_8490045,left upper lateral primary incisor tooth,FDI tooth 62 +http://purl.obolibrary.org/obo/UBERON_8490045,left upper lateral primary incisor tooth,left upper lateral primary incisor tooth +http://purl.obolibrary.org/obo/UBERON_8490046,left upper central primary incisor tooth,ADA tooth F +http://purl.obolibrary.org/obo/UBERON_8490046,left upper central primary incisor tooth,FDI tooth 61 +http://purl.obolibrary.org/obo/UBERON_8490046,left upper central primary incisor tooth,left upper central primary incisor tooth +http://purl.obolibrary.org/obo/UBERON_8490047,left lower second primary molar tooth,ADA tooth K +http://purl.obolibrary.org/obo/UBERON_8490047,left lower second primary molar tooth,FDI tooth 75 +http://purl.obolibrary.org/obo/UBERON_8490047,left lower second primary molar tooth,left lower second primary molar tooth +http://purl.obolibrary.org/obo/UBERON_8490048,left lower first primary molar tooth,ADA tooth L +http://purl.obolibrary.org/obo/UBERON_8490048,left lower first primary molar tooth,FDI tooth 74 +http://purl.obolibrary.org/obo/UBERON_8490048,left lower first primary molar tooth,left lower first primary molar tooth +http://purl.obolibrary.org/obo/UBERON_8490049,left lower primary canine tooth,ADA tooth M +http://purl.obolibrary.org/obo/UBERON_8490049,left lower primary canine tooth,FDI tooth 73 +http://purl.obolibrary.org/obo/UBERON_8490049,left lower primary canine tooth,left lower primary canine tooth +http://purl.obolibrary.org/obo/UBERON_8490050,left lower lateral primary incisor tooth,ADA tooth N +http://purl.obolibrary.org/obo/UBERON_8490050,left lower lateral primary incisor tooth,FDI tooth 72 +http://purl.obolibrary.org/obo/UBERON_8490050,left lower lateral primary incisor tooth,left lower lateral primary incisor tooth +http://purl.obolibrary.org/obo/UBERON_8490051,left lower central primary incisor tooth,ADA tooth O +http://purl.obolibrary.org/obo/UBERON_8490051,left lower central primary incisor tooth,FDI tooth 71 +http://purl.obolibrary.org/obo/UBERON_8490051,left lower central primary incisor tooth,left lower central primary incisor tooth +http://purl.obolibrary.org/obo/UBERON_8500000,cranial temporal line, +http://purl.obolibrary.org/obo/UBERON_8500001,euryon, +http://purl.obolibrary.org/obo/UBERON_8500002,supraorbital foramen, +http://purl.obolibrary.org/obo/UBERON_8500003,supraorbitale, +http://purl.obolibrary.org/obo/UBERON_8500004,entorbitale, +http://purl.obolibrary.org/obo/UBERON_8600000,lobular bronchiole,preterminal bronchiole +http://purl.obolibrary.org/obo/UBERON_8600001,epithelium of lobular bronchiole,epithelium of preterminal bronchiole +http://purl.obolibrary.org/obo/UBERON_8600001,epithelium of lobular bronchiole,lobular bronchiole epithelium +http://purl.obolibrary.org/obo/UBERON_8600002,mucosa of lobular bronchiole, +http://purl.obolibrary.org/obo/UBERON_8600003,smooth muscle tissue of lobular bronchiole, +http://purl.obolibrary.org/obo/UBERON_8600004,visceral muscle tissue,visceral muscle +http://purl.obolibrary.org/obo/UBERON_8600005,visceral smooth muscle tissue,smooth musculature of viscera +http://purl.obolibrary.org/obo/UBERON_8600005,visceral smooth muscle tissue,visceral smooth muscle +http://purl.obolibrary.org/obo/UBERON_8600006,visceral striated muscle tissue,striated visceral muscle tissue +http://purl.obolibrary.org/obo/UBERON_8600007,visceral transversely striated muscle tissue,transversely striated visceral muscle tissue +http://purl.obolibrary.org/obo/UBERON_8600008,visceral obliquely striated muscle tissue, +http://purl.obolibrary.org/obo/UBERON_8600009,subsegmental bronchus, +http://purl.obolibrary.org/obo/UBERON_8600010,bronchial submucosal gland ciliated duct, +http://purl.obolibrary.org/obo/UBERON_8600011,tracheal submucosal gland ciliated duct, +http://purl.obolibrary.org/obo/UBERON_8600012,submucosal gland acinus, +http://purl.obolibrary.org/obo/UBERON_8600013,submucosal gland collecting duct, +http://purl.obolibrary.org/obo/UBERON_8600014,submucosal gland ciliated duct, +http://purl.obolibrary.org/obo/UBERON_8600015,posterior sector of right lobe of liver,lateral sector of right lobe of liver +http://purl.obolibrary.org/obo/UBERON_8600015,posterior sector of right lobe of liver,right hepatic posterior sector +http://purl.obolibrary.org/obo/UBERON_8600016,anterior sector of right lobe of liver,medial sector of right lobe of liver +http://purl.obolibrary.org/obo/UBERON_8600016,anterior sector of right lobe of liver,right hepatic anterior sector +http://purl.obolibrary.org/obo/UBERON_8600017,bronchopulmonary segment,lung segment +http://uri.interlex.org/aibs/uris/mouse/labels/,Allen Mouse Brain Atlas parcellation label root, +http://uri.interlex.org/base/ilx_0101528,CA2 alveus, +http://uri.interlex.org/base/ilx_0738290,Interganglionic branch of inferior cervical ganglion to middle cervical ganglion, +http://uri.interlex.org/base/ilx_0738291,Interganglionic branch of inferior cervical ganglion to first thoracic ganglion, +http://uri.interlex.org/base/ilx_0738292,middle cervical ganglion - superior cervical ganglion interganglionic segment of the sympathetic chain, +http://uri.interlex.org/base/ilx_0738293,Ganglioglomerular nerve, +http://uri.interlex.org/base/ilx_0738304,Wall of arch of aorta, +http://uri.interlex.org/base/ilx_0738308,External branch of inferior laryngeal nerve, +http://uri.interlex.org/base/ilx_0738309,Internal branch of inferior laryngeal nerve, +http://uri.interlex.org/base/ilx_0738312,Aortic arch depressor nerve, +http://uri.interlex.org/base/ilx_0738313,Rami glomi carotici, +http://uri.interlex.org/base/ilx_0738316,Aortic arch baroreceptors, +http://uri.interlex.org/base/ilx_0738317,Laryngeal mechanoreceptors, +http://uri.interlex.org/base/ilx_0738318,Epiglottic mechanoreceptors, +http://uri.interlex.org/base/ilx_0738319,T1-T2 intercostal muscle, +http://uri.interlex.org/base/ilx_0738324,Phrenic nucleus of C4, +http://uri.interlex.org/base/ilx_0738325,Phrenic nucleus of C5, +http://uri.interlex.org/base/ilx_0738372,white communicating ramus of first thoracic spinal nerve,T1 white ramus +http://uri.interlex.org/base/ilx_0738432,Sixth lumbar spinal cord segment,L6 +http://uri.interlex.org/base/ilx_0738433,Dome of the Bladder, +http://uri.interlex.org/base/ilx_0738444,interscapular brown adipose tissue,iBAT +http://uri.interlex.org/base/ilx_0739295,Thirteenth thoracic ganglion,T13 sympathetic ganglion +http://uri.interlex.org/base/ilx_0739295,Thirteenth thoracic ganglion,thirteenth thoracic sympathetic ganglion +http://uri.interlex.org/base/ilx_0739296,fifth lumbar sympathetic ganglion,L5 sympathetic ganglion +http://uri.interlex.org/base/ilx_0739296,fifth lumbar sympathetic ganglion,fifth lumbar ganglion +http://uri.interlex.org/base/ilx_0739297,sixth lumbar sympathetic ganglion,L6 sympathetic ganglion +http://uri.interlex.org/base/ilx_0739297,sixth lumbar sympathetic ganglion,sixth lumbar ganglion +http://uri.interlex.org/base/ilx_0739299,gray communicating ramus of sixth lumbar nerve,L6 gray ramus +http://uri.interlex.org/base/ilx_0739299,gray communicating ramus of sixth lumbar nerve,L6 grey ramus +http://uri.interlex.org/base/ilx_0739303,gray communicating ramus of second thoracic nerve,T2 gray ramus +http://uri.interlex.org/base/ilx_0739304,gray communicating ramus of third thoracic nerve,T3 gray ramus +http://uri.interlex.org/base/ilx_0770759,Lamina propria mucosae of descending colon, +http://uri.interlex.org/base/ilx_0771089,Serosa of descending colon, +http://uri.interlex.org/base/ilx_0773760,Circular muscle layer of descending colon, +http://uri.interlex.org/base/ilx_0774144,Wall of neck of urinary bladder, +http://uri.interlex.org/base/ilx_0774266,T1 sympathetic ganglion,First thoracic ganglion +http://uri.interlex.org/base/ilx_0776070,Longitudinal muscle layer of descending colon, +http://uri.interlex.org/base/ilx_0776616,External carotid nerve, +http://uri.interlex.org/base/ilx_0777086,T12 - T13 interganglionic segment of the sympathetic chain, +http://uri.interlex.org/base/ilx_0777087,T13 - L1 interganglionic segment of the sympathetic chain, +http://uri.interlex.org/base/ilx_0777088,L1 - L2 interganglionic segment, +http://uri.interlex.org/base/ilx_0777089,L2 - L3 interganglionic segment, +http://uri.interlex.org/base/ilx_0777090,L3 - L4 interganglionic segment, +http://uri.interlex.org/base/ilx_0777091,L4 - L5 interganglionic segment, +http://uri.interlex.org/base/ilx_0777092,L5 - L6 interganglionic segment, +http://uri.interlex.org/base/ilx_0777093,L6 - S1 interganglionic segment of the sympathetic chain, +http://uri.interlex.org/base/ilx_0777094,T1 - T2 interganglionic segment of the sympathetic chain, +http://uri.interlex.org/base/ilx_0777095,T2 - T3 interganglionic segment of the sympathetic chain, +http://uri.interlex.org/base/ilx_0777096,T3 - T4 interganglionic segment of the sympathetic chain, +http://uri.interlex.org/base/ilx_0777097,T4 - T5 interganglionic segment of the sympathetic chain, +http://uri.interlex.org/base/ilx_0777098,T5 - T6 interganglionic segment of the sympathetic chain, +http://uri.interlex.org/base/ilx_0784378,Ninth thoracic ganglion, +http://uri.interlex.org/base/ilx_0784439,gray communicating ramus of the fifth thoracic nerve,T5 gray ramus +http://uri.interlex.org/base/ilx_0784439,gray communicating ramus of the fifth thoracic nerve,T5 grey ramus +http://uri.interlex.org/base/ilx_0784439,gray communicating ramus of the fifth thoracic nerve,gray communicating ramus of the fifth intercostal nerve +http://uri.interlex.org/base/ilx_0784721,Eighth thoracic ganglion, +http://uri.interlex.org/base/ilx_0784804,ventral root of the third thoracic spinal cord segment,anterior root of T3 +http://uri.interlex.org/base/ilx_0784804,ventral root of the third thoracic spinal cord segment,anterior root of third thoracic nerve +http://uri.interlex.org/base/ilx_0785421,ventral root of the first lumbar spinal cord segment,anterior root of L1 +http://uri.interlex.org/base/ilx_0785421,ventral root of the first lumbar spinal cord segment,anterior root of first lumbar nerve +http://uri.interlex.org/base/ilx_0785733,gray communicating ramus of second lumbar nerve,L2 gray ramus +http://uri.interlex.org/base/ilx_0785733,gray communicating ramus of second lumbar nerve,L2 grey ramus +http://uri.interlex.org/base/ilx_0785825,gray communicating ramus of first lumbar nerve,L1 gray ramus +http://uri.interlex.org/base/ilx_0785932,gray communicating ramus of third lumbar nerve,L3 gray ramus +http://uri.interlex.org/base/ilx_0785932,gray communicating ramus of third lumbar nerve,L3 grey ramus +http://uri.interlex.org/base/ilx_0786141,Fifth thoracic ganglion, +http://uri.interlex.org/base/ilx_0786228,Second thoracic ganglion, +http://uri.interlex.org/base/ilx_0786272,Fourth thoracic ganglion, +http://uri.interlex.org/base/ilx_0786722,Third thoracic ganglion, +http://uri.interlex.org/base/ilx_0786933,Second lumbar ganglion, +http://uri.interlex.org/base/ilx_0787009,Twelfth thoracic ganglion, +http://uri.interlex.org/base/ilx_0787082,gray communicating ramus of the first thoracic nerve,T1 gray ramus +http://uri.interlex.org/base/ilx_0787082,gray communicating ramus of the first thoracic nerve,gray communicating ramus of the first intercostal nerve +http://uri.interlex.org/base/ilx_0787520,ventral root of the third lumbar spinal cord segment,anterior root of L3 +http://uri.interlex.org/base/ilx_0787520,ventral root of the third lumbar spinal cord segment,anterior root of third lumbar nerve +http://uri.interlex.org/base/ilx_0787562,gray communicating ramus of the third thoracic nerve,T3 gray ramus +http://uri.interlex.org/base/ilx_0787562,gray communicating ramus of the third thoracic nerve,T3 grey ramus +http://uri.interlex.org/base/ilx_0787562,gray communicating ramus of the third thoracic nerve,gray communicating ramus of the third intercostal nerve +http://uri.interlex.org/base/ilx_0787722,ventral root of the first thoracic spinal cord segment,anterior root of T1 +http://uri.interlex.org/base/ilx_0787722,ventral root of the first thoracic spinal cord segment,anterior root of first thoracic nerve +http://uri.interlex.org/base/ilx_0787946,gray communicating ramus of sixth thoracic nerve,T6 gray ramus +http://uri.interlex.org/base/ilx_0787946,gray communicating ramus of sixth thoracic nerve,T6 grey ramus +http://uri.interlex.org/base/ilx_0787946,gray communicating ramus of sixth thoracic nerve,gray communicating ramus of the sixth intercostal nerve +http://uri.interlex.org/base/ilx_0788022,Gray communicating ramus of thoracic nerve, +http://uri.interlex.org/base/ilx_0788026,ventral root of the eighth thoracic spinal cord segment,anterior root of T8 +http://uri.interlex.org/base/ilx_0788026,ventral root of the eighth thoracic spinal cord segment,anterior root of eighth thoracic nerve +http://uri.interlex.org/base/ilx_0788315,Third lumbar ganglion, +http://uri.interlex.org/base/ilx_0788536,gray communicating ramus of fourth lumbar nerve,L4 gray ramus +http://uri.interlex.org/base/ilx_0788536,gray communicating ramus of fourth lumbar nerve,L4 grey ramus +http://uri.interlex.org/base/ilx_0788675,ventral root of the second lumbar spinal cord segment,anterior root of L2 +http://uri.interlex.org/base/ilx_0788675,ventral root of the second lumbar spinal cord segment,anterior root of second lumbar nerve +http://uri.interlex.org/base/ilx_0788945,gray communicating ramus of the fourth thoracic nerve,T4 gray ramus +http://uri.interlex.org/base/ilx_0788945,gray communicating ramus of the fourth thoracic nerve,T4 grey ramus +http://uri.interlex.org/base/ilx_0788945,gray communicating ramus of the fourth thoracic nerve,gray communicating ramus of the fourth intercostal nerve +http://uri.interlex.org/base/ilx_0789109,First sacral ganglion, +http://uri.interlex.org/base/ilx_0789339,Pharyngeal branch of glossopharyngeal nerve, +http://uri.interlex.org/base/ilx_0789862,First lumbar ganglion,L1 sympathetic ganglion +http://uri.interlex.org/base/ilx_0789894,ventral root of the second thoracic spinal cord segment,anterior root of T2 +http://uri.interlex.org/base/ilx_0789894,ventral root of the second thoracic spinal cord segment,anterior root of second thoracic nerve +http://uri.interlex.org/base/ilx_0789947,Sixth thoracic ganglion, +http://uri.interlex.org/base/ilx_0789966,ventral root of the seventh thoracic spinal cord segment,anterior root of T7 +http://uri.interlex.org/base/ilx_0789966,ventral root of the seventh thoracic spinal cord segment,anterior root of seventh thoracic nerve +http://uri.interlex.org/base/ilx_0789968,ventral root of the fourth lumbar spinal cord segment,anterior root of L4 +http://uri.interlex.org/base/ilx_0789968,ventral root of the fourth lumbar spinal cord segment,anterior root of fourth lumbar nerve +http://uri.interlex.org/base/ilx_0790146,ventral root of the fifth thoracic spinal cord segment,anterior root of T5 +http://uri.interlex.org/base/ilx_0790146,ventral root of the fifth thoracic spinal cord segment,anterior root of fifth thoracic nerve +http://uri.interlex.org/base/ilx_0790472,Fourth lumbar ganglion, +http://uri.interlex.org/base/ilx_0790482,Seventh thoracic ganglion, +http://uri.interlex.org/base/ilx_0790497,Gray communicating ramus of cervicothoracic ganglion to first thoracic spinal nerve, +http://uri.interlex.org/base/ilx_0791062,ventral root of the sixth thoracic spinal cord segment,anterior root of T6 +http://uri.interlex.org/base/ilx_0791062,ventral root of the sixth thoracic spinal cord segment,anterior root of sixth thoracic nerve +http://uri.interlex.org/base/ilx_0791105,gray communicating ramus of the second thoracic nerve,T2 gray ramus +http://uri.interlex.org/base/ilx_0791105,gray communicating ramus of the second thoracic nerve,gray communicating ramus of the second intercostal nerve +http://uri.interlex.org/base/ilx_0791148,ventral root of the fifth lumbar spinal cord segment,anterior root of L5 +http://uri.interlex.org/base/ilx_0791148,ventral root of the fifth lumbar spinal cord segment,anterior root of fifth lumbar nerve +http://uri.interlex.org/base/ilx_0791932,ventral root of the ninth thoracic spinal cord segment,anterior root of T9 +http://uri.interlex.org/base/ilx_0791932,ventral root of the ninth thoracic spinal cord segment,anterior root of ninth thoracic nerve +http://uri.interlex.org/base/ilx_0792627,White communicating ramus of thoracic anterior ramus, +http://uri.interlex.org/base/ilx_0792838,ventral root of the fourth thoracic spinal cord segment,anterior root of T4 +http://uri.interlex.org/base/ilx_0792838,ventral root of the fourth thoracic spinal cord segment,anterior root of fourth thoracic nerve +http://uri.interlex.org/base/ilx_0792853,ventral root of the first sacral spinal cord segment,anterior root of S1 +http://uri.interlex.org/base/ilx_0792853,ventral root of the first sacral spinal cord segment,anterior root of first sacral nerve +http://uri.interlex.org/base/ilx_0793082,celiac ganglion- superior mesenteric ganglion complex,CSMG +http://uri.interlex.org/base/ilx_0793082,celiac ganglion- superior mesenteric ganglion complex,coeliac-superior mesenteric ganglion complex +http://uri.interlex.org/base/ilx_0793141,urethral rhabdosphincter, +http://uri.interlex.org/base/ilx_0793178,intrapancreatic ganglia, +http://uri.interlex.org/base/ilx_0793208,white communicating ramus of second thoracic spinal nerve,T2 white ramus +http://uri.interlex.org/base/ilx_0793209,white communicating ramus of third thoracic spinal nerve,T3 white ramus +http://uri.interlex.org/base/ilx_0793210,white communicating ramus of fourth thoracic spinal nerve,T4 white ramus +http://uri.interlex.org/base/ilx_0793211,white communicating ramus of fifth thoracic spinal nerve,T5 white ramus +http://uri.interlex.org/base/ilx_0793212,white communicating ramus of sixth thoracic spinal nerve,T6 white ramus +http://uri.interlex.org/base/ilx_0793220,white communicating ramus of first lumbar spinal nerve,L1 white ramus +http://uri.interlex.org/base/ilx_0793221,white communicating ramus of second lumbar spinal nerve,L2 white ramus +http://uri.interlex.org/base/ilx_0793228,gray communicating ramus of first sacral nerve,S1 gray ramus +http://uri.interlex.org/base/ilx_0793228,gray communicating ramus of first sacral nerve,S1 grey ramus +http://uri.interlex.org/base/ilx_0793335,T5 sympathetic chain, +http://uri.interlex.org/base/ilx_0793336,T6 sympathetic chain, +http://uri.interlex.org/base/ilx_0793350,S1 sympathetic chain, +http://uri.interlex.org/base/ilx_0793357,Thirteenth thoracic spinal cord segment,T13 segment +http://uri.interlex.org/base/ilx_0793357,Thirteenth thoracic spinal cord segment,T13 spinal cord segment +http://uri.interlex.org/base/ilx_0793359,thirteenth thoracic dorsal root ganglion,T13 dorsal root ganglia +http://uri.interlex.org/base/ilx_0793359,thirteenth thoracic dorsal root ganglion,thirteenth thoracic spinal ganglion +http://uri.interlex.org/base/ilx_0793360,sixth lumbar dorsal root ganglion,L6 dorsal root ganglia +http://uri.interlex.org/base/ilx_0793360,sixth lumbar dorsal root ganglion,L6 dorsal root ganglion +http://uri.interlex.org/base/ilx_0793360,sixth lumbar dorsal root ganglion,Sixth lumbar spinal ganglion +http://uri.interlex.org/base/ilx_0793361,white communicating ramus of third lumbar spinal nerve,L3 white ramus +http://uri.interlex.org/base/ilx_0793362,White communicating ramus of fourth lumbar anterior ramus,L4 white ramus +http://uri.interlex.org/base/ilx_0793550,mediastinal ganglion, +http://uri.interlex.org/base/ilx_0793555,Atrial intrinsic cardiac ganglion,atrial ganglionated plexus +http://uri.interlex.org/base/ilx_0793556,ventricular intrinsic cardiac ganglion,Ventricular ganglionated plexus +http://uri.interlex.org/base/ilx_0793559,bladder nerve,nerve of bladder +http://uri.interlex.org/base/ilx_0793560,External laryngeal nerve,External laryngeal nerve +http://uri.interlex.org/base/ilx_0793560,External laryngeal nerve,external superior laryngeal nerve +http://uri.interlex.org/base/ilx_0793561,Internal branch of superior laryngeal nerve,Internal laryngeal nerve +http://uri.interlex.org/base/ilx_0793561,Internal branch of superior laryngeal nerve,Internal superior laryngeal nerve +http://uri.interlex.org/base/ilx_0793563,splenic nerve,Splenic nerve plexus +http://uri.interlex.org/base/ilx_0793570,trachea parasympathetic ganglia, +http://uri.interlex.org/base/ilx_0793571,bronchus parasympathetic ganglia, +http://uri.interlex.org/base/ilx_0793572,bronchiole parasympathetic ganglia, +http://uri.interlex.org/base/ilx_0793573,terminal bronchiole parasympathetic ganglia, +http://uri.interlex.org/base/ilx_0793613,Epithelium of pancreatic acinus, +http://uri.interlex.org/base/ilx_0793615,ventral root of the sixth lumbar spinal cord segment,Anterior root of sixth lumbar nerve +http://uri.interlex.org/base/ilx_0793615,ventral root of the sixth lumbar spinal cord segment,anterior root of L6 +http://uri.interlex.org/base/ilx_0793617,T2 sympathetic chain, +http://uri.interlex.org/base/ilx_0793618,T3 sympathetic chain, +http://uri.interlex.org/base/ilx_0793619,T4 sympathetic chain, +http://uri.interlex.org/base/ilx_0793621,External carotid nerve plexus,fibers provided by http://purl.obolibrary.org/obo/UBERON_0001989 +http://uri.interlex.org/base/ilx_0793626,ventrolateral periaqueductal gray, +http://uri.interlex.org/base/ilx_0793632,lumbar colonic nerve, +http://uri.interlex.org/base/ilx_0793641,Arteriole in circular muscle layer of descending colon, +http://uri.interlex.org/base/ilx_0793642,Arteriole in lamina propria of mucosa of descending colon, +http://uri.interlex.org/base/ilx_0793643,Arteriole in longitudinal muscle layer of descending colon, +http://uri.interlex.org/base/ilx_0793644,Arteriole in myenteric nerve plexus of descending colon, +http://uri.interlex.org/base/ilx_0793645,Arteriole in serosa of descending colon, +http://uri.interlex.org/base/ilx_0793646,Arteriole in submucous nerve plexus of descending colon, +http://uri.interlex.org/base/ilx_0793656,myenteric nerve plexus of stomach, +http://uri.interlex.org/base/ilx_0793657,Myenteric nerve plexus of descending colon, +http://uri.interlex.org/base/ilx_0793659,Submucosal nerve plexus of descending colon, +http://uri.interlex.org/base/ilx_0793660,myenteric nerve plexus of lower esophagus, +http://uri.interlex.org/base/ilx_0793663,Arteriole in connective tissue of bladder neck, +http://uri.interlex.org/base/ilx_0793664,Arteriole in connective tissue of bladder dome, +http://uri.interlex.org/base/ilx_0793667,myenteric plexus of gastric antrum, +http://uri.interlex.org/base/ilx_0793668,myenteric plexus of proximal duodenum, +http://uri.interlex.org/base/ilx_0793669,basement membrane of pancreatic acinus, +http://uri.interlex.org/base/ilx_0793671,adventitia of superior mesenteric artery, +http://uri.interlex.org/base/ilx_0793673,Nerve plexus in adventitia of splenic artery, +http://uri.interlex.org/base/ilx_0793674,nerve plexus in adventitia of inferior pancreaticoduodenal artery, +http://uri.interlex.org/base/ilx_0793675,adventitia of celiac trunk, +http://uri.interlex.org/base/ilx_0793676,nerve plexus in adventitia of hepatic artery, +http://uri.interlex.org/base/ilx_0793680,Perimarginal cavernous sinus, +http://uri.interlex.org/base/ilx_0793681,Marginal zone network, +http://uri.interlex.org/base/ilx_0793697,Intermediolateral nucleus of second thoracic segment,T2 intermediolateral cell column +http://uri.interlex.org/base/ilx_0793697,Intermediolateral nucleus of second thoracic segment,T2 intermediolateral nucleus +http://uri.interlex.org/base/ilx_0793698,Intermediolateral nucleus of third thoracic segment,T3 intermediolateral cell column +http://uri.interlex.org/base/ilx_0793698,Intermediolateral nucleus of third thoracic segment,T3 intermediolateral nucleus +http://uri.interlex.org/base/ilx_0793699,Intermediolateral nucleus of fourth thoracic segment,T4 intermediolateral cell column +http://uri.interlex.org/base/ilx_0793699,Intermediolateral nucleus of fourth thoracic segment,T4 intermediolateral nucleus +http://uri.interlex.org/base/ilx_0793700,Intermediolateral nucleus of fifth thoracic segment, +http://uri.interlex.org/base/ilx_0793701,Intermediolateral nucleus of sixth thoracic segment,T6 intermediolateral nucleus +http://uri.interlex.org/base/ilx_0793701,Intermediolateral nucleus of sixth thoracic segment,T6 intermediorlateral nucleus +http://uri.interlex.org/base/ilx_0793702,Greater petrosal nerve, +http://uri.interlex.org/base/ilx_0793711,Communicating branch of zygomatic nerve,Communicating branch to V1 +http://uri.interlex.org/base/ilx_0793711,Communicating branch of zygomatic nerve,Communicating branch with zygomatic nerve +http://uri.interlex.org/base/ilx_0793712,Zygomatic nerve,Zygomatic branch of V2 +http://uri.interlex.org/base/ilx_0793713,Deep petrosal nerve,Sympathetic root of pterygopalatine ganglion +http://uri.interlex.org/base/ilx_0793714,Mesenteric nerve, +http://uri.interlex.org/base/ilx_0793722,Lesser petrosal nerve, +http://uri.interlex.org/base/ilx_0793723,Auriculotemporal nerve, +http://uri.interlex.org/base/ilx_0793734,myenteric ganglion,myenteric plexus ganglion +http://uri.interlex.org/base/ilx_0793735,Myenteric ganglion of small intestine, +http://uri.interlex.org/base/ilx_0793737,Nerve fiber from submandibular ganglion to submandibular gland, +http://uri.interlex.org/base/ilx_0793738,Nerve fiber from submandibular ganglion to mouth mucosa, +http://uri.interlex.org/base/ilx_0793739,Nerve fiber from submandibular ganglion to sublingual gland, +http://uri.interlex.org/base/ilx_0793766,sympathetic chain segment, +http://uri.interlex.org/base/ilx_0793802,S4 sacral parasympathetic nucleus, +http://uri.interlex.org/base/ilx_0793803,inferior hypogastric nerve plexus ganglion, +http://uri.interlex.org/base/ilx_0793804,L6 parasympathetic nucleus,parasympathetic nucleus of sixth lumbar segment +http://uri.interlex.org/base/ilx_0793806,prostatic nerve plexus,prostatic plexus +http://uri.interlex.org/base/ilx_0793807,Penile cavernous nerve,Cavernous nerve of penis +http://uri.interlex.org/base/ilx_0793807,Penile cavernous nerve,main penile nerve +http://uri.interlex.org/base/ilx_0793807,Penile cavernous nerve,penile nerve +http://uri.interlex.org/base/ilx_0793808,uterovaginal nerve plexus,Frankenhauser's ganglion +http://uri.interlex.org/base/ilx_0793808,uterovaginal nerve plexus,Uterovaginal plexus +http://uri.interlex.org/base/ilx_0793809,Clitoral cavernous nerve,cavernous nerve of clitoris +http://uri.interlex.org/base/ilx_0793811,Intermediolateral nucleus of seventh thoracic segment,L7 Intermediolateral nucleus +http://uri.interlex.org/base/ilx_0793812,Intermediolateral nucleus of eighth thoracic segment,T8 Intermediolateral nucleus +http://uri.interlex.org/base/ilx_0793813,Intermediolateral nucleus of ninth thoracic segment,T9 Intermediolateral nucleus +http://uri.interlex.org/base/ilx_0793814,Intermediolateral nucleus of tenth thoracic segment,T10 Intermediolateral nucleus +http://uri.interlex.org/base/ilx_0793815,Intermediolateral nucleus of eleventh thoracic segment,InT11 termediolateral nucleus +http://uri.interlex.org/base/ilx_0793816,Intermediolateral nucleus of twelfth thoracic segment, +http://uri.interlex.org/base/ilx_0793817,Intermediolateral nucleus of thirteenth thoracic segment,T13 intermediolateral nucleus +http://uri.interlex.org/base/ilx_0793818,Intermediolateral nucleus of first lumbar segment, +http://uri.interlex.org/base/ilx_0793819,Intermediolateral nucleus of second lumbar segment, +http://uri.interlex.org/base/ilx_0793821,prevertebral sympathetic ganglion in abdominal aortic plexus,abdominal aortic plexus prevertebral sympathetic ganglion +http://uri.interlex.org/base/ilx_0793822,Superior ovarian nerve,SON +http://uri.interlex.org/base/ilx_0793823,major pelvic ganglion,MPG +http://uri.interlex.org/base/ilx_0793823,major pelvic ganglion,pelvic ganglion +http://uri.interlex.org/base/ilx_0793832,ovarian nerve plexus, +http://uri.interlex.org/base/ilx_0793833,ovarian nerve plexus parasympathetic ganglion, +http://uri.interlex.org/base/ilx_0793834,accessory pelvic ganglion, +http://uri.interlex.org/base/ilx_0793877,Intermediolateral nucleus of sixth lumbar segment, +http://uri.interlex.org/base/ilx_0793878,Intermediolateral nucleus of first sacral segment, +http://uri.interlex.org/base/ilx_0793879,Intermediolateral nucleus of second sacral segment, +http://uri.interlex.org/base/ilx_0793880,Intermediolateral nucleus of third sacral segment, +http://uri.interlex.org/base/ilx_0793881,Intermediolateral nucleus of fourth sacral segment, +http://uri.interlex.org/base/ilx_0793882,Dorsal gray commissure of first lumbar segment, +http://uri.interlex.org/base/ilx_0793883,Dorsal gray commissure of second lumbar segment, +http://uri.interlex.org/base/ilx_0793884,first accessory pelvic ganglion, +http://uri.interlex.org/base/ilx_0793897,lumbar parasympathetic nucleus, +http://uri.interlex.org/base/ilx_0793804,L6 Sacral parasympathetic nucleus, +http://uri.interlex.org/base/ilx_0793805,S1 sacral parasympathetic nucleus, +http://uri.interlex.org/base/ilx_0793800,S2 sacral parasympathetic nucleus, +http://uri.interlex.org/base/ilx_0793801,S3 sacral parasympathetic nucleus, \ No newline at end of file